From 098220c54817b08a0326978852226dc4f95e1b09 Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Fri, 25 Aug 2023 14:55:48 -0400 Subject: [PATCH 001/154] exported latest xplat samples --- .../annotations-all/src/app.component.html | 8 +- .../src/app.component.html | 9 +- .../annotations-custom/.stackblitzrc | 1 + .../annotations-custom/angular.json | 103 ++++++++++++++++++ .../annotations-custom/package.json | 47 ++++++++ .../annotations-custom/sandbox.config.json | 5 + .../src/TemperatureAnnotatedData.ts | 100 +++++++++++++++++ .../annotations-custom/src/app.component.html | 44 ++++++++ .../annotations-custom/src/app.component.scss | 3 + .../annotations-custom/src/app.component.ts | 51 +++++++++ .../annotations-custom/src/app.module.ts | 28 +++++ .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 ++ .../src/config/tsconfig.base.json | 23 ++++ .../src/config/tsconfig.spec.json | 19 ++++ .../src/config/tsconfig.worker.json | 14 +++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../annotations-custom/src/index.html | 23 ++++ .../annotations-custom/src/main.ts | 15 +++ .../annotations-custom/src/polyfills.ts | 65 +++++++++++ .../annotations-custom/src/styles.scss | 9 ++ .../annotations-custom/src/typings.d.ts | 5 + .../annotations-custom/tsconfig.json | 20 ++++ .../annotations-custom/tslint.json | 27 +++++ .../data-aggregations/src/app.component.html | 2 +- .../annotations-custom/.stackblitzrc | 1 + .../annotations-custom/angular.json | 103 ++++++++++++++++++ .../annotations-custom/package.json | 44 ++++++++ .../annotations-custom/sandbox.config.json | 5 + .../src/CountryRenewableCallouts.ts | 0 .../src/CountryRenewableElectricity.ts | 100 +++++++++++++++++ .../annotations-custom/src/app.component.html | 64 +++++++++++ .../annotations-custom/src/app.component.scss | 3 + .../annotations-custom/src/app.component.ts | 54 +++++++++ .../annotations-custom/src/app.module.ts | 30 +++++ .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 ++ .../src/config/tsconfig.base.json | 23 ++++ .../src/config/tsconfig.spec.json | 19 ++++ .../src/config/tsconfig.worker.json | 14 +++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../annotations-custom/src/index.html | 23 ++++ .../data-chart/annotations-custom/src/main.ts | 15 +++ .../annotations-custom/src/polyfills.ts | 65 +++++++++++ .../annotations-custom/src/styles.scss | 9 ++ .../annotations-custom/src/typings.d.ts | 5 + .../annotations-custom/tsconfig.json | 20 ++++ .../data-chart/annotations-custom/tslint.json | 27 +++++ .../src/app.component.html | 5 +- .../src/app.component.ts | 10 -- .../src/app.component.html | 16 +-- .../bar-chart-styling/src/app.component.html | 8 +- .../src/CountryRenewableCallouts.ts | 87 --------------- .../src/app.component.html | 21 ++-- .../src/app.component.ts | 10 -- .../src/app.component.html | 1 + 58 files changed, 1328 insertions(+), 149 deletions(-) create mode 100644 samples/charts/category-chart/annotations-custom/.stackblitzrc create mode 100644 samples/charts/category-chart/annotations-custom/angular.json create mode 100644 samples/charts/category-chart/annotations-custom/package.json create mode 100644 samples/charts/category-chart/annotations-custom/sandbox.config.json create mode 100644 samples/charts/category-chart/annotations-custom/src/TemperatureAnnotatedData.ts create mode 100644 samples/charts/category-chart/annotations-custom/src/app.component.html create mode 100644 samples/charts/category-chart/annotations-custom/src/app.component.scss create mode 100644 samples/charts/category-chart/annotations-custom/src/app.component.ts create mode 100644 samples/charts/category-chart/annotations-custom/src/app.module.ts create mode 100644 samples/charts/category-chart/annotations-custom/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/category-chart/annotations-custom/src/config/tsconfig.app.json create mode 100644 samples/charts/category-chart/annotations-custom/src/config/tsconfig.base.json create mode 100644 samples/charts/category-chart/annotations-custom/src/config/tsconfig.spec.json create mode 100644 samples/charts/category-chart/annotations-custom/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/annotations-custom/src/environments/environment.prod.ts create mode 100644 samples/charts/category-chart/annotations-custom/src/environments/environment.ts create mode 100644 samples/charts/category-chart/annotations-custom/src/index.html create mode 100644 samples/charts/category-chart/annotations-custom/src/main.ts create mode 100644 samples/charts/category-chart/annotations-custom/src/polyfills.ts create mode 100644 samples/charts/category-chart/annotations-custom/src/styles.scss create mode 100644 samples/charts/category-chart/annotations-custom/src/typings.d.ts create mode 100644 samples/charts/category-chart/annotations-custom/tsconfig.json create mode 100644 samples/charts/category-chart/annotations-custom/tslint.json create mode 100644 samples/charts/data-chart/annotations-custom/.stackblitzrc create mode 100644 samples/charts/data-chart/annotations-custom/angular.json create mode 100644 samples/charts/data-chart/annotations-custom/package.json create mode 100644 samples/charts/data-chart/annotations-custom/sandbox.config.json rename samples/charts/data-chart/{axis-annotations-corner-radius => annotations-custom}/src/CountryRenewableCallouts.ts (100%) create mode 100644 samples/charts/data-chart/annotations-custom/src/CountryRenewableElectricity.ts create mode 100644 samples/charts/data-chart/annotations-custom/src/app.component.html create mode 100644 samples/charts/data-chart/annotations-custom/src/app.component.scss create mode 100644 samples/charts/data-chart/annotations-custom/src/app.component.ts create mode 100644 samples/charts/data-chart/annotations-custom/src/app.module.ts create mode 100644 samples/charts/data-chart/annotations-custom/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/data-chart/annotations-custom/src/config/tsconfig.app.json create mode 100644 samples/charts/data-chart/annotations-custom/src/config/tsconfig.base.json create mode 100644 samples/charts/data-chart/annotations-custom/src/config/tsconfig.spec.json create mode 100644 samples/charts/data-chart/annotations-custom/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/annotations-custom/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/annotations-custom/src/environments/environment.ts create mode 100644 samples/charts/data-chart/annotations-custom/src/index.html create mode 100644 samples/charts/data-chart/annotations-custom/src/main.ts create mode 100644 samples/charts/data-chart/annotations-custom/src/polyfills.ts create mode 100644 samples/charts/data-chart/annotations-custom/src/styles.scss create mode 100644 samples/charts/data-chart/annotations-custom/src/typings.d.ts create mode 100644 samples/charts/data-chart/annotations-custom/tsconfig.json create mode 100644 samples/charts/data-chart/annotations-custom/tslint.json delete mode 100644 samples/charts/data-chart/callout-layer-styling/src/CountryRenewableCallouts.ts diff --git a/samples/charts/category-chart/annotations-all/src/app.component.html b/samples/charts/category-chart/annotations-all/src/app.component.html index 5a4376e04..200d2841b 100644 --- a/samples/charts/category-chart/annotations-all/src/app.component.html +++ b/samples/charts/category-chart/annotations-all/src/app.component.html @@ -23,7 +23,7 @@ primitiveValue="BrightenSpecific"> diff --git a/samples/charts/category-chart/annotations-custom/.stackblitzrc b/samples/charts/category-chart/annotations-custom/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-custom/angular.json b/samples/charts/category-chart/annotations-custom/angular.json new file mode 100644 index 000000000..9ec584c70 --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/angular.json @@ -0,0 +1,103 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "browserTarget": "demo:build" + }, + "configurations": { + "production": { + "browserTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "browserTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "styleext": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json new file mode 100644 index 000000000..25a657367 --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -0,0 +1,47 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "16.0.1", + "@angular/common": "16.0.1", + "@angular/compiler": "16.0.1", + "@angular/core": "16.0.1", + "@angular/forms": "16.0.1", + "@angular/platform-browser": "16.0.1", + "@angular/platform-browser-dynamic": "16.0.1", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.0", + "igniteui-angular-charts": "16.1.0", + "igniteui-angular-layouts": "16.1.0", + "igniteui-angular-inputs": "16.1.0", + "igniteui-webcomponents": "4.3.0-beta.0", + "intl": "1.2.5", + "jszip": "3.7.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "0.13.0" + }, + "devDependencies": { + "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "16.0.1", + "@angular/compiler-cli": "16.0.1", + "@angular/language-service": "16.0.1", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "9.1.1", + "tslint": "~6.1.3", + "typescript": "5.0.4" + } +} diff --git a/samples/charts/category-chart/annotations-custom/sandbox.config.json b/samples/charts/category-chart/annotations-custom/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-custom/src/TemperatureAnnotatedData.ts b/samples/charts/category-chart/annotations-custom/src/TemperatureAnnotatedData.ts new file mode 100644 index 000000000..593935daf --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/src/TemperatureAnnotatedData.ts @@ -0,0 +1,100 @@ +export class TemperatureAnnotatedDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public index: number; + public tempInfo: string; + public temperature: number; + public month: string; + +} +export class TemperatureAnnotatedData extends Array { + public constructor() { + super(); + this.push(new TemperatureAnnotatedDataItem( + { + index: 0, + tempInfo: `27°C`, + temperature: 27, + month: `Jan` + })); + this.push(new TemperatureAnnotatedDataItem( + { + index: 1, + tempInfo: `25°C`, + temperature: 25, + month: `Feb` + })); + this.push(new TemperatureAnnotatedDataItem( + { + index: 2, + tempInfo: `21°C`, + temperature: 21, + month: `Mar` + })); + this.push(new TemperatureAnnotatedDataItem( + { + index: 3, + tempInfo: `19°C`, + temperature: 19, + month: `Apr` + })); + this.push(new TemperatureAnnotatedDataItem( + { + index: 4, + tempInfo: `16°C`, + temperature: 16, + month: `May` + })); + this.push(new TemperatureAnnotatedDataItem( + { + index: 5, + tempInfo: `13°C`, + temperature: 13, + month: `Jun` + })); + this.push(new TemperatureAnnotatedDataItem( + { + index: 6, + tempInfo: `14°C`, + temperature: 14, + month: `Jul` + })); + this.push(new TemperatureAnnotatedDataItem( + { + index: 7, + tempInfo: `15°C`, + temperature: 15, + month: `Aug` + })); + this.push(new TemperatureAnnotatedDataItem( + { + index: 8, + tempInfo: `19°C`, + temperature: 19, + month: `Sep` + })); + this.push(new TemperatureAnnotatedDataItem( + { + index: 9, + tempInfo: `22°C`, + temperature: 22, + month: `Oct` + })); + this.push(new TemperatureAnnotatedDataItem( + { + index: 10, + tempInfo: `26°C`, + temperature: 26, + month: `Nov` + })); + this.push(new TemperatureAnnotatedDataItem( + { + index: 11, + tempInfo: `30°C`, + temperature: 30, + month: `Dec` + })); + } +} diff --git a/samples/charts/category-chart/annotations-custom/src/app.component.html b/samples/charts/category-chart/annotations-custom/src/app.component.html new file mode 100644 index 000000000..5b578c01e --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/src/app.component.html @@ -0,0 +1,44 @@ +
+
+ + + + +
+
+ Average Temperature in Sydney +
+
+ + +
+
diff --git a/samples/charts/category-chart/annotations-custom/src/app.component.scss b/samples/charts/category-chart/annotations-custom/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/category-chart/annotations-custom/src/app.component.ts b/samples/charts/category-chart/annotations-custom/src/app.component.ts new file mode 100644 index 000000000..b78b38db8 --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/src/app.component.ts @@ -0,0 +1,51 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; +import { TemperatureAnnotatedDataItem, TemperatureAnnotatedData } from './TemperatureAnnotatedData'; +import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class AppComponent { + + public constructor(private _detector: ChangeDetectorRef) { + + } + + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("calloutsVisibleEditor", { static: true } ) + private calloutsVisibleEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent + + private _temperatureAnnotatedData: TemperatureAnnotatedData = null; + public get temperatureAnnotatedData(): TemperatureAnnotatedData { + if (this._temperatureAnnotatedData == null) + { + this._temperatureAnnotatedData = new TemperatureAnnotatedData(); + } + return this._temperatureAnnotatedData; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + CategoryChartDescriptionModule.register(context); + } + return this._componentRenderer; + } + +} + diff --git a/samples/charts/category-chart/annotations-custom/src/app.module.ts b/samples/charts/category-chart/annotations-custom/src/app.module.ts new file mode 100644 index 000000000..d18a18115 --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/src/app.module.ts @@ -0,0 +1,28 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxCategoryChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent, +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxCategoryChartModule +], + providers: [], + entryComponents: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/category-chart/annotations-custom/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/annotations-custom/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e5d23397 --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "es2015" + } + } diff --git a/samples/charts/category-chart/annotations-custom/src/config/tsconfig.app.json b/samples/charts/category-chart/annotations-custom/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/category-chart/annotations-custom/src/config/tsconfig.base.json b/samples/charts/category-chart/annotations-custom/src/config/tsconfig.base.json new file mode 100644 index 000000000..f5ad4b8b7 --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/src/config/tsconfig.base.json @@ -0,0 +1,23 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "es2020", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "es2015", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "es2017", + "dom" + ] + } +} diff --git a/samples/charts/category-chart/annotations-custom/src/config/tsconfig.spec.json b/samples/charts/category-chart/annotations-custom/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/category-chart/annotations-custom/src/config/tsconfig.worker.json b/samples/charts/category-chart/annotations-custom/src/config/tsconfig.worker.json new file mode 100644 index 000000000..bc0e98f11 --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "es2018", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/category-chart/annotations-custom/src/environments/environment.prod.ts b/samples/charts/category-chart/annotations-custom/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/category-chart/annotations-custom/src/environments/environment.ts b/samples/charts/category-chart/annotations-custom/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/category-chart/annotations-custom/src/index.html b/samples/charts/category-chart/annotations-custom/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/category-chart/annotations-custom/src/main.ts b/samples/charts/category-chart/annotations-custom/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/category-chart/annotations-custom/src/polyfills.ts b/samples/charts/category-chart/annotations-custom/src/polyfills.ts new file mode 100644 index 000000000..6c0321de4 --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js/dist/zone"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +if (!Element.prototype.matches) { + Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +} + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/category-chart/annotations-custom/src/styles.scss b/samples/charts/category-chart/annotations-custom/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/category-chart/annotations-custom/src/typings.d.ts b/samples/charts/category-chart/annotations-custom/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/category-chart/annotations-custom/tsconfig.json b/samples/charts/category-chart/annotations-custom/tsconfig.json new file mode 100644 index 000000000..6a01bab30 --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/tsconfig.json @@ -0,0 +1,20 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-custom/tslint.json b/samples/charts/category-chart/annotations-custom/tslint.json new file mode 100644 index 000000000..5a3f18e0c --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/tslint.json @@ -0,0 +1,27 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "indent": [true, "spaces"], + "variable-name": [true, "allow-leading-underscore"], + "interface-name": [true, "always-prefix"], + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "no-empty": false, + "no-bitwise": false, + "no-object-literal-type-assertion": false, + "no-string-literal": false, + "no-duplicate-imports": false, + "no-trailing-whitespace": false, + "no-implicit-dependencies": false, + "no-submodule-imports": [false], + "max-classes-per-file": false, + "prefer-object-spread": false, + "no-console": false, + "prefer-conditional-expression": false, + "prefer-for-of": false, + "arrow-parens": false, + "object-literal-sort-keys": false + } +} diff --git a/samples/charts/category-chart/data-aggregations/src/app.component.html b/samples/charts/category-chart/data-aggregations/src/app.component.html index 46e21b866..d713c7f69 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.component.html +++ b/samples/charts/category-chart/data-aggregations/src/app.component.html @@ -26,7 +26,7 @@ label="Initial Summaries" valueType="EnumValue" shouldOverrideDefaultEditor="true" - dropDownNames="Sum(Sales) as Sales, Avg(Sales) as Sales, Min(Sales) as Sales, Max(Sales) as Sales, Count(Sales) as Sales" + dropDownNames="Sum(Sales), Avg(Sales), Min(Sales), Max(Sales), Count(Sales)" dropDownValues="Sum(Sales) as Sales, Avg(Sales) as Sales, Min(Sales) as Sales, Max(Sales) as Sales, Count(Sales) as Sales" primitiveValue="Sum(Sales) as Sales">
diff --git a/samples/charts/data-chart/annotations-custom/.stackblitzrc b/samples/charts/data-chart/annotations-custom/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/data-chart/annotations-custom/angular.json b/samples/charts/data-chart/annotations-custom/angular.json new file mode 100644 index 000000000..9ec584c70 --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/angular.json @@ -0,0 +1,103 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "browserTarget": "demo:build" + }, + "configurations": { + "production": { + "browserTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "browserTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "styleext": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json new file mode 100644 index 000000000..07e12d1ce --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "16.0.1", + "@angular/common": "16.0.1", + "@angular/compiler": "16.0.1", + "@angular/core": "16.0.1", + "@angular/forms": "16.0.1", + "@angular/platform-browser": "16.0.1", + "@angular/platform-browser-dynamic": "16.0.1", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.0", + "igniteui-angular-charts": "16.1.0", + "intl": "1.2.5", + "jszip": "3.7.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "0.13.0" + }, + "devDependencies": { + "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "16.0.1", + "@angular/compiler-cli": "16.0.1", + "@angular/language-service": "16.0.1", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "9.1.1", + "tslint": "~6.1.3", + "typescript": "5.0.4" + } +} diff --git a/samples/charts/data-chart/annotations-custom/sandbox.config.json b/samples/charts/data-chart/annotations-custom/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/src/CountryRenewableCallouts.ts b/samples/charts/data-chart/annotations-custom/src/CountryRenewableCallouts.ts similarity index 100% rename from samples/charts/data-chart/axis-annotations-corner-radius/src/CountryRenewableCallouts.ts rename to samples/charts/data-chart/annotations-custom/src/CountryRenewableCallouts.ts diff --git a/samples/charts/data-chart/annotations-custom/src/CountryRenewableElectricity.ts b/samples/charts/data-chart/annotations-custom/src/CountryRenewableElectricity.ts new file mode 100644 index 000000000..4849f0cff --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/src/CountryRenewableElectricity.ts @@ -0,0 +1,100 @@ +export class CountryRenewableElectricityItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public europe: number; + public china: number; + public america: number; + +} +export class CountryRenewableElectricity extends Array { + public constructor() { + super(); + this.push(new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + })); + } +} diff --git a/samples/charts/data-chart/annotations-custom/src/app.component.html b/samples/charts/data-chart/annotations-custom/src/app.component.html new file mode 100644 index 000000000..ff0127ed9 --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/src/app.component.html @@ -0,0 +1,64 @@ +
+
+ Renewable Electricity Generated +
+
+ + + + + + + + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/annotations-custom/src/app.component.scss b/samples/charts/data-chart/annotations-custom/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/annotations-custom/src/app.component.ts b/samples/charts/data-chart/annotations-custom/src/app.component.ts new file mode 100644 index 000000000..3f14afa0d --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/src/app.component.ts @@ -0,0 +1,54 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; +import { CountryRenewableCalloutsItem, CountryRenewableCallouts } from './CountryRenewableCallouts'; +import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxLineSeriesComponent, IgxCalloutLayerComponent, IgxFinalValueLayerComponent, IgxCrosshairLayerComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class AppComponent { + + public constructor(private _detector: ChangeDetectorRef) { + + } + + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("lineSeries1", { static: true } ) + private lineSeries1: IgxLineSeriesComponent + @ViewChild("calloutLayer1", { static: true } ) + private calloutLayer1: IgxCalloutLayerComponent + @ViewChild("finalValueLayer", { static: true } ) + private finalValueLayer: IgxFinalValueLayerComponent + @ViewChild("crosshairLayer", { static: true } ) + private crosshairLayer: IgxCrosshairLayerComponent + @ViewChild("tooltips", { static: true } ) + private tooltips: IgxDataToolTipLayerComponent + + private _countryRenewableElectricity: CountryRenewableElectricity = null; + public get countryRenewableElectricity(): CountryRenewableElectricity { + if (this._countryRenewableElectricity == null) + { + this._countryRenewableElectricity = new CountryRenewableElectricity(); + } + return this._countryRenewableElectricity; + } + + private _countryRenewableCallouts: CountryRenewableCallouts = null; + public get countryRenewableCallouts(): CountryRenewableCallouts { + if (this._countryRenewableCallouts == null) + { + this._countryRenewableCallouts = new CountryRenewableCallouts(); + } + return this._countryRenewableCallouts; + } + +} + diff --git a/samples/charts/data-chart/annotations-custom/src/app.module.ts b/samples/charts/data-chart/annotations-custom/src/app.module.ts new file mode 100644 index 000000000..22997cd0f --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/src/app.module.ts @@ -0,0 +1,30 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartAnnotationModule, IgxDataChartInteractivityModule, IgxAnnotationLayerProxyModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent, +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartAnnotationModule, + IgxDataChartInteractivityModule, + IgxAnnotationLayerProxyModule +], + providers: [], + entryComponents: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/annotations-custom/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/annotations-custom/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e5d23397 --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "es2015" + } + } diff --git a/samples/charts/data-chart/annotations-custom/src/config/tsconfig.app.json b/samples/charts/data-chart/annotations-custom/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/data-chart/annotations-custom/src/config/tsconfig.base.json b/samples/charts/data-chart/annotations-custom/src/config/tsconfig.base.json new file mode 100644 index 000000000..f5ad4b8b7 --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/src/config/tsconfig.base.json @@ -0,0 +1,23 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "es2020", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "es2015", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "es2017", + "dom" + ] + } +} diff --git a/samples/charts/data-chart/annotations-custom/src/config/tsconfig.spec.json b/samples/charts/data-chart/annotations-custom/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/data-chart/annotations-custom/src/config/tsconfig.worker.json b/samples/charts/data-chart/annotations-custom/src/config/tsconfig.worker.json new file mode 100644 index 000000000..bc0e98f11 --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "es2018", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/data-chart/annotations-custom/src/environments/environment.prod.ts b/samples/charts/data-chart/annotations-custom/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/annotations-custom/src/environments/environment.ts b/samples/charts/data-chart/annotations-custom/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/annotations-custom/src/index.html b/samples/charts/data-chart/annotations-custom/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/annotations-custom/src/main.ts b/samples/charts/data-chart/annotations-custom/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/annotations-custom/src/polyfills.ts b/samples/charts/data-chart/annotations-custom/src/polyfills.ts new file mode 100644 index 000000000..6c0321de4 --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js/dist/zone"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +if (!Element.prototype.matches) { + Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +} + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/annotations-custom/src/styles.scss b/samples/charts/data-chart/annotations-custom/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/annotations-custom/src/typings.d.ts b/samples/charts/data-chart/annotations-custom/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/annotations-custom/tsconfig.json b/samples/charts/data-chart/annotations-custom/tsconfig.json new file mode 100644 index 000000000..6a01bab30 --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/tsconfig.json @@ -0,0 +1,20 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/data-chart/annotations-custom/tslint.json b/samples/charts/data-chart/annotations-custom/tslint.json new file mode 100644 index 000000000..5a3f18e0c --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/tslint.json @@ -0,0 +1,27 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "indent": [true, "spaces"], + "variable-name": [true, "allow-leading-underscore"], + "interface-name": [true, "always-prefix"], + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "no-empty": false, + "no-bitwise": false, + "no-object-literal-type-assertion": false, + "no-string-literal": false, + "no-duplicate-imports": false, + "no-trailing-whitespace": false, + "no-implicit-dependencies": false, + "no-submodule-imports": [false], + "max-classes-per-file": false, + "prefer-object-spread": false, + "no-console": false, + "prefer-conditional-expression": false, + "prefer-for-of": false, + "arrow-parens": false, + "object-literal-sort-keys": false + } +} diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/src/app.component.html b/samples/charts/data-chart/axis-annotations-corner-radius/src/app.component.html index 97a3c3110..abc0481ac 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/src/app.component.html +++ b/samples/charts/data-chart/axis-annotations-corner-radius/src/app.component.html @@ -29,10 +29,7 @@ + isHighlightingEnabled="true" + markerType="Hidden"> + isHighlightingEnabled="true" + markerType="Hidden"> + areaFillOpacity="0.5" + markerType="Hidden"> ) { - Object.assign(this, init); - } - - public index: number; - public label: string; - public value: number; - -} -export class CountryRenewableCallouts extends Array { - public constructor() { - super(); - this.push(new CountryRenewableCalloutsItem( - { - index: 0, - label: `19 TWh`, - value: 19 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 1, - label: `24 TWh`, - value: 24 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 2, - label: `28 TWh`, - value: 28 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 3, - label: `26 TWh`, - value: 26 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 4, - label: `38 TWh`, - value: 38 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 5, - label: `31 TWh`, - value: 31 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 6, - label: `19 TWh`, - value: 19 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 7, - label: `52 TWh`, - value: 52 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 8, - label: `50 TWh`, - value: 50 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 9, - label: `34 TWh`, - value: 34 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 10, - label: `38 TWh`, - value: 34 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 11, - label: `38 TWh`, - value: 38 - })); - } -} diff --git a/samples/charts/data-chart/callout-layer-styling/src/app.component.html b/samples/charts/data-chart/callout-layer-styling/src/app.component.html index 480ba550c..5111f2a4f 100644 --- a/samples/charts/data-chart/callout-layer-styling/src/app.component.html +++ b/samples/charts/data-chart/callout-layer-styling/src/app.component.html @@ -26,20 +26,21 @@ [xAxis]="xAxis" [yAxis]="yAxis" [dataSource]="countryRenewableElectricity" - valueMemberPath="america"> + valueMemberPath="america" + brush="rgba(137, 97, 169, 1)" + markerOutline="rgba(137, 97, 169, 1)" + shouldHideAutoCallouts="false"> + isAutoCalloutBehaviorEnabled="true" + calloutLeaderBrush="rgba(137, 97, 169, 1)" + calloutOutline="rgba(137, 97, 169, 1)" + calloutBackground="white" + calloutTextColor="rgba(137, 97, 169, 1)" + calloutStrokeThickness="1" + calloutCollisionMode="Greedy"> diff --git a/samples/charts/data-chart/callout-layer-styling/src/app.component.ts b/samples/charts/data-chart/callout-layer-styling/src/app.component.ts index 08c049153..416884c5b 100644 --- a/samples/charts/data-chart/callout-layer-styling/src/app.component.ts +++ b/samples/charts/data-chart/callout-layer-styling/src/app.component.ts @@ -1,6 +1,5 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; -import { CountryRenewableCalloutsItem, CountryRenewableCallouts } from './CountryRenewableCallouts'; import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxLineSeriesComponent, IgxCalloutLayerComponent } from 'igniteui-angular-charts'; @Component({ @@ -35,14 +34,5 @@ export class AppComponent { return this._countryRenewableElectricity; } - private _countryRenewableCallouts: CountryRenewableCallouts = null; - public get countryRenewableCallouts(): CountryRenewableCallouts { - if (this._countryRenewableCallouts == null) - { - this._countryRenewableCallouts = new CountryRenewableCallouts(); - } - return this._countryRenewableCallouts; - } - } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/app.component.html b/samples/charts/toolbar/actions-built-in-category-chart/src/app.component.html index 36d82b052..5fb53ffab 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/app.component.html +++ b/samples/charts/toolbar/actions-built-in-category-chart/src/app.component.html @@ -33,6 +33,7 @@ yAxisTitleLeftMargin="10" yAxisTitleRightMargin="5" yAxisLabelLeftMargin="0" + yAxisLabelLocation="OutsideRight" isTransitionInEnabled="true"> From e819b9f495333135ba07808b2bb48e36c0230eae Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Fri, 1 Sep 2023 12:44:46 -0400 Subject: [PATCH 002/154] fix issue #59 --- browser/tslint.json | 27 ++++++++++--------- .../annotations-all/src/app.module.ts | 3 +-- .../annotations-all/tslint.json | 26 ++++++++++-------- .../annotations-callouts/src/app.module.ts | 3 +-- .../annotations-callouts/tslint.json | 26 ++++++++++-------- .../annotations-crosshairs/src/app.module.ts | 3 +-- .../annotations-crosshairs/tslint.json | 26 ++++++++++-------- .../annotations-custom/src/app.module.ts | 3 +-- .../annotations-custom/tslint.json | 26 ++++++++++-------- .../annotations-final-value/src/app.module.ts | 3 +-- .../annotations-final-value/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../annotations-highlighting/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../area-chart-multiple-sources/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../area-chart-single-source/tslint.json | 26 ++++++++++-------- .../area-chart-styling/src/app.module.ts | 3 +-- .../area-chart-styling/tslint.json | 26 ++++++++++-------- .../category-chart/axis-gap/src/app.module.ts | 3 +-- .../category-chart/axis-gap/tslint.json | 26 ++++++++++-------- .../axis-gridlines/src/app.module.ts | 3 +-- .../category-chart/axis-gridlines/tslint.json | 26 ++++++++++-------- .../axis-inverted/src/app.module.ts | 3 +-- .../category-chart/axis-inverted/tslint.json | 26 ++++++++++-------- .../axis-labels/src/app.module.ts | 3 +-- .../category-chart/axis-labels/tslint.json | 26 ++++++++++-------- .../axis-locations/src/app.module.ts | 3 +-- .../category-chart/axis-locations/tslint.json | 26 ++++++++++-------- .../axis-options/src/app.module.ts | 3 +-- .../category-chart/axis-options/tslint.json | 26 ++++++++++-------- .../axis-overlap/src/app.module.ts | 3 +-- .../category-chart/axis-overlap/tslint.json | 26 ++++++++++-------- .../axis-range/src/app.module.ts | 3 +-- .../category-chart/axis-range/tslint.json | 26 ++++++++++-------- .../axis-tickmarks/src/app.module.ts | 3 +-- .../category-chart/axis-tickmarks/tslint.json | 26 ++++++++++-------- .../axis-titles/src/app.module.ts | 3 +-- .../category-chart/axis-titles/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../column-chart-multiple-sources/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../column-chart-single-source/tslint.json | 26 ++++++++++-------- .../column-chart-styling/src/app.module.ts | 3 +-- .../column-chart-styling/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../column-chart-with-tooltips/tslint.json | 26 ++++++++++-------- .../data-aggregations/src/app.module.ts | 3 +-- .../data-aggregations/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../tslint.json | 26 ++++++++++-------- .../data-legend/src/app.module.ts | 3 +-- .../category-chart/data-legend/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../data-tooltip-positioning/tslint.json | 26 ++++++++++-------- .../data-tooltip/src/app.module.ts | 3 +-- .../category-chart/data-tooltip/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../line-chart-multiple-sources/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../line-chart-single-source/tslint.json | 26 ++++++++++-------- .../line-chart-styling/src/app.module.ts | 3 +-- .../line-chart-styling/tslint.json | 26 ++++++++++-------- .../marker-options/src/app.module.ts | 3 +-- .../category-chart/marker-options/tslint.json | 26 ++++++++++-------- .../category-chart/overview/src/app.module.ts | 3 +-- .../category-chart/overview/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../point-chart-multiple-sources/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../point-chart-single-source/tslint.json | 26 ++++++++++-------- .../point-chart-styling/src/app.module.ts | 3 +-- .../point-chart-styling/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../spline-area-multiple-sources/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../spline-area-single-source/tslint.json | 26 ++++++++++-------- .../spline-area-styling/src/app.module.ts | 3 +-- .../spline-area-styling/tslint.json | 26 ++++++++++-------- .../spline-multiple-sources/src/app.module.ts | 3 +-- .../spline-multiple-sources/tslint.json | 26 ++++++++++-------- .../spline-single-source/src/app.module.ts | 3 +-- .../spline-single-source/tslint.json | 26 ++++++++++-------- .../spline-styling/src/app.module.ts | 3 +-- .../category-chart/spline-styling/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../step-area-multiple-sources/tslint.json | 26 ++++++++++-------- .../step-area-single-source/src/app.module.ts | 3 +-- .../step-area-single-source/tslint.json | 26 ++++++++++-------- .../step-area-styling/src/app.module.ts | 3 +-- .../step-area-styling/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../step-line-multiple-sources/tslint.json | 26 ++++++++++-------- .../step-line-single-source/src/app.module.ts | 3 +-- .../step-line-single-source/tslint.json | 26 ++++++++++-------- .../step-line-styling/src/app.module.ts | 3 +-- .../step-line-styling/tslint.json | 26 ++++++++++-------- .../value-lines/src/app.module.ts | 3 +-- .../category-chart/value-lines/tslint.json | 26 ++++++++++-------- .../annotations-custom/src/app.module.ts | 3 +-- .../data-chart/annotations-custom/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../tslint.json | 26 ++++++++++-------- .../axis-label-rotation/src/app.module.ts | 3 +-- .../axis-label-rotation/tslint.json | 26 ++++++++++-------- .../axis-min-max-gap/src/app.module.ts | 3 +-- .../data-chart/axis-min-max-gap/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../bar-chart-multiple-sources/tslint.json | 26 ++++++++++-------- .../bar-chart-overlapping/src/app.module.ts | 3 +-- .../bar-chart-overlapping/tslint.json | 26 ++++++++++-------- .../bar-chart-single-source/src/app.module.ts | 3 +-- .../bar-chart-single-source/tslint.json | 26 ++++++++++-------- .../bar-chart-styling/src/app.module.ts | 3 +-- .../data-chart/bar-chart-styling/tslint.json | 26 ++++++++++-------- .../callout-layer-styling/src/app.module.ts | 3 +-- .../callout-layer-styling/tslint.json | 26 ++++++++++-------- .../dash-array-axes/src/app.module.ts | 3 +-- .../data-chart/dash-array-axes/tslint.json | 26 ++++++++++-------- .../dash-array-series/src/app.module.ts | 3 +-- .../data-chart/dash-array-series/tslint.json | 26 ++++++++++-------- .../dash-array-tickmarks/src/app.module.ts | 3 +-- .../dash-array-tickmarks/tslint.json | 26 ++++++++++-------- .../dash-array-trendline/src/app.module.ts | 3 +-- .../dash-array-trendline/tslint.json | 26 ++++++++++-------- .../data-chart/data-legend/src/app.module.ts | 3 +-- .../charts/data-chart/data-legend/tslint.json | 26 ++++++++++-------- .../data-chart/data-tooltip/src/app.module.ts | 3 +-- .../data-chart/data-tooltip/tslint.json | 26 ++++++++++-------- .../financial-price-series/src/app.module.ts | 3 +-- .../financial-price-series/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../polar-area-chart-styling/tslint.json | 26 ++++++++++-------- .../polar-area-chart/src/app.module.ts | 3 +-- .../data-chart/polar-area-chart/tslint.json | 26 ++++++++++-------- .../polar-line-chart/src/app.module.ts | 3 +-- .../data-chart/polar-line-chart/tslint.json | 26 ++++++++++-------- .../polar-scatter-chart/src/app.module.ts | 3 +-- .../polar-scatter-chart/tslint.json | 26 ++++++++++-------- .../polar-spline-area-chart/src/app.module.ts | 3 +-- .../polar-spline-area-chart/tslint.json | 26 ++++++++++-------- .../polar-spline-chart/src/app.module.ts | 3 +-- .../data-chart/polar-spline-chart/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../radial-area-chart-styling/tslint.json | 26 ++++++++++-------- .../radial-area-chart/src/app.module.ts | 3 +-- .../data-chart/radial-area-chart/tslint.json | 26 ++++++++++-------- .../radial-column-chart/src/app.module.ts | 3 +-- .../radial-column-chart/tslint.json | 26 ++++++++++-------- .../radial-line-chart/src/app.module.ts | 3 +-- .../data-chart/radial-line-chart/tslint.json | 26 ++++++++++-------- .../radial-pie-chart/src/app.module.ts | 3 +-- .../data-chart/radial-pie-chart/tslint.json | 26 ++++++++++-------- .../range-area-chart/src/app.module.ts | 3 +-- .../data-chart/range-area-chart/tslint.json | 26 ++++++++++-------- .../range-column-chart/src/app.module.ts | 3 +-- .../data-chart/range-column-chart/tslint.json | 26 ++++++++++-------- .../scatter-line-chart/src/app.module.ts | 3 +-- .../data-chart/scatter-line-chart/tslint.json | 26 ++++++++++-------- .../scatter-point-chart/src/app.module.ts | 3 +-- .../scatter-point-chart/tslint.json | 26 ++++++++++-------- .../scatter-spline-chart/src/app.module.ts | 3 +-- .../scatter-spline-chart/tslint.json | 26 ++++++++++-------- .../stacked-100-area-chart/src/app.module.ts | 3 +-- .../stacked-100-area-chart/tslint.json | 26 ++++++++++-------- .../stacked-100-bar-chart/src/app.module.ts | 3 +-- .../stacked-100-bar-chart/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../stacked-100-column-chart/tslint.json | 26 ++++++++++-------- .../stacked-100-line-chart/src/app.module.ts | 3 +-- .../stacked-100-line-chart/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../stacked-100-spline-area-chart/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../stacked-100-spline-chart/tslint.json | 26 ++++++++++-------- .../stacked-area-chart/src/app.module.ts | 3 +-- .../data-chart/stacked-area-chart/tslint.json | 26 ++++++++++-------- .../stacked-bar-chart/src/app.module.ts | 3 +-- .../data-chart/stacked-bar-chart/tslint.json | 26 ++++++++++-------- .../stacked-column-chart/src/app.module.ts | 3 +-- .../stacked-column-chart/tslint.json | 26 ++++++++++-------- .../stacked-line-chart/src/app.module.ts | 3 +-- .../data-chart/stacked-line-chart/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../stacked-spline-area-chart/tslint.json | 26 ++++++++++-------- .../stacked-spline-chart/src/app.module.ts | 3 +-- .../stacked-spline-chart/tslint.json | 26 ++++++++++-------- .../transition-event/src/app.module.ts | 3 +-- .../data-chart/transition-event/tslint.json | 26 ++++++++++-------- .../waterfall-chart/src/app.module.ts | 3 +-- .../data-chart/waterfall-chart/tslint.json | 26 ++++++++++-------- .../doughnut-chart/legend/src/app.module.ts | 3 +-- .../charts/doughnut-chart/legend/tslint.json | 26 ++++++++++-------- .../doughnut-chart/overview/src/app.module.ts | 3 +-- .../doughnut-chart/overview/tslint.json | 26 ++++++++++-------- .../doughnut-chart/rings/src/app.module.ts | 3 +-- .../charts/doughnut-chart/rings/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../data-legend-styling-props/tslint.json | 26 ++++++++++-------- .../data-legend/src/app.module.ts | 3 +-- .../financial-chart/data-legend/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../data-tooltip-styling-props/tslint.json | 26 ++++++++++-------- .../data-tooltip/src/app.module.ts | 3 +-- .../financial-chart/data-tooltip/tslint.json | 26 ++++++++++-------- .../scrollbars/src/app.module.ts | 3 +-- .../financial-chart/scrollbars/tslint.json | 26 ++++++++++-------- .../charts/pie-chart/legend/src/app.module.ts | 3 +-- samples/charts/pie-chart/legend/tslint.json | 26 ++++++++++-------- .../charts/pie-chart/others/src/app.module.ts | 3 +-- samples/charts/pie-chart/others/tslint.json | 26 ++++++++++-------- .../pie-chart/overview/src/app.module.ts | 3 +-- samples/charts/pie-chart/overview/tslint.json | 26 ++++++++++-------- .../pie-chart/styling/src/app.module.ts | 3 +-- samples/charts/pie-chart/styling/tslint.json | 26 ++++++++++-------- .../sparkline/display-area/src/app.module.ts | 3 +-- .../charts/sparkline/display-area/tslint.json | 26 ++++++++++-------- .../display-column/src/app.module.ts | 3 +-- .../sparkline/display-column/tslint.json | 26 ++++++++++-------- .../sparkline/display-lines/src/app.module.ts | 3 +-- .../sparkline/display-lines/tslint.json | 26 ++++++++++-------- .../display-winloss/src/app.module.ts | 3 +-- .../sparkline/display-winloss/tslint.json | 26 ++++++++++-------- .../sparkline/markers/src/app.module.ts | 3 +-- samples/charts/sparkline/markers/tslint.json | 26 ++++++++++-------- .../sparkline/normal-range/src/app.module.ts | 3 +-- .../charts/sparkline/normal-range/tslint.json | 26 ++++++++++-------- .../sparkline/trendlines/src/app.module.ts | 3 +-- .../charts/sparkline/trendlines/tslint.json | 26 ++++++++++-------- .../unknown-values/src/app.module.ts | 3 +-- .../sparkline/unknown-values/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../actions-built-in-data-chart/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../layout-actions-for-data-chart/tslint.json | 26 ++++++++++-------- .../src/app.module.ts | 3 +-- .../tslint.json | 26 ++++++++++-------- .../charts/toolbar/theming/src/app.module.ts | 3 +-- samples/charts/toolbar/theming/tslint.json | 26 ++++++++++-------- .../charts/tree-map/layout/src/app.module.ts | 3 +-- samples/charts/tree-map/layout/tslint.json | 26 ++++++++++-------- .../tree-map/overview/src/app.module.ts | 3 +-- samples/charts/tree-map/overview/tslint.json | 26 ++++++++++-------- .../charts/tree-map/styling/src/app.module.ts | 3 +-- samples/charts/tree-map/styling/tslint.json | 26 ++++++++++-------- 253 files changed, 2031 insertions(+), 1650 deletions(-) diff --git a/browser/tslint.json b/browser/tslint.json index 692dbdcf1..777c777d9 100644 --- a/browser/tslint.json +++ b/browser/tslint.json @@ -4,25 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "disable-next-line:space-within-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/annotations-all/src/app.module.ts b/samples/charts/category-chart/annotations-all/src/app.module.ts index d18a18115..1cdbd60b2 100644 --- a/samples/charts/category-chart/annotations-all/src/app.module.ts +++ b/samples/charts/category-chart/annotations-all/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/annotations-all/tslint.json b/samples/charts/category-chart/annotations-all/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/annotations-all/tslint.json +++ b/samples/charts/category-chart/annotations-all/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/annotations-callouts/src/app.module.ts b/samples/charts/category-chart/annotations-callouts/src/app.module.ts index d18a18115..1cdbd60b2 100644 --- a/samples/charts/category-chart/annotations-callouts/src/app.module.ts +++ b/samples/charts/category-chart/annotations-callouts/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/annotations-callouts/tslint.json b/samples/charts/category-chart/annotations-callouts/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/annotations-callouts/tslint.json +++ b/samples/charts/category-chart/annotations-callouts/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/annotations-crosshairs/src/app.module.ts b/samples/charts/category-chart/annotations-crosshairs/src/app.module.ts index d18a18115..1cdbd60b2 100644 --- a/samples/charts/category-chart/annotations-crosshairs/src/app.module.ts +++ b/samples/charts/category-chart/annotations-crosshairs/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/annotations-crosshairs/tslint.json b/samples/charts/category-chart/annotations-crosshairs/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/annotations-crosshairs/tslint.json +++ b/samples/charts/category-chart/annotations-crosshairs/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/annotations-custom/src/app.module.ts b/samples/charts/category-chart/annotations-custom/src/app.module.ts index d18a18115..1cdbd60b2 100644 --- a/samples/charts/category-chart/annotations-custom/src/app.module.ts +++ b/samples/charts/category-chart/annotations-custom/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/annotations-custom/tslint.json b/samples/charts/category-chart/annotations-custom/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/annotations-custom/tslint.json +++ b/samples/charts/category-chart/annotations-custom/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/annotations-final-value/src/app.module.ts b/samples/charts/category-chart/annotations-final-value/src/app.module.ts index d18a18115..1cdbd60b2 100644 --- a/samples/charts/category-chart/annotations-final-value/src/app.module.ts +++ b/samples/charts/category-chart/annotations-final-value/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/annotations-final-value/tslint.json b/samples/charts/category-chart/annotations-final-value/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/annotations-final-value/tslint.json +++ b/samples/charts/category-chart/annotations-final-value/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/annotations-highlighting/src/app.module.ts b/samples/charts/category-chart/annotations-highlighting/src/app.module.ts index d18a18115..1cdbd60b2 100644 --- a/samples/charts/category-chart/annotations-highlighting/src/app.module.ts +++ b/samples/charts/category-chart/annotations-highlighting/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/annotations-highlighting/tslint.json b/samples/charts/category-chart/annotations-highlighting/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/annotations-highlighting/tslint.json +++ b/samples/charts/category-chart/annotations-highlighting/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/area-chart-multiple-sources/src/app.module.ts b/samples/charts/category-chart/area-chart-multiple-sources/src/app.module.ts index e927ce2a7..8024e2ea7 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/src/app.module.ts +++ b/samples/charts/category-chart/area-chart-multiple-sources/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/area-chart-multiple-sources/tslint.json b/samples/charts/category-chart/area-chart-multiple-sources/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/tslint.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/area-chart-single-source/src/app.module.ts b/samples/charts/category-chart/area-chart-single-source/src/app.module.ts index 306831794..0a7f4450e 100644 --- a/samples/charts/category-chart/area-chart-single-source/src/app.module.ts +++ b/samples/charts/category-chart/area-chart-single-source/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -20,7 +20,6 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/area-chart-single-source/tslint.json b/samples/charts/category-chart/area-chart-single-source/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/area-chart-single-source/tslint.json +++ b/samples/charts/category-chart/area-chart-single-source/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/area-chart-styling/src/app.module.ts b/samples/charts/category-chart/area-chart-styling/src/app.module.ts index e927ce2a7..8024e2ea7 100644 --- a/samples/charts/category-chart/area-chart-styling/src/app.module.ts +++ b/samples/charts/category-chart/area-chart-styling/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/area-chart-styling/tslint.json b/samples/charts/category-chart/area-chart-styling/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/area-chart-styling/tslint.json +++ b/samples/charts/category-chart/area-chart-styling/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/axis-gap/src/app.module.ts b/samples/charts/category-chart/axis-gap/src/app.module.ts index 8bec028d7..b4febf5b8 100644 --- a/samples/charts/category-chart/axis-gap/src/app.module.ts +++ b/samples/charts/category-chart/axis-gap/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -23,7 +23,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/axis-gap/tslint.json b/samples/charts/category-chart/axis-gap/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/axis-gap/tslint.json +++ b/samples/charts/category-chart/axis-gap/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/axis-gridlines/src/app.module.ts b/samples/charts/category-chart/axis-gridlines/src/app.module.ts index 8bec028d7..b4febf5b8 100644 --- a/samples/charts/category-chart/axis-gridlines/src/app.module.ts +++ b/samples/charts/category-chart/axis-gridlines/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -23,7 +23,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/axis-gridlines/tslint.json b/samples/charts/category-chart/axis-gridlines/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/axis-gridlines/tslint.json +++ b/samples/charts/category-chart/axis-gridlines/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/axis-inverted/src/app.module.ts b/samples/charts/category-chart/axis-inverted/src/app.module.ts index d18a18115..1cdbd60b2 100644 --- a/samples/charts/category-chart/axis-inverted/src/app.module.ts +++ b/samples/charts/category-chart/axis-inverted/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/axis-inverted/tslint.json b/samples/charts/category-chart/axis-inverted/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/axis-inverted/tslint.json +++ b/samples/charts/category-chart/axis-inverted/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/axis-labels/src/app.module.ts b/samples/charts/category-chart/axis-labels/src/app.module.ts index 8bec028d7..b4febf5b8 100644 --- a/samples/charts/category-chart/axis-labels/src/app.module.ts +++ b/samples/charts/category-chart/axis-labels/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -23,7 +23,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/axis-labels/tslint.json b/samples/charts/category-chart/axis-labels/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/axis-labels/tslint.json +++ b/samples/charts/category-chart/axis-labels/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/axis-locations/src/app.module.ts b/samples/charts/category-chart/axis-locations/src/app.module.ts index 8bec028d7..b4febf5b8 100644 --- a/samples/charts/category-chart/axis-locations/src/app.module.ts +++ b/samples/charts/category-chart/axis-locations/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -23,7 +23,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/axis-locations/tslint.json b/samples/charts/category-chart/axis-locations/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/axis-locations/tslint.json +++ b/samples/charts/category-chart/axis-locations/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/axis-options/src/app.module.ts b/samples/charts/category-chart/axis-options/src/app.module.ts index 306831794..0a7f4450e 100644 --- a/samples/charts/category-chart/axis-options/src/app.module.ts +++ b/samples/charts/category-chart/axis-options/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -20,7 +20,6 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/axis-options/tslint.json b/samples/charts/category-chart/axis-options/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/axis-options/tslint.json +++ b/samples/charts/category-chart/axis-options/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/axis-overlap/src/app.module.ts b/samples/charts/category-chart/axis-overlap/src/app.module.ts index 8bec028d7..b4febf5b8 100644 --- a/samples/charts/category-chart/axis-overlap/src/app.module.ts +++ b/samples/charts/category-chart/axis-overlap/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -23,7 +23,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/axis-overlap/tslint.json b/samples/charts/category-chart/axis-overlap/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/axis-overlap/tslint.json +++ b/samples/charts/category-chart/axis-overlap/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/axis-range/src/app.module.ts b/samples/charts/category-chart/axis-range/src/app.module.ts index 8bec028d7..b4febf5b8 100644 --- a/samples/charts/category-chart/axis-range/src/app.module.ts +++ b/samples/charts/category-chart/axis-range/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -23,7 +23,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/axis-range/tslint.json b/samples/charts/category-chart/axis-range/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/axis-range/tslint.json +++ b/samples/charts/category-chart/axis-range/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/axis-tickmarks/src/app.module.ts b/samples/charts/category-chart/axis-tickmarks/src/app.module.ts index 8bec028d7..b4febf5b8 100644 --- a/samples/charts/category-chart/axis-tickmarks/src/app.module.ts +++ b/samples/charts/category-chart/axis-tickmarks/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -23,7 +23,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/axis-tickmarks/tslint.json b/samples/charts/category-chart/axis-tickmarks/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/axis-tickmarks/tslint.json +++ b/samples/charts/category-chart/axis-tickmarks/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/axis-titles/src/app.module.ts b/samples/charts/category-chart/axis-titles/src/app.module.ts index e927ce2a7..8024e2ea7 100644 --- a/samples/charts/category-chart/axis-titles/src/app.module.ts +++ b/samples/charts/category-chart/axis-titles/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/axis-titles/tslint.json b/samples/charts/category-chart/axis-titles/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/axis-titles/tslint.json +++ b/samples/charts/category-chart/axis-titles/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/app.module.ts b/samples/charts/category-chart/column-chart-multiple-sources/src/app.module.ts index e927ce2a7..8024e2ea7 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/app.module.ts +++ b/samples/charts/category-chart/column-chart-multiple-sources/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/column-chart-multiple-sources/tslint.json b/samples/charts/category-chart/column-chart-multiple-sources/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/tslint.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/column-chart-single-source/src/app.module.ts b/samples/charts/category-chart/column-chart-single-source/src/app.module.ts index 306831794..0a7f4450e 100644 --- a/samples/charts/category-chart/column-chart-single-source/src/app.module.ts +++ b/samples/charts/category-chart/column-chart-single-source/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -20,7 +20,6 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/column-chart-single-source/tslint.json b/samples/charts/category-chart/column-chart-single-source/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/column-chart-single-source/tslint.json +++ b/samples/charts/category-chart/column-chart-single-source/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/column-chart-styling/src/app.module.ts b/samples/charts/category-chart/column-chart-styling/src/app.module.ts index e927ce2a7..8024e2ea7 100644 --- a/samples/charts/category-chart/column-chart-styling/src/app.module.ts +++ b/samples/charts/category-chart/column-chart-styling/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/column-chart-styling/tslint.json b/samples/charts/category-chart/column-chart-styling/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/column-chart-styling/tslint.json +++ b/samples/charts/category-chart/column-chart-styling/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/src/app.module.ts b/samples/charts/category-chart/column-chart-with-tooltips/src/app.module.ts index 8bec028d7..b4febf5b8 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/src/app.module.ts +++ b/samples/charts/category-chart/column-chart-with-tooltips/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -23,7 +23,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/column-chart-with-tooltips/tslint.json b/samples/charts/category-chart/column-chart-with-tooltips/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/tslint.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/data-aggregations/src/app.module.ts b/samples/charts/category-chart/data-aggregations/src/app.module.ts index 8bec028d7..b4febf5b8 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.module.ts +++ b/samples/charts/category-chart/data-aggregations/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -23,7 +23,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/data-aggregations/tslint.json b/samples/charts/category-chart/data-aggregations/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/data-aggregations/tslint.json +++ b/samples/charts/category-chart/data-aggregations/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/app.module.ts b/samples/charts/category-chart/data-legend-formatting-decimals/src/app.module.ts index f9d1d4c88..930aaeca2 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/app.module.ts +++ b/samples/charts/category-chart/data-legend-formatting-decimals/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataLegendModule, IgxCategoryChartModule } from 'igniteui-angular-ch @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxDataLegendModule, IgxCategoryChartModule } from 'igniteui-angular-ch IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/tslint.json b/samples/charts/category-chart/data-legend-formatting-decimals/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/tslint.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/data-legend/src/app.module.ts b/samples/charts/category-chart/data-legend/src/app.module.ts index f9d1d4c88..930aaeca2 100644 --- a/samples/charts/category-chart/data-legend/src/app.module.ts +++ b/samples/charts/category-chart/data-legend/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataLegendModule, IgxCategoryChartModule } from 'igniteui-angular-ch @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxDataLegendModule, IgxCategoryChartModule } from 'igniteui-angular-ch IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/data-legend/tslint.json b/samples/charts/category-chart/data-legend/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/data-legend/tslint.json +++ b/samples/charts/category-chart/data-legend/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/app.module.ts b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/app.module.ts index e927ce2a7..8024e2ea7 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/app.module.ts +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/tslint.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/tslint.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/src/app.module.ts b/samples/charts/category-chart/data-tooltip-positioning/src/app.module.ts index 8bec028d7..b4febf5b8 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/src/app.module.ts +++ b/samples/charts/category-chart/data-tooltip-positioning/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -23,7 +23,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/data-tooltip-positioning/tslint.json b/samples/charts/category-chart/data-tooltip-positioning/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/tslint.json +++ b/samples/charts/category-chart/data-tooltip-positioning/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/data-tooltip/src/app.module.ts b/samples/charts/category-chart/data-tooltip/src/app.module.ts index e927ce2a7..8024e2ea7 100644 --- a/samples/charts/category-chart/data-tooltip/src/app.module.ts +++ b/samples/charts/category-chart/data-tooltip/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/data-tooltip/tslint.json b/samples/charts/category-chart/data-tooltip/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/data-tooltip/tslint.json +++ b/samples/charts/category-chart/data-tooltip/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/app.module.ts b/samples/charts/category-chart/line-chart-multiple-sources/src/app.module.ts index e927ce2a7..8024e2ea7 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/app.module.ts +++ b/samples/charts/category-chart/line-chart-multiple-sources/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/line-chart-multiple-sources/tslint.json b/samples/charts/category-chart/line-chart-multiple-sources/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/tslint.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/line-chart-single-source/src/app.module.ts b/samples/charts/category-chart/line-chart-single-source/src/app.module.ts index 306831794..0a7f4450e 100644 --- a/samples/charts/category-chart/line-chart-single-source/src/app.module.ts +++ b/samples/charts/category-chart/line-chart-single-source/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -20,7 +20,6 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/line-chart-single-source/tslint.json b/samples/charts/category-chart/line-chart-single-source/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/line-chart-single-source/tslint.json +++ b/samples/charts/category-chart/line-chart-single-source/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/line-chart-styling/src/app.module.ts b/samples/charts/category-chart/line-chart-styling/src/app.module.ts index e927ce2a7..8024e2ea7 100644 --- a/samples/charts/category-chart/line-chart-styling/src/app.module.ts +++ b/samples/charts/category-chart/line-chart-styling/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/line-chart-styling/tslint.json b/samples/charts/category-chart/line-chart-styling/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/line-chart-styling/tslint.json +++ b/samples/charts/category-chart/line-chart-styling/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/marker-options/src/app.module.ts b/samples/charts/category-chart/marker-options/src/app.module.ts index c06738cb6..63c4593b4 100644 --- a/samples/charts/category-chart/marker-options/src/app.module.ts +++ b/samples/charts/category-chart/marker-options/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxCategoryChartModule, IgxDataChartInteractivityModule } from 'igniteu @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -23,7 +23,6 @@ import { IgxCategoryChartModule, IgxDataChartInteractivityModule } from 'igniteu IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/marker-options/tslint.json b/samples/charts/category-chart/marker-options/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/marker-options/tslint.json +++ b/samples/charts/category-chart/marker-options/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/overview/src/app.module.ts b/samples/charts/category-chart/overview/src/app.module.ts index ff384662d..c4fbb33e2 100644 --- a/samples/charts/category-chart/overview/src/app.module.ts +++ b/samples/charts/category-chart/overview/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/overview/tslint.json b/samples/charts/category-chart/overview/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/overview/tslint.json +++ b/samples/charts/category-chart/overview/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/src/app.module.ts b/samples/charts/category-chart/point-chart-multiple-sources/src/app.module.ts index e927ce2a7..8024e2ea7 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/src/app.module.ts +++ b/samples/charts/category-chart/point-chart-multiple-sources/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/point-chart-multiple-sources/tslint.json b/samples/charts/category-chart/point-chart-multiple-sources/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/tslint.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/point-chart-single-source/src/app.module.ts b/samples/charts/category-chart/point-chart-single-source/src/app.module.ts index 306831794..0a7f4450e 100644 --- a/samples/charts/category-chart/point-chart-single-source/src/app.module.ts +++ b/samples/charts/category-chart/point-chart-single-source/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -20,7 +20,6 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/point-chart-single-source/tslint.json b/samples/charts/category-chart/point-chart-single-source/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/point-chart-single-source/tslint.json +++ b/samples/charts/category-chart/point-chart-single-source/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/point-chart-styling/src/app.module.ts b/samples/charts/category-chart/point-chart-styling/src/app.module.ts index e927ce2a7..8024e2ea7 100644 --- a/samples/charts/category-chart/point-chart-styling/src/app.module.ts +++ b/samples/charts/category-chart/point-chart-styling/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/point-chart-styling/tslint.json b/samples/charts/category-chart/point-chart-styling/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/point-chart-styling/tslint.json +++ b/samples/charts/category-chart/point-chart-styling/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/app.module.ts b/samples/charts/category-chart/spline-area-multiple-sources/src/app.module.ts index ff384662d..c4fbb33e2 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/app.module.ts +++ b/samples/charts/category-chart/spline-area-multiple-sources/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/spline-area-multiple-sources/tslint.json b/samples/charts/category-chart/spline-area-multiple-sources/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/tslint.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/spline-area-single-source/src/app.module.ts b/samples/charts/category-chart/spline-area-single-source/src/app.module.ts index 306831794..0a7f4450e 100644 --- a/samples/charts/category-chart/spline-area-single-source/src/app.module.ts +++ b/samples/charts/category-chart/spline-area-single-source/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -20,7 +20,6 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/spline-area-single-source/tslint.json b/samples/charts/category-chart/spline-area-single-source/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/spline-area-single-source/tslint.json +++ b/samples/charts/category-chart/spline-area-single-source/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/spline-area-styling/src/app.module.ts b/samples/charts/category-chart/spline-area-styling/src/app.module.ts index ff384662d..c4fbb33e2 100644 --- a/samples/charts/category-chart/spline-area-styling/src/app.module.ts +++ b/samples/charts/category-chart/spline-area-styling/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/spline-area-styling/tslint.json b/samples/charts/category-chart/spline-area-styling/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/spline-area-styling/tslint.json +++ b/samples/charts/category-chart/spline-area-styling/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/spline-multiple-sources/src/app.module.ts b/samples/charts/category-chart/spline-multiple-sources/src/app.module.ts index ff384662d..c4fbb33e2 100644 --- a/samples/charts/category-chart/spline-multiple-sources/src/app.module.ts +++ b/samples/charts/category-chart/spline-multiple-sources/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/spline-multiple-sources/tslint.json b/samples/charts/category-chart/spline-multiple-sources/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/spline-multiple-sources/tslint.json +++ b/samples/charts/category-chart/spline-multiple-sources/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/spline-single-source/src/app.module.ts b/samples/charts/category-chart/spline-single-source/src/app.module.ts index 306831794..0a7f4450e 100644 --- a/samples/charts/category-chart/spline-single-source/src/app.module.ts +++ b/samples/charts/category-chart/spline-single-source/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -20,7 +20,6 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts'; IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/spline-single-source/tslint.json b/samples/charts/category-chart/spline-single-source/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/spline-single-source/tslint.json +++ b/samples/charts/category-chart/spline-single-source/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/spline-styling/src/app.module.ts b/samples/charts/category-chart/spline-styling/src/app.module.ts index ff384662d..c4fbb33e2 100644 --- a/samples/charts/category-chart/spline-styling/src/app.module.ts +++ b/samples/charts/category-chart/spline-styling/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/spline-styling/tslint.json b/samples/charts/category-chart/spline-styling/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/spline-styling/tslint.json +++ b/samples/charts/category-chart/spline-styling/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/step-area-multiple-sources/src/app.module.ts b/samples/charts/category-chart/step-area-multiple-sources/src/app.module.ts index ff384662d..c4fbb33e2 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/src/app.module.ts +++ b/samples/charts/category-chart/step-area-multiple-sources/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/step-area-multiple-sources/tslint.json b/samples/charts/category-chart/step-area-multiple-sources/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/tslint.json +++ b/samples/charts/category-chart/step-area-multiple-sources/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/step-area-single-source/src/app.module.ts b/samples/charts/category-chart/step-area-single-source/src/app.module.ts index 44766fbe7..a77bef963 100644 --- a/samples/charts/category-chart/step-area-single-source/src/app.module.ts +++ b/samples/charts/category-chart/step-area-single-source/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxCategoryChartModule, IgxDataChartInteractivityModule } from 'igniteu @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxCategoryChartModule, IgxDataChartInteractivityModule } from 'igniteu IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/step-area-single-source/tslint.json b/samples/charts/category-chart/step-area-single-source/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/step-area-single-source/tslint.json +++ b/samples/charts/category-chart/step-area-single-source/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/step-area-styling/src/app.module.ts b/samples/charts/category-chart/step-area-styling/src/app.module.ts index ff384662d..c4fbb33e2 100644 --- a/samples/charts/category-chart/step-area-styling/src/app.module.ts +++ b/samples/charts/category-chart/step-area-styling/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/step-area-styling/tslint.json b/samples/charts/category-chart/step-area-styling/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/step-area-styling/tslint.json +++ b/samples/charts/category-chart/step-area-styling/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/step-line-multiple-sources/src/app.module.ts b/samples/charts/category-chart/step-line-multiple-sources/src/app.module.ts index ff384662d..c4fbb33e2 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/src/app.module.ts +++ b/samples/charts/category-chart/step-line-multiple-sources/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/step-line-multiple-sources/tslint.json b/samples/charts/category-chart/step-line-multiple-sources/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/tslint.json +++ b/samples/charts/category-chart/step-line-multiple-sources/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/step-line-single-source/src/app.module.ts b/samples/charts/category-chart/step-line-single-source/src/app.module.ts index 44766fbe7..a77bef963 100644 --- a/samples/charts/category-chart/step-line-single-source/src/app.module.ts +++ b/samples/charts/category-chart/step-line-single-source/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxCategoryChartModule, IgxDataChartInteractivityModule } from 'igniteu @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxCategoryChartModule, IgxDataChartInteractivityModule } from 'igniteu IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/step-line-single-source/tslint.json b/samples/charts/category-chart/step-line-single-source/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/step-line-single-source/tslint.json +++ b/samples/charts/category-chart/step-line-single-source/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/step-line-styling/src/app.module.ts b/samples/charts/category-chart/step-line-styling/src/app.module.ts index ff384662d..c4fbb33e2 100644 --- a/samples/charts/category-chart/step-line-styling/src/app.module.ts +++ b/samples/charts/category-chart/step-line-styling/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModul IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/step-line-styling/tslint.json b/samples/charts/category-chart/step-line-styling/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/step-line-styling/tslint.json +++ b/samples/charts/category-chart/step-line-styling/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/category-chart/value-lines/src/app.module.ts b/samples/charts/category-chart/value-lines/src/app.module.ts index 8bec028d7..b4febf5b8 100644 --- a/samples/charts/category-chart/value-lines/src/app.module.ts +++ b/samples/charts/category-chart/value-lines/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -23,7 +23,6 @@ import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts IgxCategoryChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/value-lines/tslint.json b/samples/charts/category-chart/value-lines/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/category-chart/value-lines/tslint.json +++ b/samples/charts/category-chart/value-lines/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/annotations-custom/src/app.module.ts b/samples/charts/data-chart/annotations-custom/src/app.module.ts index 22997cd0f..a00ec560f 100644 --- a/samples/charts/data-chart/annotations-custom/src/app.module.ts +++ b/samples/charts/data-chart/annotations-custom/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartAnnotat @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -24,7 +24,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartAnnotat IgxAnnotationLayerProxyModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/annotations-custom/tslint.json b/samples/charts/data-chart/annotations-custom/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/annotations-custom/tslint.json +++ b/samples/charts/data-chart/annotations-custom/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/src/app.module.ts b/samples/charts/data-chart/axis-annotations-corner-radius/src/app.module.ts index 22997cd0f..a00ec560f 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/src/app.module.ts +++ b/samples/charts/data-chart/axis-annotations-corner-radius/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartAnnotat @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -24,7 +24,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartAnnotat IgxAnnotationLayerProxyModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/tslint.json b/samples/charts/data-chart/axis-annotations-corner-radius/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/tslint.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/axis-label-rotation/src/app.module.ts b/samples/charts/data-chart/axis-label-rotation/src/app.module.ts index 96804b6df..90b0ab492 100644 --- a/samples/charts/data-chart/axis-label-rotation/src/app.module.ts +++ b/samples/charts/data-chart/axis-label-rotation/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxDataChartCategoryModule, IgxDataChartInteractivityModule } from 'ign @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -23,7 +23,6 @@ import { IgxDataChartCategoryModule, IgxDataChartInteractivityModule } from 'ign IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/axis-label-rotation/tslint.json b/samples/charts/data-chart/axis-label-rotation/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/axis-label-rotation/tslint.json +++ b/samples/charts/data-chart/axis-label-rotation/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/axis-min-max-gap/src/app.module.ts b/samples/charts/data-chart/axis-min-max-gap/src/app.module.ts index c0f58ef84..52ebd10c6 100644 --- a/samples/charts/data-chart/axis-min-max-gap/src/app.module.ts +++ b/samples/charts/data-chart/axis-min-max-gap/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataChartCategoryModule, IgxDataChartAnnotationModule, IgxDataChartI @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxDataChartCategoryModule, IgxDataChartAnnotationModule, IgxDataChartI IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/axis-min-max-gap/tslint.json b/samples/charts/data-chart/axis-min-max-gap/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/axis-min-max-gap/tslint.json +++ b/samples/charts/data-chart/axis-min-max-gap/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/src/app.module.ts b/samples/charts/data-chart/bar-chart-multiple-sources/src/app.module.ts index 0b14a068e..aec5d44f2 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/src/app.module.ts +++ b/samples/charts/data-chart/bar-chart-multiple-sources/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryCoreModule @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -26,7 +26,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryCoreModule IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/tslint.json b/samples/charts/data-chart/bar-chart-multiple-sources/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/tslint.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/src/app.module.ts b/samples/charts/data-chart/bar-chart-overlapping/src/app.module.ts index 425322dd8..9a1369549 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/src/app.module.ts +++ b/samples/charts/data-chart/bar-chart-overlapping/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartAnnotationModule, IgxDataChartCoreModule, @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -27,7 +27,6 @@ import { IgxLegendModule, IgxDataChartAnnotationModule, IgxDataChartCoreModule, IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/bar-chart-overlapping/tslint.json b/samples/charts/data-chart/bar-chart-overlapping/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/tslint.json +++ b/samples/charts/data-chart/bar-chart-overlapping/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/bar-chart-single-source/src/app.module.ts b/samples/charts/data-chart/bar-chart-single-source/src/app.module.ts index cce9d404d..2b94d114f 100644 --- a/samples/charts/data-chart/bar-chart-single-source/src/app.module.ts +++ b/samples/charts/data-chart/bar-chart-single-source/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryCoreModule, IgxDataChartCat @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -25,7 +25,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryCoreModule, IgxDataChartCat IgxDataChartVerticalCategoryModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/bar-chart-single-source/tslint.json b/samples/charts/data-chart/bar-chart-single-source/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/bar-chart-single-source/tslint.json +++ b/samples/charts/data-chart/bar-chart-single-source/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/bar-chart-styling/src/app.module.ts b/samples/charts/data-chart/bar-chart-styling/src/app.module.ts index 9f07e51f5..7843e7eb4 100644 --- a/samples/charts/data-chart/bar-chart-styling/src/app.module.ts +++ b/samples/charts/data-chart/bar-chart-styling/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartCategor @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -27,7 +27,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartCategor IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/bar-chart-styling/tslint.json b/samples/charts/data-chart/bar-chart-styling/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/bar-chart-styling/tslint.json +++ b/samples/charts/data-chart/bar-chart-styling/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/callout-layer-styling/src/app.module.ts b/samples/charts/data-chart/callout-layer-styling/src/app.module.ts index 22997cd0f..a00ec560f 100644 --- a/samples/charts/data-chart/callout-layer-styling/src/app.module.ts +++ b/samples/charts/data-chart/callout-layer-styling/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartAnnotat @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -24,7 +24,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartAnnotat IgxAnnotationLayerProxyModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/callout-layer-styling/tslint.json b/samples/charts/data-chart/callout-layer-styling/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/callout-layer-styling/tslint.json +++ b/samples/charts/data-chart/callout-layer-styling/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/dash-array-axes/src/app.module.ts b/samples/charts/data-chart/dash-array-axes/src/app.module.ts index f74b8c670..24c4ffc35 100644 --- a/samples/charts/data-chart/dash-array-axes/src/app.module.ts +++ b/samples/charts/data-chart/dash-array-axes/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCategoryModule, IgxDataChartInteractivityM @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxLegendModule, IgxDataChartCategoryModule, IgxDataChartInteractivityM IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/dash-array-axes/tslint.json b/samples/charts/data-chart/dash-array-axes/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/dash-array-axes/tslint.json +++ b/samples/charts/data-chart/dash-array-axes/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/dash-array-series/src/app.module.ts b/samples/charts/data-chart/dash-array-series/src/app.module.ts index f74b8c670..24c4ffc35 100644 --- a/samples/charts/data-chart/dash-array-series/src/app.module.ts +++ b/samples/charts/data-chart/dash-array-series/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCategoryModule, IgxDataChartInteractivityM @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxLegendModule, IgxDataChartCategoryModule, IgxDataChartInteractivityM IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/dash-array-series/tslint.json b/samples/charts/data-chart/dash-array-series/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/dash-array-series/tslint.json +++ b/samples/charts/data-chart/dash-array-series/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/dash-array-tickmarks/src/app.module.ts b/samples/charts/data-chart/dash-array-tickmarks/src/app.module.ts index 3e1d268b9..ecb17489e 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/src/app.module.ts +++ b/samples/charts/data-chart/dash-array-tickmarks/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataChartCategoryModule, IgxDataChartInteractivityModule } from 'ign @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxDataChartCategoryModule, IgxDataChartInteractivityModule } from 'ign IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/dash-array-tickmarks/tslint.json b/samples/charts/data-chart/dash-array-tickmarks/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/tslint.json +++ b/samples/charts/data-chart/dash-array-tickmarks/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/dash-array-trendline/src/app.module.ts b/samples/charts/data-chart/dash-array-trendline/src/app.module.ts index a89280139..fceeb01af 100644 --- a/samples/charts/data-chart/dash-array-trendline/src/app.module.ts +++ b/samples/charts/data-chart/dash-array-trendline/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartCategor @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -28,7 +28,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartCategor IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/dash-array-trendline/tslint.json b/samples/charts/data-chart/dash-array-trendline/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/dash-array-trendline/tslint.json +++ b/samples/charts/data-chart/dash-array-trendline/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/data-legend/src/app.module.ts b/samples/charts/data-chart/data-legend/src/app.module.ts index de2239ec2..64433284f 100644 --- a/samples/charts/data-chart/data-legend/src/app.module.ts +++ b/samples/charts/data-chart/data-legend/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCoreModule, Ig @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -27,7 +27,6 @@ import { IgxLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCoreModule, Ig IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/data-legend/tslint.json b/samples/charts/data-chart/data-legend/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/data-legend/tslint.json +++ b/samples/charts/data-chart/data-legend/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/data-tooltip/src/app.module.ts b/samples/charts/data-chart/data-tooltip/src/app.module.ts index 5190686af..1b1ee4232 100644 --- a/samples/charts/data-chart/data-tooltip/src/app.module.ts +++ b/samples/charts/data-chart/data-tooltip/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCoreModule, Ig @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -26,7 +26,6 @@ import { IgxLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCoreModule, Ig IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/data-tooltip/tslint.json b/samples/charts/data-chart/data-tooltip/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/data-tooltip/tslint.json +++ b/samples/charts/data-chart/data-tooltip/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/financial-price-series/src/app.module.ts b/samples/charts/data-chart/financial-price-series/src/app.module.ts index 963308b71..065130247 100644 --- a/samples/charts/data-chart/financial-price-series/src/app.module.ts +++ b/samples/charts/data-chart/financial-price-series/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartCategor @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -27,7 +27,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartCategor IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/financial-price-series/tslint.json b/samples/charts/data-chart/financial-price-series/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/financial-price-series/tslint.json +++ b/samples/charts/data-chart/financial-price-series/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/polar-area-chart-styling/src/app.module.ts b/samples/charts/data-chart/polar-area-chart-styling/src/app.module.ts index cf649efaf..57da38db8 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/src/app.module.ts +++ b/samples/charts/data-chart/polar-area-chart-styling/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataChartCoreModule, IgxDataChartPolarModule, IgxDataChartPolarCoreM @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -25,7 +25,6 @@ import { IgxDataChartCoreModule, IgxDataChartPolarModule, IgxDataChartPolarCoreM IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/polar-area-chart-styling/tslint.json b/samples/charts/data-chart/polar-area-chart-styling/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/tslint.json +++ b/samples/charts/data-chart/polar-area-chart-styling/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/polar-area-chart/src/app.module.ts b/samples/charts/data-chart/polar-area-chart/src/app.module.ts index fb7f35537..f7c18531a 100644 --- a/samples/charts/data-chart/polar-area-chart/src/app.module.ts +++ b/samples/charts/data-chart/polar-area-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartPolarModule, IgxDa @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -25,7 +25,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartPolarModule, IgxDa IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/polar-area-chart/tslint.json b/samples/charts/data-chart/polar-area-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/polar-area-chart/tslint.json +++ b/samples/charts/data-chart/polar-area-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/polar-line-chart/src/app.module.ts b/samples/charts/data-chart/polar-line-chart/src/app.module.ts index fb7f35537..f7c18531a 100644 --- a/samples/charts/data-chart/polar-line-chart/src/app.module.ts +++ b/samples/charts/data-chart/polar-line-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartPolarModule, IgxDa @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -25,7 +25,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartPolarModule, IgxDa IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/polar-line-chart/tslint.json b/samples/charts/data-chart/polar-line-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/polar-line-chart/tslint.json +++ b/samples/charts/data-chart/polar-line-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/polar-scatter-chart/src/app.module.ts b/samples/charts/data-chart/polar-scatter-chart/src/app.module.ts index f6b9110d4..947738347 100644 --- a/samples/charts/data-chart/polar-scatter-chart/src/app.module.ts +++ b/samples/charts/data-chart/polar-scatter-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataChartCoreModule, IgxDataChartPolarModule, IgxDataChartPolarCoreM @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -24,7 +24,6 @@ import { IgxDataChartCoreModule, IgxDataChartPolarModule, IgxDataChartPolarCoreM IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/polar-scatter-chart/tslint.json b/samples/charts/data-chart/polar-scatter-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/polar-scatter-chart/tslint.json +++ b/samples/charts/data-chart/polar-scatter-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/polar-spline-area-chart/src/app.module.ts b/samples/charts/data-chart/polar-spline-area-chart/src/app.module.ts index f6b9110d4..947738347 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/src/app.module.ts +++ b/samples/charts/data-chart/polar-spline-area-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataChartCoreModule, IgxDataChartPolarModule, IgxDataChartPolarCoreM @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -24,7 +24,6 @@ import { IgxDataChartCoreModule, IgxDataChartPolarModule, IgxDataChartPolarCoreM IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/polar-spline-area-chart/tslint.json b/samples/charts/data-chart/polar-spline-area-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/tslint.json +++ b/samples/charts/data-chart/polar-spline-area-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/polar-spline-chart/src/app.module.ts b/samples/charts/data-chart/polar-spline-chart/src/app.module.ts index f6b9110d4..947738347 100644 --- a/samples/charts/data-chart/polar-spline-chart/src/app.module.ts +++ b/samples/charts/data-chart/polar-spline-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataChartCoreModule, IgxDataChartPolarModule, IgxDataChartPolarCoreM @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -24,7 +24,6 @@ import { IgxDataChartCoreModule, IgxDataChartPolarModule, IgxDataChartPolarCoreM IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/polar-spline-chart/tslint.json b/samples/charts/data-chart/polar-spline-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/polar-spline-chart/tslint.json +++ b/samples/charts/data-chart/polar-spline-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/radial-area-chart-styling/src/app.module.ts b/samples/charts/data-chart/radial-area-chart-styling/src/app.module.ts index c35281324..31eba9701 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/src/app.module.ts +++ b/samples/charts/data-chart/radial-area-chart-styling/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartRadialModule, IgxD @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -25,7 +25,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartRadialModule, IgxD IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/radial-area-chart-styling/tslint.json b/samples/charts/data-chart/radial-area-chart-styling/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/tslint.json +++ b/samples/charts/data-chart/radial-area-chart-styling/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/radial-area-chart/src/app.module.ts b/samples/charts/data-chart/radial-area-chart/src/app.module.ts index c35281324..31eba9701 100644 --- a/samples/charts/data-chart/radial-area-chart/src/app.module.ts +++ b/samples/charts/data-chart/radial-area-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartRadialModule, IgxD @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -25,7 +25,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartRadialModule, IgxD IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/radial-area-chart/tslint.json b/samples/charts/data-chart/radial-area-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/radial-area-chart/tslint.json +++ b/samples/charts/data-chart/radial-area-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/radial-column-chart/src/app.module.ts b/samples/charts/data-chart/radial-column-chart/src/app.module.ts index e162c33c6..15d936032 100644 --- a/samples/charts/data-chart/radial-column-chart/src/app.module.ts +++ b/samples/charts/data-chart/radial-column-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataChartCoreModule, IgxDataChartRadialModule, IgxDataChartRadialCor @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -25,7 +25,6 @@ import { IgxDataChartCoreModule, IgxDataChartRadialModule, IgxDataChartRadialCor IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/radial-column-chart/tslint.json b/samples/charts/data-chart/radial-column-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/radial-column-chart/tslint.json +++ b/samples/charts/data-chart/radial-column-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/radial-line-chart/src/app.module.ts b/samples/charts/data-chart/radial-line-chart/src/app.module.ts index c35281324..31eba9701 100644 --- a/samples/charts/data-chart/radial-line-chart/src/app.module.ts +++ b/samples/charts/data-chart/radial-line-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartRadialModule, IgxD @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -25,7 +25,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartRadialModule, IgxD IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/radial-line-chart/tslint.json b/samples/charts/data-chart/radial-line-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/radial-line-chart/tslint.json +++ b/samples/charts/data-chart/radial-line-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/radial-pie-chart/src/app.module.ts b/samples/charts/data-chart/radial-pie-chart/src/app.module.ts index c35281324..31eba9701 100644 --- a/samples/charts/data-chart/radial-pie-chart/src/app.module.ts +++ b/samples/charts/data-chart/radial-pie-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartRadialModule, IgxD @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -25,7 +25,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartRadialModule, IgxD IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/radial-pie-chart/tslint.json b/samples/charts/data-chart/radial-pie-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/radial-pie-chart/tslint.json +++ b/samples/charts/data-chart/radial-pie-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/range-area-chart/src/app.module.ts b/samples/charts/data-chart/range-area-chart/src/app.module.ts index d9e6a32bf..213490985 100644 --- a/samples/charts/data-chart/range-area-chart/src/app.module.ts +++ b/samples/charts/data-chart/range-area-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartInterac @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -24,7 +24,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartInterac IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/range-area-chart/tslint.json b/samples/charts/data-chart/range-area-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/range-area-chart/tslint.json +++ b/samples/charts/data-chart/range-area-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/range-column-chart/src/app.module.ts b/samples/charts/data-chart/range-column-chart/src/app.module.ts index d9e6a32bf..213490985 100644 --- a/samples/charts/data-chart/range-column-chart/src/app.module.ts +++ b/samples/charts/data-chart/range-column-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartInterac @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -24,7 +24,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartInterac IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/range-column-chart/tslint.json b/samples/charts/data-chart/range-column-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/range-column-chart/tslint.json +++ b/samples/charts/data-chart/range-column-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/scatter-line-chart/src/app.module.ts b/samples/charts/data-chart/scatter-line-chart/src/app.module.ts index 5190686af..1b1ee4232 100644 --- a/samples/charts/data-chart/scatter-line-chart/src/app.module.ts +++ b/samples/charts/data-chart/scatter-line-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCoreModule, Ig @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -26,7 +26,6 @@ import { IgxLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCoreModule, Ig IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/scatter-line-chart/tslint.json b/samples/charts/data-chart/scatter-line-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/scatter-line-chart/tslint.json +++ b/samples/charts/data-chart/scatter-line-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/scatter-point-chart/src/app.module.ts b/samples/charts/data-chart/scatter-point-chart/src/app.module.ts index 78c2a58d7..4647ecf8a 100644 --- a/samples/charts/data-chart/scatter-point-chart/src/app.module.ts +++ b/samples/charts/data-chart/scatter-point-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartScatterModule, Igx @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -25,7 +25,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartScatterModule, Igx IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/scatter-point-chart/tslint.json b/samples/charts/data-chart/scatter-point-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/scatter-point-chart/tslint.json +++ b/samples/charts/data-chart/scatter-point-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/scatter-spline-chart/src/app.module.ts b/samples/charts/data-chart/scatter-spline-chart/src/app.module.ts index 5190686af..1b1ee4232 100644 --- a/samples/charts/data-chart/scatter-spline-chart/src/app.module.ts +++ b/samples/charts/data-chart/scatter-spline-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCoreModule, Ig @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -26,7 +26,6 @@ import { IgxLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCoreModule, Ig IgxDataChartAnnotationModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/scatter-spline-chart/tslint.json b/samples/charts/data-chart/scatter-spline-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/scatter-spline-chart/tslint.json +++ b/samples/charts/data-chart/scatter-spline-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/stacked-100-area-chart/src/app.module.ts b/samples/charts/data-chart/stacked-100-area-chart/src/app.module.ts index 48fb10ac7..c3c0c7c96 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/src/app.module.ts +++ b/samples/charts/data-chart/stacked-100-area-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -27,7 +27,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig IgxStackedFragmentSeriesModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/stacked-100-area-chart/tslint.json b/samples/charts/data-chart/stacked-100-area-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/tslint.json +++ b/samples/charts/data-chart/stacked-100-area-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/src/app.module.ts b/samples/charts/data-chart/stacked-100-bar-chart/src/app.module.ts index 48fb10ac7..c3c0c7c96 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/src/app.module.ts +++ b/samples/charts/data-chart/stacked-100-bar-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -27,7 +27,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig IgxStackedFragmentSeriesModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/stacked-100-bar-chart/tslint.json b/samples/charts/data-chart/stacked-100-bar-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/tslint.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/stacked-100-column-chart/src/app.module.ts b/samples/charts/data-chart/stacked-100-column-chart/src/app.module.ts index 48fb10ac7..c3c0c7c96 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/src/app.module.ts +++ b/samples/charts/data-chart/stacked-100-column-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -27,7 +27,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig IgxStackedFragmentSeriesModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/stacked-100-column-chart/tslint.json b/samples/charts/data-chart/stacked-100-column-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/tslint.json +++ b/samples/charts/data-chart/stacked-100-column-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/stacked-100-line-chart/src/app.module.ts b/samples/charts/data-chart/stacked-100-line-chart/src/app.module.ts index 48fb10ac7..c3c0c7c96 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/src/app.module.ts +++ b/samples/charts/data-chart/stacked-100-line-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -27,7 +27,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig IgxStackedFragmentSeriesModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/stacked-100-line-chart/tslint.json b/samples/charts/data-chart/stacked-100-line-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/tslint.json +++ b/samples/charts/data-chart/stacked-100-line-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.module.ts b/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.module.ts index 48fb10ac7..c3c0c7c96 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.module.ts +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -27,7 +27,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig IgxStackedFragmentSeriesModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/tslint.json b/samples/charts/data-chart/stacked-100-spline-area-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/tslint.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/src/app.module.ts b/samples/charts/data-chart/stacked-100-spline-chart/src/app.module.ts index 48fb10ac7..c3c0c7c96 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/src/app.module.ts +++ b/samples/charts/data-chart/stacked-100-spline-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -27,7 +27,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig IgxStackedFragmentSeriesModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/stacked-100-spline-chart/tslint.json b/samples/charts/data-chart/stacked-100-spline-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/tslint.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/stacked-area-chart/src/app.module.ts b/samples/charts/data-chart/stacked-area-chart/src/app.module.ts index 48fb10ac7..c3c0c7c96 100644 --- a/samples/charts/data-chart/stacked-area-chart/src/app.module.ts +++ b/samples/charts/data-chart/stacked-area-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -27,7 +27,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig IgxStackedFragmentSeriesModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/stacked-area-chart/tslint.json b/samples/charts/data-chart/stacked-area-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/stacked-area-chart/tslint.json +++ b/samples/charts/data-chart/stacked-area-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/stacked-bar-chart/src/app.module.ts b/samples/charts/data-chart/stacked-bar-chart/src/app.module.ts index ff2bdd4e1..c3a089894 100644 --- a/samples/charts/data-chart/stacked-bar-chart/src/app.module.ts +++ b/samples/charts/data-chart/stacked-bar-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -28,7 +28,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig IgxCalloutLayerModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/stacked-bar-chart/tslint.json b/samples/charts/data-chart/stacked-bar-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/stacked-bar-chart/tslint.json +++ b/samples/charts/data-chart/stacked-bar-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/stacked-column-chart/src/app.module.ts b/samples/charts/data-chart/stacked-column-chart/src/app.module.ts index 48fb10ac7..c3c0c7c96 100644 --- a/samples/charts/data-chart/stacked-column-chart/src/app.module.ts +++ b/samples/charts/data-chart/stacked-column-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -27,7 +27,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig IgxStackedFragmentSeriesModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/stacked-column-chart/tslint.json b/samples/charts/data-chart/stacked-column-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/stacked-column-chart/tslint.json +++ b/samples/charts/data-chart/stacked-column-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/stacked-line-chart/src/app.module.ts b/samples/charts/data-chart/stacked-line-chart/src/app.module.ts index 48fb10ac7..c3c0c7c96 100644 --- a/samples/charts/data-chart/stacked-line-chart/src/app.module.ts +++ b/samples/charts/data-chart/stacked-line-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -27,7 +27,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig IgxStackedFragmentSeriesModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/stacked-line-chart/tslint.json b/samples/charts/data-chart/stacked-line-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/stacked-line-chart/tslint.json +++ b/samples/charts/data-chart/stacked-line-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/stacked-spline-area-chart/src/app.module.ts b/samples/charts/data-chart/stacked-spline-area-chart/src/app.module.ts index 48fb10ac7..c3c0c7c96 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/src/app.module.ts +++ b/samples/charts/data-chart/stacked-spline-area-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -27,7 +27,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig IgxStackedFragmentSeriesModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/stacked-spline-area-chart/tslint.json b/samples/charts/data-chart/stacked-spline-area-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/tslint.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/stacked-spline-chart/src/app.module.ts b/samples/charts/data-chart/stacked-spline-chart/src/app.module.ts index 48fb10ac7..c3c0c7c96 100644 --- a/samples/charts/data-chart/stacked-spline-chart/src/app.module.ts +++ b/samples/charts/data-chart/stacked-spline-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -27,7 +27,6 @@ import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, Ig IgxStackedFragmentSeriesModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/stacked-spline-chart/tslint.json b/samples/charts/data-chart/stacked-spline-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/stacked-spline-chart/tslint.json +++ b/samples/charts/data-chart/stacked-spline-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/transition-event/src/app.module.ts b/samples/charts/data-chart/transition-event/src/app.module.ts index 720c46418..7840d7e74 100644 --- a/samples/charts/data-chart/transition-event/src/app.module.ts +++ b/samples/charts/data-chart/transition-event/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule } from 'igniteui-ang @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -23,7 +23,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule } from 'igniteui-ang IgxDataChartCategoryModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/transition-event/tslint.json b/samples/charts/data-chart/transition-event/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/transition-event/tslint.json +++ b/samples/charts/data-chart/transition-event/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/waterfall-chart/src/app.module.ts b/samples/charts/data-chart/waterfall-chart/src/app.module.ts index 677f7cad0..812583dc4 100644 --- a/samples/charts/data-chart/waterfall-chart/src/app.module.ts +++ b/samples/charts/data-chart/waterfall-chart/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule } from 'igniteui-ang @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule } from 'igniteui-ang IgxDataChartCategoryModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/waterfall-chart/tslint.json b/samples/charts/data-chart/waterfall-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/waterfall-chart/tslint.json +++ b/samples/charts/data-chart/waterfall-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/doughnut-chart/legend/src/app.module.ts b/samples/charts/doughnut-chart/legend/src/app.module.ts index 0a1c0323d..7d4332c43 100644 --- a/samples/charts/doughnut-chart/legend/src/app.module.ts +++ b/samples/charts/doughnut-chart/legend/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxItemLegendModule, IgxDoughnutChartModule } from 'igniteui-angular-ch @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxItemLegendModule, IgxDoughnutChartModule } from 'igniteui-angular-ch IgxDoughnutChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/doughnut-chart/legend/tslint.json b/samples/charts/doughnut-chart/legend/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/doughnut-chart/legend/tslint.json +++ b/samples/charts/doughnut-chart/legend/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/doughnut-chart/overview/src/app.module.ts b/samples/charts/doughnut-chart/overview/src/app.module.ts index 4f6b455be..63953f231 100644 --- a/samples/charts/doughnut-chart/overview/src/app.module.ts +++ b/samples/charts/doughnut-chart/overview/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDoughnutChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxLegendModule, IgxDoughnutChartModule } from 'igniteui-angular-charts IgxDoughnutChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/doughnut-chart/overview/tslint.json b/samples/charts/doughnut-chart/overview/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/doughnut-chart/overview/tslint.json +++ b/samples/charts/doughnut-chart/overview/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/doughnut-chart/rings/src/app.module.ts b/samples/charts/doughnut-chart/rings/src/app.module.ts index 4f6b455be..63953f231 100644 --- a/samples/charts/doughnut-chart/rings/src/app.module.ts +++ b/samples/charts/doughnut-chart/rings/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxLegendModule, IgxDoughnutChartModule } from 'igniteui-angular-charts @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxLegendModule, IgxDoughnutChartModule } from 'igniteui-angular-charts IgxDoughnutChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/doughnut-chart/rings/tslint.json b/samples/charts/doughnut-chart/rings/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/doughnut-chart/rings/tslint.json +++ b/samples/charts/doughnut-chart/rings/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/src/app.module.ts b/samples/charts/financial-chart/data-legend-formatting-currency/src/app.module.ts index 10abf568e..3b0932b7a 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/src/app.module.ts +++ b/samples/charts/financial-chart/data-legend-formatting-currency/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxFinancialChartModule, IgxDataChartInteractivityModule, IgxDataLegend @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxFinancialChartModule, IgxDataChartInteractivityModule, IgxDataLegend IgxDataLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/tslint.json b/samples/charts/financial-chart/data-legend-formatting-currency/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/tslint.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/app.module.ts b/samples/charts/financial-chart/data-legend-styling-props/src/app.module.ts index 10abf568e..3b0932b7a 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/src/app.module.ts +++ b/samples/charts/financial-chart/data-legend-styling-props/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxFinancialChartModule, IgxDataChartInteractivityModule, IgxDataLegend @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxFinancialChartModule, IgxDataChartInteractivityModule, IgxDataLegend IgxDataLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/data-legend-styling-props/tslint.json b/samples/charts/financial-chart/data-legend-styling-props/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/tslint.json +++ b/samples/charts/financial-chart/data-legend-styling-props/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/financial-chart/data-legend/src/app.module.ts b/samples/charts/financial-chart/data-legend/src/app.module.ts index 10abf568e..3b0932b7a 100644 --- a/samples/charts/financial-chart/data-legend/src/app.module.ts +++ b/samples/charts/financial-chart/data-legend/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxFinancialChartModule, IgxDataChartInteractivityModule, IgxDataLegend @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxFinancialChartModule, IgxDataChartInteractivityModule, IgxDataLegend IgxDataLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/data-legend/tslint.json b/samples/charts/financial-chart/data-legend/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/financial-chart/data-legend/tslint.json +++ b/samples/charts/financial-chart/data-legend/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/app.module.ts b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/app.module.ts index c97f94ba7..5ea299f34 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/app.module.ts +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxFinancialChartModule, IgxDataChartInteractivityModule, IgxLegendModu @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxFinancialChartModule, IgxDataChartInteractivityModule, IgxLegendModu IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/tslint.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/tslint.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/src/app.module.ts b/samples/charts/financial-chart/data-tooltip-styling-props/src/app.module.ts index 10abf568e..3b0932b7a 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/src/app.module.ts +++ b/samples/charts/financial-chart/data-tooltip-styling-props/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxFinancialChartModule, IgxDataChartInteractivityModule, IgxDataLegend @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxFinancialChartModule, IgxDataChartInteractivityModule, IgxDataLegend IgxDataLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/tslint.json b/samples/charts/financial-chart/data-tooltip-styling-props/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/tslint.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/financial-chart/data-tooltip/src/app.module.ts b/samples/charts/financial-chart/data-tooltip/src/app.module.ts index 10abf568e..3b0932b7a 100644 --- a/samples/charts/financial-chart/data-tooltip/src/app.module.ts +++ b/samples/charts/financial-chart/data-tooltip/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxFinancialChartModule, IgxDataChartInteractivityModule, IgxDataLegend @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxFinancialChartModule, IgxDataChartInteractivityModule, IgxDataLegend IgxDataLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/data-tooltip/tslint.json b/samples/charts/financial-chart/data-tooltip/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/financial-chart/data-tooltip/tslint.json +++ b/samples/charts/financial-chart/data-tooltip/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/financial-chart/scrollbars/src/app.module.ts b/samples/charts/financial-chart/scrollbars/src/app.module.ts index c97f94ba7..5ea299f34 100644 --- a/samples/charts/financial-chart/scrollbars/src/app.module.ts +++ b/samples/charts/financial-chart/scrollbars/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxFinancialChartModule, IgxDataChartInteractivityModule, IgxLegendModu @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxFinancialChartModule, IgxDataChartInteractivityModule, IgxLegendModu IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/scrollbars/tslint.json b/samples/charts/financial-chart/scrollbars/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/financial-chart/scrollbars/tslint.json +++ b/samples/charts/financial-chart/scrollbars/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/pie-chart/legend/src/app.module.ts b/samples/charts/pie-chart/legend/src/app.module.ts index 7a7cdd939..c9a03dac0 100644 --- a/samples/charts/pie-chart/legend/src/app.module.ts +++ b/samples/charts/pie-chart/legend/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxItemLegendModule, IgxPieChartModule } from 'igniteui-angular-charts' @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxItemLegendModule, IgxPieChartModule } from 'igniteui-angular-charts' IgxPieChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/pie-chart/legend/tslint.json b/samples/charts/pie-chart/legend/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/pie-chart/legend/tslint.json +++ b/samples/charts/pie-chart/legend/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/pie-chart/others/src/app.module.ts b/samples/charts/pie-chart/others/src/app.module.ts index 7a7cdd939..c9a03dac0 100644 --- a/samples/charts/pie-chart/others/src/app.module.ts +++ b/samples/charts/pie-chart/others/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxItemLegendModule, IgxPieChartModule } from 'igniteui-angular-charts' @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxItemLegendModule, IgxPieChartModule } from 'igniteui-angular-charts' IgxPieChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/pie-chart/others/tslint.json b/samples/charts/pie-chart/others/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/pie-chart/others/tslint.json +++ b/samples/charts/pie-chart/others/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/pie-chart/overview/src/app.module.ts b/samples/charts/pie-chart/overview/src/app.module.ts index 7a7cdd939..c9a03dac0 100644 --- a/samples/charts/pie-chart/overview/src/app.module.ts +++ b/samples/charts/pie-chart/overview/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxItemLegendModule, IgxPieChartModule } from 'igniteui-angular-charts' @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxItemLegendModule, IgxPieChartModule } from 'igniteui-angular-charts' IgxPieChartModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/pie-chart/overview/tslint.json b/samples/charts/pie-chart/overview/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/pie-chart/overview/tslint.json +++ b/samples/charts/pie-chart/overview/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/pie-chart/styling/src/app.module.ts b/samples/charts/pie-chart/styling/src/app.module.ts index 3ba44b293..3d1f514ed 100644 --- a/samples/charts/pie-chart/styling/src/app.module.ts +++ b/samples/charts/pie-chart/styling/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxPieChartModule, IgxItemLegendModule } from 'igniteui-angular-charts' @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -21,7 +21,6 @@ import { IgxPieChartModule, IgxItemLegendModule } from 'igniteui-angular-charts' IgxItemLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/pie-chart/styling/tslint.json b/samples/charts/pie-chart/styling/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/pie-chart/styling/tslint.json +++ b/samples/charts/pie-chart/styling/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/sparkline/display-area/src/app.module.ts b/samples/charts/sparkline/display-area/src/app.module.ts index 4243e7d4b..91efe94cf 100644 --- a/samples/charts/sparkline/display-area/src/app.module.ts +++ b/samples/charts/sparkline/display-area/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxSparklineModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -20,7 +20,6 @@ import { IgxSparklineModule } from 'igniteui-angular-charts'; IgxSparklineModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/sparkline/display-area/tslint.json b/samples/charts/sparkline/display-area/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/sparkline/display-area/tslint.json +++ b/samples/charts/sparkline/display-area/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/sparkline/display-column/src/app.module.ts b/samples/charts/sparkline/display-column/src/app.module.ts index 4243e7d4b..91efe94cf 100644 --- a/samples/charts/sparkline/display-column/src/app.module.ts +++ b/samples/charts/sparkline/display-column/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxSparklineModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -20,7 +20,6 @@ import { IgxSparklineModule } from 'igniteui-angular-charts'; IgxSparklineModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/sparkline/display-column/tslint.json b/samples/charts/sparkline/display-column/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/sparkline/display-column/tslint.json +++ b/samples/charts/sparkline/display-column/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/sparkline/display-lines/src/app.module.ts b/samples/charts/sparkline/display-lines/src/app.module.ts index ee9627363..16b1b7180 100644 --- a/samples/charts/sparkline/display-lines/src/app.module.ts +++ b/samples/charts/sparkline/display-lines/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxSparklineModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxSparklineModule } from 'igniteui-angular-charts'; IgxSparklineModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/sparkline/display-lines/tslint.json b/samples/charts/sparkline/display-lines/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/sparkline/display-lines/tslint.json +++ b/samples/charts/sparkline/display-lines/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/sparkline/display-winloss/src/app.module.ts b/samples/charts/sparkline/display-winloss/src/app.module.ts index 4243e7d4b..91efe94cf 100644 --- a/samples/charts/sparkline/display-winloss/src/app.module.ts +++ b/samples/charts/sparkline/display-winloss/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxSparklineModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -20,7 +20,6 @@ import { IgxSparklineModule } from 'igniteui-angular-charts'; IgxSparklineModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/sparkline/display-winloss/tslint.json b/samples/charts/sparkline/display-winloss/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/sparkline/display-winloss/tslint.json +++ b/samples/charts/sparkline/display-winloss/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/sparkline/markers/src/app.module.ts b/samples/charts/sparkline/markers/src/app.module.ts index ee9627363..16b1b7180 100644 --- a/samples/charts/sparkline/markers/src/app.module.ts +++ b/samples/charts/sparkline/markers/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxSparklineModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxSparklineModule } from 'igniteui-angular-charts'; IgxSparklineModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/sparkline/markers/tslint.json b/samples/charts/sparkline/markers/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/sparkline/markers/tslint.json +++ b/samples/charts/sparkline/markers/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/sparkline/normal-range/src/app.module.ts b/samples/charts/sparkline/normal-range/src/app.module.ts index ee9627363..16b1b7180 100644 --- a/samples/charts/sparkline/normal-range/src/app.module.ts +++ b/samples/charts/sparkline/normal-range/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxSparklineModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxSparklineModule } from 'igniteui-angular-charts'; IgxSparklineModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/sparkline/normal-range/tslint.json b/samples/charts/sparkline/normal-range/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/sparkline/normal-range/tslint.json +++ b/samples/charts/sparkline/normal-range/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/sparkline/trendlines/src/app.module.ts b/samples/charts/sparkline/trendlines/src/app.module.ts index ee9627363..16b1b7180 100644 --- a/samples/charts/sparkline/trendlines/src/app.module.ts +++ b/samples/charts/sparkline/trendlines/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxSparklineModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxSparklineModule } from 'igniteui-angular-charts'; IgxSparklineModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/sparkline/trendlines/tslint.json b/samples/charts/sparkline/trendlines/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/sparkline/trendlines/tslint.json +++ b/samples/charts/sparkline/trendlines/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/sparkline/unknown-values/src/app.module.ts b/samples/charts/sparkline/unknown-values/src/app.module.ts index ee9627363..16b1b7180 100644 --- a/samples/charts/sparkline/unknown-values/src/app.module.ts +++ b/samples/charts/sparkline/unknown-values/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxSparklineModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxSparklineModule } from 'igniteui-angular-charts'; IgxSparklineModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/sparkline/unknown-values/tslint.json b/samples/charts/sparkline/unknown-values/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/sparkline/unknown-values/tslint.json +++ b/samples/charts/sparkline/unknown-values/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/app.module.ts b/samples/charts/toolbar/actions-built-in-category-chart/src/app.module.ts index fb78251c9..b2d32f20c 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/app.module.ts +++ b/samples/charts/toolbar/actions-built-in-category-chart/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxToolbarModule } from 'igniteui-angular-layouts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -24,7 +24,6 @@ import { IgxToolbarModule } from 'igniteui-angular-layouts'; IgxCategoryChartToolbarModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/toolbar/actions-built-in-category-chart/tslint.json b/samples/charts/toolbar/actions-built-in-category-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/tslint.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/src/app.module.ts b/samples/charts/toolbar/actions-built-in-data-chart/src/app.module.ts index 3e980238c..dfbc547f1 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/app.module.ts +++ b/samples/charts/toolbar/actions-built-in-data-chart/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxDataChartToolbarModule, IgxDataChartCoreModule, IgxDataChartCategory @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -28,7 +28,6 @@ import { IgxDataChartToolbarModule, IgxDataChartCoreModule, IgxDataChartCategory IgxDataChartCategoryTrendLineModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/toolbar/actions-built-in-data-chart/tslint.json b/samples/charts/toolbar/actions-built-in-data-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/tslint.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/app.module.ts b/samples/charts/toolbar/layout-actions-for-data-chart/src/app.module.ts index d31237f56..b25318d76 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/app.module.ts +++ b/samples/charts/toolbar/layout-actions-for-data-chart/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxDataChartToolbarModule, IgxDataChartCoreModule, IgxDataChartCategory @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -27,7 +27,6 @@ import { IgxDataChartToolbarModule, IgxDataChartCoreModule, IgxDataChartCategory IgxDataChartCategoryTrendLineModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/tslint.json b/samples/charts/toolbar/layout-actions-for-data-chart/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/tslint.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/src/app.module.ts b/samples/charts/toolbar/layout-in-vertical-orientation/src/app.module.ts index 3e980238c..dfbc547f1 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/src/app.module.ts +++ b/samples/charts/toolbar/layout-in-vertical-orientation/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxDataChartToolbarModule, IgxDataChartCoreModule, IgxDataChartCategory @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -28,7 +28,6 @@ import { IgxDataChartToolbarModule, IgxDataChartCoreModule, IgxDataChartCategory IgxDataChartCategoryTrendLineModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/tslint.json b/samples/charts/toolbar/layout-in-vertical-orientation/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/tslint.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/toolbar/theming/src/app.module.ts b/samples/charts/toolbar/theming/src/app.module.ts index 3ff398982..5b1ca1792 100644 --- a/samples/charts/toolbar/theming/src/app.module.ts +++ b/samples/charts/toolbar/theming/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxDataChartToolbarModule, IgxDataChartCoreModule, IgxDataChartCategory @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -29,7 +29,6 @@ import { IgxDataChartToolbarModule, IgxDataChartCoreModule, IgxDataChartCategory IgxDataChartCategoryTrendLineModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/toolbar/theming/tslint.json b/samples/charts/toolbar/theming/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/toolbar/theming/tslint.json +++ b/samples/charts/toolbar/theming/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/tree-map/layout/src/app.module.ts b/samples/charts/tree-map/layout/src/app.module.ts index 37b6018d2..92e86c22f 100644 --- a/samples/charts/tree-map/layout/src/app.module.ts +++ b/samples/charts/tree-map/layout/src/app.module.ts @@ -11,7 +11,7 @@ import { IgxTreemapModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +22,6 @@ import { IgxTreemapModule } from 'igniteui-angular-charts'; IgxTreemapModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/tree-map/layout/tslint.json b/samples/charts/tree-map/layout/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/tree-map/layout/tslint.json +++ b/samples/charts/tree-map/layout/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/tree-map/overview/src/app.module.ts b/samples/charts/tree-map/overview/src/app.module.ts index c9cd166d9..cd5876a1b 100644 --- a/samples/charts/tree-map/overview/src/app.module.ts +++ b/samples/charts/tree-map/overview/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxTreemapModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -20,7 +20,6 @@ import { IgxTreemapModule } from 'igniteui-angular-charts'; IgxTreemapModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/tree-map/overview/tslint.json b/samples/charts/tree-map/overview/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/tree-map/overview/tslint.json +++ b/samples/charts/tree-map/overview/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/tree-map/styling/src/app.module.ts b/samples/charts/tree-map/styling/src/app.module.ts index c9cd166d9..cd5876a1b 100644 --- a/samples/charts/tree-map/styling/src/app.module.ts +++ b/samples/charts/tree-map/styling/src/app.module.ts @@ -10,7 +10,7 @@ import { IgxTreemapModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -20,7 +20,6 @@ import { IgxTreemapModule } from 'igniteui-angular-charts'; IgxTreemapModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/tree-map/styling/tslint.json b/samples/charts/tree-map/styling/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/tree-map/styling/tslint.json +++ b/samples/charts/tree-map/styling/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } From 588118a19ad03faa84e8c80279fb70b5e0a0a73d Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Tue, 19 Sep 2023 14:58:36 -0400 Subject: [PATCH 003/154] mdd-update-23.2.18 mdd-update-23.2.18 --- browser/package.json | 17 +- browser/scripts/browser.js | 20 +- browser/src/app/app-routing.module.ts | 2 +- browser/src/app/index/index.component.ts | 4 +- browser/src/assets/stats.json | 274 +++++++++--------- browser/src/browser-info.json | 18 +- package-lock.json | 6 - .../annotations-all/package.json | 8 +- .../annotations-callouts/package.json | 8 +- .../annotations-crosshairs/package.json | 8 +- .../annotations-custom/package.json | 8 +- .../annotations-final-value/package.json | 8 +- .../annotations-highlighting/package.json | 8 +- .../category-chart/annotations/package.json | 4 +- .../annotations/src/app/app.module.ts | 1 - .../area-chart-multiple-sources/package.json | 4 +- .../area-chart-single-source/package.json | 4 +- .../area-chart-styling/package.json | 4 +- .../category-chart/axis-gap/package.json | 8 +- .../axis-gridlines/package.json | 8 +- .../category-chart/axis-inverted/package.json | 8 +- .../category-chart/axis-labels/package.json | 8 +- .../axis-locations/package.json | 8 +- .../category-chart/axis-options/package.json | 4 +- .../category-chart/axis-overlap/package.json | 8 +- .../category-chart/axis-range/package.json | 8 +- .../axis-tickmarks/package.json | 8 +- .../category-chart/axis-titles/package.json | 4 +- .../package.json | 4 +- .../column-chart-single-source/package.json | 4 +- .../column-chart-styling/package.json | 4 +- .../package.json | 4 +- .../src/app/app.module.ts | 1 - .../column-chart-with-tooltips/package.json | 8 +- .../data-aggregations/package.json | 8 +- .../package.json | 4 +- .../category-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-positioning/package.json | 8 +- .../category-chart/data-tooltip/package.json | 4 +- .../high-frequency/package.json | 4 +- .../high-frequency/src/app/app.module.ts | 1 - .../category-chart/high-volume/package.json | 4 +- .../high-volume/src/app/app.module.ts | 1 - .../category-chart/highlighting/package.json | 4 +- .../highlighting/src/app/app.module.ts | 1 - .../line-chart-multiple-sources/package.json | 4 +- .../line-chart-single-source/package.json | 4 +- .../line-chart-styling/package.json | 4 +- .../line-chart-with-animations/package.json | 4 +- .../src/app/app.module.ts | 1 - .../line-chart-with-annotations/package.json | 4 +- .../src/app/app.module.ts | 1 - .../line-chart-with-legend/package.json | 4 +- .../src/app/app.module.ts | 1 - .../marker-options/package.json | 8 +- .../marker-templates/package.json | 4 +- .../marker-templates/src/app/app.module.ts | 1 - .../category-chart/overview/package.json | 4 +- .../point-chart-multiple-sources/package.json | 4 +- .../point-chart-single-source/package.json | 4 +- .../point-chart-styling/package.json | 4 +- .../spline-area-multiple-sources/package.json | 4 +- .../spline-area-single-source/package.json | 4 +- .../spline-area-styling/package.json | 4 +- .../spline-multiple-sources/package.json | 4 +- .../spline-single-source/package.json | 4 +- .../spline-styling/package.json | 4 +- .../category-chart/stack-columns/package.json | 4 +- .../stack-columns/src/app/app.module.ts | 1 - .../step-area-multiple-sources/package.json | 4 +- .../step-area-single-source/package.json | 4 +- .../step-area-styling/package.json | 4 +- .../step-line-multiple-sources/package.json | 4 +- .../step-line-single-source/package.json | 4 +- .../step-line-styling/package.json | 4 +- .../tooltip-template/package.json | 4 +- .../tooltip-template/src/app/app.module.ts | 1 - .../category-chart/tooltip-types/package.json | 4 +- .../tooltip-types/src/app/app.module.ts | 1 - .../category-chart/trendline/package.json | 4 +- .../trendline/src/app/app.module.ts | 1 - .../category-chart/value-lines/package.json | 8 +- .../annotations-custom/package.json | 4 +- .../package.json | 4 +- .../data-chart/axis-annotations/package.json | 4 +- .../axis-annotations/src/app/app.module.ts | 1 - .../data-chart/axis-crossing/package.json | 4 +- .../axis-crossing/src/app/app.module.ts | 1 - .../axis-label-rotation/package.json | 8 +- .../data-chart/axis-locations/package.json | 4 +- .../axis-locations/src/app/app.module.ts | 1 - .../data-chart/axis-min-max-gap/package.json | 4 +- .../data-chart/axis-settings/package.json | 4 +- .../axis-settings/src/app/app.module.ts | 3 +- .../data-chart/axis-sharing/package.json | 4 +- .../axis-sharing/src/app/app.module.ts | 3 +- .../charts/data-chart/axis-types/package.json | 4 +- .../axis-types/src/app/app.module.ts | 3 +- .../bar-chart-multiple-sources/package.json | 4 +- .../bar-chart-overlapping/package.json | 4 +- .../bar-chart-single-source/package.json | 4 +- .../data-chart/bar-chart-styling/package.json | 4 +- .../callout-layer-styling/package.json | 4 +- .../data-chart/chart-navigation/package.json | 4 +- .../chart-navigation/src/app/app.module.ts | 3 +- .../data-chart/chart-overview/package.json | 4 +- .../chart-overview/src/app/app.module.ts | 3 +- .../data-chart/chart-performance/package.json | 4 +- .../chart-performance/src/app/app.module.ts | 3 +- .../chart-synchronization/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../data-chart/chart-titles/package.json | 4 +- .../chart-titles/src/app/app.module.ts | 3 +- .../column-chart-styling/package.json | 4 +- .../src/app/app.module.ts | 1 - .../data-chart/composite-chart/package.json | 4 +- .../composite-chart/src/app/app.module.ts | 1 - .../crosshair-layer-styling/package.json | 4 +- .../src/app/app.module.ts | 1 - .../data-chart/dash-array-axes/package.json | 4 +- .../data-chart/dash-array-series/package.json | 4 +- .../dash-array-tickmarks/package.json | 4 +- .../dash-array-trendline/package.json | 4 +- .../data-chart/data-legend/package.json | 4 +- .../data-chart/data-tooltip/package.json | 4 +- .../final-value-layer-styling/package.json | 4 +- .../src/app/app.module.ts | 1 - .../financial-price-series/package.json | 4 +- .../charts/data-chart/legends/package.json | 4 +- .../data-chart/legends/src/app/app.module.ts | 3 +- .../polar-area-chart-styling/package.json | 4 +- .../data-chart/polar-area-chart/package.json | 4 +- .../data-chart/polar-chart-types/package.json | 4 +- .../polar-chart-types/src/app/app.module.ts | 3 +- .../data-chart/polar-line-chart/package.json | 4 +- .../polar-scatter-chart/package.json | 4 +- .../polar-spline-area-chart/package.json | 4 +- .../polar-spline-chart/package.json | 4 +- .../radial-area-chart-styling/package.json | 4 +- .../data-chart/radial-area-chart/package.json | 4 +- .../radial-chart-types/package.json | 4 +- .../radial-chart-types/src/app/app.module.ts | 3 +- .../radial-column-chart/package.json | 4 +- .../data-chart/radial-line-chart/package.json | 4 +- .../data-chart/radial-pie-chart/package.json | 4 +- .../data-chart/range-area-chart/package.json | 4 +- .../range-column-chart/package.json | 4 +- .../package.json | 4 +- .../src/app.module.ts | 1 - .../package.json | 4 +- .../src/app.module.ts | 1 - .../scatter-bubble-chart-styling/package.json | 4 +- .../src/app.module.ts | 1 - .../scatter-line-chart/package.json | 4 +- .../scatter-point-chart/package.json | 4 +- .../scatter-spline-chart/package.json | 4 +- .../data-chart/series-animations/package.json | 4 +- .../series-animations/src/app/app.module.ts | 3 +- .../series-annotations/package.json | 4 +- .../series-annotations/src/app/app.module.ts | 3 +- .../series-highlighting/package.json | 4 +- .../series-highlighting/src/app/app.module.ts | 3 +- .../series-marker-template/package.json | 4 +- .../src/app/app.module.ts | 1 - .../data-chart/series-markers/package.json | 4 +- .../series-markers/src/app/app.module.ts | 3 +- .../data-chart/series-tooltips/package.json | 4 +- .../series-tooltips/src/app/app.module.ts | 3 +- .../data-chart/series-trendlines/package.json | 4 +- .../series-trendlines/src/app/app.module.ts | 3 +- .../series-value-overlay/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../stacked-100-area-chart/package.json | 4 +- .../stacked-100-bar-chart/package.json | 4 +- .../stacked-100-column-chart/package.json | 4 +- .../stacked-100-line-chart/package.json | 4 +- .../package.json | 4 +- .../stacked-100-spline-chart/package.json | 4 +- .../stacked-area-chart/package.json | 4 +- .../data-chart/stacked-bar-chart/package.json | 4 +- .../stacked-chart-types/package.json | 4 +- .../stacked-chart-types/src/app/app.module.ts | 3 +- .../stacked-column-chart/package.json | 4 +- .../stacked-line-chart/package.json | 4 +- .../stacked-spline-area-chart/package.json | 4 +- .../stacked-spline-chart/package.json | 4 +- .../data-chart/tooltip-template/package.json | 4 +- .../tooltip-template/src/app/app.module.ts | 1 - .../data-chart/transition-event/package.json | 8 +- .../type-category-area-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-category-bar-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-category-column-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-category-line-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-category-point-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-category-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-category-spline-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../package.json | 4 +- .../src/app/app.module.ts | 3 +- .../package.json | 4 +- .../src/app/app.module.ts | 3 +- .../package.json | 4 +- .../src/app/app.module.ts | 3 +- .../package.json | 4 +- .../src/app/app.module.ts | 3 +- .../package.json | 4 +- .../src/app/app.module.ts | 3 +- .../package.json | 4 +- .../src/app/app.module.ts | 3 +- .../package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-financial-ohlc-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-financial-overlays/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-financial-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-radial-area-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-radial-column-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-radial-line-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-radial-pie-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-range-area-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-range-column-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../data-chart/type-range-series/package.json | 4 +- .../type-range-series/src/app/app.module.ts | 3 +- .../type-scatter-area-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-scatter-bubble-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-scatter-contour-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-scatter-hd-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-scatter-line-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-scatter-point-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-scatter-polygon-series/package.json | 4 +- .../src/app/app.module.ts | 1 - .../type-scatter-polyline-series/package.json | 4 +- .../src/app/app.module.ts | 1 - .../type-scatter-series/package.json | 4 +- .../type-scatter-series/src/app/app.module.ts | 3 +- .../type-scatter-spline-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../data-chart/type-shape-series/package.json | 4 +- .../type-shape-series/src/app/app.module.ts | 3 +- .../type-stacked-100-area-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-stacked-100-bar-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-stacked-100-line-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../package.json | 4 +- .../src/app/app.module.ts | 3 +- .../package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-stacked-area-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-stacked-bar-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-stacked-column-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-stacked-line-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../package.json | 4 +- .../src/app/app.module.ts | 3 +- .../type-stacked-spline-series/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../data-chart/waterfall-chart/package.json | 4 +- .../doughnut-chart/animation/package.json | 4 +- .../animation/src/app/app.module.ts | 1 - .../doughnut-chart/explosion/package.json | 4 +- .../explosion/src/app/app.module.ts | 1 - .../charts/doughnut-chart/legend/package.json | 4 +- .../doughnut-chart/overview/package.json | 4 +- .../charts/doughnut-chart/rings/package.json | 4 +- .../doughnut-chart/selection/package.json | 4 +- .../selection/src/app/app.module.ts | 1 - .../financial-chart/annotations/package.json | 4 +- .../annotations/src/app/app.module.ts | 3 +- .../financial-chart/axis-types/package.json | 4 +- .../axis-types/src/app/app.module.ts | 3 +- .../package.json | 4 +- .../data-legend-styling-props/package.json | 4 +- .../financial-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-styling-props/package.json | 4 +- .../financial-chart/data-tooltip/package.json | 4 +- .../high-frequency/package.json | 4 +- .../high-frequency/src/app/app.module.ts | 1 - .../financial-chart/high-volume/package.json | 4 +- .../high-volume/src/app/app.module.ts | 3 +- .../indicator-customization/package.json | 4 +- .../src/app/app.module.ts | 3 +- .../indicator-types/package.json | 4 +- .../indicator-types/src/app/app.module.ts | 3 +- .../multiple-data/package.json | 4 +- .../multiple-data/src/app/app.module.ts | 3 +- .../multiple-feeds/package.json | 4 +- .../multiple-feeds/src/app/app.module.ts | 1 - .../financial-chart/overview/package.json | 4 +- .../overview/src/app/app.module.ts | 3 +- .../charts/financial-chart/panes/package.json | 4 +- .../panes/src/app/app.module.ts | 3 +- .../financial-chart/performance/package.json | 4 +- .../performance/src/app/app.module.ts | 3 +- .../financial-chart/scrollbars/package.json | 4 +- .../stock-index-chart/package.json | 4 +- .../stock-index-chart/src/app/app.module.ts | 3 +- .../financial-chart/styling/package.json | 4 +- .../styling/src/app/app.module.ts | 3 +- .../financial-chart/theming/package.json | 4 +- .../theming/src/app/app.module.ts | 3 +- .../time-based-data/package.json | 4 +- .../time-based-data/src/app/app.module.ts | 3 +- .../financial-chart/titles/package.json | 4 +- .../titles/src/app/app.module.ts | 3 +- .../tooltip-template/package.json | 4 +- .../tooltip-template/src/app/app.module.ts | 3 +- .../tooltip-types/package.json | 4 +- .../tooltip-types/src/app/app.module.ts | 3 +- .../financial-chart/trendlines/package.json | 4 +- .../trendlines/src/app/app.module.ts | 3 +- .../financial-chart/volume-types/package.json | 4 +- .../volume-types/src/app/app.module.ts | 3 +- .../charts/pie-chart/animation/package.json | 4 +- .../pie-chart/animation/src/app/app.module.ts | 1 - .../charts/pie-chart/explosion/package.json | 4 +- .../pie-chart/explosion/src/app/app.module.ts | 1 - samples/charts/pie-chart/legend/package.json | 4 +- samples/charts/pie-chart/others/package.json | 4 +- .../charts/pie-chart/overview/package.json | 4 +- .../charts/pie-chart/selection/package.json | 4 +- .../pie-chart/selection/src/app/app.module.ts | 1 - samples/charts/pie-chart/styling/package.json | 4 +- .../sparkline/display-area/package.json | 4 +- .../sparkline/display-column/package.json | 4 +- .../sparkline/display-lines/package.json | 8 +- .../sparkline/display-types/package.json | 4 +- .../display-types/src/app/app.module.ts | 1 - .../sparkline/display-winloss/package.json | 4 +- samples/charts/sparkline/grid/package.json | 4 +- .../sparkline/grid/src/app/app.module.ts | 3 +- samples/charts/sparkline/markers/package.json | 8 +- .../sparkline/normal-range/package.json | 8 +- .../charts/sparkline/trendlines/package.json | 8 +- .../sparkline/unknown-values/package.json | 8 +- .../package.json | 8 +- .../actions-built-in-data-chart/package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- samples/charts/toolbar/theming/package.json | 8 +- samples/charts/tree-map/events/package.json | 4 +- .../tree-map/events/src/app/app.module.ts | 1 - samples/charts/tree-map/layout/package.json | 8 +- samples/charts/tree-map/overview/package.json | 4 +- samples/charts/tree-map/styling/package.json | 4 +- .../charts/zoomslider/overview/package.json | 4 +- .../zoomslider/overview/src/app/app.module.ts | 3 +- .../operations-on-workbooks/package.json | 4 +- .../src/app/app.module.ts | 1 - .../operations-on-worksheets/package.json | 4 +- .../src/app/app.module.ts | 1 - .../excel/excel-library/overview/package.json | 4 +- .../overview/src/app/app.module.ts | 1 - .../working-with-cells/package.json | 4 +- .../working-with-cells/src/app/app.module.ts | 1 - .../working-with-charts/package.json | 6 +- .../working-with-charts/src/app/app.module.ts | 1 - .../working-with-sparklines/package.json | 6 +- .../src/app/app.module.ts | 1 - .../working-with-tables/package.json | 8 +- .../working-with-tables/src/app/app.module.ts | 1 - .../excel/spreadsheet/activation/package.json | 6 +- .../activation/src/app/app.module.ts | 3 +- .../spreadsheet/adapter-chart/package.json | 10 +- .../adapter-chart/src/app/app.module.ts | 3 +- .../spreadsheet/adapter-combo/package.json | 10 +- .../adapter-combo/src/app/app.module.ts | 3 +- .../excel/spreadsheet/clipboard/package.json | 6 +- .../clipboard/src/app/app.module.ts | 3 +- .../excel/spreadsheet/commands/package.json | 6 +- .../commands/src/app/app.module.ts | 3 +- .../conditional-formatting/package.json | 6 +- .../src/app/app.module.ts | 3 +- .../spreadsheet/config-options/package.json | 6 +- .../config-options/src/app/app.module.ts | 3 +- .../spreadsheet/data-validation/package.json | 6 +- .../data-validation/src/app/app.module.ts | 1 - .../excel/spreadsheet/hyperlinks/package.json | 6 +- .../hyperlinks/src/app/app.module.ts | 3 +- .../excel/spreadsheet/overview/package.json | 6 +- .../overview/src/app/app.module.ts | 3 +- .../bullet-graph/animation/package.json | 4 +- .../animation/src/app/app.module.ts | 1 - .../bullet-graph/background/package.json | 4 +- .../background/src/app/app.module.ts | 1 - .../gauges/bullet-graph/labels/package.json | 4 +- .../bullet-graph/labels/src/app/app.module.ts | 1 - .../gauges/bullet-graph/measures/package.json | 4 +- .../measures/src/app/app.module.ts | 1 - .../gauges/bullet-graph/ranges/package.json | 4 +- .../bullet-graph/ranges/src/app/app.module.ts | 1 - .../gauges/bullet-graph/scale/package.json | 4 +- .../bullet-graph/scale/src/app/app.module.ts | 1 - .../bullet-graph/tickmarks/package.json | 4 +- .../tickmarks/src/app/app.module.ts | 1 - .../linear-gauge/animation/package.json | 4 +- .../animation/src/app/app.module.ts | 1 - .../gauges/linear-gauge/backing/package.json | 4 +- .../backing/src/app/app.module.ts | 1 - .../gauges/linear-gauge/labels/package.json | 4 +- .../linear-gauge/labels/src/app/app.module.ts | 1 - .../gauges/linear-gauge/needle/package.json | 4 +- .../linear-gauge/needle/src/app/app.module.ts | 1 - .../gauges/linear-gauge/ranges/package.json | 4 +- .../linear-gauge/ranges/src/app/app.module.ts | 1 - .../gauges/linear-gauge/scale/package.json | 4 +- .../linear-gauge/scale/src/app/app.module.ts | 1 - .../linear-gauge/tickmarks/package.json | 4 +- .../tickmarks/src/app/app.module.ts | 1 - .../radial-gauge/animation/package.json | 4 +- .../animation/src/app/app.module.ts | 1 - .../gauges/radial-gauge/backing/package.json | 4 +- .../backing/src/app/app.module.ts | 1 - .../gauges/radial-gauge/labels/package.json | 4 +- .../radial-gauge/labels/src/app/app.module.ts | 1 - .../gauges/radial-gauge/needle/package.json | 4 +- .../radial-gauge/needle/src/app/app.module.ts | 1 - .../gauges/radial-gauge/ranges/package.json | 4 +- .../radial-gauge/ranges/src/app/app.module.ts | 1 - .../gauges/radial-gauge/scale/package.json | 4 +- .../radial-gauge/scale/src/app/app.module.ts | 1 - .../radial-gauge/tickmarks/package.json | 4 +- .../tickmarks/src/app/app.module.ts | 1 - .../geo-map/binding-data-csv/package.json | 6 +- .../binding-data-csv/src/app/app.module.ts | 1 - .../binding-data-json-points/package.json | 6 +- .../src/app/app.module.ts | 1 - .../geo-map/binding-data-model/package.json | 6 +- .../binding-data-model/src/app/app.module.ts | 1 - .../binding-multiple-shapes/package.json | 6 +- .../src/app/app.module.ts | 1 - .../binding-multiple-sources/package.json | 6 +- .../src/app/app.module.ts | 1 - .../geo-map/binding-shp-points/package.json | 6 +- .../binding-shp-points/src/app/app.module.ts | 1 - .../geo-map/binding-shp-polygons/package.json | 6 +- .../src/app/app.module.ts | 1 - .../binding-shp-polylines/package.json | 6 +- .../src/app/app.module.ts | 1 - .../maps/geo-map/custom-tooltips/package.json | 6 +- .../custom-tooltips/src/app/app.module.ts | 1 - .../geo-map/display-bing-imagery/package.json | 6 +- .../src/app/app.module.ts | 1 - .../geo-map/display-esri-imagery/package.json | 6 +- .../src/app/app.module.ts | 1 - .../geo-map/display-heat-imagery/package.json | 6 +- .../src/app/app.module.ts | 1 - .../geo-map/display-osm-imagery/package.json | 6 +- .../display-osm-imagery/src/app/app.module.ts | 1 - .../maps/geo-map/marker-layouts/package.json | 6 +- .../marker-layouts/src/app/app.module.ts | 1 - .../maps/geo-map/marker-template/package.json | 6 +- .../marker-template/src/app/app.module.ts | 1 - samples/maps/geo-map/marker-type/package.json | 6 +- .../geo-map/marker-type/src/app/app.module.ts | 1 - samples/maps/geo-map/navigation/package.json | 6 +- .../geo-map/navigation/src/app/app.module.ts | 1 - samples/maps/geo-map/overview/package.json | 6 +- .../geo-map/overview/src/app/app.module.ts | 1 - .../maps/geo-map/shape-styling/package.json | 6 +- .../shape-styling/src/app/app.module.ts | 1 - .../geo-map/triangulating-data/package.json | 6 +- .../triangulating-data/src/app/app.module.ts | 1 - .../type-scatter-area-series/package.json | 6 +- .../src/app/app.module.ts | 1 - .../type-scatter-bubble-series/package.json | 6 +- .../src/app/app.module.ts | 1 - .../type-scatter-contour-series/package.json | 6 +- .../src/app/app.module.ts | 1 - .../type-scatter-density-series/package.json | 6 +- .../src/app/app.module.ts | 1 - .../type-scatter-symbol-series/package.json | 6 +- .../src/app/app.module.ts | 1 - .../type-shape-polygon-series/package.json | 6 +- .../src/app/app.module.ts | 1 - .../type-shape-polyline-series/package.json | 6 +- .../src/app/app.module.ts | 1 - 507 files changed, 998 insertions(+), 1188 deletions(-) delete mode 100644 package-lock.json diff --git a/browser/package.json b/browser/package.json index db826fc0a..7be27cde3 100644 --- a/browser/package.json +++ b/browser/package.json @@ -41,15 +41,16 @@ "immediate": "3.2.3", "igniteui-angular": "16.0.7", "igniteui-theming": "1.4.14", - "igniteui-angular-core": "16.1.0", "igniteui-angular-charts": "16.1.0", - "igniteui-angular-excel": "16.1.0", - "igniteui-angular-gauges": "16.1.0", - "igniteui-angular-inputs": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-maps": "16.1.0", - "igniteui-angular-spreadsheet": "16.1.0", - "igniteui-angular-spreadsheet-chart-adapter": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 1cead44ce..9525a3f4c 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1022,16 +1022,16 @@ function updateIG(cb) { // { name: "igniteui-angular-charts", version: "14.1.0" }, // npm let packageUpgrades = [ // these IG packages are often updated: - { name: "igniteui-angular-core" , version: "16.1.0" }, - { name: "igniteui-angular-charts" , version: "16.1.0" }, - { name: "igniteui-angular-excel" , version: "16.1.0" }, - { name: "igniteui-angular-gauges" , version: "16.1.0" }, - { name: "igniteui-angular-inputs" , version: "16.1.0" }, - { name: "igniteui-angular-layouts" , version: "16.1.0" }, - { name: "igniteui-angular-maps" , version: "16.1.0" }, - { name: "igniteui-angular-spreadsheet-chart-adapter", version: "16.1.0" }, - { name: "igniteui-angular-spreadsheet" , version: "16.1.0" }, - { name: "igniteui-angular-datasources" , version: "16.1.0" }, + { name: "igniteui-angular-core" , version: "23.2.18" }, + { name: "igniteui-angular-charts" , version: "23.2.18" }, + { name: "igniteui-angular-excel" , version: "23.2.18" }, + { name: "igniteui-angular-gauges" , version: "23.2.18" }, + { name: "igniteui-angular-inputs" , version: "23.2.18" }, + { name: "igniteui-angular-layouts" , version: "23.2.18" }, + { name: "igniteui-angular-maps" , version: "23.2.18" }, + { name: "igniteui-angular-spreadsheet-chart-adapter", version: "23.2.18" }, + { name: "igniteui-angular-spreadsheet" , version: "23.2.18" }, + { name: "igniteui-angular-datasources" , version: "23.2.18" }, // these IG packages are sometimes updated: { name: "igniteui-webcomponents", version: "4.3.0-beta.0" }, { name: "igniteui-theming", version: "1.4.14" }, diff --git a/browser/src/app/app-routing.module.ts b/browser/src/app/app-routing.module.ts index fe7db51f6..65637006e 100644 --- a/browser/src/app/app-routing.module.ts +++ b/browser/src/app/app-routing.module.ts @@ -16,8 +16,8 @@ export const samplesRoutes: Routes = [ // note these section is auto-generated - do not change it: // Auto-Insert-Modules-Start { path: "charts", data: ["SamplesForCharts"], loadChildren: () => import("../samples/charts/samples-modules").then(m => m.SamplesForCharts) }, - { path: "excel", data: ["SamplesForExcel"], loadChildren: () => import("../samples/excel/samples-modules").then(m => m.SamplesForExcel) }, { path: "gauges", data: ["SamplesForGauges"], loadChildren: () => import("../samples/gauges/samples-modules").then(m => m.SamplesForGauges) }, + { path: "excel", data: ["SamplesForExcel"], loadChildren: () => import("../samples/excel/samples-modules").then(m => m.SamplesForExcel) }, { path: "maps", data: ["SamplesForMaps"], loadChildren: () => import("../samples/maps/samples-modules").then(m => m.SamplesForMaps) } diff --git a/browser/src/app/index/index.component.ts b/browser/src/app/index/index.component.ts index 6213578a9..2700cd69a 100644 --- a/browser/src/app/index/index.component.ts +++ b/browser/src/app/index/index.component.ts @@ -9,8 +9,8 @@ import BrowserInfo from "../../browser-info.json"; // note these section is auto-generated - do not change it: // Auto-Insert-Imports-RoutingData-Start import { RoutingDataForCharts } from "../../samples/charts/routing-data"; -import { RoutingDataForExcel } from "../../samples/excel/routing-data"; import { RoutingDataForGauges } from "../../samples/gauges/routing-data"; +import { RoutingDataForExcel } from "../../samples/excel/routing-data"; import { RoutingDataForMaps } from "../../samples/maps/routing-data"; @@ -48,8 +48,8 @@ export class IndexComponent implements OnInit, AfterViewInit { private modulesRoutes = [ // Auto-Insert-SamplesRoutingArray-Start { path: "charts", routesData: RoutingDataForCharts }, - { path: "excel", routesData: RoutingDataForExcel }, { path: "gauges", routesData: RoutingDataForGauges }, + { path: "excel", routesData: RoutingDataForExcel }, { path: "maps", routesData: RoutingDataForMaps } diff --git a/browser/src/assets/stats.json b/browser/src/assets/stats.json index a45aaf2e5..849b514bd 100644 --- a/browser/src/assets/stats.json +++ b/browser/src/assets/stats.json @@ -1,89 +1,22 @@ [ - { "browser": true, "xplat": false, "path": "charts/category-chart/annotations" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-all" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-callouts" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-crosshairs" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-final-value" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-highlighting" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-gap" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-gridlines" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-inverted" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-labels" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-locations" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-options" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-overlap" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-range" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-tickmarks" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-titles" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-with-highlighting" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-with-tooltips" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-aggregations" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-legend" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-legend-formatting-decimals" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip-formatting-decimals" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip-positioning" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/high-frequency" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/high-volume" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/highlighting" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-animations" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-annotations" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-legend" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/marker-options" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/marker-templates" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/stack-columns" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/tooltip-template" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/tooltip-types" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/trendline" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/value-lines" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/animation" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/explosion" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/legend" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/rings" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/selection" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-annotations" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/annotations-custom" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-annotations-corner-radius" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-crossing" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/axis-annotations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-label-rotation" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-locations" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/axis-crossing" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-min-max-gap" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-settings" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/axis-locations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-sharing" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-types" }, { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/axis-types" }, { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-overlapping" }, { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/callout-layer-styling" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/chart-navigation" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/chart-overview" }, { "browser": false, "xplat": false, "path": "charts/data-chart/chart-performance" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/chart-navigation" }, { "browser": false, "xplat": false, "path": "charts/data-chart/chart-synchronization" }, { "browser": false, "xplat": false, "path": "charts/data-chart/chart-titles" }, { "browser": false, "xplat": false, "path": "charts/data-chart/column-chart-styling" }, @@ -102,36 +35,36 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/polar-area-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-chart-types" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-line-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/polar-scatter-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-spline-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-spline-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/polar-scatter-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-area-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/radial-area-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-chart-types" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-column-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/radial-area-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-line-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/radial-pie-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/range-area-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/radial-pie-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/range-column-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-bubble-chart-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-bubble-chart-single-source" }, { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-bubble-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-line-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-point-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-line-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-spline-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-animations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-annotations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-highlighting" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-marker-template" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-markers" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-tooltips" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-trendlines" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/series-markers" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-value-overlay" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/series-trendlines" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-bar-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-column-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-line-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-spline-area-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-line-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-spline-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-bar-chart" }, @@ -143,10 +76,10 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/tooltip-template" }, { "browser": false, "xplat": false, "path": "charts/data-chart/transition-event" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-area-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-point-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-spline-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-spline-series" }, @@ -156,30 +89,30 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-area-indicators" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-candlestick-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-column-indicators" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-line-indicators" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-ohlc-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-line-indicators" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-overlays" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-area-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-column-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-pie-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-column-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-bubble-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-area-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-bubble-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-contour-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-hd-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-line-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-hd-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-contour-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-point-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-polygon-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-polyline-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-polygon-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-spline-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-shape-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-area-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-spline-area-series" }, @@ -188,88 +121,140 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-line-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-spline-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-spline-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-spline-area-series" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/animation" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/explosion" }, { "browser": false, "xplat": false, "path": "charts/data-chart/waterfall-chart" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/overview" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/legend" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/rings" }, + { "browser": true, "xplat": false, "path": "charts/category-chart/annotations" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/selection" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-all" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-crosshairs" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-callouts" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-final-value" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-custom" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-highlighting" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-styling" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-gap" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-inverted" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-locations" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-gridlines" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-labels" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-overlap" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-options" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-tickmarks" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-titles" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-range" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-styling" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-with-highlighting" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-with-tooltips" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/data-aggregations" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/data-legend-formatting-decimals" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip-formatting-decimals" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip-positioning" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/high-frequency" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/highlighting" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/data-legend" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/high-volume" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-animations" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-annotations" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-styling" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/marker-options" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/marker-templates" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/overview" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-legend" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-styling" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-styling" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/spline-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/spline-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/spline-styling" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/stack-columns" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-styling" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-styling" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/tooltip-types" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/tooltip-template" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/trendline" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/value-lines" }, { "browser": false, "xplat": false, "path": "charts/pie-chart/animation" }, { "browser": false, "xplat": false, "path": "charts/pie-chart/explosion" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/legend" }, { "browser": false, "xplat": false, "path": "charts/pie-chart/others" }, { "browser": false, "xplat": false, "path": "charts/pie-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/selection" }, { "browser": false, "xplat": false, "path": "charts/pie-chart/styling" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/annotations" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/legend" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/selection" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/axis-types" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/annotations" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-formatting-currency" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-styling-props" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-formatting-currency" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-styling-props" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-styling-props" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/high-frequency" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/high-volume" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-customization" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-types" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-data" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-customization" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-feeds" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/overview" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/panes" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/performance" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/scrollbars" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/stock-index-chart" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/scrollbars" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/styling" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/theming" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/time-based-data" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/theming" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/titles" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-template" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-types" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-template" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/trendlines" }, + { "browser": false, "xplat": false, "path": "charts/tree-map/events" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/volume-types" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-area" }, + { "browser": false, "xplat": false, "path": "charts/tree-map/layout" }, + { "browser": false, "xplat": false, "path": "charts/tree-map/overview" }, + { "browser": false, "xplat": false, "path": "charts/tree-map/styling" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-category-chart" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-data-chart" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/layout-in-vertical-orientation" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/theming" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-column" }, + { "browser": false, "xplat": false, "path": "charts/sparkline/display-area" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/layout-actions-for-data-chart" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-lines" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-types" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-winloss" }, { "browser": false, "xplat": false, "path": "charts/sparkline/grid" }, { "browser": false, "xplat": false, "path": "charts/sparkline/markers" }, { "browser": false, "xplat": false, "path": "charts/sparkline/normal-range" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/trendlines" }, { "browser": false, "xplat": false, "path": "charts/sparkline/unknown-values" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-category-chart" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-data-chart" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/layout-actions-for-data-chart" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/layout-in-vertical-orientation" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/theming" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/events" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/layout" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/overview" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/styling" }, + { "browser": false, "xplat": false, "path": "charts/sparkline/trendlines" }, { "browser": false, "xplat": false, "path": "charts/zoomslider/overview" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-workbooks" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-worksheets" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/overview" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-cells" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-charts" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-sparklines" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-tables" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/activation" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-chart" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-combo" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/clipboard" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/commands" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/conditional-formatting" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/config-options" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/data-validation" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/hyperlinks" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/overview" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-csv" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-json-points" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-model" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-multiple-shapes" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-csv" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-multiple-sources" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-points" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-polygons" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-polylines" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-polygons" }, { "browser": false, "xplat": false, "path": "maps/geo-map/custom-tooltips" }, { "browser": false, "xplat": false, "path": "maps/geo-map/display-bing-imagery" }, { "browser": false, "xplat": false, "path": "maps/geo-map/display-esri-imagery" }, @@ -280,34 +265,51 @@ { "browser": false, "xplat": false, "path": "maps/geo-map/marker-type" }, { "browser": false, "xplat": false, "path": "maps/geo-map/navigation" }, { "browser": false, "xplat": false, "path": "maps/geo-map/overview" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/shape-styling" }, { "browser": false, "xplat": false, "path": "maps/geo-map/triangulating-data" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/shape-styling" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-area-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-bubble-series" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-contour-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-density-series" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-symbol-series" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-contour-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polygon-series" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-symbol-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polyline-series" }, { "browser": false, "xplat": false, "path": "gauges/bullet-graph/animation" }, { "browser": false, "xplat": false, "path": "gauges/bullet-graph/background" }, { "browser": false, "xplat": false, "path": "gauges/bullet-graph/labels" }, { "browser": false, "xplat": false, "path": "gauges/bullet-graph/measures" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/ranges" }, { "browser": false, "xplat": false, "path": "gauges/bullet-graph/scale" }, { "browser": false, "xplat": false, "path": "gauges/bullet-graph/tickmarks" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/activation" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-chart" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/ranges" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-combo" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/clipboard" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/commands" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/conditional-formatting" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/config-options" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/data-validation" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/hyperlinks" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-workbooks" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-worksheets" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/overview" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/overview" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-cells" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-charts" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-sparklines" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-tables" }, { "browser": false, "xplat": false, "path": "gauges/linear-gauge/animation" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/backing" }, { "browser": false, "xplat": false, "path": "gauges/linear-gauge/labels" }, { "browser": false, "xplat": false, "path": "gauges/linear-gauge/needle" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/backing" }, { "browser": false, "xplat": false, "path": "gauges/linear-gauge/ranges" }, { "browser": false, "xplat": false, "path": "gauges/linear-gauge/scale" }, { "browser": false, "xplat": false, "path": "gauges/linear-gauge/tickmarks" }, { "browser": false, "xplat": false, "path": "gauges/radial-gauge/animation" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/backing" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/labels" }, { "browser": false, "xplat": false, "path": "gauges/radial-gauge/needle" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/backing" }, { "browser": false, "xplat": false, "path": "gauges/radial-gauge/ranges" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/labels" }, { "browser": false, "xplat": false, "path": "gauges/radial-gauge/scale" }, { "browser": false, "xplat": false, "path": "gauges/radial-gauge/tickmarks" } ] \ No newline at end of file diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index c425a4eee..d2b9164bc 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,14 +1,14 @@ [ {"ver":"16.0.7","name":"igniteui-angular"}, {"ver":"1.4.14","name":"igniteui-theming"}, -{"ver":"16.1.0","name":"igniteui-angular-core"}, -{"ver":"16.1.0","name":"igniteui-angular-charts"}, -{"ver":"16.1.0","name":"igniteui-angular-excel"}, -{"ver":"16.1.0","name":"igniteui-angular-gauges"}, -{"ver":"16.1.0","name":"igniteui-angular-inputs"}, -{"ver":"16.1.0","name":"igniteui-angular-layouts"}, -{"ver":"16.1.0","name":"igniteui-angular-maps"}, -{"ver":"16.1.0","name":"igniteui-angular-spreadsheet"}, -{"ver":"16.1.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"23.2.18","name":"igniteui-angular-core"}, +{"ver":"23.2.18","name":"igniteui-angular-charts"}, +{"ver":"23.2.18","name":"igniteui-angular-excel"}, +{"ver":"23.2.18","name":"igniteui-angular-gauges"}, +{"ver":"23.2.18","name":"igniteui-angular-inputs"}, +{"ver":"23.2.18","name":"igniteui-angular-layouts"}, +{"ver":"23.2.18","name":"igniteui-angular-maps"}, +{"ver":"23.2.18","name":"igniteui-angular-spreadsheet"}, +{"ver":"23.2.18","name":"igniteui-angular-spreadsheet-chart-adapter"}, {"ver":"4.3.0-beta.0","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index d4c14b00c..000000000 --- a/package-lock.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "igniteui-angular-examples", - "lockfileVersion": 2, - "requires": true, - "packages": {} -} diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations/src/app/app.module.ts b/samples/charts/category-chart/annotations/src/app/app.module.ts index 35828e100..a3bbccb9f 100644 --- a/samples/charts/category-chart/annotations/src/app/app.module.ts +++ b/samples/charts/category-chart/annotations/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxCategoryChartModule, IgxLegendModule } from "igniteui-angular-charts IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/src/app/app.module.ts b/samples/charts/category-chart/column-chart-with-highlighting/src/app/app.module.ts index 35828e100..a3bbccb9f 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/src/app/app.module.ts +++ b/samples/charts/category-chart/column-chart-with-highlighting/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxCategoryChartModule, IgxLegendModule } from "igniteui-angular-charts IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 0a49f3cd0..e1b63b3e7 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -19,8 +19,8 @@ "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-frequency/src/app/app.module.ts b/samples/charts/category-chart/high-frequency/src/app/app.module.ts index 747153d8f..137fbbd82 100644 --- a/samples/charts/category-chart/high-frequency/src/app/app.module.ts +++ b/samples/charts/category-chart/high-frequency/src/app/app.module.ts @@ -25,7 +25,6 @@ import { IgxSliderModule } from "igniteui-angular"; IgxSliderModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 0a49f3cd0..e1b63b3e7 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -19,8 +19,8 @@ "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-volume/src/app/app.module.ts b/samples/charts/category-chart/high-volume/src/app/app.module.ts index 747153d8f..137fbbd82 100644 --- a/samples/charts/category-chart/high-volume/src/app/app.module.ts +++ b/samples/charts/category-chart/high-volume/src/app/app.module.ts @@ -25,7 +25,6 @@ import { IgxSliderModule } from "igniteui-angular"; IgxSliderModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/highlighting/src/app/app.module.ts b/samples/charts/category-chart/highlighting/src/app/app.module.ts index 35828e100..a3bbccb9f 100644 --- a/samples/charts/category-chart/highlighting/src/app/app.module.ts +++ b/samples/charts/category-chart/highlighting/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxCategoryChartModule, IgxLegendModule } from "igniteui-angular-charts IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-animations/src/app/app.module.ts b/samples/charts/category-chart/line-chart-with-animations/src/app/app.module.ts index 35828e100..a3bbccb9f 100644 --- a/samples/charts/category-chart/line-chart-with-animations/src/app/app.module.ts +++ b/samples/charts/category-chart/line-chart-with-animations/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxCategoryChartModule, IgxLegendModule } from "igniteui-angular-charts IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-annotations/src/app/app.module.ts b/samples/charts/category-chart/line-chart-with-annotations/src/app/app.module.ts index 35828e100..a3bbccb9f 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/src/app/app.module.ts +++ b/samples/charts/category-chart/line-chart-with-annotations/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxCategoryChartModule, IgxLegendModule } from "igniteui-angular-charts IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-legend/src/app/app.module.ts b/samples/charts/category-chart/line-chart-with-legend/src/app/app.module.ts index 35828e100..a3bbccb9f 100644 --- a/samples/charts/category-chart/line-chart-with-legend/src/app/app.module.ts +++ b/samples/charts/category-chart/line-chart-with-legend/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxCategoryChartModule, IgxLegendModule } from "igniteui-angular-charts IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/marker-templates/src/app/app.module.ts b/samples/charts/category-chart/marker-templates/src/app/app.module.ts index 35828e100..a3bbccb9f 100644 --- a/samples/charts/category-chart/marker-templates/src/app/app.module.ts +++ b/samples/charts/category-chart/marker-templates/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxCategoryChartModule, IgxLegendModule } from "igniteui-angular-charts IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/stack-columns/src/app/app.module.ts b/samples/charts/category-chart/stack-columns/src/app/app.module.ts index 35828e100..a3bbccb9f 100644 --- a/samples/charts/category-chart/stack-columns/src/app/app.module.ts +++ b/samples/charts/category-chart/stack-columns/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxCategoryChartModule, IgxLegendModule } from "igniteui-angular-charts IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-template/src/app/app.module.ts b/samples/charts/category-chart/tooltip-template/src/app/app.module.ts index 35828e100..a3bbccb9f 100644 --- a/samples/charts/category-chart/tooltip-template/src/app/app.module.ts +++ b/samples/charts/category-chart/tooltip-template/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxCategoryChartModule, IgxLegendModule } from "igniteui-angular-charts IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-types/src/app/app.module.ts b/samples/charts/category-chart/tooltip-types/src/app/app.module.ts index 35828e100..a3bbccb9f 100644 --- a/samples/charts/category-chart/tooltip-types/src/app/app.module.ts +++ b/samples/charts/category-chart/tooltip-types/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxCategoryChartModule, IgxLegendModule } from "igniteui-angular-charts IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/trendline/src/app/app.module.ts b/samples/charts/category-chart/trendline/src/app/app.module.ts index 35828e100..a3bbccb9f 100644 --- a/samples/charts/category-chart/trendline/src/app/app.module.ts +++ b/samples/charts/category-chart/trendline/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxCategoryChartModule, IgxLegendModule } from "igniteui-angular-charts IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations/src/app/app.module.ts b/samples/charts/data-chart/axis-annotations/src/app/app.module.ts index afa2a0730..8fa60482a 100644 --- a/samples/charts/data-chart/axis-annotations/src/app/app.module.ts +++ b/samples/charts/data-chart/axis-annotations/src/app/app.module.ts @@ -29,7 +29,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxLegendModule, Ig IgxCrosshairLayerModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-crossing/src/app/app.module.ts b/samples/charts/data-chart/axis-crossing/src/app/app.module.ts index f1fb2fc72..2b5738e95 100644 --- a/samples/charts/data-chart/axis-crossing/src/app/app.module.ts +++ b/samples/charts/data-chart/axis-crossing/src/app/app.module.ts @@ -25,7 +25,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartScatter IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-locations/src/app/app.module.ts b/samples/charts/data-chart/axis-locations/src/app/app.module.ts index 1f5cf909d..47f3c2d1c 100644 --- a/samples/charts/data-chart/axis-locations/src/app/app.module.ts +++ b/samples/charts/data-chart/axis-locations/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxLegendModule } f IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-settings/src/app/app.module.ts b/samples/charts/data-chart/axis-settings/src/app/app.module.ts index b489dd5b2..792ca7cae 100644 --- a/samples/charts/data-chart/axis-settings/src/app/app.module.ts +++ b/samples/charts/data-chart/axis-settings/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SharedData } from "./SharedData"; IgxNumberAbbreviatorModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-sharing/src/app/app.module.ts b/samples/charts/data-chart/axis-sharing/src/app/app.module.ts index 6930ae32b..2b3dd1fd5 100644 --- a/samples/charts/data-chart/axis-sharing/src/app/app.module.ts +++ b/samples/charts/data-chart/axis-sharing/src/app/app.module.ts @@ -29,7 +29,6 @@ import { SampleFinancialData } from "./SampleFinancialData"; IgxFinancialPriceSeriesModule ], providers: [SampleFinancialData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-types/src/app/app.module.ts b/samples/charts/data-chart/axis-types/src/app/app.module.ts index a5ca0a474..df3035a03 100644 --- a/samples/charts/data-chart/axis-types/src/app/app.module.ts +++ b/samples/charts/data-chart/axis-types/src/app/app.module.ts @@ -41,7 +41,6 @@ import { SampleScatterData } from "./SampleScatterData"; SampleCategoryData, SampleScatterData ], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-navigation/src/app/app.module.ts b/samples/charts/data-chart/chart-navigation/src/app/app.module.ts index b5f2a4d6d..24f3f413b 100644 --- a/samples/charts/data-chart/chart-navigation/src/app/app.module.ts +++ b/samples/charts/data-chart/chart-navigation/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SampleScatterStats } from "./SampleScatterStats"; IgxDataChartInteractivityModule ], providers: [SampleScatterStats], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-overview/src/app/app.module.ts b/samples/charts/data-chart/chart-overview/src/app/app.module.ts index da5e3d70c..950e0c72c 100644 --- a/samples/charts/data-chart/chart-overview/src/app/app.module.ts +++ b/samples/charts/data-chart/chart-overview/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SampleScatterStats } from "./SampleScatterStats"; IgxLegendModule ], providers: [SampleScatterStats], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-performance/src/app/app.module.ts b/samples/charts/data-chart/chart-performance/src/app/app.module.ts index a847b948f..8e42838f1 100644 --- a/samples/charts/data-chart/chart-performance/src/app/app.module.ts +++ b/samples/charts/data-chart/chart-performance/src/app/app.module.ts @@ -25,7 +25,6 @@ import { SharedData } from "./SharedData"; IgxLegendModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-synchronization/src/app/app.module.ts b/samples/charts/data-chart/chart-synchronization/src/app/app.module.ts index fc05bf570..d7d879db4 100644 --- a/samples/charts/data-chart/chart-synchronization/src/app/app.module.ts +++ b/samples/charts/data-chart/chart-synchronization/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SharedData } from "./SharedData"; IgxDataChartInteractivityModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-titles/src/app/app.module.ts b/samples/charts/data-chart/chart-titles/src/app/app.module.ts index a847b948f..8e42838f1 100644 --- a/samples/charts/data-chart/chart-titles/src/app/app.module.ts +++ b/samples/charts/data-chart/chart-titles/src/app/app.module.ts @@ -25,7 +25,6 @@ import { SharedData } from "./SharedData"; IgxLegendModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/column-chart-styling/src/app/app.module.ts b/samples/charts/data-chart/column-chart-styling/src/app/app.module.ts index a55521477..13856e294 100644 --- a/samples/charts/data-chart/column-chart-styling/src/app/app.module.ts +++ b/samples/charts/data-chart/column-chart-styling/src/app/app.module.ts @@ -25,7 +25,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxLegendModule, Ig IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/composite-chart/src/app/app.module.ts b/samples/charts/data-chart/composite-chart/src/app/app.module.ts index 5d8b77563..6ab92a90c 100644 --- a/samples/charts/data-chart/composite-chart/src/app/app.module.ts +++ b/samples/charts/data-chart/composite-chart/src/app/app.module.ts @@ -29,7 +29,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxLegendModule, Ig IgxNumberAbbreviatorModule, ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/crosshair-layer-styling/src/app/app.module.ts b/samples/charts/data-chart/crosshair-layer-styling/src/app/app.module.ts index 3353b248c..58d0f5427 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/src/app/app.module.ts +++ b/samples/charts/data-chart/crosshair-layer-styling/src/app/app.module.ts @@ -27,7 +27,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxLegendModule, Ig IgxCrosshairLayerModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/final-value-layer-styling/src/app/app.module.ts b/samples/charts/data-chart/final-value-layer-styling/src/app/app.module.ts index 7d2bd458c..166ebf3aa 100644 --- a/samples/charts/data-chart/final-value-layer-styling/src/app/app.module.ts +++ b/samples/charts/data-chart/final-value-layer-styling/src/app/app.module.ts @@ -27,7 +27,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxLegendModule, Ig IgxFinalValueLayerModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/legends/src/app/app.module.ts b/samples/charts/data-chart/legends/src/app/app.module.ts index b489dd5b2..792ca7cae 100644 --- a/samples/charts/data-chart/legends/src/app/app.module.ts +++ b/samples/charts/data-chart/legends/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SharedData } from "./SharedData"; IgxNumberAbbreviatorModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-chart-types/src/app/app.module.ts b/samples/charts/data-chart/polar-chart-types/src/app/app.module.ts index b6f7d239f..8434f8dac 100644 --- a/samples/charts/data-chart/polar-chart-types/src/app/app.module.ts +++ b/samples/charts/data-chart/polar-chart-types/src/app/app.module.ts @@ -27,7 +27,6 @@ import { SamplePolarData } from "./SamplePolarData"; IgxDataChartInteractivityModule ], providers: [SamplePolarData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-chart-types/src/app/app.module.ts b/samples/charts/data-chart/radial-chart-types/src/app/app.module.ts index e1bb5b729..486020171 100644 --- a/samples/charts/data-chart/radial-chart-types/src/app/app.module.ts +++ b/samples/charts/data-chart/radial-chart-types/src/app/app.module.ts @@ -27,7 +27,6 @@ import { SampleRadialData } from "./SampleRadialData"; IgxDataChartInteractivityModule ], providers: [SampleRadialData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index e3be3d568..fb81a9f87 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.module.ts b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.module.ts index 1b5f95f26..6717c1807 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.module.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.module.ts @@ -26,7 +26,6 @@ import { IgxLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCoreModule, Ig IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index e3be3d568..fb81a9f87 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.module.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.module.ts index e14196d13..f42d89914 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.module.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.module.ts @@ -25,7 +25,6 @@ import { IgxNumberAbbreviatorModule, IgxDataChartCoreModule, IgxDataChartScatter IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index e3be3d568..fb81a9f87 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.module.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.module.ts index 1b5f95f26..6717c1807 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.module.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.module.ts @@ -26,7 +26,6 @@ import { IgxLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCoreModule, Ig IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-animations/src/app/app.module.ts b/samples/charts/data-chart/series-animations/src/app/app.module.ts index 9e51e0feb..7ba2869a7 100644 --- a/samples/charts/data-chart/series-animations/src/app/app.module.ts +++ b/samples/charts/data-chart/series-animations/src/app/app.module.ts @@ -24,7 +24,6 @@ import { SharedData } from "./SharedData"; IgxDataChartCategoryModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-annotations/src/app/app.module.ts b/samples/charts/data-chart/series-annotations/src/app/app.module.ts index e49444e1f..9712a71d4 100644 --- a/samples/charts/data-chart/series-annotations/src/app/app.module.ts +++ b/samples/charts/data-chart/series-annotations/src/app/app.module.ts @@ -30,7 +30,6 @@ import { SharedData } from "./SharedData"; IgxDataChartInteractivityModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-highlighting/src/app/app.module.ts b/samples/charts/data-chart/series-highlighting/src/app/app.module.ts index 88d4e0027..c17d5f89a 100644 --- a/samples/charts/data-chart/series-highlighting/src/app/app.module.ts +++ b/samples/charts/data-chart/series-highlighting/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SharedData } from "./SharedData"; IgxLegendModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-marker-template/src/app/app.module.ts b/samples/charts/data-chart/series-marker-template/src/app/app.module.ts index a55521477..13856e294 100644 --- a/samples/charts/data-chart/series-marker-template/src/app/app.module.ts +++ b/samples/charts/data-chart/series-marker-template/src/app/app.module.ts @@ -25,7 +25,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxLegendModule, Ig IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-markers/src/app/app.module.ts b/samples/charts/data-chart/series-markers/src/app/app.module.ts index dd2818ab9..f5d8ec4f5 100644 --- a/samples/charts/data-chart/series-markers/src/app/app.module.ts +++ b/samples/charts/data-chart/series-markers/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SharedData } from "./SharedData"; IgxNumberAbbreviatorModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-tooltips/src/app/app.module.ts b/samples/charts/data-chart/series-tooltips/src/app/app.module.ts index fc05bf570..d7d879db4 100644 --- a/samples/charts/data-chart/series-tooltips/src/app/app.module.ts +++ b/samples/charts/data-chart/series-tooltips/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SharedData } from "./SharedData"; IgxDataChartInteractivityModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-trendlines/src/app/app.module.ts b/samples/charts/data-chart/series-trendlines/src/app/app.module.ts index cd5a76545..0873df9f4 100644 --- a/samples/charts/data-chart/series-trendlines/src/app/app.module.ts +++ b/samples/charts/data-chart/series-trendlines/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SampleFinancialData } from "./SampleFinancialData"; IgxFinancialPriceSeriesModule ], providers: [SampleFinancialData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-value-overlay/src/app/app.module.ts b/samples/charts/data-chart/series-value-overlay/src/app/app.module.ts index 424c54436..0ecb6d097 100644 --- a/samples/charts/data-chart/series-value-overlay/src/app/app.module.ts +++ b/samples/charts/data-chart/series-value-overlay/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SharedData } from "./SharedData"; IgxLegendModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-chart-types/src/app/app.module.ts b/samples/charts/data-chart/stacked-chart-types/src/app/app.module.ts index bee9b1e7d..25c20c4bf 100644 --- a/samples/charts/data-chart/stacked-chart-types/src/app/app.module.ts +++ b/samples/charts/data-chart/stacked-chart-types/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SharedData } from "./SharedData"; IgxStackedFragmentSeriesModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/tooltip-template/src/app/app.module.ts b/samples/charts/data-chart/tooltip-template/src/app/app.module.ts index a55521477..13856e294 100644 --- a/samples/charts/data-chart/tooltip-template/src/app/app.module.ts +++ b/samples/charts/data-chart/tooltip-template/src/app/app.module.ts @@ -25,7 +25,6 @@ import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxLegendModule, Ig IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-area-series/src/app/app.module.ts index b800e6b6a..677065ed2 100644 --- a/samples/charts/data-chart/type-category-area-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-category-area-series/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SampleCategoryData } from "./SampleCategoryData"; IgxDataChartInteractivityModule ], providers: [SampleCategoryData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-bar-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-bar-series/src/app/app.module.ts index b800e6b6a..677065ed2 100644 --- a/samples/charts/data-chart/type-category-bar-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-category-bar-series/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SampleCategoryData } from "./SampleCategoryData"; IgxDataChartInteractivityModule ], providers: [SampleCategoryData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-column-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-column-series/src/app/app.module.ts index b800e6b6a..677065ed2 100644 --- a/samples/charts/data-chart/type-category-column-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-category-column-series/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SampleCategoryData } from "./SampleCategoryData"; IgxDataChartInteractivityModule ], providers: [SampleCategoryData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-line-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-line-series/src/app/app.module.ts index b800e6b6a..677065ed2 100644 --- a/samples/charts/data-chart/type-category-line-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-category-line-series/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SampleCategoryData } from "./SampleCategoryData"; IgxDataChartInteractivityModule ], providers: [SampleCategoryData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-point-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-point-series/src/app/app.module.ts index b800e6b6a..677065ed2 100644 --- a/samples/charts/data-chart/type-category-point-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-category-point-series/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SampleCategoryData } from "./SampleCategoryData"; IgxDataChartInteractivityModule ], providers: [SampleCategoryData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-series/src/app/app.module.ts index b800e6b6a..677065ed2 100644 --- a/samples/charts/data-chart/type-category-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-category-series/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SampleCategoryData } from "./SampleCategoryData"; IgxDataChartInteractivityModule ], providers: [SampleCategoryData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-spline-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-spline-area-series/src/app/app.module.ts index b800e6b6a..677065ed2 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-category-spline-area-series/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SampleCategoryData } from "./SampleCategoryData"; IgxDataChartInteractivityModule ], providers: [SampleCategoryData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-spline-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-spline-series/src/app/app.module.ts index b800e6b6a..677065ed2 100644 --- a/samples/charts/data-chart/type-category-spline-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-category-spline-series/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SampleCategoryData } from "./SampleCategoryData"; IgxDataChartInteractivityModule ], providers: [SampleCategoryData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-step-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-step-area-series/src/app/app.module.ts index b800e6b6a..677065ed2 100644 --- a/samples/charts/data-chart/type-category-step-area-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-category-step-area-series/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SampleCategoryData } from "./SampleCategoryData"; IgxDataChartInteractivityModule ], providers: [SampleCategoryData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-step-line-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-step-line-series/src/app/app.module.ts index b800e6b6a..677065ed2 100644 --- a/samples/charts/data-chart/type-category-step-line-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-category-step-line-series/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SampleCategoryData } from "./SampleCategoryData"; IgxDataChartInteractivityModule ], providers: [SampleCategoryData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-waterfall-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-waterfall-series/src/app/app.module.ts index b800e6b6a..677065ed2 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-category-waterfall-series/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SampleCategoryData } from "./SampleCategoryData"; IgxDataChartInteractivityModule ], providers: [SampleCategoryData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-area-indicators/src/app/app.module.ts b/samples/charts/data-chart/type-financial-area-indicators/src/app/app.module.ts index 6930ae32b..2b3dd1fd5 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/src/app/app.module.ts +++ b/samples/charts/data-chart/type-financial-area-indicators/src/app/app.module.ts @@ -29,7 +29,6 @@ import { SampleFinancialData } from "./SampleFinancialData"; IgxFinancialPriceSeriesModule ], providers: [SampleFinancialData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/src/app/app.module.ts b/samples/charts/data-chart/type-financial-candlestick-series/src/app/app.module.ts index c0c0cf71f..887e48bbe 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-financial-candlestick-series/src/app/app.module.ts @@ -31,7 +31,6 @@ import { SampleFinancialData } from "./SampleFinancialData"; IgxCategoryXAxisModule ], providers: [SampleFinancialData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-column-indicators/src/app/app.module.ts b/samples/charts/data-chart/type-financial-column-indicators/src/app/app.module.ts index 6930ae32b..2b3dd1fd5 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/src/app/app.module.ts +++ b/samples/charts/data-chart/type-financial-column-indicators/src/app/app.module.ts @@ -29,7 +29,6 @@ import { SampleFinancialData } from "./SampleFinancialData"; IgxFinancialPriceSeriesModule ], providers: [SampleFinancialData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-line-indicators/src/app/app.module.ts b/samples/charts/data-chart/type-financial-line-indicators/src/app/app.module.ts index 6930ae32b..2b3dd1fd5 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/src/app/app.module.ts +++ b/samples/charts/data-chart/type-financial-line-indicators/src/app/app.module.ts @@ -29,7 +29,6 @@ import { SampleFinancialData } from "./SampleFinancialData"; IgxFinancialPriceSeriesModule ], providers: [SampleFinancialData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/src/app/app.module.ts b/samples/charts/data-chart/type-financial-ohlc-series/src/app/app.module.ts index c0c0cf71f..887e48bbe 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-financial-ohlc-series/src/app/app.module.ts @@ -31,7 +31,6 @@ import { SampleFinancialData } from "./SampleFinancialData"; IgxCategoryXAxisModule ], providers: [SampleFinancialData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-overlays/src/app/app.module.ts b/samples/charts/data-chart/type-financial-overlays/src/app/app.module.ts index 6930ae32b..2b3dd1fd5 100644 --- a/samples/charts/data-chart/type-financial-overlays/src/app/app.module.ts +++ b/samples/charts/data-chart/type-financial-overlays/src/app/app.module.ts @@ -29,7 +29,6 @@ import { SampleFinancialData } from "./SampleFinancialData"; IgxFinancialPriceSeriesModule ], providers: [SampleFinancialData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-series/src/app/app.module.ts b/samples/charts/data-chart/type-financial-series/src/app/app.module.ts index c0c0cf71f..887e48bbe 100644 --- a/samples/charts/data-chart/type-financial-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-financial-series/src/app/app.module.ts @@ -31,7 +31,6 @@ import { SampleFinancialData } from "./SampleFinancialData"; IgxCategoryXAxisModule ], providers: [SampleFinancialData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-radial-area-series/src/app/app.module.ts index e1bb5b729..486020171 100644 --- a/samples/charts/data-chart/type-radial-area-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-radial-area-series/src/app/app.module.ts @@ -27,7 +27,6 @@ import { SampleRadialData } from "./SampleRadialData"; IgxDataChartInteractivityModule ], providers: [SampleRadialData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-column-series/src/app/app.module.ts b/samples/charts/data-chart/type-radial-column-series/src/app/app.module.ts index e1bb5b729..486020171 100644 --- a/samples/charts/data-chart/type-radial-column-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-radial-column-series/src/app/app.module.ts @@ -27,7 +27,6 @@ import { SampleRadialData } from "./SampleRadialData"; IgxDataChartInteractivityModule ], providers: [SampleRadialData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-line-series/src/app/app.module.ts b/samples/charts/data-chart/type-radial-line-series/src/app/app.module.ts index e1bb5b729..486020171 100644 --- a/samples/charts/data-chart/type-radial-line-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-radial-line-series/src/app/app.module.ts @@ -27,7 +27,6 @@ import { SampleRadialData } from "./SampleRadialData"; IgxDataChartInteractivityModule ], providers: [SampleRadialData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-pie-series/src/app/app.module.ts b/samples/charts/data-chart/type-radial-pie-series/src/app/app.module.ts index e1bb5b729..486020171 100644 --- a/samples/charts/data-chart/type-radial-pie-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-radial-pie-series/src/app/app.module.ts @@ -27,7 +27,6 @@ import { SampleRadialData } from "./SampleRadialData"; IgxDataChartInteractivityModule ], providers: [SampleRadialData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-range-area-series/src/app/app.module.ts index a4088b62b..e5b42dceb 100644 --- a/samples/charts/data-chart/type-range-area-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-range-area-series/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SampleRangeData } from "./SampleRangeData"; IgxDataChartInteractivityModule ], providers: [SampleRangeData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-column-series/src/app/app.module.ts b/samples/charts/data-chart/type-range-column-series/src/app/app.module.ts index a4088b62b..e5b42dceb 100644 --- a/samples/charts/data-chart/type-range-column-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-range-column-series/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SampleRangeData } from "./SampleRangeData"; IgxDataChartInteractivityModule ], providers: [SampleRangeData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-series/src/app/app.module.ts b/samples/charts/data-chart/type-range-series/src/app/app.module.ts index a4088b62b..e5b42dceb 100644 --- a/samples/charts/data-chart/type-range-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-range-series/src/app/app.module.ts @@ -26,7 +26,6 @@ import { SampleRangeData } from "./SampleRangeData"; IgxDataChartInteractivityModule ], providers: [SampleRangeData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-area-series/src/app/app.module.ts index 39f117ac2..504428560 100644 --- a/samples/charts/data-chart/type-scatter-area-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-scatter-area-series/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SampleScatterData } from "./SampleScatterData"; IgxScatterAreaSeriesModule ], providers: [SampleScatterData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-bubble-series/src/app/app.module.ts index b5f2a4d6d..24f3f413b 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-scatter-bubble-series/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SampleScatterStats } from "./SampleScatterStats"; IgxDataChartInteractivityModule ], providers: [SampleScatterStats], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-contour-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-contour-series/src/app/app.module.ts index d436415b5..e9f25bc61 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-scatter-contour-series/src/app/app.module.ts @@ -29,7 +29,6 @@ import { SampleScatterData } from "./SampleScatterData"; IgxDataChartInteractivityModule ], providers: [SampleScatterData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-hd-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-hd-series/src/app/app.module.ts index bd04b0ffc..d45b6e60d 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-scatter-hd-series/src/app/app.module.ts @@ -27,7 +27,6 @@ import { SampleDensityData } from "./SampleDensityData"; IgxDataChartInteractivityModule ], providers: [SampleDensityData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-line-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-line-series/src/app/app.module.ts index ed4aa9f9f..48441180c 100644 --- a/samples/charts/data-chart/type-scatter-line-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-scatter-line-series/src/app/app.module.ts @@ -27,7 +27,6 @@ import { SampleScatterData } from "./SampleScatterStats"; IgxDataChartInteractivityModule ], providers: [SampleScatterData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-point-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-point-series/src/app/app.module.ts index ed4aa9f9f..48441180c 100644 --- a/samples/charts/data-chart/type-scatter-point-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-scatter-point-series/src/app/app.module.ts @@ -27,7 +27,6 @@ import { SampleScatterData } from "./SampleScatterStats"; IgxDataChartInteractivityModule ], providers: [SampleScatterData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-polygon-series/src/app/app.module.ts index 4cacbc684..4cc2c2c8c 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-scatter-polygon-series/src/app/app.module.ts @@ -27,7 +27,6 @@ import { IgxDataChartCoreModule, IgxDataChartShapeModule, IgxDataChartShapeCoreM IgxDataChartScatterModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-polyline-series/src/app/app.module.ts index 4cacbc684..4cc2c2c8c 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-scatter-polyline-series/src/app/app.module.ts @@ -27,7 +27,6 @@ import { IgxDataChartCoreModule, IgxDataChartShapeModule, IgxDataChartShapeCoreM IgxDataChartScatterModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-series/src/app/app.module.ts index 0d850c7c1..f0394aaed 100644 --- a/samples/charts/data-chart/type-scatter-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-scatter-series/src/app/app.module.ts @@ -27,7 +27,6 @@ import { SampleScatterStats } from "./SampleScatterStats"; IgxLegendModule ], providers: [SampleScatterStats], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-spline-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-spline-series/src/app/app.module.ts index ed4aa9f9f..48441180c 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-scatter-spline-series/src/app/app.module.ts @@ -27,7 +27,6 @@ import { SampleScatterData } from "./SampleScatterStats"; IgxDataChartInteractivityModule ], providers: [SampleScatterData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-shape-series/src/app/app.module.ts b/samples/charts/data-chart/type-shape-series/src/app/app.module.ts index ab4de4e32..9a78c3239 100644 --- a/samples/charts/data-chart/type-shape-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-shape-series/src/app/app.module.ts @@ -27,7 +27,6 @@ import { SampleShapeData } from "./SampleShapeData"; IgxDataChartScatterModule ], providers: [SampleShapeData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-100-area-series/src/app/app.module.ts index bee9b1e7d..25c20c4bf 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-stacked-100-area-series/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SharedData } from "./SharedData"; IgxStackedFragmentSeriesModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-100-bar-series/src/app/app.module.ts index bee9b1e7d..25c20c4bf 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-stacked-100-bar-series/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SharedData } from "./SharedData"; IgxStackedFragmentSeriesModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-column-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-100-column-series/src/app/app.module.ts index bee9b1e7d..25c20c4bf 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-stacked-100-column-series/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SharedData } from "./SharedData"; IgxStackedFragmentSeriesModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-line-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-100-line-series/src/app/app.module.ts index bee9b1e7d..25c20c4bf 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-stacked-100-line-series/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SharedData } from "./SharedData"; IgxStackedFragmentSeriesModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-100-spline-area-series/src/app/app.module.ts index bee9b1e7d..25c20c4bf 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SharedData } from "./SharedData"; IgxStackedFragmentSeriesModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-100-spline-series/src/app/app.module.ts index bee9b1e7d..25c20c4bf 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-stacked-100-spline-series/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SharedData } from "./SharedData"; IgxStackedFragmentSeriesModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-area-series/src/app/app.module.ts index bee9b1e7d..25c20c4bf 100644 --- a/samples/charts/data-chart/type-stacked-area-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-stacked-area-series/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SharedData } from "./SharedData"; IgxStackedFragmentSeriesModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-bar-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-bar-series/src/app/app.module.ts index bee9b1e7d..25c20c4bf 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-stacked-bar-series/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SharedData } from "./SharedData"; IgxStackedFragmentSeriesModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-column-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-column-series/src/app/app.module.ts index bee9b1e7d..25c20c4bf 100644 --- a/samples/charts/data-chart/type-stacked-column-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-stacked-column-series/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SharedData } from "./SharedData"; IgxStackedFragmentSeriesModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-line-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-line-series/src/app/app.module.ts index bee9b1e7d..25c20c4bf 100644 --- a/samples/charts/data-chart/type-stacked-line-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-stacked-line-series/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SharedData } from "./SharedData"; IgxStackedFragmentSeriesModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-spline-area-series/src/app/app.module.ts index bee9b1e7d..25c20c4bf 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-stacked-spline-area-series/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SharedData } from "./SharedData"; IgxStackedFragmentSeriesModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-spline-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-spline-series/src/app/app.module.ts index bee9b1e7d..25c20c4bf 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/src/app/app.module.ts +++ b/samples/charts/data-chart/type-stacked-spline-series/src/app/app.module.ts @@ -28,7 +28,6 @@ import { SharedData } from "./SharedData"; IgxStackedFragmentSeriesModule ], providers: [SharedData], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/animation/src/app/app.module.ts b/samples/charts/doughnut-chart/animation/src/app/app.module.ts index 78bc09c03..7dcc9ab41 100644 --- a/samples/charts/doughnut-chart/animation/src/app/app.module.ts +++ b/samples/charts/doughnut-chart/animation/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDoughnutChartModule, IgxRingSeriesModule, IgxLegendModule } from "ig IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/explosion/src/app/app.module.ts b/samples/charts/doughnut-chart/explosion/src/app/app.module.ts index 78bc09c03..7dcc9ab41 100644 --- a/samples/charts/doughnut-chart/explosion/src/app/app.module.ts +++ b/samples/charts/doughnut-chart/explosion/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDoughnutChartModule, IgxRingSeriesModule, IgxLegendModule } from "ig IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/selection/src/app/app.module.ts b/samples/charts/doughnut-chart/selection/src/app/app.module.ts index 8ebf16925..cd662d65a 100644 --- a/samples/charts/doughnut-chart/selection/src/app/app.module.ts +++ b/samples/charts/doughnut-chart/selection/src/app/app.module.ts @@ -25,7 +25,6 @@ import { IgxDoughnutChartModule, IgxRingSeriesModule, IgxLegendModule, IgxItemLe IgxItemLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/annotations/src/app/app.module.ts b/samples/charts/financial-chart/annotations/src/app/app.module.ts index 2be1662bc..8695df899 100644 --- a/samples/charts/financial-chart/annotations/src/app/app.module.ts +++ b/samples/charts/financial-chart/annotations/src/app/app.module.ts @@ -24,7 +24,6 @@ import { StocksUtility } from "./StocksUtility"; IgxLegendModule ], providers: [StocksUtility], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/axis-types/src/app/app.module.ts b/samples/charts/financial-chart/axis-types/src/app/app.module.ts index c8112d6a0..508b99722 100644 --- a/samples/charts/financial-chart/axis-types/src/app/app.module.ts +++ b/samples/charts/financial-chart/axis-types/src/app/app.module.ts @@ -24,7 +24,6 @@ import { FinancialDataService } from "./FinancialDataService"; IgxLegendModule ], providers: [FinancialDataService], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/high-frequency/src/app/app.module.ts b/samples/charts/financial-chart/high-frequency/src/app/app.module.ts index cbc8b42c1..9aac88519 100644 --- a/samples/charts/financial-chart/high-frequency/src/app/app.module.ts +++ b/samples/charts/financial-chart/high-frequency/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxSliderModule } from "igniteui-angular"; IgxSliderModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/high-volume/src/app/app.module.ts b/samples/charts/financial-chart/high-volume/src/app/app.module.ts index a3cc1e876..7d3186076 100644 --- a/samples/charts/financial-chart/high-volume/src/app/app.module.ts +++ b/samples/charts/financial-chart/high-volume/src/app/app.module.ts @@ -24,7 +24,6 @@ import { GenerateHourlyPricesService } from "./GenerateHourlyPricesService"; IgxLegendModule ], providers: [GenerateHourlyPricesService], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-customization/src/app/app.module.ts b/samples/charts/financial-chart/indicator-customization/src/app/app.module.ts index c8112d6a0..508b99722 100644 --- a/samples/charts/financial-chart/indicator-customization/src/app/app.module.ts +++ b/samples/charts/financial-chart/indicator-customization/src/app/app.module.ts @@ -24,7 +24,6 @@ import { FinancialDataService } from "./FinancialDataService"; IgxLegendModule ], providers: [FinancialDataService], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-types/src/app/app.module.ts b/samples/charts/financial-chart/indicator-types/src/app/app.module.ts index c8112d6a0..508b99722 100644 --- a/samples/charts/financial-chart/indicator-types/src/app/app.module.ts +++ b/samples/charts/financial-chart/indicator-types/src/app/app.module.ts @@ -24,7 +24,6 @@ import { FinancialDataService } from "./FinancialDataService"; IgxLegendModule ], providers: [FinancialDataService], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-data/src/app/app.module.ts b/samples/charts/financial-chart/multiple-data/src/app/app.module.ts index c8112d6a0..508b99722 100644 --- a/samples/charts/financial-chart/multiple-data/src/app/app.module.ts +++ b/samples/charts/financial-chart/multiple-data/src/app/app.module.ts @@ -24,7 +24,6 @@ import { FinancialDataService } from "./FinancialDataService"; IgxLegendModule ], providers: [FinancialDataService], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-feeds/src/app/app.module.ts b/samples/charts/financial-chart/multiple-feeds/src/app/app.module.ts index 098fbc3ed..3f12dbe81 100644 --- a/samples/charts/financial-chart/multiple-feeds/src/app/app.module.ts +++ b/samples/charts/financial-chart/multiple-feeds/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxFinancialChartModule, IgxLegendModule } from "igniteui-angular-chart IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/overview/src/app/app.module.ts b/samples/charts/financial-chart/overview/src/app/app.module.ts index c8112d6a0..508b99722 100644 --- a/samples/charts/financial-chart/overview/src/app/app.module.ts +++ b/samples/charts/financial-chart/overview/src/app/app.module.ts @@ -24,7 +24,6 @@ import { FinancialDataService } from "./FinancialDataService"; IgxLegendModule ], providers: [FinancialDataService], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/panes/src/app/app.module.ts b/samples/charts/financial-chart/panes/src/app/app.module.ts index e527ab442..21aa96185 100644 --- a/samples/charts/financial-chart/panes/src/app/app.module.ts +++ b/samples/charts/financial-chart/panes/src/app/app.module.ts @@ -24,7 +24,6 @@ import { StockDataService } from "./StockDataService"; IgxLegendModule ], providers: [StockDataService], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/performance/src/app/app.module.ts b/samples/charts/financial-chart/performance/src/app/app.module.ts index 1b9901b4d..6d2ddb95b 100644 --- a/samples/charts/financial-chart/performance/src/app/app.module.ts +++ b/samples/charts/financial-chart/performance/src/app/app.module.ts @@ -24,7 +24,6 @@ import { GenerateOhlcPricesService } from "./GenerateOhlcPricesService"; IgxLegendModule ], providers: [GenerateOhlcPricesService], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/stock-index-chart/src/app/app.module.ts b/samples/charts/financial-chart/stock-index-chart/src/app/app.module.ts index f97766e91..9eaf1528e 100644 --- a/samples/charts/financial-chart/stock-index-chart/src/app/app.module.ts +++ b/samples/charts/financial-chart/stock-index-chart/src/app/app.module.ts @@ -24,7 +24,6 @@ import { StockIndexDataService } from "./StockIndexDataService"; IgxLegendModule ], providers: [StockIndexDataService], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/styling/src/app/app.module.ts b/samples/charts/financial-chart/styling/src/app/app.module.ts index c8112d6a0..508b99722 100644 --- a/samples/charts/financial-chart/styling/src/app/app.module.ts +++ b/samples/charts/financial-chart/styling/src/app/app.module.ts @@ -24,7 +24,6 @@ import { FinancialDataService } from "./FinancialDataService"; IgxLegendModule ], providers: [FinancialDataService], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 62c11e08d..c86d18886 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/theming/src/app/app.module.ts b/samples/charts/financial-chart/theming/src/app/app.module.ts index e527ab442..21aa96185 100644 --- a/samples/charts/financial-chart/theming/src/app/app.module.ts +++ b/samples/charts/financial-chart/theming/src/app/app.module.ts @@ -24,7 +24,6 @@ import { StockDataService } from "./StockDataService"; IgxLegendModule ], providers: [StockDataService], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/time-based-data/src/app/app.module.ts b/samples/charts/financial-chart/time-based-data/src/app/app.module.ts index c8112d6a0..508b99722 100644 --- a/samples/charts/financial-chart/time-based-data/src/app/app.module.ts +++ b/samples/charts/financial-chart/time-based-data/src/app/app.module.ts @@ -24,7 +24,6 @@ import { FinancialDataService } from "./FinancialDataService"; IgxLegendModule ], providers: [FinancialDataService], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/titles/src/app/app.module.ts b/samples/charts/financial-chart/titles/src/app/app.module.ts index e527ab442..21aa96185 100644 --- a/samples/charts/financial-chart/titles/src/app/app.module.ts +++ b/samples/charts/financial-chart/titles/src/app/app.module.ts @@ -24,7 +24,6 @@ import { StockDataService } from "./StockDataService"; IgxLegendModule ], providers: [StockDataService], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-template/src/app/app.module.ts b/samples/charts/financial-chart/tooltip-template/src/app/app.module.ts index c8112d6a0..508b99722 100644 --- a/samples/charts/financial-chart/tooltip-template/src/app/app.module.ts +++ b/samples/charts/financial-chart/tooltip-template/src/app/app.module.ts @@ -24,7 +24,6 @@ import { FinancialDataService } from "./FinancialDataService"; IgxLegendModule ], providers: [FinancialDataService], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-types/src/app/app.module.ts b/samples/charts/financial-chart/tooltip-types/src/app/app.module.ts index c8112d6a0..508b99722 100644 --- a/samples/charts/financial-chart/tooltip-types/src/app/app.module.ts +++ b/samples/charts/financial-chart/tooltip-types/src/app/app.module.ts @@ -24,7 +24,6 @@ import { FinancialDataService } from "./FinancialDataService"; IgxLegendModule ], providers: [FinancialDataService], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/trendlines/src/app/app.module.ts b/samples/charts/financial-chart/trendlines/src/app/app.module.ts index c8112d6a0..508b99722 100644 --- a/samples/charts/financial-chart/trendlines/src/app/app.module.ts +++ b/samples/charts/financial-chart/trendlines/src/app/app.module.ts @@ -24,7 +24,6 @@ import { FinancialDataService } from "./FinancialDataService"; IgxLegendModule ], providers: [FinancialDataService], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/volume-types/src/app/app.module.ts b/samples/charts/financial-chart/volume-types/src/app/app.module.ts index c8112d6a0..508b99722 100644 --- a/samples/charts/financial-chart/volume-types/src/app/app.module.ts +++ b/samples/charts/financial-chart/volume-types/src/app/app.module.ts @@ -24,7 +24,6 @@ import { FinancialDataService } from "./FinancialDataService"; IgxLegendModule ], providers: [FinancialDataService], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/animation/src/app/app.module.ts b/samples/charts/pie-chart/animation/src/app/app.module.ts index 51cd3616d..92d6a1c8b 100644 --- a/samples/charts/pie-chart/animation/src/app/app.module.ts +++ b/samples/charts/pie-chart/animation/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxPieChartModule, IgxLegendModule } from "igniteui-angular-charts"; IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/explosion/src/app/app.module.ts b/samples/charts/pie-chart/explosion/src/app/app.module.ts index 51cd3616d..92d6a1c8b 100644 --- a/samples/charts/pie-chart/explosion/src/app/app.module.ts +++ b/samples/charts/pie-chart/explosion/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxPieChartModule, IgxLegendModule } from "igniteui-angular-charts"; IgxLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/selection/src/app/app.module.ts b/samples/charts/pie-chart/selection/src/app/app.module.ts index 8b4f71844..fd05556c2 100644 --- a/samples/charts/pie-chart/selection/src/app/app.module.ts +++ b/samples/charts/pie-chart/selection/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxPieChartModule, IgxLegendModule, IgxItemLegendModule } from "igniteu IgxItemLegendModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 8fdb74bc2..b9695808d 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-types/src/app/app.module.ts b/samples/charts/sparkline/display-types/src/app/app.module.ts index e6ef30ab5..6069e2db6 100644 --- a/samples/charts/sparkline/display-types/src/app/app.module.ts +++ b/samples/charts/sparkline/display-types/src/app/app.module.ts @@ -22,7 +22,6 @@ import { IgxSparklineModule } from "igniteui-angular-charts"; IgxSparklineModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 3015ff86f..c294e22e4 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -20,8 +20,8 @@ "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", "igniteui-theming": "1.4.14", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/grid/src/app/app.module.ts b/samples/charts/sparkline/grid/src/app/app.module.ts index 9e3c3305f..89df8edc0 100644 --- a/samples/charts/sparkline/grid/src/app/app.module.ts +++ b/samples/charts/sparkline/grid/src/app/app.module.ts @@ -23,7 +23,6 @@ import { Products } from "./Products"; IgxGridModule ], providers: [Products], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 8fdb74bc2..b9695808d 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 8fdb74bc2..b9695808d 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 8fdb74bc2..b9695808d 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 8fdb74bc2..b9695808d 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 0a49f3cd0..e1b63b3e7 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -19,8 +19,8 @@ "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/events/src/app/app.module.ts b/samples/charts/tree-map/events/src/app/app.module.ts index 1fbade143..5dd024b4d 100644 --- a/samples/charts/tree-map/events/src/app/app.module.ts +++ b/samples/charts/tree-map/events/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxButtonModule } from "igniteui-angular"; IgxButtonModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 25a657367..4af23ebf5 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 07e12d1ce..6b8de9771 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 8f8254a17..75be1a865 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/zoomslider/overview/src/app/app.module.ts b/samples/charts/zoomslider/overview/src/app/app.module.ts index 64da61aa5..22794a16a 100644 --- a/samples/charts/zoomslider/overview/src/app/app.module.ts +++ b/samples/charts/zoomslider/overview/src/app/app.module.ts @@ -36,7 +36,6 @@ import { SampleScatterStats } from "./SampleScatterStats"; IgxBubbleSeriesModule ], providers: [SampleScatterStats], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 862738902..70ebed7e7 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -21,8 +21,8 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-excel": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-workbooks/src/app/app.module.ts b/samples/excel/excel-library/operations-on-workbooks/src/app/app.module.ts index 1bbd128c7..8e2ee6719 100644 --- a/samples/excel/excel-library/operations-on-workbooks/src/app/app.module.ts +++ b/samples/excel/excel-library/operations-on-workbooks/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxExcelModule } from "igniteui-angular-excel"; IgxExcelModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index b1bd57ee7..cd9f64d7f 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -20,8 +20,8 @@ "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-excel": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-worksheets/src/app/app.module.ts b/samples/excel/excel-library/operations-on-worksheets/src/app/app.module.ts index 911fcd896..ffa2a25c8 100644 --- a/samples/excel/excel-library/operations-on-worksheets/src/app/app.module.ts +++ b/samples/excel/excel-library/operations-on-worksheets/src/app/app.module.ts @@ -20,7 +20,6 @@ import { IgxExcelModule } from "igniteui-angular-excel"; IgxExcelModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index b1bd57ee7..cd9f64d7f 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -20,8 +20,8 @@ "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-excel": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/overview/src/app/app.module.ts b/samples/excel/excel-library/overview/src/app/app.module.ts index 9147cd6ef..6c52fb732 100644 --- a/samples/excel/excel-library/overview/src/app/app.module.ts +++ b/samples/excel/excel-library/overview/src/app/app.module.ts @@ -16,7 +16,6 @@ import { IgxExcelModule } from "igniteui-angular-excel"; IgxExcelModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index b1bd57ee7..cd9f64d7f 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -20,8 +20,8 @@ "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-excel": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-cells/src/app/app.module.ts b/samples/excel/excel-library/working-with-cells/src/app/app.module.ts index 911fcd896..ffa2a25c8 100644 --- a/samples/excel/excel-library/working-with-cells/src/app/app.module.ts +++ b/samples/excel/excel-library/working-with-cells/src/app/app.module.ts @@ -20,7 +20,6 @@ import { IgxExcelModule } from "igniteui-angular-excel"; IgxExcelModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 7e54683e3..f7c5a28c4 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-excel": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-charts/src/app/app.module.ts b/samples/excel/excel-library/working-with-charts/src/app/app.module.ts index e377f24d2..2085be758 100644 --- a/samples/excel/excel-library/working-with-charts/src/app/app.module.ts +++ b/samples/excel/excel-library/working-with-charts/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxExcelModule } from "igniteui-angular-excel"; IgxExcelModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 3ee423ae4..861be2b53 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-excel": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-sparklines/src/app/app.module.ts b/samples/excel/excel-library/working-with-sparklines/src/app/app.module.ts index 15091b9e1..41ac64541 100644 --- a/samples/excel/excel-library/working-with-sparklines/src/app/app.module.ts +++ b/samples/excel/excel-library/working-with-sparklines/src/app/app.module.ts @@ -25,7 +25,6 @@ import { IgxExcelModule } from "igniteui-angular-excel"; IgxExcelModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index e52cd3355..1aa697b76 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -20,10 +20,10 @@ "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-excel": "16.1.0", - "igniteui-angular-spreadsheet": "16.1.0", - "igniteui-angular-spreadsheet-chart-adapter": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-tables/src/app/app.module.ts b/samples/excel/excel-library/working-with-tables/src/app/app.module.ts index d881ed32b..124e680e8 100644 --- a/samples/excel/excel-library/working-with-tables/src/app/app.module.ts +++ b/samples/excel/excel-library/working-with-tables/src/app/app.module.ts @@ -21,7 +21,6 @@ import { ExcelUtility } from "./ExcelUtility"; IgxExcelModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 0152cc3c3..dc8fcbdb8 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -20,9 +20,9 @@ "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-excel": "16.1.0", - "igniteui-angular-spreadsheet": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/activation/src/app/app.module.ts b/samples/excel/spreadsheet/activation/src/app/app.module.ts index 8959b6937..fdc6eea0f 100644 --- a/samples/excel/spreadsheet/activation/src/app/app.module.ts +++ b/samples/excel/spreadsheet/activation/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxSpreadsheetModule } from "igniteui-angular-spreadsheet"; IgxSpreadsheetModule ], providers: [ExcelUtility], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 2b97d8a03..8373c85bc 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -20,11 +20,11 @@ "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-excel": "16.1.0", - "igniteui-angular-spreadsheet": "16.1.0", - "igniteui-angular-spreadsheet-chart-adapter": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-chart/src/app/app.module.ts b/samples/excel/spreadsheet/adapter-chart/src/app/app.module.ts index 463851008..c957dfa1d 100644 --- a/samples/excel/spreadsheet/adapter-chart/src/app/app.module.ts +++ b/samples/excel/spreadsheet/adapter-chart/src/app/app.module.ts @@ -25,7 +25,6 @@ import { IgxSpreadsheetChartAdapterModule } from "igniteui-angular-spreadsheet-c IgxSpreadsheetChartAdapterModule ], providers: [ExcelUtility], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index d91f509e1..a98ded73a 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -20,11 +20,11 @@ "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-excel": "16.1.0", - "igniteui-angular-spreadsheet": "16.1.0", - "igniteui-angular-spreadsheet-chart-adapter": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-combo/src/app/app.module.ts b/samples/excel/spreadsheet/adapter-combo/src/app/app.module.ts index 463851008..c957dfa1d 100644 --- a/samples/excel/spreadsheet/adapter-combo/src/app/app.module.ts +++ b/samples/excel/spreadsheet/adapter-combo/src/app/app.module.ts @@ -25,7 +25,6 @@ import { IgxSpreadsheetChartAdapterModule } from "igniteui-angular-spreadsheet-c IgxSpreadsheetChartAdapterModule ], providers: [ExcelUtility], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index 6ef540c9c..a0fe8e359 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -20,9 +20,9 @@ "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-excel": "16.1.0", - "igniteui-angular-spreadsheet": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/clipboard/src/app/app.module.ts b/samples/excel/spreadsheet/clipboard/src/app/app.module.ts index 8959b6937..fdc6eea0f 100644 --- a/samples/excel/spreadsheet/clipboard/src/app/app.module.ts +++ b/samples/excel/spreadsheet/clipboard/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxSpreadsheetModule } from "igniteui-angular-spreadsheet"; IgxSpreadsheetModule ], providers: [ExcelUtility], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 6ef540c9c..a0fe8e359 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -20,9 +20,9 @@ "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-excel": "16.1.0", - "igniteui-angular-spreadsheet": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/commands/src/app/app.module.ts b/samples/excel/spreadsheet/commands/src/app/app.module.ts index 8959b6937..fdc6eea0f 100644 --- a/samples/excel/spreadsheet/commands/src/app/app.module.ts +++ b/samples/excel/spreadsheet/commands/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxSpreadsheetModule } from "igniteui-angular-spreadsheet"; IgxSpreadsheetModule ], providers: [ExcelUtility], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index 6ef540c9c..a0fe8e359 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -20,9 +20,9 @@ "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-excel": "16.1.0", - "igniteui-angular-spreadsheet": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/conditional-formatting/src/app/app.module.ts b/samples/excel/spreadsheet/conditional-formatting/src/app/app.module.ts index 8959b6937..fdc6eea0f 100644 --- a/samples/excel/spreadsheet/conditional-formatting/src/app/app.module.ts +++ b/samples/excel/spreadsheet/conditional-formatting/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxSpreadsheetModule } from "igniteui-angular-spreadsheet"; IgxSpreadsheetModule ], providers: [ExcelUtility], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 6ef540c9c..a0fe8e359 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -20,9 +20,9 @@ "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-excel": "16.1.0", - "igniteui-angular-spreadsheet": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/config-options/src/app/app.module.ts b/samples/excel/spreadsheet/config-options/src/app/app.module.ts index 8959b6937..fdc6eea0f 100644 --- a/samples/excel/spreadsheet/config-options/src/app/app.module.ts +++ b/samples/excel/spreadsheet/config-options/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxSpreadsheetModule } from "igniteui-angular-spreadsheet"; IgxSpreadsheetModule ], providers: [ExcelUtility], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 6ef540c9c..a0fe8e359 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -20,9 +20,9 @@ "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-excel": "16.1.0", - "igniteui-angular-spreadsheet": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/data-validation/src/app/app.module.ts b/samples/excel/spreadsheet/data-validation/src/app/app.module.ts index 1bc8c9ede..16a60280a 100644 --- a/samples/excel/spreadsheet/data-validation/src/app/app.module.ts +++ b/samples/excel/spreadsheet/data-validation/src/app/app.module.ts @@ -22,7 +22,6 @@ import { IgxSpreadsheetModule } from "igniteui-angular-spreadsheet"; IgxSpreadsheetModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 0152cc3c3..dc8fcbdb8 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -20,9 +20,9 @@ "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-excel": "16.1.0", - "igniteui-angular-spreadsheet": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/hyperlinks/src/app/app.module.ts b/samples/excel/spreadsheet/hyperlinks/src/app/app.module.ts index 8959b6937..fdc6eea0f 100644 --- a/samples/excel/spreadsheet/hyperlinks/src/app/app.module.ts +++ b/samples/excel/spreadsheet/hyperlinks/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxSpreadsheetModule } from "igniteui-angular-spreadsheet"; IgxSpreadsheetModule ], providers: [ExcelUtility], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index 0152cc3c3..dc8fcbdb8 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -20,9 +20,9 @@ "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-excel": "16.1.0", - "igniteui-angular-spreadsheet": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/overview/src/app/app.module.ts b/samples/excel/spreadsheet/overview/src/app/app.module.ts index 8959b6937..fdc6eea0f 100644 --- a/samples/excel/spreadsheet/overview/src/app/app.module.ts +++ b/samples/excel/spreadsheet/overview/src/app/app.module.ts @@ -23,7 +23,6 @@ import { IgxSpreadsheetModule } from "igniteui-angular-spreadsheet"; IgxSpreadsheetModule ], providers: [ExcelUtility], - entryComponents: [], - schemas: [] +schemas: [] }) export class AppModule {} diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 2f21c43c5..7c7b539ed 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -19,8 +19,8 @@ "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/animation/src/app/app.module.ts b/samples/gauges/bullet-graph/animation/src/app/app.module.ts index 2e3e1ef7a..1d5183b7e 100644 --- a/samples/gauges/bullet-graph/animation/src/app/app.module.ts +++ b/samples/gauges/bullet-graph/animation/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxButtonModule } from "igniteui-angular"; IgxButtonModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/background/src/app/app.module.ts b/samples/gauges/bullet-graph/background/src/app/app.module.ts index ad34e38b7..5a475ba9e 100644 --- a/samples/gauges/bullet-graph/background/src/app/app.module.ts +++ b/samples/gauges/bullet-graph/background/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxBulletGraphModule } from "igniteui-angular-gauges"; IgxBulletGraphModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/labels/src/app/app.module.ts b/samples/gauges/bullet-graph/labels/src/app/app.module.ts index ad34e38b7..5a475ba9e 100644 --- a/samples/gauges/bullet-graph/labels/src/app/app.module.ts +++ b/samples/gauges/bullet-graph/labels/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxBulletGraphModule } from "igniteui-angular-gauges"; IgxBulletGraphModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/measures/src/app/app.module.ts b/samples/gauges/bullet-graph/measures/src/app/app.module.ts index ad34e38b7..5a475ba9e 100644 --- a/samples/gauges/bullet-graph/measures/src/app/app.module.ts +++ b/samples/gauges/bullet-graph/measures/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxBulletGraphModule } from "igniteui-angular-gauges"; IgxBulletGraphModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/ranges/src/app/app.module.ts b/samples/gauges/bullet-graph/ranges/src/app/app.module.ts index ad34e38b7..5a475ba9e 100644 --- a/samples/gauges/bullet-graph/ranges/src/app/app.module.ts +++ b/samples/gauges/bullet-graph/ranges/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxBulletGraphModule } from "igniteui-angular-gauges"; IgxBulletGraphModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/scale/src/app/app.module.ts b/samples/gauges/bullet-graph/scale/src/app/app.module.ts index ad34e38b7..5a475ba9e 100644 --- a/samples/gauges/bullet-graph/scale/src/app/app.module.ts +++ b/samples/gauges/bullet-graph/scale/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxBulletGraphModule } from "igniteui-angular-gauges"; IgxBulletGraphModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/tickmarks/src/app/app.module.ts b/samples/gauges/bullet-graph/tickmarks/src/app/app.module.ts index ad34e38b7..5a475ba9e 100644 --- a/samples/gauges/bullet-graph/tickmarks/src/app/app.module.ts +++ b/samples/gauges/bullet-graph/tickmarks/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxBulletGraphModule } from "igniteui-angular-gauges"; IgxBulletGraphModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 2f21c43c5..7c7b539ed 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/animation/src/app/app.module.ts b/samples/gauges/linear-gauge/animation/src/app/app.module.ts index 829cdf500..a5e80a545 100644 --- a/samples/gauges/linear-gauge/animation/src/app/app.module.ts +++ b/samples/gauges/linear-gauge/animation/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxButtonModule } from "igniteui-angular"; IgxButtonModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/backing/src/app/app.module.ts b/samples/gauges/linear-gauge/backing/src/app/app.module.ts index 74472565b..fa0236237 100644 --- a/samples/gauges/linear-gauge/backing/src/app/app.module.ts +++ b/samples/gauges/linear-gauge/backing/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxLinearGaugeModule } from "igniteui-angular-gauges"; IgxLinearGaugeModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/labels/src/app/app.module.ts b/samples/gauges/linear-gauge/labels/src/app/app.module.ts index 74472565b..fa0236237 100644 --- a/samples/gauges/linear-gauge/labels/src/app/app.module.ts +++ b/samples/gauges/linear-gauge/labels/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxLinearGaugeModule } from "igniteui-angular-gauges"; IgxLinearGaugeModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/needle/src/app/app.module.ts b/samples/gauges/linear-gauge/needle/src/app/app.module.ts index 74472565b..fa0236237 100644 --- a/samples/gauges/linear-gauge/needle/src/app/app.module.ts +++ b/samples/gauges/linear-gauge/needle/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxLinearGaugeModule } from "igniteui-angular-gauges"; IgxLinearGaugeModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/ranges/src/app/app.module.ts b/samples/gauges/linear-gauge/ranges/src/app/app.module.ts index 74472565b..fa0236237 100644 --- a/samples/gauges/linear-gauge/ranges/src/app/app.module.ts +++ b/samples/gauges/linear-gauge/ranges/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxLinearGaugeModule } from "igniteui-angular-gauges"; IgxLinearGaugeModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/scale/src/app/app.module.ts b/samples/gauges/linear-gauge/scale/src/app/app.module.ts index 74472565b..fa0236237 100644 --- a/samples/gauges/linear-gauge/scale/src/app/app.module.ts +++ b/samples/gauges/linear-gauge/scale/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxLinearGaugeModule } from "igniteui-angular-gauges"; IgxLinearGaugeModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/tickmarks/src/app/app.module.ts b/samples/gauges/linear-gauge/tickmarks/src/app/app.module.ts index 74472565b..fa0236237 100644 --- a/samples/gauges/linear-gauge/tickmarks/src/app/app.module.ts +++ b/samples/gauges/linear-gauge/tickmarks/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxLinearGaugeModule } from "igniteui-angular-gauges"; IgxLinearGaugeModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 2f21c43c5..7c7b539ed 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/animation/src/app/app.module.ts b/samples/gauges/radial-gauge/animation/src/app/app.module.ts index e1233680b..f25aef69b 100644 --- a/samples/gauges/radial-gauge/animation/src/app/app.module.ts +++ b/samples/gauges/radial-gauge/animation/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxButtonModule } from "igniteui-angular"; IgxButtonModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/backing/src/app/app.module.ts b/samples/gauges/radial-gauge/backing/src/app/app.module.ts index 5688d7ace..475cc318f 100644 --- a/samples/gauges/radial-gauge/backing/src/app/app.module.ts +++ b/samples/gauges/radial-gauge/backing/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxRadialGaugeModule } from "igniteui-angular-gauges"; IgxRadialGaugeModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/labels/src/app/app.module.ts b/samples/gauges/radial-gauge/labels/src/app/app.module.ts index 5688d7ace..475cc318f 100644 --- a/samples/gauges/radial-gauge/labels/src/app/app.module.ts +++ b/samples/gauges/radial-gauge/labels/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxRadialGaugeModule } from "igniteui-angular-gauges"; IgxRadialGaugeModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/needle/src/app/app.module.ts b/samples/gauges/radial-gauge/needle/src/app/app.module.ts index 5688d7ace..475cc318f 100644 --- a/samples/gauges/radial-gauge/needle/src/app/app.module.ts +++ b/samples/gauges/radial-gauge/needle/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxRadialGaugeModule } from "igniteui-angular-gauges"; IgxRadialGaugeModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/ranges/src/app/app.module.ts b/samples/gauges/radial-gauge/ranges/src/app/app.module.ts index 5688d7ace..475cc318f 100644 --- a/samples/gauges/radial-gauge/ranges/src/app/app.module.ts +++ b/samples/gauges/radial-gauge/ranges/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxRadialGaugeModule } from "igniteui-angular-gauges"; IgxRadialGaugeModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/scale/src/app/app.module.ts b/samples/gauges/radial-gauge/scale/src/app/app.module.ts index 5688d7ace..475cc318f 100644 --- a/samples/gauges/radial-gauge/scale/src/app/app.module.ts +++ b/samples/gauges/radial-gauge/scale/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxRadialGaugeModule } from "igniteui-angular-gauges"; IgxRadialGaugeModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index d32c26900..2cc863b40 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-gauges": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/tickmarks/src/app/app.module.ts b/samples/gauges/radial-gauge/tickmarks/src/app/app.module.ts index 5688d7ace..475cc318f 100644 --- a/samples/gauges/radial-gauge/tickmarks/src/app/app.module.ts +++ b/samples/gauges/radial-gauge/tickmarks/src/app/app.module.ts @@ -21,7 +21,6 @@ import { IgxRadialGaugeModule } from "igniteui-angular-gauges"; IgxRadialGaugeModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-csv/src/app/app.module.ts b/samples/maps/geo-map/binding-data-csv/src/app/app.module.ts index b8a079e9f..9b61e92db 100644 --- a/samples/maps/geo-map/binding-data-csv/src/app/app.module.ts +++ b/samples/maps/geo-map/binding-data-csv/src/app/app.module.ts @@ -22,7 +22,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-json-points/src/app/app.module.ts b/samples/maps/geo-map/binding-data-json-points/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/binding-data-json-points/src/app/app.module.ts +++ b/samples/maps/geo-map/binding-data-json-points/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-model/src/app/app.module.ts b/samples/maps/geo-map/binding-data-model/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/binding-data-model/src/app/app.module.ts +++ b/samples/maps/geo-map/binding-data-model/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-shapes/src/app/app.module.ts b/samples/maps/geo-map/binding-multiple-shapes/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/src/app/app.module.ts +++ b/samples/maps/geo-map/binding-multiple-shapes/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-sources/src/app/app.module.ts b/samples/maps/geo-map/binding-multiple-sources/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/binding-multiple-sources/src/app/app.module.ts +++ b/samples/maps/geo-map/binding-multiple-sources/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-points/src/app/app.module.ts b/samples/maps/geo-map/binding-shp-points/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/binding-shp-points/src/app/app.module.ts +++ b/samples/maps/geo-map/binding-shp-points/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polygons/src/app/app.module.ts b/samples/maps/geo-map/binding-shp-polygons/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/binding-shp-polygons/src/app/app.module.ts +++ b/samples/maps/geo-map/binding-shp-polygons/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polylines/src/app/app.module.ts b/samples/maps/geo-map/binding-shp-polylines/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/binding-shp-polylines/src/app/app.module.ts +++ b/samples/maps/geo-map/binding-shp-polylines/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/custom-tooltips/src/app/app.module.ts b/samples/maps/geo-map/custom-tooltips/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/custom-tooltips/src/app/app.module.ts +++ b/samples/maps/geo-map/custom-tooltips/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-bing-imagery/src/app/app.module.ts b/samples/maps/geo-map/display-bing-imagery/src/app/app.module.ts index f0139450a..9180741ca 100644 --- a/samples/maps/geo-map/display-bing-imagery/src/app/app.module.ts +++ b/samples/maps/geo-map/display-bing-imagery/src/app/app.module.ts @@ -22,7 +22,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-esri-imagery/src/app/app.module.ts b/samples/maps/geo-map/display-esri-imagery/src/app/app.module.ts index f0139450a..9180741ca 100644 --- a/samples/maps/geo-map/display-esri-imagery/src/app/app.module.ts +++ b/samples/maps/geo-map/display-esri-imagery/src/app/app.module.ts @@ -22,7 +22,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-heat-imagery/src/app/app.module.ts b/samples/maps/geo-map/display-heat-imagery/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/display-heat-imagery/src/app/app.module.ts +++ b/samples/maps/geo-map/display-heat-imagery/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-osm-imagery/src/app/app.module.ts b/samples/maps/geo-map/display-osm-imagery/src/app/app.module.ts index f0139450a..9180741ca 100644 --- a/samples/maps/geo-map/display-osm-imagery/src/app/app.module.ts +++ b/samples/maps/geo-map/display-osm-imagery/src/app/app.module.ts @@ -22,7 +22,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-layouts/src/app/app.module.ts b/samples/maps/geo-map/marker-layouts/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/marker-layouts/src/app/app.module.ts +++ b/samples/maps/geo-map/marker-layouts/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-template/src/app/app.module.ts b/samples/maps/geo-map/marker-template/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/marker-template/src/app/app.module.ts +++ b/samples/maps/geo-map/marker-template/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-type/src/app/app.module.ts b/samples/maps/geo-map/marker-type/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/marker-type/src/app/app.module.ts +++ b/samples/maps/geo-map/marker-type/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/navigation/src/app/app.module.ts b/samples/maps/geo-map/navigation/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/navigation/src/app/app.module.ts +++ b/samples/maps/geo-map/navigation/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/overview/src/app/app.module.ts b/samples/maps/geo-map/overview/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/overview/src/app/app.module.ts +++ b/samples/maps/geo-map/overview/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/shape-styling/src/app/app.module.ts b/samples/maps/geo-map/shape-styling/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/shape-styling/src/app/app.module.ts +++ b/samples/maps/geo-map/shape-styling/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/triangulating-data/src/app/app.module.ts b/samples/maps/geo-map/triangulating-data/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/triangulating-data/src/app/app.module.ts +++ b/samples/maps/geo-map/triangulating-data/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-area-series/src/app/app.module.ts b/samples/maps/geo-map/type-scatter-area-series/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/type-scatter-area-series/src/app/app.module.ts +++ b/samples/maps/geo-map/type-scatter-area-series/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/app/app.module.ts b/samples/maps/geo-map/type-scatter-bubble-series/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/src/app/app.module.ts +++ b/samples/maps/geo-map/type-scatter-bubble-series/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-contour-series/src/app/app.module.ts b/samples/maps/geo-map/type-scatter-contour-series/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/src/app/app.module.ts +++ b/samples/maps/geo-map/type-scatter-contour-series/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-density-series/src/app/app.module.ts b/samples/maps/geo-map/type-scatter-density-series/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/type-scatter-density-series/src/app/app.module.ts +++ b/samples/maps/geo-map/type-scatter-density-series/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/app/app.module.ts b/samples/maps/geo-map/type-scatter-symbol-series/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/src/app/app.module.ts +++ b/samples/maps/geo-map/type-scatter-symbol-series/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polygon-series/src/app/app.module.ts b/samples/maps/geo-map/type-shape-polygon-series/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/src/app/app.module.ts +++ b/samples/maps/geo-map/type-shape-polygon-series/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 0006421e8..6d887b173 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", - "igniteui-angular-maps": "16.1.0", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polyline-series/src/app/app.module.ts b/samples/maps/geo-map/type-shape-polyline-series/src/app/app.module.ts index e5907879f..888fd1b03 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/src/app/app.module.ts +++ b/samples/maps/geo-map/type-shape-polyline-series/src/app/app.module.ts @@ -24,7 +24,6 @@ import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; IgxDataChartInteractivityModule ], providers: [], - entryComponents: [], schemas: [] }) export class AppModule {} From 8d716be89c488e4032836956e6e9375ebc018b7b Mon Sep 17 00:00:00 2001 From: agoldenbaum Date: Tue, 19 Sep 2023 15:57:59 -0400 Subject: [PATCH 004/154] Custom chart samples for Angular --- .../custom-drawing-annotations/.stackblitzrc | 1 + .../custom-drawing-annotations/ReadMe.md | 50 ++++ .../custom-drawing-annotations/angular.json | 106 ++++++++ .../custom-drawing-annotations/package.json | 46 ++++ .../sandbox.config.json | 5 + .../src/app/StocksHistory.ts | 111 +++++++++ .../src/app/app.component.html | 59 +++++ .../src/app/app.component.scss | 3 + .../src/app/app.component.ts | 226 ++++++++++++++++++ .../src/app/app.module.ts | 39 +++ .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 + .../src/config/tsconfig.base.json | 21 ++ .../src/config/tsconfig.spec.json | 19 ++ .../src/config/tsconfig.worker.json | 14 ++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 ++ .../custom-drawing-annotations/src/index.html | 22 ++ .../custom-drawing-annotations/src/main.ts | 15 ++ .../src/polyfills.ts | 65 +++++ .../src/styles.scss | 9 + .../src/typings.d.ts | 5 + .../custom-drawing-annotations/tsconfig.json | 20 ++ .../custom-editing-data/.stackblitzrc | 1 + .../data-chart/custom-editing-data/ReadMe.md | 50 ++++ .../custom-editing-data/angular.json | 106 ++++++++ .../custom-editing-data/package.json | 44 ++++ .../custom-editing-data/sandbox.config.json | 5 + .../src/app/EditableDataSource.ts | 48 ++++ .../src/app/app.component.html | 49 ++++ .../src/app/app.component.scss | 3 + .../src/app/app.component.ts | 150 ++++++++++++ .../custom-editing-data/src/app/app.module.ts | 35 +++ .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 + .../src/config/tsconfig.base.json | 21 ++ .../src/config/tsconfig.spec.json | 19 ++ .../src/config/tsconfig.worker.json | 14 ++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 ++ .../custom-editing-data/src/index.html | 22 ++ .../custom-editing-data/src/main.ts | 15 ++ .../custom-editing-data/src/polyfills.ts | 65 +++++ .../custom-editing-data/src/styles.scss | 9 + .../custom-editing-data/src/typings.d.ts | 5 + .../custom-editing-data/tsconfig.json | 20 ++ 46 files changed, 1591 insertions(+) create mode 100644 samples/charts/data-chart/custom-drawing-annotations/.stackblitzrc create mode 100644 samples/charts/data-chart/custom-drawing-annotations/ReadMe.md create mode 100644 samples/charts/data-chart/custom-drawing-annotations/angular.json create mode 100644 samples/charts/data-chart/custom-drawing-annotations/package.json create mode 100644 samples/charts/data-chart/custom-drawing-annotations/sandbox.config.json create mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/app/StocksHistory.ts create mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.html create mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.scss create mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.ts create mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/app/app.module.ts create mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.app.json create mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.base.json create mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.spec.json create mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/environments/environment.ts create mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/index.html create mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/main.ts create mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/polyfills.ts create mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/styles.scss create mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/typings.d.ts create mode 100644 samples/charts/data-chart/custom-drawing-annotations/tsconfig.json create mode 100644 samples/charts/data-chart/custom-editing-data/.stackblitzrc create mode 100644 samples/charts/data-chart/custom-editing-data/ReadMe.md create mode 100644 samples/charts/data-chart/custom-editing-data/angular.json create mode 100644 samples/charts/data-chart/custom-editing-data/package.json create mode 100644 samples/charts/data-chart/custom-editing-data/sandbox.config.json create mode 100644 samples/charts/data-chart/custom-editing-data/src/app/EditableDataSource.ts create mode 100644 samples/charts/data-chart/custom-editing-data/src/app/app.component.html create mode 100644 samples/charts/data-chart/custom-editing-data/src/app/app.component.scss create mode 100644 samples/charts/data-chart/custom-editing-data/src/app/app.component.ts create mode 100644 samples/charts/data-chart/custom-editing-data/src/app/app.module.ts create mode 100644 samples/charts/data-chart/custom-editing-data/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/data-chart/custom-editing-data/src/config/tsconfig.app.json create mode 100644 samples/charts/data-chart/custom-editing-data/src/config/tsconfig.base.json create mode 100644 samples/charts/data-chart/custom-editing-data/src/config/tsconfig.spec.json create mode 100644 samples/charts/data-chart/custom-editing-data/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/custom-editing-data/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/custom-editing-data/src/environments/environment.ts create mode 100644 samples/charts/data-chart/custom-editing-data/src/index.html create mode 100644 samples/charts/data-chart/custom-editing-data/src/main.ts create mode 100644 samples/charts/data-chart/custom-editing-data/src/polyfills.ts create mode 100644 samples/charts/data-chart/custom-editing-data/src/styles.scss create mode 100644 samples/charts/data-chart/custom-editing-data/src/typings.d.ts create mode 100644 samples/charts/data-chart/custom-editing-data/tsconfig.json diff --git a/samples/charts/data-chart/custom-drawing-annotations/.stackblitzrc b/samples/charts/data-chart/custom-drawing-annotations/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/data-chart/custom-drawing-annotations/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/data-chart/custom-drawing-annotations/ReadMe.md b/samples/charts/data-chart/custom-drawing-annotations/ReadMe.md new file mode 100644 index 000000000..56b39fb14 --- /dev/null +++ b/samples/charts/data-chart/custom-drawing-annotations/ReadMe.md @@ -0,0 +1,50 @@ + + + +This folder contains Angular application with example of Chart Overview feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +cd ./igniteui-angular-examples +cd ../samples/charts/data-chart/chart-overview +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/custom-drawing-annotations/angular.json b/samples/charts/data-chart/custom-drawing-annotations/angular.json new file mode 100644 index 000000000..ea31d8779 --- /dev/null +++ b/samples/charts/data-chart/custom-drawing-annotations/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "browserTarget": "demo:build" + }, + "configurations": { + "production": { + "browserTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "browserTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "styleext": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + }, + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json new file mode 100644 index 000000000..c4415679f --- /dev/null +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -0,0 +1,46 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "16.0.1", + "@angular/common": "16.0.1", + "@angular/compiler": "16.0.1", + "@angular/core": "16.0.1", + "@angular/forms": "16.0.1", + "@angular/platform-browser": "16.0.1", + "@angular/platform-browser-dynamic": "16.0.1", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "2.6.2", + "hammerjs": "2.0.8", + "igniteui-angular-layouts": "16.1.0", + "igniteui-angular-inputs": "16.1.0", + "igniteui-angular-charts": "16.1.0", + "igniteui-angular-core": "16.1.0", + "intl": "1.2.5", + "jszip": "3.7.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "0.13.0" + }, + "devDependencies": { + "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "16.0.1", + "@angular/compiler-cli": "16.0.1", + "@angular/language-service": "16.0.1", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "9.1.1", + "tslint": "~6.1.3", + "typescript": "5.0.4" + } +} diff --git a/samples/charts/data-chart/custom-drawing-annotations/sandbox.config.json b/samples/charts/data-chart/custom-drawing-annotations/sandbox.config.json new file mode 100644 index 000000000..00acba0c1 --- /dev/null +++ b/samples/charts/data-chart/custom-drawing-annotations/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/app/StocksHistory.ts b/samples/charts/data-chart/custom-drawing-annotations/src/app/StocksHistory.ts new file mode 100644 index 000000000..f04723d9b --- /dev/null +++ b/samples/charts/data-chart/custom-drawing-annotations/src/app/StocksHistory.ts @@ -0,0 +1,111 @@ + + +export class StocksHistory { + /** gets stock OHLC prices for multiple stocks */ + + public static async getMultipleStocks(): Promise { + // getting prices of multiples stocks asynchronously + const dataSources: any[] = [ + //await this.getAmazonStock(), + await this.getGoogleStock(), + await this.getMicrosoftStock(), + //await this.getTeslaStock() + ]; + + return new Promise((resolve, reject) => { + resolve(dataSources); + }); + } + + /** gets Amazon stock OHLC prices from a .JSON file */ + public static async getAmazonStock(): Promise { + let url = "https://static.infragistics.com/xplatform/data/stocks/stockAmazon.json"; + let response = await fetch(url); + let jsonData = await response.json(); + let stockData = this.convertData(jsonData); + // setting data intent for Series Title, e.g. FinancialChart usage + (stockData as any).__dataIntents = { + close: ["SeriesTitle/Amazon"] + }; + // console.log("fetchAmazonStock: ", stockData.length); + + return new Promise((resolve, reject) => { + resolve(stockData); + }); + } + + /** gets Tesla stock OHLC prices from a .JSON file */ + public static async getTeslaStock(): Promise { + let url = "https://static.infragistics.com/xplatform/data/stocks/stockTesla.json"; + let response = await fetch(url); + let jsonData = await response.json(); + let stockData = this.convertData(jsonData); + // setting data intent for Series Title, e.g. FinancialChart usage + (stockData as any).__dataIntents = { + close: ["SeriesTitle/Tesla"] + }; + return new Promise((resolve, reject) => { + resolve(stockData); + }); + } + + /** gets Microsoft stock OHLC prices from a .JSON file */ + public static async getMicrosoftStock(): Promise { + let url = "https://static.infragistics.com/xplatform/data/stocks/stockMicrosoft.json"; + let response = await fetch(url); + let jsonData = await response.json(); + let stockData = this.convertData(jsonData); + // setting data intent for Series Title, e.g. FinancialChart usage + (stockData as any).__dataIntents = { + close: ["SeriesTitle/Microsoft"] + }; + return new Promise((resolve, reject) => { + resolve(stockData); + }); + } + + /** gets Google stock OHLC prices from a .JSON file */ + public static async getGoogleStock(): Promise { + let url = "https://static.infragistics.com/xplatform/data/stocks/stockGoogle.json"; + let response = await fetch(url); + let jsonData = await response.json(); + let stockData = this.convertData(jsonData); + // setting data intent for Series Title, e.g. FinancialChart usage + (stockData as any).__dataIntents = { + close: ["SeriesTitle/Google"] + }; + return new Promise((resolve, reject) => { + resolve(stockData); + }); + } + + public static convertData(jsonData: any[]): StockItem[] { + let stockItems: StockItem[] = []; + + for (let json of jsonData) { + let parts = json.date.split("-"); // "2020-01-01" + let item = new StockItem(); + item.date = new Date(parts[0], parts[1], parts[2]); + item.open = json.open; + item.high = json.high; + item.low = json.low; + item.close = json.close; + item.volume = json.volume; + stockItems.push(item); + + } + + return stockItems; + } +} + +export class StockItem { + public open?: number; + public close?: number; + public high?: number; + public low?: number; + public volume?: number; + + public date?: Date; + +} diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.html b/samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.html new file mode 100644 index 000000000..484c2fa2c --- /dev/null +++ b/samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.html @@ -0,0 +1,59 @@ +
+
+ Chart with Custom Drawing Annotations +
+
+ +
+
+ + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.scss b/samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.ts b/samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.ts new file mode 100644 index 000000000..bb7372737 --- /dev/null +++ b/samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.ts @@ -0,0 +1,226 @@ +import { Component, ViewChild } from "@angular/core"; +import { IgxDataChartComponent, IgxLegendComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxPlotAreaMouseButtonEventArgs, IgxPlotAreaMouseEventArgs } from "igniteui-angular-charts"; +import { IgPoint } from "igniteui-angular-core"; +import { StocksHistory } from "./StocksHistory"; +import { IgxToolCommandEventArgs, IgxToolActionLabelComponent } from "igniteui-angular-layouts"; + +@Component({ + providers: [ StocksHistory ], + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html" +}) +export class AppComponent { + + @ViewChild("chart", { static: true }) + public chart: IgxDataChartComponent; + @ViewChild("legend", { static: true }) + public legend: IgxLegendComponent; + @ViewChild("xAxis", { static: true }) + public xAxis: IgxNumericXAxisComponent; + @ViewChild("yAxis", { static: true }) + public yAxis: IgxNumericYAxisComponent; + @ViewChild("drawRangeAreaToolAction", { static: true}) + public drawRangeAreaToolAction: IgxToolActionLabelComponent; + @ViewChild("drawSlopeLineToolAction", { static: true}) + public drawSlopeLineToolAction: IgxToolActionLabelComponent; + @ViewChild("drawHorizontalLineToolAction", { static: true}) + public drawHorizontalLineToolAction: IgxToolActionLabelComponent; + + public data: any[]; + public horizontalLineData: any[]; + public slopeLineData: any[]; + public rangeAreaData: any[]; + + private axisMinValue: number; + private axisMaxValue: number; + + private chartMouseDownLocation: IgPoint; + private chartMouseMoveLocation: IgPoint; + + private drawMode: string; + + private isAxisRangeInitialized: boolean; + private isDrawingHorizontalLine: boolean; + private isDrawingRangeArea: boolean; + private isDrawingSlopeLine: boolean; + + constructor() { + + StocksHistory.getMicrosoftStock().then((stocks: any[]) => { + this.data = stocks; + this.plotHorizontalLine(38, true); + this.plotRangeArea(50, 60, true); + this.plotSlopeLine({x: 0, y:45}, {x: this.data.length - 1, y: 80}, true); + }); + + this.onChartMouseLeftButtonDown = this.onChartMouseLeftButtonDown.bind(this); + this.onChartMouseLeftButtonUp = this.onChartMouseLeftButtonUp.bind(this); + this.onChartMouseOver = this.onChartMouseOver.bind(this); + this.onToolbarCommandChanged = this.onToolbarCommandChanged.bind(this); + this.initializeAxisRange = this.initializeAxisRange.bind(this); + } + + public onChartMouseLeftButtonDown(e: IgxPlotAreaMouseButtonEventArgs){ + this.initializeAxisRange(); + if (!this.isAxisRangeInitialized) return; + + if (this.drawMode == "DrawHorizontalLine") this.isDrawingHorizontalLine = true; + if (this.drawMode == "DrawSlopeLine") this.isDrawingSlopeLine = true; + if (this.drawMode == "DrawRangeArea") this.isDrawingRangeArea = true; + + this.chartMouseDownLocation = this.getDataLocation(e.plotAreaPosition); + this.chartMouseMoveLocation = this.getDataLocation(e.plotAreaPosition); + + this.plotRangeArea(this.chartMouseDownLocation.y, this.chartMouseMoveLocation.y, false); + this.plotSlopeLine(this.chartMouseDownLocation, this.chartMouseMoveLocation, false); + this.plotHorizontalLine(this.chartMouseMoveLocation.y, false); + } + + public onChartMouseOver(e: IgxPlotAreaMouseEventArgs){ + if (!this.isAxisRangeInitialized) return; + + this.chartMouseMoveLocation = this.getDataLocation(e.plotAreaPosition); + + this.plotRangeArea(this.chartMouseDownLocation.y, this.chartMouseMoveLocation.y, false); + this.plotSlopeLine(this.chartMouseDownLocation, this.chartMouseMoveLocation, false); + this.plotHorizontalLine(this.chartMouseMoveLocation.y, false); + } + + public onChartMouseLeftButtonUp(e: IgxPlotAreaMouseButtonEventArgs){ + this.isDrawingSlopeLine = false; + this.isDrawingRangeArea = false; + this.isDrawingHorizontalLine = false; + } + + public initializeAxisRange(){ + if (this.isAxisRangeInitialized) return; + this.isAxisRangeInitialized = true; + + this.axisMaxValue = this.yAxis.actualMaximumValue; + this.axisMinValue = this.yAxis.actualMinimumValue; + + this.yAxis.maximumValue = this.axisMaxValue; + this.yAxis.minimumValue = this.axisMinValue; + } + + public getDataLocation(chartPixel: IgPoint): IgPoint + { + var x = this.xAxis.unscaleValue(chartPixel.x); + var y = this.yAxis.unscaleValue(chartPixel.y); + + return {x: x, y: y}; + } + + public plotHorizontalLine(value: number, forceRender: boolean){ + if(!forceRender){ + if(!this.isAxisRangeInitialized) return; + if(!this.isDrawingHorizontalLine) return; + } + + let dataPoints: any[] = []; + + for(let i=0; i 0.01){ + slope = (end.y - start.y) / (end.x - start.x); + offset = end.y - (end.x * slope); + } + + let dataPoints: any[] = []; + + for(let i=0; i + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/main.ts b/samples/charts/data-chart/custom-drawing-annotations/src/main.ts new file mode 100644 index 000000000..8b0ce4164 --- /dev/null +++ b/samples/charts/data-chart/custom-drawing-annotations/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app/app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/polyfills.ts b/samples/charts/data-chart/custom-drawing-annotations/src/polyfills.ts new file mode 100644 index 000000000..4b0aeb31a --- /dev/null +++ b/samples/charts/data-chart/custom-drawing-annotations/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +//import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +//import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js/dist/zone"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +if (!Element.prototype.matches) { + Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +} + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/styles.scss b/samples/charts/data-chart/custom-drawing-annotations/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/custom-drawing-annotations/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/typings.d.ts b/samples/charts/data-chart/custom-drawing-annotations/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/custom-drawing-annotations/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/custom-drawing-annotations/tsconfig.json b/samples/charts/data-chart/custom-drawing-annotations/tsconfig.json new file mode 100644 index 000000000..6a01bab30 --- /dev/null +++ b/samples/charts/data-chart/custom-drawing-annotations/tsconfig.json @@ -0,0 +1,20 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/data-chart/custom-editing-data/.stackblitzrc b/samples/charts/data-chart/custom-editing-data/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/data-chart/custom-editing-data/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/data-chart/custom-editing-data/ReadMe.md b/samples/charts/data-chart/custom-editing-data/ReadMe.md new file mode 100644 index 000000000..56b39fb14 --- /dev/null +++ b/samples/charts/data-chart/custom-editing-data/ReadMe.md @@ -0,0 +1,50 @@ + + + +This folder contains Angular application with example of Chart Overview feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +cd ./igniteui-angular-examples +cd ../samples/charts/data-chart/chart-overview +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/custom-editing-data/angular.json b/samples/charts/data-chart/custom-editing-data/angular.json new file mode 100644 index 000000000..ea31d8779 --- /dev/null +++ b/samples/charts/data-chart/custom-editing-data/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "browserTarget": "demo:build" + }, + "configurations": { + "production": { + "browserTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "browserTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "styleext": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + }, + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json new file mode 100644 index 000000000..8f8254a17 --- /dev/null +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "16.0.1", + "@angular/common": "16.0.1", + "@angular/compiler": "16.0.1", + "@angular/core": "16.0.1", + "@angular/forms": "16.0.1", + "@angular/platform-browser": "16.0.1", + "@angular/platform-browser-dynamic": "16.0.1", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "2.6.2", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.0", + "igniteui-angular-core": "16.1.0", + "intl": "1.2.5", + "jszip": "3.7.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "0.13.0" + }, + "devDependencies": { + "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "16.0.1", + "@angular/compiler-cli": "16.0.1", + "@angular/language-service": "16.0.1", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "9.1.1", + "tslint": "~6.1.3", + "typescript": "5.0.4" + } +} diff --git a/samples/charts/data-chart/custom-editing-data/sandbox.config.json b/samples/charts/data-chart/custom-editing-data/sandbox.config.json new file mode 100644 index 000000000..00acba0c1 --- /dev/null +++ b/samples/charts/data-chart/custom-editing-data/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/data-chart/custom-editing-data/src/app/EditableDataSource.ts b/samples/charts/data-chart/custom-editing-data/src/app/EditableDataSource.ts new file mode 100644 index 000000000..ea002db96 --- /dev/null +++ b/samples/charts/data-chart/custom-editing-data/src/app/EditableDataSource.ts @@ -0,0 +1,48 @@ +export class EditableDataSource{ + public static getLineData(): any[]{ + var lineData: any[] = [ + { Category: "2010", DataValue: 20, EditingValue: null }, + { Category: "2011", DataValue: 40, EditingValue: null }, + { Category: "2012", DataValue: 30, EditingValue: null }, + { Category: "2013", DataValue: 50, EditingValue: null }, + { Category: "2014", DataValue: 40, EditingValue: null }, + { Category: "2015", DataValue: 60, EditingValue: null }, + { Category: "2016", DataValue: 30, EditingValue: null }, + { Category: "2017", DataValue: 50, EditingValue: null }, + { Category: "2018", DataValue: 40, EditingValue: null }, + { Category: "2019", DataValue: 70, EditingValue: null }, + { Category: "2020", DataValue: 40, EditingValue: null }, + { Category: "2021", DataValue: 60, EditingValue: null }, + { Category: "2022", DataValue: 50, EditingValue: null }, + { Category: "2023", DataValue: 70, EditingValue: null }, + { Category: "2024", DataValue: 60, EditingValue: null }, + { Category: "2025", DataValue: 80, EditingValue: null }, + { Category: "2026", DataValue: 70, EditingValue: null } + ]; + + return lineData; + } + + public static getScatterData(): any[] { + var scatterData: any[] = [ + { X: 10, Y: 20, EditingX: null, EditingY: null }, + { X: 11, Y: 40, EditingX: null, EditingY: null }, + { X: 12, Y: 30, EditingX: null, EditingY: null }, + { X: 13, Y: 50, EditingX: null, EditingY: null }, + { X: 14, Y: 40, EditingX: null, EditingY: null }, + { X: 15, Y: 60, EditingX: null, EditingY: null }, + { X: 16, Y: 30, EditingX: null, EditingY: null }, + { X: 17, Y: 50, EditingX: null, EditingY: null }, + { X: 18, Y: 40, EditingX: null, EditingY: null }, + { X: 19, Y: 70, EditingX: null, EditingY: null }, + { X: 20, Y: 40, EditingX: null, EditingY: null }, + { X: 21, Y: 60, EditingX: null, EditingY: null }, + { X: 22, Y: 50, EditingX: null, EditingY: null }, + { X: 23, Y: 70, EditingX: null, EditingY: null }, + { X: 24, Y: 60, EditingX: null, EditingY: null }, + { X: 25, Y: 80, EditingX: null, EditingY: null }, + { X: 26, Y: 70, EditingX: null, EditingY: null } + ]; + return scatterData; + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/custom-editing-data/src/app/app.component.html b/samples/charts/data-chart/custom-editing-data/src/app/app.component.html new file mode 100644 index 000000000..e99d517b1 --- /dev/null +++ b/samples/charts/data-chart/custom-editing-data/src/app/app.component.html @@ -0,0 +1,49 @@ +
+
+
+ Line Chart with Editable Values by Dragging Markers Up/Down Directions +
+ + + + + + + + + + + + + + + + +
+ Scatter Chart with Editable Values by Dragging Markers In All Directions +
+ + + + + + + + + + + + + + + +
+
\ No newline at end of file diff --git a/samples/charts/data-chart/custom-editing-data/src/app/app.component.scss b/samples/charts/data-chart/custom-editing-data/src/app/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/custom-editing-data/src/app/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/custom-editing-data/src/app/app.component.ts b/samples/charts/data-chart/custom-editing-data/src/app/app.component.ts new file mode 100644 index 000000000..45231821a --- /dev/null +++ b/samples/charts/data-chart/custom-editing-data/src/app/app.component.ts @@ -0,0 +1,150 @@ +import { Component, ViewChild } from "@angular/core"; +import { IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxLegendComponent, IgxDataChartMouseButtonEventArgs, IgxPlotAreaMouseButtonEventArgs, IgxPlotAreaMouseEventArgs } from "igniteui-angular-charts"; +import { EditableDataSource } from "./EditableDataSource"; + +@Component({ + providers: [ EditableDataSource ], + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html" +}) +export class AppComponent { + + @ViewChild("lineChart", { static: true }) + public lineChart: IgxDataChartComponent; + @ViewChild("scatterChart", { static: true }) + public scatterChart: IgxDataChartComponent; + @ViewChild("legend", { static: true }) + public legend: IgxLegendComponent; + @ViewChild("lineXAxis", { static: true }) + public lineXAxis: IgxNumericXAxisComponent; + @ViewChild("lineYAxis", { static: true }) + public lineYAxis: IgxNumericYAxisComponent; + @ViewChild("scatterXAxis", { static: true }) + public scatterXAxis: IgxNumericXAxisComponent; + @ViewChild("scatterYAxis", { static: true }) + public scatterYAxis: IgxNumericYAxisComponent; + + public lineData: any[]; + public scatterData: any[]; + + private lineSeriesEditingActive = false; + private lineSeriesEditingIndex = -1; + + private scatterLineEditingActive = false; + private scatterLineEditingIndex = -1; + + constructor() { + this.lineData = EditableDataSource.getLineData(); + this.scatterData = EditableDataSource.getScatterData(); + } + + public onLineChartMouseDown(e: IgxDataChartMouseButtonEventArgs){ + this.lineSeriesEditingActive = true; + this.lineSeriesEditingIndex = -1; + + var itemData = e.item; + + for(var i=0; i + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/custom-editing-data/src/main.ts b/samples/charts/data-chart/custom-editing-data/src/main.ts new file mode 100644 index 000000000..8b0ce4164 --- /dev/null +++ b/samples/charts/data-chart/custom-editing-data/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app/app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/custom-editing-data/src/polyfills.ts b/samples/charts/data-chart/custom-editing-data/src/polyfills.ts new file mode 100644 index 000000000..4b0aeb31a --- /dev/null +++ b/samples/charts/data-chart/custom-editing-data/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +//import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +//import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js/dist/zone"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +if (!Element.prototype.matches) { + Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +} + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/custom-editing-data/src/styles.scss b/samples/charts/data-chart/custom-editing-data/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/custom-editing-data/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/custom-editing-data/src/typings.d.ts b/samples/charts/data-chart/custom-editing-data/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/custom-editing-data/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/custom-editing-data/tsconfig.json b/samples/charts/data-chart/custom-editing-data/tsconfig.json new file mode 100644 index 000000000..6a01bab30 --- /dev/null +++ b/samples/charts/data-chart/custom-editing-data/tsconfig.json @@ -0,0 +1,20 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file From a7111a505cd7662ae7c6d8bbcb2cc860c59054da Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Wed, 20 Sep 2023 13:22:44 -0400 Subject: [PATCH 005/154] fixed package and gulp script --- browser/package.json | 1 - browser/scripts/browser.js | 59 ++++++++++++++++---------------------- 2 files changed, 25 insertions(+), 35 deletions(-) diff --git a/browser/package.json b/browser/package.json index 7be27cde3..656f70fec 100644 --- a/browser/package.json +++ b/browser/package.json @@ -41,7 +41,6 @@ "immediate": "3.2.3", "igniteui-angular": "16.0.7", "igniteui-theming": "1.4.14", - "igniteui-angular-charts": "16.1.0", "@infragistics/igniteui-angular-core": "23.2.18", "@infragistics/igniteui-angular-charts": "23.2.18", "@infragistics/igniteui-angular-excel": "23.2.18", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 9525a3f4c..2800eac3d 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1016,22 +1016,27 @@ function updateSamples(cb) { function updateIG(cb) { - // NOTE: change this array with new version of packages and optionally use "@infragistics/" proget prefix, e.g. - // "igniteui-angular-charts" instead of "igniteui-angular-charts" e.g. - // { name: "igniteui-angular-charts", version: "14.2.0" }, // proget - // { name: "igniteui-angular-charts", version: "14.1.0" }, // npm + // cleanup packages to speedup this gulp script + // del.sync("./samples/**/node_modules/**/*.*", {force:true}); + // del.sync("./samples/**/node_modules/**", {force:true}); + // del.sync("./samples/**/node_modules", {force:true}); + + // NOTE: change this array with new version of packages + // and optionally use "@infragistics/" proget prefix, e.g. + // { name: "@infragistics/igniteui-angular-charts", version: "23.2.18" }, // PROGET + // { name: "igniteui-angular-charts", version: "14.1.0" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { name: "igniteui-angular-core" , version: "23.2.18" }, - { name: "igniteui-angular-charts" , version: "23.2.18" }, - { name: "igniteui-angular-excel" , version: "23.2.18" }, - { name: "igniteui-angular-gauges" , version: "23.2.18" }, - { name: "igniteui-angular-inputs" , version: "23.2.18" }, - { name: "igniteui-angular-layouts" , version: "23.2.18" }, - { name: "igniteui-angular-maps" , version: "23.2.18" }, - { name: "igniteui-angular-spreadsheet-chart-adapter", version: "23.2.18" }, - { name: "igniteui-angular-spreadsheet" , version: "23.2.18" }, - { name: "igniteui-angular-datasources" , version: "23.2.18" }, + { name: "@infragistics/igniteui-angular-core" , version: "23.2.18" }, + { name: "@infragistics/igniteui-angular-charts" , version: "23.2.18" }, + { name: "@infragistics/igniteui-angular-excel" , version: "23.2.18" }, + { name: "@infragistics/igniteui-angular-gauges" , version: "23.2.18" }, + { name: "@infragistics/igniteui-angular-inputs" , version: "23.2.18" }, + { name: "@infragistics/igniteui-angular-layouts" , version: "23.2.18" }, + { name: "@infragistics/igniteui-angular-maps" , version: "23.2.18" }, + { name: "@infragistics/igniteui-angular-spreadsheet-chart-adapter", version: "23.2.18" }, + { name: "@infragistics/igniteui-angular-spreadsheet" , version: "23.2.18" }, + { name: "@infragistics/igniteui-angular-datasources" , version: "23.2.18" }, // these IG packages are sometimes updated: { name: "igniteui-webcomponents", version: "4.3.0-beta.0" }, { name: "igniteui-theming", version: "1.4.14" }, @@ -1055,22 +1060,11 @@ function updateIG(cb) { // NOTE you can comment out strings in this array to run these function only on a subset of samples var packagePaths = [ './package.json', // browser - // '../samples/gauges/bullet-graph/animation/package.json', - '../samples/**/package.json', + // '../samples/**/package.json', // '../samples/charts/**/package.json', - // '../samples/editors/**/package.json', - // '../samples/excel/**/package.json', - // '../samples/gauges/**/package.json', - // '../samples/grids/**/package.json', - // '../samples/inputs/**/package.json', - // '../samples/layouts/**/package.json', - // '../samples/maps/**/package.json', - // '../samples/menus/**/package.json', - // '../samples/notifications/**/package.json', - // '../samples/scheduling/**/package.json', - - // '../samples/charts/category-chart/**/package.json', - // '../samples/maps/geo-map/type-scatter-bubble-series/package.json', + '../samples/gauges/**/package.json', + + // skip packages in node_modules folders '!../samples/**/node_modules/**/package.json', '!../samples/**/node_modules/**', '!../samples/**/node_modules', @@ -1080,12 +1074,9 @@ function updateIG(cb) { let packageMappings = {}; for (const item of packageUpgrades) { item.id = item.name.replace("@infragistics/", ""); - let name = item.name.replace("@infragistics/", ""); - packageMappings[name] = item; + packageMappings[item.id] = item; } - // console.log(packageMappings); - let updatedPackages = 0; // gulp all package.json files in samples/browser gulp.src(packagePaths, {allowEmpty: true}) @@ -1129,7 +1120,7 @@ function updateIG(cb) { fileCallback(null, file); })) .on("end", function() { - log("updateIG... done = " + updatedPackages + " files"); + log("updated: " + updatedPackages + " package files"); cb(); }); From aea5321c60bc10197dbff1f389db9f23667ba0d7 Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Wed, 20 Sep 2023 16:48:24 -0400 Subject: [PATCH 006/154] update-readme-script --- browser/scripts/browser.js | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 2800eac3d..2c964c670 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -955,6 +955,7 @@ function updateReadme(cb) { // "https://codesandbox.io/s/github/IgniteUI/igniteui-angular-examples/tree/master/samples/charts/category-chart/annotations?fontsize=14&hidenavigation=1&theme=dark&view=preview&file=/src/app/app.component.html" // "https://codesandbox.io/s/github/IgniteUI/igniteui-angular-examples/tree/master/samples/charts/category-chart/annotations" + var changeFilesCount = 0; var sandboxRoot = "https://codesandbox.io/s/github/IgniteUI/igniteui-angular-examples/tree/master/samples/" var readmeTemplate = fs.readFileSync("../samples/templates/ReadMe.md", "utf8"); for (const sample of samplesDatabase) { @@ -962,16 +963,29 @@ function updateReadme(cb) { let sandboxURL = sandboxRoot + sample.SampleGroup + '/' + sample.SampleControl + "/" + sample.SampleFolder; sandboxURL += "?fontsize=14&hidenavigation=1&theme=dark&view=preview&file=/src/app.component.html" - let readmeFile = readmeTemplate + ""; - readmeFile = readmeFile.replace("{ComponentName}", sample.ControlName); - readmeFile = readmeFile.replace("{SandboxUrlEdit}", sandboxURL); - readmeFile = readmeFile.replace("{SampleDisplayName}", sample.SampleDisplayName); - readmeFile = readmeFile.replace("{SampleFolderPath}", sample.SourcePath); - readmeFile = readmeFile.replace("{SampleRoute}", sampleRoute); + let readmePath = '../samples/' + sample.SampleGroup + '/' + sample.SampleControl + "/" + sample.SampleFolder + "/ReadMe.md"; + + let readmeNewFile = readmeTemplate + ""; + readmeNewFile = readmeNewFile.replace("{ComponentName}", sample.ControlName); + readmeNewFile = readmeNewFile.replace("{SandboxUrlEdit}", sandboxURL); + readmeNewFile = readmeNewFile.replace("{SampleDisplayName}", sample.SampleDisplayName); + readmeNewFile = readmeNewFile.replace("{SampleFolderPath}", sample.SourcePath); + readmeNewFile = readmeNewFile.replace("{SampleRoute}", sampleRoute); + + let readmeOldFile = ""; + if (fs.existsSync(readmePath)) { + readmeOldFile = fs.readFileSync(readmePath).toString(); + } + + if (readmeNewFile !== readmeOldFile) { + console.log('UPDATED: ' + readmePath) + changeFilesCount++; + fs.writeFileSync(readmePath, readmeNewFile); + } + } - let readmeOutput = '../samples/' + sample.SampleGroup + '/' + sample.SampleControl + "/" + sample.SampleFolder + "/ReadMe.md"; - fs.writeFileSync(readmeOutput, readmeFile); - // break; + if (changeFilesCount > 0) { + console.log('WARNING: you must commit above ' + changeFilesCount + ' readme files in a pull request') } cb(); } exports.updateReadme = updateReadme; From ba9eb5bf6eea86d620198a437e7d51c9f367abb8 Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Thu, 21 Sep 2023 15:14:56 -0400 Subject: [PATCH 007/154] Update package.json --- .../data-chart/custom-drawing-annotations/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index c4415679f..806b3d2a2 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-layouts": "16.1.0", - "igniteui-angular-inputs": "16.1.0", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", From 9c02547e5e0c76f334a2092154e12710d508a7d4 Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Thu, 21 Sep 2023 15:15:33 -0400 Subject: [PATCH 008/154] Update package.json --- samples/charts/data-chart/custom-editing-data/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 8f8254a17..fb81a9f87 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.0", - "igniteui-angular-core": "16.1.0", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", From 0c5497f4ebb04c64a78ab7679ad90a348016cca7 Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Fri, 29 Sep 2023 13:06:46 -0400 Subject: [PATCH 009/154] sort-packages --- browser/package.json | 20 +++++++-------- browser/scripts/browser.js | 25 ++++++++++++++++--- .../annotations-all/package.json | 8 +++--- .../annotations-callouts/package.json | 8 +++--- .../annotations-crosshairs/package.json | 8 +++--- .../annotations-custom/package.json | 8 +++--- .../annotations-final-value/package.json | 8 +++--- .../annotations-highlighting/package.json | 8 +++--- .../category-chart/annotations/package.json | 4 +-- .../area-chart-multiple-sources/package.json | 4 +-- .../area-chart-single-source/package.json | 4 +-- .../area-chart-styling/package.json | 4 +-- .../category-chart/axis-gap/package.json | 8 +++--- .../axis-gridlines/package.json | 8 +++--- .../category-chart/axis-inverted/package.json | 8 +++--- .../category-chart/axis-labels/package.json | 8 +++--- .../axis-locations/package.json | 8 +++--- .../category-chart/axis-options/package.json | 4 +-- .../category-chart/axis-overlap/package.json | 8 +++--- .../category-chart/axis-range/package.json | 8 +++--- .../axis-tickmarks/package.json | 8 +++--- .../category-chart/axis-titles/package.json | 4 +-- .../package.json | 4 +-- .../column-chart-single-source/package.json | 4 +-- .../column-chart-styling/package.json | 4 +-- .../package.json | 4 +-- .../column-chart-with-tooltips/package.json | 8 +++--- .../data-aggregations/package.json | 8 +++--- .../package.json | 4 +-- .../category-chart/data-legend/package.json | 4 +-- .../package.json | 4 +-- .../data-tooltip-positioning/package.json | 8 +++--- .../category-chart/data-tooltip/package.json | 4 +-- .../high-frequency/package.json | 4 +-- .../category-chart/high-volume/package.json | 4 +-- .../category-chart/highlighting/package.json | 4 +-- .../line-chart-multiple-sources/package.json | 4 +-- .../line-chart-single-source/package.json | 4 +-- .../line-chart-styling/package.json | 4 +-- .../line-chart-with-animations/package.json | 4 +-- .../line-chart-with-annotations/package.json | 4 +-- .../line-chart-with-legend/package.json | 4 +-- .../marker-options/package.json | 8 +++--- .../marker-templates/package.json | 4 +-- .../category-chart/overview/package.json | 4 +-- .../point-chart-multiple-sources/package.json | 4 +-- .../point-chart-single-source/package.json | 4 +-- .../point-chart-styling/package.json | 4 +-- .../spline-area-multiple-sources/package.json | 4 +-- .../spline-area-single-source/package.json | 4 +-- .../spline-area-styling/package.json | 4 +-- .../spline-multiple-sources/package.json | 4 +-- .../spline-single-source/package.json | 4 +-- .../spline-styling/package.json | 4 +-- .../category-chart/stack-columns/package.json | 4 +-- .../step-area-multiple-sources/package.json | 4 +-- .../step-area-single-source/package.json | 4 +-- .../step-area-styling/package.json | 4 +-- .../step-line-multiple-sources/package.json | 4 +-- .../step-line-single-source/package.json | 4 +-- .../step-line-styling/package.json | 4 +-- .../tooltip-template/package.json | 4 +-- .../category-chart/tooltip-types/package.json | 4 +-- .../category-chart/trendline/package.json | 4 +-- .../category-chart/value-lines/package.json | 8 +++--- .../annotations-custom/package.json | 4 +-- .../package.json | 4 +-- .../data-chart/axis-annotations/package.json | 4 +-- .../data-chart/axis-crossing/package.json | 4 +-- .../axis-label-rotation/package.json | 8 +++--- .../data-chart/axis-locations/package.json | 4 +-- .../data-chart/axis-min-max-gap/package.json | 4 +-- .../data-chart/axis-settings/package.json | 4 +-- .../data-chart/axis-sharing/package.json | 4 +-- .../charts/data-chart/axis-types/package.json | 4 +-- .../bar-chart-multiple-sources/package.json | 4 +-- .../bar-chart-overlapping/package.json | 4 +-- .../bar-chart-single-source/package.json | 4 +-- .../data-chart/bar-chart-styling/package.json | 4 +-- .../callout-layer-styling/package.json | 4 +-- .../data-chart/chart-navigation/package.json | 4 +-- .../data-chart/chart-overview/package.json | 4 +-- .../data-chart/chart-performance/package.json | 4 +-- .../chart-synchronization/package.json | 4 +-- .../data-chart/chart-titles/package.json | 4 +-- .../column-chart-styling/package.json | 4 +-- .../data-chart/composite-chart/package.json | 4 +-- .../crosshair-layer-styling/package.json | 4 +-- .../data-chart/dash-array-axes/package.json | 4 +-- .../data-chart/dash-array-series/package.json | 4 +-- .../dash-array-tickmarks/package.json | 4 +-- .../dash-array-trendline/package.json | 4 +-- .../data-chart/data-legend/package.json | 4 +-- .../data-chart/data-tooltip/package.json | 4 +-- .../final-value-layer-styling/package.json | 4 +-- .../financial-price-series/package.json | 4 +-- .../charts/data-chart/legends/package.json | 4 +-- .../polar-area-chart-styling/package.json | 4 +-- .../data-chart/polar-area-chart/package.json | 4 +-- .../data-chart/polar-chart-types/package.json | 4 +-- .../data-chart/polar-line-chart/package.json | 4 +-- .../polar-scatter-chart/package.json | 4 +-- .../polar-spline-area-chart/package.json | 4 +-- .../polar-spline-chart/package.json | 4 +-- .../radial-area-chart-styling/package.json | 4 +-- .../data-chart/radial-area-chart/package.json | 4 +-- .../radial-chart-types/package.json | 4 +-- .../radial-column-chart/package.json | 4 +-- .../data-chart/radial-line-chart/package.json | 4 +-- .../data-chart/radial-pie-chart/package.json | 4 +-- .../data-chart/range-area-chart/package.json | 4 +-- .../range-column-chart/package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../scatter-bubble-chart-styling/package.json | 4 +-- .../scatter-line-chart/package.json | 4 +-- .../scatter-point-chart/package.json | 4 +-- .../scatter-spline-chart/package.json | 4 +-- .../data-chart/series-animations/package.json | 4 +-- .../series-annotations/package.json | 4 +-- .../series-highlighting/package.json | 4 +-- .../series-marker-template/package.json | 4 +-- .../data-chart/series-markers/package.json | 4 +-- .../data-chart/series-tooltips/package.json | 4 +-- .../data-chart/series-trendlines/package.json | 4 +-- .../series-value-overlay/package.json | 4 +-- .../stacked-100-area-chart/package.json | 4 +-- .../stacked-100-bar-chart/package.json | 4 +-- .../stacked-100-column-chart/package.json | 4 +-- .../stacked-100-line-chart/package.json | 4 +-- .../package.json | 4 +-- .../stacked-100-spline-chart/package.json | 4 +-- .../stacked-area-chart/package.json | 4 +-- .../data-chart/stacked-bar-chart/package.json | 4 +-- .../stacked-chart-types/package.json | 4 +-- .../stacked-column-chart/package.json | 4 +-- .../stacked-line-chart/package.json | 4 +-- .../stacked-spline-area-chart/package.json | 4 +-- .../stacked-spline-chart/package.json | 4 +-- .../data-chart/tooltip-template/package.json | 4 +-- .../data-chart/transition-event/package.json | 8 +++--- .../type-category-area-series/package.json | 4 +-- .../type-category-bar-series/package.json | 4 +-- .../type-category-column-series/package.json | 4 +-- .../type-category-line-series/package.json | 4 +-- .../type-category-point-series/package.json | 4 +-- .../type-category-series/package.json | 4 +-- .../package.json | 4 +-- .../type-category-spline-series/package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../type-financial-ohlc-series/package.json | 4 +-- .../type-financial-overlays/package.json | 4 +-- .../type-financial-series/package.json | 4 +-- .../type-radial-area-series/package.json | 4 +-- .../type-radial-column-series/package.json | 4 +-- .../type-radial-line-series/package.json | 4 +-- .../type-radial-pie-series/package.json | 4 +-- .../type-range-area-series/package.json | 4 +-- .../type-range-column-series/package.json | 4 +-- .../data-chart/type-range-series/package.json | 4 +-- .../type-scatter-area-series/package.json | 4 +-- .../type-scatter-bubble-series/package.json | 4 +-- .../type-scatter-contour-series/package.json | 4 +-- .../type-scatter-hd-series/package.json | 4 +-- .../type-scatter-line-series/package.json | 4 +-- .../type-scatter-point-series/package.json | 4 +-- .../type-scatter-polygon-series/package.json | 4 +-- .../type-scatter-polyline-series/package.json | 4 +-- .../type-scatter-series/package.json | 4 +-- .../type-scatter-spline-series/package.json | 4 +-- .../data-chart/type-shape-series/package.json | 4 +-- .../type-stacked-100-area-series/package.json | 4 +-- .../type-stacked-100-bar-series/package.json | 4 +-- .../package.json | 4 +-- .../type-stacked-100-line-series/package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../type-stacked-area-series/package.json | 4 +-- .../type-stacked-bar-series/package.json | 4 +-- .../type-stacked-column-series/package.json | 4 +-- .../type-stacked-line-series/package.json | 4 +-- .../package.json | 4 +-- .../type-stacked-spline-series/package.json | 4 +-- .../data-chart/waterfall-chart/package.json | 4 +-- .../doughnut-chart/animation/package.json | 4 +-- .../doughnut-chart/explosion/package.json | 4 +-- .../charts/doughnut-chart/legend/package.json | 4 +-- .../doughnut-chart/overview/package.json | 4 +-- .../charts/doughnut-chart/rings/package.json | 4 +-- .../doughnut-chart/selection/package.json | 4 +-- .../financial-chart/annotations/package.json | 4 +-- .../financial-chart/axis-types/package.json | 4 +-- .../package.json | 4 +-- .../data-legend-styling-props/package.json | 4 +-- .../financial-chart/data-legend/package.json | 4 +-- .../package.json | 4 +-- .../data-tooltip-styling-props/package.json | 4 +-- .../financial-chart/data-tooltip/package.json | 4 +-- .../high-frequency/package.json | 4 +-- .../financial-chart/high-volume/package.json | 4 +-- .../indicator-customization/package.json | 4 +-- .../indicator-types/package.json | 4 +-- .../multiple-data/package.json | 4 +-- .../multiple-feeds/package.json | 4 +-- .../financial-chart/overview/package.json | 4 +-- .../charts/financial-chart/panes/package.json | 4 +-- .../financial-chart/performance/package.json | 4 +-- .../financial-chart/scrollbars/package.json | 4 +-- .../stock-index-chart/package.json | 4 +-- .../financial-chart/styling/package.json | 4 +-- .../financial-chart/theming/package.json | 4 +-- .../time-based-data/package.json | 4 +-- .../financial-chart/titles/package.json | 4 +-- .../tooltip-template/package.json | 4 +-- .../tooltip-types/package.json | 4 +-- .../financial-chart/trendlines/package.json | 4 +-- .../financial-chart/volume-types/package.json | 4 +-- .../charts/pie-chart/animation/package.json | 4 +-- .../charts/pie-chart/explosion/package.json | 4 +-- samples/charts/pie-chart/legend/package.json | 4 +-- samples/charts/pie-chart/others/package.json | 4 +-- .../charts/pie-chart/overview/package.json | 4 +-- .../charts/pie-chart/selection/package.json | 4 +-- samples/charts/pie-chart/styling/package.json | 4 +-- .../sparkline/display-area/package.json | 4 +-- .../sparkline/display-column/package.json | 4 +-- .../sparkline/display-lines/package.json | 8 +++--- .../sparkline/display-types/package.json | 4 +-- .../sparkline/display-winloss/package.json | 4 +-- samples/charts/sparkline/grid/package.json | 4 +-- samples/charts/sparkline/markers/package.json | 8 +++--- .../sparkline/normal-range/package.json | 8 +++--- .../charts/sparkline/trendlines/package.json | 8 +++--- .../sparkline/unknown-values/package.json | 8 +++--- .../package.json | 8 +++--- .../actions-built-in-data-chart/package.json | 8 +++--- .../package.json | 8 +++--- .../package.json | 8 +++--- samples/charts/toolbar/theming/package.json | 8 +++--- samples/charts/tree-map/events/package.json | 4 +-- samples/charts/tree-map/layout/package.json | 8 +++--- samples/charts/tree-map/overview/package.json | 4 +-- samples/charts/tree-map/styling/package.json | 4 +-- .../charts/zoomslider/overview/package.json | 4 +-- .../operations-on-workbooks/package.json | 4 +-- .../operations-on-worksheets/package.json | 4 +-- .../excel/excel-library/overview/package.json | 4 +-- .../working-with-cells/package.json | 4 +-- .../working-with-charts/package.json | 6 ++--- .../working-with-sparklines/package.json | 6 ++--- .../working-with-tables/package.json | 8 +++--- .../excel/spreadsheet/activation/package.json | 8 +++--- .../spreadsheet/adapter-chart/package.json | 12 ++++----- .../spreadsheet/adapter-combo/package.json | 10 ++++---- .../excel/spreadsheet/clipboard/package.json | 6 ++--- .../excel/spreadsheet/commands/package.json | 6 ++--- .../conditional-formatting/package.json | 6 ++--- .../spreadsheet/config-options/package.json | 6 ++--- .../spreadsheet/data-validation/package.json | 6 ++--- .../excel/spreadsheet/hyperlinks/package.json | 8 +++--- .../excel/spreadsheet/overview/package.json | 8 +++--- .../bullet-graph/animation/package.json | 4 +-- .../bullet-graph/background/package.json | 4 +-- .../gauges/bullet-graph/labels/package.json | 4 +-- .../gauges/bullet-graph/measures/package.json | 4 +-- .../gauges/bullet-graph/ranges/package.json | 4 +-- .../gauges/bullet-graph/scale/package.json | 4 +-- .../bullet-graph/tickmarks/package.json | 4 +-- .../linear-gauge/animation/package.json | 4 +-- .../gauges/linear-gauge/backing/package.json | 4 +-- .../gauges/linear-gauge/labels/package.json | 4 +-- .../gauges/linear-gauge/needle/package.json | 4 +-- .../gauges/linear-gauge/ranges/package.json | 4 +-- .../gauges/linear-gauge/scale/package.json | 4 +-- .../linear-gauge/tickmarks/package.json | 4 +-- .../radial-gauge/animation/package.json | 4 +-- .../gauges/radial-gauge/backing/package.json | 4 +-- .../gauges/radial-gauge/labels/package.json | 4 +-- .../gauges/radial-gauge/needle/package.json | 4 +-- .../gauges/radial-gauge/ranges/package.json | 4 +-- .../gauges/radial-gauge/scale/package.json | 4 +-- .../radial-gauge/tickmarks/package.json | 4 +-- .../geo-map/binding-data-csv/package.json | 6 ++--- .../binding-data-json-points/package.json | 6 ++--- .../geo-map/binding-data-model/package.json | 6 ++--- .../binding-multiple-shapes/package.json | 6 ++--- .../binding-multiple-sources/package.json | 6 ++--- .../geo-map/binding-shp-points/package.json | 6 ++--- .../geo-map/binding-shp-polygons/package.json | 6 ++--- .../binding-shp-polylines/package.json | 6 ++--- .../maps/geo-map/custom-tooltips/package.json | 6 ++--- .../geo-map/display-bing-imagery/package.json | 6 ++--- .../geo-map/display-esri-imagery/package.json | 6 ++--- .../geo-map/display-heat-imagery/package.json | 6 ++--- .../geo-map/display-osm-imagery/package.json | 6 ++--- .../maps/geo-map/marker-layouts/package.json | 6 ++--- .../maps/geo-map/marker-template/package.json | 6 ++--- samples/maps/geo-map/marker-type/package.json | 6 ++--- samples/maps/geo-map/navigation/package.json | 6 ++--- samples/maps/geo-map/overview/package.json | 6 ++--- .../maps/geo-map/shape-styling/package.json | 6 ++--- .../geo-map/triangulating-data/package.json | 6 ++--- .../type-scatter-area-series/package.json | 6 ++--- .../type-scatter-bubble-series/package.json | 6 ++--- .../type-scatter-contour-series/package.json | 6 ++--- .../type-scatter-density-series/package.json | 6 ++--- .../type-scatter-symbol-series/package.json | 6 ++--- .../type-shape-polygon-series/package.json | 6 ++--- .../type-shape-polyline-series/package.json | 6 ++--- 315 files changed, 770 insertions(+), 753 deletions(-) diff --git a/browser/package.json b/browser/package.json index 656f70fec..f2b9fabb6 100644 --- a/browser/package.json +++ b/browser/package.json @@ -29,6 +29,15 @@ "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", "@angular/router": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.18", "@ionic/angular": "5.6.3", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", @@ -38,19 +47,10 @@ "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "immediate": "3.2.3", "igniteui-angular": "16.0.7", "igniteui-theming": "1.4.14", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", + "immediate": "3.2.3", "intl": "1.2.5", "jszip": "3.7.1", "minireset.css": "0.0.6", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 2c964c670..bd9da9098 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1028,6 +1028,17 @@ function updateSamples(cb) { } exports.updateSamples = updateSamples; +function sortByKeys(dependencies) +{ + let keys = Object.keys(dependencies); + keys.sort(); + + var sorted = {}; + for (const key of keys) { + sorted[key] = dependencies[key]; + } + return sorted; +} function updateIG(cb) { // cleanup packages to speedup this gulp script @@ -1074,9 +1085,9 @@ function updateIG(cb) { // NOTE you can comment out strings in this array to run these function only on a subset of samples var packagePaths = [ './package.json', // browser - // '../samples/**/package.json', + '../samples/**/package.json', // '../samples/charts/**/package.json', - '../samples/gauges/**/package.json', + // '../samples/gauges/**/package.json', // skip packages in node_modules folders '!../samples/**/node_modules/**/package.json', @@ -1125,8 +1136,14 @@ function updateIG(cb) { } } - if (fileChanged) { - let newContent = fileLines.join('\n'); + let newContent = fileLines.join('\n'); + let jsonPackages = JSON.parse(fileContent); + // sort package dependencies by their names + jsonPackages.dependencies = sortByKeys(jsonPackages.dependencies); + jsonPackages.devDependencies = sortByKeys(jsonPackages.devDependencies); + newContent = JSON.stringify(jsonPackages, null, ' ') + '\n'; + + if (fileChanged || fileContent.trim() !== newContent.trim()) { updatedPackages++; fs.writeFileSync(filePath, newContent); log("updated: " + filePath); diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index e1b63b3e7..62590ea43 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index e1b63b3e7..62590ea43 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index fb81a9f87..eb45a4654 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index fb81a9f87..eb45a4654 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index fb81a9f87..eb45a4654 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index c86d18886..c6777385e 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -14,12 +14,12 @@ "@angular/forms": "15.0.2", "@angular/platform-browser": "15.0.2", "@angular/platform-browser-dynamic": "15.0.2", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index b9695808d..44393e18b 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index c294e22e4..67574c53a 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", "igniteui-theming": "1.4.14", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index b9695808d..44393e18b 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index b9695808d..44393e18b 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index b9695808d..44393e18b 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index b9695808d..44393e18b 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index e1b63b3e7..62590ea43 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 4af23ebf5..0c2d10983 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-inputs": "23.2.18", + "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", "igniteui-webcomponents": "4.3.0-beta.0", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 6b8de9771..90ff7cf98 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 75be1a865..eb45a4654 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 70ebed7e7..15d26b48c 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -14,6 +14,8 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", @@ -21,8 +23,6 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index cd9f64d7f..25e55292d 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index cd9f64d7f..25e55292d 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index cd9f64d7f..25e55292d 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index f7c5a28c4..ef8764723 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -14,6 +14,9 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", @@ -21,9 +24,6 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 861be2b53..ef8764723 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -14,6 +14,9 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", @@ -21,9 +24,6 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index 1aa697b76..f46e5791c 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -14,16 +14,16 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index dc8fcbdb8..4524421d1 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@types/file-saver": "2.0.5", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", + "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 8373c85bc..617b75994 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -14,17 +14,17 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", - "classlist.js": "1.1.20150312", - "core-js": "2.6.2", - "file-saver": "2.0.5", - "hammerjs": "2.0.8", "@infragistics/igniteui-angular-charts": "23.2.18", "@infragistics/igniteui-angular-core": "23.2.18", "@infragistics/igniteui-angular-excel": "23.2.18", "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.18", + "@types/file-saver": "2.0.5", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "2.6.2", + "file-saver": "2.0.5", + "hammerjs": "2.0.8", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index a98ded73a..617b75994 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -14,17 +14,17 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index a0fe8e359..4524421d1 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index a0fe8e359..4524421d1 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index a0fe8e359..4524421d1 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index a0fe8e359..4524421d1 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index a0fe8e359..4524421d1 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index dc8fcbdb8..4524421d1 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@types/file-saver": "2.0.5", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", + "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index dc8fcbdb8..4524421d1 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@types/file-saver": "2.0.5", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-excel": "23.2.18", + "@infragistics/igniteui-angular-spreadsheet": "23.2.18", + "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 7c7b539ed..d9a51894d 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 7c7b539ed..d9a51894d 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 7c7b539ed..d9a51894d 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 2cc863b40..1e5f4b275 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 6d887b173..098f7a736 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", + "@infragistics/igniteui-angular-charts": "23.2.18", + "@infragistics/igniteui-angular-core": "23.2.18", + "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", From f360c766375950f2d31ac50e50ec1555c5371f40 Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Fri, 29 Sep 2023 13:31:52 -0400 Subject: [PATCH 010/154] update and sort packages --- browser/package.json | 20 ++++----- browser/scripts/browser.js | 41 +++++++++++-------- .../annotations-all/package.json | 10 ++--- .../annotations-callouts/package.json | 10 ++--- .../annotations-crosshairs/package.json | 10 ++--- .../annotations-custom/package.json | 10 ++--- .../annotations-final-value/package.json | 10 ++--- .../annotations-highlighting/package.json | 10 ++--- .../category-chart/annotations/package.json | 4 +- .../area-chart-multiple-sources/package.json | 4 +- .../area-chart-single-source/package.json | 4 +- .../area-chart-styling/package.json | 4 +- .../category-chart/axis-gap/package.json | 10 ++--- .../axis-gridlines/package.json | 10 ++--- .../category-chart/axis-inverted/package.json | 10 ++--- .../category-chart/axis-labels/package.json | 10 ++--- .../axis-locations/package.json | 10 ++--- .../category-chart/axis-options/package.json | 4 +- .../category-chart/axis-overlap/package.json | 10 ++--- .../category-chart/axis-range/package.json | 10 ++--- .../axis-tickmarks/package.json | 10 ++--- .../category-chart/axis-titles/package.json | 4 +- .../package.json | 4 +- .../column-chart-single-source/package.json | 4 +- .../column-chart-styling/package.json | 4 +- .../package.json | 4 +- .../column-chart-with-tooltips/package.json | 10 ++--- .../data-aggregations/package.json | 10 ++--- .../package.json | 4 +- .../category-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-positioning/package.json | 10 ++--- .../category-chart/data-tooltip/package.json | 4 +- .../high-frequency/package.json | 4 +- .../category-chart/high-volume/package.json | 4 +- .../category-chart/highlighting/package.json | 4 +- .../line-chart-multiple-sources/package.json | 4 +- .../line-chart-single-source/package.json | 4 +- .../line-chart-styling/package.json | 4 +- .../line-chart-with-animations/package.json | 4 +- .../line-chart-with-annotations/package.json | 4 +- .../line-chart-with-legend/package.json | 4 +- .../marker-options/package.json | 10 ++--- .../marker-templates/package.json | 4 +- .../category-chart/overview/package.json | 4 +- .../point-chart-multiple-sources/package.json | 4 +- .../point-chart-single-source/package.json | 4 +- .../point-chart-styling/package.json | 4 +- .../spline-area-multiple-sources/package.json | 4 +- .../spline-area-single-source/package.json | 4 +- .../spline-area-styling/package.json | 4 +- .../spline-multiple-sources/package.json | 4 +- .../spline-single-source/package.json | 4 +- .../spline-styling/package.json | 4 +- .../category-chart/stack-columns/package.json | 4 +- .../step-area-multiple-sources/package.json | 4 +- .../step-area-single-source/package.json | 4 +- .../step-area-styling/package.json | 4 +- .../step-line-multiple-sources/package.json | 4 +- .../step-line-single-source/package.json | 4 +- .../step-line-styling/package.json | 4 +- .../tooltip-template/package.json | 4 +- .../category-chart/tooltip-types/package.json | 4 +- .../category-chart/trendline/package.json | 4 +- .../category-chart/value-lines/package.json | 10 ++--- .../annotations-custom/package.json | 4 +- .../package.json | 4 +- .../data-chart/axis-annotations/package.json | 4 +- .../data-chart/axis-crossing/package.json | 4 +- .../axis-label-rotation/package.json | 10 ++--- .../data-chart/axis-locations/package.json | 4 +- .../data-chart/axis-min-max-gap/package.json | 4 +- .../data-chart/axis-settings/package.json | 4 +- .../data-chart/axis-sharing/package.json | 4 +- .../charts/data-chart/axis-types/package.json | 4 +- .../bar-chart-multiple-sources/package.json | 4 +- .../bar-chart-overlapping/package.json | 4 +- .../bar-chart-single-source/package.json | 4 +- .../data-chart/bar-chart-styling/package.json | 4 +- .../callout-layer-styling/package.json | 4 +- .../data-chart/chart-navigation/package.json | 4 +- .../data-chart/chart-overview/package.json | 4 +- .../data-chart/chart-performance/package.json | 4 +- .../chart-synchronization/package.json | 4 +- .../data-chart/chart-titles/package.json | 4 +- .../column-chart-styling/package.json | 4 +- .../data-chart/composite-chart/package.json | 4 +- .../crosshair-layer-styling/package.json | 4 +- .../custom-drawing-annotations/package.json | 8 ++-- .../custom-editing-data/package.json | 4 +- .../data-chart/dash-array-axes/package.json | 4 +- .../data-chart/dash-array-series/package.json | 4 +- .../dash-array-tickmarks/package.json | 4 +- .../dash-array-trendline/package.json | 4 +- .../data-chart/data-legend/package.json | 4 +- .../data-chart/data-tooltip/package.json | 4 +- .../final-value-layer-styling/package.json | 4 +- .../financial-price-series/package.json | 4 +- .../charts/data-chart/legends/package.json | 4 +- .../polar-area-chart-styling/package.json | 4 +- .../data-chart/polar-area-chart/package.json | 4 +- .../data-chart/polar-chart-types/package.json | 4 +- .../data-chart/polar-line-chart/package.json | 4 +- .../polar-scatter-chart/package.json | 4 +- .../polar-spline-area-chart/package.json | 4 +- .../polar-spline-chart/package.json | 4 +- .../radial-area-chart-styling/package.json | 4 +- .../data-chart/radial-area-chart/package.json | 4 +- .../radial-chart-types/package.json | 4 +- .../radial-column-chart/package.json | 4 +- .../data-chart/radial-line-chart/package.json | 4 +- .../data-chart/radial-pie-chart/package.json | 4 +- .../data-chart/range-area-chart/package.json | 4 +- .../range-column-chart/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../scatter-bubble-chart-styling/package.json | 4 +- .../scatter-line-chart/package.json | 4 +- .../scatter-point-chart/package.json | 4 +- .../scatter-spline-chart/package.json | 4 +- .../data-chart/series-animations/package.json | 4 +- .../series-annotations/package.json | 4 +- .../series-highlighting/package.json | 4 +- .../series-marker-template/package.json | 4 +- .../data-chart/series-markers/package.json | 4 +- .../data-chart/series-tooltips/package.json | 4 +- .../data-chart/series-trendlines/package.json | 4 +- .../series-value-overlay/package.json | 4 +- .../stacked-100-area-chart/package.json | 4 +- .../stacked-100-bar-chart/package.json | 4 +- .../stacked-100-column-chart/package.json | 4 +- .../stacked-100-line-chart/package.json | 4 +- .../package.json | 4 +- .../stacked-100-spline-chart/package.json | 4 +- .../stacked-area-chart/package.json | 4 +- .../data-chart/stacked-bar-chart/package.json | 4 +- .../stacked-chart-types/package.json | 4 +- .../stacked-column-chart/package.json | 4 +- .../stacked-line-chart/package.json | 4 +- .../stacked-spline-area-chart/package.json | 4 +- .../stacked-spline-chart/package.json | 4 +- .../data-chart/tooltip-template/package.json | 4 +- .../data-chart/transition-event/package.json | 10 ++--- .../type-category-area-series/package.json | 4 +- .../type-category-bar-series/package.json | 4 +- .../type-category-column-series/package.json | 4 +- .../type-category-line-series/package.json | 4 +- .../type-category-point-series/package.json | 4 +- .../type-category-series/package.json | 4 +- .../package.json | 4 +- .../type-category-spline-series/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../type-financial-ohlc-series/package.json | 4 +- .../type-financial-overlays/package.json | 4 +- .../type-financial-series/package.json | 4 +- .../type-radial-area-series/package.json | 4 +- .../type-radial-column-series/package.json | 4 +- .../type-radial-line-series/package.json | 4 +- .../type-radial-pie-series/package.json | 4 +- .../type-range-area-series/package.json | 4 +- .../type-range-column-series/package.json | 4 +- .../data-chart/type-range-series/package.json | 4 +- .../type-scatter-area-series/package.json | 4 +- .../type-scatter-bubble-series/package.json | 4 +- .../type-scatter-contour-series/package.json | 4 +- .../type-scatter-hd-series/package.json | 4 +- .../type-scatter-line-series/package.json | 4 +- .../type-scatter-point-series/package.json | 4 +- .../type-scatter-polygon-series/package.json | 4 +- .../type-scatter-polyline-series/package.json | 4 +- .../type-scatter-series/package.json | 4 +- .../type-scatter-spline-series/package.json | 4 +- .../data-chart/type-shape-series/package.json | 4 +- .../type-stacked-100-area-series/package.json | 4 +- .../type-stacked-100-bar-series/package.json | 4 +- .../package.json | 4 +- .../type-stacked-100-line-series/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../type-stacked-area-series/package.json | 4 +- .../type-stacked-bar-series/package.json | 4 +- .../type-stacked-column-series/package.json | 4 +- .../type-stacked-line-series/package.json | 4 +- .../package.json | 4 +- .../type-stacked-spline-series/package.json | 4 +- .../data-chart/waterfall-chart/package.json | 4 +- .../doughnut-chart/animation/package.json | 4 +- .../doughnut-chart/explosion/package.json | 4 +- .../charts/doughnut-chart/legend/package.json | 4 +- .../doughnut-chart/overview/package.json | 4 +- .../charts/doughnut-chart/rings/package.json | 4 +- .../doughnut-chart/selection/package.json | 4 +- .../financial-chart/annotations/package.json | 4 +- .../financial-chart/axis-types/package.json | 4 +- .../package.json | 4 +- .../data-legend-styling-props/package.json | 4 +- .../financial-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-styling-props/package.json | 4 +- .../financial-chart/data-tooltip/package.json | 4 +- .../high-frequency/package.json | 4 +- .../financial-chart/high-volume/package.json | 4 +- .../indicator-customization/package.json | 4 +- .../indicator-types/package.json | 4 +- .../multiple-data/package.json | 4 +- .../multiple-feeds/package.json | 4 +- .../financial-chart/overview/package.json | 4 +- .../charts/financial-chart/panes/package.json | 4 +- .../financial-chart/performance/package.json | 4 +- .../financial-chart/scrollbars/package.json | 4 +- .../stock-index-chart/package.json | 4 +- .../financial-chart/styling/package.json | 4 +- .../financial-chart/theming/package.json | 4 +- .../time-based-data/package.json | 4 +- .../financial-chart/titles/package.json | 4 +- .../tooltip-template/package.json | 4 +- .../tooltip-types/package.json | 4 +- .../financial-chart/trendlines/package.json | 4 +- .../financial-chart/volume-types/package.json | 4 +- .../charts/pie-chart/animation/package.json | 4 +- .../charts/pie-chart/explosion/package.json | 4 +- samples/charts/pie-chart/legend/package.json | 4 +- samples/charts/pie-chart/others/package.json | 4 +- .../charts/pie-chart/overview/package.json | 4 +- .../charts/pie-chart/selection/package.json | 4 +- samples/charts/pie-chart/styling/package.json | 4 +- .../sparkline/display-area/package.json | 4 +- .../sparkline/display-column/package.json | 4 +- .../sparkline/display-lines/package.json | 8 ++-- .../sparkline/display-types/package.json | 4 +- .../sparkline/display-winloss/package.json | 4 +- samples/charts/sparkline/grid/package.json | 4 +- samples/charts/sparkline/markers/package.json | 10 ++--- .../sparkline/normal-range/package.json | 10 ++--- .../charts/sparkline/trendlines/package.json | 10 ++--- .../sparkline/unknown-values/package.json | 10 ++--- .../package.json | 8 ++-- .../actions-built-in-data-chart/package.json | 8 ++-- .../package.json | 8 ++-- .../package.json | 8 ++-- samples/charts/toolbar/theming/package.json | 10 ++--- samples/charts/tree-map/events/package.json | 4 +- samples/charts/tree-map/layout/package.json | 10 ++--- samples/charts/tree-map/overview/package.json | 4 +- samples/charts/tree-map/styling/package.json | 4 +- .../charts/zoomslider/overview/package.json | 4 +- .../operations-on-workbooks/package.json | 4 +- .../operations-on-worksheets/package.json | 4 +- .../excel/excel-library/overview/package.json | 4 +- .../working-with-cells/package.json | 4 +- .../working-with-charts/package.json | 6 +-- .../working-with-sparklines/package.json | 6 +-- .../working-with-tables/package.json | 8 ++-- .../excel/spreadsheet/activation/package.json | 6 +-- .../spreadsheet/adapter-chart/package.json | 10 ++--- .../spreadsheet/adapter-combo/package.json | 10 ++--- .../excel/spreadsheet/clipboard/package.json | 6 +-- .../excel/spreadsheet/commands/package.json | 6 +-- .../conditional-formatting/package.json | 6 +-- .../spreadsheet/config-options/package.json | 6 +-- .../spreadsheet/data-validation/package.json | 6 +-- .../excel/spreadsheet/hyperlinks/package.json | 6 +-- .../excel/spreadsheet/overview/package.json | 6 +-- .../bullet-graph/animation/package.json | 4 +- .../bullet-graph/background/package.json | 4 +- .../gauges/bullet-graph/labels/package.json | 4 +- .../gauges/bullet-graph/measures/package.json | 4 +- .../gauges/bullet-graph/ranges/package.json | 4 +- .../gauges/bullet-graph/scale/package.json | 4 +- .../bullet-graph/tickmarks/package.json | 4 +- .../linear-gauge/animation/package.json | 4 +- .../gauges/linear-gauge/backing/package.json | 4 +- .../gauges/linear-gauge/labels/package.json | 4 +- .../gauges/linear-gauge/needle/package.json | 4 +- .../gauges/linear-gauge/ranges/package.json | 4 +- .../gauges/linear-gauge/scale/package.json | 4 +- .../linear-gauge/tickmarks/package.json | 4 +- .../radial-gauge/animation/package.json | 4 +- .../gauges/radial-gauge/backing/package.json | 4 +- .../gauges/radial-gauge/labels/package.json | 4 +- .../gauges/radial-gauge/needle/package.json | 4 +- .../gauges/radial-gauge/ranges/package.json | 4 +- .../gauges/radial-gauge/scale/package.json | 4 +- .../radial-gauge/tickmarks/package.json | 4 +- .../geo-map/binding-data-csv/package.json | 6 +-- .../binding-data-json-points/package.json | 6 +-- .../geo-map/binding-data-model/package.json | 6 +-- .../binding-multiple-shapes/package.json | 6 +-- .../binding-multiple-sources/package.json | 6 +-- .../geo-map/binding-shp-points/package.json | 6 +-- .../geo-map/binding-shp-polygons/package.json | 6 +-- .../binding-shp-polylines/package.json | 6 +-- .../maps/geo-map/custom-tooltips/package.json | 6 +-- .../geo-map/display-bing-imagery/package.json | 6 +-- .../geo-map/display-esri-imagery/package.json | 6 +-- .../geo-map/display-heat-imagery/package.json | 6 +-- .../geo-map/display-osm-imagery/package.json | 6 +-- .../maps/geo-map/marker-layouts/package.json | 6 +-- .../maps/geo-map/marker-template/package.json | 6 +-- samples/maps/geo-map/marker-type/package.json | 6 +-- samples/maps/geo-map/navigation/package.json | 6 +-- samples/maps/geo-map/overview/package.json | 6 +-- .../maps/geo-map/shape-styling/package.json | 6 +-- .../geo-map/triangulating-data/package.json | 6 +-- .../type-scatter-area-series/package.json | 6 +-- .../type-scatter-bubble-series/package.json | 6 +-- .../type-scatter-contour-series/package.json | 6 +-- .../type-scatter-density-series/package.json | 6 +-- .../type-scatter-symbol-series/package.json | 6 +-- .../type-shape-polygon-series/package.json | 6 +-- .../type-shape-polyline-series/package.json | 6 +-- 317 files changed, 801 insertions(+), 796 deletions(-) diff --git a/browser/package.json b/browser/package.json index f2b9fabb6..5aa56ffa3 100644 --- a/browser/package.json +++ b/browser/package.json @@ -29,15 +29,6 @@ "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", "@angular/router": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.18", "@ionic/angular": "5.6.3", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", @@ -48,8 +39,17 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-spreadsheet": "16.1.2-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "16.1.2-beta.0", "igniteui-theming": "1.4.14", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "immediate": "3.2.3", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index bd9da9098..b6a50ae4b 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1052,18 +1052,19 @@ function updateIG(cb) { // { name: "igniteui-angular-charts", version: "14.1.0" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { name: "@infragistics/igniteui-angular-core" , version: "23.2.18" }, - { name: "@infragistics/igniteui-angular-charts" , version: "23.2.18" }, - { name: "@infragistics/igniteui-angular-excel" , version: "23.2.18" }, - { name: "@infragistics/igniteui-angular-gauges" , version: "23.2.18" }, - { name: "@infragistics/igniteui-angular-inputs" , version: "23.2.18" }, - { name: "@infragistics/igniteui-angular-layouts" , version: "23.2.18" }, - { name: "@infragistics/igniteui-angular-maps" , version: "23.2.18" }, - { name: "@infragistics/igniteui-angular-spreadsheet-chart-adapter", version: "23.2.18" }, - { name: "@infragistics/igniteui-angular-spreadsheet" , version: "23.2.18" }, - { name: "@infragistics/igniteui-angular-datasources" , version: "23.2.18" }, + { name: "igniteui-angular-core" , version: "16.1.2-beta.0" }, + { name: "igniteui-angular-charts" , version: "16.1.2-beta.0" }, + { name: "igniteui-angular-excel" , version: "16.1.2-beta.0" }, + { name: "igniteui-angular-gauges" , version: "16.1.2-beta.0" }, + { name: "igniteui-angular-inputs" , version: "16.1.2-beta.0" }, + { name: "igniteui-angular-layouts" , version: "16.1.2-beta.0" }, + { name: "igniteui-angular-maps" , version: "16.1.2-beta.0" }, + { name: "igniteui-angular-spreadsheet-chart-adapter", version: "16.1.2-beta.0" }, + { name: "igniteui-angular-spreadsheet" , version: "16.1.2-beta.0" }, + { name: "igniteui-angular-datasources" , version: "16.1.2-beta.0" }, + // these IG packages are sometimes updated: - { name: "igniteui-webcomponents", version: "4.3.0-beta.0" }, + { name: "igniteui-webcomponents", version: "4.5.0-beta.1" }, { name: "igniteui-theming", version: "1.4.14" }, { name: "igniteui-angular", version: "16.0.7" }, // { name: "@angular/animations", version: "14.0.4" }, @@ -1137,21 +1138,25 @@ function updateIG(cb) { } let newContent = fileLines.join('\n'); - let jsonPackages = JSON.parse(fileContent); + let jsonPackages = JSON.parse(newContent); // sort package dependencies by their names - jsonPackages.dependencies = sortByKeys(jsonPackages.dependencies); - jsonPackages.devDependencies = sortByKeys(jsonPackages.devDependencies); - newContent = JSON.stringify(jsonPackages, null, ' ') + '\n'; + let sortPackages = sortByKeys(jsonPackages.dependencies); + if (JSON.stringify(sortPackages) !== JSON.stringify(jsonPackages.dependencies)) { + jsonPackages.dependencies = sortPackages; + jsonPackages.devDependencies = sortByKeys(jsonPackages.devDependencies); + newContent = JSON.stringify(jsonPackages, null, ' ') + '\n'; + fileChanged = true; + } - if (fileChanged || fileContent.trim() !== newContent.trim()) { + if (fileChanged) { updatedPackages++; fs.writeFileSync(filePath, newContent); - log("updated: " + filePath); + console.log("updated: " + filePath); } fileCallback(null, file); })) .on("end", function() { - log("updated: " + updatedPackages + " package files"); + console.log("updated: " + updatedPackages + " package files"); cb(); }); diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 62590ea43..8d4abfa07 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 62590ea43..8d4abfa07 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 806b3d2a2..c2bf3f2a9 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index fb81a9f87..b0258ab2e 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-charts": "23.2.18", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index c6777385e..3b21a0eed 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -14,12 +14,12 @@ "@angular/forms": "15.0.2", "@angular/platform-browser": "15.0.2", "@angular/platform-browser-dynamic": "15.0.2", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 44393e18b..331e06e50 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 67574c53a..b8c4e1f59 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "igniteui-theming": "1.4.14", "intl": "1.2.5", "jszip": "3.7.1", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 44393e18b..331e06e50 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 44393e18b..331e06e50 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 44393e18b..331e06e50 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 44393e18b..331e06e50 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 62590ea43..8d4abfa07 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 0c2d10983..e56abbf22 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-inputs": "23.2.18", - "@infragistics/igniteui-angular-layouts": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-webcomponents": "4.3.0-beta.0", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-webcomponents": "4.5.0-beta.1", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 90ff7cf98..892686208 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index eb45a4654..b0258ab2e 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 15d26b48c..d53a737a2 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -14,8 +14,6 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", @@ -23,6 +21,8 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 25e55292d..8d9277d36 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 25e55292d..8d9277d36 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 25e55292d..8d9277d36 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -14,14 +14,14 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index ef8764723..1db375275 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -14,9 +14,6 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", @@ -24,6 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index ef8764723..1db375275 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -14,9 +14,6 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", @@ -24,6 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index f46e5791c..aa78e1bfb 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -14,16 +14,16 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular-spreadsheet": "16.1.2-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 4524421d1..acf6dcb68 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular-spreadsheet": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 617b75994..144b55d52 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -14,17 +14,17 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular-spreadsheet": "16.1.2-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index 617b75994..144b55d52 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -14,17 +14,17 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular-spreadsheet": "16.1.2-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index 4524421d1..acf6dcb68 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular-spreadsheet": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 4524421d1..acf6dcb68 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular-spreadsheet": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index 4524421d1..acf6dcb68 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular-spreadsheet": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 4524421d1..acf6dcb68 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular-spreadsheet": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 4524421d1..acf6dcb68 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular-spreadsheet": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 4524421d1..acf6dcb68 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular-spreadsheet": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index 4524421d1..acf6dcb68 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -14,15 +14,15 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-excel": "23.2.18", - "@infragistics/igniteui-angular-spreadsheet": "23.2.18", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular-spreadsheet": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index d9a51894d..1c255f2a6 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index d9a51894d..1c255f2a6 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index d9a51894d..1c255f2a6 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", "igniteui-angular": "16.0.7", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 1e5f4b275..8a825010a 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -14,12 +14,12 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-gauges": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-gauges": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 098f7a736..2a11e9d2e 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "16.0.1", "@angular/platform-browser": "16.0.1", "@angular/platform-browser-dynamic": "16.0.1", - "@infragistics/igniteui-angular-charts": "23.2.18", - "@infragistics/igniteui-angular-core": "23.2.18", - "@infragistics/igniteui-angular-maps": "23.2.18", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "2.6.2", "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-maps": "16.1.2-beta.0", "intl": "1.2.5", "jszip": "3.7.1", "rxjs": "6.6.7", From 2a54310ad8fc275f3c2f7454bcf7b87cae154071 Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Fri, 6 Oct 2023 16:54:46 -0400 Subject: [PATCH 011/154] Update README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index c4ae85c3f..01b3d34d0 100644 --- a/README.md +++ b/README.md @@ -153,3 +153,21 @@ NOTE this will re-generate the Readme.md file in the new sample ## Learn More To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-Angular/Angular/components/general-getting-started.html). + + +# Updating Version of IgniteUI Packages + +Perform these steps to update version of **Ignite UI for Angular** packages in all samples. NOTE that the order of these steps is very important. + +- open this repo in VS Code +- open [browser.js](./browser/tasks/browser.js) file +- navigate to the `updateIG` function +- change version of **Ignite UI for Angular** packages in the `packageUpgrades` array +- open terminal window +- run `cd browser` command +- run `gulp updateIG` command +- run `npm install --legacy-peer-deps` command +- create pull request with your changes +- open the [Igniteui-xplat-example](https://github.com/IgniteUI/igniteui-xplat-examples) repo in VS Code +- update version of **Ignite UI for Angular** packages in [Angular template](https://github.com/IgniteUI/igniteui-xplat-examples/blob/23.2.x/editor-templates/Angular/main-template/package.json) +- create pull request with your changes in [Igniteui-xplat-example](https://github.com/IgniteUI/igniteui-xplat-examples) repo \ No newline at end of file From 88cef2c9572d40e3308597b0cae57050a2333a73 Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Wed, 18 Oct 2023 14:12:24 -0400 Subject: [PATCH 012/154] sort packages --- samples/charts/category-chart/annotations-all/package.json | 4 ++-- .../charts/category-chart/annotations-callouts/package.json | 4 ++-- .../charts/category-chart/annotations-crosshairs/package.json | 4 ++-- samples/charts/category-chart/annotations-custom/package.json | 4 ++-- .../category-chart/annotations-final-value/package.json | 4 ++-- .../category-chart/annotations-highlighting/package.json | 4 ++-- .../category-chart/area-chart-multiple-sources/package.json | 4 ++-- .../category-chart/area-chart-single-source/package.json | 4 ++-- samples/charts/category-chart/area-chart-styling/package.json | 4 ++-- samples/charts/category-chart/axis-gap/package.json | 4 ++-- samples/charts/category-chart/axis-gridlines/package.json | 4 ++-- samples/charts/category-chart/axis-inverted/package.json | 4 ++-- samples/charts/category-chart/axis-labels/package.json | 4 ++-- samples/charts/category-chart/axis-locations/package.json | 4 ++-- samples/charts/category-chart/axis-options/package.json | 4 ++-- samples/charts/category-chart/axis-overlap/package.json | 4 ++-- samples/charts/category-chart/axis-range/package.json | 4 ++-- samples/charts/category-chart/axis-tickmarks/package.json | 4 ++-- samples/charts/category-chart/axis-titles/package.json | 4 ++-- .../category-chart/column-chart-multiple-sources/package.json | 4 ++-- .../category-chart/column-chart-single-source/package.json | 4 ++-- .../charts/category-chart/column-chart-styling/package.json | 4 ++-- .../category-chart/column-chart-with-tooltips/package.json | 4 ++-- samples/charts/category-chart/data-aggregations/package.json | 4 ++-- .../data-legend-formatting-decimals/package.json | 4 ++-- samples/charts/category-chart/data-legend/package.json | 4 ++-- .../data-tooltip-formatting-decimals/package.json | 4 ++-- .../category-chart/data-tooltip-positioning/package.json | 4 ++-- samples/charts/category-chart/data-tooltip/package.json | 4 ++-- .../category-chart/line-chart-multiple-sources/package.json | 4 ++-- .../category-chart/line-chart-single-source/package.json | 4 ++-- samples/charts/category-chart/line-chart-styling/package.json | 4 ++-- samples/charts/category-chart/marker-options/package.json | 4 ++-- samples/charts/category-chart/overview/package.json | 4 ++-- .../category-chart/point-chart-multiple-sources/package.json | 4 ++-- .../category-chart/point-chart-single-source/package.json | 4 ++-- .../charts/category-chart/point-chart-styling/package.json | 4 ++-- .../category-chart/spline-area-multiple-sources/package.json | 4 ++-- .../category-chart/spline-area-single-source/package.json | 4 ++-- .../charts/category-chart/spline-area-styling/package.json | 4 ++-- .../category-chart/spline-multiple-sources/package.json | 4 ++-- .../charts/category-chart/spline-single-source/package.json | 4 ++-- samples/charts/category-chart/spline-styling/package.json | 4 ++-- .../category-chart/step-area-multiple-sources/package.json | 4 ++-- .../category-chart/step-area-single-source/package.json | 4 ++-- samples/charts/category-chart/step-area-styling/package.json | 4 ++-- .../category-chart/step-line-multiple-sources/package.json | 4 ++-- .../category-chart/step-line-single-source/package.json | 4 ++-- samples/charts/category-chart/step-line-styling/package.json | 4 ++-- samples/charts/category-chart/value-lines/package.json | 4 ++-- samples/charts/data-chart/annotations-custom/package.json | 4 ++-- .../data-chart/axis-annotations-corner-radius/package.json | 4 ++-- samples/charts/data-chart/axis-label-rotation/package.json | 4 ++-- samples/charts/data-chart/axis-min-max-gap/package.json | 4 ++-- .../charts/data-chart/bar-chart-multiple-sources/package.json | 4 ++-- samples/charts/data-chart/bar-chart-overlapping/package.json | 4 ++-- .../charts/data-chart/bar-chart-single-source/package.json | 4 ++-- samples/charts/data-chart/bar-chart-styling/package.json | 4 ++-- samples/charts/data-chart/callout-layer-styling/package.json | 4 ++-- samples/charts/data-chart/dash-array-axes/package.json | 4 ++-- samples/charts/data-chart/dash-array-series/package.json | 4 ++-- samples/charts/data-chart/dash-array-tickmarks/package.json | 4 ++-- samples/charts/data-chart/dash-array-trendline/package.json | 4 ++-- samples/charts/data-chart/data-legend/package.json | 4 ++-- samples/charts/data-chart/data-tooltip/package.json | 4 ++-- samples/charts/data-chart/financial-price-series/package.json | 4 ++-- .../charts/data-chart/polar-area-chart-styling/package.json | 4 ++-- samples/charts/data-chart/polar-area-chart/package.json | 4 ++-- samples/charts/data-chart/polar-line-chart/package.json | 4 ++-- samples/charts/data-chart/polar-scatter-chart/package.json | 4 ++-- .../charts/data-chart/polar-spline-area-chart/package.json | 4 ++-- samples/charts/data-chart/polar-spline-chart/package.json | 4 ++-- .../charts/data-chart/radial-area-chart-styling/package.json | 4 ++-- samples/charts/data-chart/radial-area-chart/package.json | 4 ++-- samples/charts/data-chart/radial-column-chart/package.json | 4 ++-- samples/charts/data-chart/radial-line-chart/package.json | 4 ++-- samples/charts/data-chart/radial-pie-chart/package.json | 4 ++-- samples/charts/data-chart/range-area-chart/package.json | 4 ++-- samples/charts/data-chart/range-column-chart/package.json | 4 ++-- samples/charts/data-chart/scatter-line-chart/package.json | 4 ++-- samples/charts/data-chart/scatter-point-chart/package.json | 4 ++-- samples/charts/data-chart/scatter-spline-chart/package.json | 4 ++-- samples/charts/data-chart/stacked-100-area-chart/package.json | 4 ++-- samples/charts/data-chart/stacked-100-bar-chart/package.json | 4 ++-- .../charts/data-chart/stacked-100-column-chart/package.json | 4 ++-- samples/charts/data-chart/stacked-100-line-chart/package.json | 4 ++-- .../data-chart/stacked-100-spline-area-chart/package.json | 4 ++-- .../charts/data-chart/stacked-100-spline-chart/package.json | 4 ++-- samples/charts/data-chart/stacked-area-chart/package.json | 4 ++-- samples/charts/data-chart/stacked-bar-chart/package.json | 4 ++-- samples/charts/data-chart/stacked-column-chart/package.json | 4 ++-- samples/charts/data-chart/stacked-line-chart/package.json | 4 ++-- .../charts/data-chart/stacked-spline-area-chart/package.json | 4 ++-- samples/charts/data-chart/stacked-spline-chart/package.json | 4 ++-- samples/charts/data-chart/transition-event/package.json | 4 ++-- samples/charts/data-chart/waterfall-chart/package.json | 4 ++-- samples/charts/doughnut-chart/legend/package.json | 4 ++-- samples/charts/doughnut-chart/overview/package.json | 4 ++-- samples/charts/doughnut-chart/rings/package.json | 4 ++-- .../data-legend-formatting-currency/package.json | 4 ++-- .../financial-chart/data-legend-styling-props/package.json | 4 ++-- samples/charts/financial-chart/data-legend/package.json | 4 ++-- .../data-tooltip-formatting-currency/package.json | 4 ++-- .../financial-chart/data-tooltip-styling-props/package.json | 4 ++-- samples/charts/financial-chart/data-tooltip/package.json | 4 ++-- samples/charts/financial-chart/scrollbars/package.json | 4 ++-- samples/charts/pie-chart/legend/package.json | 4 ++-- samples/charts/pie-chart/others/package.json | 4 ++-- samples/charts/pie-chart/overview/package.json | 4 ++-- samples/charts/pie-chart/styling/package.json | 4 ++-- samples/charts/sparkline/display-area/package.json | 4 ++-- samples/charts/sparkline/display-column/package.json | 4 ++-- samples/charts/sparkline/display-lines/package.json | 4 ++-- samples/charts/sparkline/display-winloss/package.json | 4 ++-- samples/charts/sparkline/markers/package.json | 4 ++-- samples/charts/sparkline/normal-range/package.json | 4 ++-- samples/charts/sparkline/trendlines/package.json | 4 ++-- samples/charts/sparkline/unknown-values/package.json | 4 ++-- .../toolbar/actions-built-in-category-chart/package.json | 4 ++-- .../charts/toolbar/actions-built-in-data-chart/package.json | 4 ++-- .../actions-built-in-data-chart/src/app.component.html | 3 ++- .../charts/toolbar/layout-actions-for-data-chart/package.json | 4 ++-- .../layout-actions-for-data-chart/src/app.component.html | 3 ++- .../toolbar/layout-in-vertical-orientation/package.json | 4 ++-- .../layout-in-vertical-orientation/src/app.component.html | 3 ++- samples/charts/toolbar/theming/package.json | 4 ++-- samples/charts/toolbar/theming/src/app.component.html | 3 ++- samples/charts/tree-map/layout/package.json | 4 ++-- samples/charts/tree-map/overview/package.json | 4 ++-- samples/charts/tree-map/styling/package.json | 4 ++-- 130 files changed, 260 insertions(+), 256 deletions(-) diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 892686208..28a1138db 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 892686208..28a1138db 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 892686208..28a1138db 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 892686208..28a1138db 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 892686208..28a1138db 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 892686208..28a1138db 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 892686208..28a1138db 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 892686208..28a1138db 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 892686208..28a1138db 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 892686208..28a1138db 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 892686208..28a1138db 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 892686208..28a1138db 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 892686208..28a1138db 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 892686208..28a1138db 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 892686208..28a1138db 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 892686208..28a1138db 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 892686208..28a1138db 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 892686208..28a1138db 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 331e06e50..9a999dc97 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -30,17 +30,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 892686208..28a1138db 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -28,17 +28,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index e56abbf22..f441c7f74 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -31,17 +31,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 331e06e50..9a999dc97 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -30,17 +30,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 331e06e50..9a999dc97 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -30,17 +30,17 @@ "zone.js": "0.13.0" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", "@angular/cli": "16.0.1", "@angular/compiler-cli": "16.0.1", "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.0.4" } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/src/app.component.html b/samples/charts/toolbar/actions-built-in-data-chart/src/app.component.html index d975a0d8c..6f83235f6 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/app.component.html +++ b/samples/charts/toolbar/actions-built-in-data-chart/src/app.component.html @@ -29,7 +29,8 @@ + title="TWh" + labelLocation="OutsideRight"> + title="TWh" + labelLocation="OutsideRight"> + title="TWh" + labelLocation="OutsideRight"> + title="TWh" + labelLocation="OutsideRight"> Date: Wed, 18 Oct 2023 14:14:36 -0400 Subject: [PATCH 013/154] export new samples --- .../custom-selection/.stackblitzrc | 1 + .../custom-selection/angular.json | 103 ++++++++++++++++ .../custom-selection/package.json | 44 +++++++ .../custom-selection/sandbox.config.json | 5 + .../custom-selection/src/SelectableData.ts | 111 ++++++++++++++++++ .../custom-selection/src/app.component.html | 32 +++++ .../custom-selection/src/app.component.scss | 3 + .../custom-selection/src/app.component.ts | 61 ++++++++++ .../custom-selection/src/app.module.ts | 27 +++++ .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 ++ .../src/config/tsconfig.base.json | 23 ++++ .../src/config/tsconfig.spec.json | 19 +++ .../src/config/tsconfig.worker.json | 14 +++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../custom-selection/src/index.html | 23 ++++ .../custom-selection/src/main.ts | 15 +++ .../custom-selection/src/polyfills.ts | 65 ++++++++++ .../custom-selection/src/styles.scss | 9 ++ .../custom-selection/src/typings.d.ts | 5 + .../custom-selection/tsconfig.json | 20 ++++ .../custom-selection/tslint.json | 31 +++++ .../format-specifiers/.stackblitzrc | 1 + .../format-specifiers/angular.json | 103 ++++++++++++++++ .../format-specifiers/package.json | 46 ++++++++ .../format-specifiers/sandbox.config.json | 5 + .../src/HighestGrossingMovies.ts | 51 ++++++++ .../format-specifiers/src/app.component.html | 28 +++++ .../format-specifiers/src/app.component.scss | 3 + .../format-specifiers/src/app.component.ts | 62 ++++++++++ .../format-specifiers/src/app.module.ts | 28 +++++ .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 ++ .../src/config/tsconfig.base.json | 23 ++++ .../src/config/tsconfig.spec.json | 19 +++ .../src/config/tsconfig.worker.json | 14 +++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../format-specifiers/src/index.html | 23 ++++ .../format-specifiers/src/main.ts | 15 +++ .../format-specifiers/src/polyfills.ts | 65 ++++++++++ .../format-specifiers/src/styles.scss | 9 ++ .../format-specifiers/src/typings.d.ts | 5 + .../format-specifiers/tsconfig.json | 20 ++++ .../format-specifiers/tslint.json | 31 +++++ .../format-specifiers/.stackblitzrc | 1 + .../data-chart/format-specifiers/angular.json | 103 ++++++++++++++++ .../data-chart/format-specifiers/package.json | 44 +++++++ .../format-specifiers/sandbox.config.json | 5 + .../src/HighestGrossingMovies.ts | 51 ++++++++ .../format-specifiers/src/app.component.html | 65 ++++++++++ .../format-specifiers/src/app.component.scss | 3 + .../format-specifiers/src/app.component.ts | 59 ++++++++++ .../format-specifiers/src/app.module.ts | 31 +++++ .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 ++ .../src/config/tsconfig.base.json | 23 ++++ .../src/config/tsconfig.spec.json | 19 +++ .../src/config/tsconfig.worker.json | 14 +++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../format-specifiers/src/index.html | 23 ++++ .../data-chart/format-specifiers/src/main.ts | 15 +++ .../format-specifiers/src/polyfills.ts | 65 ++++++++++ .../format-specifiers/src/styles.scss | 9 ++ .../format-specifiers/src/typings.d.ts | 5 + .../format-specifiers/tsconfig.json | 20 ++++ .../data-chart/format-specifiers/tslint.json | 31 +++++ .../format-specifiers/.stackblitzrc | 1 + .../format-specifiers/angular.json | 103 ++++++++++++++++ .../format-specifiers/package.json | 44 +++++++ .../format-specifiers/sandbox.config.json | 5 + .../format-specifiers/src/MultipleStocks.ts | 107 +++++++++++++++++ .../format-specifiers/src/app.component.html | 32 +++++ .../format-specifiers/src/app.component.scss | 3 + .../format-specifiers/src/app.component.ts | 65 ++++++++++ .../format-specifiers/src/app.module.ts | 27 +++++ .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 ++ .../src/config/tsconfig.base.json | 23 ++++ .../src/config/tsconfig.spec.json | 19 +++ .../src/config/tsconfig.worker.json | 14 +++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../format-specifiers/src/index.html | 23 ++++ .../format-specifiers/src/main.ts | 15 +++ .../format-specifiers/src/polyfills.ts | 65 ++++++++++ .../format-specifiers/src/styles.scss | 9 ++ .../format-specifiers/src/typings.d.ts | 5 + .../format-specifiers/tsconfig.json | 20 ++++ .../format-specifiers/tslint.json | 31 +++++ 92 files changed, 2507 insertions(+) create mode 100644 samples/charts/category-chart/custom-selection/.stackblitzrc create mode 100644 samples/charts/category-chart/custom-selection/angular.json create mode 100644 samples/charts/category-chart/custom-selection/package.json create mode 100644 samples/charts/category-chart/custom-selection/sandbox.config.json create mode 100644 samples/charts/category-chart/custom-selection/src/SelectableData.ts create mode 100644 samples/charts/category-chart/custom-selection/src/app.component.html create mode 100644 samples/charts/category-chart/custom-selection/src/app.component.scss create mode 100644 samples/charts/category-chart/custom-selection/src/app.component.ts create mode 100644 samples/charts/category-chart/custom-selection/src/app.module.ts create mode 100644 samples/charts/category-chart/custom-selection/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/category-chart/custom-selection/src/config/tsconfig.app.json create mode 100644 samples/charts/category-chart/custom-selection/src/config/tsconfig.base.json create mode 100644 samples/charts/category-chart/custom-selection/src/config/tsconfig.spec.json create mode 100644 samples/charts/category-chart/custom-selection/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/custom-selection/src/environments/environment.prod.ts create mode 100644 samples/charts/category-chart/custom-selection/src/environments/environment.ts create mode 100644 samples/charts/category-chart/custom-selection/src/index.html create mode 100644 samples/charts/category-chart/custom-selection/src/main.ts create mode 100644 samples/charts/category-chart/custom-selection/src/polyfills.ts create mode 100644 samples/charts/category-chart/custom-selection/src/styles.scss create mode 100644 samples/charts/category-chart/custom-selection/src/typings.d.ts create mode 100644 samples/charts/category-chart/custom-selection/tsconfig.json create mode 100644 samples/charts/category-chart/custom-selection/tslint.json create mode 100644 samples/charts/category-chart/format-specifiers/.stackblitzrc create mode 100644 samples/charts/category-chart/format-specifiers/angular.json create mode 100644 samples/charts/category-chart/format-specifiers/package.json create mode 100644 samples/charts/category-chart/format-specifiers/sandbox.config.json create mode 100644 samples/charts/category-chart/format-specifiers/src/HighestGrossingMovies.ts create mode 100644 samples/charts/category-chart/format-specifiers/src/app.component.html create mode 100644 samples/charts/category-chart/format-specifiers/src/app.component.scss create mode 100644 samples/charts/category-chart/format-specifiers/src/app.component.ts create mode 100644 samples/charts/category-chart/format-specifiers/src/app.module.ts create mode 100644 samples/charts/category-chart/format-specifiers/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/category-chart/format-specifiers/src/config/tsconfig.app.json create mode 100644 samples/charts/category-chart/format-specifiers/src/config/tsconfig.base.json create mode 100644 samples/charts/category-chart/format-specifiers/src/config/tsconfig.spec.json create mode 100644 samples/charts/category-chart/format-specifiers/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/format-specifiers/src/environments/environment.prod.ts create mode 100644 samples/charts/category-chart/format-specifiers/src/environments/environment.ts create mode 100644 samples/charts/category-chart/format-specifiers/src/index.html create mode 100644 samples/charts/category-chart/format-specifiers/src/main.ts create mode 100644 samples/charts/category-chart/format-specifiers/src/polyfills.ts create mode 100644 samples/charts/category-chart/format-specifiers/src/styles.scss create mode 100644 samples/charts/category-chart/format-specifiers/src/typings.d.ts create mode 100644 samples/charts/category-chart/format-specifiers/tsconfig.json create mode 100644 samples/charts/category-chart/format-specifiers/tslint.json create mode 100644 samples/charts/data-chart/format-specifiers/.stackblitzrc create mode 100644 samples/charts/data-chart/format-specifiers/angular.json create mode 100644 samples/charts/data-chart/format-specifiers/package.json create mode 100644 samples/charts/data-chart/format-specifiers/sandbox.config.json create mode 100644 samples/charts/data-chart/format-specifiers/src/HighestGrossingMovies.ts create mode 100644 samples/charts/data-chart/format-specifiers/src/app.component.html create mode 100644 samples/charts/data-chart/format-specifiers/src/app.component.scss create mode 100644 samples/charts/data-chart/format-specifiers/src/app.component.ts create mode 100644 samples/charts/data-chart/format-specifiers/src/app.module.ts create mode 100644 samples/charts/data-chart/format-specifiers/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/data-chart/format-specifiers/src/config/tsconfig.app.json create mode 100644 samples/charts/data-chart/format-specifiers/src/config/tsconfig.base.json create mode 100644 samples/charts/data-chart/format-specifiers/src/config/tsconfig.spec.json create mode 100644 samples/charts/data-chart/format-specifiers/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/format-specifiers/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/format-specifiers/src/environments/environment.ts create mode 100644 samples/charts/data-chart/format-specifiers/src/index.html create mode 100644 samples/charts/data-chart/format-specifiers/src/main.ts create mode 100644 samples/charts/data-chart/format-specifiers/src/polyfills.ts create mode 100644 samples/charts/data-chart/format-specifiers/src/styles.scss create mode 100644 samples/charts/data-chart/format-specifiers/src/typings.d.ts create mode 100644 samples/charts/data-chart/format-specifiers/tsconfig.json create mode 100644 samples/charts/data-chart/format-specifiers/tslint.json create mode 100644 samples/charts/financial-chart/format-specifiers/.stackblitzrc create mode 100644 samples/charts/financial-chart/format-specifiers/angular.json create mode 100644 samples/charts/financial-chart/format-specifiers/package.json create mode 100644 samples/charts/financial-chart/format-specifiers/sandbox.config.json create mode 100644 samples/charts/financial-chart/format-specifiers/src/MultipleStocks.ts create mode 100644 samples/charts/financial-chart/format-specifiers/src/app.component.html create mode 100644 samples/charts/financial-chart/format-specifiers/src/app.component.scss create mode 100644 samples/charts/financial-chart/format-specifiers/src/app.component.ts create mode 100644 samples/charts/financial-chart/format-specifiers/src/app.module.ts create mode 100644 samples/charts/financial-chart/format-specifiers/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/financial-chart/format-specifiers/src/config/tsconfig.app.json create mode 100644 samples/charts/financial-chart/format-specifiers/src/config/tsconfig.base.json create mode 100644 samples/charts/financial-chart/format-specifiers/src/config/tsconfig.spec.json create mode 100644 samples/charts/financial-chart/format-specifiers/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/format-specifiers/src/environments/environment.prod.ts create mode 100644 samples/charts/financial-chart/format-specifiers/src/environments/environment.ts create mode 100644 samples/charts/financial-chart/format-specifiers/src/index.html create mode 100644 samples/charts/financial-chart/format-specifiers/src/main.ts create mode 100644 samples/charts/financial-chart/format-specifiers/src/polyfills.ts create mode 100644 samples/charts/financial-chart/format-specifiers/src/styles.scss create mode 100644 samples/charts/financial-chart/format-specifiers/src/typings.d.ts create mode 100644 samples/charts/financial-chart/format-specifiers/tsconfig.json create mode 100644 samples/charts/financial-chart/format-specifiers/tslint.json diff --git a/samples/charts/category-chart/custom-selection/.stackblitzrc b/samples/charts/category-chart/custom-selection/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/category-chart/custom-selection/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/category-chart/custom-selection/angular.json b/samples/charts/category-chart/custom-selection/angular.json new file mode 100644 index 000000000..9ec584c70 --- /dev/null +++ b/samples/charts/category-chart/custom-selection/angular.json @@ -0,0 +1,103 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "browserTarget": "demo:build" + }, + "configurations": { + "production": { + "browserTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "browserTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "styleext": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json new file mode 100644 index 000000000..28a1138db --- /dev/null +++ b/samples/charts/category-chart/custom-selection/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "16.0.1", + "@angular/common": "16.0.1", + "@angular/compiler": "16.0.1", + "@angular/core": "16.0.1", + "@angular/forms": "16.0.1", + "@angular/platform-browser": "16.0.1", + "@angular/platform-browser-dynamic": "16.0.1", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "intl": "1.2.5", + "jszip": "3.7.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "0.13.0" + }, + "devDependencies": { + "@angular/cli": "16.0.1", + "@angular/compiler-cli": "16.0.1", + "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "9.1.1", + "typescript": "5.0.4" + } +} diff --git a/samples/charts/category-chart/custom-selection/sandbox.config.json b/samples/charts/category-chart/custom-selection/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/samples/charts/category-chart/custom-selection/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/category-chart/custom-selection/src/SelectableData.ts b/samples/charts/category-chart/custom-selection/src/SelectableData.ts new file mode 100644 index 000000000..cf0b49e67 --- /dev/null +++ b/samples/charts/category-chart/custom-selection/src/SelectableData.ts @@ -0,0 +1,111 @@ +export class SelectableDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public category: string; + public dataValue: number; + public selectedValue: number; + +} +export class SelectableData extends Array { + public constructor() { + super(); + this.push(new SelectableDataItem( + { + category: `2010`, + dataValue: 20, + selectedValue: 20 + })); + this.push(new SelectableDataItem( + { + category: `2011`, + dataValue: 40, + selectedValue: null + })); + this.push(new SelectableDataItem( + { + category: `2012`, + dataValue: 35, + selectedValue: null + })); + this.push(new SelectableDataItem( + { + category: `2013`, + dataValue: 50, + selectedValue: 50 + })); + this.push(new SelectableDataItem( + { + category: `2014`, + dataValue: 45, + selectedValue: null + })); + this.push(new SelectableDataItem( + { + category: `2015`, + dataValue: 60, + selectedValue: 60 + })); + this.push(new SelectableDataItem( + { + category: `2016`, + dataValue: 35, + selectedValue: null + })); + this.push(new SelectableDataItem( + { + category: `2017`, + dataValue: 40, + selectedValue: null + })); + this.push(new SelectableDataItem( + { + category: `2018`, + dataValue: 50, + selectedValue: 50 + })); + this.push(new SelectableDataItem( + { + category: `2019`, + dataValue: 75, + selectedValue: 75 + })); + this.push(new SelectableDataItem( + { + category: `2020`, + dataValue: 65, + selectedValue: null + })); + this.push(new SelectableDataItem( + { + category: `2021`, + dataValue: 40, + selectedValue: null + })); + this.push(new SelectableDataItem( + { + category: `2022`, + dataValue: 50, + selectedValue: null + })); + this.push(new SelectableDataItem( + { + category: `2023`, + dataValue: 65, + selectedValue: 65 + })); + this.push(new SelectableDataItem( + { + category: `2024`, + dataValue: 70, + selectedValue: 70 + })); + this.push(new SelectableDataItem( + { + category: `2025`, + dataValue: 85, + selectedValue: null + })); + } +} diff --git a/samples/charts/category-chart/custom-selection/src/app.component.html b/samples/charts/category-chart/custom-selection/src/app.component.html new file mode 100644 index 000000000..4639fc79b --- /dev/null +++ b/samples/charts/category-chart/custom-selection/src/app.component.html @@ -0,0 +1,32 @@ +
+
+ Chart with Multiple Selectable Data Columns +
+
+ + +
+
+ + +
+
diff --git a/samples/charts/category-chart/custom-selection/src/app.component.scss b/samples/charts/category-chart/custom-selection/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/category-chart/custom-selection/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/category-chart/custom-selection/src/app.component.ts b/samples/charts/category-chart/custom-selection/src/app.component.ts new file mode 100644 index 000000000..aca6652c7 --- /dev/null +++ b/samples/charts/category-chart/custom-selection/src/app.component.ts @@ -0,0 +1,61 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { SelectableDataItem, SelectableData } from './SelectableData'; +import { IgxDataLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class AppComponent { + + public constructor(private _detector: ChangeDetectorRef) { + + } + + @ViewChild("legend", { static: true } ) + private legend: IgxDataLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent + + private _selectableData: SelectableData = null; + public get selectableData(): SelectableData { + if (this._selectableData == null) + { + this._selectableData = new SelectableData(); + } + return this._selectableData; + } + + + public categoryChartCustomSelectionPointerDown(e: any): void { + + let oldItem = e.args.item as SelectableDataItem; + + if (oldItem === null) return; + + let newItem: SelectableDataItem = new SelectableDataItem({ + category: oldItem.category, + dataValue: oldItem.dataValue, + selectedValue: oldItem.selectedValue + }); + + var selectedIndex = -1; + for (var i = 0; i < this.selectableData.length; i++) { + if (oldItem.category === this.selectableData[i].category) { + selectedIndex = i; + break; + } + } + + if (oldItem.selectedValue === oldItem.dataValue) + newItem.selectedValue = null; + else + newItem.selectedValue = newItem.dataValue; + + this.chart.notifySetItem(this.selectableData, selectedIndex, oldItem, newItem); + } + +} + diff --git a/samples/charts/category-chart/custom-selection/src/app.module.ts b/samples/charts/category-chart/custom-selection/src/app.module.ts new file mode 100644 index 000000000..43068b10c --- /dev/null +++ b/samples/charts/category-chart/custom-selection/src/app.module.ts @@ -0,0 +1,27 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDataLegendModule, IgxCategoryChartModule, IgxDataChartInteractivityModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDataLegendModule, + IgxCategoryChartModule, + IgxDataChartInteractivityModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/category-chart/custom-selection/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/custom-selection/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e5d23397 --- /dev/null +++ b/samples/charts/category-chart/custom-selection/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "es2015" + } + } diff --git a/samples/charts/category-chart/custom-selection/src/config/tsconfig.app.json b/samples/charts/category-chart/custom-selection/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/category-chart/custom-selection/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/category-chart/custom-selection/src/config/tsconfig.base.json b/samples/charts/category-chart/custom-selection/src/config/tsconfig.base.json new file mode 100644 index 000000000..f5ad4b8b7 --- /dev/null +++ b/samples/charts/category-chart/custom-selection/src/config/tsconfig.base.json @@ -0,0 +1,23 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "es2020", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "es2015", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "es2017", + "dom" + ] + } +} diff --git a/samples/charts/category-chart/custom-selection/src/config/tsconfig.spec.json b/samples/charts/category-chart/custom-selection/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/category-chart/custom-selection/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/category-chart/custom-selection/src/config/tsconfig.worker.json b/samples/charts/category-chart/custom-selection/src/config/tsconfig.worker.json new file mode 100644 index 000000000..bc0e98f11 --- /dev/null +++ b/samples/charts/category-chart/custom-selection/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "es2018", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/category-chart/custom-selection/src/environments/environment.prod.ts b/samples/charts/category-chart/custom-selection/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/category-chart/custom-selection/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/category-chart/custom-selection/src/environments/environment.ts b/samples/charts/category-chart/custom-selection/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/category-chart/custom-selection/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/category-chart/custom-selection/src/index.html b/samples/charts/category-chart/custom-selection/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/category-chart/custom-selection/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/category-chart/custom-selection/src/main.ts b/samples/charts/category-chart/custom-selection/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/category-chart/custom-selection/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/category-chart/custom-selection/src/polyfills.ts b/samples/charts/category-chart/custom-selection/src/polyfills.ts new file mode 100644 index 000000000..6c0321de4 --- /dev/null +++ b/samples/charts/category-chart/custom-selection/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js/dist/zone"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +if (!Element.prototype.matches) { + Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +} + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/category-chart/custom-selection/src/styles.scss b/samples/charts/category-chart/custom-selection/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/category-chart/custom-selection/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/category-chart/custom-selection/src/typings.d.ts b/samples/charts/category-chart/custom-selection/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/category-chart/custom-selection/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/category-chart/custom-selection/tsconfig.json b/samples/charts/category-chart/custom-selection/tsconfig.json new file mode 100644 index 000000000..6a01bab30 --- /dev/null +++ b/samples/charts/category-chart/custom-selection/tsconfig.json @@ -0,0 +1,20 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/category-chart/custom-selection/tslint.json b/samples/charts/category-chart/custom-selection/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/category-chart/custom-selection/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/category-chart/format-specifiers/.stackblitzrc b/samples/charts/category-chart/format-specifiers/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/category-chart/format-specifiers/angular.json b/samples/charts/category-chart/format-specifiers/angular.json new file mode 100644 index 000000000..9ec584c70 --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/angular.json @@ -0,0 +1,103 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "browserTarget": "demo:build" + }, + "configurations": { + "production": { + "browserTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "browserTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "styleext": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json new file mode 100644 index 000000000..9a999dc97 --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -0,0 +1,46 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "16.0.1", + "@angular/common": "16.0.1", + "@angular/compiler": "16.0.1", + "@angular/core": "16.0.1", + "@angular/forms": "16.0.1", + "@angular/platform-browser": "16.0.1", + "@angular/platform-browser-dynamic": "16.0.1", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-inputs": "16.1.2-beta.0", + "igniteui-angular-layouts": "16.1.2-beta.0", + "intl": "1.2.5", + "jszip": "3.7.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "0.13.0" + }, + "devDependencies": { + "@angular/cli": "16.0.1", + "@angular/compiler-cli": "16.0.1", + "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "9.1.1", + "typescript": "5.0.4" + } +} diff --git a/samples/charts/category-chart/format-specifiers/sandbox.config.json b/samples/charts/category-chart/format-specifiers/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/category-chart/format-specifiers/src/HighestGrossingMovies.ts b/samples/charts/category-chart/format-specifiers/src/HighestGrossingMovies.ts new file mode 100644 index 000000000..1d92f1541 --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/src/HighestGrossingMovies.ts @@ -0,0 +1,51 @@ +export class HighestGrossingMoviesItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public franchise: string; + public totalRevenue: number; + public highestGrossing: number; + +} +export class HighestGrossingMovies extends Array { + public constructor() { + super(); + this.push(new HighestGrossingMoviesItem( + { + franchise: `Marvel Universe`, + totalRevenue: 22.55, + highestGrossing: 2.8 + })); + this.push(new HighestGrossingMoviesItem( + { + franchise: `Star Wars`, + totalRevenue: 10.32, + highestGrossing: 2.07 + })); + this.push(new HighestGrossingMoviesItem( + { + franchise: `Harry Potter`, + totalRevenue: 9.19, + highestGrossing: 1.34 + })); + this.push(new HighestGrossingMoviesItem( + { + franchise: `Avengers`, + totalRevenue: 7.76, + highestGrossing: 2.8 + })); + this.push(new HighestGrossingMoviesItem( + { + franchise: `Spider Man`, + totalRevenue: 7.22, + highestGrossing: 1.28 + })); + this.push(new HighestGrossingMoviesItem( + { + franchise: `James Bond`, + totalRevenue: 7.12, + highestGrossing: 1.11 + })); + } +} diff --git a/samples/charts/category-chart/format-specifiers/src/app.component.html b/samples/charts/category-chart/format-specifiers/src/app.component.html new file mode 100644 index 000000000..47f4172f9 --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/src/app.component.html @@ -0,0 +1,28 @@ +
+
+ Highest Grossing Movie Franchises +
+
+ + +
+
+ + +
+
diff --git a/samples/charts/category-chart/format-specifiers/src/app.component.scss b/samples/charts/category-chart/format-specifiers/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/category-chart/format-specifiers/src/app.component.ts b/samples/charts/category-chart/format-specifiers/src/app.component.ts new file mode 100644 index 000000000..537db7978 --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/src/app.component.ts @@ -0,0 +1,62 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataLegendDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; +import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGrossingMovies'; +import { IgxDataLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; +import { IgxNumberFormatSpecifier } from 'igniteui-angular-core'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class AppComponent { + + public constructor(private _detector: ChangeDetectorRef) { + + } + + @ViewChild("legend", { static: true } ) + private legend: IgxDataLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent + private _numberFormatSpecifier1: IgxNumberFormatSpecifier[] | null = null; + public get numberFormatSpecifier1(): IgxNumberFormatSpecifier[] { + if (this._numberFormatSpecifier1 == null) + { + let numberFormatSpecifier1: IgxNumberFormatSpecifier[] = []; + var numberFormatSpecifier2 = new IgxNumberFormatSpecifier(); + numberFormatSpecifier2.style = "currency"; + numberFormatSpecifier2.currency = "USD"; + numberFormatSpecifier2.currencyDisplay = "symbol"; + numberFormatSpecifier2.minimumFractionDigits = 0; + + numberFormatSpecifier1.push(numberFormatSpecifier2) + this._numberFormatSpecifier1 = numberFormatSpecifier1; + } + return this._numberFormatSpecifier1; + } + + private _highestGrossingMovies: HighestGrossingMovies = null; + public get highestGrossingMovies(): HighestGrossingMovies { + if (this._highestGrossingMovies == null) + { + this._highestGrossingMovies = new HighestGrossingMovies(); + } + return this._highestGrossingMovies; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + DataLegendDescriptionModule.register(context); + CategoryChartDescriptionModule.register(context); + } + return this._componentRenderer; + } + +} + diff --git a/samples/charts/category-chart/format-specifiers/src/app.module.ts b/samples/charts/category-chart/format-specifiers/src/app.module.ts new file mode 100644 index 000000000..fb76caf81 --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/src/app.module.ts @@ -0,0 +1,28 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxDataLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxDataLegendModule, + IgxCategoryChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/category-chart/format-specifiers/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/format-specifiers/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e5d23397 --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "es2015" + } + } diff --git a/samples/charts/category-chart/format-specifiers/src/config/tsconfig.app.json b/samples/charts/category-chart/format-specifiers/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/category-chart/format-specifiers/src/config/tsconfig.base.json b/samples/charts/category-chart/format-specifiers/src/config/tsconfig.base.json new file mode 100644 index 000000000..f5ad4b8b7 --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/src/config/tsconfig.base.json @@ -0,0 +1,23 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "es2020", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "es2015", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "es2017", + "dom" + ] + } +} diff --git a/samples/charts/category-chart/format-specifiers/src/config/tsconfig.spec.json b/samples/charts/category-chart/format-specifiers/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/category-chart/format-specifiers/src/config/tsconfig.worker.json b/samples/charts/category-chart/format-specifiers/src/config/tsconfig.worker.json new file mode 100644 index 000000000..bc0e98f11 --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "es2018", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/category-chart/format-specifiers/src/environments/environment.prod.ts b/samples/charts/category-chart/format-specifiers/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/category-chart/format-specifiers/src/environments/environment.ts b/samples/charts/category-chart/format-specifiers/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/category-chart/format-specifiers/src/index.html b/samples/charts/category-chart/format-specifiers/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/category-chart/format-specifiers/src/main.ts b/samples/charts/category-chart/format-specifiers/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/category-chart/format-specifiers/src/polyfills.ts b/samples/charts/category-chart/format-specifiers/src/polyfills.ts new file mode 100644 index 000000000..6c0321de4 --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js/dist/zone"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +if (!Element.prototype.matches) { + Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +} + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/category-chart/format-specifiers/src/styles.scss b/samples/charts/category-chart/format-specifiers/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/category-chart/format-specifiers/src/typings.d.ts b/samples/charts/category-chart/format-specifiers/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/category-chart/format-specifiers/tsconfig.json b/samples/charts/category-chart/format-specifiers/tsconfig.json new file mode 100644 index 000000000..6a01bab30 --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/tsconfig.json @@ -0,0 +1,20 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/category-chart/format-specifiers/tslint.json b/samples/charts/category-chart/format-specifiers/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/format-specifiers/.stackblitzrc b/samples/charts/data-chart/format-specifiers/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/data-chart/format-specifiers/angular.json b/samples/charts/data-chart/format-specifiers/angular.json new file mode 100644 index 000000000..9ec584c70 --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/angular.json @@ -0,0 +1,103 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "browserTarget": "demo:build" + }, + "configurations": { + "production": { + "browserTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "browserTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "styleext": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json new file mode 100644 index 000000000..28a1138db --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "16.0.1", + "@angular/common": "16.0.1", + "@angular/compiler": "16.0.1", + "@angular/core": "16.0.1", + "@angular/forms": "16.0.1", + "@angular/platform-browser": "16.0.1", + "@angular/platform-browser-dynamic": "16.0.1", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "intl": "1.2.5", + "jszip": "3.7.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "0.13.0" + }, + "devDependencies": { + "@angular/cli": "16.0.1", + "@angular/compiler-cli": "16.0.1", + "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "9.1.1", + "typescript": "5.0.4" + } +} diff --git a/samples/charts/data-chart/format-specifiers/sandbox.config.json b/samples/charts/data-chart/format-specifiers/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/data-chart/format-specifiers/src/HighestGrossingMovies.ts b/samples/charts/data-chart/format-specifiers/src/HighestGrossingMovies.ts new file mode 100644 index 000000000..1d92f1541 --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/src/HighestGrossingMovies.ts @@ -0,0 +1,51 @@ +export class HighestGrossingMoviesItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public franchise: string; + public totalRevenue: number; + public highestGrossing: number; + +} +export class HighestGrossingMovies extends Array { + public constructor() { + super(); + this.push(new HighestGrossingMoviesItem( + { + franchise: `Marvel Universe`, + totalRevenue: 22.55, + highestGrossing: 2.8 + })); + this.push(new HighestGrossingMoviesItem( + { + franchise: `Star Wars`, + totalRevenue: 10.32, + highestGrossing: 2.07 + })); + this.push(new HighestGrossingMoviesItem( + { + franchise: `Harry Potter`, + totalRevenue: 9.19, + highestGrossing: 1.34 + })); + this.push(new HighestGrossingMoviesItem( + { + franchise: `Avengers`, + totalRevenue: 7.76, + highestGrossing: 2.8 + })); + this.push(new HighestGrossingMoviesItem( + { + franchise: `Spider Man`, + totalRevenue: 7.22, + highestGrossing: 1.28 + })); + this.push(new HighestGrossingMoviesItem( + { + franchise: `James Bond`, + totalRevenue: 7.12, + highestGrossing: 1.11 + })); + } +} diff --git a/samples/charts/data-chart/format-specifiers/src/app.component.html b/samples/charts/data-chart/format-specifiers/src/app.component.html new file mode 100644 index 000000000..a5e48b04f --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/src/app.component.html @@ -0,0 +1,65 @@ +
+
+ Highest Grossing Movie Franchises +
+
+ + +
+
+ + + + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/format-specifiers/src/app.component.scss b/samples/charts/data-chart/format-specifiers/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/format-specifiers/src/app.component.ts b/samples/charts/data-chart/format-specifiers/src/app.component.ts new file mode 100644 index 000000000..fc0fed04e --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/src/app.component.ts @@ -0,0 +1,59 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGrossingMovies'; +import { IgxDataLegendComponent, IgxDataChartComponent, IgxCategoryYAxisComponent, IgxNumericXAxisComponent, IgxBarSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; +import { IgxNumberFormatSpecifier } from 'igniteui-angular-core'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class AppComponent { + + public constructor(private _detector: ChangeDetectorRef) { + + } + + @ViewChild("legend", { static: true } ) + private legend: IgxDataLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxCategoryYAxisComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + private _numberFormatSpecifier1: IgxNumberFormatSpecifier[] | null = null; + public get numberFormatSpecifier1(): IgxNumberFormatSpecifier[] { + if (this._numberFormatSpecifier1 == null) + { + let numberFormatSpecifier1: IgxNumberFormatSpecifier[] = []; + var numberFormatSpecifier2 = new IgxNumberFormatSpecifier(); + numberFormatSpecifier2.style = "currency"; + numberFormatSpecifier2.currency = "USD"; + numberFormatSpecifier2.currencyDisplay = "symbol"; + numberFormatSpecifier2.minimumFractionDigits = 0; + + numberFormatSpecifier1.push(numberFormatSpecifier2) + this._numberFormatSpecifier1 = numberFormatSpecifier1; + } + return this._numberFormatSpecifier1; + } + @ViewChild("barSeries1", { static: true } ) + private barSeries1: IgxBarSeriesComponent + @ViewChild("barSeries2", { static: true } ) + private barSeries2: IgxBarSeriesComponent + @ViewChild("tooltips", { static: true } ) + private tooltips: IgxDataToolTipLayerComponent + + private _highestGrossingMovies: HighestGrossingMovies = null; + public get highestGrossingMovies(): HighestGrossingMovies { + if (this._highestGrossingMovies == null) + { + this._highestGrossingMovies = new HighestGrossingMovies(); + } + return this._highestGrossingMovies; + } + +} + diff --git a/samples/charts/data-chart/format-specifiers/src/app.module.ts b/samples/charts/data-chart/format-specifiers/src/app.module.ts new file mode 100644 index 000000000..2eac7194f --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/src/app.module.ts @@ -0,0 +1,31 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDataLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryCoreModule, IgxDataChartCategoryModule, IgxDataChartInteractivityModule, IgxDataChartVerticalCategoryModule, IgxDataChartAnnotationModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDataLegendModule, + IgxDataChartCoreModule, + IgxDataChartCategoryCoreModule, + IgxDataChartCategoryModule, + IgxDataChartInteractivityModule, + IgxDataChartVerticalCategoryModule, + IgxDataChartAnnotationModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/format-specifiers/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/format-specifiers/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e5d23397 --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "es2015" + } + } diff --git a/samples/charts/data-chart/format-specifiers/src/config/tsconfig.app.json b/samples/charts/data-chart/format-specifiers/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/data-chart/format-specifiers/src/config/tsconfig.base.json b/samples/charts/data-chart/format-specifiers/src/config/tsconfig.base.json new file mode 100644 index 000000000..f5ad4b8b7 --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/src/config/tsconfig.base.json @@ -0,0 +1,23 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "es2020", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "es2015", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "es2017", + "dom" + ] + } +} diff --git a/samples/charts/data-chart/format-specifiers/src/config/tsconfig.spec.json b/samples/charts/data-chart/format-specifiers/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/data-chart/format-specifiers/src/config/tsconfig.worker.json b/samples/charts/data-chart/format-specifiers/src/config/tsconfig.worker.json new file mode 100644 index 000000000..bc0e98f11 --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "es2018", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/data-chart/format-specifiers/src/environments/environment.prod.ts b/samples/charts/data-chart/format-specifiers/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/format-specifiers/src/environments/environment.ts b/samples/charts/data-chart/format-specifiers/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/format-specifiers/src/index.html b/samples/charts/data-chart/format-specifiers/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/format-specifiers/src/main.ts b/samples/charts/data-chart/format-specifiers/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/format-specifiers/src/polyfills.ts b/samples/charts/data-chart/format-specifiers/src/polyfills.ts new file mode 100644 index 000000000..6c0321de4 --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js/dist/zone"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +if (!Element.prototype.matches) { + Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +} + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/format-specifiers/src/styles.scss b/samples/charts/data-chart/format-specifiers/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/format-specifiers/src/typings.d.ts b/samples/charts/data-chart/format-specifiers/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/format-specifiers/tsconfig.json b/samples/charts/data-chart/format-specifiers/tsconfig.json new file mode 100644 index 000000000..6a01bab30 --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/tsconfig.json @@ -0,0 +1,20 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/data-chart/format-specifiers/tslint.json b/samples/charts/data-chart/format-specifiers/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/financial-chart/format-specifiers/.stackblitzrc b/samples/charts/financial-chart/format-specifiers/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/financial-chart/format-specifiers/angular.json b/samples/charts/financial-chart/format-specifiers/angular.json new file mode 100644 index 000000000..9ec584c70 --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/angular.json @@ -0,0 +1,103 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "browserTarget": "demo:build" + }, + "configurations": { + "production": { + "browserTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "browserTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "styleext": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json new file mode 100644 index 000000000..28a1138db --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "16.0.1", + "@angular/common": "16.0.1", + "@angular/compiler": "16.0.1", + "@angular/core": "16.0.1", + "@angular/forms": "16.0.1", + "@angular/platform-browser": "16.0.1", + "@angular/platform-browser-dynamic": "16.0.1", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "16.1.2-beta.0", + "igniteui-angular-core": "16.1.2-beta.0", + "intl": "1.2.5", + "jszip": "3.7.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "0.13.0" + }, + "devDependencies": { + "@angular/cli": "16.0.1", + "@angular/compiler-cli": "16.0.1", + "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "16.0.1", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "9.1.1", + "typescript": "5.0.4" + } +} diff --git a/samples/charts/financial-chart/format-specifiers/sandbox.config.json b/samples/charts/financial-chart/format-specifiers/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/financial-chart/format-specifiers/src/MultipleStocks.ts b/samples/charts/financial-chart/format-specifiers/src/MultipleStocks.ts new file mode 100644 index 000000000..3688676b4 --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/src/MultipleStocks.ts @@ -0,0 +1,107 @@ +//begin async data +export class MultipleStocks extends Array> { + public static async fetch(): Promise { + const dataSources: any[] = [ + //await this.getAmazonStock(), + await this.getGoogleStock(), + await this.getAmazonStock(), + //await this.getTeslaStock() + ]; + return new Promise((resolve, reject) => { + resolve(dataSources); + }); + } + + /** gets Amazon stock OHLC prices from a .JSON file */ + public static async getAmazonStock(): Promise { + let url = "https://static.infragistics.com/xplatform/data/stocks/stockAmazon.json"; + let response = await fetch(url); + let jsonData = await response.json(); + let stockData = this.convertData(jsonData); + // setting data intent for Series Title, e.g. FinancialChart usage + (stockData as any).__dataIntents = { + close: ["SeriesTitle/Amazon"] + }; + // console.log("fetchAmazonStock: ", stockData.length); + + return new Promise((resolve, reject) => { + resolve(stockData); + }); + } + + /** gets Tesla stock OHLC prices from a .JSON file */ + public static async getTeslaStock(): Promise { + let url = "https://static.infragistics.com/xplatform/data/stocks/stockTesla.json"; + let response = await fetch(url); + let jsonData = await response.json(); + let stockData = this.convertData(jsonData); + // setting data intent for Series Title, e.g. FinancialChart usage + (stockData as any).__dataIntents = { + close: ["SeriesTitle/Tesla"] + }; + return new Promise((resolve, reject) => { + resolve(stockData); + }); + } + + /** gets Microsoft stock OHLC prices from a .JSON file */ + public static async getMicrosoftStock(): Promise { + let url = "https://static.infragistics.com/xplatform/data/stocks/stockMicrosoft.json"; + let response = await fetch(url); + let jsonData = await response.json(); + let stockData = this.convertData(jsonData); + // setting data intent for Series Title, e.g. FinancialChart usage + (stockData as any).__dataIntents = { + close: ["SeriesTitle/Microsoft"] + }; + return new Promise((resolve, reject) => { + resolve(stockData); + }); + } + + /** gets Google stock OHLC prices from a .JSON file */ + public static async getGoogleStock(): Promise { + let url = "https://static.infragistics.com/xplatform/data/stocks/stockGoogle.json"; + let response = await fetch(url); + let jsonData = await response.json(); + let stockData = this.convertData(jsonData); + // setting data intent for Series Title, e.g. FinancialChart usage + (stockData as any).__dataIntents = { + close: ["SeriesTitle/Google"] + }; + return new Promise((resolve, reject) => { + resolve(stockData); + }); + } + + public static convertData(jsonData: any[]): StockItem[] { + let stockItems: StockItem[] = []; + + for (let json of jsonData) { + let parts = json.date.split("-"); // "2020-01-01" + let item = new StockItem(); + item.date = new Date(parts[0], parts[1], parts[2]); + item.open = json.open; + item.high = json.high; + item.low = json.low; + item.close = json.close; + item.volume = json.volume; + stockItems.push(item); + + } + + return stockItems; + } + } + + export class StockItem { + public open?: number; + public close?: number; + public high?: number; + public low?: number; + public volume?: number; + + public date?: Date; + + } +//end async data \ No newline at end of file diff --git a/samples/charts/financial-chart/format-specifiers/src/app.component.html b/samples/charts/financial-chart/format-specifiers/src/app.component.html new file mode 100644 index 000000000..6b6154b9a --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/src/app.component.html @@ -0,0 +1,32 @@ +
+
+ + +
+
+ + +
+
diff --git a/samples/charts/financial-chart/format-specifiers/src/app.component.scss b/samples/charts/financial-chart/format-specifiers/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/financial-chart/format-specifiers/src/app.component.ts b/samples/charts/financial-chart/format-specifiers/src/app.component.ts new file mode 100644 index 000000000..679762bf0 --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/src/app.component.ts @@ -0,0 +1,65 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { MultipleStocks } from './MultipleStocks'; +import { IgxDataLegendComponent, IgxFinancialChartComponent } from 'igniteui-angular-charts'; +import { IgxNumberFormatSpecifier, IgxDateTimeFormatSpecifier } from 'igniteui-angular-core'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class AppComponent { + + public constructor(private _detector: ChangeDetectorRef) { + + } + + @ViewChild("legend", { static: true } ) + private legend: IgxDataLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxFinancialChartComponent + private _numberFormatSpecifier1: IgxNumberFormatSpecifier[] | null = null; + public get numberFormatSpecifier1(): IgxNumberFormatSpecifier[] { + if (this._numberFormatSpecifier1 == null) + { + let numberFormatSpecifier1: IgxNumberFormatSpecifier[] = []; + var numberFormatSpecifier2 = new IgxNumberFormatSpecifier(); + numberFormatSpecifier2.currency = "EUR"; + numberFormatSpecifier2.style = "currency"; + numberFormatSpecifier2.locale = "en-GB"; + numberFormatSpecifier2.minimumFractionDigits = 0; + + numberFormatSpecifier1.push(numberFormatSpecifier2) + this._numberFormatSpecifier1 = numberFormatSpecifier1; + } + return this._numberFormatSpecifier1; + } + private _dateTimeFormatSpecifier1: IgxDateTimeFormatSpecifier[] | null = null; + public get dateTimeFormatSpecifier1(): IgxDateTimeFormatSpecifier[] { + if (this._dateTimeFormatSpecifier1 == null) + { + let dateTimeFormatSpecifier1: IgxDateTimeFormatSpecifier[] = []; + var dateTimeFormatSpecifier2 = new IgxDateTimeFormatSpecifier(); + dateTimeFormatSpecifier2.locale = "en-GB"; + dateTimeFormatSpecifier2.dateStyle = "long"; + + dateTimeFormatSpecifier1.push(dateTimeFormatSpecifier2) + this._dateTimeFormatSpecifier1 = dateTimeFormatSpecifier1; + } + return this._dateTimeFormatSpecifier1; + } + + private _multipleStocks: MultipleStocks = null; + private _multipleStocksFetching: boolean = false; + public get multipleStocks(): MultipleStocks { + if (this._multipleStocks == null && !this._multipleStocksFetching) + { + this._multipleStocksFetching = true; + ( async () => { this._multipleStocks = await (await MultipleStocks.fetch()); this._detector.markForCheck(); })(); + } + return this._multipleStocks; + } + +} + diff --git a/samples/charts/financial-chart/format-specifiers/src/app.module.ts b/samples/charts/financial-chart/format-specifiers/src/app.module.ts new file mode 100644 index 000000000..3b0932b7a --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/src/app.module.ts @@ -0,0 +1,27 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxFinancialChartModule, IgxDataChartInteractivityModule, IgxDataLegendModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxFinancialChartModule, + IgxDataChartInteractivityModule, + IgxDataLegendModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e5d23397 --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "es2015" + } + } diff --git a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.app.json b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.base.json b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.base.json new file mode 100644 index 000000000..f5ad4b8b7 --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.base.json @@ -0,0 +1,23 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "es2020", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "es2015", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "es2017", + "dom" + ] + } +} diff --git a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.spec.json b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.worker.json b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.worker.json new file mode 100644 index 000000000..bc0e98f11 --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "es2018", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/financial-chart/format-specifiers/src/environments/environment.prod.ts b/samples/charts/financial-chart/format-specifiers/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/financial-chart/format-specifiers/src/environments/environment.ts b/samples/charts/financial-chart/format-specifiers/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/financial-chart/format-specifiers/src/index.html b/samples/charts/financial-chart/format-specifiers/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/financial-chart/format-specifiers/src/main.ts b/samples/charts/financial-chart/format-specifiers/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/financial-chart/format-specifiers/src/polyfills.ts b/samples/charts/financial-chart/format-specifiers/src/polyfills.ts new file mode 100644 index 000000000..6c0321de4 --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js/dist/zone"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +if (!Element.prototype.matches) { + Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +} + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/financial-chart/format-specifiers/src/styles.scss b/samples/charts/financial-chart/format-specifiers/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/financial-chart/format-specifiers/src/typings.d.ts b/samples/charts/financial-chart/format-specifiers/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/financial-chart/format-specifiers/tsconfig.json b/samples/charts/financial-chart/format-specifiers/tsconfig.json new file mode 100644 index 000000000..6a01bab30 --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/tsconfig.json @@ -0,0 +1,20 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/financial-chart/format-specifiers/tslint.json b/samples/charts/financial-chart/format-specifiers/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} From 41d8a0364fcd1da8c2f17c35d5159e44909ff38a Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Thu, 19 Oct 2023 12:10:54 -0400 Subject: [PATCH 014/154] updated readme files --- .../category-chart/annotations-all/ReadMe.md | 2 +- .../annotations-callouts/ReadMe.md | 2 +- .../annotations-crosshairs/ReadMe.md | 2 +- .../annotations-custom/ReadMe.md | 50 +++++++++++++++++++ .../annotations-final-value/ReadMe.md | 2 +- .../annotations-highlighting/ReadMe.md | 2 +- .../category-chart/annotations/ReadMe.md | 2 +- .../area-chart-multiple-sources/ReadMe.md | 2 +- .../area-chart-single-source/ReadMe.md | 2 +- .../area-chart-styling/ReadMe.md | 2 +- .../charts/category-chart/axis-gap/ReadMe.md | 2 +- .../category-chart/axis-gridlines/ReadMe.md | 2 +- .../category-chart/axis-inverted/ReadMe.md | 2 +- .../category-chart/axis-labels/ReadMe.md | 2 +- .../category-chart/axis-locations/ReadMe.md | 2 +- .../category-chart/axis-options/ReadMe.md | 2 +- .../category-chart/axis-overlap/ReadMe.md | 2 +- .../category-chart/axis-range/ReadMe.md | 2 +- .../category-chart/axis-tickmarks/ReadMe.md | 2 +- .../category-chart/axis-titles/ReadMe.md | 2 +- .../column-chart-multiple-sources/ReadMe.md | 2 +- .../column-chart-single-source/ReadMe.md | 2 +- .../column-chart-styling/ReadMe.md | 2 +- .../column-chart-with-highlighting/ReadMe.md | 2 +- .../column-chart-with-tooltips/ReadMe.md | 2 +- .../category-chart/custom-selection/ReadMe.md | 50 +++++++++++++++++++ .../data-aggregations/ReadMe.md | 2 +- .../data-legend-formatting-decimals/ReadMe.md | 2 +- .../category-chart/data-legend/ReadMe.md | 2 +- .../ReadMe.md | 2 +- .../data-tooltip-positioning/ReadMe.md | 2 +- .../category-chart/data-tooltip/ReadMe.md | 2 +- .../format-specifiers/ReadMe.md | 50 +++++++++++++++++++ .../category-chart/high-frequency/ReadMe.md | 2 +- .../category-chart/high-volume/ReadMe.md | 2 +- .../category-chart/highlighting/ReadMe.md | 2 +- .../line-chart-multiple-sources/ReadMe.md | 2 +- .../line-chart-single-source/ReadMe.md | 2 +- .../line-chart-styling/ReadMe.md | 2 +- .../line-chart-with-animations/ReadMe.md | 2 +- .../line-chart-with-annotations/ReadMe.md | 2 +- .../line-chart-with-legend/ReadMe.md | 2 +- .../category-chart/marker-options/ReadMe.md | 2 +- .../category-chart/marker-templates/ReadMe.md | 2 +- .../charts/category-chart/overview/ReadMe.md | 2 +- .../point-chart-multiple-sources/ReadMe.md | 2 +- .../point-chart-single-source/ReadMe.md | 2 +- .../point-chart-styling/ReadMe.md | 2 +- .../spline-area-multiple-sources/ReadMe.md | 2 +- .../spline-area-single-source/ReadMe.md | 2 +- .../spline-area-styling/ReadMe.md | 2 +- .../spline-multiple-sources/ReadMe.md | 2 +- .../spline-single-source/ReadMe.md | 2 +- .../category-chart/spline-styling/ReadMe.md | 2 +- .../category-chart/stack-columns/ReadMe.md | 2 +- .../step-area-multiple-sources/ReadMe.md | 2 +- .../step-area-single-source/ReadMe.md | 2 +- .../step-area-styling/ReadMe.md | 2 +- .../step-line-multiple-sources/ReadMe.md | 2 +- .../step-line-single-source/ReadMe.md | 2 +- .../step-line-styling/ReadMe.md | 2 +- .../category-chart/tooltip-template/ReadMe.md | 2 +- .../category-chart/tooltip-types/ReadMe.md | 2 +- .../charts/category-chart/trendline/ReadMe.md | 2 +- .../category-chart/value-lines/ReadMe.md | 2 +- .../data-chart/annotations-custom/ReadMe.md | 50 +++++++++++++++++++ .../axis-annotations-corner-radius/ReadMe.md | 2 +- .../data-chart/axis-annotations/ReadMe.md | 2 +- .../charts/data-chart/axis-crossing/ReadMe.md | 2 +- .../data-chart/axis-label-rotation/ReadMe.md | 2 +- .../data-chart/axis-locations/ReadMe.md | 2 +- .../data-chart/axis-min-max-gap/ReadMe.md | 2 +- .../charts/data-chart/axis-settings/ReadMe.md | 2 +- .../charts/data-chart/axis-sharing/ReadMe.md | 2 +- .../charts/data-chart/axis-types/ReadMe.md | 2 +- .../bar-chart-multiple-sources/ReadMe.md | 2 +- .../bar-chart-overlapping/ReadMe.md | 2 +- .../bar-chart-single-source/ReadMe.md | 2 +- .../data-chart/bar-chart-styling/ReadMe.md | 2 +- .../callout-layer-styling/ReadMe.md | 2 +- .../data-chart/chart-navigation/ReadMe.md | 2 +- .../data-chart/chart-overview/ReadMe.md | 2 +- .../data-chart/chart-performance/ReadMe.md | 2 +- .../chart-synchronization/ReadMe.md | 2 +- .../charts/data-chart/chart-titles/ReadMe.md | 2 +- .../data-chart/column-chart-styling/ReadMe.md | 2 +- .../data-chart/composite-chart/ReadMe.md | 2 +- .../crosshair-layer-styling/ReadMe.md | 2 +- .../custom-drawing-annotations/ReadMe.md | 10 ++-- .../data-chart/custom-editing-data/ReadMe.md | 10 ++-- .../data-chart/dash-array-axes/ReadMe.md | 2 +- .../data-chart/dash-array-series/ReadMe.md | 2 +- .../data-chart/dash-array-tickmarks/ReadMe.md | 2 +- .../data-chart/dash-array-trendline/ReadMe.md | 2 +- .../charts/data-chart/data-legend/ReadMe.md | 2 +- .../charts/data-chart/data-tooltip/ReadMe.md | 2 +- .../final-value-layer-styling/ReadMe.md | 2 +- .../financial-price-series/ReadMe.md | 2 +- .../data-chart/format-specifiers/ReadMe.md | 50 +++++++++++++++++++ samples/charts/data-chart/legends/ReadMe.md | 2 +- .../polar-area-chart-styling/ReadMe.md | 2 +- .../data-chart/polar-area-chart/ReadMe.md | 2 +- .../data-chart/polar-chart-types/ReadMe.md | 2 +- .../data-chart/polar-line-chart/ReadMe.md | 2 +- .../data-chart/polar-scatter-chart/ReadMe.md | 2 +- .../polar-spline-area-chart/ReadMe.md | 2 +- .../data-chart/polar-spline-chart/ReadMe.md | 2 +- .../radial-area-chart-styling/ReadMe.md | 2 +- .../data-chart/radial-area-chart/ReadMe.md | 2 +- .../data-chart/radial-chart-types/ReadMe.md | 2 +- .../data-chart/radial-column-chart/ReadMe.md | 2 +- .../data-chart/radial-line-chart/ReadMe.md | 2 +- .../data-chart/radial-pie-chart/ReadMe.md | 2 +- .../data-chart/range-area-chart/ReadMe.md | 2 +- .../data-chart/range-column-chart/ReadMe.md | 2 +- .../ReadMe.md | 2 +- .../ReadMe.md | 2 +- .../scatter-bubble-chart-styling/ReadMe.md | 2 +- .../data-chart/scatter-line-chart/ReadMe.md | 2 +- .../data-chart/scatter-point-chart/ReadMe.md | 2 +- .../data-chart/scatter-spline-chart/ReadMe.md | 2 +- .../data-chart/series-animations/ReadMe.md | 2 +- .../data-chart/series-annotations/ReadMe.md | 2 +- .../data-chart/series-highlighting/ReadMe.md | 2 +- .../series-marker-template/ReadMe.md | 2 +- .../data-chart/series-markers/ReadMe.md | 2 +- .../data-chart/series-tooltips/ReadMe.md | 2 +- .../data-chart/series-trendlines/ReadMe.md | 2 +- .../data-chart/series-value-overlay/ReadMe.md | 2 +- .../stacked-100-area-chart/ReadMe.md | 2 +- .../stacked-100-bar-chart/ReadMe.md | 2 +- .../stacked-100-column-chart/ReadMe.md | 2 +- .../stacked-100-line-chart/ReadMe.md | 2 +- .../stacked-100-spline-area-chart/ReadMe.md | 2 +- .../stacked-100-spline-chart/ReadMe.md | 2 +- .../data-chart/stacked-area-chart/ReadMe.md | 2 +- .../data-chart/stacked-bar-chart/ReadMe.md | 2 +- .../data-chart/stacked-chart-types/ReadMe.md | 2 +- .../data-chart/stacked-column-chart/ReadMe.md | 2 +- .../data-chart/stacked-line-chart/ReadMe.md | 2 +- .../stacked-spline-area-chart/ReadMe.md | 2 +- .../data-chart/stacked-spline-chart/ReadMe.md | 2 +- .../data-chart/tooltip-template/ReadMe.md | 2 +- .../data-chart/transition-event/ReadMe.md | 2 +- .../type-category-area-series/ReadMe.md | 2 +- .../type-category-bar-series/ReadMe.md | 2 +- .../type-category-column-series/ReadMe.md | 2 +- .../type-category-line-series/ReadMe.md | 2 +- .../type-category-point-series/ReadMe.md | 2 +- .../data-chart/type-category-series/ReadMe.md | 2 +- .../ReadMe.md | 2 +- .../type-category-spline-series/ReadMe.md | 2 +- .../type-category-step-area-series/ReadMe.md | 2 +- .../type-category-step-line-series/ReadMe.md | 2 +- .../type-category-waterfall-series/ReadMe.md | 2 +- .../type-financial-area-indicators/ReadMe.md | 2 +- .../ReadMe.md | 2 +- .../ReadMe.md | 2 +- .../type-financial-line-indicators/ReadMe.md | 2 +- .../type-financial-ohlc-series/ReadMe.md | 2 +- .../type-financial-overlays/ReadMe.md | 2 +- .../type-financial-series/ReadMe.md | 2 +- .../type-radial-area-series/ReadMe.md | 2 +- .../type-radial-column-series/ReadMe.md | 2 +- .../type-radial-line-series/ReadMe.md | 2 +- .../type-radial-pie-series/ReadMe.md | 2 +- .../type-range-area-series/ReadMe.md | 2 +- .../type-range-column-series/ReadMe.md | 2 +- .../data-chart/type-range-series/ReadMe.md | 2 +- .../type-scatter-area-series/ReadMe.md | 2 +- .../type-scatter-bubble-series/ReadMe.md | 2 +- .../type-scatter-contour-series/ReadMe.md | 2 +- .../type-scatter-hd-series/ReadMe.md | 2 +- .../type-scatter-line-series/ReadMe.md | 2 +- .../type-scatter-point-series/ReadMe.md | 2 +- .../type-scatter-polygon-series/ReadMe.md | 2 +- .../type-scatter-polyline-series/ReadMe.md | 2 +- .../data-chart/type-scatter-series/ReadMe.md | 2 +- .../type-scatter-spline-series/ReadMe.md | 2 +- .../data-chart/type-shape-series/ReadMe.md | 2 +- .../type-stacked-100-area-series/ReadMe.md | 2 +- .../type-stacked-100-bar-series/ReadMe.md | 2 +- .../type-stacked-100-column-series/ReadMe.md | 2 +- .../type-stacked-100-line-series/ReadMe.md | 2 +- .../ReadMe.md | 2 +- .../type-stacked-100-spline-series/ReadMe.md | 2 +- .../type-stacked-area-series/ReadMe.md | 2 +- .../type-stacked-bar-series/ReadMe.md | 2 +- .../type-stacked-column-series/ReadMe.md | 2 +- .../type-stacked-line-series/ReadMe.md | 2 +- .../type-stacked-spline-area-series/ReadMe.md | 2 +- .../type-stacked-spline-series/ReadMe.md | 2 +- .../data-chart/waterfall-chart/ReadMe.md | 2 +- .../charts/doughnut-chart/animation/ReadMe.md | 2 +- .../charts/doughnut-chart/explosion/ReadMe.md | 2 +- .../charts/doughnut-chart/legend/ReadMe.md | 2 +- .../charts/doughnut-chart/overview/ReadMe.md | 2 +- samples/charts/doughnut-chart/rings/ReadMe.md | 2 +- .../charts/doughnut-chart/selection/ReadMe.md | 2 +- .../financial-chart/annotations/ReadMe.md | 2 +- .../financial-chart/axis-types/ReadMe.md | 2 +- .../data-legend-formatting-currency/ReadMe.md | 2 +- .../data-legend-styling-props/ReadMe.md | 2 +- .../financial-chart/data-legend/ReadMe.md | 2 +- .../ReadMe.md | 2 +- .../data-tooltip-styling-props/ReadMe.md | 2 +- .../financial-chart/data-tooltip/ReadMe.md | 2 +- .../format-specifiers/ReadMe.md | 50 +++++++++++++++++++ .../financial-chart/high-frequency/ReadMe.md | 2 +- .../financial-chart/high-volume/ReadMe.md | 2 +- .../indicator-customization/ReadMe.md | 2 +- .../financial-chart/indicator-types/ReadMe.md | 2 +- .../financial-chart/multiple-data/ReadMe.md | 2 +- .../financial-chart/multiple-feeds/ReadMe.md | 2 +- .../charts/financial-chart/overview/ReadMe.md | 2 +- .../charts/financial-chart/panes/ReadMe.md | 2 +- .../financial-chart/performance/ReadMe.md | 2 +- .../financial-chart/scrollbars/ReadMe.md | 2 +- .../stock-index-chart/ReadMe.md | 2 +- .../charts/financial-chart/styling/ReadMe.md | 2 +- .../charts/financial-chart/theming/ReadMe.md | 2 +- .../financial-chart/time-based-data/ReadMe.md | 2 +- .../charts/financial-chart/titles/ReadMe.md | 2 +- .../tooltip-template/ReadMe.md | 2 +- .../financial-chart/tooltip-types/ReadMe.md | 2 +- .../financial-chart/trendlines/ReadMe.md | 2 +- .../financial-chart/volume-types/ReadMe.md | 2 +- samples/charts/pie-chart/animation/ReadMe.md | 2 +- samples/charts/pie-chart/explosion/ReadMe.md | 2 +- samples/charts/pie-chart/legend/ReadMe.md | 2 +- samples/charts/pie-chart/others/ReadMe.md | 2 +- samples/charts/pie-chart/overview/ReadMe.md | 2 +- samples/charts/pie-chart/selection/ReadMe.md | 2 +- samples/charts/pie-chart/styling/ReadMe.md | 2 +- .../charts/sparkline/display-area/ReadMe.md | 2 +- .../charts/sparkline/display-column/ReadMe.md | 2 +- .../charts/sparkline/display-lines/ReadMe.md | 2 +- .../charts/sparkline/display-types/ReadMe.md | 2 +- .../sparkline/display-winloss/ReadMe.md | 2 +- samples/charts/sparkline/grid/ReadMe.md | 2 +- samples/charts/sparkline/markers/ReadMe.md | 2 +- .../charts/sparkline/normal-range/ReadMe.md | 2 +- samples/charts/sparkline/trendlines/ReadMe.md | 2 +- .../charts/sparkline/unknown-values/ReadMe.md | 2 +- .../actions-built-in-category-chart/ReadMe.md | 2 +- .../actions-built-in-data-chart/ReadMe.md | 2 +- .../layout-actions-for-data-chart/ReadMe.md | 2 +- .../layout-in-vertical-orientation/ReadMe.md | 2 +- samples/charts/toolbar/theming/ReadMe.md | 2 +- samples/charts/tree-map/events/ReadMe.md | 2 +- samples/charts/tree-map/layout/ReadMe.md | 2 +- samples/charts/tree-map/overview/ReadMe.md | 2 +- samples/charts/tree-map/styling/ReadMe.md | 2 +- samples/charts/zoomslider/overview/ReadMe.md | 2 +- .../operations-on-workbooks/ReadMe.md | 2 +- .../operations-on-worksheets/ReadMe.md | 2 +- .../excel/excel-library/overview/ReadMe.md | 2 +- .../working-with-cells/ReadMe.md | 2 +- .../working-with-charts/ReadMe.md | 2 +- .../working-with-sparklines/ReadMe.md | 2 +- .../working-with-tables/ReadMe.md | 2 +- .../excel/spreadsheet/activation/ReadMe.md | 2 +- .../excel/spreadsheet/adapter-chart/ReadMe.md | 2 +- .../excel/spreadsheet/adapter-combo/ReadMe.md | 2 +- samples/excel/spreadsheet/clipboard/ReadMe.md | 2 +- samples/excel/spreadsheet/commands/ReadMe.md | 2 +- .../conditional-formatting/ReadMe.md | 2 +- .../spreadsheet/config-options/ReadMe.md | 2 +- .../spreadsheet/data-validation/ReadMe.md | 2 +- .../excel/spreadsheet/hyperlinks/ReadMe.md | 2 +- samples/excel/spreadsheet/overview/ReadMe.md | 2 +- .../gauges/bullet-graph/animation/ReadMe.md | 2 +- .../gauges/bullet-graph/background/ReadMe.md | 2 +- samples/gauges/bullet-graph/labels/ReadMe.md | 2 +- .../gauges/bullet-graph/measures/ReadMe.md | 2 +- samples/gauges/bullet-graph/ranges/ReadMe.md | 2 +- samples/gauges/bullet-graph/scale/ReadMe.md | 2 +- .../gauges/bullet-graph/tickmarks/ReadMe.md | 2 +- .../gauges/linear-gauge/animation/ReadMe.md | 2 +- samples/gauges/linear-gauge/backing/ReadMe.md | 2 +- samples/gauges/linear-gauge/labels/ReadMe.md | 2 +- samples/gauges/linear-gauge/needle/ReadMe.md | 2 +- samples/gauges/linear-gauge/ranges/ReadMe.md | 2 +- samples/gauges/linear-gauge/scale/ReadMe.md | 2 +- .../gauges/linear-gauge/tickmarks/ReadMe.md | 2 +- .../gauges/radial-gauge/animation/ReadMe.md | 2 +- samples/gauges/radial-gauge/backing/ReadMe.md | 2 +- samples/gauges/radial-gauge/labels/ReadMe.md | 2 +- samples/gauges/radial-gauge/needle/ReadMe.md | 2 +- samples/gauges/radial-gauge/ranges/ReadMe.md | 2 +- samples/gauges/radial-gauge/scale/ReadMe.md | 2 +- .../gauges/radial-gauge/tickmarks/ReadMe.md | 2 +- .../maps/geo-map/binding-data-csv/ReadMe.md | 2 +- .../binding-data-json-points/ReadMe.md | 2 +- .../maps/geo-map/binding-data-model/ReadMe.md | 2 +- .../geo-map/binding-multiple-shapes/ReadMe.md | 2 +- .../binding-multiple-sources/ReadMe.md | 2 +- .../maps/geo-map/binding-shp-points/ReadMe.md | 2 +- .../geo-map/binding-shp-polygons/ReadMe.md | 2 +- .../geo-map/binding-shp-polylines/ReadMe.md | 2 +- .../maps/geo-map/custom-tooltips/ReadMe.md | 2 +- .../geo-map/display-bing-imagery/ReadMe.md | 2 +- .../geo-map/display-esri-imagery/ReadMe.md | 2 +- .../geo-map/display-heat-imagery/ReadMe.md | 2 +- .../geo-map/display-osm-imagery/ReadMe.md | 2 +- samples/maps/geo-map/marker-layouts/ReadMe.md | 2 +- .../maps/geo-map/marker-template/ReadMe.md | 2 +- samples/maps/geo-map/marker-type/ReadMe.md | 2 +- samples/maps/geo-map/navigation/ReadMe.md | 2 +- samples/maps/geo-map/overview/ReadMe.md | 2 +- samples/maps/geo-map/shape-styling/ReadMe.md | 2 +- .../maps/geo-map/triangulating-data/ReadMe.md | 2 +- .../type-scatter-area-series/ReadMe.md | 2 +- .../type-scatter-bubble-series/ReadMe.md | 2 +- .../type-scatter-contour-series/ReadMe.md | 2 +- .../type-scatter-density-series/ReadMe.md | 2 +- .../type-scatter-symbol-series/ReadMe.md | 2 +- .../type-shape-polygon-series/ReadMe.md | 2 +- .../type-shape-polyline-series/ReadMe.md | 2 +- samples/templates/ReadMe.md | 2 +- 320 files changed, 622 insertions(+), 322 deletions(-) create mode 100644 samples/charts/category-chart/annotations-custom/ReadMe.md create mode 100644 samples/charts/category-chart/custom-selection/ReadMe.md create mode 100644 samples/charts/category-chart/format-specifiers/ReadMe.md create mode 100644 samples/charts/data-chart/annotations-custom/ReadMe.md create mode 100644 samples/charts/data-chart/format-specifiers/ReadMe.md create mode 100644 samples/charts/financial-chart/format-specifiers/ReadMe.md diff --git a/samples/charts/category-chart/annotations-all/ReadMe.md b/samples/charts/category-chart/annotations-all/ReadMe.md index 8e1dfa8f0..a1bd08c6b 100644 --- a/samples/charts/category-chart/annotations-all/ReadMe.md +++ b/samples/charts/category-chart/annotations-all/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/annotations-callouts/ReadMe.md b/samples/charts/category-chart/annotations-callouts/ReadMe.md index 99def4b8b..d2a508d9f 100644 --- a/samples/charts/category-chart/annotations-callouts/ReadMe.md +++ b/samples/charts/category-chart/annotations-callouts/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/annotations-crosshairs/ReadMe.md b/samples/charts/category-chart/annotations-crosshairs/ReadMe.md index fc83d5b28..bdbe356ed 100644 --- a/samples/charts/category-chart/annotations-crosshairs/ReadMe.md +++ b/samples/charts/category-chart/annotations-crosshairs/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/annotations-custom/ReadMe.md b/samples/charts/category-chart/annotations-custom/ReadMe.md new file mode 100644 index 000000000..f68e6e838 --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/ReadMe.md @@ -0,0 +1,50 @@ + + + +This folder contains Angular application with example of Annotations Custom feature using [CategoryChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +cd ./igniteui-angular-examples +cd ../samples/charts/category-chart/annotations-custom +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/category-chart/annotations-final-value/ReadMe.md b/samples/charts/category-chart/annotations-final-value/ReadMe.md index 8f2c7f353..ca57ee570 100644 --- a/samples/charts/category-chart/annotations-final-value/ReadMe.md +++ b/samples/charts/category-chart/annotations-final-value/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/annotations-highlighting/ReadMe.md b/samples/charts/category-chart/annotations-highlighting/ReadMe.md index 268ceaf5e..5bf4de9d4 100644 --- a/samples/charts/category-chart/annotations-highlighting/ReadMe.md +++ b/samples/charts/category-chart/annotations-highlighting/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/annotations/ReadMe.md b/samples/charts/category-chart/annotations/ReadMe.md index b94bfaba0..de9b23a7c 100644 --- a/samples/charts/category-chart/annotations/ReadMe.md +++ b/samples/charts/category-chart/annotations/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/area-chart-multiple-sources/ReadMe.md b/samples/charts/category-chart/area-chart-multiple-sources/ReadMe.md index 3e777a365..40d436153 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/area-chart-multiple-sources/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/area-chart-single-source/ReadMe.md b/samples/charts/category-chart/area-chart-single-source/ReadMe.md index 8ce695d8f..d87a155e5 100644 --- a/samples/charts/category-chart/area-chart-single-source/ReadMe.md +++ b/samples/charts/category-chart/area-chart-single-source/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/area-chart-styling/ReadMe.md b/samples/charts/category-chart/area-chart-styling/ReadMe.md index 0a9dde271..4eac521cb 100644 --- a/samples/charts/category-chart/area-chart-styling/ReadMe.md +++ b/samples/charts/category-chart/area-chart-styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/axis-gap/ReadMe.md b/samples/charts/category-chart/axis-gap/ReadMe.md index d093bdec3..3016380c5 100644 --- a/samples/charts/category-chart/axis-gap/ReadMe.md +++ b/samples/charts/category-chart/axis-gap/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/axis-gridlines/ReadMe.md b/samples/charts/category-chart/axis-gridlines/ReadMe.md index a31a13162..575eac08c 100644 --- a/samples/charts/category-chart/axis-gridlines/ReadMe.md +++ b/samples/charts/category-chart/axis-gridlines/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/axis-inverted/ReadMe.md b/samples/charts/category-chart/axis-inverted/ReadMe.md index f40ef11b5..348582600 100644 --- a/samples/charts/category-chart/axis-inverted/ReadMe.md +++ b/samples/charts/category-chart/axis-inverted/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/axis-labels/ReadMe.md b/samples/charts/category-chart/axis-labels/ReadMe.md index 67be1bd32..688585ac5 100644 --- a/samples/charts/category-chart/axis-labels/ReadMe.md +++ b/samples/charts/category-chart/axis-labels/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/axis-locations/ReadMe.md b/samples/charts/category-chart/axis-locations/ReadMe.md index 13a9bd91c..4dcf8b687 100644 --- a/samples/charts/category-chart/axis-locations/ReadMe.md +++ b/samples/charts/category-chart/axis-locations/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/axis-options/ReadMe.md b/samples/charts/category-chart/axis-options/ReadMe.md index 07e91f280..90ef9c2df 100644 --- a/samples/charts/category-chart/axis-options/ReadMe.md +++ b/samples/charts/category-chart/axis-options/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/axis-overlap/ReadMe.md b/samples/charts/category-chart/axis-overlap/ReadMe.md index 7c76844f2..7640a37a7 100644 --- a/samples/charts/category-chart/axis-overlap/ReadMe.md +++ b/samples/charts/category-chart/axis-overlap/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/axis-range/ReadMe.md b/samples/charts/category-chart/axis-range/ReadMe.md index 883ed0bee..d80fd6ff5 100644 --- a/samples/charts/category-chart/axis-range/ReadMe.md +++ b/samples/charts/category-chart/axis-range/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/axis-tickmarks/ReadMe.md b/samples/charts/category-chart/axis-tickmarks/ReadMe.md index 333d36d1c..7f818aa78 100644 --- a/samples/charts/category-chart/axis-tickmarks/ReadMe.md +++ b/samples/charts/category-chart/axis-tickmarks/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/axis-titles/ReadMe.md b/samples/charts/category-chart/axis-titles/ReadMe.md index 462875fc5..9fb5bedc4 100644 --- a/samples/charts/category-chart/axis-titles/ReadMe.md +++ b/samples/charts/category-chart/axis-titles/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/column-chart-multiple-sources/ReadMe.md b/samples/charts/category-chart/column-chart-multiple-sources/ReadMe.md index fd955364b..200b63cca 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/column-chart-multiple-sources/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/column-chart-single-source/ReadMe.md b/samples/charts/category-chart/column-chart-single-source/ReadMe.md index 58e971089..6bb93afea 100644 --- a/samples/charts/category-chart/column-chart-single-source/ReadMe.md +++ b/samples/charts/category-chart/column-chart-single-source/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/column-chart-styling/ReadMe.md b/samples/charts/category-chart/column-chart-styling/ReadMe.md index b88a2e9a0..3d8408fc0 100644 --- a/samples/charts/category-chart/column-chart-styling/ReadMe.md +++ b/samples/charts/category-chart/column-chart-styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/column-chart-with-highlighting/ReadMe.md b/samples/charts/category-chart/column-chart-with-highlighting/ReadMe.md index a66dfec22..dd8120e10 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/ReadMe.md +++ b/samples/charts/category-chart/column-chart-with-highlighting/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/column-chart-with-tooltips/ReadMe.md b/samples/charts/category-chart/column-chart-with-tooltips/ReadMe.md index 30a265be4..1bdb2002c 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/ReadMe.md +++ b/samples/charts/category-chart/column-chart-with-tooltips/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/custom-selection/ReadMe.md b/samples/charts/category-chart/custom-selection/ReadMe.md new file mode 100644 index 000000000..0c24d8b88 --- /dev/null +++ b/samples/charts/category-chart/custom-selection/ReadMe.md @@ -0,0 +1,50 @@ + + + +This folder contains Angular application with example of Custom Selection feature using [CategoryChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +cd ./igniteui-angular-examples +cd ../samples/charts/category-chart/custom-selection +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/category-chart/data-aggregations/ReadMe.md b/samples/charts/category-chart/data-aggregations/ReadMe.md index afac8c51f..ac3cbab30 100644 --- a/samples/charts/category-chart/data-aggregations/ReadMe.md +++ b/samples/charts/category-chart/data-aggregations/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/ReadMe.md b/samples/charts/category-chart/data-legend-formatting-decimals/ReadMe.md index 0278ead67..5b63b4775 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/ReadMe.md +++ b/samples/charts/category-chart/data-legend-formatting-decimals/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/data-legend/ReadMe.md b/samples/charts/category-chart/data-legend/ReadMe.md index f35760f45..3f608160e 100644 --- a/samples/charts/category-chart/data-legend/ReadMe.md +++ b/samples/charts/category-chart/data-legend/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/ReadMe.md b/samples/charts/category-chart/data-tooltip-formatting-decimals/ReadMe.md index 52b5b5add..fdbc65735 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/ReadMe.md +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/data-tooltip-positioning/ReadMe.md b/samples/charts/category-chart/data-tooltip-positioning/ReadMe.md index e0f1b2ca9..27c5c1ede 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/ReadMe.md +++ b/samples/charts/category-chart/data-tooltip-positioning/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/data-tooltip/ReadMe.md b/samples/charts/category-chart/data-tooltip/ReadMe.md index d075aca37..cd5b7572d 100644 --- a/samples/charts/category-chart/data-tooltip/ReadMe.md +++ b/samples/charts/category-chart/data-tooltip/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/format-specifiers/ReadMe.md b/samples/charts/category-chart/format-specifiers/ReadMe.md new file mode 100644 index 000000000..2744acb35 --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/ReadMe.md @@ -0,0 +1,50 @@ + + + +This folder contains Angular application with example of Format Specifiers feature using [CategoryChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +cd ./igniteui-angular-examples +cd ../samples/charts/category-chart/format-specifiers +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/category-chart/high-frequency/ReadMe.md b/samples/charts/category-chart/high-frequency/ReadMe.md index 0b85ac779..6ac30b630 100644 --- a/samples/charts/category-chart/high-frequency/ReadMe.md +++ b/samples/charts/category-chart/high-frequency/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/high-volume/ReadMe.md b/samples/charts/category-chart/high-volume/ReadMe.md index 4a8d14712..59a384fd3 100644 --- a/samples/charts/category-chart/high-volume/ReadMe.md +++ b/samples/charts/category-chart/high-volume/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/highlighting/ReadMe.md b/samples/charts/category-chart/highlighting/ReadMe.md index ec4b2eef8..a67b4c29d 100644 --- a/samples/charts/category-chart/highlighting/ReadMe.md +++ b/samples/charts/category-chart/highlighting/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/line-chart-multiple-sources/ReadMe.md b/samples/charts/category-chart/line-chart-multiple-sources/ReadMe.md index 6b01fcfe7..80a5483a3 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/line-chart-multiple-sources/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/line-chart-single-source/ReadMe.md b/samples/charts/category-chart/line-chart-single-source/ReadMe.md index fc2df7157..7d4cb48f8 100644 --- a/samples/charts/category-chart/line-chart-single-source/ReadMe.md +++ b/samples/charts/category-chart/line-chart-single-source/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/line-chart-styling/ReadMe.md b/samples/charts/category-chart/line-chart-styling/ReadMe.md index e7b56109b..2af51a324 100644 --- a/samples/charts/category-chart/line-chart-styling/ReadMe.md +++ b/samples/charts/category-chart/line-chart-styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/line-chart-with-animations/ReadMe.md b/samples/charts/category-chart/line-chart-with-animations/ReadMe.md index 16343ac78..0774ee1f7 100644 --- a/samples/charts/category-chart/line-chart-with-animations/ReadMe.md +++ b/samples/charts/category-chart/line-chart-with-animations/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/line-chart-with-annotations/ReadMe.md b/samples/charts/category-chart/line-chart-with-annotations/ReadMe.md index 4e59eb641..b78d472e9 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/ReadMe.md +++ b/samples/charts/category-chart/line-chart-with-annotations/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/line-chart-with-legend/ReadMe.md b/samples/charts/category-chart/line-chart-with-legend/ReadMe.md index 449b58683..611633358 100644 --- a/samples/charts/category-chart/line-chart-with-legend/ReadMe.md +++ b/samples/charts/category-chart/line-chart-with-legend/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/marker-options/ReadMe.md b/samples/charts/category-chart/marker-options/ReadMe.md index 8e0e02c14..c1c19c5cb 100644 --- a/samples/charts/category-chart/marker-options/ReadMe.md +++ b/samples/charts/category-chart/marker-options/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/marker-templates/ReadMe.md b/samples/charts/category-chart/marker-templates/ReadMe.md index fd8ed1a71..22d0bd884 100644 --- a/samples/charts/category-chart/marker-templates/ReadMe.md +++ b/samples/charts/category-chart/marker-templates/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/overview/ReadMe.md b/samples/charts/category-chart/overview/ReadMe.md index 15daf5ce8..32830cdf7 100644 --- a/samples/charts/category-chart/overview/ReadMe.md +++ b/samples/charts/category-chart/overview/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/point-chart-multiple-sources/ReadMe.md b/samples/charts/category-chart/point-chart-multiple-sources/ReadMe.md index 28c6ef453..11042d3b6 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/point-chart-multiple-sources/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/point-chart-single-source/ReadMe.md b/samples/charts/category-chart/point-chart-single-source/ReadMe.md index 0eca769e1..0de9d3945 100644 --- a/samples/charts/category-chart/point-chart-single-source/ReadMe.md +++ b/samples/charts/category-chart/point-chart-single-source/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/point-chart-styling/ReadMe.md b/samples/charts/category-chart/point-chart-styling/ReadMe.md index ca1f57734..a3ca7a8a1 100644 --- a/samples/charts/category-chart/point-chart-styling/ReadMe.md +++ b/samples/charts/category-chart/point-chart-styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/spline-area-multiple-sources/ReadMe.md b/samples/charts/category-chart/spline-area-multiple-sources/ReadMe.md index 6ce49b2aa..442a01d35 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/spline-area-multiple-sources/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/spline-area-single-source/ReadMe.md b/samples/charts/category-chart/spline-area-single-source/ReadMe.md index 811667f81..e9c85b682 100644 --- a/samples/charts/category-chart/spline-area-single-source/ReadMe.md +++ b/samples/charts/category-chart/spline-area-single-source/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/spline-area-styling/ReadMe.md b/samples/charts/category-chart/spline-area-styling/ReadMe.md index 17d0e8b52..fd589ca82 100644 --- a/samples/charts/category-chart/spline-area-styling/ReadMe.md +++ b/samples/charts/category-chart/spline-area-styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/spline-multiple-sources/ReadMe.md b/samples/charts/category-chart/spline-multiple-sources/ReadMe.md index dc7ca6cf5..53037ecba 100644 --- a/samples/charts/category-chart/spline-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/spline-multiple-sources/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/spline-single-source/ReadMe.md b/samples/charts/category-chart/spline-single-source/ReadMe.md index 8aa434d51..185486822 100644 --- a/samples/charts/category-chart/spline-single-source/ReadMe.md +++ b/samples/charts/category-chart/spline-single-source/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/spline-styling/ReadMe.md b/samples/charts/category-chart/spline-styling/ReadMe.md index d02e04f5b..97e754c2d 100644 --- a/samples/charts/category-chart/spline-styling/ReadMe.md +++ b/samples/charts/category-chart/spline-styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/stack-columns/ReadMe.md b/samples/charts/category-chart/stack-columns/ReadMe.md index f678f534b..cec5b5aee 100644 --- a/samples/charts/category-chart/stack-columns/ReadMe.md +++ b/samples/charts/category-chart/stack-columns/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/step-area-multiple-sources/ReadMe.md b/samples/charts/category-chart/step-area-multiple-sources/ReadMe.md index c71ac7d90..b47ef0a13 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/step-area-multiple-sources/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/step-area-single-source/ReadMe.md b/samples/charts/category-chart/step-area-single-source/ReadMe.md index 75c6a5b4c..a6f780ce1 100644 --- a/samples/charts/category-chart/step-area-single-source/ReadMe.md +++ b/samples/charts/category-chart/step-area-single-source/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/step-area-styling/ReadMe.md b/samples/charts/category-chart/step-area-styling/ReadMe.md index 9a3c455f6..34e34fd26 100644 --- a/samples/charts/category-chart/step-area-styling/ReadMe.md +++ b/samples/charts/category-chart/step-area-styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/step-line-multiple-sources/ReadMe.md b/samples/charts/category-chart/step-line-multiple-sources/ReadMe.md index 6354cb014..af9fe2931 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/step-line-multiple-sources/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/step-line-single-source/ReadMe.md b/samples/charts/category-chart/step-line-single-source/ReadMe.md index 4daa9deab..f9829fc36 100644 --- a/samples/charts/category-chart/step-line-single-source/ReadMe.md +++ b/samples/charts/category-chart/step-line-single-source/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/step-line-styling/ReadMe.md b/samples/charts/category-chart/step-line-styling/ReadMe.md index 1c7a88a4b..8688060c5 100644 --- a/samples/charts/category-chart/step-line-styling/ReadMe.md +++ b/samples/charts/category-chart/step-line-styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/tooltip-template/ReadMe.md b/samples/charts/category-chart/tooltip-template/ReadMe.md index 44da112af..5bb885b91 100644 --- a/samples/charts/category-chart/tooltip-template/ReadMe.md +++ b/samples/charts/category-chart/tooltip-template/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/tooltip-types/ReadMe.md b/samples/charts/category-chart/tooltip-types/ReadMe.md index 103e8c4e7..deb1973a8 100644 --- a/samples/charts/category-chart/tooltip-types/ReadMe.md +++ b/samples/charts/category-chart/tooltip-types/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/trendline/ReadMe.md b/samples/charts/category-chart/trendline/ReadMe.md index 5df07cfbb..a8639604f 100644 --- a/samples/charts/category-chart/trendline/ReadMe.md +++ b/samples/charts/category-chart/trendline/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/category-chart/value-lines/ReadMe.md b/samples/charts/category-chart/value-lines/ReadMe.md index c2ca317a4..211a80623 100644 --- a/samples/charts/category-chart/value-lines/ReadMe.md +++ b/samples/charts/category-chart/value-lines/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/annotations-custom/ReadMe.md b/samples/charts/data-chart/annotations-custom/ReadMe.md new file mode 100644 index 000000000..fb32e925e --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/ReadMe.md @@ -0,0 +1,50 @@ + + + +This folder contains Angular application with example of Annotations Custom feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +cd ./igniteui-angular-examples +cd ../samples/charts/data-chart/annotations-custom +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/ReadMe.md b/samples/charts/data-chart/axis-annotations-corner-radius/ReadMe.md index ea8401ab3..6049cb66d 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/ReadMe.md +++ b/samples/charts/data-chart/axis-annotations-corner-radius/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/axis-annotations/ReadMe.md b/samples/charts/data-chart/axis-annotations/ReadMe.md index f5a9f2d0e..c68d0cbe5 100644 --- a/samples/charts/data-chart/axis-annotations/ReadMe.md +++ b/samples/charts/data-chart/axis-annotations/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/axis-crossing/ReadMe.md b/samples/charts/data-chart/axis-crossing/ReadMe.md index 4f4c8734c..1c0c3713c 100644 --- a/samples/charts/data-chart/axis-crossing/ReadMe.md +++ b/samples/charts/data-chart/axis-crossing/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/axis-label-rotation/ReadMe.md b/samples/charts/data-chart/axis-label-rotation/ReadMe.md index 9a1e21e5f..b49de03e6 100644 --- a/samples/charts/data-chart/axis-label-rotation/ReadMe.md +++ b/samples/charts/data-chart/axis-label-rotation/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/axis-locations/ReadMe.md b/samples/charts/data-chart/axis-locations/ReadMe.md index 81f02d65c..f46127e00 100644 --- a/samples/charts/data-chart/axis-locations/ReadMe.md +++ b/samples/charts/data-chart/axis-locations/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/axis-min-max-gap/ReadMe.md b/samples/charts/data-chart/axis-min-max-gap/ReadMe.md index de3aa0283..a51a380ac 100644 --- a/samples/charts/data-chart/axis-min-max-gap/ReadMe.md +++ b/samples/charts/data-chart/axis-min-max-gap/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/axis-settings/ReadMe.md b/samples/charts/data-chart/axis-settings/ReadMe.md index 895f55f15..b20f03828 100644 --- a/samples/charts/data-chart/axis-settings/ReadMe.md +++ b/samples/charts/data-chart/axis-settings/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/axis-sharing/ReadMe.md b/samples/charts/data-chart/axis-sharing/ReadMe.md index a8218d6ca..9910c89e3 100644 --- a/samples/charts/data-chart/axis-sharing/ReadMe.md +++ b/samples/charts/data-chart/axis-sharing/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/axis-types/ReadMe.md b/samples/charts/data-chart/axis-types/ReadMe.md index fee49e63c..f8b29537b 100644 --- a/samples/charts/data-chart/axis-types/ReadMe.md +++ b/samples/charts/data-chart/axis-types/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/ReadMe.md b/samples/charts/data-chart/bar-chart-multiple-sources/ReadMe.md index cd422dbba..4b494ad11 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/ReadMe.md +++ b/samples/charts/data-chart/bar-chart-multiple-sources/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/bar-chart-overlapping/ReadMe.md b/samples/charts/data-chart/bar-chart-overlapping/ReadMe.md index d6753f4f9..a893f72e4 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/ReadMe.md +++ b/samples/charts/data-chart/bar-chart-overlapping/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/bar-chart-single-source/ReadMe.md b/samples/charts/data-chart/bar-chart-single-source/ReadMe.md index c3604d2c6..cf40fb86a 100644 --- a/samples/charts/data-chart/bar-chart-single-source/ReadMe.md +++ b/samples/charts/data-chart/bar-chart-single-source/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/bar-chart-styling/ReadMe.md b/samples/charts/data-chart/bar-chart-styling/ReadMe.md index 284b240ae..fa56cceac 100644 --- a/samples/charts/data-chart/bar-chart-styling/ReadMe.md +++ b/samples/charts/data-chart/bar-chart-styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/callout-layer-styling/ReadMe.md b/samples/charts/data-chart/callout-layer-styling/ReadMe.md index dc26a3ea4..bea3e19e2 100644 --- a/samples/charts/data-chart/callout-layer-styling/ReadMe.md +++ b/samples/charts/data-chart/callout-layer-styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/chart-navigation/ReadMe.md b/samples/charts/data-chart/chart-navigation/ReadMe.md index cfa456c90..69d20f9c6 100644 --- a/samples/charts/data-chart/chart-navigation/ReadMe.md +++ b/samples/charts/data-chart/chart-navigation/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/chart-overview/ReadMe.md b/samples/charts/data-chart/chart-overview/ReadMe.md index 56b39fb14..a49489cd8 100644 --- a/samples/charts/data-chart/chart-overview/ReadMe.md +++ b/samples/charts/data-chart/chart-overview/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/chart-performance/ReadMe.md b/samples/charts/data-chart/chart-performance/ReadMe.md index 23b26d4a2..54716fbae 100644 --- a/samples/charts/data-chart/chart-performance/ReadMe.md +++ b/samples/charts/data-chart/chart-performance/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/chart-synchronization/ReadMe.md b/samples/charts/data-chart/chart-synchronization/ReadMe.md index 9c66df13d..841380c14 100644 --- a/samples/charts/data-chart/chart-synchronization/ReadMe.md +++ b/samples/charts/data-chart/chart-synchronization/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/chart-titles/ReadMe.md b/samples/charts/data-chart/chart-titles/ReadMe.md index 13ff5becb..b917b3a69 100644 --- a/samples/charts/data-chart/chart-titles/ReadMe.md +++ b/samples/charts/data-chart/chart-titles/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/column-chart-styling/ReadMe.md b/samples/charts/data-chart/column-chart-styling/ReadMe.md index 1b0098853..ef65c5bd5 100644 --- a/samples/charts/data-chart/column-chart-styling/ReadMe.md +++ b/samples/charts/data-chart/column-chart-styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/composite-chart/ReadMe.md b/samples/charts/data-chart/composite-chart/ReadMe.md index dc7020308..79d942922 100644 --- a/samples/charts/data-chart/composite-chart/ReadMe.md +++ b/samples/charts/data-chart/composite-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/crosshair-layer-styling/ReadMe.md b/samples/charts/data-chart/crosshair-layer-styling/ReadMe.md index 64b8e62ce..a5fa5dd94 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/ReadMe.md +++ b/samples/charts/data-chart/crosshair-layer-styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/custom-drawing-annotations/ReadMe.md b/samples/charts/data-chart/custom-drawing-annotations/ReadMe.md index 56b39fb14..9b3d83b3e 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/ReadMe.md +++ b/samples/charts/data-chart/custom-drawing-annotations/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains Angular application with example of Chart Overview feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. +This folder contains Angular application with example of Custom Drawing Annotations feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains Angular application with example of Chart Overview feature View Code - + Run Sample - + Run Sample @@ -28,7 +28,7 @@ To set up this project locally, execute these commands: ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git cd ./igniteui-angular-examples -cd ../samples/charts/data-chart/chart-overview +cd ../samples/charts/data-chart/custom-drawing-annotations ``` open above folder in VS Code or type: @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/custom-editing-data/ReadMe.md b/samples/charts/data-chart/custom-editing-data/ReadMe.md index 56b39fb14..16ba35451 100644 --- a/samples/charts/data-chart/custom-editing-data/ReadMe.md +++ b/samples/charts/data-chart/custom-editing-data/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains Angular application with example of Chart Overview feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. +This folder contains Angular application with example of Custom Editing Data feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains Angular application with example of Chart Overview feature View Code - + Run Sample - + Run Sample @@ -28,7 +28,7 @@ To set up this project locally, execute these commands: ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git cd ./igniteui-angular-examples -cd ../samples/charts/data-chart/chart-overview +cd ../samples/charts/data-chart/custom-editing-data ``` open above folder in VS Code or type: @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/dash-array-axes/ReadMe.md b/samples/charts/data-chart/dash-array-axes/ReadMe.md index 42a757a5a..dd578148c 100644 --- a/samples/charts/data-chart/dash-array-axes/ReadMe.md +++ b/samples/charts/data-chart/dash-array-axes/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/dash-array-series/ReadMe.md b/samples/charts/data-chart/dash-array-series/ReadMe.md index 814657fe5..f24ae21f9 100644 --- a/samples/charts/data-chart/dash-array-series/ReadMe.md +++ b/samples/charts/data-chart/dash-array-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/dash-array-tickmarks/ReadMe.md b/samples/charts/data-chart/dash-array-tickmarks/ReadMe.md index 3e6b0fb84..83c7b834e 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/ReadMe.md +++ b/samples/charts/data-chart/dash-array-tickmarks/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/dash-array-trendline/ReadMe.md b/samples/charts/data-chart/dash-array-trendline/ReadMe.md index 34324fe6c..86b05a612 100644 --- a/samples/charts/data-chart/dash-array-trendline/ReadMe.md +++ b/samples/charts/data-chart/dash-array-trendline/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/data-legend/ReadMe.md b/samples/charts/data-chart/data-legend/ReadMe.md index b4ddacaf7..d15ef9199 100644 --- a/samples/charts/data-chart/data-legend/ReadMe.md +++ b/samples/charts/data-chart/data-legend/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/data-tooltip/ReadMe.md b/samples/charts/data-chart/data-tooltip/ReadMe.md index 9e0099cf9..1c3bb84e0 100644 --- a/samples/charts/data-chart/data-tooltip/ReadMe.md +++ b/samples/charts/data-chart/data-tooltip/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/final-value-layer-styling/ReadMe.md b/samples/charts/data-chart/final-value-layer-styling/ReadMe.md index 6a9e8bcba..63ffdff06 100644 --- a/samples/charts/data-chart/final-value-layer-styling/ReadMe.md +++ b/samples/charts/data-chart/final-value-layer-styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/financial-price-series/ReadMe.md b/samples/charts/data-chart/financial-price-series/ReadMe.md index fd2853e01..f1d943079 100644 --- a/samples/charts/data-chart/financial-price-series/ReadMe.md +++ b/samples/charts/data-chart/financial-price-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/format-specifiers/ReadMe.md b/samples/charts/data-chart/format-specifiers/ReadMe.md new file mode 100644 index 000000000..49bb2000c --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/ReadMe.md @@ -0,0 +1,50 @@ + + + +This folder contains Angular application with example of Format Specifiers feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +cd ./igniteui-angular-examples +cd ../samples/charts/data-chart/format-specifiers +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/legends/ReadMe.md b/samples/charts/data-chart/legends/ReadMe.md index 31423875a..72aeeb7ad 100644 --- a/samples/charts/data-chart/legends/ReadMe.md +++ b/samples/charts/data-chart/legends/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/polar-area-chart-styling/ReadMe.md b/samples/charts/data-chart/polar-area-chart-styling/ReadMe.md index d6f40d547..1b2427e46 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/ReadMe.md +++ b/samples/charts/data-chart/polar-area-chart-styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/polar-area-chart/ReadMe.md b/samples/charts/data-chart/polar-area-chart/ReadMe.md index f9712e86d..974fb1565 100644 --- a/samples/charts/data-chart/polar-area-chart/ReadMe.md +++ b/samples/charts/data-chart/polar-area-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/polar-chart-types/ReadMe.md b/samples/charts/data-chart/polar-chart-types/ReadMe.md index 958875e6e..cb5aab3e0 100644 --- a/samples/charts/data-chart/polar-chart-types/ReadMe.md +++ b/samples/charts/data-chart/polar-chart-types/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/polar-line-chart/ReadMe.md b/samples/charts/data-chart/polar-line-chart/ReadMe.md index 56e47abea..ef5f0edc1 100644 --- a/samples/charts/data-chart/polar-line-chart/ReadMe.md +++ b/samples/charts/data-chart/polar-line-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/polar-scatter-chart/ReadMe.md b/samples/charts/data-chart/polar-scatter-chart/ReadMe.md index 6f5831c33..51f107e33 100644 --- a/samples/charts/data-chart/polar-scatter-chart/ReadMe.md +++ b/samples/charts/data-chart/polar-scatter-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/polar-spline-area-chart/ReadMe.md b/samples/charts/data-chart/polar-spline-area-chart/ReadMe.md index d8d9c598f..935a86614 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/ReadMe.md +++ b/samples/charts/data-chart/polar-spline-area-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/polar-spline-chart/ReadMe.md b/samples/charts/data-chart/polar-spline-chart/ReadMe.md index 9b8aff423..a51abc22a 100644 --- a/samples/charts/data-chart/polar-spline-chart/ReadMe.md +++ b/samples/charts/data-chart/polar-spline-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/radial-area-chart-styling/ReadMe.md b/samples/charts/data-chart/radial-area-chart-styling/ReadMe.md index 4de06ca84..e11a369cd 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/ReadMe.md +++ b/samples/charts/data-chart/radial-area-chart-styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/radial-area-chart/ReadMe.md b/samples/charts/data-chart/radial-area-chart/ReadMe.md index 92c8918ca..2f18c7fed 100644 --- a/samples/charts/data-chart/radial-area-chart/ReadMe.md +++ b/samples/charts/data-chart/radial-area-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/radial-chart-types/ReadMe.md b/samples/charts/data-chart/radial-chart-types/ReadMe.md index 7db42570f..7b26a632b 100644 --- a/samples/charts/data-chart/radial-chart-types/ReadMe.md +++ b/samples/charts/data-chart/radial-chart-types/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/radial-column-chart/ReadMe.md b/samples/charts/data-chart/radial-column-chart/ReadMe.md index 93eeb4d22..4534fa992 100644 --- a/samples/charts/data-chart/radial-column-chart/ReadMe.md +++ b/samples/charts/data-chart/radial-column-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/radial-line-chart/ReadMe.md b/samples/charts/data-chart/radial-line-chart/ReadMe.md index c726f9156..efe70b503 100644 --- a/samples/charts/data-chart/radial-line-chart/ReadMe.md +++ b/samples/charts/data-chart/radial-line-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/radial-pie-chart/ReadMe.md b/samples/charts/data-chart/radial-pie-chart/ReadMe.md index 5f3fac314..3bf1065c5 100644 --- a/samples/charts/data-chart/radial-pie-chart/ReadMe.md +++ b/samples/charts/data-chart/radial-pie-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/range-area-chart/ReadMe.md b/samples/charts/data-chart/range-area-chart/ReadMe.md index fca2d1486..8984b8d83 100644 --- a/samples/charts/data-chart/range-area-chart/ReadMe.md +++ b/samples/charts/data-chart/range-area-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/range-column-chart/ReadMe.md b/samples/charts/data-chart/range-column-chart/ReadMe.md index 9d53e42f3..5ba2198a2 100644 --- a/samples/charts/data-chart/range-column-chart/ReadMe.md +++ b/samples/charts/data-chart/range-column-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/ReadMe.md b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/ReadMe.md index 58328018c..eeb751532 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/ReadMe.md +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/ReadMe.md b/samples/charts/data-chart/scatter-bubble-chart-single-source/ReadMe.md index 56e402fa4..972b9bf5d 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/ReadMe.md +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/ReadMe.md b/samples/charts/data-chart/scatter-bubble-chart-styling/ReadMe.md index 41eee8351..47fd54e00 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/ReadMe.md +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/scatter-line-chart/ReadMe.md b/samples/charts/data-chart/scatter-line-chart/ReadMe.md index 13cccfc4d..ec49b1821 100644 --- a/samples/charts/data-chart/scatter-line-chart/ReadMe.md +++ b/samples/charts/data-chart/scatter-line-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/scatter-point-chart/ReadMe.md b/samples/charts/data-chart/scatter-point-chart/ReadMe.md index 1454263cc..923ca6cc4 100644 --- a/samples/charts/data-chart/scatter-point-chart/ReadMe.md +++ b/samples/charts/data-chart/scatter-point-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/scatter-spline-chart/ReadMe.md b/samples/charts/data-chart/scatter-spline-chart/ReadMe.md index 892a186b1..6f86dc377 100644 --- a/samples/charts/data-chart/scatter-spline-chart/ReadMe.md +++ b/samples/charts/data-chart/scatter-spline-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/series-animations/ReadMe.md b/samples/charts/data-chart/series-animations/ReadMe.md index 37bd4a7b3..f194d89a5 100644 --- a/samples/charts/data-chart/series-animations/ReadMe.md +++ b/samples/charts/data-chart/series-animations/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/series-annotations/ReadMe.md b/samples/charts/data-chart/series-annotations/ReadMe.md index f2d3616c1..feef083c7 100644 --- a/samples/charts/data-chart/series-annotations/ReadMe.md +++ b/samples/charts/data-chart/series-annotations/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/series-highlighting/ReadMe.md b/samples/charts/data-chart/series-highlighting/ReadMe.md index acc4253e4..8aae1a2e4 100644 --- a/samples/charts/data-chart/series-highlighting/ReadMe.md +++ b/samples/charts/data-chart/series-highlighting/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/series-marker-template/ReadMe.md b/samples/charts/data-chart/series-marker-template/ReadMe.md index 04f9dfb4a..a0e82cae8 100644 --- a/samples/charts/data-chart/series-marker-template/ReadMe.md +++ b/samples/charts/data-chart/series-marker-template/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/series-markers/ReadMe.md b/samples/charts/data-chart/series-markers/ReadMe.md index be6ca7aa7..4281b8c5b 100644 --- a/samples/charts/data-chart/series-markers/ReadMe.md +++ b/samples/charts/data-chart/series-markers/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/series-tooltips/ReadMe.md b/samples/charts/data-chart/series-tooltips/ReadMe.md index 1e6e702e6..5e53e65ad 100644 --- a/samples/charts/data-chart/series-tooltips/ReadMe.md +++ b/samples/charts/data-chart/series-tooltips/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/series-trendlines/ReadMe.md b/samples/charts/data-chart/series-trendlines/ReadMe.md index 5d7ec024c..6852c2284 100644 --- a/samples/charts/data-chart/series-trendlines/ReadMe.md +++ b/samples/charts/data-chart/series-trendlines/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/series-value-overlay/ReadMe.md b/samples/charts/data-chart/series-value-overlay/ReadMe.md index a12fe3f85..a803ea115 100644 --- a/samples/charts/data-chart/series-value-overlay/ReadMe.md +++ b/samples/charts/data-chart/series-value-overlay/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/stacked-100-area-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-area-chart/ReadMe.md index 911a0f40d..067618db9 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-area-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/stacked-100-bar-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-bar-chart/ReadMe.md index 24ade9a49..ca17dfcf5 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-bar-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/stacked-100-column-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-column-chart/ReadMe.md index 0c34723f1..eba46f91c 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-column-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/stacked-100-line-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-line-chart/ReadMe.md index 82da04973..2bffcb38e 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-line-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-spline-area-chart/ReadMe.md index fb4807d55..e526ff238 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/stacked-100-spline-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-spline-chart/ReadMe.md index 4f77763a2..eb97e5c3f 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-spline-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/stacked-area-chart/ReadMe.md b/samples/charts/data-chart/stacked-area-chart/ReadMe.md index 2c5942b8e..1bbfeb5be 100644 --- a/samples/charts/data-chart/stacked-area-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-area-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/stacked-bar-chart/ReadMe.md b/samples/charts/data-chart/stacked-bar-chart/ReadMe.md index 7e17ccaab..de281d048 100644 --- a/samples/charts/data-chart/stacked-bar-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-bar-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/stacked-chart-types/ReadMe.md b/samples/charts/data-chart/stacked-chart-types/ReadMe.md index ee379c0be..0fdac7677 100644 --- a/samples/charts/data-chart/stacked-chart-types/ReadMe.md +++ b/samples/charts/data-chart/stacked-chart-types/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/stacked-column-chart/ReadMe.md b/samples/charts/data-chart/stacked-column-chart/ReadMe.md index 0c9805c13..60db3d9c2 100644 --- a/samples/charts/data-chart/stacked-column-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-column-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/stacked-line-chart/ReadMe.md b/samples/charts/data-chart/stacked-line-chart/ReadMe.md index 2018d6f85..79e73b2e6 100644 --- a/samples/charts/data-chart/stacked-line-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-line-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/stacked-spline-area-chart/ReadMe.md b/samples/charts/data-chart/stacked-spline-area-chart/ReadMe.md index b89fe96f3..9b7aadb83 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-spline-area-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/stacked-spline-chart/ReadMe.md b/samples/charts/data-chart/stacked-spline-chart/ReadMe.md index 6fce9889c..32e56e078 100644 --- a/samples/charts/data-chart/stacked-spline-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-spline-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/tooltip-template/ReadMe.md b/samples/charts/data-chart/tooltip-template/ReadMe.md index d721e0190..c01c3be07 100644 --- a/samples/charts/data-chart/tooltip-template/ReadMe.md +++ b/samples/charts/data-chart/tooltip-template/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/transition-event/ReadMe.md b/samples/charts/data-chart/transition-event/ReadMe.md index fa99d4244..e92de3e6d 100644 --- a/samples/charts/data-chart/transition-event/ReadMe.md +++ b/samples/charts/data-chart/transition-event/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-category-area-series/ReadMe.md b/samples/charts/data-chart/type-category-area-series/ReadMe.md index 3abb2e2a9..58fbae5c9 100644 --- a/samples/charts/data-chart/type-category-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-area-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-category-bar-series/ReadMe.md b/samples/charts/data-chart/type-category-bar-series/ReadMe.md index 4b347358f..caa97f835 100644 --- a/samples/charts/data-chart/type-category-bar-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-bar-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-category-column-series/ReadMe.md b/samples/charts/data-chart/type-category-column-series/ReadMe.md index 416316a57..2950d5068 100644 --- a/samples/charts/data-chart/type-category-column-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-column-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-category-line-series/ReadMe.md b/samples/charts/data-chart/type-category-line-series/ReadMe.md index dd4f37a78..63f358a04 100644 --- a/samples/charts/data-chart/type-category-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-line-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-category-point-series/ReadMe.md b/samples/charts/data-chart/type-category-point-series/ReadMe.md index a6afb3409..b2ea7b5e8 100644 --- a/samples/charts/data-chart/type-category-point-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-point-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-category-series/ReadMe.md b/samples/charts/data-chart/type-category-series/ReadMe.md index 26652272c..0ddf8bd82 100644 --- a/samples/charts/data-chart/type-category-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-category-spline-area-series/ReadMe.md b/samples/charts/data-chart/type-category-spline-area-series/ReadMe.md index 7bfa6104f..feea5fad9 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-spline-area-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-category-spline-series/ReadMe.md b/samples/charts/data-chart/type-category-spline-series/ReadMe.md index 1dd115325..e5a6ac8ba 100644 --- a/samples/charts/data-chart/type-category-spline-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-spline-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-category-step-area-series/ReadMe.md b/samples/charts/data-chart/type-category-step-area-series/ReadMe.md index f24c11b31..62b0110cf 100644 --- a/samples/charts/data-chart/type-category-step-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-step-area-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-category-step-line-series/ReadMe.md b/samples/charts/data-chart/type-category-step-line-series/ReadMe.md index 8ec7a4802..c0d8cdd53 100644 --- a/samples/charts/data-chart/type-category-step-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-step-line-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-category-waterfall-series/ReadMe.md b/samples/charts/data-chart/type-category-waterfall-series/ReadMe.md index 955d62163..563745f9a 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-waterfall-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-financial-area-indicators/ReadMe.md b/samples/charts/data-chart/type-financial-area-indicators/ReadMe.md index f07ac69b7..10e94be7d 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/ReadMe.md +++ b/samples/charts/data-chart/type-financial-area-indicators/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-financial-candlestick-series/ReadMe.md b/samples/charts/data-chart/type-financial-candlestick-series/ReadMe.md index 7744500aa..9c8d0632e 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/ReadMe.md +++ b/samples/charts/data-chart/type-financial-candlestick-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-financial-column-indicators/ReadMe.md b/samples/charts/data-chart/type-financial-column-indicators/ReadMe.md index 042c08f68..572369138 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/ReadMe.md +++ b/samples/charts/data-chart/type-financial-column-indicators/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-financial-line-indicators/ReadMe.md b/samples/charts/data-chart/type-financial-line-indicators/ReadMe.md index bdea65878..099c93ac6 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/ReadMe.md +++ b/samples/charts/data-chart/type-financial-line-indicators/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-financial-ohlc-series/ReadMe.md b/samples/charts/data-chart/type-financial-ohlc-series/ReadMe.md index 0a382c68c..2b184ed70 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/ReadMe.md +++ b/samples/charts/data-chart/type-financial-ohlc-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-financial-overlays/ReadMe.md b/samples/charts/data-chart/type-financial-overlays/ReadMe.md index 679671722..a69c3bc23 100644 --- a/samples/charts/data-chart/type-financial-overlays/ReadMe.md +++ b/samples/charts/data-chart/type-financial-overlays/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-financial-series/ReadMe.md b/samples/charts/data-chart/type-financial-series/ReadMe.md index 4baf0c334..864b7ab02 100644 --- a/samples/charts/data-chart/type-financial-series/ReadMe.md +++ b/samples/charts/data-chart/type-financial-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-radial-area-series/ReadMe.md b/samples/charts/data-chart/type-radial-area-series/ReadMe.md index 1b84778a0..aec7ec367 100644 --- a/samples/charts/data-chart/type-radial-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-radial-area-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-radial-column-series/ReadMe.md b/samples/charts/data-chart/type-radial-column-series/ReadMe.md index a173d29b4..0a627d6ce 100644 --- a/samples/charts/data-chart/type-radial-column-series/ReadMe.md +++ b/samples/charts/data-chart/type-radial-column-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-radial-line-series/ReadMe.md b/samples/charts/data-chart/type-radial-line-series/ReadMe.md index cc68facd6..75a82b868 100644 --- a/samples/charts/data-chart/type-radial-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-radial-line-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-radial-pie-series/ReadMe.md b/samples/charts/data-chart/type-radial-pie-series/ReadMe.md index 0776c8d7c..a51ae3649 100644 --- a/samples/charts/data-chart/type-radial-pie-series/ReadMe.md +++ b/samples/charts/data-chart/type-radial-pie-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-range-area-series/ReadMe.md b/samples/charts/data-chart/type-range-area-series/ReadMe.md index 776f198fa..54e00674d 100644 --- a/samples/charts/data-chart/type-range-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-range-area-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-range-column-series/ReadMe.md b/samples/charts/data-chart/type-range-column-series/ReadMe.md index 85d8d6376..ae0d2396c 100644 --- a/samples/charts/data-chart/type-range-column-series/ReadMe.md +++ b/samples/charts/data-chart/type-range-column-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-range-series/ReadMe.md b/samples/charts/data-chart/type-range-series/ReadMe.md index de8d89145..e1bd34ea2 100644 --- a/samples/charts/data-chart/type-range-series/ReadMe.md +++ b/samples/charts/data-chart/type-range-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-scatter-area-series/ReadMe.md b/samples/charts/data-chart/type-scatter-area-series/ReadMe.md index 98cd54de6..125413a08 100644 --- a/samples/charts/data-chart/type-scatter-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-area-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-scatter-bubble-series/ReadMe.md b/samples/charts/data-chart/type-scatter-bubble-series/ReadMe.md index 6086bb38e..ce1499a6f 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-bubble-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-scatter-contour-series/ReadMe.md b/samples/charts/data-chart/type-scatter-contour-series/ReadMe.md index b2e12c18d..99e9f2fe9 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-contour-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-scatter-hd-series/ReadMe.md b/samples/charts/data-chart/type-scatter-hd-series/ReadMe.md index ec8a1bdb2..ab812ab31 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-hd-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-scatter-line-series/ReadMe.md b/samples/charts/data-chart/type-scatter-line-series/ReadMe.md index dba100a46..149dc7196 100644 --- a/samples/charts/data-chart/type-scatter-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-line-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-scatter-point-series/ReadMe.md b/samples/charts/data-chart/type-scatter-point-series/ReadMe.md index 22cf789a7..c7701af27 100644 --- a/samples/charts/data-chart/type-scatter-point-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-point-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-scatter-polygon-series/ReadMe.md b/samples/charts/data-chart/type-scatter-polygon-series/ReadMe.md index 609eac831..d89b32814 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-polygon-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-scatter-polyline-series/ReadMe.md b/samples/charts/data-chart/type-scatter-polyline-series/ReadMe.md index b6e57069c..74f8c0111 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-polyline-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-scatter-series/ReadMe.md b/samples/charts/data-chart/type-scatter-series/ReadMe.md index b02b63d22..b81491902 100644 --- a/samples/charts/data-chart/type-scatter-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-scatter-spline-series/ReadMe.md b/samples/charts/data-chart/type-scatter-spline-series/ReadMe.md index 5477561d2..a2f527f81 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-spline-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-shape-series/ReadMe.md b/samples/charts/data-chart/type-shape-series/ReadMe.md index 04ec811d3..7b17deca0 100644 --- a/samples/charts/data-chart/type-shape-series/ReadMe.md +++ b/samples/charts/data-chart/type-shape-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-stacked-100-area-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-area-series/ReadMe.md index f2a788b80..2512a1b8b 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-area-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-bar-series/ReadMe.md index d906f44c4..3cb61d265 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-bar-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-stacked-100-column-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-column-series/ReadMe.md index 4b7a89cf7..d7218428c 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-column-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-stacked-100-line-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-line-series/ReadMe.md index 5d269064d..0d17c5ddc 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-line-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-spline-area-series/ReadMe.md index 07c04d7b1..20269b775 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-spline-series/ReadMe.md index 75365c0b0..87619cc2c 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-spline-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-stacked-area-series/ReadMe.md b/samples/charts/data-chart/type-stacked-area-series/ReadMe.md index 48d4f6c76..90f7a69e0 100644 --- a/samples/charts/data-chart/type-stacked-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-area-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-stacked-bar-series/ReadMe.md b/samples/charts/data-chart/type-stacked-bar-series/ReadMe.md index 44626c10d..2acd9a625 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-bar-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-stacked-column-series/ReadMe.md b/samples/charts/data-chart/type-stacked-column-series/ReadMe.md index ae520d093..ce7106c8e 100644 --- a/samples/charts/data-chart/type-stacked-column-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-column-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-stacked-line-series/ReadMe.md b/samples/charts/data-chart/type-stacked-line-series/ReadMe.md index b8ec6d4ba..bfd07a3b8 100644 --- a/samples/charts/data-chart/type-stacked-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-line-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/ReadMe.md b/samples/charts/data-chart/type-stacked-spline-area-series/ReadMe.md index a13768a52..7105e5948 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-spline-area-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/type-stacked-spline-series/ReadMe.md b/samples/charts/data-chart/type-stacked-spline-series/ReadMe.md index 0bcc5989c..e38a03530 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-spline-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/data-chart/waterfall-chart/ReadMe.md b/samples/charts/data-chart/waterfall-chart/ReadMe.md index 7284f4907..f3cf42afb 100644 --- a/samples/charts/data-chart/waterfall-chart/ReadMe.md +++ b/samples/charts/data-chart/waterfall-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/doughnut-chart/animation/ReadMe.md b/samples/charts/doughnut-chart/animation/ReadMe.md index 5088fec34..3b7df32dc 100644 --- a/samples/charts/doughnut-chart/animation/ReadMe.md +++ b/samples/charts/doughnut-chart/animation/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/doughnut-chart/explosion/ReadMe.md b/samples/charts/doughnut-chart/explosion/ReadMe.md index ebcc0cac0..27cc5c56d 100644 --- a/samples/charts/doughnut-chart/explosion/ReadMe.md +++ b/samples/charts/doughnut-chart/explosion/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/doughnut-chart/legend/ReadMe.md b/samples/charts/doughnut-chart/legend/ReadMe.md index 0804fc3d7..d1368735f 100644 --- a/samples/charts/doughnut-chart/legend/ReadMe.md +++ b/samples/charts/doughnut-chart/legend/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/doughnut-chart/overview/ReadMe.md b/samples/charts/doughnut-chart/overview/ReadMe.md index ac5ac6671..367df954e 100644 --- a/samples/charts/doughnut-chart/overview/ReadMe.md +++ b/samples/charts/doughnut-chart/overview/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/doughnut-chart/rings/ReadMe.md b/samples/charts/doughnut-chart/rings/ReadMe.md index 27780b27c..5e5bca791 100644 --- a/samples/charts/doughnut-chart/rings/ReadMe.md +++ b/samples/charts/doughnut-chart/rings/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/doughnut-chart/selection/ReadMe.md b/samples/charts/doughnut-chart/selection/ReadMe.md index b58d7ea5e..7cace1f0a 100644 --- a/samples/charts/doughnut-chart/selection/ReadMe.md +++ b/samples/charts/doughnut-chart/selection/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/annotations/ReadMe.md b/samples/charts/financial-chart/annotations/ReadMe.md index e316a8cb4..71b2b1ec9 100644 --- a/samples/charts/financial-chart/annotations/ReadMe.md +++ b/samples/charts/financial-chart/annotations/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/axis-types/ReadMe.md b/samples/charts/financial-chart/axis-types/ReadMe.md index a53494b99..a78c9e575 100644 --- a/samples/charts/financial-chart/axis-types/ReadMe.md +++ b/samples/charts/financial-chart/axis-types/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/ReadMe.md b/samples/charts/financial-chart/data-legend-formatting-currency/ReadMe.md index c8369e17f..433450ebc 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/ReadMe.md +++ b/samples/charts/financial-chart/data-legend-formatting-currency/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/data-legend-styling-props/ReadMe.md b/samples/charts/financial-chart/data-legend-styling-props/ReadMe.md index 727069029..4938ea9fe 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/ReadMe.md +++ b/samples/charts/financial-chart/data-legend-styling-props/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/data-legend/ReadMe.md b/samples/charts/financial-chart/data-legend/ReadMe.md index 8a15a9f09..71a490dd5 100644 --- a/samples/charts/financial-chart/data-legend/ReadMe.md +++ b/samples/charts/financial-chart/data-legend/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/ReadMe.md b/samples/charts/financial-chart/data-tooltip-formatting-currency/ReadMe.md index d73a3159f..87b874328 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/ReadMe.md +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/ReadMe.md b/samples/charts/financial-chart/data-tooltip-styling-props/ReadMe.md index 776d0d8dc..6dfaa4da1 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/ReadMe.md +++ b/samples/charts/financial-chart/data-tooltip-styling-props/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/data-tooltip/ReadMe.md b/samples/charts/financial-chart/data-tooltip/ReadMe.md index ca490b142..f1475ec24 100644 --- a/samples/charts/financial-chart/data-tooltip/ReadMe.md +++ b/samples/charts/financial-chart/data-tooltip/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/format-specifiers/ReadMe.md b/samples/charts/financial-chart/format-specifiers/ReadMe.md new file mode 100644 index 000000000..86011e94e --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/ReadMe.md @@ -0,0 +1,50 @@ + + + +This folder contains Angular application with example of Format Specifiers feature using [FinancialChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +cd ./igniteui-angular-examples +cd ../samples/charts/financial-chart/format-specifiers +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/financial-chart/high-frequency/ReadMe.md b/samples/charts/financial-chart/high-frequency/ReadMe.md index 3b3f9ecdd..04398a244 100644 --- a/samples/charts/financial-chart/high-frequency/ReadMe.md +++ b/samples/charts/financial-chart/high-frequency/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/high-volume/ReadMe.md b/samples/charts/financial-chart/high-volume/ReadMe.md index 22e41ab47..ca76473a5 100644 --- a/samples/charts/financial-chart/high-volume/ReadMe.md +++ b/samples/charts/financial-chart/high-volume/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/indicator-customization/ReadMe.md b/samples/charts/financial-chart/indicator-customization/ReadMe.md index fda89b4f2..336c781a7 100644 --- a/samples/charts/financial-chart/indicator-customization/ReadMe.md +++ b/samples/charts/financial-chart/indicator-customization/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/indicator-types/ReadMe.md b/samples/charts/financial-chart/indicator-types/ReadMe.md index b919c0ea8..8c6b650c1 100644 --- a/samples/charts/financial-chart/indicator-types/ReadMe.md +++ b/samples/charts/financial-chart/indicator-types/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/multiple-data/ReadMe.md b/samples/charts/financial-chart/multiple-data/ReadMe.md index b5fc2aac9..7e321bcc9 100644 --- a/samples/charts/financial-chart/multiple-data/ReadMe.md +++ b/samples/charts/financial-chart/multiple-data/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/multiple-feeds/ReadMe.md b/samples/charts/financial-chart/multiple-feeds/ReadMe.md index 601905402..fed2cf798 100644 --- a/samples/charts/financial-chart/multiple-feeds/ReadMe.md +++ b/samples/charts/financial-chart/multiple-feeds/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/overview/ReadMe.md b/samples/charts/financial-chart/overview/ReadMe.md index eb77d1a7a..4d5c7abb5 100644 --- a/samples/charts/financial-chart/overview/ReadMe.md +++ b/samples/charts/financial-chart/overview/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/panes/ReadMe.md b/samples/charts/financial-chart/panes/ReadMe.md index 9cc5a8832..6ea4da6a3 100644 --- a/samples/charts/financial-chart/panes/ReadMe.md +++ b/samples/charts/financial-chart/panes/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/performance/ReadMe.md b/samples/charts/financial-chart/performance/ReadMe.md index 70db43ae3..13f3dc3cc 100644 --- a/samples/charts/financial-chart/performance/ReadMe.md +++ b/samples/charts/financial-chart/performance/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/scrollbars/ReadMe.md b/samples/charts/financial-chart/scrollbars/ReadMe.md index 634f522b1..1e35af58f 100644 --- a/samples/charts/financial-chart/scrollbars/ReadMe.md +++ b/samples/charts/financial-chart/scrollbars/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/stock-index-chart/ReadMe.md b/samples/charts/financial-chart/stock-index-chart/ReadMe.md index 7017761dc..6242a75d9 100644 --- a/samples/charts/financial-chart/stock-index-chart/ReadMe.md +++ b/samples/charts/financial-chart/stock-index-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/styling/ReadMe.md b/samples/charts/financial-chart/styling/ReadMe.md index 91e17a8b6..5b5ec7052 100644 --- a/samples/charts/financial-chart/styling/ReadMe.md +++ b/samples/charts/financial-chart/styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/theming/ReadMe.md b/samples/charts/financial-chart/theming/ReadMe.md index 0526dee63..ee3b4fd28 100644 --- a/samples/charts/financial-chart/theming/ReadMe.md +++ b/samples/charts/financial-chart/theming/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/time-based-data/ReadMe.md b/samples/charts/financial-chart/time-based-data/ReadMe.md index 4266d2b27..19878d059 100644 --- a/samples/charts/financial-chart/time-based-data/ReadMe.md +++ b/samples/charts/financial-chart/time-based-data/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/titles/ReadMe.md b/samples/charts/financial-chart/titles/ReadMe.md index 8900d3fd8..63c173fad 100644 --- a/samples/charts/financial-chart/titles/ReadMe.md +++ b/samples/charts/financial-chart/titles/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/tooltip-template/ReadMe.md b/samples/charts/financial-chart/tooltip-template/ReadMe.md index 35698bfd3..7ab26dca0 100644 --- a/samples/charts/financial-chart/tooltip-template/ReadMe.md +++ b/samples/charts/financial-chart/tooltip-template/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/tooltip-types/ReadMe.md b/samples/charts/financial-chart/tooltip-types/ReadMe.md index 57a220b3e..242463d1e 100644 --- a/samples/charts/financial-chart/tooltip-types/ReadMe.md +++ b/samples/charts/financial-chart/tooltip-types/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/trendlines/ReadMe.md b/samples/charts/financial-chart/trendlines/ReadMe.md index f97b64d48..ef6442c01 100644 --- a/samples/charts/financial-chart/trendlines/ReadMe.md +++ b/samples/charts/financial-chart/trendlines/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/financial-chart/volume-types/ReadMe.md b/samples/charts/financial-chart/volume-types/ReadMe.md index 909c40c3e..45688655d 100644 --- a/samples/charts/financial-chart/volume-types/ReadMe.md +++ b/samples/charts/financial-chart/volume-types/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/pie-chart/animation/ReadMe.md b/samples/charts/pie-chart/animation/ReadMe.md index a2fd1ff89..893a91b7a 100644 --- a/samples/charts/pie-chart/animation/ReadMe.md +++ b/samples/charts/pie-chart/animation/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/pie-chart/explosion/ReadMe.md b/samples/charts/pie-chart/explosion/ReadMe.md index 309e07f54..eb14e455f 100644 --- a/samples/charts/pie-chart/explosion/ReadMe.md +++ b/samples/charts/pie-chart/explosion/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/pie-chart/legend/ReadMe.md b/samples/charts/pie-chart/legend/ReadMe.md index 35e543b34..1ffec61dc 100644 --- a/samples/charts/pie-chart/legend/ReadMe.md +++ b/samples/charts/pie-chart/legend/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/pie-chart/others/ReadMe.md b/samples/charts/pie-chart/others/ReadMe.md index b0181d208..9b895cf13 100644 --- a/samples/charts/pie-chart/others/ReadMe.md +++ b/samples/charts/pie-chart/others/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/pie-chart/overview/ReadMe.md b/samples/charts/pie-chart/overview/ReadMe.md index c8448c756..f984e0ad7 100644 --- a/samples/charts/pie-chart/overview/ReadMe.md +++ b/samples/charts/pie-chart/overview/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/pie-chart/selection/ReadMe.md b/samples/charts/pie-chart/selection/ReadMe.md index 7cfd6649b..ebae4a7e8 100644 --- a/samples/charts/pie-chart/selection/ReadMe.md +++ b/samples/charts/pie-chart/selection/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/pie-chart/styling/ReadMe.md b/samples/charts/pie-chart/styling/ReadMe.md index 10d43bf6b..43032825e 100644 --- a/samples/charts/pie-chart/styling/ReadMe.md +++ b/samples/charts/pie-chart/styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/sparkline/display-area/ReadMe.md b/samples/charts/sparkline/display-area/ReadMe.md index 4c1405486..78fc4aeef 100644 --- a/samples/charts/sparkline/display-area/ReadMe.md +++ b/samples/charts/sparkline/display-area/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/sparkline/display-column/ReadMe.md b/samples/charts/sparkline/display-column/ReadMe.md index a1f7f2306..373040562 100644 --- a/samples/charts/sparkline/display-column/ReadMe.md +++ b/samples/charts/sparkline/display-column/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/sparkline/display-lines/ReadMe.md b/samples/charts/sparkline/display-lines/ReadMe.md index 1040777a8..d660848e3 100644 --- a/samples/charts/sparkline/display-lines/ReadMe.md +++ b/samples/charts/sparkline/display-lines/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/sparkline/display-types/ReadMe.md b/samples/charts/sparkline/display-types/ReadMe.md index c444d4e29..118ffd8aa 100644 --- a/samples/charts/sparkline/display-types/ReadMe.md +++ b/samples/charts/sparkline/display-types/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/sparkline/display-winloss/ReadMe.md b/samples/charts/sparkline/display-winloss/ReadMe.md index 9d22d1e89..431024ccc 100644 --- a/samples/charts/sparkline/display-winloss/ReadMe.md +++ b/samples/charts/sparkline/display-winloss/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/sparkline/grid/ReadMe.md b/samples/charts/sparkline/grid/ReadMe.md index 01b060e9e..d9ff480f1 100644 --- a/samples/charts/sparkline/grid/ReadMe.md +++ b/samples/charts/sparkline/grid/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/sparkline/markers/ReadMe.md b/samples/charts/sparkline/markers/ReadMe.md index 954be5efd..7f541e11c 100644 --- a/samples/charts/sparkline/markers/ReadMe.md +++ b/samples/charts/sparkline/markers/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/sparkline/normal-range/ReadMe.md b/samples/charts/sparkline/normal-range/ReadMe.md index 65d860011..d41efb196 100644 --- a/samples/charts/sparkline/normal-range/ReadMe.md +++ b/samples/charts/sparkline/normal-range/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/sparkline/trendlines/ReadMe.md b/samples/charts/sparkline/trendlines/ReadMe.md index b3327983a..1b6099209 100644 --- a/samples/charts/sparkline/trendlines/ReadMe.md +++ b/samples/charts/sparkline/trendlines/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/sparkline/unknown-values/ReadMe.md b/samples/charts/sparkline/unknown-values/ReadMe.md index 2afbea1cc..c8535251b 100644 --- a/samples/charts/sparkline/unknown-values/ReadMe.md +++ b/samples/charts/sparkline/unknown-values/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/toolbar/actions-built-in-category-chart/ReadMe.md b/samples/charts/toolbar/actions-built-in-category-chart/ReadMe.md index 4ce1b71fe..def64ee5c 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/ReadMe.md +++ b/samples/charts/toolbar/actions-built-in-category-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/toolbar/actions-built-in-data-chart/ReadMe.md b/samples/charts/toolbar/actions-built-in-data-chart/ReadMe.md index 9e242354f..2432ab56d 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/ReadMe.md +++ b/samples/charts/toolbar/actions-built-in-data-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/ReadMe.md b/samples/charts/toolbar/layout-actions-for-data-chart/ReadMe.md index f9640aa60..840dfde36 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/ReadMe.md +++ b/samples/charts/toolbar/layout-actions-for-data-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/ReadMe.md b/samples/charts/toolbar/layout-in-vertical-orientation/ReadMe.md index d9ea6fce9..54e467ba6 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/ReadMe.md +++ b/samples/charts/toolbar/layout-in-vertical-orientation/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/toolbar/theming/ReadMe.md b/samples/charts/toolbar/theming/ReadMe.md index 34d9b7dea..98df7efba 100644 --- a/samples/charts/toolbar/theming/ReadMe.md +++ b/samples/charts/toolbar/theming/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/tree-map/events/ReadMe.md b/samples/charts/tree-map/events/ReadMe.md index 29341e9c4..eebeb522f 100644 --- a/samples/charts/tree-map/events/ReadMe.md +++ b/samples/charts/tree-map/events/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/tree-map/layout/ReadMe.md b/samples/charts/tree-map/layout/ReadMe.md index 47edb4b1b..d26cbd96b 100644 --- a/samples/charts/tree-map/layout/ReadMe.md +++ b/samples/charts/tree-map/layout/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/tree-map/overview/ReadMe.md b/samples/charts/tree-map/overview/ReadMe.md index 26ec58e5b..4a731d1eb 100644 --- a/samples/charts/tree-map/overview/ReadMe.md +++ b/samples/charts/tree-map/overview/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/tree-map/styling/ReadMe.md b/samples/charts/tree-map/styling/ReadMe.md index 9a6070fbf..f4b156bc6 100644 --- a/samples/charts/tree-map/styling/ReadMe.md +++ b/samples/charts/tree-map/styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/charts/zoomslider/overview/ReadMe.md b/samples/charts/zoomslider/overview/ReadMe.md index ede1f91dc..5678f2176 100644 --- a/samples/charts/zoomslider/overview/ReadMe.md +++ b/samples/charts/zoomslider/overview/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/excel/excel-library/operations-on-workbooks/ReadMe.md b/samples/excel/excel-library/operations-on-workbooks/ReadMe.md index b54f3d8ff..980e0bea1 100644 --- a/samples/excel/excel-library/operations-on-workbooks/ReadMe.md +++ b/samples/excel/excel-library/operations-on-workbooks/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/excel/excel-library/operations-on-worksheets/ReadMe.md b/samples/excel/excel-library/operations-on-worksheets/ReadMe.md index 3b269f710..235499c0f 100644 --- a/samples/excel/excel-library/operations-on-worksheets/ReadMe.md +++ b/samples/excel/excel-library/operations-on-worksheets/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/excel/excel-library/overview/ReadMe.md b/samples/excel/excel-library/overview/ReadMe.md index 755239278..073411aa2 100644 --- a/samples/excel/excel-library/overview/ReadMe.md +++ b/samples/excel/excel-library/overview/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/excel/excel-library/working-with-cells/ReadMe.md b/samples/excel/excel-library/working-with-cells/ReadMe.md index dc0170d38..865facd83 100644 --- a/samples/excel/excel-library/working-with-cells/ReadMe.md +++ b/samples/excel/excel-library/working-with-cells/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/excel/excel-library/working-with-charts/ReadMe.md b/samples/excel/excel-library/working-with-charts/ReadMe.md index 08cd5dd8d..26524b860 100644 --- a/samples/excel/excel-library/working-with-charts/ReadMe.md +++ b/samples/excel/excel-library/working-with-charts/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/excel/excel-library/working-with-sparklines/ReadMe.md b/samples/excel/excel-library/working-with-sparklines/ReadMe.md index 18c7f9517..eda79e574 100644 --- a/samples/excel/excel-library/working-with-sparklines/ReadMe.md +++ b/samples/excel/excel-library/working-with-sparklines/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/excel/excel-library/working-with-tables/ReadMe.md b/samples/excel/excel-library/working-with-tables/ReadMe.md index 9b8552d85..7a6eddec5 100644 --- a/samples/excel/excel-library/working-with-tables/ReadMe.md +++ b/samples/excel/excel-library/working-with-tables/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/excel/spreadsheet/activation/ReadMe.md b/samples/excel/spreadsheet/activation/ReadMe.md index f3c82eaee..370b92912 100644 --- a/samples/excel/spreadsheet/activation/ReadMe.md +++ b/samples/excel/spreadsheet/activation/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/excel/spreadsheet/adapter-chart/ReadMe.md b/samples/excel/spreadsheet/adapter-chart/ReadMe.md index 96f733b88..cb5b7174b 100644 --- a/samples/excel/spreadsheet/adapter-chart/ReadMe.md +++ b/samples/excel/spreadsheet/adapter-chart/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/excel/spreadsheet/adapter-combo/ReadMe.md b/samples/excel/spreadsheet/adapter-combo/ReadMe.md index 9744275e6..209385214 100644 --- a/samples/excel/spreadsheet/adapter-combo/ReadMe.md +++ b/samples/excel/spreadsheet/adapter-combo/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/excel/spreadsheet/clipboard/ReadMe.md b/samples/excel/spreadsheet/clipboard/ReadMe.md index d08408ae6..91485f564 100644 --- a/samples/excel/spreadsheet/clipboard/ReadMe.md +++ b/samples/excel/spreadsheet/clipboard/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/excel/spreadsheet/commands/ReadMe.md b/samples/excel/spreadsheet/commands/ReadMe.md index 19a92a55a..fcc0705e2 100644 --- a/samples/excel/spreadsheet/commands/ReadMe.md +++ b/samples/excel/spreadsheet/commands/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/excel/spreadsheet/conditional-formatting/ReadMe.md b/samples/excel/spreadsheet/conditional-formatting/ReadMe.md index 6bb10dc6f..810fbd4f6 100644 --- a/samples/excel/spreadsheet/conditional-formatting/ReadMe.md +++ b/samples/excel/spreadsheet/conditional-formatting/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/excel/spreadsheet/config-options/ReadMe.md b/samples/excel/spreadsheet/config-options/ReadMe.md index 36e244f33..bb349209c 100644 --- a/samples/excel/spreadsheet/config-options/ReadMe.md +++ b/samples/excel/spreadsheet/config-options/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/excel/spreadsheet/data-validation/ReadMe.md b/samples/excel/spreadsheet/data-validation/ReadMe.md index 756f0a4b5..b5d7e6617 100644 --- a/samples/excel/spreadsheet/data-validation/ReadMe.md +++ b/samples/excel/spreadsheet/data-validation/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/excel/spreadsheet/hyperlinks/ReadMe.md b/samples/excel/spreadsheet/hyperlinks/ReadMe.md index f1fa003da..f07340da6 100644 --- a/samples/excel/spreadsheet/hyperlinks/ReadMe.md +++ b/samples/excel/spreadsheet/hyperlinks/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/excel/spreadsheet/overview/ReadMe.md b/samples/excel/spreadsheet/overview/ReadMe.md index 3c0c38ac5..22383b86f 100644 --- a/samples/excel/spreadsheet/overview/ReadMe.md +++ b/samples/excel/spreadsheet/overview/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/bullet-graph/animation/ReadMe.md b/samples/gauges/bullet-graph/animation/ReadMe.md index f30613f62..da3a546bf 100644 --- a/samples/gauges/bullet-graph/animation/ReadMe.md +++ b/samples/gauges/bullet-graph/animation/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/bullet-graph/background/ReadMe.md b/samples/gauges/bullet-graph/background/ReadMe.md index 0e7a67dc7..959375400 100644 --- a/samples/gauges/bullet-graph/background/ReadMe.md +++ b/samples/gauges/bullet-graph/background/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/bullet-graph/labels/ReadMe.md b/samples/gauges/bullet-graph/labels/ReadMe.md index 606c0b049..d487d0232 100644 --- a/samples/gauges/bullet-graph/labels/ReadMe.md +++ b/samples/gauges/bullet-graph/labels/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/bullet-graph/measures/ReadMe.md b/samples/gauges/bullet-graph/measures/ReadMe.md index 1ea85e6d8..4af067005 100644 --- a/samples/gauges/bullet-graph/measures/ReadMe.md +++ b/samples/gauges/bullet-graph/measures/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/bullet-graph/ranges/ReadMe.md b/samples/gauges/bullet-graph/ranges/ReadMe.md index f9796a16b..05ce72f8e 100644 --- a/samples/gauges/bullet-graph/ranges/ReadMe.md +++ b/samples/gauges/bullet-graph/ranges/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/bullet-graph/scale/ReadMe.md b/samples/gauges/bullet-graph/scale/ReadMe.md index 1e5fbcacf..81eb43605 100644 --- a/samples/gauges/bullet-graph/scale/ReadMe.md +++ b/samples/gauges/bullet-graph/scale/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/bullet-graph/tickmarks/ReadMe.md b/samples/gauges/bullet-graph/tickmarks/ReadMe.md index 5fd4570cd..f4de9e703 100644 --- a/samples/gauges/bullet-graph/tickmarks/ReadMe.md +++ b/samples/gauges/bullet-graph/tickmarks/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/linear-gauge/animation/ReadMe.md b/samples/gauges/linear-gauge/animation/ReadMe.md index 81a9c9e7f..686100676 100644 --- a/samples/gauges/linear-gauge/animation/ReadMe.md +++ b/samples/gauges/linear-gauge/animation/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/linear-gauge/backing/ReadMe.md b/samples/gauges/linear-gauge/backing/ReadMe.md index 892299a98..fb0ca2c6c 100644 --- a/samples/gauges/linear-gauge/backing/ReadMe.md +++ b/samples/gauges/linear-gauge/backing/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/linear-gauge/labels/ReadMe.md b/samples/gauges/linear-gauge/labels/ReadMe.md index bac5f0368..3e1774f36 100644 --- a/samples/gauges/linear-gauge/labels/ReadMe.md +++ b/samples/gauges/linear-gauge/labels/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/linear-gauge/needle/ReadMe.md b/samples/gauges/linear-gauge/needle/ReadMe.md index be41d6f16..d26bbcf47 100644 --- a/samples/gauges/linear-gauge/needle/ReadMe.md +++ b/samples/gauges/linear-gauge/needle/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/linear-gauge/ranges/ReadMe.md b/samples/gauges/linear-gauge/ranges/ReadMe.md index cce246c84..eccc942b9 100644 --- a/samples/gauges/linear-gauge/ranges/ReadMe.md +++ b/samples/gauges/linear-gauge/ranges/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/linear-gauge/scale/ReadMe.md b/samples/gauges/linear-gauge/scale/ReadMe.md index 4bf6b5a7b..25a46a448 100644 --- a/samples/gauges/linear-gauge/scale/ReadMe.md +++ b/samples/gauges/linear-gauge/scale/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/linear-gauge/tickmarks/ReadMe.md b/samples/gauges/linear-gauge/tickmarks/ReadMe.md index bb6813106..6a8e35466 100644 --- a/samples/gauges/linear-gauge/tickmarks/ReadMe.md +++ b/samples/gauges/linear-gauge/tickmarks/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/radial-gauge/animation/ReadMe.md b/samples/gauges/radial-gauge/animation/ReadMe.md index 7ecea31ec..1fac54284 100644 --- a/samples/gauges/radial-gauge/animation/ReadMe.md +++ b/samples/gauges/radial-gauge/animation/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/radial-gauge/backing/ReadMe.md b/samples/gauges/radial-gauge/backing/ReadMe.md index 0af24d149..5c90d11d1 100644 --- a/samples/gauges/radial-gauge/backing/ReadMe.md +++ b/samples/gauges/radial-gauge/backing/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/radial-gauge/labels/ReadMe.md b/samples/gauges/radial-gauge/labels/ReadMe.md index a6a5b4f33..97a6b2342 100644 --- a/samples/gauges/radial-gauge/labels/ReadMe.md +++ b/samples/gauges/radial-gauge/labels/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/radial-gauge/needle/ReadMe.md b/samples/gauges/radial-gauge/needle/ReadMe.md index 17a2541f8..008e27710 100644 --- a/samples/gauges/radial-gauge/needle/ReadMe.md +++ b/samples/gauges/radial-gauge/needle/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/radial-gauge/ranges/ReadMe.md b/samples/gauges/radial-gauge/ranges/ReadMe.md index b26f4f644..b46b99bc9 100644 --- a/samples/gauges/radial-gauge/ranges/ReadMe.md +++ b/samples/gauges/radial-gauge/ranges/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/radial-gauge/scale/ReadMe.md b/samples/gauges/radial-gauge/scale/ReadMe.md index 69c6c4a69..9dc8d570b 100644 --- a/samples/gauges/radial-gauge/scale/ReadMe.md +++ b/samples/gauges/radial-gauge/scale/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/gauges/radial-gauge/tickmarks/ReadMe.md b/samples/gauges/radial-gauge/tickmarks/ReadMe.md index 94a6f1ebe..809755a11 100644 --- a/samples/gauges/radial-gauge/tickmarks/ReadMe.md +++ b/samples/gauges/radial-gauge/tickmarks/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/binding-data-csv/ReadMe.md b/samples/maps/geo-map/binding-data-csv/ReadMe.md index 2af6a44f2..50e17a3e0 100644 --- a/samples/maps/geo-map/binding-data-csv/ReadMe.md +++ b/samples/maps/geo-map/binding-data-csv/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/binding-data-json-points/ReadMe.md b/samples/maps/geo-map/binding-data-json-points/ReadMe.md index 7590472f2..218e8d37e 100644 --- a/samples/maps/geo-map/binding-data-json-points/ReadMe.md +++ b/samples/maps/geo-map/binding-data-json-points/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/binding-data-model/ReadMe.md b/samples/maps/geo-map/binding-data-model/ReadMe.md index fb0aee192..8a3371b82 100644 --- a/samples/maps/geo-map/binding-data-model/ReadMe.md +++ b/samples/maps/geo-map/binding-data-model/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/binding-multiple-shapes/ReadMe.md b/samples/maps/geo-map/binding-multiple-shapes/ReadMe.md index e35d02106..f82262228 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/ReadMe.md +++ b/samples/maps/geo-map/binding-multiple-shapes/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/binding-multiple-sources/ReadMe.md b/samples/maps/geo-map/binding-multiple-sources/ReadMe.md index b98a1c753..6372df4a4 100644 --- a/samples/maps/geo-map/binding-multiple-sources/ReadMe.md +++ b/samples/maps/geo-map/binding-multiple-sources/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/binding-shp-points/ReadMe.md b/samples/maps/geo-map/binding-shp-points/ReadMe.md index 66bcbf751..4eaee8717 100644 --- a/samples/maps/geo-map/binding-shp-points/ReadMe.md +++ b/samples/maps/geo-map/binding-shp-points/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/binding-shp-polygons/ReadMe.md b/samples/maps/geo-map/binding-shp-polygons/ReadMe.md index 7d268947b..cffc30590 100644 --- a/samples/maps/geo-map/binding-shp-polygons/ReadMe.md +++ b/samples/maps/geo-map/binding-shp-polygons/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/binding-shp-polylines/ReadMe.md b/samples/maps/geo-map/binding-shp-polylines/ReadMe.md index 62e794118..5ab062758 100644 --- a/samples/maps/geo-map/binding-shp-polylines/ReadMe.md +++ b/samples/maps/geo-map/binding-shp-polylines/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/custom-tooltips/ReadMe.md b/samples/maps/geo-map/custom-tooltips/ReadMe.md index e1767ed70..dd9cc1433 100644 --- a/samples/maps/geo-map/custom-tooltips/ReadMe.md +++ b/samples/maps/geo-map/custom-tooltips/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/display-bing-imagery/ReadMe.md b/samples/maps/geo-map/display-bing-imagery/ReadMe.md index 090975e1f..7bf198026 100644 --- a/samples/maps/geo-map/display-bing-imagery/ReadMe.md +++ b/samples/maps/geo-map/display-bing-imagery/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/display-esri-imagery/ReadMe.md b/samples/maps/geo-map/display-esri-imagery/ReadMe.md index 66a3713fd..f1571d730 100644 --- a/samples/maps/geo-map/display-esri-imagery/ReadMe.md +++ b/samples/maps/geo-map/display-esri-imagery/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/display-heat-imagery/ReadMe.md b/samples/maps/geo-map/display-heat-imagery/ReadMe.md index a6feb07f1..6f1b2b863 100644 --- a/samples/maps/geo-map/display-heat-imagery/ReadMe.md +++ b/samples/maps/geo-map/display-heat-imagery/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/display-osm-imagery/ReadMe.md b/samples/maps/geo-map/display-osm-imagery/ReadMe.md index a872b8591..bf76e1384 100644 --- a/samples/maps/geo-map/display-osm-imagery/ReadMe.md +++ b/samples/maps/geo-map/display-osm-imagery/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/marker-layouts/ReadMe.md b/samples/maps/geo-map/marker-layouts/ReadMe.md index fbb3f7e95..afa2d2309 100644 --- a/samples/maps/geo-map/marker-layouts/ReadMe.md +++ b/samples/maps/geo-map/marker-layouts/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/marker-template/ReadMe.md b/samples/maps/geo-map/marker-template/ReadMe.md index af84c2cb5..ecb97036b 100644 --- a/samples/maps/geo-map/marker-template/ReadMe.md +++ b/samples/maps/geo-map/marker-template/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/marker-type/ReadMe.md b/samples/maps/geo-map/marker-type/ReadMe.md index cf823d6cc..73d1350fc 100644 --- a/samples/maps/geo-map/marker-type/ReadMe.md +++ b/samples/maps/geo-map/marker-type/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/navigation/ReadMe.md b/samples/maps/geo-map/navigation/ReadMe.md index 5af0d82d3..e52b8e253 100644 --- a/samples/maps/geo-map/navigation/ReadMe.md +++ b/samples/maps/geo-map/navigation/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/overview/ReadMe.md b/samples/maps/geo-map/overview/ReadMe.md index 842229370..b92fefea3 100644 --- a/samples/maps/geo-map/overview/ReadMe.md +++ b/samples/maps/geo-map/overview/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/shape-styling/ReadMe.md b/samples/maps/geo-map/shape-styling/ReadMe.md index be81b0f23..7c0009611 100644 --- a/samples/maps/geo-map/shape-styling/ReadMe.md +++ b/samples/maps/geo-map/shape-styling/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/triangulating-data/ReadMe.md b/samples/maps/geo-map/triangulating-data/ReadMe.md index 2feeb810f..6ee8fa321 100644 --- a/samples/maps/geo-map/triangulating-data/ReadMe.md +++ b/samples/maps/geo-map/triangulating-data/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/type-scatter-area-series/ReadMe.md b/samples/maps/geo-map/type-scatter-area-series/ReadMe.md index e47f44f45..144150b11 100644 --- a/samples/maps/geo-map/type-scatter-area-series/ReadMe.md +++ b/samples/maps/geo-map/type-scatter-area-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/type-scatter-bubble-series/ReadMe.md b/samples/maps/geo-map/type-scatter-bubble-series/ReadMe.md index f2b6bf871..19b210f15 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/ReadMe.md +++ b/samples/maps/geo-map/type-scatter-bubble-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/type-scatter-contour-series/ReadMe.md b/samples/maps/geo-map/type-scatter-contour-series/ReadMe.md index 7a446962f..74f7fff4a 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/ReadMe.md +++ b/samples/maps/geo-map/type-scatter-contour-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/type-scatter-density-series/ReadMe.md b/samples/maps/geo-map/type-scatter-density-series/ReadMe.md index 8300ac7c2..d8728e0c7 100644 --- a/samples/maps/geo-map/type-scatter-density-series/ReadMe.md +++ b/samples/maps/geo-map/type-scatter-density-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/type-scatter-symbol-series/ReadMe.md b/samples/maps/geo-map/type-scatter-symbol-series/ReadMe.md index 0eccd79d9..a0c8211e7 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/ReadMe.md +++ b/samples/maps/geo-map/type-scatter-symbol-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/type-shape-polygon-series/ReadMe.md b/samples/maps/geo-map/type-shape-polygon-series/ReadMe.md index e46d5f552..99595521a 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/ReadMe.md +++ b/samples/maps/geo-map/type-shape-polygon-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/maps/geo-map/type-shape-polyline-series/ReadMe.md b/samples/maps/geo-map/type-shape-polyline-series/ReadMe.md index a15dab832..88c0ef1d1 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/ReadMe.md +++ b/samples/maps/geo-map/type-shape-polyline-series/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` diff --git a/samples/templates/ReadMe.md b/samples/templates/ReadMe.md index 687fc1c4c..e8836809a 100644 --- a/samples/templates/ReadMe.md +++ b/samples/templates/ReadMe.md @@ -38,7 +38,7 @@ code . In terminal window, run: ``` -npm install +npm install --legacy-peer-deps npm run-script start ``` From 5a9520e7b9e65554380383a587ff5ff853d6c84d Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 13 Nov 2023 16:35:47 -0500 Subject: [PATCH 015/154] mdd-update-angular17 (#73) * mdd-update-angular17 mdd-update-angular17 * mdd-update mdd-update-angular17 * mdd-update-igniteui-theming fixed browser with updates * update update * added sorting sample stats --------- Co-authored-by: HUSSAR-mtrela --- browser/.browserslistrc | 7 +- browser/angular.json | 15 +- browser/package.json | 54 +-- browser/scripts/browser.js | 19 +- browser/scripts/stats.js | 2 - browser/src/app/app-routing.module.ts | 2 +- browser/src/app/index/index.component.ts | 4 +- browser/src/assets/stats.json | 318 +++++++++--------- browser/src/browser-info.json | 24 +- browser/src/polyfills.ts | 10 +- browser/src/tsconfig-es5.app.json | 2 +- browser/tsconfig.base.json | 10 +- browser/tsconfig.json | 18 + .../format-specifiers/src/app.component.html | 2 +- .../format-specifiers/src/app.component.html | 2 +- .../format-specifiers/src/app.component.html | 4 +- .../navigation/src/app/app.component.html | 2 +- 17 files changed, 261 insertions(+), 234 deletions(-) diff --git a/browser/.browserslistrc b/browser/.browserslistrc index 3cb56d100..f7f41b132 100644 --- a/browser/.browserslistrc +++ b/browser/.browserslistrc @@ -5,8 +5,9 @@ # You can see what browsers were selected by your queries by running: # npx browserslist -> 0.5% -last 2 versions Firefox ESR +not > 0.5% +not last 2 versions not dead -IE 9-11 # For IE 9-11 support, remove 'not'. +not IE 9-11 +Safari >=15 diff --git a/browser/angular.json b/browser/angular.json index c89b46b62..176c654db 100644 --- a/browser/angular.json +++ b/browser/angular.json @@ -7,6 +7,7 @@ "root": "", "sourceRoot": "src", "projectType": "application", + "prefix": "app", "architect": { "build": { "builder": "@angular-devkit/build-angular:browser", @@ -16,7 +17,10 @@ "index": "src/index.html", "main": "src/main.ts", "tsConfig": "src/tsconfig.app.json", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "assets": [ "src/assets", "src/assets/favicon.ico" @@ -45,7 +49,6 @@ } ], "optimization": true, - "aot": true, "outputHashing": "all", "sourceMap": false, "namedChunks": false, @@ -74,21 +77,21 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "my-app:build" + "buildTarget": "my-app:build" }, "configurations": { "production": { - "browserTarget": "my-app:build:production" + "buildTarget": "my-app:build:production" }, "es5": { - "browserTarget": "my-app:build:es5" + "buildTarget": "my-app:build:es5" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "my-app:build" + "buildTarget": "my-app:build" } }, "test": { diff --git a/browser/package.json b/browser/package.json index 5aa56ffa3..89c02bde0 100644 --- a/browser/package.json +++ b/browser/package.json @@ -9,7 +9,7 @@ "build": "gulp updateBrowser --max_old_space_size=12192 && gulp overwrite-package-json && node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production --progress=true", "start": "gulp updateBrowser --max_old_space_size=12192 && node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve --configuration es5 -o", "startProd": "gulp updateBrowser --max_old_space_size=12192 && node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve --configuration production --configuration es5 -o --progress=true", - "start:es6": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "start:es5": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", "startHost": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve --configuration es5 -o", "sass-js-compile-check": "gulp sass-js-compile-check", "test": "ng test", @@ -21,14 +21,14 @@ "url": "git://github.com/IgniteUI/@infragistics/igniteui-angular-examples/repository.git" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", - "@angular/router": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@angular/router": "17.0.0", "@ionic/angular": "5.6.3", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", @@ -38,17 +38,17 @@ "core-js": "2.6.2", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "16.0.7", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", - "igniteui-angular-spreadsheet": "16.1.2-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "16.1.2-beta.0", - "igniteui-theming": "1.4.14", + "igniteui-angular": "17.0.0-beta.0", + "igniteui-angular-charts": "17.0.0-beta.0", + "igniteui-angular-core": "17.0.0-beta.0", + "igniteui-angular-excel": "17.0.0-beta.0", + "igniteui-angular-gauges": "17.0.0-beta.0", + "igniteui-angular-inputs": "17.0.0-beta.0", + "igniteui-angular-layouts": "17.0.0-beta.0", + "igniteui-angular-maps": "17.0.0-beta.0", + "igniteui-angular-spreadsheet": "17.0.0-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.0.0-beta.0", + "igniteui-theming": "^3.3.1", "igniteui-webcomponents": "4.5.0-beta.1", "immediate": "3.2.3", "intl": "1.2.5", @@ -59,13 +59,13 @@ "tslib": "2.3.1", "uzip": "0.20200128.0", "web-animations-js": "2.3.2", - "zone.js": "~0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/jasmine": "3.10.2", "@types/jasminewd2": "2.0.9", "@types/node": "14.14.28", @@ -90,6 +90,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } -} +} \ No newline at end of file diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index b6a50ae4b..9f83a05d0 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -304,6 +304,7 @@ exports.generateStats = function generateStats(cb) { combinedSamples.push(samplePath); break; } + combinedSamples.sort(); stats.generate(cb, combinedSamples); } @@ -971,12 +972,12 @@ function updateReadme(cb) { readmeNewFile = readmeNewFile.replace("{SampleDisplayName}", sample.SampleDisplayName); readmeNewFile = readmeNewFile.replace("{SampleFolderPath}", sample.SourcePath); readmeNewFile = readmeNewFile.replace("{SampleRoute}", sampleRoute); - - let readmeOldFile = ""; + + let readmeOldFile = ""; if (fs.existsSync(readmePath)) { - readmeOldFile = fs.readFileSync(readmePath).toString(); + readmeOldFile = fs.readFileSync(readmePath).toString(); } - + if (readmeNewFile !== readmeOldFile) { console.log('UPDATED: ' + readmePath) changeFilesCount++; @@ -1032,7 +1033,7 @@ function sortByKeys(dependencies) { let keys = Object.keys(dependencies); keys.sort(); - + var sorted = {}; for (const key of keys) { sorted[key] = dependencies[key]; @@ -1046,7 +1047,7 @@ function updateIG(cb) { // del.sync("./samples/**/node_modules/**", {force:true}); // del.sync("./samples/**/node_modules", {force:true}); - // NOTE: change this array with new version of packages + // NOTE: change this array with new version of packages // and optionally use "@infragistics/" proget prefix, e.g. // { name: "@infragistics/igniteui-angular-charts", version: "23.2.18" }, // PROGET // { name: "igniteui-angular-charts", version: "14.1.0" }, // NPM @@ -1062,7 +1063,7 @@ function updateIG(cb) { { name: "igniteui-angular-spreadsheet-chart-adapter", version: "16.1.2-beta.0" }, { name: "igniteui-angular-spreadsheet" , version: "16.1.2-beta.0" }, { name: "igniteui-angular-datasources" , version: "16.1.2-beta.0" }, - + // these IG packages are sometimes updated: { name: "igniteui-webcomponents", version: "4.5.0-beta.1" }, { name: "igniteui-theming", version: "1.4.14" }, @@ -1137,13 +1138,13 @@ function updateIG(cb) { } } - let newContent = fileLines.join('\n'); + let newContent = fileLines.join('\n'); let jsonPackages = JSON.parse(newContent); // sort package dependencies by their names let sortPackages = sortByKeys(jsonPackages.dependencies); if (JSON.stringify(sortPackages) !== JSON.stringify(jsonPackages.dependencies)) { jsonPackages.dependencies = sortPackages; - jsonPackages.devDependencies = sortByKeys(jsonPackages.devDependencies); + jsonPackages.devDependencies = sortByKeys(jsonPackages.devDependencies); newContent = JSON.stringify(jsonPackages, null, ' ') + '\n'; fileChanged = true; } diff --git a/browser/scripts/stats.js b/browser/scripts/stats.js index 953024060..dbbebc0a8 100644 --- a/browser/scripts/stats.js +++ b/browser/scripts/stats.js @@ -7,8 +7,6 @@ const gulp = require("gulp"); const chmod = require("gulp-chmod"); const flatten = require("gulp-flatten"); const fs = require("fs"); -const path = require("path"); - const path = require("path"); const es = require("event-stream"); const del = require("del"); diff --git a/browser/src/app/app-routing.module.ts b/browser/src/app/app-routing.module.ts index 65637006e..fe7db51f6 100644 --- a/browser/src/app/app-routing.module.ts +++ b/browser/src/app/app-routing.module.ts @@ -16,8 +16,8 @@ export const samplesRoutes: Routes = [ // note these section is auto-generated - do not change it: // Auto-Insert-Modules-Start { path: "charts", data: ["SamplesForCharts"], loadChildren: () => import("../samples/charts/samples-modules").then(m => m.SamplesForCharts) }, - { path: "gauges", data: ["SamplesForGauges"], loadChildren: () => import("../samples/gauges/samples-modules").then(m => m.SamplesForGauges) }, { path: "excel", data: ["SamplesForExcel"], loadChildren: () => import("../samples/excel/samples-modules").then(m => m.SamplesForExcel) }, + { path: "gauges", data: ["SamplesForGauges"], loadChildren: () => import("../samples/gauges/samples-modules").then(m => m.SamplesForGauges) }, { path: "maps", data: ["SamplesForMaps"], loadChildren: () => import("../samples/maps/samples-modules").then(m => m.SamplesForMaps) } diff --git a/browser/src/app/index/index.component.ts b/browser/src/app/index/index.component.ts index 2700cd69a..6213578a9 100644 --- a/browser/src/app/index/index.component.ts +++ b/browser/src/app/index/index.component.ts @@ -9,8 +9,8 @@ import BrowserInfo from "../../browser-info.json"; // note these section is auto-generated - do not change it: // Auto-Insert-Imports-RoutingData-Start import { RoutingDataForCharts } from "../../samples/charts/routing-data"; -import { RoutingDataForGauges } from "../../samples/gauges/routing-data"; import { RoutingDataForExcel } from "../../samples/excel/routing-data"; +import { RoutingDataForGauges } from "../../samples/gauges/routing-data"; import { RoutingDataForMaps } from "../../samples/maps/routing-data"; @@ -48,8 +48,8 @@ export class IndexComponent implements OnInit, AfterViewInit { private modulesRoutes = [ // Auto-Insert-SamplesRoutingArray-Start { path: "charts", routesData: RoutingDataForCharts }, - { path: "gauges", routesData: RoutingDataForGauges }, { path: "excel", routesData: RoutingDataForExcel }, + { path: "gauges", routesData: RoutingDataForGauges }, { path: "maps", routesData: RoutingDataForMaps } diff --git a/browser/src/assets/stats.json b/browser/src/assets/stats.json index 849b514bd..b0c755ead 100644 --- a/browser/src/assets/stats.json +++ b/browser/src/assets/stats.json @@ -1,27 +1,94 @@ [ + { "browser": true, "xplat": false, "path": "charts/category-chart/annotations" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-all" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-callouts" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-crosshairs" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-custom" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-final-value" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-highlighting" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-styling" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-gap" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-gridlines" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-inverted" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-labels" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-locations" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-options" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-overlap" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-range" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-tickmarks" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-titles" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-styling" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-with-highlighting" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-with-tooltips" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/custom-selection" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/data-aggregations" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/data-legend" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/data-legend-formatting-decimals" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip-formatting-decimals" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip-positioning" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/format-specifiers" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/high-frequency" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/high-volume" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/highlighting" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-styling" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-animations" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-annotations" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-legend" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/marker-options" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/marker-templates" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/overview" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-styling" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-styling" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/spline-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/spline-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/spline-styling" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/stack-columns" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-styling" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-styling" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/tooltip-template" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/tooltip-types" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/trendline" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/value-lines" }, { "browser": false, "xplat": false, "path": "charts/data-chart/annotations-custom" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-annotations-corner-radius" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-annotations" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-label-rotation" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/axis-annotations-corner-radius" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-crossing" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/axis-label-rotation" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/axis-locations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-min-max-gap" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-settings" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-locations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-sharing" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-types" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-overlapping" }, { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/callout-layer-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-styling" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/callout-layer-styling" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/chart-navigation" }, { "browser": false, "xplat": false, "path": "charts/data-chart/chart-overview" }, { "browser": false, "xplat": false, "path": "charts/data-chart/chart-performance" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/chart-navigation" }, { "browser": false, "xplat": false, "path": "charts/data-chart/chart-synchronization" }, { "browser": false, "xplat": false, "path": "charts/data-chart/chart-titles" }, { "browser": false, "xplat": false, "path": "charts/data-chart/column-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/composite-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/crosshair-layer-styling" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/custom-drawing-annotations" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/custom-editing-data" }, { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-axes" }, { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-tickmarks" }, @@ -30,41 +97,42 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/data-tooltip" }, { "browser": false, "xplat": false, "path": "charts/data-chart/final-value-layer-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/financial-price-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/format-specifiers" }, { "browser": false, "xplat": false, "path": "charts/data-chart/legends" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-area-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-chart-types" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-line-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/polar-scatter-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-spline-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-spline-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/polar-scatter-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-area-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/radial-area-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-chart-types" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-column-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/radial-area-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-line-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/range-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-pie-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/range-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/range-column-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-bubble-chart-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-bubble-chart-single-source" }, { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-bubble-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-point-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-line-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-point-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-spline-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-animations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-annotations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-highlighting" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-marker-template" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-tooltips" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-markers" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-value-overlay" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/series-tooltips" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-trendlines" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/series-value-overlay" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-bar-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-column-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-spline-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-line-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-spline-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-spline-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-bar-chart" }, @@ -76,10 +144,10 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/tooltip-template" }, { "browser": false, "xplat": false, "path": "charts/data-chart/transition-event" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-area-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-point-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-spline-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-spline-series" }, @@ -89,30 +157,30 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-area-indicators" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-candlestick-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-column-indicators" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-ohlc-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-line-indicators" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-ohlc-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-overlays" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-column-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-pie-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-line-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-pie-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-column-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-bubble-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-area-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-line-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-hd-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-bubble-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-contour-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-hd-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-point-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-polyline-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-polygon-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-polyline-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-spline-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-shape-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-area-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-spline-area-series" }, @@ -121,140 +189,116 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-line-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-spline-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-spline-area-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-spline-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/waterfall-chart" }, { "browser": false, "xplat": false, "path": "charts/doughnut-chart/animation" }, { "browser": false, "xplat": false, "path": "charts/doughnut-chart/explosion" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/waterfall-chart" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/overview" }, { "browser": false, "xplat": false, "path": "charts/doughnut-chart/legend" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/overview" }, { "browser": false, "xplat": false, "path": "charts/doughnut-chart/rings" }, - { "browser": true, "xplat": false, "path": "charts/category-chart/annotations" }, { "browser": false, "xplat": false, "path": "charts/doughnut-chart/selection" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-all" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-crosshairs" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-callouts" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-final-value" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-custom" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-highlighting" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-gap" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-inverted" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-locations" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-gridlines" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-labels" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-overlap" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-options" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-tickmarks" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-titles" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-range" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-with-highlighting" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-with-tooltips" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-aggregations" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-legend-formatting-decimals" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip-formatting-decimals" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip-positioning" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/high-frequency" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/highlighting" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-legend" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/high-volume" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-animations" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-annotations" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/marker-options" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/marker-templates" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-legend" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/stack-columns" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/tooltip-types" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/tooltip-template" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/trendline" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/value-lines" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/animation" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/explosion" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/others" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/styling" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/legend" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/selection" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/axis-types" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/annotations" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/axis-types" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-formatting-currency" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-styling-props" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-formatting-currency" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-styling-props" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-styling-props" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/format-specifiers" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/high-frequency" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/high-volume" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-customization" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-types" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-data" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-customization" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-feeds" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/overview" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/panes" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/performance" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/stock-index-chart" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/scrollbars" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/stock-index-chart" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/styling" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/time-based-data" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/theming" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/time-based-data" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/titles" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-types" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-template" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-types" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/trendlines" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/events" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/volume-types" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/layout" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/overview" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/styling" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-category-chart" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-data-chart" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/layout-in-vertical-orientation" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/theming" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-column" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/animation" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/legend" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/explosion" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/others" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/overview" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/selection" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/styling" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-area" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/layout-actions-for-data-chart" }, + { "browser": false, "xplat": false, "path": "charts/sparkline/display-column" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-lines" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-types" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-winloss" }, { "browser": false, "xplat": false, "path": "charts/sparkline/grid" }, { "browser": false, "xplat": false, "path": "charts/sparkline/markers" }, { "browser": false, "xplat": false, "path": "charts/sparkline/normal-range" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/unknown-values" }, { "browser": false, "xplat": false, "path": "charts/sparkline/trendlines" }, + { "browser": false, "xplat": false, "path": "charts/sparkline/unknown-values" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-category-chart" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-data-chart" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/layout-actions-for-data-chart" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/layout-in-vertical-orientation" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/theming" }, + { "browser": false, "xplat": false, "path": "charts/tree-map/events" }, + { "browser": false, "xplat": false, "path": "charts/tree-map/layout" }, + { "browser": false, "xplat": false, "path": "charts/tree-map/overview" }, + { "browser": false, "xplat": false, "path": "charts/tree-map/styling" }, { "browser": false, "xplat": false, "path": "charts/zoomslider/overview" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-workbooks" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-worksheets" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/overview" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-cells" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-charts" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-sparklines" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-tables" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/activation" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-chart" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-combo" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/clipboard" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/commands" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/conditional-formatting" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/config-options" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/data-validation" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/hyperlinks" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/overview" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/animation" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/background" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/labels" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/measures" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/ranges" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/scale" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/tickmarks" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/animation" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/backing" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/labels" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/needle" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/ranges" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/scale" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/tickmarks" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/animation" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/backing" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/labels" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/needle" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/ranges" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/scale" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/tickmarks" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-csv" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-json-points" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-model" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-multiple-shapes" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-csv" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-multiple-sources" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-points" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-polylines" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-polygons" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-polylines" }, { "browser": false, "xplat": false, "path": "maps/geo-map/custom-tooltips" }, { "browser": false, "xplat": false, "path": "maps/geo-map/display-bing-imagery" }, { "browser": false, "xplat": false, "path": "maps/geo-map/display-esri-imagery" }, @@ -265,51 +309,13 @@ { "browser": false, "xplat": false, "path": "maps/geo-map/marker-type" }, { "browser": false, "xplat": false, "path": "maps/geo-map/navigation" }, { "browser": false, "xplat": false, "path": "maps/geo-map/overview" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/triangulating-data" }, { "browser": false, "xplat": false, "path": "maps/geo-map/shape-styling" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/triangulating-data" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-area-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-bubble-series" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-density-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-contour-series" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polygon-series" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-density-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-symbol-series" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polyline-series" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/animation" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/background" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/labels" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/measures" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/scale" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/tickmarks" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/activation" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-chart" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/ranges" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-combo" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/clipboard" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/commands" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/conditional-formatting" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/config-options" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/data-validation" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/hyperlinks" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-workbooks" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-worksheets" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/overview" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/overview" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-cells" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-charts" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-sparklines" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-tables" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/animation" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/labels" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/needle" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/backing" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/ranges" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/scale" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/tickmarks" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/animation" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/needle" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/backing" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/ranges" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/labels" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/scale" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/tickmarks" } + { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polygon-series" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polyline-series" } ] \ No newline at end of file diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index d2b9164bc..b18360557 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,14 +1,14 @@ [ -{"ver":"16.0.7","name":"igniteui-angular"}, -{"ver":"1.4.14","name":"igniteui-theming"}, -{"ver":"23.2.18","name":"igniteui-angular-core"}, -{"ver":"23.2.18","name":"igniteui-angular-charts"}, -{"ver":"23.2.18","name":"igniteui-angular-excel"}, -{"ver":"23.2.18","name":"igniteui-angular-gauges"}, -{"ver":"23.2.18","name":"igniteui-angular-inputs"}, -{"ver":"23.2.18","name":"igniteui-angular-layouts"}, -{"ver":"23.2.18","name":"igniteui-angular-maps"}, -{"ver":"23.2.18","name":"igniteui-angular-spreadsheet"}, -{"ver":"23.2.18","name":"igniteui-angular-spreadsheet-chart-adapter"}, -{"ver":"4.3.0-beta.0","name":"igniteui-webcomponents"} +{"ver":"17.0.0-beta.0","name":"igniteui-angular"}, +{"ver":"17.0.0-beta.0","name":"igniteui-angular-charts"}, +{"ver":"17.0.0-beta.0","name":"igniteui-angular-core"}, +{"ver":"17.0.0-beta.0","name":"igniteui-angular-excel"}, +{"ver":"17.0.0-beta.0","name":"igniteui-angular-gauges"}, +{"ver":"17.0.0-beta.0","name":"igniteui-angular-inputs"}, +{"ver":"17.0.0-beta.0","name":"igniteui-angular-layouts"}, +{"ver":"17.0.0-beta.0","name":"igniteui-angular-maps"}, +{"ver":"17.0.0-beta.0","name":"igniteui-angular-spreadsheet"}, +{"ver":"17.0.0-beta.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"^3.3.1","name":"igniteui-theming"}, +{"ver":"4.5.0-beta.1","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/browser/src/polyfills.ts b/browser/src/polyfills.ts index ed6eccd41..df5a3a3fe 100644 --- a/browser/src/polyfills.ts +++ b/browser/src/polyfills.ts @@ -21,13 +21,13 @@ //import 'core-js/es/array'; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // Run `npm install --save web-animations-js`. +//import "web-animations-js"; // Run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. @@ -38,9 +38,9 @@ import "zone.js"; // Included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/browser/src/tsconfig-es5.app.json b/browser/src/tsconfig-es5.app.json index 46a0ffdc2..494ff5f17 100644 --- a/browser/src/tsconfig-es5.app.json +++ b/browser/src/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2020" + "target": "ES2022" } } diff --git a/browser/tsconfig.base.json b/browser/tsconfig.base.json index e6edc86b5..520d1690f 100644 --- a/browser/tsconfig.base.json +++ b/browser/tsconfig.base.json @@ -3,22 +3,22 @@ "compilerOptions": { "resolveJsonModule": true, "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "./dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, - "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/browser/tsconfig.json b/browser/tsconfig.json index f19df73a1..1d2f37b50 100644 --- a/browser/tsconfig.json +++ b/browser/tsconfig.json @@ -5,6 +5,24 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "compilerOptions": { + "sourceMap": false, + "declaration": false, + "downlevelIteration": true, + "experimentalDecorators": true, + "target": "ES2022", + "module": "ES2022", + "moduleResolution": "node", + "importHelpers": true, + "typeRoots": [ + "node_modules/@types" + ] + }, + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/format-specifiers/src/app.component.html b/samples/charts/category-chart/format-specifiers/src/app.component.html index 47f4172f9..914d5ee45 100644 --- a/samples/charts/category-chart/format-specifiers/src/app.component.html +++ b/samples/charts/category-chart/format-specifiers/src/app.component.html @@ -22,7 +22,7 @@ dataToolTipValueFormatMode="Currency" dataToolTipValueFormatString="${0} Billion" yAxisLabelFormat="{0}B" - [yAxisLabelFormatSpecifiers]="NumberFormatSpecifier1"> + [yAxisLabelFormatSpecifiers]="numberFormatSpecifier1"> diff --git a/samples/charts/data-chart/format-specifiers/src/app.component.html b/samples/charts/data-chart/format-specifiers/src/app.component.html index a5e48b04f..8a048de82 100644 --- a/samples/charts/data-chart/format-specifiers/src/app.component.html +++ b/samples/charts/data-chart/format-specifiers/src/app.component.html @@ -32,7 +32,7 @@ title="Billions of U.S. Dollars" labelFormat="{0}B" abbreviateLargeNumbers="false" - [labelFormatSpecifiers]="NumberFormatSpecifier1"> + [labelFormatSpecifiers]="numberFormatSpecifier1"> + [xAxisLabelFormatSpecifiers]="dateTimeFormatSpecifier1"> diff --git a/samples/maps/geo-map/navigation/src/app/app.component.html b/samples/maps/geo-map/navigation/src/app/app.component.html index a451cda6a..69f79c758 100644 --- a/samples/maps/geo-map/navigation/src/app/app.component.html +++ b/samples/maps/geo-map/navigation/src/app/app.component.html @@ -86,6 +86,6 @@ -
Imagery Tiles: @ESRI/ArcGIS
+
Imagery Tiles: in ESRI/ArcGIS
From 138afa2e7de75b60f4f70234c60ca088450f1e18 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Fri, 17 Nov 2023 14:55:03 -0500 Subject: [PATCH 016/154] updated plat specific samples to angular-17 (#85) * mdd-angular-17-individual-samples mdd-angular-17-individual-samples * updated plat specific samples to angular 17 * updated sample template to angular 17 * update packages to angular 17 * updated dev packages * update jszip from 3.7.1 to 3.8.0 --------- Co-authored-by: HUSSAR-mtrela --- browser/package.json | 28 ++--- browser/scripts/browser.js | 101 +++++++++++------- .../annotations-all/angular.json | 13 ++- .../annotations-all/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../annotations-all/src/polyfills.ts | 12 +-- .../annotations-all/tsconfig.json | 1 + .../annotations-callouts/angular.json | 13 ++- .../annotations-callouts/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../annotations-callouts/src/polyfills.ts | 12 +-- .../annotations-callouts/tsconfig.json | 1 + .../annotations-crosshairs/angular.json | 13 ++- .../annotations-crosshairs/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../annotations-crosshairs/src/polyfills.ts | 12 +-- .../annotations-crosshairs/tsconfig.json | 1 + .../annotations-custom/angular.json | 13 ++- .../annotations-custom/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../annotations-custom/src/polyfills.ts | 12 +-- .../annotations-custom/tsconfig.json | 1 + .../annotations-final-value/angular.json | 13 ++- .../annotations-final-value/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../annotations-final-value/src/polyfills.ts | 12 +-- .../annotations-final-value/tsconfig.json | 1 + .../annotations-highlighting/angular.json | 13 ++- .../annotations-highlighting/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../annotations-highlighting/src/polyfills.ts | 12 +-- .../annotations-highlighting/tsconfig.json | 1 + .../category-chart/annotations/angular.json | 13 ++- .../category-chart/annotations/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../annotations/src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../annotations/src/polyfills.ts | 16 +-- .../category-chart/annotations/tsconfig.json | 1 + .../area-chart-multiple-sources/angular.json | 13 ++- .../area-chart-multiple-sources/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../area-chart-multiple-sources/tsconfig.json | 1 + .../area-chart-single-source/angular.json | 13 ++- .../area-chart-single-source/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../area-chart-single-source/src/polyfills.ts | 12 +-- .../area-chart-single-source/tsconfig.json | 1 + .../area-chart-styling/angular.json | 13 ++- .../area-chart-styling/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../area-chart-styling/src/polyfills.ts | 12 +-- .../area-chart-styling/tsconfig.json | 1 + .../category-chart/axis-gap/angular.json | 13 ++- .../category-chart/axis-gap/package.json | 38 +++---- .../axis-gap/src/config/tsconfig-es5.app.json | 2 +- .../axis-gap/src/config/tsconfig.base.json | 9 +- .../axis-gap/src/config/tsconfig.worker.json | 2 +- .../category-chart/axis-gap/src/polyfills.ts | 12 +-- .../category-chart/axis-gap/tsconfig.json | 1 + .../axis-gridlines/angular.json | 13 ++- .../axis-gridlines/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../axis-gridlines/src/polyfills.ts | 12 +-- .../axis-gridlines/tsconfig.json | 1 + .../category-chart/axis-inverted/angular.json | 13 ++- .../category-chart/axis-inverted/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../axis-inverted/src/polyfills.ts | 12 +-- .../axis-inverted/tsconfig.json | 1 + .../category-chart/axis-labels/angular.json | 13 ++- .../category-chart/axis-labels/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../axis-labels/src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../axis-labels/src/polyfills.ts | 12 +-- .../category-chart/axis-labels/tsconfig.json | 1 + .../axis-locations/angular.json | 13 ++- .../axis-locations/package.json | 38 +++---- .../axis-locations/sandbox.config.json | 5 - .../src/CountryRenewableElectricity.ts | 100 ----------------- .../axis-locations/src/app.component.html | 46 -------- .../axis-locations/src/app.component.scss | 3 - .../axis-locations/src/app.component.ts | 54 ---------- .../axis-locations/src/app.module.ts | 28 ----- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../axis-locations/src/polyfills.ts | 12 +-- .../axis-locations/tsconfig.json | 1 + .../category-chart/axis-locations/tslint.json | 31 ------ .../category-chart/axis-options/angular.json | 13 ++- .../category-chart/axis-options/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../axis-options/src/polyfills.ts | 12 +-- .../category-chart/axis-options/tsconfig.json | 1 + .../category-chart/axis-overlap/angular.json | 13 ++- .../category-chart/axis-overlap/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../axis-overlap/src/polyfills.ts | 12 +-- .../category-chart/axis-overlap/tsconfig.json | 1 + .../category-chart/axis-range/angular.json | 13 ++- .../category-chart/axis-range/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../axis-range/src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../axis-range/src/polyfills.ts | 12 +-- .../category-chart/axis-range/tsconfig.json | 1 + .../axis-tickmarks/angular.json | 13 ++- .../axis-tickmarks/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../axis-tickmarks/src/polyfills.ts | 12 +-- .../axis-tickmarks/tsconfig.json | 1 + .../category-chart/axis-titles/angular.json | 13 ++- .../category-chart/axis-titles/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../axis-titles/src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../axis-titles/src/polyfills.ts | 12 +-- .../category-chart/axis-titles/tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../tsconfig.json | 1 + .../column-chart-single-source/angular.json | 13 ++- .../column-chart-single-source/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../column-chart-single-source/tsconfig.json | 1 + .../column-chart-styling/angular.json | 13 ++- .../column-chart-styling/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../column-chart-styling/src/polyfills.ts | 12 +-- .../column-chart-styling/tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../column-chart-with-tooltips/angular.json | 13 ++- .../column-chart-with-tooltips/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../column-chart-with-tooltips/tsconfig.json | 1 + .../custom-selection/angular.json | 13 ++- .../custom-selection/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../custom-selection/src/polyfills.ts | 12 +-- .../custom-selection/tsconfig.json | 1 + .../data-aggregations/angular.json | 13 ++- .../data-aggregations/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../data-aggregations/src/polyfills.ts | 12 +-- .../data-aggregations/tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../tsconfig.json | 1 + .../category-chart/data-legend/angular.json | 13 ++- .../category-chart/data-legend/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../data-legend/src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../data-legend/src/polyfills.ts | 12 +-- .../category-chart/data-legend/tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../tsconfig.json | 1 + .../data-tooltip-positioning/angular.json | 13 ++- .../data-tooltip-positioning/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../data-tooltip-positioning/src/polyfills.ts | 12 +-- .../data-tooltip-positioning/tsconfig.json | 1 + .../category-chart/data-tooltip/angular.json | 13 ++- .../category-chart/data-tooltip/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../data-tooltip/src/polyfills.ts | 12 +-- .../category-chart/data-tooltip/tsconfig.json | 1 + .../format-specifiers/angular.json | 13 ++- .../format-specifiers/package.json | 36 +++---- .../format-specifiers/src/app.component.html | 2 +- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../format-specifiers/src/polyfills.ts | 12 +-- .../format-specifiers/tsconfig.json | 1 + .../high-frequency/angular.json | 13 ++- .../high-frequency/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../high-frequency/src/polyfills.ts | 16 +-- .../high-frequency/tsconfig.json | 1 + .../category-chart/high-volume/angular.json | 13 ++- .../category-chart/high-volume/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../high-volume/src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../high-volume/src/polyfills.ts | 16 +-- .../category-chart/high-volume/tsconfig.json | 1 + .../category-chart/highlighting/angular.json | 13 ++- .../category-chart/highlighting/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../highlighting/src/polyfills.ts | 16 +-- .../category-chart/highlighting/tsconfig.json | 1 + .../line-chart-multiple-sources/angular.json | 13 ++- .../line-chart-multiple-sources/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../line-chart-multiple-sources/tsconfig.json | 1 + .../line-chart-single-source/angular.json | 13 ++- .../line-chart-single-source/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../line-chart-single-source/src/polyfills.ts | 12 +-- .../line-chart-single-source/tsconfig.json | 1 + .../line-chart-styling/angular.json | 13 ++- .../line-chart-styling/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../line-chart-styling/src/polyfills.ts | 12 +-- .../line-chart-styling/tsconfig.json | 1 + .../line-chart-with-animations/angular.json | 13 ++- .../line-chart-with-animations/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../line-chart-with-animations/tsconfig.json | 1 + .../line-chart-with-annotations/angular.json | 13 ++- .../line-chart-with-annotations/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../line-chart-with-annotations/tsconfig.json | 1 + .../line-chart-with-legend/angular.json | 13 ++- .../line-chart-with-legend/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../line-chart-with-legend/src/polyfills.ts | 16 +-- .../line-chart-with-legend/tsconfig.json | 1 + .../marker-options/angular.json | 13 ++- .../marker-options/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../marker-options/src/polyfills.ts | 12 +-- .../marker-options/tsconfig.json | 1 + .../marker-templates/angular.json | 13 ++- .../marker-templates/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../marker-templates/src/polyfills.ts | 16 +-- .../marker-templates/tsconfig.json | 1 + .../category-chart/overview/angular.json | 13 ++- .../category-chart/overview/package.json | 32 +++--- .../overview/src/config/tsconfig-es5.app.json | 2 +- .../overview/src/config/tsconfig.base.json | 9 +- .../overview/src/config/tsconfig.worker.json | 2 +- .../category-chart/overview/src/polyfills.ts | 12 +-- .../category-chart/overview/tsconfig.json | 1 + .../point-chart-multiple-sources/angular.json | 13 ++- .../point-chart-multiple-sources/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../tsconfig.json | 1 + .../point-chart-single-source/angular.json | 13 ++- .../point-chart-single-source/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../point-chart-single-source/tsconfig.json | 1 + .../point-chart-styling/angular.json | 13 ++- .../point-chart-styling/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../point-chart-styling/src/polyfills.ts | 12 +-- .../point-chart-styling/tsconfig.json | 1 + .../spline-area-multiple-sources/angular.json | 13 ++- .../spline-area-multiple-sources/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../tsconfig.json | 1 + .../spline-area-single-source/angular.json | 13 ++- .../spline-area-single-source/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../spline-area-single-source/tsconfig.json | 1 + .../spline-area-styling/angular.json | 13 ++- .../spline-area-styling/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../spline-area-styling/src/polyfills.ts | 12 +-- .../spline-area-styling/tsconfig.json | 1 + .../spline-multiple-sources/angular.json | 13 ++- .../spline-multiple-sources/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../spline-multiple-sources/src/polyfills.ts | 12 +-- .../spline-multiple-sources/tsconfig.json | 1 + .../spline-single-source/angular.json | 13 ++- .../spline-single-source/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../spline-single-source/src/polyfills.ts | 12 +-- .../spline-single-source/tsconfig.json | 1 + .../spline-styling/angular.json | 13 ++- .../spline-styling/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../spline-styling/src/polyfills.ts | 12 +-- .../spline-styling/tsconfig.json | 1 + .../category-chart/stack-columns/angular.json | 13 ++- .../category-chart/stack-columns/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../stack-columns/src/polyfills.ts | 16 +-- .../stack-columns/tsconfig.json | 1 + .../step-area-multiple-sources/angular.json | 13 ++- .../step-area-multiple-sources/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../step-area-multiple-sources/tsconfig.json | 1 + .../step-area-single-source/angular.json | 13 ++- .../step-area-single-source/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../step-area-single-source/src/polyfills.ts | 12 +-- .../step-area-single-source/tsconfig.json | 1 + .../step-area-styling/angular.json | 13 ++- .../step-area-styling/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../step-area-styling/src/polyfills.ts | 12 +-- .../step-area-styling/tsconfig.json | 1 + .../step-line-multiple-sources/angular.json | 13 ++- .../step-line-multiple-sources/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../step-line-multiple-sources/tsconfig.json | 1 + .../step-line-single-source/angular.json | 13 ++- .../step-line-single-source/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../step-line-single-source/src/polyfills.ts | 12 +-- .../step-line-single-source/tsconfig.json | 1 + .../step-line-styling/angular.json | 13 ++- .../step-line-styling/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../step-line-styling/src/polyfills.ts | 12 +-- .../step-line-styling/tsconfig.json | 1 + .../tooltip-template/angular.json | 13 ++- .../tooltip-template/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../tooltip-template/src/polyfills.ts | 16 +-- .../tooltip-template/tsconfig.json | 1 + .../category-chart/tooltip-types/angular.json | 13 ++- .../category-chart/tooltip-types/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../tooltip-types/src/polyfills.ts | 16 +-- .../tooltip-types/tsconfig.json | 1 + .../category-chart/trendline/angular.json | 13 ++- .../category-chart/trendline/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../trendline/src/config/tsconfig.base.json | 11 +- .../trendline/src/config/tsconfig.worker.json | 2 +- .../category-chart/trendline/src/polyfills.ts | 16 +-- .../category-chart/trendline/tsconfig.json | 1 + .../category-chart/value-lines/angular.json | 13 ++- .../category-chart/value-lines/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../value-lines/src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../value-lines/src/polyfills.ts | 12 +-- .../category-chart/value-lines/tsconfig.json | 1 + .../annotations-custom/angular.json | 13 ++- .../annotations-custom/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../annotations-custom/src/polyfills.ts | 12 +-- .../annotations-custom/tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../tsconfig.json | 1 + .../data-chart/axis-annotations/angular.json | 13 ++- .../data-chart/axis-annotations/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../axis-annotations/src/polyfills.ts | 16 +-- .../data-chart/axis-annotations/tsconfig.json | 1 + .../data-chart/axis-crossing/angular.json | 13 ++- .../data-chart/axis-crossing/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../data-chart/axis-crossing/src/polyfills.ts | 16 +-- .../data-chart/axis-crossing/tsconfig.json | 1 + .../axis-label-rotation/angular.json | 13 ++- .../axis-label-rotation/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../axis-label-rotation/src/polyfills.ts | 12 +-- .../axis-label-rotation/tsconfig.json | 1 + .../data-chart/axis-locations/angular.json | 13 ++- .../data-chart/axis-locations/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../axis-locations/src/polyfills.ts | 16 +-- .../data-chart/axis-locations/tsconfig.json | 1 + .../data-chart/axis-min-max-gap/angular.json | 13 ++- .../data-chart/axis-min-max-gap/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../axis-min-max-gap/src/polyfills.ts | 12 +-- .../data-chart/axis-min-max-gap/tsconfig.json | 1 + .../data-chart/axis-settings/angular.json | 13 ++- .../data-chart/axis-settings/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../data-chart/axis-settings/src/polyfills.ts | 16 +-- .../data-chart/axis-settings/tsconfig.json | 1 + .../data-chart/axis-sharing/angular.json | 13 ++- .../data-chart/axis-sharing/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../data-chart/axis-sharing/src/polyfills.ts | 16 +-- .../data-chart/axis-sharing/tsconfig.json | 1 + .../charts/data-chart/axis-types/angular.json | 13 ++- .../charts/data-chart/axis-types/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../axis-types/src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../data-chart/axis-types/src/polyfills.ts | 16 +-- .../data-chart/axis-types/tsconfig.json | 1 + .../bar-chart-multiple-sources/angular.json | 13 ++- .../bar-chart-multiple-sources/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../bar-chart-multiple-sources/tsconfig.json | 1 + .../bar-chart-overlapping/angular.json | 13 ++- .../bar-chart-overlapping/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../bar-chart-overlapping/src/polyfills.ts | 12 +-- .../bar-chart-overlapping/tsconfig.json | 1 + .../bar-chart-single-source/angular.json | 13 ++- .../bar-chart-single-source/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../bar-chart-single-source/src/polyfills.ts | 12 +-- .../bar-chart-single-source/tsconfig.json | 1 + .../data-chart/bar-chart-styling/angular.json | 13 ++- .../data-chart/bar-chart-styling/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../bar-chart-styling/src/polyfills.ts | 12 +-- .../bar-chart-styling/tsconfig.json | 1 + .../callout-layer-styling/angular.json | 13 ++- .../callout-layer-styling/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../callout-layer-styling/src/polyfills.ts | 12 +-- .../callout-layer-styling/tsconfig.json | 1 + .../data-chart/chart-navigation/angular.json | 13 ++- .../data-chart/chart-navigation/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../chart-navigation/src/polyfills.ts | 16 +-- .../data-chart/chart-navigation/tsconfig.json | 1 + .../data-chart/chart-overview/angular.json | 13 ++- .../data-chart/chart-overview/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../chart-overview/src/polyfills.ts | 16 +-- .../data-chart/chart-overview/tsconfig.json | 1 + .../data-chart/chart-performance/angular.json | 13 ++- .../data-chart/chart-performance/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../chart-performance/src/polyfills.ts | 16 +-- .../chart-performance/tsconfig.json | 1 + .../chart-synchronization/angular.json | 13 ++- .../chart-synchronization/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../chart-synchronization/src/polyfills.ts | 16 +-- .../chart-synchronization/tsconfig.json | 1 + .../data-chart/chart-titles/angular.json | 13 ++- .../data-chart/chart-titles/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../data-chart/chart-titles/src/polyfills.ts | 16 +-- .../data-chart/chart-titles/tsconfig.json | 1 + .../column-chart-styling/angular.json | 13 ++- .../column-chart-styling/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../column-chart-styling/src/polyfills.ts | 16 +-- .../column-chart-styling/tsconfig.json | 1 + .../data-chart/composite-chart/angular.json | 13 ++- .../data-chart/composite-chart/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../composite-chart/src/polyfills.ts | 16 +-- .../data-chart/composite-chart/tsconfig.json | 1 + .../crosshair-layer-styling/angular.json | 13 ++- .../crosshair-layer-styling/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../crosshair-layer-styling/src/polyfills.ts | 16 +-- .../crosshair-layer-styling/tsconfig.json | 1 + .../custom-drawing-annotations/angular.json | 16 +-- .../custom-drawing-annotations/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../custom-drawing-annotations/tsconfig.json | 1 + .../custom-editing-data/angular.json | 16 +-- .../custom-editing-data/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../custom-editing-data/src/polyfills.ts | 16 +-- .../custom-editing-data/tsconfig.json | 1 + .../data-chart/dash-array-axes/angular.json | 13 ++- .../data-chart/dash-array-axes/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../dash-array-axes/src/polyfills.ts | 12 +-- .../data-chart/dash-array-axes/tsconfig.json | 1 + .../data-chart/dash-array-series/angular.json | 13 ++- .../data-chart/dash-array-series/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../dash-array-series/src/polyfills.ts | 12 +-- .../dash-array-series/tsconfig.json | 1 + .../dash-array-tickmarks/angular.json | 13 ++- .../dash-array-tickmarks/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../dash-array-tickmarks/src/polyfills.ts | 12 +-- .../dash-array-tickmarks/tsconfig.json | 1 + .../dash-array-trendline/angular.json | 13 ++- .../dash-array-trendline/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../dash-array-trendline/src/polyfills.ts | 12 +-- .../dash-array-trendline/tsconfig.json | 1 + .../data-chart/data-legend/angular.json | 13 ++- .../data-chart/data-legend/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../data-legend/src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../data-chart/data-legend/src/polyfills.ts | 12 +-- .../data-chart/data-legend/tsconfig.json | 1 + .../data-chart/data-tooltip/angular.json | 13 ++- .../data-chart/data-tooltip/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../data-chart/data-tooltip/src/polyfills.ts | 12 +-- .../data-chart/data-tooltip/tsconfig.json | 1 + .../final-value-layer-styling/angular.json | 13 ++- .../final-value-layer-styling/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../final-value-layer-styling/tsconfig.json | 1 + .../financial-price-series/angular.json | 13 ++- .../financial-price-series/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../financial-price-series/src/polyfills.ts | 12 +-- .../financial-price-series/tsconfig.json | 1 + .../data-chart/format-specifiers/angular.json | 13 ++- .../data-chart/format-specifiers/package.json | 32 +++--- .../format-specifiers/src/app.component.html | 2 +- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../format-specifiers/src/polyfills.ts | 12 +-- .../format-specifiers/tsconfig.json | 1 + .../charts/data-chart/legends/angular.json | 13 ++- .../charts/data-chart/legends/package.json | 34 +++--- .../legends/src/config/tsconfig-es5.app.json | 4 +- .../legends/src/config/tsconfig.base.json | 11 +- .../legends/src/config/tsconfig.worker.json | 2 +- .../data-chart/legends/src/polyfills.ts | 16 +-- .../charts/data-chart/legends/tsconfig.json | 1 + .../polar-area-chart-styling/angular.json | 13 ++- .../polar-area-chart-styling/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../polar-area-chart-styling/src/polyfills.ts | 12 +-- .../polar-area-chart-styling/tsconfig.json | 1 + .../data-chart/polar-area-chart/angular.json | 13 ++- .../data-chart/polar-area-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../polar-area-chart/src/polyfills.ts | 12 +-- .../data-chart/polar-area-chart/tsconfig.json | 1 + .../data-chart/polar-chart-types/angular.json | 13 ++- .../data-chart/polar-chart-types/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../polar-chart-types/src/polyfills.ts | 16 +-- .../polar-chart-types/tsconfig.json | 1 + .../data-chart/polar-line-chart/angular.json | 13 ++- .../data-chart/polar-line-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../polar-line-chart/src/polyfills.ts | 12 +-- .../data-chart/polar-line-chart/tsconfig.json | 1 + .../polar-scatter-chart/angular.json | 13 ++- .../polar-scatter-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../polar-scatter-chart/src/polyfills.ts | 12 +-- .../polar-scatter-chart/tsconfig.json | 1 + .../polar-spline-area-chart/angular.json | 13 ++- .../polar-spline-area-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../polar-spline-area-chart/src/polyfills.ts | 12 +-- .../polar-spline-area-chart/tsconfig.json | 1 + .../polar-spline-chart/angular.json | 13 ++- .../polar-spline-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../polar-spline-chart/src/polyfills.ts | 12 +-- .../polar-spline-chart/tsconfig.json | 1 + .../radial-area-chart-styling/angular.json | 13 ++- .../radial-area-chart-styling/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../radial-area-chart-styling/tsconfig.json | 1 + .../data-chart/radial-area-chart/angular.json | 13 ++- .../data-chart/radial-area-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../radial-area-chart/src/polyfills.ts | 12 +-- .../radial-area-chart/tsconfig.json | 1 + .../radial-chart-types/angular.json | 13 ++- .../radial-chart-types/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../radial-chart-types/src/polyfills.ts | 16 +-- .../radial-chart-types/tsconfig.json | 1 + .../radial-column-chart/angular.json | 13 ++- .../radial-column-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../radial-column-chart/src/polyfills.ts | 12 +-- .../radial-column-chart/tsconfig.json | 1 + .../data-chart/radial-line-chart/angular.json | 13 ++- .../data-chart/radial-line-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../radial-line-chart/src/polyfills.ts | 12 +-- .../radial-line-chart/tsconfig.json | 1 + .../data-chart/radial-pie-chart/angular.json | 13 ++- .../data-chart/radial-pie-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../radial-pie-chart/src/polyfills.ts | 12 +-- .../data-chart/radial-pie-chart/tsconfig.json | 1 + .../data-chart/range-area-chart/angular.json | 13 ++- .../data-chart/range-area-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../range-area-chart/src/polyfills.ts | 12 +-- .../data-chart/range-area-chart/tsconfig.json | 1 + .../range-column-chart/angular.json | 13 ++- .../range-column-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../range-column-chart/src/polyfills.ts | 12 +-- .../range-column-chart/tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../scatter-bubble-chart-styling/angular.json | 13 ++- .../scatter-bubble-chart-styling/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../scatter-line-chart/angular.json | 13 ++- .../scatter-line-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../scatter-line-chart/src/polyfills.ts | 12 +-- .../scatter-line-chart/tsconfig.json | 1 + .../scatter-point-chart/angular.json | 13 ++- .../scatter-point-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../scatter-point-chart/src/polyfills.ts | 12 +-- .../scatter-point-chart/tsconfig.json | 1 + .../scatter-spline-chart/angular.json | 13 ++- .../scatter-spline-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../scatter-spline-chart/src/polyfills.ts | 12 +-- .../scatter-spline-chart/tsconfig.json | 1 + .../data-chart/series-animations/angular.json | 13 ++- .../data-chart/series-animations/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../series-animations/src/polyfills.ts | 16 +-- .../series-animations/tsconfig.json | 1 + .../series-annotations/angular.json | 13 ++- .../series-annotations/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../series-annotations/src/polyfills.ts | 16 +-- .../series-annotations/tsconfig.json | 1 + .../series-highlighting/angular.json | 13 ++- .../series-highlighting/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../series-highlighting/src/polyfills.ts | 16 +-- .../series-highlighting/tsconfig.json | 1 + .../series-marker-template/angular.json | 13 ++- .../series-marker-template/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../series-marker-template/src/polyfills.ts | 16 +-- .../series-marker-template/tsconfig.json | 1 + .../data-chart/series-markers/angular.json | 13 ++- .../data-chart/series-markers/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../series-markers/src/polyfills.ts | 16 +-- .../data-chart/series-markers/tsconfig.json | 1 + .../data-chart/series-tooltips/angular.json | 13 ++- .../data-chart/series-tooltips/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../series-tooltips/src/polyfills.ts | 16 +-- .../data-chart/series-tooltips/tsconfig.json | 1 + .../data-chart/series-trendlines/angular.json | 13 ++- .../data-chart/series-trendlines/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../series-trendlines/src/polyfills.ts | 16 +-- .../series-trendlines/tsconfig.json | 1 + .../series-value-overlay/angular.json | 13 ++- .../series-value-overlay/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../series-value-overlay/src/polyfills.ts | 16 +-- .../series-value-overlay/tsconfig.json | 1 + .../stacked-100-area-chart/angular.json | 13 ++- .../stacked-100-area-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../stacked-100-area-chart/src/polyfills.ts | 12 +-- .../stacked-100-area-chart/tsconfig.json | 1 + .../stacked-100-bar-chart/angular.json | 13 ++- .../stacked-100-bar-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../stacked-100-bar-chart/src/polyfills.ts | 12 +-- .../stacked-100-bar-chart/tsconfig.json | 1 + .../stacked-100-column-chart/angular.json | 13 ++- .../stacked-100-column-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../stacked-100-column-chart/src/polyfills.ts | 12 +-- .../stacked-100-column-chart/tsconfig.json | 1 + .../stacked-100-line-chart/angular.json | 13 ++- .../stacked-100-line-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../stacked-100-line-chart/src/polyfills.ts | 12 +-- .../stacked-100-line-chart/tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../tsconfig.json | 1 + .../stacked-100-spline-chart/angular.json | 13 ++- .../stacked-100-spline-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../stacked-100-spline-chart/src/polyfills.ts | 12 +-- .../stacked-100-spline-chart/tsconfig.json | 1 + .../stacked-area-chart/angular.json | 13 ++- .../stacked-area-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../stacked-area-chart/src/polyfills.ts | 12 +-- .../stacked-area-chart/tsconfig.json | 1 + .../data-chart/stacked-bar-chart/angular.json | 13 ++- .../data-chart/stacked-bar-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../stacked-bar-chart/src/polyfills.ts | 12 +-- .../stacked-bar-chart/tsconfig.json | 1 + .../stacked-chart-types/angular.json | 13 ++- .../stacked-chart-types/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../stacked-chart-types/src/polyfills.ts | 16 +-- .../stacked-chart-types/tsconfig.json | 1 + .../stacked-column-chart/angular.json | 13 ++- .../stacked-column-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../stacked-column-chart/src/polyfills.ts | 12 +-- .../stacked-column-chart/tsconfig.json | 1 + .../stacked-line-chart/angular.json | 13 ++- .../stacked-line-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../stacked-line-chart/src/polyfills.ts | 12 +-- .../stacked-line-chart/tsconfig.json | 1 + .../stacked-spline-area-chart/angular.json | 13 ++- .../stacked-spline-area-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../stacked-spline-area-chart/tsconfig.json | 1 + .../stacked-spline-chart/angular.json | 13 ++- .../stacked-spline-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../stacked-spline-chart/src/polyfills.ts | 12 +-- .../stacked-spline-chart/tsconfig.json | 1 + .../data-chart/tooltip-template/angular.json | 13 ++- .../data-chart/tooltip-template/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../tooltip-template/src/polyfills.ts | 16 +-- .../data-chart/tooltip-template/tsconfig.json | 1 + .../data-chart/transition-event/angular.json | 13 ++- .../data-chart/transition-event/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../transition-event/src/polyfills.ts | 12 +-- .../data-chart/transition-event/tsconfig.json | 1 + .../type-category-area-series/angular.json | 13 ++- .../type-category-area-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-category-area-series/tsconfig.json | 1 + .../type-category-bar-series/angular.json | 13 ++- .../type-category-bar-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-category-bar-series/src/polyfills.ts | 16 +-- .../type-category-bar-series/tsconfig.json | 1 + .../type-category-column-series/angular.json | 13 ++- .../type-category-column-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-category-column-series/tsconfig.json | 1 + .../type-category-line-series/angular.json | 13 ++- .../type-category-line-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-category-line-series/tsconfig.json | 1 + .../type-category-point-series/angular.json | 13 ++- .../type-category-point-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-category-point-series/tsconfig.json | 1 + .../type-category-series/angular.json | 13 ++- .../type-category-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-category-series/src/polyfills.ts | 16 +-- .../type-category-series/tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../type-category-spline-series/angular.json | 13 ++- .../type-category-spline-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-category-spline-series/tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../type-financial-ohlc-series/angular.json | 13 ++- .../type-financial-ohlc-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-financial-ohlc-series/tsconfig.json | 1 + .../type-financial-overlays/angular.json | 13 ++- .../type-financial-overlays/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-financial-overlays/src/polyfills.ts | 16 +-- .../type-financial-overlays/tsconfig.json | 1 + .../type-financial-series/angular.json | 13 ++- .../type-financial-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-financial-series/src/polyfills.ts | 16 +-- .../type-financial-series/tsconfig.json | 1 + .../type-radial-area-series/angular.json | 13 ++- .../type-radial-area-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-radial-area-series/src/polyfills.ts | 16 +-- .../type-radial-area-series/tsconfig.json | 1 + .../type-radial-column-series/angular.json | 13 ++- .../type-radial-column-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-radial-column-series/tsconfig.json | 1 + .../type-radial-line-series/angular.json | 13 ++- .../type-radial-line-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-radial-line-series/src/polyfills.ts | 16 +-- .../type-radial-line-series/tsconfig.json | 1 + .../type-radial-pie-series/angular.json | 13 ++- .../type-radial-pie-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-radial-pie-series/src/polyfills.ts | 16 +-- .../type-radial-pie-series/tsconfig.json | 1 + .../type-range-area-series/angular.json | 13 ++- .../type-range-area-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-range-area-series/src/polyfills.ts | 16 +-- .../type-range-area-series/tsconfig.json | 1 + .../type-range-column-series/angular.json | 13 ++- .../type-range-column-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-range-column-series/src/polyfills.ts | 16 +-- .../type-range-column-series/tsconfig.json | 1 + .../data-chart/type-range-series/angular.json | 13 ++- .../data-chart/type-range-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-range-series/src/polyfills.ts | 16 +-- .../type-range-series/tsconfig.json | 1 + .../type-scatter-area-series/angular.json | 13 ++- .../type-scatter-area-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-scatter-area-series/src/polyfills.ts | 16 +-- .../type-scatter-area-series/tsconfig.json | 1 + .../type-scatter-bubble-series/angular.json | 13 ++- .../type-scatter-bubble-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-scatter-bubble-series/tsconfig.json | 1 + .../type-scatter-contour-series/angular.json | 13 ++- .../type-scatter-contour-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-scatter-contour-series/tsconfig.json | 1 + .../type-scatter-hd-series/angular.json | 13 ++- .../type-scatter-hd-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-scatter-hd-series/src/polyfills.ts | 16 +-- .../type-scatter-hd-series/tsconfig.json | 1 + .../type-scatter-line-series/angular.json | 13 ++- .../type-scatter-line-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-scatter-line-series/src/polyfills.ts | 16 +-- .../type-scatter-line-series/tsconfig.json | 1 + .../type-scatter-point-series/angular.json | 13 ++- .../type-scatter-point-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-scatter-point-series/tsconfig.json | 1 + .../type-scatter-polygon-series/angular.json | 13 ++- .../type-scatter-polygon-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-scatter-polygon-series/tsconfig.json | 1 + .../type-scatter-polyline-series/angular.json | 13 ++- .../type-scatter-polyline-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../type-scatter-series/angular.json | 13 ++- .../type-scatter-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-scatter-series/src/polyfills.ts | 16 +-- .../type-scatter-series/tsconfig.json | 1 + .../type-scatter-spline-series/angular.json | 13 ++- .../type-scatter-spline-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-scatter-spline-series/tsconfig.json | 1 + .../data-chart/type-shape-series/angular.json | 13 ++- .../data-chart/type-shape-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-shape-series/src/polyfills.ts | 16 +-- .../type-shape-series/tsconfig.json | 1 + .../type-stacked-100-area-series/angular.json | 13 ++- .../type-stacked-100-area-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../type-stacked-100-bar-series/angular.json | 13 ++- .../type-stacked-100-bar-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-stacked-100-bar-series/tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../type-stacked-100-line-series/angular.json | 13 ++- .../type-stacked-100-line-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../type-stacked-area-series/angular.json | 13 ++- .../type-stacked-area-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-stacked-area-series/src/polyfills.ts | 16 +-- .../type-stacked-area-series/tsconfig.json | 1 + .../type-stacked-bar-series/angular.json | 13 ++- .../type-stacked-bar-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-stacked-bar-series/src/polyfills.ts | 16 +-- .../type-stacked-bar-series/tsconfig.json | 1 + .../type-stacked-column-series/angular.json | 13 ++- .../type-stacked-column-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-stacked-column-series/tsconfig.json | 1 + .../type-stacked-line-series/angular.json | 13 ++- .../type-stacked-line-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-stacked-line-series/src/polyfills.ts | 16 +-- .../type-stacked-line-series/tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../tsconfig.json | 1 + .../type-stacked-spline-series/angular.json | 13 ++- .../type-stacked-spline-series/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-stacked-spline-series/tsconfig.json | 1 + .../data-chart/waterfall-chart/angular.json | 13 ++- .../data-chart/waterfall-chart/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../waterfall-chart/src/polyfills.ts | 12 +-- .../data-chart/waterfall-chart/tsconfig.json | 1 + .../doughnut-chart/animation/angular.json | 13 ++- .../doughnut-chart/animation/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../animation/src/config/tsconfig.base.json | 11 +- .../animation/src/config/tsconfig.worker.json | 2 +- .../doughnut-chart/animation/src/polyfills.ts | 16 +-- .../doughnut-chart/animation/tsconfig.json | 1 + .../doughnut-chart/explosion/angular.json | 13 ++- .../doughnut-chart/explosion/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../explosion/src/config/tsconfig.base.json | 11 +- .../explosion/src/config/tsconfig.worker.json | 2 +- .../doughnut-chart/explosion/src/polyfills.ts | 16 +-- .../doughnut-chart/explosion/tsconfig.json | 1 + .../charts/doughnut-chart/legend/angular.json | 13 ++- .../charts/doughnut-chart/legend/package.json | 32 +++--- .../legend/src/config/tsconfig-es5.app.json | 2 +- .../legend/src/config/tsconfig.base.json | 9 +- .../legend/src/config/tsconfig.worker.json | 2 +- .../doughnut-chart/legend/src/polyfills.ts | 12 +-- .../doughnut-chart/legend/tsconfig.json | 1 + .../doughnut-chart/overview/angular.json | 13 ++- .../doughnut-chart/overview/package.json | 32 +++--- .../overview/src/config/tsconfig-es5.app.json | 2 +- .../overview/src/config/tsconfig.base.json | 9 +- .../overview/src/config/tsconfig.worker.json | 2 +- .../doughnut-chart/overview/src/polyfills.ts | 12 +-- .../doughnut-chart/overview/tsconfig.json | 1 + .../charts/doughnut-chart/rings/angular.json | 13 ++- .../charts/doughnut-chart/rings/package.json | 32 +++--- .../rings/src/config/tsconfig-es5.app.json | 2 +- .../rings/src/config/tsconfig.base.json | 9 +- .../rings/src/config/tsconfig.worker.json | 2 +- .../doughnut-chart/rings/src/polyfills.ts | 12 +-- .../charts/doughnut-chart/rings/tsconfig.json | 1 + .../doughnut-chart/selection/angular.json | 13 ++- .../doughnut-chart/selection/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../selection/src/config/tsconfig.base.json | 11 +- .../selection/src/config/tsconfig.worker.json | 2 +- .../doughnut-chart/selection/src/polyfills.ts | 16 +-- .../doughnut-chart/selection/tsconfig.json | 1 + .../financial-chart/annotations/angular.json | 13 ++- .../financial-chart/annotations/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../annotations/src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../annotations/src/polyfills.ts | 16 +-- .../financial-chart/annotations/tsconfig.json | 1 + .../financial-chart/axis-types/angular.json | 13 ++- .../financial-chart/axis-types/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../axis-types/src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../axis-types/src/polyfills.ts | 16 +-- .../financial-chart/axis-types/tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../tsconfig.json | 1 + .../data-legend-styling-props/angular.json | 13 ++- .../data-legend-styling-props/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../data-legend-styling-props/tsconfig.json | 1 + .../financial-chart/data-legend/angular.json | 13 ++- .../financial-chart/data-legend/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../data-legend/src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../data-legend/src/polyfills.ts | 12 +-- .../financial-chart/data-legend/tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../tsconfig.json | 1 + .../data-tooltip-styling-props/angular.json | 13 ++- .../data-tooltip-styling-props/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../data-tooltip-styling-props/tsconfig.json | 1 + .../financial-chart/data-tooltip/angular.json | 13 ++- .../financial-chart/data-tooltip/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../data-tooltip/src/polyfills.ts | 12 +-- .../data-tooltip/tsconfig.json | 1 + .../format-specifiers/angular.json | 13 ++- .../format-specifiers/package.json | 32 +++--- .../format-specifiers/src/app.component.html | 4 +- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../format-specifiers/src/polyfills.ts | 12 +-- .../format-specifiers/tsconfig.json | 1 + .../high-frequency/angular.json | 13 ++- .../high-frequency/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../high-frequency/src/polyfills.ts | 16 +-- .../high-frequency/tsconfig.json | 1 + .../financial-chart/high-volume/angular.json | 13 ++- .../financial-chart/high-volume/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../high-volume/src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../high-volume/src/polyfills.ts | 16 +-- .../financial-chart/high-volume/tsconfig.json | 1 + .../indicator-customization/angular.json | 13 ++- .../indicator-customization/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../indicator-customization/src/polyfills.ts | 16 +-- .../indicator-customization/tsconfig.json | 1 + .../indicator-types/angular.json | 13 ++- .../indicator-types/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../indicator-types/src/polyfills.ts | 16 +-- .../indicator-types/tsconfig.json | 1 + .../multiple-data/angular.json | 13 ++- .../multiple-data/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../multiple-data/src/polyfills.ts | 16 +-- .../multiple-data/tsconfig.json | 1 + .../multiple-feeds/angular.json | 13 ++- .../multiple-feeds/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../multiple-feeds/src/polyfills.ts | 16 +-- .../multiple-feeds/tsconfig.json | 1 + .../financial-chart/overview/angular.json | 13 ++- .../financial-chart/overview/package.json | 34 +++--- .../overview/src/config/tsconfig-es5.app.json | 4 +- .../overview/src/config/tsconfig.base.json | 11 +- .../overview/src/config/tsconfig.worker.json | 2 +- .../financial-chart/overview/src/polyfills.ts | 16 +-- .../financial-chart/overview/tsconfig.json | 1 + .../charts/financial-chart/panes/angular.json | 13 ++- .../charts/financial-chart/panes/package.json | 34 +++--- .../panes/src/config/tsconfig-es5.app.json | 4 +- .../panes/src/config/tsconfig.base.json | 11 +- .../panes/src/config/tsconfig.worker.json | 2 +- .../financial-chart/panes/src/polyfills.ts | 16 +-- .../financial-chart/panes/tsconfig.json | 1 + .../financial-chart/performance/angular.json | 13 ++- .../financial-chart/performance/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../performance/src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../performance/src/polyfills.ts | 16 +-- .../financial-chart/performance/tsconfig.json | 1 + .../financial-chart/scrollbars/angular.json | 13 ++- .../financial-chart/scrollbars/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../scrollbars/src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../scrollbars/src/polyfills.ts | 12 +-- .../financial-chart/scrollbars/tsconfig.json | 1 + .../stock-index-chart/angular.json | 13 ++- .../stock-index-chart/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../stock-index-chart/src/polyfills.ts | 16 +-- .../stock-index-chart/tsconfig.json | 1 + .../financial-chart/styling/angular.json | 13 ++- .../financial-chart/styling/package.json | 34 +++--- .../styling/src/config/tsconfig-es5.app.json | 4 +- .../styling/src/config/tsconfig.base.json | 11 +- .../styling/src/config/tsconfig.worker.json | 2 +- .../financial-chart/styling/src/polyfills.ts | 16 +-- .../financial-chart/styling/tsconfig.json | 1 + .../financial-chart/theming/angular.json | 13 ++- .../financial-chart/theming/package.json | 34 +++--- .../theming/src/config/tsconfig-es5.app.json | 4 +- .../theming/src/config/tsconfig.base.json | 11 +- .../theming/src/config/tsconfig.worker.json | 2 +- .../financial-chart/theming/src/polyfills.ts | 16 +-- .../financial-chart/theming/tsconfig.json | 1 + .../time-based-data/angular.json | 13 ++- .../time-based-data/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../time-based-data/src/polyfills.ts | 16 +-- .../time-based-data/tsconfig.json | 1 + .../financial-chart/titles/angular.json | 13 ++- .../financial-chart/titles/package.json | 34 +++--- .../titles/src/config/tsconfig-es5.app.json | 4 +- .../titles/src/config/tsconfig.base.json | 11 +- .../titles/src/config/tsconfig.worker.json | 2 +- .../financial-chart/titles/src/polyfills.ts | 16 +-- .../financial-chart/titles/tsconfig.json | 1 + .../tooltip-template/angular.json | 13 ++- .../tooltip-template/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../tooltip-template/src/polyfills.ts | 16 +-- .../tooltip-template/tsconfig.json | 1 + .../tooltip-types/angular.json | 13 ++- .../tooltip-types/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../tooltip-types/src/polyfills.ts | 16 +-- .../tooltip-types/tsconfig.json | 1 + .../financial-chart/trendlines/angular.json | 13 ++- .../financial-chart/trendlines/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../trendlines/src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../trendlines/src/polyfills.ts | 16 +-- .../financial-chart/trendlines/tsconfig.json | 1 + .../financial-chart/volume-types/angular.json | 13 ++- .../financial-chart/volume-types/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../volume-types/src/polyfills.ts | 16 +-- .../volume-types/tsconfig.json | 1 + .../charts/pie-chart/animation/angular.json | 13 ++- .../charts/pie-chart/animation/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../animation/src/config/tsconfig.base.json | 11 +- .../animation/src/config/tsconfig.worker.json | 2 +- .../pie-chart/animation/src/polyfills.ts | 16 +-- .../charts/pie-chart/animation/tsconfig.json | 1 + .../charts/pie-chart/explosion/angular.json | 13 ++- .../charts/pie-chart/explosion/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../explosion/src/config/tsconfig.base.json | 11 +- .../explosion/src/config/tsconfig.worker.json | 2 +- .../pie-chart/explosion/src/polyfills.ts | 16 +-- .../charts/pie-chart/explosion/tsconfig.json | 1 + samples/charts/pie-chart/legend/angular.json | 13 ++- samples/charts/pie-chart/legend/package.json | 32 +++--- .../legend/src/config/tsconfig-es5.app.json | 2 +- .../legend/src/config/tsconfig.base.json | 9 +- .../legend/src/config/tsconfig.worker.json | 2 +- .../charts/pie-chart/legend/src/polyfills.ts | 12 +-- samples/charts/pie-chart/legend/tsconfig.json | 1 + samples/charts/pie-chart/others/angular.json | 13 ++- samples/charts/pie-chart/others/package.json | 32 +++--- .../others/src/config/tsconfig-es5.app.json | 2 +- .../others/src/config/tsconfig.base.json | 9 +- .../others/src/config/tsconfig.worker.json | 2 +- .../charts/pie-chart/others/src/polyfills.ts | 12 +-- samples/charts/pie-chart/others/tsconfig.json | 1 + .../charts/pie-chart/overview/angular.json | 13 ++- .../charts/pie-chart/overview/package.json | 32 +++--- .../overview/src/config/tsconfig-es5.app.json | 2 +- .../overview/src/config/tsconfig.base.json | 9 +- .../overview/src/config/tsconfig.worker.json | 2 +- .../pie-chart/overview/src/polyfills.ts | 12 +-- .../charts/pie-chart/overview/tsconfig.json | 1 + .../charts/pie-chart/selection/angular.json | 13 ++- .../charts/pie-chart/selection/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../selection/src/config/tsconfig.base.json | 11 +- .../selection/src/config/tsconfig.worker.json | 2 +- .../pie-chart/selection/src/polyfills.ts | 16 +-- .../charts/pie-chart/selection/tsconfig.json | 1 + samples/charts/pie-chart/styling/angular.json | 13 ++- samples/charts/pie-chart/styling/package.json | 32 +++--- .../styling/src/config/tsconfig-es5.app.json | 2 +- .../styling/src/config/tsconfig.base.json | 9 +- .../styling/src/config/tsconfig.worker.json | 2 +- .../charts/pie-chart/styling/src/polyfills.ts | 12 +-- .../charts/pie-chart/styling/tsconfig.json | 1 + .../sparkline/display-area/angular.json | 13 ++- .../sparkline/display-area/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../sparkline/display-area/src/polyfills.ts | 12 +-- .../sparkline/display-area/tsconfig.json | 1 + .../sparkline/display-column/angular.json | 13 ++- .../sparkline/display-column/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../sparkline/display-column/src/polyfills.ts | 12 +-- .../sparkline/display-column/tsconfig.json | 1 + .../sparkline/display-lines/angular.json | 13 ++- .../sparkline/display-lines/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../sparkline/display-lines/src/polyfills.ts | 12 +-- .../sparkline/display-lines/tsconfig.json | 1 + .../sparkline/display-types/angular.json | 13 ++- .../sparkline/display-types/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../sparkline/display-types/src/polyfills.ts | 16 +-- .../sparkline/display-types/tsconfig.json | 1 + .../sparkline/display-winloss/angular.json | 13 ++- .../sparkline/display-winloss/package.json | 32 +++--- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../display-winloss/src/polyfills.ts | 12 +-- .../sparkline/display-winloss/tsconfig.json | 1 + samples/charts/sparkline/grid/angular.json | 18 ++-- samples/charts/sparkline/grid/package.json | 38 +++---- .../grid/src/config/tsconfig-es5.app.json | 4 +- .../grid/src/config/tsconfig.base.json | 11 +- .../grid/src/config/tsconfig.worker.json | 2 +- .../charts/sparkline/grid/src/polyfills.ts | 16 +-- samples/charts/sparkline/grid/tsconfig.json | 1 + samples/charts/sparkline/markers/angular.json | 13 ++- samples/charts/sparkline/markers/package.json | 38 +++---- .../markers/src/config/tsconfig-es5.app.json | 2 +- .../markers/src/config/tsconfig.base.json | 9 +- .../markers/src/config/tsconfig.worker.json | 2 +- .../charts/sparkline/markers/src/polyfills.ts | 12 +-- .../charts/sparkline/markers/tsconfig.json | 1 + .../sparkline/normal-range/angular.json | 13 ++- .../sparkline/normal-range/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../sparkline/normal-range/src/polyfills.ts | 12 +-- .../sparkline/normal-range/tsconfig.json | 1 + .../charts/sparkline/trendlines/angular.json | 13 ++- .../charts/sparkline/trendlines/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../trendlines/src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../sparkline/trendlines/src/polyfills.ts | 12 +-- .../charts/sparkline/trendlines/tsconfig.json | 1 + .../sparkline/unknown-values/angular.json | 13 ++- .../sparkline/unknown-values/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../sparkline/unknown-values/src/polyfills.ts | 12 +-- .../sparkline/unknown-values/tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../tsconfig.json | 1 + .../actions-built-in-data-chart/angular.json | 13 ++- .../actions-built-in-data-chart/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../actions-built-in-data-chart/tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../tsconfig.json | 1 + .../angular.json | 13 ++- .../package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 2 +- .../src/config/tsconfig.base.json | 9 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 12 +-- .../tsconfig.json | 1 + samples/charts/toolbar/theming/angular.json | 13 ++- samples/charts/toolbar/theming/package.json | 38 +++---- .../theming/src/config/tsconfig-es5.app.json | 2 +- .../theming/src/config/tsconfig.base.json | 9 +- .../theming/src/config/tsconfig.worker.json | 2 +- .../charts/toolbar/theming/src/polyfills.ts | 12 +-- samples/charts/toolbar/theming/tsconfig.json | 1 + samples/charts/tree-map/events/angular.json | 13 ++- samples/charts/tree-map/events/package.json | 36 +++---- .../events/src/config/tsconfig-es5.app.json | 4 +- .../events/src/config/tsconfig.base.json | 11 +- .../events/src/config/tsconfig.worker.json | 2 +- .../charts/tree-map/events/src/polyfills.ts | 16 +-- samples/charts/tree-map/events/tsconfig.json | 1 + samples/charts/tree-map/layout/angular.json | 13 ++- samples/charts/tree-map/layout/package.json | 38 +++---- .../layout/src/config/tsconfig-es5.app.json | 2 +- .../layout/src/config/tsconfig.base.json | 9 +- .../layout/src/config/tsconfig.worker.json | 2 +- .../charts/tree-map/layout/src/polyfills.ts | 12 +-- samples/charts/tree-map/layout/tsconfig.json | 1 + samples/charts/tree-map/overview/angular.json | 13 ++- samples/charts/tree-map/overview/package.json | 32 +++--- .../overview/src/config/tsconfig-es5.app.json | 2 +- .../overview/src/config/tsconfig.base.json | 9 +- .../overview/src/config/tsconfig.worker.json | 2 +- .../charts/tree-map/overview/src/polyfills.ts | 12 +-- .../charts/tree-map/overview/tsconfig.json | 1 + samples/charts/tree-map/styling/angular.json | 13 ++- samples/charts/tree-map/styling/package.json | 32 +++--- .../styling/src/config/tsconfig-es5.app.json | 2 +- .../styling/src/config/tsconfig.base.json | 9 +- .../styling/src/config/tsconfig.worker.json | 2 +- .../charts/tree-map/styling/src/polyfills.ts | 12 +-- samples/charts/tree-map/styling/tsconfig.json | 1 + .../charts/zoomslider/overview/angular.json | 13 ++- .../charts/zoomslider/overview/package.json | 34 +++--- .../overview/src/config/tsconfig-es5.app.json | 4 +- .../overview/src/config/tsconfig.base.json | 11 +- .../overview/src/config/tsconfig.worker.json | 2 +- .../zoomslider/overview/src/polyfills.ts | 16 +-- .../charts/zoomslider/overview/tsconfig.json | 1 + .../operations-on-workbooks/angular.json | 13 ++- .../operations-on-workbooks/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../operations-on-workbooks/src/polyfills.ts | 16 +-- .../operations-on-workbooks/tsconfig.json | 1 + .../operations-on-worksheets/angular.json | 13 ++- .../operations-on-worksheets/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../operations-on-worksheets/src/polyfills.ts | 16 +-- .../operations-on-worksheets/tsconfig.json | 1 + .../excel/excel-library/overview/angular.json | 13 ++- .../excel/excel-library/overview/package.json | 34 +++--- .../overview/src/config/tsconfig-es5.app.json | 4 +- .../overview/src/config/tsconfig.base.json | 11 +- .../overview/src/config/tsconfig.worker.json | 2 +- .../excel-library/overview/src/polyfills.ts | 16 +-- .../excel-library/overview/tsconfig.json | 1 + .../working-with-cells/angular.json | 13 ++- .../working-with-cells/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../working-with-cells/src/polyfills.ts | 16 +-- .../working-with-cells/tsconfig.json | 1 + .../working-with-charts/angular.json | 13 ++- .../working-with-charts/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../working-with-charts/src/polyfills.ts | 16 +-- .../working-with-charts/tsconfig.json | 1 + .../working-with-sparklines/angular.json | 13 ++- .../working-with-sparklines/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../working-with-sparklines/src/polyfills.ts | 18 ++-- .../working-with-sparklines/tsconfig.json | 1 + .../working-with-tables/angular.json | 13 ++- .../working-with-tables/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../working-with-tables/src/polyfills.ts | 16 +-- .../working-with-tables/tsconfig.json | 1 + .../excel/spreadsheet/activation/angular.json | 13 ++- .../excel/spreadsheet/activation/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../activation/src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../spreadsheet/activation/src/polyfills.ts | 21 ++-- .../spreadsheet/activation/tsconfig.json | 1 + .../spreadsheet/adapter-chart/angular.json | 13 ++- .../spreadsheet/adapter-chart/package.json | 40 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../adapter-chart/src/polyfills.ts | 23 ++-- .../spreadsheet/adapter-chart/tsconfig.json | 1 + .../spreadsheet/adapter-combo/angular.json | 13 ++- .../spreadsheet/adapter-combo/package.json | 40 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../adapter-combo/src/polyfills.ts | 21 ++-- .../spreadsheet/adapter-combo/tsconfig.json | 1 + .../excel/spreadsheet/clipboard/angular.json | 13 ++- .../excel/spreadsheet/clipboard/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../clipboard/src/config/tsconfig.base.json | 11 +- .../clipboard/src/config/tsconfig.worker.json | 2 +- .../spreadsheet/clipboard/src/polyfills.ts | 21 ++-- .../excel/spreadsheet/clipboard/tsconfig.json | 1 + .../excel/spreadsheet/commands/angular.json | 13 ++- .../excel/spreadsheet/commands/package.json | 36 +++---- .../commands/src/config/tsconfig-es5.app.json | 4 +- .../commands/src/config/tsconfig.base.json | 11 +- .../commands/src/config/tsconfig.worker.json | 2 +- .../spreadsheet/commands/src/polyfills.ts | 21 ++-- .../excel/spreadsheet/commands/tsconfig.json | 1 + .../conditional-formatting/angular.json | 13 ++- .../conditional-formatting/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../conditional-formatting/src/polyfills.ts | 21 ++-- .../conditional-formatting/tsconfig.json | 1 + .../spreadsheet/config-options/angular.json | 13 ++- .../spreadsheet/config-options/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../config-options/src/polyfills.ts | 21 ++-- .../spreadsheet/config-options/tsconfig.json | 1 + .../spreadsheet/data-validation/angular.json | 13 ++- .../spreadsheet/data-validation/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../data-validation/src/polyfills.ts | 21 ++-- .../spreadsheet/data-validation/tsconfig.json | 1 + .../excel/spreadsheet/hyperlinks/angular.json | 13 ++- .../excel/spreadsheet/hyperlinks/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../hyperlinks/src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../spreadsheet/hyperlinks/src/polyfills.ts | 21 ++-- .../spreadsheet/hyperlinks/tsconfig.json | 1 + .../excel/spreadsheet/overview/angular.json | 13 ++- .../excel/spreadsheet/overview/package.json | 36 +++---- .../overview/src/config/tsconfig-es5.app.json | 4 +- .../overview/src/config/tsconfig.base.json | 11 +- .../overview/src/config/tsconfig.worker.json | 2 +- .../spreadsheet/overview/src/polyfills.ts | 21 ++-- .../excel/spreadsheet/overview/tsconfig.json | 1 + .../bullet-graph/animation/angular.json | 13 ++- .../bullet-graph/animation/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../animation/src/config/tsconfig.base.json | 11 +- .../animation/src/config/tsconfig.worker.json | 2 +- .../bullet-graph/animation/src/polyfills.ts | 16 +-- .../bullet-graph/animation/tsconfig.json | 1 + .../bullet-graph/background/angular.json | 13 ++- .../bullet-graph/background/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../background/src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../bullet-graph/background/src/polyfills.ts | 16 +-- .../bullet-graph/background/tsconfig.json | 1 + .../gauges/bullet-graph/labels/angular.json | 13 ++- .../gauges/bullet-graph/labels/package.json | 34 +++--- .../labels/src/config/tsconfig-es5.app.json | 4 +- .../labels/src/config/tsconfig.base.json | 11 +- .../labels/src/config/tsconfig.worker.json | 2 +- .../bullet-graph/labels/src/polyfills.ts | 16 +-- .../gauges/bullet-graph/labels/tsconfig.json | 1 + .../gauges/bullet-graph/measures/angular.json | 13 ++- .../gauges/bullet-graph/measures/package.json | 34 +++--- .../measures/src/config/tsconfig-es5.app.json | 4 +- .../measures/src/config/tsconfig.base.json | 11 +- .../measures/src/config/tsconfig.worker.json | 2 +- .../bullet-graph/measures/src/polyfills.ts | 16 +-- .../bullet-graph/measures/tsconfig.json | 1 + .../gauges/bullet-graph/ranges/angular.json | 13 ++- .../gauges/bullet-graph/ranges/package.json | 34 +++--- .../ranges/src/config/tsconfig-es5.app.json | 4 +- .../ranges/src/config/tsconfig.base.json | 11 +- .../ranges/src/config/tsconfig.worker.json | 2 +- .../bullet-graph/ranges/src/polyfills.ts | 16 +-- .../gauges/bullet-graph/ranges/tsconfig.json | 1 + .../gauges/bullet-graph/scale/angular.json | 13 ++- .../gauges/bullet-graph/scale/package.json | 34 +++--- .../scale/src/config/tsconfig-es5.app.json | 4 +- .../scale/src/config/tsconfig.base.json | 11 +- .../scale/src/config/tsconfig.worker.json | 2 +- .../bullet-graph/scale/src/polyfills.ts | 16 +-- .../gauges/bullet-graph/scale/tsconfig.json | 1 + .../bullet-graph/tickmarks/angular.json | 13 ++- .../bullet-graph/tickmarks/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../tickmarks/src/config/tsconfig.base.json | 11 +- .../tickmarks/src/config/tsconfig.worker.json | 2 +- .../bullet-graph/tickmarks/src/polyfills.ts | 16 +-- .../bullet-graph/tickmarks/tsconfig.json | 1 + .../linear-gauge/animation/angular.json | 13 ++- .../linear-gauge/animation/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../animation/src/config/tsconfig.base.json | 11 +- .../animation/src/config/tsconfig.worker.json | 2 +- .../linear-gauge/animation/src/polyfills.ts | 16 +-- .../linear-gauge/animation/tsconfig.json | 1 + .../gauges/linear-gauge/backing/angular.json | 13 ++- .../gauges/linear-gauge/backing/package.json | 34 +++--- .../backing/src/config/tsconfig-es5.app.json | 4 +- .../backing/src/config/tsconfig.base.json | 11 +- .../backing/src/config/tsconfig.worker.json | 2 +- .../linear-gauge/backing/src/polyfills.ts | 16 +-- .../gauges/linear-gauge/backing/tsconfig.json | 1 + .../gauges/linear-gauge/labels/angular.json | 13 ++- .../gauges/linear-gauge/labels/package.json | 34 +++--- .../labels/src/config/tsconfig-es5.app.json | 4 +- .../labels/src/config/tsconfig.base.json | 11 +- .../labels/src/config/tsconfig.worker.json | 2 +- .../linear-gauge/labels/src/polyfills.ts | 16 +-- .../gauges/linear-gauge/labels/tsconfig.json | 1 + .../gauges/linear-gauge/needle/angular.json | 13 ++- .../gauges/linear-gauge/needle/package.json | 34 +++--- .../needle/src/config/tsconfig-es5.app.json | 4 +- .../needle/src/config/tsconfig.base.json | 11 +- .../needle/src/config/tsconfig.worker.json | 2 +- .../linear-gauge/needle/src/polyfills.ts | 16 +-- .../gauges/linear-gauge/needle/tsconfig.json | 1 + .../gauges/linear-gauge/ranges/angular.json | 13 ++- .../gauges/linear-gauge/ranges/package.json | 34 +++--- .../ranges/src/config/tsconfig-es5.app.json | 4 +- .../ranges/src/config/tsconfig.base.json | 11 +- .../ranges/src/config/tsconfig.worker.json | 2 +- .../linear-gauge/ranges/src/polyfills.ts | 16 +-- .../gauges/linear-gauge/ranges/tsconfig.json | 1 + .../gauges/linear-gauge/scale/angular.json | 13 ++- .../gauges/linear-gauge/scale/package.json | 34 +++--- .../scale/src/config/tsconfig-es5.app.json | 4 +- .../scale/src/config/tsconfig.base.json | 11 +- .../scale/src/config/tsconfig.worker.json | 2 +- .../linear-gauge/scale/src/polyfills.ts | 16 +-- .../gauges/linear-gauge/scale/tsconfig.json | 1 + .../linear-gauge/tickmarks/angular.json | 13 ++- .../linear-gauge/tickmarks/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../tickmarks/src/config/tsconfig.base.json | 11 +- .../tickmarks/src/config/tsconfig.worker.json | 2 +- .../linear-gauge/tickmarks/src/polyfills.ts | 16 +-- .../linear-gauge/tickmarks/tsconfig.json | 1 + .../radial-gauge/animation/angular.json | 13 ++- .../radial-gauge/animation/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../animation/src/config/tsconfig.base.json | 11 +- .../animation/src/config/tsconfig.worker.json | 2 +- .../radial-gauge/animation/src/polyfills.ts | 16 +-- .../radial-gauge/animation/tsconfig.json | 1 + .../gauges/radial-gauge/backing/angular.json | 13 ++- .../gauges/radial-gauge/backing/package.json | 34 +++--- .../backing/src/config/tsconfig-es5.app.json | 4 +- .../backing/src/config/tsconfig.base.json | 11 +- .../backing/src/config/tsconfig.worker.json | 2 +- .../radial-gauge/backing/src/polyfills.ts | 16 +-- .../gauges/radial-gauge/backing/tsconfig.json | 1 + .../gauges/radial-gauge/labels/angular.json | 13 ++- .../gauges/radial-gauge/labels/package.json | 34 +++--- .../labels/src/config/tsconfig-es5.app.json | 4 +- .../labels/src/config/tsconfig.base.json | 11 +- .../labels/src/config/tsconfig.worker.json | 2 +- .../radial-gauge/labels/src/polyfills.ts | 16 +-- .../gauges/radial-gauge/labels/tsconfig.json | 1 + .../gauges/radial-gauge/needle/angular.json | 13 ++- .../gauges/radial-gauge/needle/package.json | 34 +++--- .../needle/src/config/tsconfig-es5.app.json | 4 +- .../needle/src/config/tsconfig.base.json | 11 +- .../needle/src/config/tsconfig.worker.json | 2 +- .../radial-gauge/needle/src/polyfills.ts | 16 +-- .../gauges/radial-gauge/needle/tsconfig.json | 1 + .../gauges/radial-gauge/ranges/angular.json | 13 ++- .../gauges/radial-gauge/ranges/package.json | 34 +++--- .../ranges/src/config/tsconfig-es5.app.json | 4 +- .../ranges/src/config/tsconfig.base.json | 11 +- .../ranges/src/config/tsconfig.worker.json | 2 +- .../radial-gauge/ranges/src/polyfills.ts | 16 +-- .../gauges/radial-gauge/ranges/tsconfig.json | 1 + .../gauges/radial-gauge/scale/angular.json | 13 ++- .../gauges/radial-gauge/scale/package.json | 34 +++--- .../scale/src/config/tsconfig-es5.app.json | 4 +- .../scale/src/config/tsconfig.base.json | 11 +- .../scale/src/config/tsconfig.worker.json | 2 +- .../radial-gauge/scale/src/polyfills.ts | 16 +-- .../gauges/radial-gauge/scale/tsconfig.json | 1 + .../radial-gauge/tickmarks/angular.json | 13 ++- .../radial-gauge/tickmarks/package.json | 34 +++--- .../src/config/tsconfig-es5.app.json | 4 +- .../tickmarks/src/config/tsconfig.base.json | 11 +- .../tickmarks/src/config/tsconfig.worker.json | 2 +- .../radial-gauge/tickmarks/src/polyfills.ts | 16 +-- .../radial-gauge/tickmarks/tsconfig.json | 1 + .../geo-map/binding-data-csv/angular.json | 13 ++- .../geo-map/binding-data-csv/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../geo-map/binding-data-csv/src/polyfills.ts | 18 ++-- .../geo-map/binding-data-csv/tsconfig.json | 1 + .../binding-data-json-points/angular.json | 13 ++- .../binding-data-json-points/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../binding-data-json-points/src/polyfills.ts | 16 +-- .../binding-data-json-points/tsconfig.json | 1 + .../geo-map/binding-data-model/angular.json | 13 ++- .../geo-map/binding-data-model/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../binding-data-model/src/polyfills.ts | 16 +-- .../geo-map/binding-data-model/tsconfig.json | 1 + .../binding-multiple-shapes/angular.json | 13 ++- .../binding-multiple-shapes/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../binding-multiple-shapes/src/polyfills.ts | 16 +-- .../binding-multiple-shapes/tsconfig.json | 1 + .../binding-multiple-sources/angular.json | 13 ++- .../binding-multiple-sources/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../binding-multiple-sources/src/polyfills.ts | 16 +-- .../binding-multiple-sources/tsconfig.json | 1 + .../geo-map/binding-shp-points/angular.json | 13 ++- .../geo-map/binding-shp-points/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../binding-shp-points/src/polyfills.ts | 16 +-- .../geo-map/binding-shp-points/tsconfig.json | 1 + .../geo-map/binding-shp-polygons/angular.json | 13 ++- .../geo-map/binding-shp-polygons/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../binding-shp-polygons/src/polyfills.ts | 16 +-- .../binding-shp-polygons/tsconfig.json | 1 + .../binding-shp-polylines/angular.json | 13 ++- .../binding-shp-polylines/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../binding-shp-polylines/src/polyfills.ts | 16 +-- .../binding-shp-polylines/tsconfig.json | 1 + .../maps/geo-map/custom-tooltips/angular.json | 13 ++- .../maps/geo-map/custom-tooltips/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../geo-map/custom-tooltips/src/polyfills.ts | 16 +-- .../geo-map/custom-tooltips/tsconfig.json | 1 + .../geo-map/display-bing-imagery/angular.json | 13 ++- .../geo-map/display-bing-imagery/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../display-bing-imagery/src/polyfills.ts | 16 +-- .../display-bing-imagery/tsconfig.json | 1 + .../geo-map/display-esri-imagery/angular.json | 13 ++- .../geo-map/display-esri-imagery/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../display-esri-imagery/src/polyfills.ts | 16 +-- .../display-esri-imagery/tsconfig.json | 1 + .../geo-map/display-heat-imagery/angular.json | 13 ++- .../geo-map/display-heat-imagery/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../display-heat-imagery/src/polyfills.ts | 16 +-- .../display-heat-imagery/tsconfig.json | 1 + .../geo-map/display-osm-imagery/angular.json | 13 ++- .../geo-map/display-osm-imagery/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../display-osm-imagery/src/polyfills.ts | 16 +-- .../geo-map/display-osm-imagery/tsconfig.json | 1 + .../maps/geo-map/marker-layouts/angular.json | 13 ++- .../maps/geo-map/marker-layouts/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../geo-map/marker-layouts/src/polyfills.ts | 16 +-- .../maps/geo-map/marker-layouts/tsconfig.json | 1 + .../maps/geo-map/marker-template/angular.json | 13 ++- .../maps/geo-map/marker-template/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../geo-map/marker-template/src/polyfills.ts | 16 +-- .../geo-map/marker-template/tsconfig.json | 1 + samples/maps/geo-map/marker-type/angular.json | 13 ++- samples/maps/geo-map/marker-type/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../marker-type/src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../maps/geo-map/marker-type/src/polyfills.ts | 16 +-- .../maps/geo-map/marker-type/tsconfig.json | 1 + samples/maps/geo-map/navigation/angular.json | 13 ++- samples/maps/geo-map/navigation/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../navigation/src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../maps/geo-map/navigation/src/polyfills.ts | 16 +-- samples/maps/geo-map/navigation/tsconfig.json | 1 + samples/maps/geo-map/overview/angular.json | 13 ++- samples/maps/geo-map/overview/package.json | 36 +++---- .../overview/src/config/tsconfig-es5.app.json | 4 +- .../overview/src/config/tsconfig.base.json | 11 +- .../overview/src/config/tsconfig.worker.json | 2 +- .../maps/geo-map/overview/src/polyfills.ts | 16 +-- samples/maps/geo-map/overview/tsconfig.json | 1 + .../maps/geo-map/shape-styling/angular.json | 13 ++- .../maps/geo-map/shape-styling/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../geo-map/shape-styling/src/polyfills.ts | 16 +-- .../maps/geo-map/shape-styling/tsconfig.json | 1 + .../geo-map/triangulating-data/angular.json | 13 ++- .../geo-map/triangulating-data/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../triangulating-data/src/polyfills.ts | 16 +-- .../geo-map/triangulating-data/tsconfig.json | 1 + .../type-scatter-area-series/angular.json | 13 ++- .../type-scatter-area-series/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../type-scatter-area-series/src/polyfills.ts | 16 +-- .../type-scatter-area-series/tsconfig.json | 1 + .../type-scatter-bubble-series/angular.json | 13 ++- .../type-scatter-bubble-series/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-scatter-bubble-series/tsconfig.json | 1 + .../type-scatter-contour-series/angular.json | 13 ++- .../type-scatter-contour-series/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-scatter-contour-series/tsconfig.json | 1 + .../type-scatter-density-series/angular.json | 13 ++- .../type-scatter-density-series/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-scatter-density-series/tsconfig.json | 1 + .../type-scatter-symbol-series/angular.json | 13 ++- .../type-scatter-symbol-series/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-scatter-symbol-series/tsconfig.json | 1 + .../type-shape-polygon-series/angular.json | 13 ++- .../type-shape-polygon-series/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-shape-polygon-series/tsconfig.json | 1 + .../type-shape-polyline-series/angular.json | 13 ++- .../type-shape-polyline-series/package.json | 36 +++---- .../src/config/tsconfig-es5.app.json | 4 +- .../src/config/tsconfig.base.json | 11 +- .../src/config/tsconfig.worker.json | 2 +- .../src/polyfills.ts | 16 +-- .../type-shape-polyline-series/tsconfig.json | 1 + samples/templates/angular.json | 13 ++- .../src/config/tsconfig-es5.app.json | 6 ++ .../templates/src/config/tsconfig.app.json | 12 +++ .../templates/src/config/tsconfig.base.json | 24 +++++ .../templates/src/config/tsconfig.spec.json | 19 ++++ .../templates/src/config/tsconfig.worker.json | 14 +++ samples/templates/src/index.html | 23 ++++ .../axis-locations => templates}/src/main.ts | 0 samples/templates/src/polyfills.ts | 65 +++++++++++ .../src/styles.scss | 0 samples/templates/src/typings.d.ts | 5 + samples/templates/tsconfig copy.json | 21 ++++ samples/templates/tsconfig.json | 21 ++++ 2270 files changed, 13884 insertions(+), 11765 deletions(-) delete mode 100644 samples/charts/category-chart/axis-locations/sandbox.config.json delete mode 100644 samples/charts/category-chart/axis-locations/src/CountryRenewableElectricity.ts delete mode 100644 samples/charts/category-chart/axis-locations/src/app.component.html delete mode 100644 samples/charts/category-chart/axis-locations/src/app.component.scss delete mode 100644 samples/charts/category-chart/axis-locations/src/app.component.ts delete mode 100644 samples/charts/category-chart/axis-locations/src/app.module.ts delete mode 100644 samples/charts/category-chart/axis-locations/tslint.json create mode 100644 samples/excel/excel-library/operations-on-workbooks/src/environments/environment.prod.ts create mode 100644 samples/excel/excel-library/operations-on-workbooks/src/environments/environment.ts create mode 100644 samples/excel/excel-library/operations-on-worksheets/src/environments/environment.prod.ts create mode 100644 samples/excel/excel-library/operations-on-worksheets/src/environments/environment.ts create mode 100644 samples/excel/excel-library/working-with-cells/src/environments/environment.prod.ts create mode 100644 samples/excel/excel-library/working-with-cells/src/environments/environment.ts create mode 100644 samples/excel/excel-library/working-with-charts/src/environments/environment.prod.ts create mode 100644 samples/excel/excel-library/working-with-charts/src/environments/environment.ts create mode 100644 samples/excel/excel-library/working-with-sparklines/src/environments/environment.prod.ts create mode 100644 samples/excel/excel-library/working-with-sparklines/src/environments/environment.ts create mode 100644 samples/excel/excel-library/working-with-tables/src/environments/environment.prod.ts create mode 100644 samples/excel/excel-library/working-with-tables/src/environments/environment.ts create mode 100644 samples/templates/src/config/tsconfig-es5.app.json create mode 100644 samples/templates/src/config/tsconfig.app.json create mode 100644 samples/templates/src/config/tsconfig.base.json create mode 100644 samples/templates/src/config/tsconfig.spec.json create mode 100644 samples/templates/src/config/tsconfig.worker.json create mode 100644 samples/templates/src/index.html rename samples/{charts/category-chart/axis-locations => templates}/src/main.ts (100%) create mode 100644 samples/templates/src/polyfills.ts rename samples/{charts/category-chart/axis-locations => templates}/src/styles.scss (100%) create mode 100644 samples/templates/src/typings.d.ts create mode 100644 samples/templates/tsconfig copy.json create mode 100644 samples/templates/tsconfig.json diff --git a/browser/package.json b/browser/package.json index 89c02bde0..5e453da66 100644 --- a/browser/package.json +++ b/browser/package.json @@ -35,24 +35,24 @@ "ajv": "8.6.2", "angular-in-memory-web-api": "0.9.0", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "17.0.0-beta.0", - "igniteui-angular-charts": "17.0.0-beta.0", - "igniteui-angular-core": "17.0.0-beta.0", - "igniteui-angular-excel": "17.0.0-beta.0", - "igniteui-angular-gauges": "17.0.0-beta.0", - "igniteui-angular-inputs": "17.0.0-beta.0", - "igniteui-angular-layouts": "17.0.0-beta.0", - "igniteui-angular-maps": "17.0.0-beta.0", - "igniteui-angular-spreadsheet": "17.0.0-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.0.0-beta.0", - "igniteui-theming": "^3.3.1", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular": "17.0.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", + "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-angular-maps": "17.0.0", + "igniteui-angular-spreadsheet": "17.0.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.0.0", + "igniteui-theming": "3.3.1", + "igniteui-webcomponents": "4.5.0", "immediate": "3.2.3", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "minireset.css": "0.0.6", "rxjs": "6.6.7", "rxjs-compat": "6.6.7", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 9f83a05d0..d34754453 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1002,26 +1002,35 @@ function makeDirectoryFor(filePath) { // fs.mkdir(sampleOutputFolder + 'src', { recursive: true }, (err) => { if (err) throw err; }); } +// copies files from samples/templates folder to samples, e.g. charts function updateSamples(cb) { - log('updating samples files... '); var templateFiles = [ - "/.stackblitzrc", - // "/src/environments/environment.ts", - // "/src/environments/environment.prod.ts" + ".stackblitzrc", + "angular.json", + "tsconfig.json", + "src/environments/environment.ts", + "src/environments/environment.prod.ts", + "src/config/tsconfig-es5.app.json", + "src/config/tsconfig.app.json", + "src/config/tsconfig.base.json", + "src/config/tsconfig.spec.json", + "src/config/tsconfig.worker.json", + // "src/main.ts", + // "src/index.html", + "src/polyfills.ts", + // "src/styles.scss", + "src/typings.d.ts", ]; for (const templatePath of templateFiles) { - - var templateFile = fs.readFileSync("../samples/templates" + templatePath, "utf8"); - + var templateFile = fs.readFileSync("../samples/templates/" + templatePath, "utf8"); for (const sample of samplesDatabase) { - let samplePath = '../samples/' + sample.SampleGroup + '/' + sample.SampleControl + "/" + sample.SampleFolder; - + let samplePath = '../samples/' + sample.SampleGroup + '/' + sample.SampleControl + "/" + sample.SampleFolder + "/"; let outputPath = samplePath + templatePath; + // log(outputPath); makeDirectoryFor(outputPath) - fs.writeFileSync(outputPath, templateFile); } } @@ -1053,35 +1062,49 @@ function updateIG(cb) { // { name: "igniteui-angular-charts", version: "14.1.0" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { name: "igniteui-angular-core" , version: "16.1.2-beta.0" }, - { name: "igniteui-angular-charts" , version: "16.1.2-beta.0" }, - { name: "igniteui-angular-excel" , version: "16.1.2-beta.0" }, - { name: "igniteui-angular-gauges" , version: "16.1.2-beta.0" }, - { name: "igniteui-angular-inputs" , version: "16.1.2-beta.0" }, - { name: "igniteui-angular-layouts" , version: "16.1.2-beta.0" }, - { name: "igniteui-angular-maps" , version: "16.1.2-beta.0" }, - { name: "igniteui-angular-spreadsheet-chart-adapter", version: "16.1.2-beta.0" }, - { name: "igniteui-angular-spreadsheet" , version: "16.1.2-beta.0" }, - { name: "igniteui-angular-datasources" , version: "16.1.2-beta.0" }, - + { name: "igniteui-angular-core" , version: "17.0.0" }, + { name: "igniteui-angular-charts" , version: "17.0.0" }, + { name: "igniteui-angular-excel" , version: "17.0.0" }, + { name: "igniteui-angular-gauges" , version: "17.0.0" }, + { name: "igniteui-angular-inputs" , version: "17.0.0" }, + { name: "igniteui-angular-layouts" , version: "17.0.0" }, + { name: "igniteui-angular-maps" , version: "17.0.0" }, + { name: "igniteui-angular-spreadsheet-chart-adapter", version: "17.0.0" }, + { name: "igniteui-angular-spreadsheet" , version: "17.0.0" }, + { name: "igniteui-angular-datasources" , version: "17.0.0" }, // these IG packages are sometimes updated: - { name: "igniteui-webcomponents", version: "4.5.0-beta.1" }, - { name: "igniteui-theming", version: "1.4.14" }, - { name: "igniteui-angular", version: "16.0.7" }, - // { name: "@angular/animations", version: "14.0.4" }, - // { name: "@angular/common", version: "14.0.4" }, - // { name: "@angular/compiler", version: "14.0.4" }, - // { name: "@angular/core", version: "14.0.4" }, - // { name: "@angular/forms", version: "14.0.4" }, - // { name: "@angular/platform-browser", version: "14.0.4" }, - // { name: "@angular/platform-browser-dynamic", version: "14.0.4" }, - // { name: "core-js", version: "3.21.0"}, - // dev packages: - // { name: "@angular-devkit/build-angular", version: "14.0.4"}, - // { name: "@angular/cli", version: "14.0.4"}, - // { name: "@angular/compiler-cli", version: "14.0.4"}, - // { name: "@angular/language-service", version: "14.0.4"}, - // { name: "typescript", version: "4.7.4"}, + { name: "igniteui-webcomponents", version: "4.5.0" }, + { name: "igniteui-theming", version: "3.3.1" }, + { name: "igniteui-angular", version: "17.0.0" }, + { name: "@angular/animations", version: "17.0.0" }, + { name: "@angular/common", version: "17.0.0" }, + { name: "@angular/compiler", version: "17.0.0" }, + { name: "@angular/core", version: "17.0.0" }, + { name: "@angular/forms", version: "17.0.0" }, + { name: "@angular/platform-browser", version: "17.0.0" }, + { name: "@angular/platform-browser-dynamic", version: "17.0.0" }, + { name: "classlist-js", version: "1.1.20150312" }, + { name: "core-js", version: "3.21.0" }, + { name: "hammerjs", version: "2.0.8" }, + { name: "intl", version: "1.2.5" }, + { name: "jszip", version: "3.8.0" }, + { name: "rxjs", version: "6.6.7" }, + { name: "tslib", version: "2.3.1" }, + { name: "web-animations-js", version: "2.3.2" }, + { name: "zone.js", version: "~0.14.1" }, + // dev packages: + { name: "@angular/cli", version: "17.0.0"}, + { name: "@angular/compiler-cli", version: "17.0.0"}, + { name: "@angular/language-service", version: "17.0.0"}, + { name: "@angular-devkit/build-angular", version: "17.0.0"}, + { name: "@types/node", version: "14.14.28"}, + { name: "codelyzer", version: "6.0.2"}, + { name: "jasmine-core", version: "3.7.1"}, + { name: "jasmine-spec-reporter", version: "~4.2.1"}, + { name: "sass.js", version: "0.11.1"}, + { name: "tslint", version: "~6.1.3"}, + { name: "ts-node", version: "9.1.1"}, + { name: "typescript", version: "5.2.2"}, ]; // NOTE you can comment out strings in this array to run these function only on a subset of samples @@ -1264,3 +1287,5 @@ function logVersionIgniteUI(cb) { fs.writeFileSync(outputPath, outputText); cb(); } exports.logVersionIgniteUI = logVersionIgniteUI; + + diff --git a/samples/charts/category-chart/annotations-all/angular.json b/samples/charts/category-chart/annotations-all/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/annotations-all/angular.json +++ b/samples/charts/category-chart/annotations-all/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations-all/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/annotations-all/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/annotations-all/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/annotations-all/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/annotations-all/src/config/tsconfig.base.json b/samples/charts/category-chart/annotations-all/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/annotations-all/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/annotations-all/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/annotations-all/src/config/tsconfig.worker.json b/samples/charts/category-chart/annotations-all/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/annotations-all/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/annotations-all/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/annotations-all/src/polyfills.ts b/samples/charts/category-chart/annotations-all/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/annotations-all/src/polyfills.ts +++ b/samples/charts/category-chart/annotations-all/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/annotations-all/tsconfig.json b/samples/charts/category-chart/annotations-all/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/annotations-all/tsconfig.json +++ b/samples/charts/category-chart/annotations-all/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/annotations-callouts/angular.json b/samples/charts/category-chart/annotations-callouts/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/annotations-callouts/angular.json +++ b/samples/charts/category-chart/annotations-callouts/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations-callouts/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/annotations-callouts/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/annotations-callouts/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/annotations-callouts/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.base.json b/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.worker.json b/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/annotations-callouts/src/polyfills.ts b/samples/charts/category-chart/annotations-callouts/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/annotations-callouts/src/polyfills.ts +++ b/samples/charts/category-chart/annotations-callouts/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/annotations-callouts/tsconfig.json b/samples/charts/category-chart/annotations-callouts/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/annotations-callouts/tsconfig.json +++ b/samples/charts/category-chart/annotations-callouts/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/annotations-crosshairs/angular.json b/samples/charts/category-chart/annotations-crosshairs/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/annotations-crosshairs/angular.json +++ b/samples/charts/category-chart/annotations-crosshairs/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.base.json b/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.worker.json b/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/annotations-crosshairs/src/polyfills.ts b/samples/charts/category-chart/annotations-crosshairs/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/annotations-crosshairs/src/polyfills.ts +++ b/samples/charts/category-chart/annotations-crosshairs/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/annotations-crosshairs/tsconfig.json b/samples/charts/category-chart/annotations-crosshairs/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/annotations-crosshairs/tsconfig.json +++ b/samples/charts/category-chart/annotations-crosshairs/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/annotations-custom/angular.json b/samples/charts/category-chart/annotations-custom/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/annotations-custom/angular.json +++ b/samples/charts/category-chart/annotations-custom/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations-custom/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/annotations-custom/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/annotations-custom/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/annotations-custom/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/annotations-custom/src/config/tsconfig.base.json b/samples/charts/category-chart/annotations-custom/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/annotations-custom/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/annotations-custom/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/annotations-custom/src/config/tsconfig.worker.json b/samples/charts/category-chart/annotations-custom/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/annotations-custom/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/annotations-custom/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/annotations-custom/src/polyfills.ts b/samples/charts/category-chart/annotations-custom/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/annotations-custom/src/polyfills.ts +++ b/samples/charts/category-chart/annotations-custom/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/annotations-custom/tsconfig.json b/samples/charts/category-chart/annotations-custom/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/annotations-custom/tsconfig.json +++ b/samples/charts/category-chart/annotations-custom/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/annotations-final-value/angular.json b/samples/charts/category-chart/annotations-final-value/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/annotations-final-value/angular.json +++ b/samples/charts/category-chart/annotations-final-value/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations-final-value/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/annotations-final-value/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/annotations-final-value/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/annotations-final-value/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.base.json b/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.worker.json b/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/annotations-final-value/src/polyfills.ts b/samples/charts/category-chart/annotations-final-value/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/annotations-final-value/src/polyfills.ts +++ b/samples/charts/category-chart/annotations-final-value/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/annotations-final-value/tsconfig.json b/samples/charts/category-chart/annotations-final-value/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/annotations-final-value/tsconfig.json +++ b/samples/charts/category-chart/annotations-final-value/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/annotations-highlighting/angular.json b/samples/charts/category-chart/annotations-highlighting/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/annotations-highlighting/angular.json +++ b/samples/charts/category-chart/annotations-highlighting/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.base.json b/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.worker.json b/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/annotations-highlighting/src/polyfills.ts b/samples/charts/category-chart/annotations-highlighting/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/annotations-highlighting/src/polyfills.ts +++ b/samples/charts/category-chart/annotations-highlighting/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/annotations-highlighting/tsconfig.json b/samples/charts/category-chart/annotations-highlighting/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/annotations-highlighting/tsconfig.json +++ b/samples/charts/category-chart/annotations-highlighting/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/annotations/angular.json b/samples/charts/category-chart/annotations/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/annotations/angular.json +++ b/samples/charts/category-chart/annotations/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/annotations/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/category-chart/annotations/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/annotations/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/category-chart/annotations/src/config/tsconfig.base.json b/samples/charts/category-chart/annotations/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/category-chart/annotations/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/annotations/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/annotations/src/config/tsconfig.worker.json b/samples/charts/category-chart/annotations/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/annotations/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/annotations/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/annotations/src/polyfills.ts b/samples/charts/category-chart/annotations/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/category-chart/annotations/src/polyfills.ts +++ b/samples/charts/category-chart/annotations/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/annotations/tsconfig.json b/samples/charts/category-chart/annotations/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/annotations/tsconfig.json +++ b/samples/charts/category-chart/annotations/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/area-chart-multiple-sources/angular.json b/samples/charts/category-chart/area-chart-multiple-sources/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/angular.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.base.json b/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/area-chart-multiple-sources/src/polyfills.ts b/samples/charts/category-chart/area-chart-multiple-sources/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/src/polyfills.ts +++ b/samples/charts/category-chart/area-chart-multiple-sources/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json b/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/area-chart-single-source/angular.json b/samples/charts/category-chart/area-chart-single-source/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/area-chart-single-source/angular.json +++ b/samples/charts/category-chart/area-chart-single-source/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.base.json b/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.worker.json b/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/area-chart-single-source/src/polyfills.ts b/samples/charts/category-chart/area-chart-single-source/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/area-chart-single-source/src/polyfills.ts +++ b/samples/charts/category-chart/area-chart-single-source/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/area-chart-single-source/tsconfig.json b/samples/charts/category-chart/area-chart-single-source/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/area-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/area-chart-single-source/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/area-chart-styling/angular.json b/samples/charts/category-chart/area-chart-styling/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/area-chart-styling/angular.json +++ b/samples/charts/category-chart/area-chart-styling/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/area-chart-styling/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/area-chart-styling/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/area-chart-styling/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/area-chart-styling/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.base.json b/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.worker.json b/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/area-chart-styling/src/polyfills.ts b/samples/charts/category-chart/area-chart-styling/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/area-chart-styling/src/polyfills.ts +++ b/samples/charts/category-chart/area-chart-styling/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/area-chart-styling/tsconfig.json b/samples/charts/category-chart/area-chart-styling/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/area-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/area-chart-styling/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/axis-gap/angular.json b/samples/charts/category-chart/axis-gap/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/axis-gap/angular.json +++ b/samples/charts/category-chart/axis-gap/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-gap/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-gap/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/axis-gap/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/axis-gap/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/axis-gap/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-gap/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/axis-gap/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/axis-gap/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/axis-gap/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-gap/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/axis-gap/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/axis-gap/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/axis-gap/src/polyfills.ts b/samples/charts/category-chart/axis-gap/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/axis-gap/src/polyfills.ts +++ b/samples/charts/category-chart/axis-gap/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/axis-gap/tsconfig.json b/samples/charts/category-chart/axis-gap/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/axis-gap/tsconfig.json +++ b/samples/charts/category-chart/axis-gap/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/axis-gridlines/angular.json b/samples/charts/category-chart/axis-gridlines/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/axis-gridlines/angular.json +++ b/samples/charts/category-chart/axis-gridlines/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-gridlines/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-gridlines/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/axis-gridlines/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/axis-gridlines/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/axis-gridlines/src/polyfills.ts b/samples/charts/category-chart/axis-gridlines/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/axis-gridlines/src/polyfills.ts +++ b/samples/charts/category-chart/axis-gridlines/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/axis-gridlines/tsconfig.json b/samples/charts/category-chart/axis-gridlines/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/axis-gridlines/tsconfig.json +++ b/samples/charts/category-chart/axis-gridlines/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/axis-inverted/angular.json b/samples/charts/category-chart/axis-inverted/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/axis-inverted/angular.json +++ b/samples/charts/category-chart/axis-inverted/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-inverted/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-inverted/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/axis-inverted/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/axis-inverted/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/axis-inverted/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-inverted/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/axis-inverted/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/axis-inverted/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/axis-inverted/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-inverted/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/axis-inverted/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/axis-inverted/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/axis-inverted/src/polyfills.ts b/samples/charts/category-chart/axis-inverted/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/axis-inverted/src/polyfills.ts +++ b/samples/charts/category-chart/axis-inverted/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/axis-inverted/tsconfig.json b/samples/charts/category-chart/axis-inverted/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/axis-inverted/tsconfig.json +++ b/samples/charts/category-chart/axis-inverted/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/axis-labels/angular.json b/samples/charts/category-chart/axis-labels/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/axis-labels/angular.json +++ b/samples/charts/category-chart/axis-labels/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-labels/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-labels/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/axis-labels/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/axis-labels/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/axis-labels/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-labels/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/axis-labels/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/axis-labels/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/axis-labels/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-labels/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/axis-labels/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/axis-labels/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/axis-labels/src/polyfills.ts b/samples/charts/category-chart/axis-labels/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/axis-labels/src/polyfills.ts +++ b/samples/charts/category-chart/axis-labels/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/axis-labels/tsconfig.json b/samples/charts/category-chart/axis-labels/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/axis-labels/tsconfig.json +++ b/samples/charts/category-chart/axis-labels/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/axis-locations/angular.json b/samples/charts/category-chart/axis-locations/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/axis-locations/angular.json +++ b/samples/charts/category-chart/axis-locations/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-locations/sandbox.config.json b/samples/charts/category-chart/axis-locations/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/axis-locations/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-locations/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/axis-locations/src/CountryRenewableElectricity.ts deleted file mode 100644 index 4849f0cff..000000000 --- a/samples/charts/category-chart/axis-locations/src/CountryRenewableElectricity.ts +++ /dev/null @@ -1,100 +0,0 @@ -export class CountryRenewableElectricityItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public year: string; - public europe: number; - public china: number; - public america: number; - -} -export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); - } -} diff --git a/samples/charts/category-chart/axis-locations/src/app.component.html b/samples/charts/category-chart/axis-locations/src/app.component.html deleted file mode 100644 index a7afeedff..000000000 --- a/samples/charts/category-chart/axis-locations/src/app.component.html +++ /dev/null @@ -1,46 +0,0 @@ -
-
- - - - -
-
- Renewable Electricity Generated -
-
- - -
-
- - -
-
diff --git a/samples/charts/category-chart/axis-locations/src/app.component.scss b/samples/charts/category-chart/axis-locations/src/app.component.scss deleted file mode 100644 index cbff781da..000000000 --- a/samples/charts/category-chart/axis-locations/src/app.component.scss +++ /dev/null @@ -1,3 +0,0 @@ -/* styles are loaded the Shared CSS file located at: -https://static.infragistics.com/xplatform/css/samples/ -*/ diff --git a/samples/charts/category-chart/axis-locations/src/app.component.ts b/samples/charts/category-chart/axis-locations/src/app.component.ts deleted file mode 100644 index 2afab5af6..000000000 --- a/samples/charts/category-chart/axis-locations/src/app.component.ts +++ /dev/null @@ -1,54 +0,0 @@ -import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; -import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; -import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; -import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; -import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; - -import { defineAllComponents } from 'igniteui-webcomponents'; - -defineAllComponents(); - -@Component({ - selector: "app-root", - styleUrls: ["./app.component.scss"], - templateUrl: "./app.component.html", - changeDetection: ChangeDetectionStrategy.OnPush -}) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("yAxisLabelLocation", { static: true } ) - private yAxisLabelLocation: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent - - private _countryRenewableElectricity: CountryRenewableElectricity = null; - public get countryRenewableElectricity(): CountryRenewableElectricity { - if (this._countryRenewableElectricity == null) - { - this._countryRenewableElectricity = new CountryRenewableElectricity(); - } - return this._countryRenewableElectricity; - } - - private _componentRenderer: ComponentRenderer = null; - public get renderer(): ComponentRenderer { - if (this._componentRenderer == null) { - this._componentRenderer = new ComponentRenderer(); - var context = this._componentRenderer.context; - PropertyEditorPanelDescriptionModule.register(context); - LegendDescriptionModule.register(context); - CategoryChartDescriptionModule.register(context); - } - return this._componentRenderer; - } - -} - diff --git a/samples/charts/category-chart/axis-locations/src/app.module.ts b/samples/charts/category-chart/axis-locations/src/app.module.ts deleted file mode 100644 index b4febf5b8..000000000 --- a/samples/charts/category-chart/axis-locations/src/app.module.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { NgModule } from "@angular/core"; -import { FormsModule } from "@angular/forms"; -import { CommonModule } from "@angular/common"; -import { BrowserModule } from "@angular/platform-browser"; -import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; -import { AppComponent } from "./app.component"; - -import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; -import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts'; - -@NgModule({ - bootstrap: [AppComponent], - declarations: [ - AppComponent -], - imports: [ - BrowserModule, - BrowserAnimationsModule, - CommonModule, - FormsModule, - IgxPropertyEditorPanelModule, - IgxLegendModule, - IgxCategoryChartModule -], - providers: [], - schemas: [] -}) -export class AppModule {} diff --git a/samples/charts/category-chart/axis-locations/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-locations/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/axis-locations/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/axis-locations/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/axis-locations/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-locations/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/axis-locations/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/axis-locations/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/axis-locations/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-locations/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/axis-locations/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/axis-locations/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/axis-locations/src/polyfills.ts b/samples/charts/category-chart/axis-locations/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/axis-locations/src/polyfills.ts +++ b/samples/charts/category-chart/axis-locations/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/axis-locations/tsconfig.json b/samples/charts/category-chart/axis-locations/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/axis-locations/tsconfig.json +++ b/samples/charts/category-chart/axis-locations/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/axis-locations/tslint.json b/samples/charts/category-chart/axis-locations/tslint.json deleted file mode 100644 index 777c777d9..000000000 --- a/samples/charts/category-chart/axis-locations/tslint.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "extends": "tslint:latest", - "rules": { - "deprecation": { - "severity": "warning" - }, - "arrow-parens": false, - "indent": [true, "spaces"], - "interface-name": [true, "always-prefix"], - "max-classes-per-file": false, - "no-bitwise": false, - "no-console": false, - "no-empty": false, - "no-duplicate-imports": false, - "no-implicit-dependencies": false, - "no-object-literal-type-assertion": false, - "no-submodule-imports": [false], - "no-string-literal": false, - "no-trailing-whitespace": false, - "no-var-keyword": false, - "object-literal-sort-keys": false, - "only-arrow-functions": false, - "prefer-conditional-expression": false, - "prefer-const": false, - "prefer-for-of": false, - "prefer-object-spread": false, - "space-within-parens": false, - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "variable-name": [true, "allow-leading-underscore"] - } -} diff --git a/samples/charts/category-chart/axis-options/angular.json b/samples/charts/category-chart/axis-options/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/axis-options/angular.json +++ b/samples/charts/category-chart/axis-options/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-options/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-options/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/axis-options/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/axis-options/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/axis-options/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-options/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/axis-options/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/axis-options/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/axis-options/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-options/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/axis-options/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/axis-options/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/axis-options/src/polyfills.ts b/samples/charts/category-chart/axis-options/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/axis-options/src/polyfills.ts +++ b/samples/charts/category-chart/axis-options/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/axis-options/tsconfig.json b/samples/charts/category-chart/axis-options/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/axis-options/tsconfig.json +++ b/samples/charts/category-chart/axis-options/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/axis-overlap/angular.json b/samples/charts/category-chart/axis-overlap/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/axis-overlap/angular.json +++ b/samples/charts/category-chart/axis-overlap/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-overlap/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-overlap/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/axis-overlap/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/axis-overlap/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/axis-overlap/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-overlap/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/axis-overlap/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/axis-overlap/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/axis-overlap/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-overlap/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/axis-overlap/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/axis-overlap/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/axis-overlap/src/polyfills.ts b/samples/charts/category-chart/axis-overlap/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/axis-overlap/src/polyfills.ts +++ b/samples/charts/category-chart/axis-overlap/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/axis-overlap/tsconfig.json b/samples/charts/category-chart/axis-overlap/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/axis-overlap/tsconfig.json +++ b/samples/charts/category-chart/axis-overlap/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/axis-range/angular.json b/samples/charts/category-chart/axis-range/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/axis-range/angular.json +++ b/samples/charts/category-chart/axis-range/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-range/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-range/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/axis-range/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/axis-range/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/axis-range/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-range/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/axis-range/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/axis-range/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/axis-range/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-range/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/axis-range/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/axis-range/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/axis-range/src/polyfills.ts b/samples/charts/category-chart/axis-range/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/axis-range/src/polyfills.ts +++ b/samples/charts/category-chart/axis-range/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/axis-range/tsconfig.json b/samples/charts/category-chart/axis-range/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/axis-range/tsconfig.json +++ b/samples/charts/category-chart/axis-range/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/axis-tickmarks/angular.json b/samples/charts/category-chart/axis-tickmarks/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/axis-tickmarks/angular.json +++ b/samples/charts/category-chart/axis-tickmarks/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/axis-tickmarks/src/polyfills.ts b/samples/charts/category-chart/axis-tickmarks/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/axis-tickmarks/src/polyfills.ts +++ b/samples/charts/category-chart/axis-tickmarks/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/axis-tickmarks/tsconfig.json b/samples/charts/category-chart/axis-tickmarks/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/axis-tickmarks/tsconfig.json +++ b/samples/charts/category-chart/axis-tickmarks/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/axis-titles/angular.json b/samples/charts/category-chart/axis-titles/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/axis-titles/angular.json +++ b/samples/charts/category-chart/axis-titles/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-titles/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-titles/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/axis-titles/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/axis-titles/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/axis-titles/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-titles/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/axis-titles/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/axis-titles/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/axis-titles/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-titles/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/axis-titles/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/axis-titles/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/axis-titles/src/polyfills.ts b/samples/charts/category-chart/axis-titles/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/axis-titles/src/polyfills.ts +++ b/samples/charts/category-chart/axis-titles/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/axis-titles/tsconfig.json b/samples/charts/category-chart/axis-titles/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/axis-titles/tsconfig.json +++ b/samples/charts/category-chart/axis-titles/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/column-chart-multiple-sources/angular.json b/samples/charts/category-chart/column-chart-multiple-sources/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/angular.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.base.json b/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/polyfills.ts b/samples/charts/category-chart/column-chart-multiple-sources/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/polyfills.ts +++ b/samples/charts/category-chart/column-chart-multiple-sources/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.json b/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/column-chart-single-source/angular.json b/samples/charts/category-chart/column-chart-single-source/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/column-chart-single-source/angular.json +++ b/samples/charts/category-chart/column-chart-single-source/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.base.json b/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.worker.json b/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/column-chart-single-source/src/polyfills.ts b/samples/charts/category-chart/column-chart-single-source/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/column-chart-single-source/src/polyfills.ts +++ b/samples/charts/category-chart/column-chart-single-source/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/column-chart-single-source/tsconfig.json b/samples/charts/category-chart/column-chart-single-source/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/column-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/column-chart-single-source/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/column-chart-styling/angular.json b/samples/charts/category-chart/column-chart-styling/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/column-chart-styling/angular.json +++ b/samples/charts/category-chart/column-chart-styling/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/column-chart-styling/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/column-chart-styling/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/column-chart-styling/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/column-chart-styling/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.base.json b/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.worker.json b/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/column-chart-styling/src/polyfills.ts b/samples/charts/category-chart/column-chart-styling/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/column-chart-styling/src/polyfills.ts +++ b/samples/charts/category-chart/column-chart-styling/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/column-chart-styling/tsconfig.json b/samples/charts/category-chart/column-chart-styling/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/column-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/column-chart-styling/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/column-chart-with-highlighting/angular.json b/samples/charts/category-chart/column-chart-with-highlighting/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/angular.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.base.json b/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.worker.json b/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/column-chart-with-highlighting/src/polyfills.ts b/samples/charts/category-chart/column-chart-with-highlighting/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/src/polyfills.ts +++ b/samples/charts/category-chart/column-chart-with-highlighting/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/column-chart-with-highlighting/tsconfig.json b/samples/charts/category-chart/column-chart-with-highlighting/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/tsconfig.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/column-chart-with-tooltips/angular.json b/samples/charts/category-chart/column-chart-with-tooltips/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/angular.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.base.json b/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.worker.json b/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/column-chart-with-tooltips/src/polyfills.ts b/samples/charts/category-chart/column-chart-with-tooltips/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/src/polyfills.ts +++ b/samples/charts/category-chart/column-chart-with-tooltips/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json b/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/custom-selection/angular.json b/samples/charts/category-chart/custom-selection/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/custom-selection/angular.json +++ b/samples/charts/category-chart/custom-selection/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/custom-selection/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/custom-selection/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/custom-selection/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/custom-selection/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/custom-selection/src/config/tsconfig.base.json b/samples/charts/category-chart/custom-selection/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/custom-selection/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/custom-selection/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/custom-selection/src/config/tsconfig.worker.json b/samples/charts/category-chart/custom-selection/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/custom-selection/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/custom-selection/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/custom-selection/src/polyfills.ts b/samples/charts/category-chart/custom-selection/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/custom-selection/src/polyfills.ts +++ b/samples/charts/category-chart/custom-selection/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/custom-selection/tsconfig.json b/samples/charts/category-chart/custom-selection/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/custom-selection/tsconfig.json +++ b/samples/charts/category-chart/custom-selection/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/data-aggregations/angular.json b/samples/charts/category-chart/data-aggregations/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/data-aggregations/angular.json +++ b/samples/charts/category-chart/data-aggregations/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-aggregations/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/data-aggregations/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/data-aggregations/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/data-aggregations/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/data-aggregations/src/config/tsconfig.base.json b/samples/charts/category-chart/data-aggregations/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/data-aggregations/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/data-aggregations/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/data-aggregations/src/config/tsconfig.worker.json b/samples/charts/category-chart/data-aggregations/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/data-aggregations/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/data-aggregations/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/data-aggregations/src/polyfills.ts b/samples/charts/category-chart/data-aggregations/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/data-aggregations/src/polyfills.ts +++ b/samples/charts/category-chart/data-aggregations/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/data-aggregations/tsconfig.json b/samples/charts/category-chart/data-aggregations/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/data-aggregations/tsconfig.json +++ b/samples/charts/category-chart/data-aggregations/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/angular.json b/samples/charts/category-chart/data-legend-formatting-decimals/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/angular.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.base.json b/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.worker.json b/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/polyfills.ts b/samples/charts/category-chart/data-legend-formatting-decimals/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/polyfills.ts +++ b/samples/charts/category-chart/data-legend-formatting-decimals/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json b/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/data-legend/angular.json b/samples/charts/category-chart/data-legend/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/data-legend/angular.json +++ b/samples/charts/category-chart/data-legend/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-legend/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/data-legend/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/data-legend/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/data-legend/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/data-legend/src/config/tsconfig.base.json b/samples/charts/category-chart/data-legend/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/data-legend/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/data-legend/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/data-legend/src/config/tsconfig.worker.json b/samples/charts/category-chart/data-legend/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/data-legend/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/data-legend/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/data-legend/src/polyfills.ts b/samples/charts/category-chart/data-legend/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/data-legend/src/polyfills.ts +++ b/samples/charts/category-chart/data-legend/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/data-legend/tsconfig.json b/samples/charts/category-chart/data-legend/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/data-legend/tsconfig.json +++ b/samples/charts/category-chart/data-legend/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/angular.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/angular.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.base.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.worker.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/polyfills.ts b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/polyfills.ts +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/data-tooltip-positioning/angular.json b/samples/charts/category-chart/data-tooltip-positioning/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/angular.json +++ b/samples/charts/category-chart/data-tooltip-positioning/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.base.json b/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.worker.json b/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/data-tooltip-positioning/src/polyfills.ts b/samples/charts/category-chart/data-tooltip-positioning/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/src/polyfills.ts +++ b/samples/charts/category-chart/data-tooltip-positioning/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json b/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json +++ b/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/data-tooltip/angular.json b/samples/charts/category-chart/data-tooltip/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/data-tooltip/angular.json +++ b/samples/charts/category-chart/data-tooltip/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-tooltip/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/data-tooltip/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/data-tooltip/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/data-tooltip/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/data-tooltip/src/config/tsconfig.base.json b/samples/charts/category-chart/data-tooltip/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/data-tooltip/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/data-tooltip/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/data-tooltip/src/config/tsconfig.worker.json b/samples/charts/category-chart/data-tooltip/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/data-tooltip/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/data-tooltip/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/data-tooltip/src/polyfills.ts b/samples/charts/category-chart/data-tooltip/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/data-tooltip/src/polyfills.ts +++ b/samples/charts/category-chart/data-tooltip/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/data-tooltip/tsconfig.json b/samples/charts/category-chart/data-tooltip/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/data-tooltip/tsconfig.json +++ b/samples/charts/category-chart/data-tooltip/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/format-specifiers/angular.json b/samples/charts/category-chart/format-specifiers/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/format-specifiers/angular.json +++ b/samples/charts/category-chart/format-specifiers/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 9a999dc97..e27d2007a 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/format-specifiers/src/app.component.html b/samples/charts/category-chart/format-specifiers/src/app.component.html index 914d5ee45..47f4172f9 100644 --- a/samples/charts/category-chart/format-specifiers/src/app.component.html +++ b/samples/charts/category-chart/format-specifiers/src/app.component.html @@ -22,7 +22,7 @@ dataToolTipValueFormatMode="Currency" dataToolTipValueFormatString="${0} Billion" yAxisLabelFormat="{0}B" - [yAxisLabelFormatSpecifiers]="numberFormatSpecifier1"> + [yAxisLabelFormatSpecifiers]="NumberFormatSpecifier1"> diff --git a/samples/charts/category-chart/format-specifiers/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/format-specifiers/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/format-specifiers/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/format-specifiers/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/format-specifiers/src/config/tsconfig.base.json b/samples/charts/category-chart/format-specifiers/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/format-specifiers/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/format-specifiers/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/format-specifiers/src/config/tsconfig.worker.json b/samples/charts/category-chart/format-specifiers/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/format-specifiers/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/format-specifiers/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/format-specifiers/src/polyfills.ts b/samples/charts/category-chart/format-specifiers/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/format-specifiers/src/polyfills.ts +++ b/samples/charts/category-chart/format-specifiers/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/format-specifiers/tsconfig.json b/samples/charts/category-chart/format-specifiers/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/format-specifiers/tsconfig.json +++ b/samples/charts/category-chart/format-specifiers/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/high-frequency/angular.json b/samples/charts/category-chart/high-frequency/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/high-frequency/angular.json +++ b/samples/charts/category-chart/high-frequency/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 8d4abfa07..84991650c 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "16.0.7", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular": "17.0.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/high-frequency/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/high-frequency/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/category-chart/high-frequency/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/high-frequency/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/category-chart/high-frequency/src/config/tsconfig.base.json b/samples/charts/category-chart/high-frequency/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/category-chart/high-frequency/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/high-frequency/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/high-frequency/src/config/tsconfig.worker.json b/samples/charts/category-chart/high-frequency/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/high-frequency/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/high-frequency/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/high-frequency/src/polyfills.ts b/samples/charts/category-chart/high-frequency/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/category-chart/high-frequency/src/polyfills.ts +++ b/samples/charts/category-chart/high-frequency/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/high-frequency/tsconfig.json b/samples/charts/category-chart/high-frequency/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/high-frequency/tsconfig.json +++ b/samples/charts/category-chart/high-frequency/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/high-volume/angular.json b/samples/charts/category-chart/high-volume/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/high-volume/angular.json +++ b/samples/charts/category-chart/high-volume/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 8d4abfa07..84991650c 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "16.0.7", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular": "17.0.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/high-volume/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/high-volume/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/category-chart/high-volume/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/high-volume/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/category-chart/high-volume/src/config/tsconfig.base.json b/samples/charts/category-chart/high-volume/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/category-chart/high-volume/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/high-volume/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/high-volume/src/config/tsconfig.worker.json b/samples/charts/category-chart/high-volume/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/high-volume/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/high-volume/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/high-volume/src/polyfills.ts b/samples/charts/category-chart/high-volume/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/category-chart/high-volume/src/polyfills.ts +++ b/samples/charts/category-chart/high-volume/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/high-volume/tsconfig.json b/samples/charts/category-chart/high-volume/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/high-volume/tsconfig.json +++ b/samples/charts/category-chart/high-volume/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/highlighting/angular.json b/samples/charts/category-chart/highlighting/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/highlighting/angular.json +++ b/samples/charts/category-chart/highlighting/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/highlighting/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/highlighting/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/category-chart/highlighting/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/highlighting/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/category-chart/highlighting/src/config/tsconfig.base.json b/samples/charts/category-chart/highlighting/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/category-chart/highlighting/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/highlighting/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/highlighting/src/config/tsconfig.worker.json b/samples/charts/category-chart/highlighting/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/highlighting/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/highlighting/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/highlighting/src/polyfills.ts b/samples/charts/category-chart/highlighting/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/category-chart/highlighting/src/polyfills.ts +++ b/samples/charts/category-chart/highlighting/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/highlighting/tsconfig.json b/samples/charts/category-chart/highlighting/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/highlighting/tsconfig.json +++ b/samples/charts/category-chart/highlighting/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/line-chart-multiple-sources/angular.json b/samples/charts/category-chart/line-chart-multiple-sources/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/angular.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.base.json b/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/polyfills.ts b/samples/charts/category-chart/line-chart-multiple-sources/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/polyfills.ts +++ b/samples/charts/category-chart/line-chart-multiple-sources/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json b/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/line-chart-single-source/angular.json b/samples/charts/category-chart/line-chart-single-source/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/line-chart-single-source/angular.json +++ b/samples/charts/category-chart/line-chart-single-source/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.base.json b/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.worker.json b/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/line-chart-single-source/src/polyfills.ts b/samples/charts/category-chart/line-chart-single-source/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/line-chart-single-source/src/polyfills.ts +++ b/samples/charts/category-chart/line-chart-single-source/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/line-chart-single-source/tsconfig.json b/samples/charts/category-chart/line-chart-single-source/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/line-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/line-chart-single-source/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/line-chart-styling/angular.json b/samples/charts/category-chart/line-chart-styling/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/line-chart-styling/angular.json +++ b/samples/charts/category-chart/line-chart-styling/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/line-chart-styling/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/line-chart-styling/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/line-chart-styling/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/line-chart-styling/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.base.json b/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.worker.json b/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/line-chart-styling/src/polyfills.ts b/samples/charts/category-chart/line-chart-styling/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/line-chart-styling/src/polyfills.ts +++ b/samples/charts/category-chart/line-chart-styling/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/line-chart-styling/tsconfig.json b/samples/charts/category-chart/line-chart-styling/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/line-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/line-chart-styling/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/line-chart-with-animations/angular.json b/samples/charts/category-chart/line-chart-with-animations/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/line-chart-with-animations/angular.json +++ b/samples/charts/category-chart/line-chart-with-animations/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.base.json b/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.worker.json b/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/line-chart-with-animations/src/polyfills.ts b/samples/charts/category-chart/line-chart-with-animations/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/category-chart/line-chart-with-animations/src/polyfills.ts +++ b/samples/charts/category-chart/line-chart-with-animations/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/line-chart-with-animations/tsconfig.json b/samples/charts/category-chart/line-chart-with-animations/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/line-chart-with-animations/tsconfig.json +++ b/samples/charts/category-chart/line-chart-with-animations/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/line-chart-with-annotations/angular.json b/samples/charts/category-chart/line-chart-with-annotations/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/angular.json +++ b/samples/charts/category-chart/line-chart-with-annotations/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.base.json b/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.worker.json b/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/line-chart-with-annotations/src/polyfills.ts b/samples/charts/category-chart/line-chart-with-annotations/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/src/polyfills.ts +++ b/samples/charts/category-chart/line-chart-with-annotations/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/line-chart-with-annotations/tsconfig.json b/samples/charts/category-chart/line-chart-with-annotations/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/tsconfig.json +++ b/samples/charts/category-chart/line-chart-with-annotations/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/line-chart-with-legend/angular.json b/samples/charts/category-chart/line-chart-with-legend/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/line-chart-with-legend/angular.json +++ b/samples/charts/category-chart/line-chart-with-legend/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.base.json b/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.worker.json b/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/line-chart-with-legend/src/polyfills.ts b/samples/charts/category-chart/line-chart-with-legend/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/category-chart/line-chart-with-legend/src/polyfills.ts +++ b/samples/charts/category-chart/line-chart-with-legend/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/line-chart-with-legend/tsconfig.json b/samples/charts/category-chart/line-chart-with-legend/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/line-chart-with-legend/tsconfig.json +++ b/samples/charts/category-chart/line-chart-with-legend/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/marker-options/angular.json b/samples/charts/category-chart/marker-options/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/marker-options/angular.json +++ b/samples/charts/category-chart/marker-options/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/marker-options/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/marker-options/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/marker-options/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/marker-options/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/marker-options/src/config/tsconfig.base.json b/samples/charts/category-chart/marker-options/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/marker-options/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/marker-options/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/marker-options/src/config/tsconfig.worker.json b/samples/charts/category-chart/marker-options/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/marker-options/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/marker-options/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/marker-options/src/polyfills.ts b/samples/charts/category-chart/marker-options/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/marker-options/src/polyfills.ts +++ b/samples/charts/category-chart/marker-options/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/marker-options/tsconfig.json b/samples/charts/category-chart/marker-options/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/marker-options/tsconfig.json +++ b/samples/charts/category-chart/marker-options/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/marker-templates/angular.json b/samples/charts/category-chart/marker-templates/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/marker-templates/angular.json +++ b/samples/charts/category-chart/marker-templates/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/marker-templates/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/marker-templates/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/category-chart/marker-templates/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/marker-templates/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/category-chart/marker-templates/src/config/tsconfig.base.json b/samples/charts/category-chart/marker-templates/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/category-chart/marker-templates/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/marker-templates/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/marker-templates/src/config/tsconfig.worker.json b/samples/charts/category-chart/marker-templates/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/marker-templates/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/marker-templates/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/marker-templates/src/polyfills.ts b/samples/charts/category-chart/marker-templates/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/category-chart/marker-templates/src/polyfills.ts +++ b/samples/charts/category-chart/marker-templates/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/marker-templates/tsconfig.json b/samples/charts/category-chart/marker-templates/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/marker-templates/tsconfig.json +++ b/samples/charts/category-chart/marker-templates/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/overview/angular.json b/samples/charts/category-chart/overview/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/overview/angular.json +++ b/samples/charts/category-chart/overview/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/overview/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/overview/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/overview/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/overview/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/overview/src/config/tsconfig.base.json b/samples/charts/category-chart/overview/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/overview/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/overview/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/overview/src/config/tsconfig.worker.json b/samples/charts/category-chart/overview/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/overview/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/overview/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/overview/src/polyfills.ts b/samples/charts/category-chart/overview/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/overview/src/polyfills.ts +++ b/samples/charts/category-chart/overview/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/overview/tsconfig.json b/samples/charts/category-chart/overview/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/overview/tsconfig.json +++ b/samples/charts/category-chart/overview/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/point-chart-multiple-sources/angular.json b/samples/charts/category-chart/point-chart-multiple-sources/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/angular.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.base.json b/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/point-chart-multiple-sources/src/polyfills.ts b/samples/charts/category-chart/point-chart-multiple-sources/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/src/polyfills.ts +++ b/samples/charts/category-chart/point-chart-multiple-sources/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json b/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/point-chart-single-source/angular.json b/samples/charts/category-chart/point-chart-single-source/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/point-chart-single-source/angular.json +++ b/samples/charts/category-chart/point-chart-single-source/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.base.json b/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.worker.json b/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/point-chart-single-source/src/polyfills.ts b/samples/charts/category-chart/point-chart-single-source/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/point-chart-single-source/src/polyfills.ts +++ b/samples/charts/category-chart/point-chart-single-source/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/point-chart-single-source/tsconfig.json b/samples/charts/category-chart/point-chart-single-source/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/point-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/point-chart-single-source/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/point-chart-styling/angular.json b/samples/charts/category-chart/point-chart-styling/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/point-chart-styling/angular.json +++ b/samples/charts/category-chart/point-chart-styling/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/point-chart-styling/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/point-chart-styling/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/point-chart-styling/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/point-chart-styling/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.base.json b/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.worker.json b/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/point-chart-styling/src/polyfills.ts b/samples/charts/category-chart/point-chart-styling/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/point-chart-styling/src/polyfills.ts +++ b/samples/charts/category-chart/point-chart-styling/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/point-chart-styling/tsconfig.json b/samples/charts/category-chart/point-chart-styling/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/point-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/point-chart-styling/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/spline-area-multiple-sources/angular.json b/samples/charts/category-chart/spline-area-multiple-sources/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/angular.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.base.json b/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/polyfills.ts b/samples/charts/category-chart/spline-area-multiple-sources/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/polyfills.ts +++ b/samples/charts/category-chart/spline-area-multiple-sources/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json b/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/spline-area-single-source/angular.json b/samples/charts/category-chart/spline-area-single-source/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/spline-area-single-source/angular.json +++ b/samples/charts/category-chart/spline-area-single-source/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.base.json b/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.worker.json b/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/spline-area-single-source/src/polyfills.ts b/samples/charts/category-chart/spline-area-single-source/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/spline-area-single-source/src/polyfills.ts +++ b/samples/charts/category-chart/spline-area-single-source/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/spline-area-single-source/tsconfig.json b/samples/charts/category-chart/spline-area-single-source/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/spline-area-single-source/tsconfig.json +++ b/samples/charts/category-chart/spline-area-single-source/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/spline-area-styling/angular.json b/samples/charts/category-chart/spline-area-styling/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/spline-area-styling/angular.json +++ b/samples/charts/category-chart/spline-area-styling/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-area-styling/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/spline-area-styling/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/spline-area-styling/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/spline-area-styling/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.base.json b/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.worker.json b/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/spline-area-styling/src/polyfills.ts b/samples/charts/category-chart/spline-area-styling/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/spline-area-styling/src/polyfills.ts +++ b/samples/charts/category-chart/spline-area-styling/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/spline-area-styling/tsconfig.json b/samples/charts/category-chart/spline-area-styling/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/spline-area-styling/tsconfig.json +++ b/samples/charts/category-chart/spline-area-styling/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/spline-multiple-sources/angular.json b/samples/charts/category-chart/spline-multiple-sources/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/spline-multiple-sources/angular.json +++ b/samples/charts/category-chart/spline-multiple-sources/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.base.json b/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/spline-multiple-sources/src/polyfills.ts b/samples/charts/category-chart/spline-multiple-sources/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/spline-multiple-sources/src/polyfills.ts +++ b/samples/charts/category-chart/spline-multiple-sources/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/spline-multiple-sources/tsconfig.json b/samples/charts/category-chart/spline-multiple-sources/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/spline-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/spline-multiple-sources/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/spline-single-source/angular.json b/samples/charts/category-chart/spline-single-source/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/spline-single-source/angular.json +++ b/samples/charts/category-chart/spline-single-source/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-single-source/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/spline-single-source/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/spline-single-source/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/spline-single-source/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/spline-single-source/src/config/tsconfig.base.json b/samples/charts/category-chart/spline-single-source/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/spline-single-source/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/spline-single-source/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/spline-single-source/src/config/tsconfig.worker.json b/samples/charts/category-chart/spline-single-source/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/spline-single-source/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/spline-single-source/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/spline-single-source/src/polyfills.ts b/samples/charts/category-chart/spline-single-source/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/spline-single-source/src/polyfills.ts +++ b/samples/charts/category-chart/spline-single-source/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/spline-single-source/tsconfig.json b/samples/charts/category-chart/spline-single-source/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/spline-single-source/tsconfig.json +++ b/samples/charts/category-chart/spline-single-source/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/spline-styling/angular.json b/samples/charts/category-chart/spline-styling/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/spline-styling/angular.json +++ b/samples/charts/category-chart/spline-styling/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-styling/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/spline-styling/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/spline-styling/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/spline-styling/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/spline-styling/src/config/tsconfig.base.json b/samples/charts/category-chart/spline-styling/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/spline-styling/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/spline-styling/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/spline-styling/src/config/tsconfig.worker.json b/samples/charts/category-chart/spline-styling/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/spline-styling/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/spline-styling/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/spline-styling/src/polyfills.ts b/samples/charts/category-chart/spline-styling/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/spline-styling/src/polyfills.ts +++ b/samples/charts/category-chart/spline-styling/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/spline-styling/tsconfig.json b/samples/charts/category-chart/spline-styling/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/spline-styling/tsconfig.json +++ b/samples/charts/category-chart/spline-styling/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/stack-columns/angular.json b/samples/charts/category-chart/stack-columns/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/stack-columns/angular.json +++ b/samples/charts/category-chart/stack-columns/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/stack-columns/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/stack-columns/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/category-chart/stack-columns/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/stack-columns/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/category-chart/stack-columns/src/config/tsconfig.base.json b/samples/charts/category-chart/stack-columns/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/category-chart/stack-columns/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/stack-columns/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/stack-columns/src/config/tsconfig.worker.json b/samples/charts/category-chart/stack-columns/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/stack-columns/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/stack-columns/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/stack-columns/src/polyfills.ts b/samples/charts/category-chart/stack-columns/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/category-chart/stack-columns/src/polyfills.ts +++ b/samples/charts/category-chart/stack-columns/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/stack-columns/tsconfig.json b/samples/charts/category-chart/stack-columns/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/stack-columns/tsconfig.json +++ b/samples/charts/category-chart/stack-columns/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/step-area-multiple-sources/angular.json b/samples/charts/category-chart/step-area-multiple-sources/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/angular.json +++ b/samples/charts/category-chart/step-area-multiple-sources/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.base.json b/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/step-area-multiple-sources/src/polyfills.ts b/samples/charts/category-chart/step-area-multiple-sources/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/src/polyfills.ts +++ b/samples/charts/category-chart/step-area-multiple-sources/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json b/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/step-area-single-source/angular.json b/samples/charts/category-chart/step-area-single-source/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/step-area-single-source/angular.json +++ b/samples/charts/category-chart/step-area-single-source/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/step-area-single-source/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/step-area-single-source/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/step-area-single-source/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/step-area-single-source/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.base.json b/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.worker.json b/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/step-area-single-source/src/polyfills.ts b/samples/charts/category-chart/step-area-single-source/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/step-area-single-source/src/polyfills.ts +++ b/samples/charts/category-chart/step-area-single-source/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/step-area-single-source/tsconfig.json b/samples/charts/category-chart/step-area-single-source/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/step-area-single-source/tsconfig.json +++ b/samples/charts/category-chart/step-area-single-source/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/step-area-styling/angular.json b/samples/charts/category-chart/step-area-styling/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/step-area-styling/angular.json +++ b/samples/charts/category-chart/step-area-styling/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/step-area-styling/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/step-area-styling/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/step-area-styling/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/step-area-styling/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/step-area-styling/src/config/tsconfig.base.json b/samples/charts/category-chart/step-area-styling/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/step-area-styling/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/step-area-styling/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/step-area-styling/src/config/tsconfig.worker.json b/samples/charts/category-chart/step-area-styling/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/step-area-styling/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/step-area-styling/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/step-area-styling/src/polyfills.ts b/samples/charts/category-chart/step-area-styling/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/step-area-styling/src/polyfills.ts +++ b/samples/charts/category-chart/step-area-styling/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/step-area-styling/tsconfig.json b/samples/charts/category-chart/step-area-styling/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/step-area-styling/tsconfig.json +++ b/samples/charts/category-chart/step-area-styling/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/step-line-multiple-sources/angular.json b/samples/charts/category-chart/step-line-multiple-sources/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/angular.json +++ b/samples/charts/category-chart/step-line-multiple-sources/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.base.json b/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/step-line-multiple-sources/src/polyfills.ts b/samples/charts/category-chart/step-line-multiple-sources/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/src/polyfills.ts +++ b/samples/charts/category-chart/step-line-multiple-sources/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json b/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/step-line-single-source/angular.json b/samples/charts/category-chart/step-line-single-source/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/step-line-single-source/angular.json +++ b/samples/charts/category-chart/step-line-single-source/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/step-line-single-source/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/step-line-single-source/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/step-line-single-source/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/step-line-single-source/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.base.json b/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.worker.json b/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/step-line-single-source/src/polyfills.ts b/samples/charts/category-chart/step-line-single-source/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/step-line-single-source/src/polyfills.ts +++ b/samples/charts/category-chart/step-line-single-source/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/step-line-single-source/tsconfig.json b/samples/charts/category-chart/step-line-single-source/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/step-line-single-source/tsconfig.json +++ b/samples/charts/category-chart/step-line-single-source/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/step-line-styling/angular.json b/samples/charts/category-chart/step-line-styling/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/step-line-styling/angular.json +++ b/samples/charts/category-chart/step-line-styling/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/step-line-styling/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/step-line-styling/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/step-line-styling/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/step-line-styling/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/step-line-styling/src/config/tsconfig.base.json b/samples/charts/category-chart/step-line-styling/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/step-line-styling/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/step-line-styling/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/step-line-styling/src/config/tsconfig.worker.json b/samples/charts/category-chart/step-line-styling/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/step-line-styling/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/step-line-styling/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/step-line-styling/src/polyfills.ts b/samples/charts/category-chart/step-line-styling/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/step-line-styling/src/polyfills.ts +++ b/samples/charts/category-chart/step-line-styling/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/step-line-styling/tsconfig.json b/samples/charts/category-chart/step-line-styling/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/step-line-styling/tsconfig.json +++ b/samples/charts/category-chart/step-line-styling/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/tooltip-template/angular.json b/samples/charts/category-chart/tooltip-template/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/tooltip-template/angular.json +++ b/samples/charts/category-chart/tooltip-template/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/tooltip-template/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/tooltip-template/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/category-chart/tooltip-template/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/tooltip-template/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/category-chart/tooltip-template/src/config/tsconfig.base.json b/samples/charts/category-chart/tooltip-template/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/category-chart/tooltip-template/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/tooltip-template/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/tooltip-template/src/config/tsconfig.worker.json b/samples/charts/category-chart/tooltip-template/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/tooltip-template/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/tooltip-template/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/tooltip-template/src/polyfills.ts b/samples/charts/category-chart/tooltip-template/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/category-chart/tooltip-template/src/polyfills.ts +++ b/samples/charts/category-chart/tooltip-template/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/tooltip-template/tsconfig.json b/samples/charts/category-chart/tooltip-template/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/tooltip-template/tsconfig.json +++ b/samples/charts/category-chart/tooltip-template/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/tooltip-types/angular.json b/samples/charts/category-chart/tooltip-types/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/tooltip-types/angular.json +++ b/samples/charts/category-chart/tooltip-types/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/tooltip-types/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/tooltip-types/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/category-chart/tooltip-types/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/tooltip-types/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/category-chart/tooltip-types/src/config/tsconfig.base.json b/samples/charts/category-chart/tooltip-types/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/category-chart/tooltip-types/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/tooltip-types/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/tooltip-types/src/config/tsconfig.worker.json b/samples/charts/category-chart/tooltip-types/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/tooltip-types/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/tooltip-types/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/tooltip-types/src/polyfills.ts b/samples/charts/category-chart/tooltip-types/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/category-chart/tooltip-types/src/polyfills.ts +++ b/samples/charts/category-chart/tooltip-types/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/tooltip-types/tsconfig.json b/samples/charts/category-chart/tooltip-types/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/tooltip-types/tsconfig.json +++ b/samples/charts/category-chart/tooltip-types/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/trendline/angular.json b/samples/charts/category-chart/trendline/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/trendline/angular.json +++ b/samples/charts/category-chart/trendline/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/trendline/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/trendline/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/category-chart/trendline/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/trendline/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/category-chart/trendline/src/config/tsconfig.base.json b/samples/charts/category-chart/trendline/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/category-chart/trendline/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/trendline/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/trendline/src/config/tsconfig.worker.json b/samples/charts/category-chart/trendline/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/trendline/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/trendline/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/trendline/src/polyfills.ts b/samples/charts/category-chart/trendline/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/category-chart/trendline/src/polyfills.ts +++ b/samples/charts/category-chart/trendline/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/trendline/tsconfig.json b/samples/charts/category-chart/trendline/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/trendline/tsconfig.json +++ b/samples/charts/category-chart/trendline/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/category-chart/value-lines/angular.json b/samples/charts/category-chart/value-lines/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/category-chart/value-lines/angular.json +++ b/samples/charts/category-chart/value-lines/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/value-lines/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/value-lines/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/category-chart/value-lines/src/config/tsconfig-es5.app.json +++ b/samples/charts/category-chart/value-lines/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/category-chart/value-lines/src/config/tsconfig.base.json b/samples/charts/category-chart/value-lines/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/category-chart/value-lines/src/config/tsconfig.base.json +++ b/samples/charts/category-chart/value-lines/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/category-chart/value-lines/src/config/tsconfig.worker.json b/samples/charts/category-chart/value-lines/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/category-chart/value-lines/src/config/tsconfig.worker.json +++ b/samples/charts/category-chart/value-lines/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/category-chart/value-lines/src/polyfills.ts b/samples/charts/category-chart/value-lines/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/category-chart/value-lines/src/polyfills.ts +++ b/samples/charts/category-chart/value-lines/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/category-chart/value-lines/tsconfig.json b/samples/charts/category-chart/value-lines/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/category-chart/value-lines/tsconfig.json +++ b/samples/charts/category-chart/value-lines/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/annotations-custom/angular.json b/samples/charts/data-chart/annotations-custom/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/annotations-custom/angular.json +++ b/samples/charts/data-chart/annotations-custom/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/annotations-custom/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/annotations-custom/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/data-chart/annotations-custom/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/annotations-custom/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/data-chart/annotations-custom/src/config/tsconfig.base.json b/samples/charts/data-chart/annotations-custom/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/data-chart/annotations-custom/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/annotations-custom/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/annotations-custom/src/config/tsconfig.worker.json b/samples/charts/data-chart/annotations-custom/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/annotations-custom/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/annotations-custom/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/annotations-custom/src/polyfills.ts b/samples/charts/data-chart/annotations-custom/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/data-chart/annotations-custom/src/polyfills.ts +++ b/samples/charts/data-chart/annotations-custom/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/annotations-custom/tsconfig.json b/samples/charts/data-chart/annotations-custom/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/annotations-custom/tsconfig.json +++ b/samples/charts/data-chart/annotations-custom/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/angular.json b/samples/charts/data-chart/axis-annotations-corner-radius/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/angular.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/src/polyfills.ts b/samples/charts/data-chart/axis-annotations-corner-radius/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/src/polyfills.ts +++ b/samples/charts/data-chart/axis-annotations-corner-radius/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json b/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/axis-annotations/angular.json b/samples/charts/data-chart/axis-annotations/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/axis-annotations/angular.json +++ b/samples/charts/data-chart/axis-annotations/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/axis-annotations/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-annotations/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/data-chart/axis-annotations/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/axis-annotations/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/data-chart/axis-annotations/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-annotations/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/data-chart/axis-annotations/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/axis-annotations/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/axis-annotations/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-annotations/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/axis-annotations/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/axis-annotations/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/axis-annotations/src/polyfills.ts b/samples/charts/data-chart/axis-annotations/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/data-chart/axis-annotations/src/polyfills.ts +++ b/samples/charts/data-chart/axis-annotations/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/axis-annotations/tsconfig.json b/samples/charts/data-chart/axis-annotations/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/axis-annotations/tsconfig.json +++ b/samples/charts/data-chart/axis-annotations/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/axis-crossing/angular.json b/samples/charts/data-chart/axis-crossing/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/axis-crossing/angular.json +++ b/samples/charts/data-chart/axis-crossing/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/axis-crossing/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-crossing/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/data-chart/axis-crossing/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/axis-crossing/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/data-chart/axis-crossing/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-crossing/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/data-chart/axis-crossing/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/axis-crossing/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/axis-crossing/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-crossing/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/axis-crossing/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/axis-crossing/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/axis-crossing/src/polyfills.ts b/samples/charts/data-chart/axis-crossing/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/data-chart/axis-crossing/src/polyfills.ts +++ b/samples/charts/data-chart/axis-crossing/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/axis-crossing/tsconfig.json b/samples/charts/data-chart/axis-crossing/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/axis-crossing/tsconfig.json +++ b/samples/charts/data-chart/axis-crossing/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/axis-label-rotation/angular.json b/samples/charts/data-chart/axis-label-rotation/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/axis-label-rotation/angular.json +++ b/samples/charts/data-chart/axis-label-rotation/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/axis-label-rotation/src/polyfills.ts b/samples/charts/data-chart/axis-label-rotation/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/data-chart/axis-label-rotation/src/polyfills.ts +++ b/samples/charts/data-chart/axis-label-rotation/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/axis-label-rotation/tsconfig.json b/samples/charts/data-chart/axis-label-rotation/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/axis-label-rotation/tsconfig.json +++ b/samples/charts/data-chart/axis-label-rotation/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/axis-locations/angular.json b/samples/charts/data-chart/axis-locations/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/axis-locations/angular.json +++ b/samples/charts/data-chart/axis-locations/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/axis-locations/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-locations/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/data-chart/axis-locations/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/axis-locations/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/data-chart/axis-locations/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-locations/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/data-chart/axis-locations/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/axis-locations/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/axis-locations/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-locations/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/axis-locations/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/axis-locations/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/axis-locations/src/polyfills.ts b/samples/charts/data-chart/axis-locations/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/data-chart/axis-locations/src/polyfills.ts +++ b/samples/charts/data-chart/axis-locations/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/axis-locations/tsconfig.json b/samples/charts/data-chart/axis-locations/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/axis-locations/tsconfig.json +++ b/samples/charts/data-chart/axis-locations/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/axis-min-max-gap/angular.json b/samples/charts/data-chart/axis-min-max-gap/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/axis-min-max-gap/angular.json +++ b/samples/charts/data-chart/axis-min-max-gap/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/axis-min-max-gap/src/polyfills.ts b/samples/charts/data-chart/axis-min-max-gap/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/data-chart/axis-min-max-gap/src/polyfills.ts +++ b/samples/charts/data-chart/axis-min-max-gap/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/axis-min-max-gap/tsconfig.json b/samples/charts/data-chart/axis-min-max-gap/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/axis-min-max-gap/tsconfig.json +++ b/samples/charts/data-chart/axis-min-max-gap/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/axis-settings/angular.json b/samples/charts/data-chart/axis-settings/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/axis-settings/angular.json +++ b/samples/charts/data-chart/axis-settings/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/axis-settings/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-settings/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/data-chart/axis-settings/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/axis-settings/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/data-chart/axis-settings/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-settings/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/data-chart/axis-settings/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/axis-settings/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/axis-settings/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-settings/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/axis-settings/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/axis-settings/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/axis-settings/src/polyfills.ts b/samples/charts/data-chart/axis-settings/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/data-chart/axis-settings/src/polyfills.ts +++ b/samples/charts/data-chart/axis-settings/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/axis-settings/tsconfig.json b/samples/charts/data-chart/axis-settings/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/axis-settings/tsconfig.json +++ b/samples/charts/data-chart/axis-settings/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/axis-sharing/angular.json b/samples/charts/data-chart/axis-sharing/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/axis-sharing/angular.json +++ b/samples/charts/data-chart/axis-sharing/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/axis-sharing/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-sharing/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/data-chart/axis-sharing/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/axis-sharing/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/data-chart/axis-sharing/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-sharing/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/data-chart/axis-sharing/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/axis-sharing/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/axis-sharing/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-sharing/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/axis-sharing/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/axis-sharing/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/axis-sharing/src/polyfills.ts b/samples/charts/data-chart/axis-sharing/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/data-chart/axis-sharing/src/polyfills.ts +++ b/samples/charts/data-chart/axis-sharing/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/axis-sharing/tsconfig.json b/samples/charts/data-chart/axis-sharing/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/axis-sharing/tsconfig.json +++ b/samples/charts/data-chart/axis-sharing/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/axis-types/angular.json b/samples/charts/data-chart/axis-types/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/axis-types/angular.json +++ b/samples/charts/data-chart/axis-types/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/axis-types/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-types/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/data-chart/axis-types/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/axis-types/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/data-chart/axis-types/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-types/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/data-chart/axis-types/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/axis-types/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/axis-types/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-types/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/axis-types/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/axis-types/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/axis-types/src/polyfills.ts b/samples/charts/data-chart/axis-types/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/data-chart/axis-types/src/polyfills.ts +++ b/samples/charts/data-chart/axis-types/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/axis-types/tsconfig.json b/samples/charts/data-chart/axis-types/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/axis-types/tsconfig.json +++ b/samples/charts/data-chart/axis-types/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/angular.json b/samples/charts/data-chart/bar-chart-multiple-sources/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/angular.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.base.json b/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/src/polyfills.ts b/samples/charts/data-chart/bar-chart-multiple-sources/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/src/polyfills.ts +++ b/samples/charts/data-chart/bar-chart-multiple-sources/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json b/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/bar-chart-overlapping/angular.json b/samples/charts/data-chart/bar-chart-overlapping/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/angular.json +++ b/samples/charts/data-chart/bar-chart-overlapping/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.base.json b/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.worker.json b/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/bar-chart-overlapping/src/polyfills.ts b/samples/charts/data-chart/bar-chart-overlapping/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/src/polyfills.ts +++ b/samples/charts/data-chart/bar-chart-overlapping/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json b/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/bar-chart-single-source/angular.json b/samples/charts/data-chart/bar-chart-single-source/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/bar-chart-single-source/angular.json +++ b/samples/charts/data-chart/bar-chart-single-source/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.base.json b/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.worker.json b/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/bar-chart-single-source/src/polyfills.ts b/samples/charts/data-chart/bar-chart-single-source/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/data-chart/bar-chart-single-source/src/polyfills.ts +++ b/samples/charts/data-chart/bar-chart-single-source/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/bar-chart-single-source/tsconfig.json b/samples/charts/data-chart/bar-chart-single-source/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/bar-chart-single-source/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-single-source/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/bar-chart-styling/angular.json b/samples/charts/data-chart/bar-chart-styling/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/bar-chart-styling/angular.json +++ b/samples/charts/data-chart/bar-chart-styling/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.base.json b/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.worker.json b/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/bar-chart-styling/src/polyfills.ts b/samples/charts/data-chart/bar-chart-styling/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/data-chart/bar-chart-styling/src/polyfills.ts +++ b/samples/charts/data-chart/bar-chart-styling/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/bar-chart-styling/tsconfig.json b/samples/charts/data-chart/bar-chart-styling/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/bar-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-styling/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/callout-layer-styling/angular.json b/samples/charts/data-chart/callout-layer-styling/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/callout-layer-styling/angular.json +++ b/samples/charts/data-chart/callout-layer-styling/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.base.json b/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.worker.json b/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/callout-layer-styling/src/polyfills.ts b/samples/charts/data-chart/callout-layer-styling/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/data-chart/callout-layer-styling/src/polyfills.ts +++ b/samples/charts/data-chart/callout-layer-styling/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/callout-layer-styling/tsconfig.json b/samples/charts/data-chart/callout-layer-styling/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/callout-layer-styling/tsconfig.json +++ b/samples/charts/data-chart/callout-layer-styling/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/chart-navigation/angular.json b/samples/charts/data-chart/chart-navigation/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/chart-navigation/angular.json +++ b/samples/charts/data-chart/chart-navigation/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/chart-navigation/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/chart-navigation/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/data-chart/chart-navigation/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/chart-navigation/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/data-chart/chart-navigation/src/config/tsconfig.base.json b/samples/charts/data-chart/chart-navigation/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/data-chart/chart-navigation/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/chart-navigation/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/chart-navigation/src/config/tsconfig.worker.json b/samples/charts/data-chart/chart-navigation/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/chart-navigation/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/chart-navigation/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/chart-navigation/src/polyfills.ts b/samples/charts/data-chart/chart-navigation/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/data-chart/chart-navigation/src/polyfills.ts +++ b/samples/charts/data-chart/chart-navigation/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/chart-navigation/tsconfig.json b/samples/charts/data-chart/chart-navigation/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/chart-navigation/tsconfig.json +++ b/samples/charts/data-chart/chart-navigation/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/chart-overview/angular.json b/samples/charts/data-chart/chart-overview/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/chart-overview/angular.json +++ b/samples/charts/data-chart/chart-overview/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/chart-overview/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/chart-overview/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/data-chart/chart-overview/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/chart-overview/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/data-chart/chart-overview/src/config/tsconfig.base.json b/samples/charts/data-chart/chart-overview/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/data-chart/chart-overview/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/chart-overview/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/chart-overview/src/config/tsconfig.worker.json b/samples/charts/data-chart/chart-overview/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/chart-overview/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/chart-overview/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/chart-overview/src/polyfills.ts b/samples/charts/data-chart/chart-overview/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/data-chart/chart-overview/src/polyfills.ts +++ b/samples/charts/data-chart/chart-overview/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/chart-overview/tsconfig.json b/samples/charts/data-chart/chart-overview/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/chart-overview/tsconfig.json +++ b/samples/charts/data-chart/chart-overview/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/chart-performance/angular.json b/samples/charts/data-chart/chart-performance/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/chart-performance/angular.json +++ b/samples/charts/data-chart/chart-performance/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/chart-performance/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/chart-performance/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/data-chart/chart-performance/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/chart-performance/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/data-chart/chart-performance/src/config/tsconfig.base.json b/samples/charts/data-chart/chart-performance/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/data-chart/chart-performance/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/chart-performance/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/chart-performance/src/config/tsconfig.worker.json b/samples/charts/data-chart/chart-performance/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/chart-performance/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/chart-performance/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/chart-performance/src/polyfills.ts b/samples/charts/data-chart/chart-performance/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/data-chart/chart-performance/src/polyfills.ts +++ b/samples/charts/data-chart/chart-performance/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/chart-performance/tsconfig.json b/samples/charts/data-chart/chart-performance/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/chart-performance/tsconfig.json +++ b/samples/charts/data-chart/chart-performance/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/chart-synchronization/angular.json b/samples/charts/data-chart/chart-synchronization/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/chart-synchronization/angular.json +++ b/samples/charts/data-chart/chart-synchronization/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/chart-synchronization/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/chart-synchronization/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/data-chart/chart-synchronization/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/chart-synchronization/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.base.json b/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.worker.json b/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/chart-synchronization/src/polyfills.ts b/samples/charts/data-chart/chart-synchronization/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/data-chart/chart-synchronization/src/polyfills.ts +++ b/samples/charts/data-chart/chart-synchronization/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/chart-synchronization/tsconfig.json b/samples/charts/data-chart/chart-synchronization/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/chart-synchronization/tsconfig.json +++ b/samples/charts/data-chart/chart-synchronization/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/chart-titles/angular.json b/samples/charts/data-chart/chart-titles/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/chart-titles/angular.json +++ b/samples/charts/data-chart/chart-titles/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/chart-titles/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/chart-titles/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/data-chart/chart-titles/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/chart-titles/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/data-chart/chart-titles/src/config/tsconfig.base.json b/samples/charts/data-chart/chart-titles/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/data-chart/chart-titles/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/chart-titles/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/chart-titles/src/config/tsconfig.worker.json b/samples/charts/data-chart/chart-titles/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/chart-titles/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/chart-titles/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/chart-titles/src/polyfills.ts b/samples/charts/data-chart/chart-titles/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/data-chart/chart-titles/src/polyfills.ts +++ b/samples/charts/data-chart/chart-titles/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/chart-titles/tsconfig.json b/samples/charts/data-chart/chart-titles/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/chart-titles/tsconfig.json +++ b/samples/charts/data-chart/chart-titles/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/column-chart-styling/angular.json b/samples/charts/data-chart/column-chart-styling/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/column-chart-styling/angular.json +++ b/samples/charts/data-chart/column-chart-styling/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/column-chart-styling/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/column-chart-styling/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/data-chart/column-chart-styling/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/column-chart-styling/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.base.json b/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.worker.json b/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/column-chart-styling/src/polyfills.ts b/samples/charts/data-chart/column-chart-styling/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/data-chart/column-chart-styling/src/polyfills.ts +++ b/samples/charts/data-chart/column-chart-styling/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/column-chart-styling/tsconfig.json b/samples/charts/data-chart/column-chart-styling/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/column-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/column-chart-styling/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/composite-chart/angular.json b/samples/charts/data-chart/composite-chart/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/composite-chart/angular.json +++ b/samples/charts/data-chart/composite-chart/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/composite-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/composite-chart/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/data-chart/composite-chart/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/composite-chart/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/data-chart/composite-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/composite-chart/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/data-chart/composite-chart/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/composite-chart/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/composite-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/composite-chart/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/composite-chart/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/composite-chart/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/composite-chart/src/polyfills.ts b/samples/charts/data-chart/composite-chart/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/data-chart/composite-chart/src/polyfills.ts +++ b/samples/charts/data-chart/composite-chart/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/composite-chart/tsconfig.json b/samples/charts/data-chart/composite-chart/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/composite-chart/tsconfig.json +++ b/samples/charts/data-chart/composite-chart/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/crosshair-layer-styling/angular.json b/samples/charts/data-chart/crosshair-layer-styling/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/angular.json +++ b/samples/charts/data-chart/crosshair-layer-styling/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.base.json b/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.worker.json b/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/crosshair-layer-styling/src/polyfills.ts b/samples/charts/data-chart/crosshair-layer-styling/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/src/polyfills.ts +++ b/samples/charts/data-chart/crosshair-layer-styling/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/crosshair-layer-styling/tsconfig.json b/samples/charts/data-chart/crosshair-layer-styling/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/tsconfig.json +++ b/samples/charts/data-chart/crosshair-layer-styling/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/custom-drawing-annotations/angular.json b/samples/charts/data-chart/custom-drawing-annotations/angular.json index ea31d8779..11ffb8c9c 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/angular.json +++ b/samples/charts/data-chart/custom-drawing-annotations/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,13 +97,10 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" } - }, - "cli": { - "analytics": false } } diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index c2bf3f2a9..e09563afd 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.base.json b/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.worker.json b/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/polyfills.ts b/samples/charts/data-chart/custom-drawing-annotations/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/src/polyfills.ts +++ b/samples/charts/data-chart/custom-drawing-annotations/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/custom-drawing-annotations/tsconfig.json b/samples/charts/data-chart/custom-drawing-annotations/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/tsconfig.json +++ b/samples/charts/data-chart/custom-drawing-annotations/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/custom-editing-data/angular.json b/samples/charts/data-chart/custom-editing-data/angular.json index ea31d8779..11ffb8c9c 100644 --- a/samples/charts/data-chart/custom-editing-data/angular.json +++ b/samples/charts/data-chart/custom-editing-data/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,13 +97,10 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" } - }, - "cli": { - "analytics": false } } diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/custom-editing-data/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/custom-editing-data/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/data-chart/custom-editing-data/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/custom-editing-data/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.base.json b/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.worker.json b/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/custom-editing-data/src/polyfills.ts b/samples/charts/data-chart/custom-editing-data/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/data-chart/custom-editing-data/src/polyfills.ts +++ b/samples/charts/data-chart/custom-editing-data/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/custom-editing-data/tsconfig.json b/samples/charts/data-chart/custom-editing-data/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/custom-editing-data/tsconfig.json +++ b/samples/charts/data-chart/custom-editing-data/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/dash-array-axes/angular.json b/samples/charts/data-chart/dash-array-axes/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/dash-array-axes/angular.json +++ b/samples/charts/data-chart/dash-array-axes/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/dash-array-axes/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/dash-array-axes/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/data-chart/dash-array-axes/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/dash-array-axes/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.base.json b/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.worker.json b/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/dash-array-axes/src/polyfills.ts b/samples/charts/data-chart/dash-array-axes/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/data-chart/dash-array-axes/src/polyfills.ts +++ b/samples/charts/data-chart/dash-array-axes/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/dash-array-axes/tsconfig.json b/samples/charts/data-chart/dash-array-axes/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/dash-array-axes/tsconfig.json +++ b/samples/charts/data-chart/dash-array-axes/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/dash-array-series/angular.json b/samples/charts/data-chart/dash-array-series/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/dash-array-series/angular.json +++ b/samples/charts/data-chart/dash-array-series/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/dash-array-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/dash-array-series/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/data-chart/dash-array-series/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/dash-array-series/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/data-chart/dash-array-series/src/config/tsconfig.base.json b/samples/charts/data-chart/dash-array-series/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/data-chart/dash-array-series/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/dash-array-series/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/dash-array-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/dash-array-series/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/dash-array-series/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/dash-array-series/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/dash-array-series/src/polyfills.ts b/samples/charts/data-chart/dash-array-series/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/data-chart/dash-array-series/src/polyfills.ts +++ b/samples/charts/data-chart/dash-array-series/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/dash-array-series/tsconfig.json b/samples/charts/data-chart/dash-array-series/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/dash-array-series/tsconfig.json +++ b/samples/charts/data-chart/dash-array-series/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/dash-array-tickmarks/angular.json b/samples/charts/data-chart/dash-array-tickmarks/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/angular.json +++ b/samples/charts/data-chart/dash-array-tickmarks/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.base.json b/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.worker.json b/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/dash-array-tickmarks/src/polyfills.ts b/samples/charts/data-chart/dash-array-tickmarks/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/src/polyfills.ts +++ b/samples/charts/data-chart/dash-array-tickmarks/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/dash-array-tickmarks/tsconfig.json b/samples/charts/data-chart/dash-array-tickmarks/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/tsconfig.json +++ b/samples/charts/data-chart/dash-array-tickmarks/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/dash-array-trendline/angular.json b/samples/charts/data-chart/dash-array-trendline/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/dash-array-trendline/angular.json +++ b/samples/charts/data-chart/dash-array-trendline/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.base.json b/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.worker.json b/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/dash-array-trendline/src/polyfills.ts b/samples/charts/data-chart/dash-array-trendline/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/data-chart/dash-array-trendline/src/polyfills.ts +++ b/samples/charts/data-chart/dash-array-trendline/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/dash-array-trendline/tsconfig.json b/samples/charts/data-chart/dash-array-trendline/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/dash-array-trendline/tsconfig.json +++ b/samples/charts/data-chart/dash-array-trendline/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/data-legend/angular.json b/samples/charts/data-chart/data-legend/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/data-legend/angular.json +++ b/samples/charts/data-chart/data-legend/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/data-legend/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/data-legend/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/data-chart/data-legend/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/data-legend/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/data-chart/data-legend/src/config/tsconfig.base.json b/samples/charts/data-chart/data-legend/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/data-chart/data-legend/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/data-legend/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/data-legend/src/config/tsconfig.worker.json b/samples/charts/data-chart/data-legend/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/data-legend/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/data-legend/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/data-legend/src/polyfills.ts b/samples/charts/data-chart/data-legend/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/data-chart/data-legend/src/polyfills.ts +++ b/samples/charts/data-chart/data-legend/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/data-legend/tsconfig.json b/samples/charts/data-chart/data-legend/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/data-legend/tsconfig.json +++ b/samples/charts/data-chart/data-legend/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/data-tooltip/angular.json b/samples/charts/data-chart/data-tooltip/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/data-tooltip/angular.json +++ b/samples/charts/data-chart/data-tooltip/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/data-tooltip/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/data-tooltip/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/data-chart/data-tooltip/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/data-tooltip/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/data-chart/data-tooltip/src/config/tsconfig.base.json b/samples/charts/data-chart/data-tooltip/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/data-chart/data-tooltip/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/data-tooltip/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/data-tooltip/src/config/tsconfig.worker.json b/samples/charts/data-chart/data-tooltip/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/data-tooltip/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/data-tooltip/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/data-tooltip/src/polyfills.ts b/samples/charts/data-chart/data-tooltip/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/data-chart/data-tooltip/src/polyfills.ts +++ b/samples/charts/data-chart/data-tooltip/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/data-tooltip/tsconfig.json b/samples/charts/data-chart/data-tooltip/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/data-tooltip/tsconfig.json +++ b/samples/charts/data-chart/data-tooltip/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/final-value-layer-styling/angular.json b/samples/charts/data-chart/final-value-layer-styling/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/final-value-layer-styling/angular.json +++ b/samples/charts/data-chart/final-value-layer-styling/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.base.json b/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.worker.json b/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/final-value-layer-styling/src/polyfills.ts b/samples/charts/data-chart/final-value-layer-styling/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/data-chart/final-value-layer-styling/src/polyfills.ts +++ b/samples/charts/data-chart/final-value-layer-styling/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/final-value-layer-styling/tsconfig.json b/samples/charts/data-chart/final-value-layer-styling/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/final-value-layer-styling/tsconfig.json +++ b/samples/charts/data-chart/final-value-layer-styling/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/financial-price-series/angular.json b/samples/charts/data-chart/financial-price-series/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/financial-price-series/angular.json +++ b/samples/charts/data-chart/financial-price-series/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/financial-price-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/financial-price-series/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/data-chart/financial-price-series/src/config/tsconfig-es5.app.json +++ b/samples/charts/data-chart/financial-price-series/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/data-chart/financial-price-series/src/config/tsconfig.base.json b/samples/charts/data-chart/financial-price-series/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/data-chart/financial-price-series/src/config/tsconfig.base.json +++ b/samples/charts/data-chart/financial-price-series/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/data-chart/financial-price-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/financial-price-series/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/data-chart/financial-price-series/src/config/tsconfig.worker.json +++ b/samples/charts/data-chart/financial-price-series/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/data-chart/financial-price-series/src/polyfills.ts b/samples/charts/data-chart/financial-price-series/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/data-chart/financial-price-series/src/polyfills.ts +++ b/samples/charts/data-chart/financial-price-series/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/data-chart/financial-price-series/tsconfig.json b/samples/charts/data-chart/financial-price-series/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/data-chart/financial-price-series/tsconfig.json +++ b/samples/charts/data-chart/financial-price-series/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/data-chart/format-specifiers/angular.json b/samples/charts/data-chart/format-specifiers/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/data-chart/format-specifiers/angular.json +++ b/samples/charts/data-chart/format-specifiers/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/format-specifiers/src/app.component.html b/samples/charts/data-chart/format-specifiers/src/app.component.html index 8a048de82..a5e48b04f 100644 --- a/samples/charts/data-chart/format-specifiers/src/app.component.html +++ b/samples/charts/data-chart/format-specifiers/src/app.component.html @@ -32,7 +32,7 @@ title="Billions of U.S. Dollars" labelFormat="{0}B" abbreviateLargeNumbers="false" - [labelFormatSpecifiers]="numberFormatSpecifier1"> + [labelFormatSpecifiers]="NumberFormatSpecifier1"> + [xAxisLabelFormatSpecifiers]="DateTimeFormatSpecifier1"> diff --git a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.base.json b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.worker.json b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/format-specifiers/src/polyfills.ts b/samples/charts/financial-chart/format-specifiers/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/financial-chart/format-specifiers/src/polyfills.ts +++ b/samples/charts/financial-chart/format-specifiers/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/format-specifiers/tsconfig.json b/samples/charts/financial-chart/format-specifiers/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/format-specifiers/tsconfig.json +++ b/samples/charts/financial-chart/format-specifiers/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/high-frequency/angular.json b/samples/charts/financial-chart/high-frequency/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/high-frequency/angular.json +++ b/samples/charts/financial-chart/high-frequency/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/high-frequency/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/high-frequency/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/high-frequency/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/high-frequency/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/high-frequency/src/config/tsconfig.base.json b/samples/charts/financial-chart/high-frequency/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/high-frequency/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/high-frequency/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/high-frequency/src/config/tsconfig.worker.json b/samples/charts/financial-chart/high-frequency/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/high-frequency/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/high-frequency/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/high-frequency/src/polyfills.ts b/samples/charts/financial-chart/high-frequency/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/high-frequency/src/polyfills.ts +++ b/samples/charts/financial-chart/high-frequency/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/high-frequency/tsconfig.json b/samples/charts/financial-chart/high-frequency/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/high-frequency/tsconfig.json +++ b/samples/charts/financial-chart/high-frequency/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/high-volume/angular.json b/samples/charts/financial-chart/high-volume/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/high-volume/angular.json +++ b/samples/charts/financial-chart/high-volume/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/high-volume/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/high-volume/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/high-volume/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/high-volume/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/high-volume/src/config/tsconfig.base.json b/samples/charts/financial-chart/high-volume/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/high-volume/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/high-volume/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/high-volume/src/config/tsconfig.worker.json b/samples/charts/financial-chart/high-volume/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/high-volume/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/high-volume/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/high-volume/src/polyfills.ts b/samples/charts/financial-chart/high-volume/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/high-volume/src/polyfills.ts +++ b/samples/charts/financial-chart/high-volume/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/high-volume/tsconfig.json b/samples/charts/financial-chart/high-volume/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/high-volume/tsconfig.json +++ b/samples/charts/financial-chart/high-volume/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/indicator-customization/angular.json b/samples/charts/financial-chart/indicator-customization/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/indicator-customization/angular.json +++ b/samples/charts/financial-chart/indicator-customization/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/indicator-customization/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/indicator-customization/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/indicator-customization/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/indicator-customization/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.base.json b/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.worker.json b/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/indicator-customization/src/polyfills.ts b/samples/charts/financial-chart/indicator-customization/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/indicator-customization/src/polyfills.ts +++ b/samples/charts/financial-chart/indicator-customization/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/indicator-customization/tsconfig.json b/samples/charts/financial-chart/indicator-customization/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/indicator-customization/tsconfig.json +++ b/samples/charts/financial-chart/indicator-customization/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/indicator-types/angular.json b/samples/charts/financial-chart/indicator-types/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/indicator-types/angular.json +++ b/samples/charts/financial-chart/indicator-types/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/indicator-types/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/indicator-types/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/indicator-types/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/indicator-types/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/indicator-types/src/config/tsconfig.base.json b/samples/charts/financial-chart/indicator-types/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/indicator-types/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/indicator-types/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/indicator-types/src/config/tsconfig.worker.json b/samples/charts/financial-chart/indicator-types/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/indicator-types/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/indicator-types/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/indicator-types/src/polyfills.ts b/samples/charts/financial-chart/indicator-types/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/indicator-types/src/polyfills.ts +++ b/samples/charts/financial-chart/indicator-types/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/indicator-types/tsconfig.json b/samples/charts/financial-chart/indicator-types/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/indicator-types/tsconfig.json +++ b/samples/charts/financial-chart/indicator-types/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/multiple-data/angular.json b/samples/charts/financial-chart/multiple-data/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/multiple-data/angular.json +++ b/samples/charts/financial-chart/multiple-data/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/multiple-data/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/multiple-data/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/multiple-data/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/multiple-data/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/multiple-data/src/config/tsconfig.base.json b/samples/charts/financial-chart/multiple-data/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/multiple-data/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/multiple-data/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/multiple-data/src/config/tsconfig.worker.json b/samples/charts/financial-chart/multiple-data/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/multiple-data/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/multiple-data/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/multiple-data/src/polyfills.ts b/samples/charts/financial-chart/multiple-data/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/multiple-data/src/polyfills.ts +++ b/samples/charts/financial-chart/multiple-data/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/multiple-data/tsconfig.json b/samples/charts/financial-chart/multiple-data/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/multiple-data/tsconfig.json +++ b/samples/charts/financial-chart/multiple-data/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/multiple-feeds/angular.json b/samples/charts/financial-chart/multiple-feeds/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/multiple-feeds/angular.json +++ b/samples/charts/financial-chart/multiple-feeds/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.base.json b/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.worker.json b/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/multiple-feeds/src/polyfills.ts b/samples/charts/financial-chart/multiple-feeds/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/multiple-feeds/src/polyfills.ts +++ b/samples/charts/financial-chart/multiple-feeds/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/multiple-feeds/tsconfig.json b/samples/charts/financial-chart/multiple-feeds/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/multiple-feeds/tsconfig.json +++ b/samples/charts/financial-chart/multiple-feeds/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/overview/angular.json b/samples/charts/financial-chart/overview/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/overview/angular.json +++ b/samples/charts/financial-chart/overview/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/overview/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/overview/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/overview/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/overview/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/overview/src/config/tsconfig.base.json b/samples/charts/financial-chart/overview/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/overview/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/overview/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/overview/src/config/tsconfig.worker.json b/samples/charts/financial-chart/overview/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/overview/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/overview/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/overview/src/polyfills.ts b/samples/charts/financial-chart/overview/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/overview/src/polyfills.ts +++ b/samples/charts/financial-chart/overview/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/overview/tsconfig.json b/samples/charts/financial-chart/overview/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/overview/tsconfig.json +++ b/samples/charts/financial-chart/overview/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/panes/angular.json b/samples/charts/financial-chart/panes/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/panes/angular.json +++ b/samples/charts/financial-chart/panes/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/panes/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/panes/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/panes/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/panes/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/panes/src/config/tsconfig.base.json b/samples/charts/financial-chart/panes/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/panes/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/panes/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/panes/src/config/tsconfig.worker.json b/samples/charts/financial-chart/panes/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/panes/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/panes/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/panes/src/polyfills.ts b/samples/charts/financial-chart/panes/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/panes/src/polyfills.ts +++ b/samples/charts/financial-chart/panes/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/panes/tsconfig.json b/samples/charts/financial-chart/panes/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/panes/tsconfig.json +++ b/samples/charts/financial-chart/panes/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/performance/angular.json b/samples/charts/financial-chart/performance/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/performance/angular.json +++ b/samples/charts/financial-chart/performance/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/performance/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/performance/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/performance/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/performance/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/performance/src/config/tsconfig.base.json b/samples/charts/financial-chart/performance/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/performance/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/performance/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/performance/src/config/tsconfig.worker.json b/samples/charts/financial-chart/performance/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/performance/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/performance/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/performance/src/polyfills.ts b/samples/charts/financial-chart/performance/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/performance/src/polyfills.ts +++ b/samples/charts/financial-chart/performance/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/performance/tsconfig.json b/samples/charts/financial-chart/performance/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/performance/tsconfig.json +++ b/samples/charts/financial-chart/performance/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/scrollbars/angular.json b/samples/charts/financial-chart/scrollbars/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/scrollbars/angular.json +++ b/samples/charts/financial-chart/scrollbars/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/scrollbars/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/scrollbars/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/financial-chart/scrollbars/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/scrollbars/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/financial-chart/scrollbars/src/config/tsconfig.base.json b/samples/charts/financial-chart/scrollbars/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/financial-chart/scrollbars/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/scrollbars/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/scrollbars/src/config/tsconfig.worker.json b/samples/charts/financial-chart/scrollbars/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/scrollbars/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/scrollbars/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/scrollbars/src/polyfills.ts b/samples/charts/financial-chart/scrollbars/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/financial-chart/scrollbars/src/polyfills.ts +++ b/samples/charts/financial-chart/scrollbars/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/scrollbars/tsconfig.json b/samples/charts/financial-chart/scrollbars/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/scrollbars/tsconfig.json +++ b/samples/charts/financial-chart/scrollbars/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/stock-index-chart/angular.json b/samples/charts/financial-chart/stock-index-chart/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/stock-index-chart/angular.json +++ b/samples/charts/financial-chart/stock-index-chart/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.base.json b/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.worker.json b/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/stock-index-chart/src/polyfills.ts b/samples/charts/financial-chart/stock-index-chart/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/stock-index-chart/src/polyfills.ts +++ b/samples/charts/financial-chart/stock-index-chart/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/stock-index-chart/tsconfig.json b/samples/charts/financial-chart/stock-index-chart/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/stock-index-chart/tsconfig.json +++ b/samples/charts/financial-chart/stock-index-chart/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/styling/angular.json b/samples/charts/financial-chart/styling/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/styling/angular.json +++ b/samples/charts/financial-chart/styling/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/styling/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/styling/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/styling/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/styling/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/styling/src/config/tsconfig.base.json b/samples/charts/financial-chart/styling/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/styling/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/styling/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/styling/src/config/tsconfig.worker.json b/samples/charts/financial-chart/styling/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/styling/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/styling/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/styling/src/polyfills.ts b/samples/charts/financial-chart/styling/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/styling/src/polyfills.ts +++ b/samples/charts/financial-chart/styling/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/styling/tsconfig.json b/samples/charts/financial-chart/styling/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/styling/tsconfig.json +++ b/samples/charts/financial-chart/styling/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/theming/angular.json b/samples/charts/financial-chart/theming/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/theming/angular.json +++ b/samples/charts/financial-chart/theming/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 3b21a0eed..12ac04a45 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "15.0.2", - "@angular/common": "15.0.2", - "@angular/compiler": "15.0.2", - "@angular/core": "15.0.2", - "@angular/forms": "15.0.2", - "@angular/platform-browser": "15.0.2", - "@angular/platform-browser-dynamic": "15.0.2", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.11.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "15.0.2", - "@angular/cli": "15.0.2", - "@angular/compiler-cli": "15.0.2", - "@angular/language-service": "15.0.2", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "4.8.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/theming/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/theming/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/theming/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/theming/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/theming/src/config/tsconfig.base.json b/samples/charts/financial-chart/theming/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/theming/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/theming/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/theming/src/config/tsconfig.worker.json b/samples/charts/financial-chart/theming/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/theming/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/theming/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/theming/src/polyfills.ts b/samples/charts/financial-chart/theming/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/theming/src/polyfills.ts +++ b/samples/charts/financial-chart/theming/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/theming/tsconfig.json b/samples/charts/financial-chart/theming/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/theming/tsconfig.json +++ b/samples/charts/financial-chart/theming/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/time-based-data/angular.json b/samples/charts/financial-chart/time-based-data/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/time-based-data/angular.json +++ b/samples/charts/financial-chart/time-based-data/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/time-based-data/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/time-based-data/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/time-based-data/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/time-based-data/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/time-based-data/src/config/tsconfig.base.json b/samples/charts/financial-chart/time-based-data/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/time-based-data/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/time-based-data/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/time-based-data/src/config/tsconfig.worker.json b/samples/charts/financial-chart/time-based-data/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/time-based-data/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/time-based-data/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/time-based-data/src/polyfills.ts b/samples/charts/financial-chart/time-based-data/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/time-based-data/src/polyfills.ts +++ b/samples/charts/financial-chart/time-based-data/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/time-based-data/tsconfig.json b/samples/charts/financial-chart/time-based-data/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/time-based-data/tsconfig.json +++ b/samples/charts/financial-chart/time-based-data/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/titles/angular.json b/samples/charts/financial-chart/titles/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/titles/angular.json +++ b/samples/charts/financial-chart/titles/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/titles/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/titles/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/titles/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/titles/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/titles/src/config/tsconfig.base.json b/samples/charts/financial-chart/titles/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/titles/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/titles/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/titles/src/config/tsconfig.worker.json b/samples/charts/financial-chart/titles/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/titles/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/titles/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/titles/src/polyfills.ts b/samples/charts/financial-chart/titles/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/titles/src/polyfills.ts +++ b/samples/charts/financial-chart/titles/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/titles/tsconfig.json b/samples/charts/financial-chart/titles/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/titles/tsconfig.json +++ b/samples/charts/financial-chart/titles/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/tooltip-template/angular.json b/samples/charts/financial-chart/tooltip-template/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/tooltip-template/angular.json +++ b/samples/charts/financial-chart/tooltip-template/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/tooltip-template/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/tooltip-template/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/tooltip-template/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/tooltip-template/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.base.json b/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.worker.json b/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/tooltip-template/src/polyfills.ts b/samples/charts/financial-chart/tooltip-template/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/tooltip-template/src/polyfills.ts +++ b/samples/charts/financial-chart/tooltip-template/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/tooltip-template/tsconfig.json b/samples/charts/financial-chart/tooltip-template/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/tooltip-template/tsconfig.json +++ b/samples/charts/financial-chart/tooltip-template/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/tooltip-types/angular.json b/samples/charts/financial-chart/tooltip-types/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/tooltip-types/angular.json +++ b/samples/charts/financial-chart/tooltip-types/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/tooltip-types/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/tooltip-types/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/tooltip-types/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/tooltip-types/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.base.json b/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.worker.json b/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/tooltip-types/src/polyfills.ts b/samples/charts/financial-chart/tooltip-types/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/tooltip-types/src/polyfills.ts +++ b/samples/charts/financial-chart/tooltip-types/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/tooltip-types/tsconfig.json b/samples/charts/financial-chart/tooltip-types/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/tooltip-types/tsconfig.json +++ b/samples/charts/financial-chart/tooltip-types/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/trendlines/angular.json b/samples/charts/financial-chart/trendlines/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/trendlines/angular.json +++ b/samples/charts/financial-chart/trendlines/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/trendlines/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/trendlines/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/trendlines/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/trendlines/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/trendlines/src/config/tsconfig.base.json b/samples/charts/financial-chart/trendlines/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/trendlines/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/trendlines/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/trendlines/src/config/tsconfig.worker.json b/samples/charts/financial-chart/trendlines/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/trendlines/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/trendlines/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/trendlines/src/polyfills.ts b/samples/charts/financial-chart/trendlines/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/trendlines/src/polyfills.ts +++ b/samples/charts/financial-chart/trendlines/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/trendlines/tsconfig.json b/samples/charts/financial-chart/trendlines/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/trendlines/tsconfig.json +++ b/samples/charts/financial-chart/trendlines/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/financial-chart/volume-types/angular.json b/samples/charts/financial-chart/volume-types/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/financial-chart/volume-types/angular.json +++ b/samples/charts/financial-chart/volume-types/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/volume-types/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/volume-types/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/financial-chart/volume-types/src/config/tsconfig-es5.app.json +++ b/samples/charts/financial-chart/volume-types/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/financial-chart/volume-types/src/config/tsconfig.base.json b/samples/charts/financial-chart/volume-types/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/financial-chart/volume-types/src/config/tsconfig.base.json +++ b/samples/charts/financial-chart/volume-types/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/financial-chart/volume-types/src/config/tsconfig.worker.json b/samples/charts/financial-chart/volume-types/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/financial-chart/volume-types/src/config/tsconfig.worker.json +++ b/samples/charts/financial-chart/volume-types/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/financial-chart/volume-types/src/polyfills.ts b/samples/charts/financial-chart/volume-types/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/financial-chart/volume-types/src/polyfills.ts +++ b/samples/charts/financial-chart/volume-types/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/financial-chart/volume-types/tsconfig.json b/samples/charts/financial-chart/volume-types/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/financial-chart/volume-types/tsconfig.json +++ b/samples/charts/financial-chart/volume-types/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/pie-chart/animation/angular.json b/samples/charts/pie-chart/animation/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/pie-chart/animation/angular.json +++ b/samples/charts/pie-chart/animation/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/pie-chart/animation/src/config/tsconfig-es5.app.json b/samples/charts/pie-chart/animation/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/pie-chart/animation/src/config/tsconfig-es5.app.json +++ b/samples/charts/pie-chart/animation/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/pie-chart/animation/src/config/tsconfig.base.json b/samples/charts/pie-chart/animation/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/pie-chart/animation/src/config/tsconfig.base.json +++ b/samples/charts/pie-chart/animation/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/pie-chart/animation/src/config/tsconfig.worker.json b/samples/charts/pie-chart/animation/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/pie-chart/animation/src/config/tsconfig.worker.json +++ b/samples/charts/pie-chart/animation/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/pie-chart/animation/src/polyfills.ts b/samples/charts/pie-chart/animation/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/pie-chart/animation/src/polyfills.ts +++ b/samples/charts/pie-chart/animation/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/pie-chart/animation/tsconfig.json b/samples/charts/pie-chart/animation/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/pie-chart/animation/tsconfig.json +++ b/samples/charts/pie-chart/animation/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/pie-chart/explosion/angular.json b/samples/charts/pie-chart/explosion/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/pie-chart/explosion/angular.json +++ b/samples/charts/pie-chart/explosion/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/pie-chart/explosion/src/config/tsconfig-es5.app.json b/samples/charts/pie-chart/explosion/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/pie-chart/explosion/src/config/tsconfig-es5.app.json +++ b/samples/charts/pie-chart/explosion/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/pie-chart/explosion/src/config/tsconfig.base.json b/samples/charts/pie-chart/explosion/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/pie-chart/explosion/src/config/tsconfig.base.json +++ b/samples/charts/pie-chart/explosion/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/pie-chart/explosion/src/config/tsconfig.worker.json b/samples/charts/pie-chart/explosion/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/pie-chart/explosion/src/config/tsconfig.worker.json +++ b/samples/charts/pie-chart/explosion/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/pie-chart/explosion/src/polyfills.ts b/samples/charts/pie-chart/explosion/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/pie-chart/explosion/src/polyfills.ts +++ b/samples/charts/pie-chart/explosion/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/pie-chart/explosion/tsconfig.json b/samples/charts/pie-chart/explosion/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/pie-chart/explosion/tsconfig.json +++ b/samples/charts/pie-chart/explosion/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/pie-chart/legend/angular.json b/samples/charts/pie-chart/legend/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/pie-chart/legend/angular.json +++ b/samples/charts/pie-chart/legend/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/pie-chart/legend/src/config/tsconfig-es5.app.json b/samples/charts/pie-chart/legend/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/pie-chart/legend/src/config/tsconfig-es5.app.json +++ b/samples/charts/pie-chart/legend/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/pie-chart/legend/src/config/tsconfig.base.json b/samples/charts/pie-chart/legend/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/pie-chart/legend/src/config/tsconfig.base.json +++ b/samples/charts/pie-chart/legend/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/pie-chart/legend/src/config/tsconfig.worker.json b/samples/charts/pie-chart/legend/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/pie-chart/legend/src/config/tsconfig.worker.json +++ b/samples/charts/pie-chart/legend/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/pie-chart/legend/src/polyfills.ts b/samples/charts/pie-chart/legend/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/pie-chart/legend/src/polyfills.ts +++ b/samples/charts/pie-chart/legend/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/pie-chart/legend/tsconfig.json b/samples/charts/pie-chart/legend/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/pie-chart/legend/tsconfig.json +++ b/samples/charts/pie-chart/legend/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/pie-chart/others/angular.json b/samples/charts/pie-chart/others/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/pie-chart/others/angular.json +++ b/samples/charts/pie-chart/others/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/pie-chart/others/src/config/tsconfig-es5.app.json b/samples/charts/pie-chart/others/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/pie-chart/others/src/config/tsconfig-es5.app.json +++ b/samples/charts/pie-chart/others/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/pie-chart/others/src/config/tsconfig.base.json b/samples/charts/pie-chart/others/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/pie-chart/others/src/config/tsconfig.base.json +++ b/samples/charts/pie-chart/others/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/pie-chart/others/src/config/tsconfig.worker.json b/samples/charts/pie-chart/others/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/pie-chart/others/src/config/tsconfig.worker.json +++ b/samples/charts/pie-chart/others/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/pie-chart/others/src/polyfills.ts b/samples/charts/pie-chart/others/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/pie-chart/others/src/polyfills.ts +++ b/samples/charts/pie-chart/others/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/pie-chart/others/tsconfig.json b/samples/charts/pie-chart/others/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/pie-chart/others/tsconfig.json +++ b/samples/charts/pie-chart/others/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/pie-chart/overview/angular.json b/samples/charts/pie-chart/overview/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/pie-chart/overview/angular.json +++ b/samples/charts/pie-chart/overview/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/pie-chart/overview/src/config/tsconfig-es5.app.json b/samples/charts/pie-chart/overview/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/pie-chart/overview/src/config/tsconfig-es5.app.json +++ b/samples/charts/pie-chart/overview/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/pie-chart/overview/src/config/tsconfig.base.json b/samples/charts/pie-chart/overview/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/pie-chart/overview/src/config/tsconfig.base.json +++ b/samples/charts/pie-chart/overview/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/pie-chart/overview/src/config/tsconfig.worker.json b/samples/charts/pie-chart/overview/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/pie-chart/overview/src/config/tsconfig.worker.json +++ b/samples/charts/pie-chart/overview/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/pie-chart/overview/src/polyfills.ts b/samples/charts/pie-chart/overview/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/pie-chart/overview/src/polyfills.ts +++ b/samples/charts/pie-chart/overview/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/pie-chart/overview/tsconfig.json b/samples/charts/pie-chart/overview/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/pie-chart/overview/tsconfig.json +++ b/samples/charts/pie-chart/overview/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/pie-chart/selection/angular.json b/samples/charts/pie-chart/selection/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/pie-chart/selection/angular.json +++ b/samples/charts/pie-chart/selection/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/pie-chart/selection/src/config/tsconfig-es5.app.json b/samples/charts/pie-chart/selection/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/pie-chart/selection/src/config/tsconfig-es5.app.json +++ b/samples/charts/pie-chart/selection/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/pie-chart/selection/src/config/tsconfig.base.json b/samples/charts/pie-chart/selection/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/pie-chart/selection/src/config/tsconfig.base.json +++ b/samples/charts/pie-chart/selection/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/pie-chart/selection/src/config/tsconfig.worker.json b/samples/charts/pie-chart/selection/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/pie-chart/selection/src/config/tsconfig.worker.json +++ b/samples/charts/pie-chart/selection/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/pie-chart/selection/src/polyfills.ts b/samples/charts/pie-chart/selection/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/pie-chart/selection/src/polyfills.ts +++ b/samples/charts/pie-chart/selection/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/pie-chart/selection/tsconfig.json b/samples/charts/pie-chart/selection/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/pie-chart/selection/tsconfig.json +++ b/samples/charts/pie-chart/selection/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/pie-chart/styling/angular.json b/samples/charts/pie-chart/styling/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/pie-chart/styling/angular.json +++ b/samples/charts/pie-chart/styling/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/pie-chart/styling/src/config/tsconfig-es5.app.json b/samples/charts/pie-chart/styling/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/pie-chart/styling/src/config/tsconfig-es5.app.json +++ b/samples/charts/pie-chart/styling/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/pie-chart/styling/src/config/tsconfig.base.json b/samples/charts/pie-chart/styling/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/pie-chart/styling/src/config/tsconfig.base.json +++ b/samples/charts/pie-chart/styling/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/pie-chart/styling/src/config/tsconfig.worker.json b/samples/charts/pie-chart/styling/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/pie-chart/styling/src/config/tsconfig.worker.json +++ b/samples/charts/pie-chart/styling/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/pie-chart/styling/src/polyfills.ts b/samples/charts/pie-chart/styling/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/pie-chart/styling/src/polyfills.ts +++ b/samples/charts/pie-chart/styling/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/pie-chart/styling/tsconfig.json b/samples/charts/pie-chart/styling/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/pie-chart/styling/tsconfig.json +++ b/samples/charts/pie-chart/styling/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/sparkline/display-area/angular.json b/samples/charts/sparkline/display-area/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/sparkline/display-area/angular.json +++ b/samples/charts/sparkline/display-area/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/display-area/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/display-area/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/sparkline/display-area/src/config/tsconfig-es5.app.json +++ b/samples/charts/sparkline/display-area/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/sparkline/display-area/src/config/tsconfig.base.json b/samples/charts/sparkline/display-area/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/sparkline/display-area/src/config/tsconfig.base.json +++ b/samples/charts/sparkline/display-area/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/sparkline/display-area/src/config/tsconfig.worker.json b/samples/charts/sparkline/display-area/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/sparkline/display-area/src/config/tsconfig.worker.json +++ b/samples/charts/sparkline/display-area/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/sparkline/display-area/src/polyfills.ts b/samples/charts/sparkline/display-area/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/sparkline/display-area/src/polyfills.ts +++ b/samples/charts/sparkline/display-area/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/sparkline/display-area/tsconfig.json b/samples/charts/sparkline/display-area/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/sparkline/display-area/tsconfig.json +++ b/samples/charts/sparkline/display-area/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/sparkline/display-column/angular.json b/samples/charts/sparkline/display-column/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/sparkline/display-column/angular.json +++ b/samples/charts/sparkline/display-column/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/display-column/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/display-column/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/sparkline/display-column/src/config/tsconfig-es5.app.json +++ b/samples/charts/sparkline/display-column/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/sparkline/display-column/src/config/tsconfig.base.json b/samples/charts/sparkline/display-column/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/sparkline/display-column/src/config/tsconfig.base.json +++ b/samples/charts/sparkline/display-column/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/sparkline/display-column/src/config/tsconfig.worker.json b/samples/charts/sparkline/display-column/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/sparkline/display-column/src/config/tsconfig.worker.json +++ b/samples/charts/sparkline/display-column/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/sparkline/display-column/src/polyfills.ts b/samples/charts/sparkline/display-column/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/sparkline/display-column/src/polyfills.ts +++ b/samples/charts/sparkline/display-column/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/sparkline/display-column/tsconfig.json b/samples/charts/sparkline/display-column/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/sparkline/display-column/tsconfig.json +++ b/samples/charts/sparkline/display-column/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/sparkline/display-lines/angular.json b/samples/charts/sparkline/display-lines/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/sparkline/display-lines/angular.json +++ b/samples/charts/sparkline/display-lines/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 9a999dc97..e27d2007a 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/display-lines/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/display-lines/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/sparkline/display-lines/src/config/tsconfig-es5.app.json +++ b/samples/charts/sparkline/display-lines/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/sparkline/display-lines/src/config/tsconfig.base.json b/samples/charts/sparkline/display-lines/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/sparkline/display-lines/src/config/tsconfig.base.json +++ b/samples/charts/sparkline/display-lines/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/sparkline/display-lines/src/config/tsconfig.worker.json b/samples/charts/sparkline/display-lines/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/sparkline/display-lines/src/config/tsconfig.worker.json +++ b/samples/charts/sparkline/display-lines/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/sparkline/display-lines/src/polyfills.ts b/samples/charts/sparkline/display-lines/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/sparkline/display-lines/src/polyfills.ts +++ b/samples/charts/sparkline/display-lines/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/sparkline/display-lines/tsconfig.json b/samples/charts/sparkline/display-lines/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/sparkline/display-lines/tsconfig.json +++ b/samples/charts/sparkline/display-lines/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/sparkline/display-types/angular.json b/samples/charts/sparkline/display-types/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/sparkline/display-types/angular.json +++ b/samples/charts/sparkline/display-types/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/display-types/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/display-types/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/sparkline/display-types/src/config/tsconfig-es5.app.json +++ b/samples/charts/sparkline/display-types/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/sparkline/display-types/src/config/tsconfig.base.json b/samples/charts/sparkline/display-types/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/sparkline/display-types/src/config/tsconfig.base.json +++ b/samples/charts/sparkline/display-types/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/sparkline/display-types/src/config/tsconfig.worker.json b/samples/charts/sparkline/display-types/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/sparkline/display-types/src/config/tsconfig.worker.json +++ b/samples/charts/sparkline/display-types/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/sparkline/display-types/src/polyfills.ts b/samples/charts/sparkline/display-types/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/sparkline/display-types/src/polyfills.ts +++ b/samples/charts/sparkline/display-types/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/sparkline/display-types/tsconfig.json b/samples/charts/sparkline/display-types/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/sparkline/display-types/tsconfig.json +++ b/samples/charts/sparkline/display-types/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/sparkline/display-winloss/angular.json b/samples/charts/sparkline/display-winloss/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/sparkline/display-winloss/angular.json +++ b/samples/charts/sparkline/display-winloss/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/display-winloss/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/display-winloss/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/sparkline/display-winloss/src/config/tsconfig-es5.app.json +++ b/samples/charts/sparkline/display-winloss/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/sparkline/display-winloss/src/config/tsconfig.base.json b/samples/charts/sparkline/display-winloss/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/sparkline/display-winloss/src/config/tsconfig.base.json +++ b/samples/charts/sparkline/display-winloss/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/sparkline/display-winloss/src/config/tsconfig.worker.json b/samples/charts/sparkline/display-winloss/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/sparkline/display-winloss/src/config/tsconfig.worker.json +++ b/samples/charts/sparkline/display-winloss/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/sparkline/display-winloss/src/polyfills.ts b/samples/charts/sparkline/display-winloss/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/sparkline/display-winloss/src/polyfills.ts +++ b/samples/charts/sparkline/display-winloss/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/sparkline/display-winloss/tsconfig.json b/samples/charts/sparkline/display-winloss/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/sparkline/display-winloss/tsconfig.json +++ b/samples/charts/sparkline/display-winloss/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/sparkline/grid/angular.json b/samples/charts/sparkline/grid/angular.json index fef1c2fe4..11ffb8c9c 100644 --- a/samples/charts/sparkline/grid/angular.json +++ b/samples/charts/sparkline/grid/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -22,10 +25,7 @@ "styles": [ "src/styles.scss" ], - "scripts": [], - "stylePreprocessorOptions": { - "includePaths": ["node_modules"] - } + "scripts": [] }, "configurations": { "production": { @@ -49,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -97,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index b8c4e1f59..3cdcfbd9b 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "16.0.7", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-theming": "1.4.14", + "igniteui-angular": "17.0.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-theming": "3.3.1", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/grid/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/grid/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/sparkline/grid/src/config/tsconfig-es5.app.json +++ b/samples/charts/sparkline/grid/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/sparkline/grid/src/config/tsconfig.base.json b/samples/charts/sparkline/grid/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/sparkline/grid/src/config/tsconfig.base.json +++ b/samples/charts/sparkline/grid/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/sparkline/grid/src/config/tsconfig.worker.json b/samples/charts/sparkline/grid/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/sparkline/grid/src/config/tsconfig.worker.json +++ b/samples/charts/sparkline/grid/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/sparkline/grid/src/polyfills.ts b/samples/charts/sparkline/grid/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/sparkline/grid/src/polyfills.ts +++ b/samples/charts/sparkline/grid/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/sparkline/grid/tsconfig.json b/samples/charts/sparkline/grid/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/sparkline/grid/tsconfig.json +++ b/samples/charts/sparkline/grid/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/sparkline/markers/angular.json b/samples/charts/sparkline/markers/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/sparkline/markers/angular.json +++ b/samples/charts/sparkline/markers/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/markers/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/markers/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/sparkline/markers/src/config/tsconfig-es5.app.json +++ b/samples/charts/sparkline/markers/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/sparkline/markers/src/config/tsconfig.base.json b/samples/charts/sparkline/markers/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/sparkline/markers/src/config/tsconfig.base.json +++ b/samples/charts/sparkline/markers/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/sparkline/markers/src/config/tsconfig.worker.json b/samples/charts/sparkline/markers/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/sparkline/markers/src/config/tsconfig.worker.json +++ b/samples/charts/sparkline/markers/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/sparkline/markers/src/polyfills.ts b/samples/charts/sparkline/markers/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/sparkline/markers/src/polyfills.ts +++ b/samples/charts/sparkline/markers/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/sparkline/markers/tsconfig.json b/samples/charts/sparkline/markers/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/sparkline/markers/tsconfig.json +++ b/samples/charts/sparkline/markers/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/sparkline/normal-range/angular.json b/samples/charts/sparkline/normal-range/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/sparkline/normal-range/angular.json +++ b/samples/charts/sparkline/normal-range/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/normal-range/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/normal-range/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/sparkline/normal-range/src/config/tsconfig-es5.app.json +++ b/samples/charts/sparkline/normal-range/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/sparkline/normal-range/src/config/tsconfig.base.json b/samples/charts/sparkline/normal-range/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/sparkline/normal-range/src/config/tsconfig.base.json +++ b/samples/charts/sparkline/normal-range/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/sparkline/normal-range/src/config/tsconfig.worker.json b/samples/charts/sparkline/normal-range/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/sparkline/normal-range/src/config/tsconfig.worker.json +++ b/samples/charts/sparkline/normal-range/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/sparkline/normal-range/src/polyfills.ts b/samples/charts/sparkline/normal-range/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/sparkline/normal-range/src/polyfills.ts +++ b/samples/charts/sparkline/normal-range/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/sparkline/normal-range/tsconfig.json b/samples/charts/sparkline/normal-range/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/sparkline/normal-range/tsconfig.json +++ b/samples/charts/sparkline/normal-range/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/sparkline/trendlines/angular.json b/samples/charts/sparkline/trendlines/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/sparkline/trendlines/angular.json +++ b/samples/charts/sparkline/trendlines/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/trendlines/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/trendlines/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/sparkline/trendlines/src/config/tsconfig-es5.app.json +++ b/samples/charts/sparkline/trendlines/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/sparkline/trendlines/src/config/tsconfig.base.json b/samples/charts/sparkline/trendlines/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/sparkline/trendlines/src/config/tsconfig.base.json +++ b/samples/charts/sparkline/trendlines/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/sparkline/trendlines/src/config/tsconfig.worker.json b/samples/charts/sparkline/trendlines/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/sparkline/trendlines/src/config/tsconfig.worker.json +++ b/samples/charts/sparkline/trendlines/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/sparkline/trendlines/src/polyfills.ts b/samples/charts/sparkline/trendlines/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/sparkline/trendlines/src/polyfills.ts +++ b/samples/charts/sparkline/trendlines/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/sparkline/trendlines/tsconfig.json b/samples/charts/sparkline/trendlines/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/sparkline/trendlines/tsconfig.json +++ b/samples/charts/sparkline/trendlines/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/sparkline/unknown-values/angular.json b/samples/charts/sparkline/unknown-values/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/sparkline/unknown-values/angular.json +++ b/samples/charts/sparkline/unknown-values/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/unknown-values/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/unknown-values/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/sparkline/unknown-values/src/config/tsconfig-es5.app.json +++ b/samples/charts/sparkline/unknown-values/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/sparkline/unknown-values/src/config/tsconfig.base.json b/samples/charts/sparkline/unknown-values/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/sparkline/unknown-values/src/config/tsconfig.base.json +++ b/samples/charts/sparkline/unknown-values/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/sparkline/unknown-values/src/config/tsconfig.worker.json b/samples/charts/sparkline/unknown-values/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/sparkline/unknown-values/src/config/tsconfig.worker.json +++ b/samples/charts/sparkline/unknown-values/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/sparkline/unknown-values/src/polyfills.ts b/samples/charts/sparkline/unknown-values/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/sparkline/unknown-values/src/polyfills.ts +++ b/samples/charts/sparkline/unknown-values/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/sparkline/unknown-values/tsconfig.json b/samples/charts/sparkline/unknown-values/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/sparkline/unknown-values/tsconfig.json +++ b/samples/charts/sparkline/unknown-values/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/toolbar/actions-built-in-category-chart/angular.json b/samples/charts/toolbar/actions-built-in-category-chart/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/angular.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 9a999dc97..e27d2007a 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig-es5.app.json b/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig-es5.app.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.base.json b/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.base.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.worker.json b/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.worker.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/polyfills.ts b/samples/charts/toolbar/actions-built-in-category-chart/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/polyfills.ts +++ b/samples/charts/toolbar/actions-built-in-category-chart/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json b/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/toolbar/actions-built-in-data-chart/angular.json b/samples/charts/toolbar/actions-built-in-data-chart/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/angular.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 9a999dc97..e27d2007a 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig-es5.app.json b/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig-es5.app.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.base.json b/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.base.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.worker.json b/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.worker.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/toolbar/actions-built-in-data-chart/src/polyfills.ts b/samples/charts/toolbar/actions-built-in-data-chart/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/polyfills.ts +++ b/samples/charts/toolbar/actions-built-in-data-chart/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json b/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/angular.json b/samples/charts/toolbar/layout-actions-for-data-chart/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/angular.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 9a999dc97..e27d2007a 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig-es5.app.json b/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig-es5.app.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.base.json b/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.base.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.worker.json b/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.worker.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/polyfills.ts b/samples/charts/toolbar/layout-actions-for-data-chart/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/polyfills.ts +++ b/samples/charts/toolbar/layout-actions-for-data-chart/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json b/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/angular.json b/samples/charts/toolbar/layout-in-vertical-orientation/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/angular.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 9a999dc97..e27d2007a 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig-es5.app.json b/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig-es5.app.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.base.json b/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.base.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.worker.json b/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.worker.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/src/polyfills.ts b/samples/charts/toolbar/layout-in-vertical-orientation/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/src/polyfills.ts +++ b/samples/charts/toolbar/layout-in-vertical-orientation/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json b/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/toolbar/theming/angular.json b/samples/charts/toolbar/theming/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/toolbar/theming/angular.json +++ b/samples/charts/toolbar/theming/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/toolbar/theming/src/config/tsconfig-es5.app.json b/samples/charts/toolbar/theming/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/toolbar/theming/src/config/tsconfig-es5.app.json +++ b/samples/charts/toolbar/theming/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/toolbar/theming/src/config/tsconfig.base.json b/samples/charts/toolbar/theming/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/toolbar/theming/src/config/tsconfig.base.json +++ b/samples/charts/toolbar/theming/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/toolbar/theming/src/config/tsconfig.worker.json b/samples/charts/toolbar/theming/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/toolbar/theming/src/config/tsconfig.worker.json +++ b/samples/charts/toolbar/theming/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/toolbar/theming/src/polyfills.ts b/samples/charts/toolbar/theming/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/toolbar/theming/src/polyfills.ts +++ b/samples/charts/toolbar/theming/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/toolbar/theming/tsconfig.json b/samples/charts/toolbar/theming/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/toolbar/theming/tsconfig.json +++ b/samples/charts/toolbar/theming/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/tree-map/events/angular.json b/samples/charts/tree-map/events/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/tree-map/events/angular.json +++ b/samples/charts/tree-map/events/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 8d4abfa07..84991650c 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "16.0.7", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular": "17.0.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/tree-map/events/src/config/tsconfig-es5.app.json b/samples/charts/tree-map/events/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/tree-map/events/src/config/tsconfig-es5.app.json +++ b/samples/charts/tree-map/events/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/tree-map/events/src/config/tsconfig.base.json b/samples/charts/tree-map/events/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/tree-map/events/src/config/tsconfig.base.json +++ b/samples/charts/tree-map/events/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/tree-map/events/src/config/tsconfig.worker.json b/samples/charts/tree-map/events/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/tree-map/events/src/config/tsconfig.worker.json +++ b/samples/charts/tree-map/events/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/tree-map/events/src/polyfills.ts b/samples/charts/tree-map/events/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/tree-map/events/src/polyfills.ts +++ b/samples/charts/tree-map/events/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/tree-map/events/tsconfig.json b/samples/charts/tree-map/events/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/tree-map/events/tsconfig.json +++ b/samples/charts/tree-map/events/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/tree-map/layout/angular.json b/samples/charts/tree-map/layout/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/tree-map/layout/angular.json +++ b/samples/charts/tree-map/layout/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index f441c7f74..366494b4f 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-inputs": "16.1.2-beta.0", - "igniteui-angular-layouts": "16.1.2-beta.0", - "igniteui-webcomponents": "4.5.0-beta.1", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/tree-map/layout/src/config/tsconfig-es5.app.json b/samples/charts/tree-map/layout/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/tree-map/layout/src/config/tsconfig-es5.app.json +++ b/samples/charts/tree-map/layout/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/tree-map/layout/src/config/tsconfig.base.json b/samples/charts/tree-map/layout/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/tree-map/layout/src/config/tsconfig.base.json +++ b/samples/charts/tree-map/layout/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/tree-map/layout/src/config/tsconfig.worker.json b/samples/charts/tree-map/layout/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/tree-map/layout/src/config/tsconfig.worker.json +++ b/samples/charts/tree-map/layout/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/tree-map/layout/src/polyfills.ts b/samples/charts/tree-map/layout/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/tree-map/layout/src/polyfills.ts +++ b/samples/charts/tree-map/layout/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/tree-map/layout/tsconfig.json b/samples/charts/tree-map/layout/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/tree-map/layout/tsconfig.json +++ b/samples/charts/tree-map/layout/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/tree-map/overview/angular.json b/samples/charts/tree-map/overview/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/tree-map/overview/angular.json +++ b/samples/charts/tree-map/overview/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/tree-map/overview/src/config/tsconfig-es5.app.json b/samples/charts/tree-map/overview/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/tree-map/overview/src/config/tsconfig-es5.app.json +++ b/samples/charts/tree-map/overview/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/tree-map/overview/src/config/tsconfig.base.json b/samples/charts/tree-map/overview/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/tree-map/overview/src/config/tsconfig.base.json +++ b/samples/charts/tree-map/overview/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/tree-map/overview/src/config/tsconfig.worker.json b/samples/charts/tree-map/overview/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/tree-map/overview/src/config/tsconfig.worker.json +++ b/samples/charts/tree-map/overview/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/tree-map/overview/src/polyfills.ts b/samples/charts/tree-map/overview/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/tree-map/overview/src/polyfills.ts +++ b/samples/charts/tree-map/overview/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/tree-map/overview/tsconfig.json b/samples/charts/tree-map/overview/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/tree-map/overview/tsconfig.json +++ b/samples/charts/tree-map/overview/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/tree-map/styling/angular.json b/samples/charts/tree-map/styling/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/tree-map/styling/angular.json +++ b/samples/charts/tree-map/styling/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 28a1138db..f089ceb83 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", - "@angular-devkit/build-angular": "16.0.1", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "9.1.1", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/tree-map/styling/src/config/tsconfig-es5.app.json b/samples/charts/tree-map/styling/src/config/tsconfig-es5.app.json index 7e5d23397..7e8983eb4 100644 --- a/samples/charts/tree-map/styling/src/config/tsconfig-es5.app.json +++ b/samples/charts/tree-map/styling/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" + "target": "ES2022" } } diff --git a/samples/charts/tree-map/styling/src/config/tsconfig.base.json b/samples/charts/tree-map/styling/src/config/tsconfig.base.json index f5ad4b8b7..5574be5e5 100644 --- a/samples/charts/tree-map/styling/src/config/tsconfig.base.json +++ b/samples/charts/tree-map/styling/src/config/tsconfig.base.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, @@ -11,13 +11,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/tree-map/styling/src/config/tsconfig.worker.json b/samples/charts/tree-map/styling/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/tree-map/styling/src/config/tsconfig.worker.json +++ b/samples/charts/tree-map/styling/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/tree-map/styling/src/polyfills.ts b/samples/charts/tree-map/styling/src/polyfills.ts index 6c0321de4..d583cff9c 100644 --- a/samples/charts/tree-map/styling/src/polyfills.ts +++ b/samples/charts/tree-map/styling/src/polyfills.ts @@ -21,7 +21,7 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ // import "core-js/es6/reflect"; @@ -34,20 +34,20 @@ import "classlist.js"; // run `npm install --save classlist.js`. * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/tree-map/styling/tsconfig.json b/samples/charts/tree-map/styling/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/tree-map/styling/tsconfig.json +++ b/samples/charts/tree-map/styling/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/charts/zoomslider/overview/angular.json b/samples/charts/zoomslider/overview/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/charts/zoomslider/overview/angular.json +++ b/samples/charts/zoomslider/overview/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index b0258ab2e..12ac04a45 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/charts/zoomslider/overview/src/config/tsconfig-es5.app.json b/samples/charts/zoomslider/overview/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/charts/zoomslider/overview/src/config/tsconfig-es5.app.json +++ b/samples/charts/zoomslider/overview/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/charts/zoomslider/overview/src/config/tsconfig.base.json b/samples/charts/zoomslider/overview/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/charts/zoomslider/overview/src/config/tsconfig.base.json +++ b/samples/charts/zoomslider/overview/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/charts/zoomslider/overview/src/config/tsconfig.worker.json b/samples/charts/zoomslider/overview/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/charts/zoomslider/overview/src/config/tsconfig.worker.json +++ b/samples/charts/zoomslider/overview/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/charts/zoomslider/overview/src/polyfills.ts b/samples/charts/zoomslider/overview/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/charts/zoomslider/overview/src/polyfills.ts +++ b/samples/charts/zoomslider/overview/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/charts/zoomslider/overview/tsconfig.json b/samples/charts/zoomslider/overview/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/charts/zoomslider/overview/tsconfig.json +++ b/samples/charts/zoomslider/overview/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/excel/excel-library/operations-on-workbooks/angular.json b/samples/excel/excel-library/operations-on-workbooks/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/excel/excel-library/operations-on-workbooks/angular.json +++ b/samples/excel/excel-library/operations-on-workbooks/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index d53a737a2..e4d192c42 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "16.0.7", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig-es5.app.json b/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig-es5.app.json +++ b/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.base.json b/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.base.json +++ b/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.worker.json b/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.worker.json +++ b/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/excel/excel-library/operations-on-workbooks/src/environments/environment.prod.ts b/samples/excel/excel-library/operations-on-workbooks/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/excel/excel-library/operations-on-workbooks/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/excel/excel-library/operations-on-workbooks/src/environments/environment.ts b/samples/excel/excel-library/operations-on-workbooks/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/excel/excel-library/operations-on-workbooks/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/excel/excel-library/operations-on-workbooks/src/polyfills.ts b/samples/excel/excel-library/operations-on-workbooks/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/excel/excel-library/operations-on-workbooks/src/polyfills.ts +++ b/samples/excel/excel-library/operations-on-workbooks/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/excel/excel-library/operations-on-workbooks/tsconfig.json b/samples/excel/excel-library/operations-on-workbooks/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/excel/excel-library/operations-on-workbooks/tsconfig.json +++ b/samples/excel/excel-library/operations-on-workbooks/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/excel/excel-library/operations-on-worksheets/angular.json b/samples/excel/excel-library/operations-on-worksheets/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/excel/excel-library/operations-on-worksheets/angular.json +++ b/samples/excel/excel-library/operations-on-worksheets/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 8d9277d36..7c87a36b1 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig-es5.app.json b/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig-es5.app.json +++ b/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.base.json b/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.base.json +++ b/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.worker.json b/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.worker.json +++ b/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/excel/excel-library/operations-on-worksheets/src/environments/environment.prod.ts b/samples/excel/excel-library/operations-on-worksheets/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/excel/excel-library/operations-on-worksheets/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/excel/excel-library/operations-on-worksheets/src/environments/environment.ts b/samples/excel/excel-library/operations-on-worksheets/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/excel/excel-library/operations-on-worksheets/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/excel/excel-library/operations-on-worksheets/src/polyfills.ts b/samples/excel/excel-library/operations-on-worksheets/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/excel/excel-library/operations-on-worksheets/src/polyfills.ts +++ b/samples/excel/excel-library/operations-on-worksheets/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/excel/excel-library/operations-on-worksheets/tsconfig.json b/samples/excel/excel-library/operations-on-worksheets/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/excel/excel-library/operations-on-worksheets/tsconfig.json +++ b/samples/excel/excel-library/operations-on-worksheets/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/excel/excel-library/overview/angular.json b/samples/excel/excel-library/overview/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/excel/excel-library/overview/angular.json +++ b/samples/excel/excel-library/overview/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 8d9277d36..7c87a36b1 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/excel/excel-library/overview/src/config/tsconfig-es5.app.json b/samples/excel/excel-library/overview/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/excel/excel-library/overview/src/config/tsconfig-es5.app.json +++ b/samples/excel/excel-library/overview/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/excel/excel-library/overview/src/config/tsconfig.base.json b/samples/excel/excel-library/overview/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/excel/excel-library/overview/src/config/tsconfig.base.json +++ b/samples/excel/excel-library/overview/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/excel/excel-library/overview/src/config/tsconfig.worker.json b/samples/excel/excel-library/overview/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/excel/excel-library/overview/src/config/tsconfig.worker.json +++ b/samples/excel/excel-library/overview/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/excel/excel-library/overview/src/polyfills.ts b/samples/excel/excel-library/overview/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/excel/excel-library/overview/src/polyfills.ts +++ b/samples/excel/excel-library/overview/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/excel/excel-library/overview/tsconfig.json b/samples/excel/excel-library/overview/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/excel/excel-library/overview/tsconfig.json +++ b/samples/excel/excel-library/overview/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/excel/excel-library/working-with-cells/angular.json b/samples/excel/excel-library/working-with-cells/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/excel/excel-library/working-with-cells/angular.json +++ b/samples/excel/excel-library/working-with-cells/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 8d9277d36..7c87a36b1 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/excel/excel-library/working-with-cells/src/config/tsconfig-es5.app.json b/samples/excel/excel-library/working-with-cells/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/excel/excel-library/working-with-cells/src/config/tsconfig-es5.app.json +++ b/samples/excel/excel-library/working-with-cells/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/excel/excel-library/working-with-cells/src/config/tsconfig.base.json b/samples/excel/excel-library/working-with-cells/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/excel/excel-library/working-with-cells/src/config/tsconfig.base.json +++ b/samples/excel/excel-library/working-with-cells/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/excel/excel-library/working-with-cells/src/config/tsconfig.worker.json b/samples/excel/excel-library/working-with-cells/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/excel/excel-library/working-with-cells/src/config/tsconfig.worker.json +++ b/samples/excel/excel-library/working-with-cells/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/excel/excel-library/working-with-cells/src/environments/environment.prod.ts b/samples/excel/excel-library/working-with-cells/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/excel/excel-library/working-with-cells/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/excel/excel-library/working-with-cells/src/environments/environment.ts b/samples/excel/excel-library/working-with-cells/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/excel/excel-library/working-with-cells/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/excel/excel-library/working-with-cells/src/polyfills.ts b/samples/excel/excel-library/working-with-cells/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/excel/excel-library/working-with-cells/src/polyfills.ts +++ b/samples/excel/excel-library/working-with-cells/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/excel/excel-library/working-with-cells/tsconfig.json b/samples/excel/excel-library/working-with-cells/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/excel/excel-library/working-with-cells/tsconfig.json +++ b/samples/excel/excel-library/working-with-cells/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/excel/excel-library/working-with-charts/angular.json b/samples/excel/excel-library/working-with-charts/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/excel/excel-library/working-with-charts/angular.json +++ b/samples/excel/excel-library/working-with-charts/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 1db375275..81e3ad89a 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -7,35 +7,35 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "16.0.7", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular": "17.0.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -43,6 +43,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/excel/excel-library/working-with-charts/src/config/tsconfig-es5.app.json b/samples/excel/excel-library/working-with-charts/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/excel/excel-library/working-with-charts/src/config/tsconfig-es5.app.json +++ b/samples/excel/excel-library/working-with-charts/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/excel/excel-library/working-with-charts/src/config/tsconfig.base.json b/samples/excel/excel-library/working-with-charts/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/excel/excel-library/working-with-charts/src/config/tsconfig.base.json +++ b/samples/excel/excel-library/working-with-charts/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/excel/excel-library/working-with-charts/src/config/tsconfig.worker.json b/samples/excel/excel-library/working-with-charts/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/excel/excel-library/working-with-charts/src/config/tsconfig.worker.json +++ b/samples/excel/excel-library/working-with-charts/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/excel/excel-library/working-with-charts/src/environments/environment.prod.ts b/samples/excel/excel-library/working-with-charts/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/excel/excel-library/working-with-charts/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/excel/excel-library/working-with-charts/src/environments/environment.ts b/samples/excel/excel-library/working-with-charts/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/excel/excel-library/working-with-charts/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/excel/excel-library/working-with-charts/src/polyfills.ts b/samples/excel/excel-library/working-with-charts/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/excel/excel-library/working-with-charts/src/polyfills.ts +++ b/samples/excel/excel-library/working-with-charts/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/excel/excel-library/working-with-charts/tsconfig.json b/samples/excel/excel-library/working-with-charts/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/excel/excel-library/working-with-charts/tsconfig.json +++ b/samples/excel/excel-library/working-with-charts/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/excel/excel-library/working-with-sparklines/angular.json b/samples/excel/excel-library/working-with-sparklines/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/excel/excel-library/working-with-sparklines/angular.json +++ b/samples/excel/excel-library/working-with-sparklines/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 1db375275..81e3ad89a 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -7,35 +7,35 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "16.0.7", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", + "igniteui-angular": "17.0.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -43,6 +43,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig-es5.app.json b/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig-es5.app.json +++ b/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.base.json b/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.base.json +++ b/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.worker.json b/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.worker.json +++ b/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/excel/excel-library/working-with-sparklines/src/environments/environment.prod.ts b/samples/excel/excel-library/working-with-sparklines/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/excel/excel-library/working-with-sparklines/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/excel/excel-library/working-with-sparklines/src/environments/environment.ts b/samples/excel/excel-library/working-with-sparklines/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/excel/excel-library/working-with-sparklines/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/excel/excel-library/working-with-sparklines/src/polyfills.ts b/samples/excel/excel-library/working-with-sparklines/src/polyfills.ts index 9f06a2d2c..d583cff9c 100644 --- a/samples/excel/excel-library/working-with-sparklines/src/polyfills.ts +++ b/samples/excel/excel-library/working-with-sparklines/src/polyfills.ts @@ -18,36 +18,36 @@ * BROWSER POLYFILLS */ -//// import "core-js/es7/object"; +// import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -////import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -////import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/excel/excel-library/working-with-sparklines/tsconfig.json b/samples/excel/excel-library/working-with-sparklines/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/excel/excel-library/working-with-sparklines/tsconfig.json +++ b/samples/excel/excel-library/working-with-sparklines/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/excel/excel-library/working-with-tables/angular.json b/samples/excel/excel-library/working-with-tables/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/excel/excel-library/working-with-tables/angular.json +++ b/samples/excel/excel-library/working-with-tables/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index aa78e1bfb..ca6efc231 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -7,35 +7,35 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", - "igniteui-angular-spreadsheet": "16.1.2-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", + "igniteui-angular-spreadsheet": "17.0.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -43,6 +43,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/excel/excel-library/working-with-tables/src/config/tsconfig-es5.app.json b/samples/excel/excel-library/working-with-tables/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/excel/excel-library/working-with-tables/src/config/tsconfig-es5.app.json +++ b/samples/excel/excel-library/working-with-tables/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/excel/excel-library/working-with-tables/src/config/tsconfig.base.json b/samples/excel/excel-library/working-with-tables/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/excel/excel-library/working-with-tables/src/config/tsconfig.base.json +++ b/samples/excel/excel-library/working-with-tables/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/excel/excel-library/working-with-tables/src/config/tsconfig.worker.json b/samples/excel/excel-library/working-with-tables/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/excel/excel-library/working-with-tables/src/config/tsconfig.worker.json +++ b/samples/excel/excel-library/working-with-tables/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/excel/excel-library/working-with-tables/src/environments/environment.prod.ts b/samples/excel/excel-library/working-with-tables/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/excel/excel-library/working-with-tables/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/excel/excel-library/working-with-tables/src/environments/environment.ts b/samples/excel/excel-library/working-with-tables/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/excel/excel-library/working-with-tables/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/excel/excel-library/working-with-tables/src/polyfills.ts b/samples/excel/excel-library/working-with-tables/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/excel/excel-library/working-with-tables/src/polyfills.ts +++ b/samples/excel/excel-library/working-with-tables/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/excel/excel-library/working-with-tables/tsconfig.json b/samples/excel/excel-library/working-with-tables/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/excel/excel-library/working-with-tables/tsconfig.json +++ b/samples/excel/excel-library/working-with-tables/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/excel/spreadsheet/activation/angular.json b/samples/excel/spreadsheet/activation/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/excel/spreadsheet/activation/angular.json +++ b/samples/excel/spreadsheet/activation/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index acf6dcb68..0428b2e8c 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", - "igniteui-angular-spreadsheet": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", + "igniteui-angular-spreadsheet": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/excel/spreadsheet/activation/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/activation/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/excel/spreadsheet/activation/src/config/tsconfig-es5.app.json +++ b/samples/excel/spreadsheet/activation/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/excel/spreadsheet/activation/src/config/tsconfig.base.json b/samples/excel/spreadsheet/activation/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/excel/spreadsheet/activation/src/config/tsconfig.base.json +++ b/samples/excel/spreadsheet/activation/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/excel/spreadsheet/activation/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/activation/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/excel/spreadsheet/activation/src/config/tsconfig.worker.json +++ b/samples/excel/spreadsheet/activation/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/excel/spreadsheet/activation/src/polyfills.ts b/samples/excel/spreadsheet/activation/src/polyfills.ts index 9e6e92bde..d583cff9c 100644 --- a/samples/excel/spreadsheet/activation/src/polyfills.ts +++ b/samples/excel/spreadsheet/activation/src/polyfills.ts @@ -18,29 +18,36 @@ * BROWSER POLYFILLS */ -//import 'core-js/es/array'; +// import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/excel/spreadsheet/activation/tsconfig.json b/samples/excel/spreadsheet/activation/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/excel/spreadsheet/activation/tsconfig.json +++ b/samples/excel/spreadsheet/activation/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/excel/spreadsheet/adapter-chart/angular.json b/samples/excel/spreadsheet/adapter-chart/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/excel/spreadsheet/adapter-chart/angular.json +++ b/samples/excel/spreadsheet/adapter-chart/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 144b55d52..9621f7b5f 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -7,36 +7,36 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", - "igniteui-angular-spreadsheet": "16.1.2-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", + "igniteui-angular-spreadsheet": "17.0.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig-es5.app.json +++ b/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.base.json b/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.base.json +++ b/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.worker.json +++ b/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/excel/spreadsheet/adapter-chart/src/polyfills.ts b/samples/excel/spreadsheet/adapter-chart/src/polyfills.ts index 4550ab5b2..d583cff9c 100644 --- a/samples/excel/spreadsheet/adapter-chart/src/polyfills.ts +++ b/samples/excel/spreadsheet/adapter-chart/src/polyfills.ts @@ -17,30 +17,37 @@ /*************************************************************************************************** * BROWSER POLYFILLS */ - -//import 'core-js/es/array'; + +// import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/excel/spreadsheet/adapter-chart/tsconfig.json b/samples/excel/spreadsheet/adapter-chart/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/excel/spreadsheet/adapter-chart/tsconfig.json +++ b/samples/excel/spreadsheet/adapter-chart/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/excel/spreadsheet/adapter-combo/angular.json b/samples/excel/spreadsheet/adapter-combo/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/excel/spreadsheet/adapter-combo/angular.json +++ b/samples/excel/spreadsheet/adapter-combo/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index 144b55d52..9621f7b5f 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -7,36 +7,36 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", - "igniteui-angular-spreadsheet": "16.1.2-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", + "igniteui-angular-spreadsheet": "17.0.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig-es5.app.json +++ b/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.base.json b/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.base.json +++ b/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.worker.json +++ b/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/excel/spreadsheet/adapter-combo/src/polyfills.ts b/samples/excel/spreadsheet/adapter-combo/src/polyfills.ts index 9e6e92bde..d583cff9c 100644 --- a/samples/excel/spreadsheet/adapter-combo/src/polyfills.ts +++ b/samples/excel/spreadsheet/adapter-combo/src/polyfills.ts @@ -18,29 +18,36 @@ * BROWSER POLYFILLS */ -//import 'core-js/es/array'; +// import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/excel/spreadsheet/adapter-combo/tsconfig.json b/samples/excel/spreadsheet/adapter-combo/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/excel/spreadsheet/adapter-combo/tsconfig.json +++ b/samples/excel/spreadsheet/adapter-combo/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/excel/spreadsheet/clipboard/angular.json b/samples/excel/spreadsheet/clipboard/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/excel/spreadsheet/clipboard/angular.json +++ b/samples/excel/spreadsheet/clipboard/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index acf6dcb68..0428b2e8c 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", - "igniteui-angular-spreadsheet": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", + "igniteui-angular-spreadsheet": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/excel/spreadsheet/clipboard/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/clipboard/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/excel/spreadsheet/clipboard/src/config/tsconfig-es5.app.json +++ b/samples/excel/spreadsheet/clipboard/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/excel/spreadsheet/clipboard/src/config/tsconfig.base.json b/samples/excel/spreadsheet/clipboard/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/excel/spreadsheet/clipboard/src/config/tsconfig.base.json +++ b/samples/excel/spreadsheet/clipboard/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/excel/spreadsheet/clipboard/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/clipboard/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/excel/spreadsheet/clipboard/src/config/tsconfig.worker.json +++ b/samples/excel/spreadsheet/clipboard/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/excel/spreadsheet/clipboard/src/polyfills.ts b/samples/excel/spreadsheet/clipboard/src/polyfills.ts index 9e6e92bde..d583cff9c 100644 --- a/samples/excel/spreadsheet/clipboard/src/polyfills.ts +++ b/samples/excel/spreadsheet/clipboard/src/polyfills.ts @@ -18,29 +18,36 @@ * BROWSER POLYFILLS */ -//import 'core-js/es/array'; +// import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/excel/spreadsheet/clipboard/tsconfig.json b/samples/excel/spreadsheet/clipboard/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/excel/spreadsheet/clipboard/tsconfig.json +++ b/samples/excel/spreadsheet/clipboard/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/excel/spreadsheet/commands/angular.json b/samples/excel/spreadsheet/commands/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/excel/spreadsheet/commands/angular.json +++ b/samples/excel/spreadsheet/commands/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index acf6dcb68..0428b2e8c 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", - "igniteui-angular-spreadsheet": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", + "igniteui-angular-spreadsheet": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/excel/spreadsheet/commands/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/commands/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/excel/spreadsheet/commands/src/config/tsconfig-es5.app.json +++ b/samples/excel/spreadsheet/commands/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/excel/spreadsheet/commands/src/config/tsconfig.base.json b/samples/excel/spreadsheet/commands/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/excel/spreadsheet/commands/src/config/tsconfig.base.json +++ b/samples/excel/spreadsheet/commands/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/excel/spreadsheet/commands/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/commands/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/excel/spreadsheet/commands/src/config/tsconfig.worker.json +++ b/samples/excel/spreadsheet/commands/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/excel/spreadsheet/commands/src/polyfills.ts b/samples/excel/spreadsheet/commands/src/polyfills.ts index 9e6e92bde..d583cff9c 100644 --- a/samples/excel/spreadsheet/commands/src/polyfills.ts +++ b/samples/excel/spreadsheet/commands/src/polyfills.ts @@ -18,29 +18,36 @@ * BROWSER POLYFILLS */ -//import 'core-js/es/array'; +// import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/excel/spreadsheet/commands/tsconfig.json b/samples/excel/spreadsheet/commands/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/excel/spreadsheet/commands/tsconfig.json +++ b/samples/excel/spreadsheet/commands/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/excel/spreadsheet/conditional-formatting/angular.json b/samples/excel/spreadsheet/conditional-formatting/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/excel/spreadsheet/conditional-formatting/angular.json +++ b/samples/excel/spreadsheet/conditional-formatting/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index acf6dcb68..0428b2e8c 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", - "igniteui-angular-spreadsheet": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", + "igniteui-angular-spreadsheet": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig-es5.app.json +++ b/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.base.json b/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.base.json +++ b/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.worker.json +++ b/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/excel/spreadsheet/conditional-formatting/src/polyfills.ts b/samples/excel/spreadsheet/conditional-formatting/src/polyfills.ts index 9e6e92bde..d583cff9c 100644 --- a/samples/excel/spreadsheet/conditional-formatting/src/polyfills.ts +++ b/samples/excel/spreadsheet/conditional-formatting/src/polyfills.ts @@ -18,29 +18,36 @@ * BROWSER POLYFILLS */ -//import 'core-js/es/array'; +// import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/excel/spreadsheet/conditional-formatting/tsconfig.json b/samples/excel/spreadsheet/conditional-formatting/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/excel/spreadsheet/conditional-formatting/tsconfig.json +++ b/samples/excel/spreadsheet/conditional-formatting/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/excel/spreadsheet/config-options/angular.json b/samples/excel/spreadsheet/config-options/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/excel/spreadsheet/config-options/angular.json +++ b/samples/excel/spreadsheet/config-options/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index acf6dcb68..0428b2e8c 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", - "igniteui-angular-spreadsheet": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", + "igniteui-angular-spreadsheet": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/excel/spreadsheet/config-options/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/config-options/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/excel/spreadsheet/config-options/src/config/tsconfig-es5.app.json +++ b/samples/excel/spreadsheet/config-options/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/excel/spreadsheet/config-options/src/config/tsconfig.base.json b/samples/excel/spreadsheet/config-options/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/excel/spreadsheet/config-options/src/config/tsconfig.base.json +++ b/samples/excel/spreadsheet/config-options/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/excel/spreadsheet/config-options/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/config-options/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/excel/spreadsheet/config-options/src/config/tsconfig.worker.json +++ b/samples/excel/spreadsheet/config-options/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/excel/spreadsheet/config-options/src/polyfills.ts b/samples/excel/spreadsheet/config-options/src/polyfills.ts index 9e6e92bde..d583cff9c 100644 --- a/samples/excel/spreadsheet/config-options/src/polyfills.ts +++ b/samples/excel/spreadsheet/config-options/src/polyfills.ts @@ -18,29 +18,36 @@ * BROWSER POLYFILLS */ -//import 'core-js/es/array'; +// import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/excel/spreadsheet/config-options/tsconfig.json b/samples/excel/spreadsheet/config-options/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/excel/spreadsheet/config-options/tsconfig.json +++ b/samples/excel/spreadsheet/config-options/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/excel/spreadsheet/data-validation/angular.json b/samples/excel/spreadsheet/data-validation/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/excel/spreadsheet/data-validation/angular.json +++ b/samples/excel/spreadsheet/data-validation/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index acf6dcb68..0428b2e8c 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", - "igniteui-angular-spreadsheet": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", + "igniteui-angular-spreadsheet": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/excel/spreadsheet/data-validation/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/data-validation/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/excel/spreadsheet/data-validation/src/config/tsconfig-es5.app.json +++ b/samples/excel/spreadsheet/data-validation/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/excel/spreadsheet/data-validation/src/config/tsconfig.base.json b/samples/excel/spreadsheet/data-validation/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/excel/spreadsheet/data-validation/src/config/tsconfig.base.json +++ b/samples/excel/spreadsheet/data-validation/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/excel/spreadsheet/data-validation/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/data-validation/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/excel/spreadsheet/data-validation/src/config/tsconfig.worker.json +++ b/samples/excel/spreadsheet/data-validation/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/excel/spreadsheet/data-validation/src/polyfills.ts b/samples/excel/spreadsheet/data-validation/src/polyfills.ts index 9e6e92bde..d583cff9c 100644 --- a/samples/excel/spreadsheet/data-validation/src/polyfills.ts +++ b/samples/excel/spreadsheet/data-validation/src/polyfills.ts @@ -18,29 +18,36 @@ * BROWSER POLYFILLS */ -//import 'core-js/es/array'; +// import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/excel/spreadsheet/data-validation/tsconfig.json b/samples/excel/spreadsheet/data-validation/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/excel/spreadsheet/data-validation/tsconfig.json +++ b/samples/excel/spreadsheet/data-validation/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/excel/spreadsheet/hyperlinks/angular.json b/samples/excel/spreadsheet/hyperlinks/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/excel/spreadsheet/hyperlinks/angular.json +++ b/samples/excel/spreadsheet/hyperlinks/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index acf6dcb68..0428b2e8c 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", - "igniteui-angular-spreadsheet": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", + "igniteui-angular-spreadsheet": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig-es5.app.json +++ b/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.base.json b/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.base.json +++ b/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.worker.json +++ b/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/excel/spreadsheet/hyperlinks/src/polyfills.ts b/samples/excel/spreadsheet/hyperlinks/src/polyfills.ts index 9e6e92bde..d583cff9c 100644 --- a/samples/excel/spreadsheet/hyperlinks/src/polyfills.ts +++ b/samples/excel/spreadsheet/hyperlinks/src/polyfills.ts @@ -18,29 +18,36 @@ * BROWSER POLYFILLS */ -//import 'core-js/es/array'; +// import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/excel/spreadsheet/hyperlinks/tsconfig.json b/samples/excel/spreadsheet/hyperlinks/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/excel/spreadsheet/hyperlinks/tsconfig.json +++ b/samples/excel/spreadsheet/hyperlinks/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/excel/spreadsheet/overview/angular.json b/samples/excel/spreadsheet/overview/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/excel/spreadsheet/overview/angular.json +++ b/samples/excel/spreadsheet/overview/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index acf6dcb68..0428b2e8c 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-excel": "16.1.2-beta.0", - "igniteui-angular-spreadsheet": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-excel": "17.0.0", + "igniteui-angular-spreadsheet": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/excel/spreadsheet/overview/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/overview/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/excel/spreadsheet/overview/src/config/tsconfig-es5.app.json +++ b/samples/excel/spreadsheet/overview/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/excel/spreadsheet/overview/src/config/tsconfig.base.json b/samples/excel/spreadsheet/overview/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/excel/spreadsheet/overview/src/config/tsconfig.base.json +++ b/samples/excel/spreadsheet/overview/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/excel/spreadsheet/overview/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/overview/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/excel/spreadsheet/overview/src/config/tsconfig.worker.json +++ b/samples/excel/spreadsheet/overview/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/excel/spreadsheet/overview/src/polyfills.ts b/samples/excel/spreadsheet/overview/src/polyfills.ts index 9e6e92bde..d583cff9c 100644 --- a/samples/excel/spreadsheet/overview/src/polyfills.ts +++ b/samples/excel/spreadsheet/overview/src/polyfills.ts @@ -18,29 +18,36 @@ * BROWSER POLYFILLS */ -//import 'core-js/es/array'; +// import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/excel/spreadsheet/overview/tsconfig.json b/samples/excel/spreadsheet/overview/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/excel/spreadsheet/overview/tsconfig.json +++ b/samples/excel/spreadsheet/overview/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/bullet-graph/animation/angular.json b/samples/gauges/bullet-graph/animation/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/bullet-graph/animation/angular.json +++ b/samples/gauges/bullet-graph/animation/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 1c255f2a6..6b15f41de 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "16.0.7", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/bullet-graph/animation/src/config/tsconfig-es5.app.json b/samples/gauges/bullet-graph/animation/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/bullet-graph/animation/src/config/tsconfig-es5.app.json +++ b/samples/gauges/bullet-graph/animation/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/bullet-graph/animation/src/config/tsconfig.base.json b/samples/gauges/bullet-graph/animation/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/bullet-graph/animation/src/config/tsconfig.base.json +++ b/samples/gauges/bullet-graph/animation/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/bullet-graph/animation/src/config/tsconfig.worker.json b/samples/gauges/bullet-graph/animation/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/bullet-graph/animation/src/config/tsconfig.worker.json +++ b/samples/gauges/bullet-graph/animation/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/bullet-graph/animation/src/polyfills.ts b/samples/gauges/bullet-graph/animation/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/bullet-graph/animation/src/polyfills.ts +++ b/samples/gauges/bullet-graph/animation/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/bullet-graph/animation/tsconfig.json b/samples/gauges/bullet-graph/animation/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/bullet-graph/animation/tsconfig.json +++ b/samples/gauges/bullet-graph/animation/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/bullet-graph/background/angular.json b/samples/gauges/bullet-graph/background/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/bullet-graph/background/angular.json +++ b/samples/gauges/bullet-graph/background/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/bullet-graph/background/src/config/tsconfig-es5.app.json b/samples/gauges/bullet-graph/background/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/bullet-graph/background/src/config/tsconfig-es5.app.json +++ b/samples/gauges/bullet-graph/background/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/bullet-graph/background/src/config/tsconfig.base.json b/samples/gauges/bullet-graph/background/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/bullet-graph/background/src/config/tsconfig.base.json +++ b/samples/gauges/bullet-graph/background/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/bullet-graph/background/src/config/tsconfig.worker.json b/samples/gauges/bullet-graph/background/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/bullet-graph/background/src/config/tsconfig.worker.json +++ b/samples/gauges/bullet-graph/background/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/bullet-graph/background/src/polyfills.ts b/samples/gauges/bullet-graph/background/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/bullet-graph/background/src/polyfills.ts +++ b/samples/gauges/bullet-graph/background/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/bullet-graph/background/tsconfig.json b/samples/gauges/bullet-graph/background/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/bullet-graph/background/tsconfig.json +++ b/samples/gauges/bullet-graph/background/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/bullet-graph/labels/angular.json b/samples/gauges/bullet-graph/labels/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/bullet-graph/labels/angular.json +++ b/samples/gauges/bullet-graph/labels/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/bullet-graph/labels/src/config/tsconfig-es5.app.json b/samples/gauges/bullet-graph/labels/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/bullet-graph/labels/src/config/tsconfig-es5.app.json +++ b/samples/gauges/bullet-graph/labels/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/bullet-graph/labels/src/config/tsconfig.base.json b/samples/gauges/bullet-graph/labels/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/bullet-graph/labels/src/config/tsconfig.base.json +++ b/samples/gauges/bullet-graph/labels/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/bullet-graph/labels/src/config/tsconfig.worker.json b/samples/gauges/bullet-graph/labels/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/bullet-graph/labels/src/config/tsconfig.worker.json +++ b/samples/gauges/bullet-graph/labels/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/bullet-graph/labels/src/polyfills.ts b/samples/gauges/bullet-graph/labels/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/bullet-graph/labels/src/polyfills.ts +++ b/samples/gauges/bullet-graph/labels/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/bullet-graph/labels/tsconfig.json b/samples/gauges/bullet-graph/labels/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/bullet-graph/labels/tsconfig.json +++ b/samples/gauges/bullet-graph/labels/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/bullet-graph/measures/angular.json b/samples/gauges/bullet-graph/measures/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/bullet-graph/measures/angular.json +++ b/samples/gauges/bullet-graph/measures/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/bullet-graph/measures/src/config/tsconfig-es5.app.json b/samples/gauges/bullet-graph/measures/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/bullet-graph/measures/src/config/tsconfig-es5.app.json +++ b/samples/gauges/bullet-graph/measures/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/bullet-graph/measures/src/config/tsconfig.base.json b/samples/gauges/bullet-graph/measures/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/bullet-graph/measures/src/config/tsconfig.base.json +++ b/samples/gauges/bullet-graph/measures/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/bullet-graph/measures/src/config/tsconfig.worker.json b/samples/gauges/bullet-graph/measures/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/bullet-graph/measures/src/config/tsconfig.worker.json +++ b/samples/gauges/bullet-graph/measures/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/bullet-graph/measures/src/polyfills.ts b/samples/gauges/bullet-graph/measures/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/bullet-graph/measures/src/polyfills.ts +++ b/samples/gauges/bullet-graph/measures/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/bullet-graph/measures/tsconfig.json b/samples/gauges/bullet-graph/measures/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/bullet-graph/measures/tsconfig.json +++ b/samples/gauges/bullet-graph/measures/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/bullet-graph/ranges/angular.json b/samples/gauges/bullet-graph/ranges/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/bullet-graph/ranges/angular.json +++ b/samples/gauges/bullet-graph/ranges/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/bullet-graph/ranges/src/config/tsconfig-es5.app.json b/samples/gauges/bullet-graph/ranges/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/bullet-graph/ranges/src/config/tsconfig-es5.app.json +++ b/samples/gauges/bullet-graph/ranges/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/bullet-graph/ranges/src/config/tsconfig.base.json b/samples/gauges/bullet-graph/ranges/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/bullet-graph/ranges/src/config/tsconfig.base.json +++ b/samples/gauges/bullet-graph/ranges/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/bullet-graph/ranges/src/config/tsconfig.worker.json b/samples/gauges/bullet-graph/ranges/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/bullet-graph/ranges/src/config/tsconfig.worker.json +++ b/samples/gauges/bullet-graph/ranges/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/bullet-graph/ranges/src/polyfills.ts b/samples/gauges/bullet-graph/ranges/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/bullet-graph/ranges/src/polyfills.ts +++ b/samples/gauges/bullet-graph/ranges/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/bullet-graph/ranges/tsconfig.json b/samples/gauges/bullet-graph/ranges/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/bullet-graph/ranges/tsconfig.json +++ b/samples/gauges/bullet-graph/ranges/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/bullet-graph/scale/angular.json b/samples/gauges/bullet-graph/scale/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/bullet-graph/scale/angular.json +++ b/samples/gauges/bullet-graph/scale/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/bullet-graph/scale/src/config/tsconfig-es5.app.json b/samples/gauges/bullet-graph/scale/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/bullet-graph/scale/src/config/tsconfig-es5.app.json +++ b/samples/gauges/bullet-graph/scale/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/bullet-graph/scale/src/config/tsconfig.base.json b/samples/gauges/bullet-graph/scale/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/bullet-graph/scale/src/config/tsconfig.base.json +++ b/samples/gauges/bullet-graph/scale/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/bullet-graph/scale/src/config/tsconfig.worker.json b/samples/gauges/bullet-graph/scale/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/bullet-graph/scale/src/config/tsconfig.worker.json +++ b/samples/gauges/bullet-graph/scale/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/bullet-graph/scale/src/polyfills.ts b/samples/gauges/bullet-graph/scale/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/bullet-graph/scale/src/polyfills.ts +++ b/samples/gauges/bullet-graph/scale/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/bullet-graph/scale/tsconfig.json b/samples/gauges/bullet-graph/scale/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/bullet-graph/scale/tsconfig.json +++ b/samples/gauges/bullet-graph/scale/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/bullet-graph/tickmarks/angular.json b/samples/gauges/bullet-graph/tickmarks/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/bullet-graph/tickmarks/angular.json +++ b/samples/gauges/bullet-graph/tickmarks/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig-es5.app.json b/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig-es5.app.json +++ b/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.base.json b/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.base.json +++ b/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.worker.json b/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.worker.json +++ b/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/bullet-graph/tickmarks/src/polyfills.ts b/samples/gauges/bullet-graph/tickmarks/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/bullet-graph/tickmarks/src/polyfills.ts +++ b/samples/gauges/bullet-graph/tickmarks/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/bullet-graph/tickmarks/tsconfig.json b/samples/gauges/bullet-graph/tickmarks/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/bullet-graph/tickmarks/tsconfig.json +++ b/samples/gauges/bullet-graph/tickmarks/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/linear-gauge/animation/angular.json b/samples/gauges/linear-gauge/animation/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/linear-gauge/animation/angular.json +++ b/samples/gauges/linear-gauge/animation/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 1c255f2a6..6b15f41de 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "16.0.7", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/linear-gauge/animation/src/config/tsconfig-es5.app.json b/samples/gauges/linear-gauge/animation/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/linear-gauge/animation/src/config/tsconfig-es5.app.json +++ b/samples/gauges/linear-gauge/animation/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/linear-gauge/animation/src/config/tsconfig.base.json b/samples/gauges/linear-gauge/animation/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/linear-gauge/animation/src/config/tsconfig.base.json +++ b/samples/gauges/linear-gauge/animation/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/linear-gauge/animation/src/config/tsconfig.worker.json b/samples/gauges/linear-gauge/animation/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/linear-gauge/animation/src/config/tsconfig.worker.json +++ b/samples/gauges/linear-gauge/animation/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/linear-gauge/animation/src/polyfills.ts b/samples/gauges/linear-gauge/animation/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/linear-gauge/animation/src/polyfills.ts +++ b/samples/gauges/linear-gauge/animation/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/linear-gauge/animation/tsconfig.json b/samples/gauges/linear-gauge/animation/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/linear-gauge/animation/tsconfig.json +++ b/samples/gauges/linear-gauge/animation/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/linear-gauge/backing/angular.json b/samples/gauges/linear-gauge/backing/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/linear-gauge/backing/angular.json +++ b/samples/gauges/linear-gauge/backing/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/linear-gauge/backing/src/config/tsconfig-es5.app.json b/samples/gauges/linear-gauge/backing/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/linear-gauge/backing/src/config/tsconfig-es5.app.json +++ b/samples/gauges/linear-gauge/backing/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/linear-gauge/backing/src/config/tsconfig.base.json b/samples/gauges/linear-gauge/backing/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/linear-gauge/backing/src/config/tsconfig.base.json +++ b/samples/gauges/linear-gauge/backing/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/linear-gauge/backing/src/config/tsconfig.worker.json b/samples/gauges/linear-gauge/backing/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/linear-gauge/backing/src/config/tsconfig.worker.json +++ b/samples/gauges/linear-gauge/backing/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/linear-gauge/backing/src/polyfills.ts b/samples/gauges/linear-gauge/backing/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/linear-gauge/backing/src/polyfills.ts +++ b/samples/gauges/linear-gauge/backing/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/linear-gauge/backing/tsconfig.json b/samples/gauges/linear-gauge/backing/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/linear-gauge/backing/tsconfig.json +++ b/samples/gauges/linear-gauge/backing/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/linear-gauge/labels/angular.json b/samples/gauges/linear-gauge/labels/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/linear-gauge/labels/angular.json +++ b/samples/gauges/linear-gauge/labels/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/linear-gauge/labels/src/config/tsconfig-es5.app.json b/samples/gauges/linear-gauge/labels/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/linear-gauge/labels/src/config/tsconfig-es5.app.json +++ b/samples/gauges/linear-gauge/labels/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/linear-gauge/labels/src/config/tsconfig.base.json b/samples/gauges/linear-gauge/labels/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/linear-gauge/labels/src/config/tsconfig.base.json +++ b/samples/gauges/linear-gauge/labels/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/linear-gauge/labels/src/config/tsconfig.worker.json b/samples/gauges/linear-gauge/labels/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/linear-gauge/labels/src/config/tsconfig.worker.json +++ b/samples/gauges/linear-gauge/labels/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/linear-gauge/labels/src/polyfills.ts b/samples/gauges/linear-gauge/labels/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/linear-gauge/labels/src/polyfills.ts +++ b/samples/gauges/linear-gauge/labels/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/linear-gauge/labels/tsconfig.json b/samples/gauges/linear-gauge/labels/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/linear-gauge/labels/tsconfig.json +++ b/samples/gauges/linear-gauge/labels/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/linear-gauge/needle/angular.json b/samples/gauges/linear-gauge/needle/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/linear-gauge/needle/angular.json +++ b/samples/gauges/linear-gauge/needle/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/linear-gauge/needle/src/config/tsconfig-es5.app.json b/samples/gauges/linear-gauge/needle/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/linear-gauge/needle/src/config/tsconfig-es5.app.json +++ b/samples/gauges/linear-gauge/needle/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/linear-gauge/needle/src/config/tsconfig.base.json b/samples/gauges/linear-gauge/needle/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/linear-gauge/needle/src/config/tsconfig.base.json +++ b/samples/gauges/linear-gauge/needle/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/linear-gauge/needle/src/config/tsconfig.worker.json b/samples/gauges/linear-gauge/needle/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/linear-gauge/needle/src/config/tsconfig.worker.json +++ b/samples/gauges/linear-gauge/needle/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/linear-gauge/needle/src/polyfills.ts b/samples/gauges/linear-gauge/needle/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/linear-gauge/needle/src/polyfills.ts +++ b/samples/gauges/linear-gauge/needle/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/linear-gauge/needle/tsconfig.json b/samples/gauges/linear-gauge/needle/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/linear-gauge/needle/tsconfig.json +++ b/samples/gauges/linear-gauge/needle/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/linear-gauge/ranges/angular.json b/samples/gauges/linear-gauge/ranges/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/linear-gauge/ranges/angular.json +++ b/samples/gauges/linear-gauge/ranges/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/linear-gauge/ranges/src/config/tsconfig-es5.app.json b/samples/gauges/linear-gauge/ranges/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/linear-gauge/ranges/src/config/tsconfig-es5.app.json +++ b/samples/gauges/linear-gauge/ranges/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/linear-gauge/ranges/src/config/tsconfig.base.json b/samples/gauges/linear-gauge/ranges/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/linear-gauge/ranges/src/config/tsconfig.base.json +++ b/samples/gauges/linear-gauge/ranges/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/linear-gauge/ranges/src/config/tsconfig.worker.json b/samples/gauges/linear-gauge/ranges/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/linear-gauge/ranges/src/config/tsconfig.worker.json +++ b/samples/gauges/linear-gauge/ranges/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/linear-gauge/ranges/src/polyfills.ts b/samples/gauges/linear-gauge/ranges/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/linear-gauge/ranges/src/polyfills.ts +++ b/samples/gauges/linear-gauge/ranges/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/linear-gauge/ranges/tsconfig.json b/samples/gauges/linear-gauge/ranges/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/linear-gauge/ranges/tsconfig.json +++ b/samples/gauges/linear-gauge/ranges/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/linear-gauge/scale/angular.json b/samples/gauges/linear-gauge/scale/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/linear-gauge/scale/angular.json +++ b/samples/gauges/linear-gauge/scale/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/linear-gauge/scale/src/config/tsconfig-es5.app.json b/samples/gauges/linear-gauge/scale/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/linear-gauge/scale/src/config/tsconfig-es5.app.json +++ b/samples/gauges/linear-gauge/scale/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/linear-gauge/scale/src/config/tsconfig.base.json b/samples/gauges/linear-gauge/scale/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/linear-gauge/scale/src/config/tsconfig.base.json +++ b/samples/gauges/linear-gauge/scale/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/linear-gauge/scale/src/config/tsconfig.worker.json b/samples/gauges/linear-gauge/scale/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/linear-gauge/scale/src/config/tsconfig.worker.json +++ b/samples/gauges/linear-gauge/scale/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/linear-gauge/scale/src/polyfills.ts b/samples/gauges/linear-gauge/scale/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/linear-gauge/scale/src/polyfills.ts +++ b/samples/gauges/linear-gauge/scale/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/linear-gauge/scale/tsconfig.json b/samples/gauges/linear-gauge/scale/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/linear-gauge/scale/tsconfig.json +++ b/samples/gauges/linear-gauge/scale/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/linear-gauge/tickmarks/angular.json b/samples/gauges/linear-gauge/tickmarks/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/linear-gauge/tickmarks/angular.json +++ b/samples/gauges/linear-gauge/tickmarks/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig-es5.app.json b/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig-es5.app.json +++ b/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.base.json b/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.base.json +++ b/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.worker.json b/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.worker.json +++ b/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/linear-gauge/tickmarks/src/polyfills.ts b/samples/gauges/linear-gauge/tickmarks/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/linear-gauge/tickmarks/src/polyfills.ts +++ b/samples/gauges/linear-gauge/tickmarks/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/linear-gauge/tickmarks/tsconfig.json b/samples/gauges/linear-gauge/tickmarks/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/linear-gauge/tickmarks/tsconfig.json +++ b/samples/gauges/linear-gauge/tickmarks/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/radial-gauge/animation/angular.json b/samples/gauges/radial-gauge/animation/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/radial-gauge/animation/angular.json +++ b/samples/gauges/radial-gauge/animation/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 1c255f2a6..6b15f41de 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "16.0.7", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/radial-gauge/animation/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/animation/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/radial-gauge/animation/src/config/tsconfig-es5.app.json +++ b/samples/gauges/radial-gauge/animation/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/radial-gauge/animation/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/animation/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/radial-gauge/animation/src/config/tsconfig.base.json +++ b/samples/gauges/radial-gauge/animation/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/radial-gauge/animation/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/animation/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/radial-gauge/animation/src/config/tsconfig.worker.json +++ b/samples/gauges/radial-gauge/animation/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/radial-gauge/animation/src/polyfills.ts b/samples/gauges/radial-gauge/animation/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/radial-gauge/animation/src/polyfills.ts +++ b/samples/gauges/radial-gauge/animation/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/radial-gauge/animation/tsconfig.json b/samples/gauges/radial-gauge/animation/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/radial-gauge/animation/tsconfig.json +++ b/samples/gauges/radial-gauge/animation/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/radial-gauge/backing/angular.json b/samples/gauges/radial-gauge/backing/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/radial-gauge/backing/angular.json +++ b/samples/gauges/radial-gauge/backing/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/radial-gauge/backing/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/backing/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/radial-gauge/backing/src/config/tsconfig-es5.app.json +++ b/samples/gauges/radial-gauge/backing/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/radial-gauge/backing/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/backing/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/radial-gauge/backing/src/config/tsconfig.base.json +++ b/samples/gauges/radial-gauge/backing/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/radial-gauge/backing/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/backing/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/radial-gauge/backing/src/config/tsconfig.worker.json +++ b/samples/gauges/radial-gauge/backing/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/radial-gauge/backing/src/polyfills.ts b/samples/gauges/radial-gauge/backing/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/radial-gauge/backing/src/polyfills.ts +++ b/samples/gauges/radial-gauge/backing/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/radial-gauge/backing/tsconfig.json b/samples/gauges/radial-gauge/backing/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/radial-gauge/backing/tsconfig.json +++ b/samples/gauges/radial-gauge/backing/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/radial-gauge/labels/angular.json b/samples/gauges/radial-gauge/labels/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/radial-gauge/labels/angular.json +++ b/samples/gauges/radial-gauge/labels/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/radial-gauge/labels/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/labels/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/radial-gauge/labels/src/config/tsconfig-es5.app.json +++ b/samples/gauges/radial-gauge/labels/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/radial-gauge/labels/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/labels/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/radial-gauge/labels/src/config/tsconfig.base.json +++ b/samples/gauges/radial-gauge/labels/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/radial-gauge/labels/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/labels/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/radial-gauge/labels/src/config/tsconfig.worker.json +++ b/samples/gauges/radial-gauge/labels/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/radial-gauge/labels/src/polyfills.ts b/samples/gauges/radial-gauge/labels/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/radial-gauge/labels/src/polyfills.ts +++ b/samples/gauges/radial-gauge/labels/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/radial-gauge/labels/tsconfig.json b/samples/gauges/radial-gauge/labels/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/radial-gauge/labels/tsconfig.json +++ b/samples/gauges/radial-gauge/labels/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/radial-gauge/needle/angular.json b/samples/gauges/radial-gauge/needle/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/radial-gauge/needle/angular.json +++ b/samples/gauges/radial-gauge/needle/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/radial-gauge/needle/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/needle/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/radial-gauge/needle/src/config/tsconfig-es5.app.json +++ b/samples/gauges/radial-gauge/needle/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/radial-gauge/needle/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/needle/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/radial-gauge/needle/src/config/tsconfig.base.json +++ b/samples/gauges/radial-gauge/needle/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/radial-gauge/needle/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/needle/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/radial-gauge/needle/src/config/tsconfig.worker.json +++ b/samples/gauges/radial-gauge/needle/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/radial-gauge/needle/src/polyfills.ts b/samples/gauges/radial-gauge/needle/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/radial-gauge/needle/src/polyfills.ts +++ b/samples/gauges/radial-gauge/needle/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/radial-gauge/needle/tsconfig.json b/samples/gauges/radial-gauge/needle/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/radial-gauge/needle/tsconfig.json +++ b/samples/gauges/radial-gauge/needle/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/radial-gauge/ranges/angular.json b/samples/gauges/radial-gauge/ranges/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/radial-gauge/ranges/angular.json +++ b/samples/gauges/radial-gauge/ranges/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/radial-gauge/ranges/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/ranges/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/radial-gauge/ranges/src/config/tsconfig-es5.app.json +++ b/samples/gauges/radial-gauge/ranges/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/radial-gauge/ranges/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/ranges/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/radial-gauge/ranges/src/config/tsconfig.base.json +++ b/samples/gauges/radial-gauge/ranges/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/radial-gauge/ranges/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/ranges/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/radial-gauge/ranges/src/config/tsconfig.worker.json +++ b/samples/gauges/radial-gauge/ranges/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/radial-gauge/ranges/src/polyfills.ts b/samples/gauges/radial-gauge/ranges/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/radial-gauge/ranges/src/polyfills.ts +++ b/samples/gauges/radial-gauge/ranges/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/radial-gauge/ranges/tsconfig.json b/samples/gauges/radial-gauge/ranges/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/radial-gauge/ranges/tsconfig.json +++ b/samples/gauges/radial-gauge/ranges/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/radial-gauge/scale/angular.json b/samples/gauges/radial-gauge/scale/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/radial-gauge/scale/angular.json +++ b/samples/gauges/radial-gauge/scale/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/radial-gauge/scale/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/scale/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/radial-gauge/scale/src/config/tsconfig-es5.app.json +++ b/samples/gauges/radial-gauge/scale/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/radial-gauge/scale/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/scale/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/radial-gauge/scale/src/config/tsconfig.base.json +++ b/samples/gauges/radial-gauge/scale/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/radial-gauge/scale/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/scale/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/radial-gauge/scale/src/config/tsconfig.worker.json +++ b/samples/gauges/radial-gauge/scale/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/radial-gauge/scale/src/polyfills.ts b/samples/gauges/radial-gauge/scale/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/radial-gauge/scale/src/polyfills.ts +++ b/samples/gauges/radial-gauge/scale/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/radial-gauge/scale/tsconfig.json b/samples/gauges/radial-gauge/scale/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/radial-gauge/scale/tsconfig.json +++ b/samples/gauges/radial-gauge/scale/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/gauges/radial-gauge/tickmarks/angular.json b/samples/gauges/radial-gauge/tickmarks/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/gauges/radial-gauge/tickmarks/angular.json +++ b/samples/gauges/radial-gauge/tickmarks/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 8a825010a..54e877958 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-gauges": "16.1.2-beta.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-gauges": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig-es5.app.json +++ b/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.base.json +++ b/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.worker.json +++ b/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/gauges/radial-gauge/tickmarks/src/polyfills.ts b/samples/gauges/radial-gauge/tickmarks/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/gauges/radial-gauge/tickmarks/src/polyfills.ts +++ b/samples/gauges/radial-gauge/tickmarks/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/gauges/radial-gauge/tickmarks/tsconfig.json b/samples/gauges/radial-gauge/tickmarks/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/gauges/radial-gauge/tickmarks/tsconfig.json +++ b/samples/gauges/radial-gauge/tickmarks/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/binding-data-csv/angular.json b/samples/maps/geo-map/binding-data-csv/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/binding-data-csv/angular.json +++ b/samples/maps/geo-map/binding-data-csv/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/binding-data-csv/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/binding-data-csv/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/binding-data-csv/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/binding-data-csv/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.base.json b/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.worker.json b/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/binding-data-csv/src/polyfills.ts b/samples/maps/geo-map/binding-data-csv/src/polyfills.ts index 526a24206..d583cff9c 100644 --- a/samples/maps/geo-map/binding-data-csv/src/polyfills.ts +++ b/samples/maps/geo-map/binding-data-csv/src/polyfills.ts @@ -18,36 +18,36 @@ * BROWSER POLYFILLS */ -// // import "core-js/es7/object"; +// import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// //import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// //import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/binding-data-csv/tsconfig.json b/samples/maps/geo-map/binding-data-csv/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/binding-data-csv/tsconfig.json +++ b/samples/maps/geo-map/binding-data-csv/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/binding-data-json-points/angular.json b/samples/maps/geo-map/binding-data-json-points/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/binding-data-json-points/angular.json +++ b/samples/maps/geo-map/binding-data-json-points/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.base.json b/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.worker.json b/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/binding-data-json-points/src/polyfills.ts b/samples/maps/geo-map/binding-data-json-points/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/binding-data-json-points/src/polyfills.ts +++ b/samples/maps/geo-map/binding-data-json-points/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/binding-data-json-points/tsconfig.json b/samples/maps/geo-map/binding-data-json-points/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/binding-data-json-points/tsconfig.json +++ b/samples/maps/geo-map/binding-data-json-points/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/binding-data-model/angular.json b/samples/maps/geo-map/binding-data-model/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/binding-data-model/angular.json +++ b/samples/maps/geo-map/binding-data-model/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/binding-data-model/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/binding-data-model/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/binding-data-model/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/binding-data-model/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/binding-data-model/src/config/tsconfig.base.json b/samples/maps/geo-map/binding-data-model/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/binding-data-model/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/binding-data-model/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/binding-data-model/src/config/tsconfig.worker.json b/samples/maps/geo-map/binding-data-model/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/binding-data-model/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/binding-data-model/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/binding-data-model/src/polyfills.ts b/samples/maps/geo-map/binding-data-model/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/binding-data-model/src/polyfills.ts +++ b/samples/maps/geo-map/binding-data-model/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/binding-data-model/tsconfig.json b/samples/maps/geo-map/binding-data-model/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/binding-data-model/tsconfig.json +++ b/samples/maps/geo-map/binding-data-model/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/binding-multiple-shapes/angular.json b/samples/maps/geo-map/binding-multiple-shapes/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/angular.json +++ b/samples/maps/geo-map/binding-multiple-shapes/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.base.json b/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.worker.json b/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/binding-multiple-shapes/src/polyfills.ts b/samples/maps/geo-map/binding-multiple-shapes/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/src/polyfills.ts +++ b/samples/maps/geo-map/binding-multiple-shapes/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/binding-multiple-shapes/tsconfig.json b/samples/maps/geo-map/binding-multiple-shapes/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/tsconfig.json +++ b/samples/maps/geo-map/binding-multiple-shapes/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/binding-multiple-sources/angular.json b/samples/maps/geo-map/binding-multiple-sources/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/binding-multiple-sources/angular.json +++ b/samples/maps/geo-map/binding-multiple-sources/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.base.json b/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.worker.json b/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/binding-multiple-sources/src/polyfills.ts b/samples/maps/geo-map/binding-multiple-sources/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/binding-multiple-sources/src/polyfills.ts +++ b/samples/maps/geo-map/binding-multiple-sources/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/binding-multiple-sources/tsconfig.json b/samples/maps/geo-map/binding-multiple-sources/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/binding-multiple-sources/tsconfig.json +++ b/samples/maps/geo-map/binding-multiple-sources/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/binding-shp-points/angular.json b/samples/maps/geo-map/binding-shp-points/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/binding-shp-points/angular.json +++ b/samples/maps/geo-map/binding-shp-points/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/binding-shp-points/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/binding-shp-points/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/binding-shp-points/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/binding-shp-points/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.base.json b/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.worker.json b/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/binding-shp-points/src/polyfills.ts b/samples/maps/geo-map/binding-shp-points/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/binding-shp-points/src/polyfills.ts +++ b/samples/maps/geo-map/binding-shp-points/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/binding-shp-points/tsconfig.json b/samples/maps/geo-map/binding-shp-points/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/binding-shp-points/tsconfig.json +++ b/samples/maps/geo-map/binding-shp-points/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/binding-shp-polygons/angular.json b/samples/maps/geo-map/binding-shp-polygons/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/binding-shp-polygons/angular.json +++ b/samples/maps/geo-map/binding-shp-polygons/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.base.json b/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.worker.json b/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/binding-shp-polygons/src/polyfills.ts b/samples/maps/geo-map/binding-shp-polygons/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/binding-shp-polygons/src/polyfills.ts +++ b/samples/maps/geo-map/binding-shp-polygons/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/binding-shp-polygons/tsconfig.json b/samples/maps/geo-map/binding-shp-polygons/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/binding-shp-polygons/tsconfig.json +++ b/samples/maps/geo-map/binding-shp-polygons/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/binding-shp-polylines/angular.json b/samples/maps/geo-map/binding-shp-polylines/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/binding-shp-polylines/angular.json +++ b/samples/maps/geo-map/binding-shp-polylines/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.base.json b/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.worker.json b/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/binding-shp-polylines/src/polyfills.ts b/samples/maps/geo-map/binding-shp-polylines/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/binding-shp-polylines/src/polyfills.ts +++ b/samples/maps/geo-map/binding-shp-polylines/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/binding-shp-polylines/tsconfig.json b/samples/maps/geo-map/binding-shp-polylines/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/binding-shp-polylines/tsconfig.json +++ b/samples/maps/geo-map/binding-shp-polylines/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/custom-tooltips/angular.json b/samples/maps/geo-map/custom-tooltips/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/custom-tooltips/angular.json +++ b/samples/maps/geo-map/custom-tooltips/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/custom-tooltips/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/custom-tooltips/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/custom-tooltips/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/custom-tooltips/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.base.json b/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.worker.json b/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/custom-tooltips/src/polyfills.ts b/samples/maps/geo-map/custom-tooltips/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/custom-tooltips/src/polyfills.ts +++ b/samples/maps/geo-map/custom-tooltips/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/custom-tooltips/tsconfig.json b/samples/maps/geo-map/custom-tooltips/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/custom-tooltips/tsconfig.json +++ b/samples/maps/geo-map/custom-tooltips/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/display-bing-imagery/angular.json b/samples/maps/geo-map/display-bing-imagery/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/display-bing-imagery/angular.json +++ b/samples/maps/geo-map/display-bing-imagery/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.base.json b/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.worker.json b/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/display-bing-imagery/src/polyfills.ts b/samples/maps/geo-map/display-bing-imagery/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/display-bing-imagery/src/polyfills.ts +++ b/samples/maps/geo-map/display-bing-imagery/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/display-bing-imagery/tsconfig.json b/samples/maps/geo-map/display-bing-imagery/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/display-bing-imagery/tsconfig.json +++ b/samples/maps/geo-map/display-bing-imagery/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/display-esri-imagery/angular.json b/samples/maps/geo-map/display-esri-imagery/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/display-esri-imagery/angular.json +++ b/samples/maps/geo-map/display-esri-imagery/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.base.json b/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.worker.json b/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/display-esri-imagery/src/polyfills.ts b/samples/maps/geo-map/display-esri-imagery/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/display-esri-imagery/src/polyfills.ts +++ b/samples/maps/geo-map/display-esri-imagery/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/display-esri-imagery/tsconfig.json b/samples/maps/geo-map/display-esri-imagery/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/display-esri-imagery/tsconfig.json +++ b/samples/maps/geo-map/display-esri-imagery/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/display-heat-imagery/angular.json b/samples/maps/geo-map/display-heat-imagery/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/display-heat-imagery/angular.json +++ b/samples/maps/geo-map/display-heat-imagery/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.base.json b/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.worker.json b/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/display-heat-imagery/src/polyfills.ts b/samples/maps/geo-map/display-heat-imagery/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/display-heat-imagery/src/polyfills.ts +++ b/samples/maps/geo-map/display-heat-imagery/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/display-heat-imagery/tsconfig.json b/samples/maps/geo-map/display-heat-imagery/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/display-heat-imagery/tsconfig.json +++ b/samples/maps/geo-map/display-heat-imagery/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/display-osm-imagery/angular.json b/samples/maps/geo-map/display-osm-imagery/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/display-osm-imagery/angular.json +++ b/samples/maps/geo-map/display-osm-imagery/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.base.json b/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.worker.json b/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/display-osm-imagery/src/polyfills.ts b/samples/maps/geo-map/display-osm-imagery/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/display-osm-imagery/src/polyfills.ts +++ b/samples/maps/geo-map/display-osm-imagery/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/display-osm-imagery/tsconfig.json b/samples/maps/geo-map/display-osm-imagery/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/display-osm-imagery/tsconfig.json +++ b/samples/maps/geo-map/display-osm-imagery/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/marker-layouts/angular.json b/samples/maps/geo-map/marker-layouts/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/marker-layouts/angular.json +++ b/samples/maps/geo-map/marker-layouts/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/marker-layouts/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/marker-layouts/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/marker-layouts/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/marker-layouts/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/marker-layouts/src/config/tsconfig.base.json b/samples/maps/geo-map/marker-layouts/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/marker-layouts/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/marker-layouts/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/marker-layouts/src/config/tsconfig.worker.json b/samples/maps/geo-map/marker-layouts/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/marker-layouts/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/marker-layouts/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/marker-layouts/src/polyfills.ts b/samples/maps/geo-map/marker-layouts/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/marker-layouts/src/polyfills.ts +++ b/samples/maps/geo-map/marker-layouts/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/marker-layouts/tsconfig.json b/samples/maps/geo-map/marker-layouts/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/marker-layouts/tsconfig.json +++ b/samples/maps/geo-map/marker-layouts/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/marker-template/angular.json b/samples/maps/geo-map/marker-template/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/marker-template/angular.json +++ b/samples/maps/geo-map/marker-template/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/marker-template/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/marker-template/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/marker-template/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/marker-template/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/marker-template/src/config/tsconfig.base.json b/samples/maps/geo-map/marker-template/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/marker-template/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/marker-template/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/marker-template/src/config/tsconfig.worker.json b/samples/maps/geo-map/marker-template/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/marker-template/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/marker-template/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/marker-template/src/polyfills.ts b/samples/maps/geo-map/marker-template/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/marker-template/src/polyfills.ts +++ b/samples/maps/geo-map/marker-template/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/marker-template/tsconfig.json b/samples/maps/geo-map/marker-template/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/marker-template/tsconfig.json +++ b/samples/maps/geo-map/marker-template/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/marker-type/angular.json b/samples/maps/geo-map/marker-type/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/marker-type/angular.json +++ b/samples/maps/geo-map/marker-type/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/marker-type/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/marker-type/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/marker-type/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/marker-type/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/marker-type/src/config/tsconfig.base.json b/samples/maps/geo-map/marker-type/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/marker-type/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/marker-type/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/marker-type/src/config/tsconfig.worker.json b/samples/maps/geo-map/marker-type/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/marker-type/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/marker-type/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/marker-type/src/polyfills.ts b/samples/maps/geo-map/marker-type/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/marker-type/src/polyfills.ts +++ b/samples/maps/geo-map/marker-type/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/marker-type/tsconfig.json b/samples/maps/geo-map/marker-type/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/marker-type/tsconfig.json +++ b/samples/maps/geo-map/marker-type/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/navigation/angular.json b/samples/maps/geo-map/navigation/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/navigation/angular.json +++ b/samples/maps/geo-map/navigation/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/navigation/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/navigation/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/navigation/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/navigation/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/navigation/src/config/tsconfig.base.json b/samples/maps/geo-map/navigation/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/navigation/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/navigation/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/navigation/src/config/tsconfig.worker.json b/samples/maps/geo-map/navigation/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/navigation/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/navigation/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/navigation/src/polyfills.ts b/samples/maps/geo-map/navigation/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/navigation/src/polyfills.ts +++ b/samples/maps/geo-map/navigation/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/navigation/tsconfig.json b/samples/maps/geo-map/navigation/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/navigation/tsconfig.json +++ b/samples/maps/geo-map/navigation/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/overview/angular.json b/samples/maps/geo-map/overview/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/overview/angular.json +++ b/samples/maps/geo-map/overview/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/overview/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/overview/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/overview/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/overview/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/overview/src/config/tsconfig.base.json b/samples/maps/geo-map/overview/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/overview/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/overview/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/overview/src/config/tsconfig.worker.json b/samples/maps/geo-map/overview/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/overview/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/overview/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/overview/src/polyfills.ts b/samples/maps/geo-map/overview/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/overview/src/polyfills.ts +++ b/samples/maps/geo-map/overview/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/overview/tsconfig.json b/samples/maps/geo-map/overview/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/overview/tsconfig.json +++ b/samples/maps/geo-map/overview/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/shape-styling/angular.json b/samples/maps/geo-map/shape-styling/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/shape-styling/angular.json +++ b/samples/maps/geo-map/shape-styling/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/shape-styling/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/shape-styling/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/shape-styling/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/shape-styling/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/shape-styling/src/config/tsconfig.base.json b/samples/maps/geo-map/shape-styling/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/shape-styling/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/shape-styling/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/shape-styling/src/config/tsconfig.worker.json b/samples/maps/geo-map/shape-styling/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/shape-styling/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/shape-styling/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/shape-styling/src/polyfills.ts b/samples/maps/geo-map/shape-styling/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/shape-styling/src/polyfills.ts +++ b/samples/maps/geo-map/shape-styling/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/shape-styling/tsconfig.json b/samples/maps/geo-map/shape-styling/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/shape-styling/tsconfig.json +++ b/samples/maps/geo-map/shape-styling/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/triangulating-data/angular.json b/samples/maps/geo-map/triangulating-data/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/triangulating-data/angular.json +++ b/samples/maps/geo-map/triangulating-data/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/triangulating-data/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/triangulating-data/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/triangulating-data/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/triangulating-data/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/triangulating-data/src/config/tsconfig.base.json b/samples/maps/geo-map/triangulating-data/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/triangulating-data/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/triangulating-data/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/triangulating-data/src/config/tsconfig.worker.json b/samples/maps/geo-map/triangulating-data/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/triangulating-data/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/triangulating-data/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/triangulating-data/src/polyfills.ts b/samples/maps/geo-map/triangulating-data/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/triangulating-data/src/polyfills.ts +++ b/samples/maps/geo-map/triangulating-data/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/triangulating-data/tsconfig.json b/samples/maps/geo-map/triangulating-data/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/triangulating-data/tsconfig.json +++ b/samples/maps/geo-map/triangulating-data/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/type-scatter-area-series/angular.json b/samples/maps/geo-map/type-scatter-area-series/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/type-scatter-area-series/angular.json +++ b/samples/maps/geo-map/type-scatter-area-series/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.base.json b/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.worker.json b/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/type-scatter-area-series/src/polyfills.ts b/samples/maps/geo-map/type-scatter-area-series/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/type-scatter-area-series/src/polyfills.ts +++ b/samples/maps/geo-map/type-scatter-area-series/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/type-scatter-area-series/tsconfig.json b/samples/maps/geo-map/type-scatter-area-series/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/type-scatter-area-series/tsconfig.json +++ b/samples/maps/geo-map/type-scatter-area-series/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/type-scatter-bubble-series/angular.json b/samples/maps/geo-map/type-scatter-bubble-series/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/angular.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.base.json b/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.worker.json b/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/polyfills.ts b/samples/maps/geo-map/type-scatter-bubble-series/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/src/polyfills.ts +++ b/samples/maps/geo-map/type-scatter-bubble-series/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/type-scatter-bubble-series/tsconfig.json b/samples/maps/geo-map/type-scatter-bubble-series/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/tsconfig.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/type-scatter-contour-series/angular.json b/samples/maps/geo-map/type-scatter-contour-series/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/angular.json +++ b/samples/maps/geo-map/type-scatter-contour-series/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.base.json b/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.worker.json b/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/type-scatter-contour-series/src/polyfills.ts b/samples/maps/geo-map/type-scatter-contour-series/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/src/polyfills.ts +++ b/samples/maps/geo-map/type-scatter-contour-series/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/type-scatter-contour-series/tsconfig.json b/samples/maps/geo-map/type-scatter-contour-series/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/tsconfig.json +++ b/samples/maps/geo-map/type-scatter-contour-series/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/type-scatter-density-series/angular.json b/samples/maps/geo-map/type-scatter-density-series/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/type-scatter-density-series/angular.json +++ b/samples/maps/geo-map/type-scatter-density-series/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.base.json b/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.worker.json b/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/type-scatter-density-series/src/polyfills.ts b/samples/maps/geo-map/type-scatter-density-series/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/type-scatter-density-series/src/polyfills.ts +++ b/samples/maps/geo-map/type-scatter-density-series/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/type-scatter-density-series/tsconfig.json b/samples/maps/geo-map/type-scatter-density-series/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/type-scatter-density-series/tsconfig.json +++ b/samples/maps/geo-map/type-scatter-density-series/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/type-scatter-symbol-series/angular.json b/samples/maps/geo-map/type-scatter-symbol-series/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/angular.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.base.json b/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.worker.json b/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/polyfills.ts b/samples/maps/geo-map/type-scatter-symbol-series/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/src/polyfills.ts +++ b/samples/maps/geo-map/type-scatter-symbol-series/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/type-scatter-symbol-series/tsconfig.json b/samples/maps/geo-map/type-scatter-symbol-series/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/tsconfig.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/type-shape-polygon-series/angular.json b/samples/maps/geo-map/type-shape-polygon-series/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/angular.json +++ b/samples/maps/geo-map/type-shape-polygon-series/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.base.json b/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.worker.json b/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/type-shape-polygon-series/src/polyfills.ts b/samples/maps/geo-map/type-shape-polygon-series/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/src/polyfills.ts +++ b/samples/maps/geo-map/type-shape-polygon-series/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/type-shape-polygon-series/tsconfig.json b/samples/maps/geo-map/type-shape-polygon-series/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/tsconfig.json +++ b/samples/maps/geo-map/type-shape-polygon-series/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/maps/geo-map/type-shape-polyline-series/angular.json b/samples/maps/geo-map/type-shape-polyline-series/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/angular.json +++ b/samples/maps/geo-map/type-shape-polyline-series/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 2a11e9d2e..385cfa557 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "16.0.1", - "@angular/common": "16.0.1", - "@angular/compiler": "16.0.1", - "@angular/core": "16.0.1", - "@angular/forms": "16.0.1", - "@angular/platform-browser": "16.0.1", - "@angular/platform-browser-dynamic": "16.0.1", + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", - "core-js": "2.6.2", + "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "16.1.2-beta.0", - "igniteui-angular-core": "16.1.2-beta.0", - "igniteui-angular-maps": "16.1.2-beta.0", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-maps": "17.0.0", "intl": "1.2.5", - "jszip": "3.7.1", + "jszip": "3.8.0", "rxjs": "6.6.7", "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "0.13.0" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "16.0.1", - "@angular/cli": "16.0.1", - "@angular/compiler-cli": "16.0.1", - "@angular/language-service": "16.0.1", + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.0.4" + "typescript": "5.2.2" } } diff --git a/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig-es5.app.json index fb36887a4..7e8983eb4 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig-es5.app.json +++ b/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig-es5.app.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.app.json", "compilerOptions": { - "target": "es2015" - } + "target": "ES2022" + } } diff --git a/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.base.json b/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.base.json index 94c2546d9..5574be5e5 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.base.json +++ b/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.base.json @@ -2,20 +2,23 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "es2020", + "module": "ES2022", "outDir": "../../dist/out-tsc", "sourceMap": false, "declaration": false, "moduleResolution": "node", "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, "downlevelIteration": true, // required for excel library - "target": "es2015", + "target": "ES2022", "typeRoots": [ "../../node_modules/@types" ], "lib": [ - "es2017", + "ES2022", "dom" - ] + ], + "useDefineForClassFields": false } } diff --git a/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.worker.json b/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.worker.json index bc0e98f11..4867b1275 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.worker.json +++ b/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.worker.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../out-tsc/worker", "lib": [ - "es2018", + "ES2022", "DOM" ], "types": [] diff --git a/samples/maps/geo-map/type-shape-polyline-series/src/polyfills.ts b/samples/maps/geo-map/type-shape-polyline-series/src/polyfills.ts index 4b0aeb31a..d583cff9c 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/src/polyfills.ts +++ b/samples/maps/geo-map/type-shape-polyline-series/src/polyfills.ts @@ -21,33 +21,33 @@ // import "core-js/es7/object"; /** IE10 and IE11 requires the following for NgClass support on SVG elements */ -import "classlist.js"; // run `npm install --save classlist.js`. +//import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -//import "core-js/es6/reflect"; +// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -//import "core-js/es7/reflect"; +// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation */ -import "web-animations-js"; // run `npm install --save web-animations-js`. +//import "web-animations-js"; // run `npm install --save web-animations-js`. /*************************************************************************************************** * Zone JS is required by Angular itself. */ import "hammerjs/hammer"; -import "zone.js/dist/zone"; // included with Angular CLI. +import "zone.js"; // included with Angular CLI. /*************************************************************************************************** * @angular/animations polyfill */ -if (!Element.prototype.matches) { - Element.prototype.matches = (Element.prototype as any).msMatchesSelector; -} +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } /*************************************************************************************************** * APPLICATION IMPORTS diff --git a/samples/maps/geo-map/type-shape-polyline-series/tsconfig.json b/samples/maps/geo-map/type-shape-polyline-series/tsconfig.json index 6a01bab30..1aaac63d3 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/tsconfig.json +++ b/samples/maps/geo-map/type-shape-polyline-series/tsconfig.json @@ -5,6 +5,7 @@ To learn more about this file see: https://angular.io/config/solution-tsconfig. */ { + "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/samples/templates/angular.json b/samples/templates/angular.json index 9ec584c70..11ffb8c9c 100644 --- a/samples/templates/angular.json +++ b/samples/templates/angular.json @@ -14,7 +14,10 @@ "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", - "polyfills": "src/polyfills.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], "tsConfig": "src/config/tsconfig.app.json", "assets": [ "src/assets" @@ -46,18 +49,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" }, "configurations": { "production": { - "browserTarget": "demo:build:production" + "buildTarget": "demo:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo:build" + "buildTarget": "demo:build" } }, "test": { @@ -94,7 +97,7 @@ "schematics": { "@schematics/angular:component": { "prefix": "app", - "styleext": "scss" + "style": "scss" }, "@schematics/angular:directive": { "prefix": "app" diff --git a/samples/templates/src/config/tsconfig-es5.app.json b/samples/templates/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/samples/templates/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/samples/templates/src/config/tsconfig.app.json b/samples/templates/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/templates/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/templates/src/config/tsconfig.base.json b/samples/templates/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/samples/templates/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/samples/templates/src/config/tsconfig.spec.json b/samples/templates/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/templates/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/templates/src/config/tsconfig.worker.json b/samples/templates/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/samples/templates/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/templates/src/index.html b/samples/templates/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/templates/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/category-chart/axis-locations/src/main.ts b/samples/templates/src/main.ts similarity index 100% rename from samples/charts/category-chart/axis-locations/src/main.ts rename to samples/templates/src/main.ts diff --git a/samples/templates/src/polyfills.ts b/samples/templates/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/templates/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/category-chart/axis-locations/src/styles.scss b/samples/templates/src/styles.scss similarity index 100% rename from samples/charts/category-chart/axis-locations/src/styles.scss rename to samples/templates/src/styles.scss diff --git a/samples/templates/src/typings.d.ts b/samples/templates/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/templates/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/templates/tsconfig copy.json b/samples/templates/tsconfig copy.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/templates/tsconfig copy.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/templates/tsconfig.json b/samples/templates/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/templates/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file From e6336a86e8c63df77bc509bedb3e1cad5b3626f9 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 11:13:45 -0500 Subject: [PATCH 017/154] Adding changes from build igniteui-xplat-examples-output+PRs_2023.11.20.1 (#87) Co-authored-by: tfsbuild --- .../axis-locations/sandbox.config.json | 5 + .../src/CountryRenewableElectricity.ts | 100 ++++++++++++++++++ .../axis-locations/src/app.component.html | 46 ++++++++ .../axis-locations/src/app.component.scss | 3 + .../axis-locations/src/app.component.ts | 54 ++++++++++ .../axis-locations/src/app.module.ts | 28 +++++ .../category-chart/axis-locations/src/main.ts | 15 +++ .../axis-locations/src/styles.scss | 9 ++ .../category-chart/axis-locations/tslint.json | 31 ++++++ .../bar-chart-styling/src/app.component.html | 2 +- 10 files changed, 292 insertions(+), 1 deletion(-) create mode 100644 samples/charts/category-chart/axis-locations/sandbox.config.json create mode 100644 samples/charts/category-chart/axis-locations/src/CountryRenewableElectricity.ts create mode 100644 samples/charts/category-chart/axis-locations/src/app.component.html create mode 100644 samples/charts/category-chart/axis-locations/src/app.component.scss create mode 100644 samples/charts/category-chart/axis-locations/src/app.component.ts create mode 100644 samples/charts/category-chart/axis-locations/src/app.module.ts create mode 100644 samples/charts/category-chart/axis-locations/src/main.ts create mode 100644 samples/charts/category-chart/axis-locations/src/styles.scss create mode 100644 samples/charts/category-chart/axis-locations/tslint.json diff --git a/samples/charts/category-chart/axis-locations/sandbox.config.json b/samples/charts/category-chart/axis-locations/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/samples/charts/category-chart/axis-locations/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-locations/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/axis-locations/src/CountryRenewableElectricity.ts new file mode 100644 index 000000000..4849f0cff --- /dev/null +++ b/samples/charts/category-chart/axis-locations/src/CountryRenewableElectricity.ts @@ -0,0 +1,100 @@ +export class CountryRenewableElectricityItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public europe: number; + public china: number; + public america: number; + +} +export class CountryRenewableElectricity extends Array { + public constructor() { + super(); + this.push(new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + })); + } +} diff --git a/samples/charts/category-chart/axis-locations/src/app.component.html b/samples/charts/category-chart/axis-locations/src/app.component.html new file mode 100644 index 000000000..a7afeedff --- /dev/null +++ b/samples/charts/category-chart/axis-locations/src/app.component.html @@ -0,0 +1,46 @@ +
+
+ + + + +
+
+ Renewable Electricity Generated +
+
+ + +
+
+ + +
+
diff --git a/samples/charts/category-chart/axis-locations/src/app.component.scss b/samples/charts/category-chart/axis-locations/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/category-chart/axis-locations/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/category-chart/axis-locations/src/app.component.ts b/samples/charts/category-chart/axis-locations/src/app.component.ts new file mode 100644 index 000000000..2afab5af6 --- /dev/null +++ b/samples/charts/category-chart/axis-locations/src/app.component.ts @@ -0,0 +1,54 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; +import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; +import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; +import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class AppComponent { + + public constructor(private _detector: ChangeDetectorRef) { + + } + + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("yAxisLabelLocation", { static: true } ) + private yAxisLabelLocation: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent + + private _countryRenewableElectricity: CountryRenewableElectricity = null; + public get countryRenewableElectricity(): CountryRenewableElectricity { + if (this._countryRenewableElectricity == null) + { + this._countryRenewableElectricity = new CountryRenewableElectricity(); + } + return this._countryRenewableElectricity; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + LegendDescriptionModule.register(context); + CategoryChartDescriptionModule.register(context); + } + return this._componentRenderer; + } + +} + diff --git a/samples/charts/category-chart/axis-locations/src/app.module.ts b/samples/charts/category-chart/axis-locations/src/app.module.ts new file mode 100644 index 000000000..b4febf5b8 --- /dev/null +++ b/samples/charts/category-chart/axis-locations/src/app.module.ts @@ -0,0 +1,28 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxLegendModule, + IgxCategoryChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/category-chart/axis-locations/src/main.ts b/samples/charts/category-chart/axis-locations/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/category-chart/axis-locations/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/category-chart/axis-locations/src/styles.scss b/samples/charts/category-chart/axis-locations/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/category-chart/axis-locations/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/category-chart/axis-locations/tslint.json b/samples/charts/category-chart/axis-locations/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/category-chart/axis-locations/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/bar-chart-styling/src/app.component.html b/samples/charts/data-chart/bar-chart-styling/src/app.component.html index 17bf7fbef..c5d646373 100644 --- a/samples/charts/data-chart/bar-chart-styling/src/app.component.html +++ b/samples/charts/data-chart/bar-chart-styling/src/app.component.html @@ -38,7 +38,7 @@ showDefaultTooltip="true" isTransitionInEnabled="true" isHighlightingEnabled="true" - brush="rgba(134, 6, 138, 0.647058823529412)" + brush="rgba(134, 6, 138, 0.6470588235294118)" outline="rgba(133, 6, 138, 1)" thickness="2" areaFillOpacity="0.5" From 21836ddd0c3e3e8de726def4cf1522d5c8361cc7 Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Tue, 21 Nov 2023 14:51:52 -0500 Subject: [PATCH 018/154] Azure DevOps build pipeline (#84) * Initial draft of the pipeline * Doing shenanigans with the repo checkout * Experiment * Update build-pipeline.yml for Azure Pipelines * Add npm commands * Update build-pipeline.yml for Azure Pipelines * Add comments + explicit checkout path in the pipeline * Add powershell for shenanigans on the package.json * Further work on the pipeline * Update build-pipeline.yml for Azure Pipelines * Add explicit full workspace cleaning * Clean resources only * Update build-pipeline.yml for Azure Pipelines * Explicit GitHub endpoint ID * Update build-pipeline.yml for Azure Pipelines * Update build-pipeline.yml for Azure Pipelines * Different approach to getting the last build-able commit * Update build-pipeline.yml for Azure Pipelines * Update build-pipeline.yml for Azure Pipelines * Update build-pipeline.yml for Azure Pipelines * Final steps of the pipeline * Fix artifact publishing * Adjust a few comments on the pipelines * Temp use latest in my branch * Update build-pipeline.yml for Azure Pipelines --------- Co-authored-by: Borislav Traykov Co-authored-by: Borislav Traykov --- azure-pipelines/build-pipeline.yml | 70 ++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 azure-pipelines/build-pipeline.yml diff --git a/azure-pipelines/build-pipeline.yml b/azure-pipelines/build-pipeline.yml new file mode 100644 index 000000000..6f8033884 --- /dev/null +++ b/azure-pipelines/build-pipeline.yml @@ -0,0 +1,70 @@ +trigger: + branches: + include: + - 'vnext' + - 'btraykov-azure-pipeline' + - 'master' + +# This pipeline is meant to run on changes pushed to the vnext branch only. +# If it runs on PRs, it will create PRs to the destination repos' vnext branches - we don't want that. +pr: none + +name: $(BuildDefinitionName)_$(Year:yyyy).$(Month).$(DayOfMonth)$(Rev:.r) + +pool: + name: BuildAgentOnPrem + +jobs: +- job: + displayName: Build + workspace: + clean: resources + steps: + - checkout: self + clean: true + persistCredentials: true + path: igniteui-angular-examples # this is explicitly required by the samples browser build process + + - task: NodeTool@0 + inputs: + versionSource: 'spec' + versionSpec: '16.x' + + - task: Npm@1 + displayName: 'npm install' + inputs: + command: 'install' + workingDir: '$(Build.SourcesDirectory)\browser' + + - task: PowerShell@2 + displayName: 'Apply very special configuration' + inputs: + targetType: 'inline' + script: | + Write-Output $pwd + + ((Get-Content -Path package.json -Raw) -replace 'build --configuration production','build --configuration production --base-href=/angular-demos-dv/') | Set-Content -Path package.json + workingDirectory: '$(Build.SourcesDirectory)\browser' + + - task: Npm@1 + displayName: 'npm run build' + inputs: + command: 'custom' + workingDir: '$(Build.SourcesDirectory)\browser' + customCommand: 'run build' + + - task: CopyFiles@2 + inputs: + SourceFolder: '$(Build.SourcesDirectory)\browser' + Contents: 'web.config' + TargetFolder: '$(Build.SourcesDirectory)\browser\dist' + OverWrite: true + + - task: PublishPipelineArtifact@1 + inputs: + targetPath: '$(Build.SourcesDirectory)\browser\dist' + artifact: 'dist' + publishLocation: 'pipeline' + + # TODO Once the project can adhere to the IG Angular schematic, + # use it or use npx to call igniteui-cli to apply the Angular schematic (trial -> licensed) \ No newline at end of file From cedbd1fadb094732513f14c72939fc8450ed1a4b Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 12:06:19 -0500 Subject: [PATCH 019/154] Adding changes from build igniteui-xplat-examples-output+PRs_2023.12.13.1 (#88) Co-authored-by: tfsbuild --- .../annotations-all/src/app.component.ts | 41 ++++--- .../annotations-callouts/src/app.component.ts | 27 +++-- .../src/app.component.ts | 33 ++--- .../annotations-custom/src/app.component.ts | 27 +++-- .../src/app.component.ts | 27 +++-- .../src/app.component.ts | 33 ++--- .../src/app.component.ts | 23 ++-- .../src/app.component.ts | 19 +-- .../area-chart-styling/src/app.component.ts | 23 ++-- .../axis-gap/src/app.component.ts | 33 ++--- .../axis-gridlines/src/app.component.ts | 41 ++++--- .../axis-inverted/src/app.component.ts | 33 ++--- .../axis-labels/src/app.component.ts | 41 ++++--- .../axis-locations/src/app.component.ts | 33 ++--- .../axis-options/src/app.component.ts | 19 +-- .../axis-overlap/src/app.component.ts | 33 ++--- .../axis-range/src/app.component.ts | 37 +++--- .../axis-tickmarks/src/app.component.ts | 33 ++--- .../axis-titles/src/app.component.ts | 23 ++-- .../src/app.component.ts | 23 ++-- .../src/app.component.ts | 19 +-- .../column-chart-styling/src/app.component.ts | 23 ++-- .../src/app.component.ts | 33 ++--- .../custom-selection/src/app.component.ts | 64 +++++----- .../data-aggregations/src/app.component.ts | 37 +++--- .../src/app.component.ts | 23 ++-- .../data-legend/src/app.component.ts | 23 ++-- .../src/app.component.ts | 19 +-- .../src/app.component.ts | 37 +++--- .../data-tooltip/src/app.component.ts | 19 +-- .../format-specifiers/src/app.component.ts | 53 ++++---- .../src/app.component.ts | 23 ++-- .../src/app.component.ts | 19 +-- .../line-chart-styling/src/app.component.ts | 23 ++-- .../marker-options/src/app.component.ts | 43 ++++--- .../overview/src/app.component.ts | 23 ++-- .../src/app.component.ts | 23 ++-- .../src/app.component.ts | 19 +-- .../point-chart-styling/src/app.component.ts | 23 ++-- .../src/app.component.ts | 23 ++-- .../src/app.component.ts | 19 +-- .../spline-area-styling/src/app.component.ts | 23 ++-- .../src/app.component.ts | 23 ++-- .../spline-single-source/src/app.component.ts | 19 +-- .../spline-styling/src/app.component.ts | 23 ++-- .../src/app.component.ts | 23 ++-- .../src/app.component.ts | 19 +-- .../step-area-styling/src/app.component.ts | 23 ++-- .../src/app.component.ts | 23 ++-- .../src/app.component.ts | 19 +-- .../step-line-styling/src/app.component.ts | 23 ++-- .../value-lines/src/app.component.ts | 43 ++++--- .../annotations-custom/src/app.component.ts | 49 ++++---- .../src/app.component.ts | 47 ++++---- .../axis-label-rotation/src/app.component.ts | 43 ++++--- .../axis-min-max-gap/src/app.component.ts | 39 +++--- .../src/app.component.ts | 47 ++++---- .../src/app.component.ts | 59 ++++----- .../src/app.component.ts | 39 +++--- .../bar-chart-styling/src/app.component.ts | 43 ++++--- .../src/app.component.ts | 35 +++--- .../dash-array-axes/src/app.component.ts | 43 ++++--- .../dash-array-series/src/app.component.ts | 43 ++++--- .../dash-array-tickmarks/src/app.component.ts | 31 +++-- .../dash-array-trendline/src/app.component.ts | 31 +++-- .../data-legend/src/app.component.ts | 53 ++++---- .../data-tooltip/src/app.component.ts | 49 ++++---- .../src/app.component.ts | 35 +++--- .../format-specifiers/src/app.component.ts | 73 +++++------ .../src/app.component.ts | 39 +++--- .../polar-area-chart/src/app.component.ts | 43 ++++--- .../polar-line-chart/src/app.component.ts | 43 ++++--- .../polar-scatter-chart/src/app.component.ts | 39 +++--- .../src/app.component.ts | 39 +++--- .../polar-spline-chart/src/app.component.ts | 39 +++--- .../src/app.component.ts | 39 +++--- .../radial-area-chart/src/app.component.ts | 43 ++++--- .../radial-column-chart/src/app.component.ts | 43 ++++--- .../radial-line-chart/src/app.component.ts | 43 ++++--- .../radial-pie-chart/src/app.component.ts | 43 ++++--- .../range-area-chart/src/app.component.ts | 43 ++++--- .../range-column-chart/src/app.component.ts | 43 ++++--- .../scatter-line-chart/src/app.component.ts | 45 ++++--- .../scatter-point-chart/src/app.component.ts | 41 ++++--- .../scatter-spline-chart/src/app.component.ts | 45 ++++--- .../src/app.component.ts | 59 ++++----- .../src/app.component.ts | 55 +++++---- .../src/app.component.ts | 51 ++++---- .../src/app.component.ts | 59 ++++----- .../src/app.component.ts | 59 ++++----- .../src/app.component.ts | 59 ++++----- .../stacked-area-chart/src/app.component.ts | 59 ++++----- .../stacked-bar-chart/src/app.component.ts | 55 +++++---- .../stacked-column-chart/src/app.component.ts | 59 ++++----- .../stacked-line-chart/src/app.component.ts | 59 ++++----- .../src/app.component.ts | 59 ++++----- .../stacked-spline-chart/src/app.component.ts | 59 ++++----- .../transition-event/src/app.component.ts | 55 +++++---- .../waterfall-chart/src/app.component.ts | 35 +++--- .../legend/src/app.component.ts | 27 +++-- .../overview/src/app.component.ts | 23 ++-- .../doughnut-chart/rings/src/app.component.ts | 27 +++-- .../src/app.component.ts | 23 ++-- .../src/app.component.ts | 23 ++-- .../data-legend/src/app.component.ts | 23 ++-- .../src/app.component.ts | 19 +-- .../src/app.component.ts | 19 +-- .../data-tooltip/src/app.component.ts | 19 +-- .../format-specifiers/src/app.component.ts | 79 ++++++------ .../scrollbars/src/app.component.ts | 19 +-- .../pie-chart/legend/src/app.component.ts | 23 ++-- .../pie-chart/others/src/app.component.ts | 23 ++-- .../pie-chart/overview/src/app.component.ts | 23 ++-- .../pie-chart/styling/src/app.component.ts | 23 ++-- .../display-area/src/app.component.ts | 19 +-- .../display-column/src/app.component.ts | 19 +-- .../display-lines/src/app.component.ts | 19 +-- .../display-winloss/src/app.component.ts | 19 +-- .../sparkline/markers/src/app.component.ts | 47 ++++---- .../normal-range/src/app.component.ts | 37 +++--- .../sparkline/trendlines/src/app.component.ts | 27 +++-- .../unknown-values/src/app.component.ts | 27 +++-- .../src/app.component.ts | 27 +++-- .../src/app.component.ts | 47 ++++---- .../charts/toolbar/custom-tool/.stackblitzrc | 1 + .../charts/toolbar/custom-tool/angular.json | 106 ++++++++++++++++ .../charts/toolbar/custom-tool/package.json | 45 +++++++ .../toolbar/custom-tool/sandbox.config.json | 5 + .../custom-tool/src/app.component.html | 14 +++ .../custom-tool/src/app.component.scss | 3 + .../toolbar/custom-tool/src/app.component.ts | 34 ++++++ .../toolbar/custom-tool/src/app.module.ts | 25 ++++ .../src/config/tsconfig-es5.app.json | 6 + .../custom-tool/src/config/tsconfig.app.json | 12 ++ .../custom-tool/src/config/tsconfig.base.json | 24 ++++ .../custom-tool/src/config/tsconfig.spec.json | 19 +++ .../src/config/tsconfig.worker.json | 14 +++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../charts/toolbar/custom-tool/src/index.html | 23 ++++ .../charts/toolbar/custom-tool/src/main.ts | 15 +++ .../toolbar/custom-tool/src/polyfills.ts | 65 ++++++++++ .../toolbar/custom-tool/src/styles.scss | 9 ++ .../toolbar/custom-tool/src/typings.d.ts | 5 + .../charts/toolbar/custom-tool/tsconfig.json | 21 ++++ .../charts/toolbar/custom-tool/tslint.json | 31 +++++ .../src/app.component.ts | 114 +++++++++--------- .../src/app.component.ts | 35 +++--- .../toolbar/theming/src/app.component.ts | 39 +++--- .../tree-map/layout/src/app.component.ts | 41 ++++--- .../tree-map/overview/src/app.component.ts | 19 +-- .../tree-map/styling/src/app.component.ts | 51 ++++---- 152 files changed, 3141 insertions(+), 1997 deletions(-) create mode 100644 samples/charts/toolbar/custom-tool/.stackblitzrc create mode 100644 samples/charts/toolbar/custom-tool/angular.json create mode 100644 samples/charts/toolbar/custom-tool/package.json create mode 100644 samples/charts/toolbar/custom-tool/sandbox.config.json create mode 100644 samples/charts/toolbar/custom-tool/src/app.component.html create mode 100644 samples/charts/toolbar/custom-tool/src/app.component.scss create mode 100644 samples/charts/toolbar/custom-tool/src/app.component.ts create mode 100644 samples/charts/toolbar/custom-tool/src/app.module.ts create mode 100644 samples/charts/toolbar/custom-tool/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/toolbar/custom-tool/src/config/tsconfig.app.json create mode 100644 samples/charts/toolbar/custom-tool/src/config/tsconfig.base.json create mode 100644 samples/charts/toolbar/custom-tool/src/config/tsconfig.spec.json create mode 100644 samples/charts/toolbar/custom-tool/src/config/tsconfig.worker.json create mode 100644 samples/charts/toolbar/custom-tool/src/environments/environment.prod.ts create mode 100644 samples/charts/toolbar/custom-tool/src/environments/environment.ts create mode 100644 samples/charts/toolbar/custom-tool/src/index.html create mode 100644 samples/charts/toolbar/custom-tool/src/main.ts create mode 100644 samples/charts/toolbar/custom-tool/src/polyfills.ts create mode 100644 samples/charts/toolbar/custom-tool/src/styles.scss create mode 100644 samples/charts/toolbar/custom-tool/src/typings.d.ts create mode 100644 samples/charts/toolbar/custom-tool/tsconfig.json create mode 100644 samples/charts/toolbar/custom-tool/tslint.json diff --git a/samples/charts/category-chart/annotations-all/src/app.component.ts b/samples/charts/category-chart/annotations-all/src/app.component.ts index 1e3593f54..b86dc3256 100644 --- a/samples/charts/category-chart/annotations-all/src/app.component.ts +++ b/samples/charts/category-chart/annotations-all/src/app.component.ts @@ -14,25 +14,22 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditor", { static: true } ) - private propertyEditor: IgxPropertyEditorPanelComponent - @ViewChild("crosshairsDisplayModeEditor", { static: true } ) - private crosshairsDisplayModeEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("highlightingModeEditor", { static: true } ) - private highlightingModeEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("calloutsVisibleEditor", { static: true } ) - private calloutsVisibleEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("finalValueAnnotationsEditor", { static: true } ) - private finalValueAnnotationsEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("crosshairsDisplayModeEditor", { static: true } ) + private crosshairsDisplayModeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("highlightingModeEditor", { static: true } ) + private highlightingModeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("calloutsVisibleEditor", { static: true } ) + private calloutsVisibleEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("finalValueAnnotationsEditor", { static: true } ) + private finalValueAnnotationsEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _temperatureAnnotatedData: TemperatureAnnotatedData = null; public get temperatureAnnotatedData(): TemperatureAnnotatedData { if (this._temperatureAnnotatedData == null) @@ -53,5 +50,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/annotations-callouts/src/app.component.ts b/samples/charts/category-chart/annotations-callouts/src/app.component.ts index b78b38db8..4b1d1ed65 100644 --- a/samples/charts/category-chart/annotations-callouts/src/app.component.ts +++ b/samples/charts/category-chart/annotations-callouts/src/app.component.ts @@ -14,19 +14,16 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditor", { static: true } ) - private propertyEditor: IgxPropertyEditorPanelComponent - @ViewChild("calloutsVisibleEditor", { static: true } ) - private calloutsVisibleEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("calloutsVisibleEditor", { static: true } ) + private calloutsVisibleEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _temperatureAnnotatedData: TemperatureAnnotatedData = null; public get temperatureAnnotatedData(): TemperatureAnnotatedData { if (this._temperatureAnnotatedData == null) @@ -47,5 +44,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/annotations-crosshairs/src/app.component.ts b/samples/charts/category-chart/annotations-crosshairs/src/app.component.ts index 65b5cb9b2..701095b31 100644 --- a/samples/charts/category-chart/annotations-crosshairs/src/app.component.ts +++ b/samples/charts/category-chart/annotations-crosshairs/src/app.component.ts @@ -14,21 +14,18 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditor", { static: true } ) - private propertyEditor: IgxPropertyEditorPanelComponent - @ViewChild("crosshairsDisplayModeEditor", { static: true } ) - private crosshairsDisplayModeEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("crosshairsSnapToDataEditor", { static: true } ) - private crosshairsSnapToDataEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("crosshairsDisplayModeEditor", { static: true } ) + private crosshairsDisplayModeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("crosshairsSnapToDataEditor", { static: true } ) + private crosshairsSnapToDataEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _temperatureAnnotatedData: TemperatureAnnotatedData = null; public get temperatureAnnotatedData(): TemperatureAnnotatedData { if (this._temperatureAnnotatedData == null) @@ -49,5 +46,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/annotations-custom/src/app.component.ts b/samples/charts/category-chart/annotations-custom/src/app.component.ts index b78b38db8..4b1d1ed65 100644 --- a/samples/charts/category-chart/annotations-custom/src/app.component.ts +++ b/samples/charts/category-chart/annotations-custom/src/app.component.ts @@ -14,19 +14,16 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditor", { static: true } ) - private propertyEditor: IgxPropertyEditorPanelComponent - @ViewChild("calloutsVisibleEditor", { static: true } ) - private calloutsVisibleEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("calloutsVisibleEditor", { static: true } ) + private calloutsVisibleEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _temperatureAnnotatedData: TemperatureAnnotatedData = null; public get temperatureAnnotatedData(): TemperatureAnnotatedData { if (this._temperatureAnnotatedData == null) @@ -47,5 +44,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/annotations-final-value/src/app.component.ts b/samples/charts/category-chart/annotations-final-value/src/app.component.ts index 652c137d7..9418dc1d0 100644 --- a/samples/charts/category-chart/annotations-final-value/src/app.component.ts +++ b/samples/charts/category-chart/annotations-final-value/src/app.component.ts @@ -14,19 +14,16 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditor", { static: true } ) - private propertyEditor: IgxPropertyEditorPanelComponent - @ViewChild("finalValueAnnotationsEditor", { static: true } ) - private finalValueAnnotationsEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("finalValueAnnotationsEditor", { static: true } ) + private finalValueAnnotationsEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _temperatureAnnotatedData: TemperatureAnnotatedData = null; public get temperatureAnnotatedData(): TemperatureAnnotatedData { if (this._temperatureAnnotatedData == null) @@ -47,5 +44,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/annotations-highlighting/src/app.component.ts b/samples/charts/category-chart/annotations-highlighting/src/app.component.ts index 82ff6a943..ec61ecf09 100644 --- a/samples/charts/category-chart/annotations-highlighting/src/app.component.ts +++ b/samples/charts/category-chart/annotations-highlighting/src/app.component.ts @@ -14,21 +14,18 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditor", { static: true } ) - private propertyEditor: IgxPropertyEditorPanelComponent - @ViewChild("highlightingModeEditor", { static: true } ) - private highlightingModeEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("highlightingBehaviorEditor", { static: true } ) - private highlightingBehaviorEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("highlightingModeEditor", { static: true } ) + private highlightingModeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("highlightingBehaviorEditor", { static: true } ) + private highlightingBehaviorEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _temperatureAnnotatedData: TemperatureAnnotatedData = null; public get temperatureAnnotatedData(): TemperatureAnnotatedData { if (this._temperatureAnnotatedData == null) @@ -49,5 +46,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/area-chart-multiple-sources/src/app.component.ts b/samples/charts/category-chart/area-chart-multiple-sources/src/app.component.ts index 7f293a2f5..cf1e9fcaf 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/src/app.component.ts +++ b/samples/charts/category-chart/area-chart-multiple-sources/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/area-chart-single-source/src/app.component.ts b/samples/charts/category-chart/area-chart-single-source/src/app.component.ts index ea8682686..0ad6dc0d6 100644 --- a/samples/charts/category-chart/area-chart-single-source/src/app.component.ts +++ b/samples/charts/category-chart/area-chart-single-source/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -26,5 +23,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/area-chart-styling/src/app.component.ts b/samples/charts/category-chart/area-chart-styling/src/app.component.ts index 7f293a2f5..cf1e9fcaf 100644 --- a/samples/charts/category-chart/area-chart-styling/src/app.component.ts +++ b/samples/charts/category-chart/area-chart-styling/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/axis-gap/src/app.component.ts b/samples/charts/category-chart/axis-gap/src/app.component.ts index 453e40a53..43690271d 100644 --- a/samples/charts/category-chart/axis-gap/src/app.component.ts +++ b/samples/charts/category-chart/axis-gap/src/app.component.ts @@ -14,21 +14,18 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("xAxisGap", { static: true } ) - private xAxisGap: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("xAxisMaximumGap", { static: true } ) - private xAxisMaximumGap: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("xAxisGap", { static: true } ) + private xAxisGap: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("xAxisMaximumGap", { static: true } ) + private xAxisMaximumGap: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -50,5 +47,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/axis-gridlines/src/app.component.ts b/samples/charts/category-chart/axis-gridlines/src/app.component.ts index b45fe99ef..8c8d83a45 100644 --- a/samples/charts/category-chart/axis-gridlines/src/app.component.ts +++ b/samples/charts/category-chart/axis-gridlines/src/app.component.ts @@ -14,25 +14,22 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("yAxisStroke", { static: true } ) - private yAxisStroke: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("yAxisMajorStroke", { static: true } ) - private yAxisMajorStroke: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("yAxisMinorStroke", { static: true } ) - private yAxisMinorStroke: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("yAxisStroke", { static: true } ) + private yAxisStroke: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("yAxisMajorStroke", { static: true } ) + private yAxisMajorStroke: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("yAxisMinorStroke", { static: true } ) + private yAxisMinorStroke: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -54,5 +51,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/axis-inverted/src/app.component.ts b/samples/charts/category-chart/axis-inverted/src/app.component.ts index 943b70033..72b004825 100644 --- a/samples/charts/category-chart/axis-inverted/src/app.component.ts +++ b/samples/charts/category-chart/axis-inverted/src/app.component.ts @@ -14,21 +14,18 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("xAxisInvertedEditor", { static: true } ) - private xAxisInvertedEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("yAxisInvertedEditor", { static: true } ) - private yAxisInvertedEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("xAxisInvertedEditor", { static: true } ) + private xAxisInvertedEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("yAxisInvertedEditor", { static: true } ) + private yAxisInvertedEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -49,5 +46,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/axis-labels/src/app.component.ts b/samples/charts/category-chart/axis-labels/src/app.component.ts index 0c15fb0b5..0336cdb5f 100644 --- a/samples/charts/category-chart/axis-labels/src/app.component.ts +++ b/samples/charts/category-chart/axis-labels/src/app.component.ts @@ -14,25 +14,22 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("xAxisLabelAngleEditor", { static: true } ) - private xAxisLabelAngleEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("yAxisLabelAngleEditor", { static: true } ) - private yAxisLabelAngleEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("xAxisLabelTextColorEditor", { static: true } ) - private xAxisLabelTextColorEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("xAxisLabelAngleEditor", { static: true } ) + private xAxisLabelAngleEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("yAxisLabelAngleEditor", { static: true } ) + private yAxisLabelAngleEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("xAxisLabelTextColorEditor", { static: true } ) + private xAxisLabelTextColorEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -54,5 +51,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/axis-locations/src/app.component.ts b/samples/charts/category-chart/axis-locations/src/app.component.ts index 2afab5af6..595fd5643 100644 --- a/samples/charts/category-chart/axis-locations/src/app.component.ts +++ b/samples/charts/category-chart/axis-locations/src/app.component.ts @@ -14,21 +14,18 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("yAxisLabelLocation", { static: true } ) - private yAxisLabelLocation: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("yAxisLabelLocation", { static: true } ) + private yAxisLabelLocation: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -50,5 +47,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/axis-options/src/app.component.ts b/samples/charts/category-chart/axis-options/src/app.component.ts index e077a55aa..1fe82f4f4 100644 --- a/samples/charts/category-chart/axis-options/src/app.component.ts +++ b/samples/charts/category-chart/axis-options/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _olympicMedalsTopCountries: OlympicMedalsTopCountries = null; public get olympicMedalsTopCountries(): OlympicMedalsTopCountries { if (this._olympicMedalsTopCountries == null) @@ -26,5 +23,13 @@ export class AppComponent { return this._olympicMedalsTopCountries; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/axis-overlap/src/app.component.ts b/samples/charts/category-chart/axis-overlap/src/app.component.ts index c6812c83f..c24c345f3 100644 --- a/samples/charts/category-chart/axis-overlap/src/app.component.ts +++ b/samples/charts/category-chart/axis-overlap/src/app.component.ts @@ -14,21 +14,18 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("xAxisOverlap", { static: true } ) - private xAxisOverlap: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("xAxisOverlap", { static: true } ) + private xAxisOverlap: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _highestGrossingMovies: HighestGrossingMovies = null; public get highestGrossingMovies(): HighestGrossingMovies { if (this._highestGrossingMovies == null) @@ -50,5 +47,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/axis-range/src/app.component.ts b/samples/charts/category-chart/axis-range/src/app.component.ts index 72839c285..b4a0e8ea8 100644 --- a/samples/charts/category-chart/axis-range/src/app.component.ts +++ b/samples/charts/category-chart/axis-range/src/app.component.ts @@ -14,23 +14,20 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("yAxisMinimumValue", { static: true } ) - private yAxisMinimumValue: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("yAxisMaximumValue", { static: true } ) - private yAxisMaximumValue: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("yAxisMinimumValue", { static: true } ) + private yAxisMinimumValue: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("yAxisMaximumValue", { static: true } ) + private yAxisMaximumValue: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -52,5 +49,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/axis-tickmarks/src/app.component.ts b/samples/charts/category-chart/axis-tickmarks/src/app.component.ts index 5f2b6f2d4..760cce5fe 100644 --- a/samples/charts/category-chart/axis-tickmarks/src/app.component.ts +++ b/samples/charts/category-chart/axis-tickmarks/src/app.component.ts @@ -14,21 +14,18 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("xAxisTickLength", { static: true } ) - private xAxisTickLength: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("xAxisTickLength", { static: true } ) + private xAxisTickLength: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -50,5 +47,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/axis-titles/src/app.component.ts b/samples/charts/category-chart/axis-titles/src/app.component.ts index 7f293a2f5..cf1e9fcaf 100644 --- a/samples/charts/category-chart/axis-titles/src/app.component.ts +++ b/samples/charts/category-chart/axis-titles/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/app.component.ts b/samples/charts/category-chart/column-chart-multiple-sources/src/app.component.ts index 8e1aae8dc..05ffc0780 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/app.component.ts +++ b/samples/charts/category-chart/column-chart-multiple-sources/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _highestGrossingMovies: HighestGrossingMovies = null; public get highestGrossingMovies(): HighestGrossingMovies { if (this._highestGrossingMovies == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._highestGrossingMovies; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/column-chart-single-source/src/app.component.ts b/samples/charts/category-chart/column-chart-single-source/src/app.component.ts index f05c8e8a8..2ee433ece 100644 --- a/samples/charts/category-chart/column-chart-single-source/src/app.component.ts +++ b/samples/charts/category-chart/column-chart-single-source/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _temperatureAverageData: TemperatureAverageData = null; public get temperatureAverageData(): TemperatureAverageData { if (this._temperatureAverageData == null) @@ -26,5 +23,13 @@ export class AppComponent { return this._temperatureAverageData; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/column-chart-styling/src/app.component.ts b/samples/charts/category-chart/column-chart-styling/src/app.component.ts index 0262d3cb7..6539c9693 100644 --- a/samples/charts/category-chart/column-chart-styling/src/app.component.ts +++ b/samples/charts/category-chart/column-chart-styling/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _energyRenewableConsumption: EnergyRenewableConsumption = null; public get energyRenewableConsumption(): EnergyRenewableConsumption { if (this._energyRenewableConsumption == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._energyRenewableConsumption; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/src/app.component.ts b/samples/charts/category-chart/column-chart-with-tooltips/src/app.component.ts index 091fb0ae6..0e6fef269 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/src/app.component.ts +++ b/samples/charts/category-chart/column-chart-with-tooltips/src/app.component.ts @@ -14,21 +14,18 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditor", { static: true } ) - private propertyEditor: IgxPropertyEditorPanelComponent - @ViewChild("toolTipTypeEditor", { static: true } ) - private toolTipTypeEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("toolTipTypeEditor", { static: true } ) + private toolTipTypeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _highestGrossingMovies: HighestGrossingMovies = null; public get highestGrossingMovies(): HighestGrossingMovies { if (this._highestGrossingMovies == null) @@ -50,5 +47,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/custom-selection/src/app.component.ts b/samples/charts/category-chart/custom-selection/src/app.component.ts index aca6652c7..2524c1ea1 100644 --- a/samples/charts/category-chart/custom-selection/src/app.component.ts +++ b/samples/charts/category-chart/custom-selection/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxDataLegendComponent, IgxCategoryChartComponent } from 'igniteui-angu templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxDataLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxDataLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _selectableData: SelectableData = null; public get selectableData(): SelectableData { if (this._selectableData == null) @@ -28,34 +25,41 @@ export class AppComponent { return this._selectableData; } + public constructor(private _detector: ChangeDetectorRef) + { + } - public categoryChartCustomSelectionPointerDown(e: any): void { + public ngAfterViewInit(): void + { + } - let oldItem = e.args.item as SelectableDataItem; + public categoryChartCustomSelectionPointerDown(e: any): void { - if (oldItem === null) return; + let oldItem = e.args.item as SelectableDataItem; - let newItem: SelectableDataItem = new SelectableDataItem({ - category: oldItem.category, - dataValue: oldItem.dataValue, - selectedValue: oldItem.selectedValue - }); + if (oldItem === null) return; - var selectedIndex = -1; - for (var i = 0; i < this.selectableData.length; i++) { - if (oldItem.category === this.selectableData[i].category) { - selectedIndex = i; - break; - } - } + let newItem: SelectableDataItem = new SelectableDataItem({ + category: oldItem.category, + dataValue: oldItem.dataValue, + selectedValue: oldItem.selectedValue + }); - if (oldItem.selectedValue === oldItem.dataValue) - newItem.selectedValue = null; - else - newItem.selectedValue = newItem.dataValue; + var selectedIndex = -1; + for (var i = 0; i < this.selectableData.length; i++) { + if (oldItem.category === this.selectableData[i].category) { + selectedIndex = i; + break; + } + } - this.chart.notifySetItem(this.selectableData, selectedIndex, oldItem, newItem); - } + if (oldItem.selectedValue === oldItem.dataValue) + newItem.selectedValue = null; + else + newItem.selectedValue = newItem.dataValue; + + this.chart.notifySetItem(this.selectableData, selectedIndex, oldItem, newItem); + } } diff --git a/samples/charts/category-chart/data-aggregations/src/app.component.ts b/samples/charts/category-chart/data-aggregations/src/app.component.ts index 78074c3c7..c0c93e81b 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.component.ts +++ b/samples/charts/category-chart/data-aggregations/src/app.component.ts @@ -14,23 +14,20 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("initialGroups", { static: true } ) - private initialGroups: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("initialSummaries", { static: true } ) - private initialSummaries: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("groupSorts", { static: true } ) - private groupSorts: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("initialGroups", { static: true } ) + private initialGroups: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("initialSummaries", { static: true } ) + private initialSummaries: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("groupSorts", { static: true } ) + private groupSorts: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _salesData: SalesData = null; public get salesData(): SalesData { if (this._salesData == null) @@ -52,5 +49,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/app.component.ts b/samples/charts/category-chart/data-legend-formatting-decimals/src/app.component.ts index bd82ff8f9..38b629f73 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/app.component.ts +++ b/samples/charts/category-chart/data-legend-formatting-decimals/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxDataLegendComponent, IgxCategoryChartComponent } from 'igniteui-angu templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxDataLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxDataLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _highestGrossingMovies: HighestGrossingMovies = null; public get highestGrossingMovies(): HighestGrossingMovies { if (this._highestGrossingMovies == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._highestGrossingMovies; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/data-legend/src/app.component.ts b/samples/charts/category-chart/data-legend/src/app.component.ts index bd82ff8f9..38b629f73 100644 --- a/samples/charts/category-chart/data-legend/src/app.component.ts +++ b/samples/charts/category-chart/data-legend/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxDataLegendComponent, IgxCategoryChartComponent } from 'igniteui-angu templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxDataLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxDataLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _highestGrossingMovies: HighestGrossingMovies = null; public get highestGrossingMovies(): HighestGrossingMovies { if (this._highestGrossingMovies == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._highestGrossingMovies; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/app.component.ts b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/app.component.ts index 1c77ff43d..870facf82 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/app.component.ts +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _highestGrossingMovies: HighestGrossingMovies = null; public get highestGrossingMovies(): HighestGrossingMovies { if (this._highestGrossingMovies == null) @@ -26,5 +23,13 @@ export class AppComponent { return this._highestGrossingMovies; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/data-tooltip-positioning/src/app.component.ts b/samples/charts/category-chart/data-tooltip-positioning/src/app.component.ts index 5d042f95d..88b9a8fb8 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/src/app.component.ts +++ b/samples/charts/category-chart/data-tooltip-positioning/src/app.component.ts @@ -14,23 +14,20 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditor", { static: true } ) - private propertyEditor: IgxPropertyEditorPanelComponent - @ViewChild("groupedPositionXEditor", { static: true } ) - private groupedPositionXEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("groupedPositionYEditor", { static: true } ) - private groupedPositionYEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("groupingModeEditor", { static: true } ) - private groupingModeEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("groupedPositionXEditor", { static: true } ) + private groupedPositionXEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("groupedPositionYEditor", { static: true } ) + private groupedPositionYEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("groupingModeEditor", { static: true } ) + private groupingModeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _highestGrossingMovies: HighestGrossingMovies = null; public get highestGrossingMovies(): HighestGrossingMovies { if (this._highestGrossingMovies == null) @@ -52,5 +49,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/data-tooltip/src/app.component.ts b/samples/charts/category-chart/data-tooltip/src/app.component.ts index 1c77ff43d..870facf82 100644 --- a/samples/charts/category-chart/data-tooltip/src/app.component.ts +++ b/samples/charts/category-chart/data-tooltip/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _highestGrossingMovies: HighestGrossingMovies = null; public get highestGrossingMovies(): HighestGrossingMovies { if (this._highestGrossingMovies == null) @@ -26,5 +23,13 @@ export class AppComponent { return this._highestGrossingMovies; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/format-specifiers/src/app.component.ts b/samples/charts/category-chart/format-specifiers/src/app.component.ts index 537db7978..c2bd289c8 100644 --- a/samples/charts/category-chart/format-specifiers/src/app.component.ts +++ b/samples/charts/category-chart/format-specifiers/src/app.component.ts @@ -10,33 +10,30 @@ import { IgxNumberFormatSpecifier } from 'igniteui-angular-core'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { +export class AppComponent implements AfterViewInit +{ - } - - @ViewChild("legend", { static: true } ) - private legend: IgxDataLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent - private _numberFormatSpecifier1: IgxNumberFormatSpecifier[] | null = null; - public get numberFormatSpecifier1(): IgxNumberFormatSpecifier[] { - if (this._numberFormatSpecifier1 == null) - { - let numberFormatSpecifier1: IgxNumberFormatSpecifier[] = []; - var numberFormatSpecifier2 = new IgxNumberFormatSpecifier(); - numberFormatSpecifier2.style = "currency"; - numberFormatSpecifier2.currency = "USD"; - numberFormatSpecifier2.currencyDisplay = "symbol"; - numberFormatSpecifier2.minimumFractionDigits = 0; - - numberFormatSpecifier1.push(numberFormatSpecifier2) - this._numberFormatSpecifier1 = numberFormatSpecifier1; - } - return this._numberFormatSpecifier1; - } + @ViewChild("legend", { static: true } ) + private legend: IgxDataLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent + private _numberFormatSpecifier1: IgxNumberFormatSpecifier[] | null = null; + public get numberFormatSpecifier1(): IgxNumberFormatSpecifier[] { + if (this._numberFormatSpecifier1 == null) + { + let numberFormatSpecifier1: IgxNumberFormatSpecifier[] = []; + var numberFormatSpecifier2 = new IgxNumberFormatSpecifier(); + numberFormatSpecifier2.style = "currency"; + numberFormatSpecifier2.currency = "USD"; + numberFormatSpecifier2.currencyDisplay = "symbol"; + numberFormatSpecifier2.minimumFractionDigits = 0; + numberFormatSpecifier1.push(numberFormatSpecifier2) + this._numberFormatSpecifier1 = numberFormatSpecifier1; + } + return this._numberFormatSpecifier1; + } private _highestGrossingMovies: HighestGrossingMovies = null; public get highestGrossingMovies(): HighestGrossingMovies { if (this._highestGrossingMovies == null) @@ -58,5 +55,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/app.component.ts b/samples/charts/category-chart/line-chart-multiple-sources/src/app.component.ts index 7f293a2f5..cf1e9fcaf 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/app.component.ts +++ b/samples/charts/category-chart/line-chart-multiple-sources/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/line-chart-single-source/src/app.component.ts b/samples/charts/category-chart/line-chart-single-source/src/app.component.ts index ea8682686..0ad6dc0d6 100644 --- a/samples/charts/category-chart/line-chart-single-source/src/app.component.ts +++ b/samples/charts/category-chart/line-chart-single-source/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -26,5 +23,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/line-chart-styling/src/app.component.ts b/samples/charts/category-chart/line-chart-styling/src/app.component.ts index 7f293a2f5..cf1e9fcaf 100644 --- a/samples/charts/category-chart/line-chart-styling/src/app.component.ts +++ b/samples/charts/category-chart/line-chart-styling/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/marker-options/src/app.component.ts b/samples/charts/category-chart/marker-options/src/app.component.ts index cfe0c731d..4ffde8434 100644 --- a/samples/charts/category-chart/marker-options/src/app.component.ts +++ b/samples/charts/category-chart/marker-options/src/app.component.ts @@ -16,21 +16,18 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditor", { static: true } ) - private propertyEditor: IgxPropertyEditorPanelComponent - @ViewChild("chartTypeEditor", { static: true } ) - private chartTypeEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("markerTypeEditor", { static: true } ) - private markerTypeEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("chartTypeEditor", { static: true } ) + private chartTypeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("markerTypeEditor", { static: true } ) + private markerTypeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -52,13 +49,21 @@ export class AppComponent { return this._componentRenderer; } - public editorChangeUpdateMarkerType({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { - var item = sender as IgxPropertyEditorPropertyDescriptionComponent; - var chart = this.chart; + public constructor(private _detector: ChangeDetectorRef) + { + } - var markerVal = item.primitiveValue; - chart.markerTypes = markerVal; - } + public ngAfterViewInit(): void + { + } + + public editorChangeUpdateMarkerType({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { + var item = sender as IgxPropertyEditorPropertyDescriptionComponent; + var chart = this.chart; + + var markerVal = item.primitiveValue; + chart.markerTypes = markerVal; + } } diff --git a/samples/charts/category-chart/overview/src/app.component.ts b/samples/charts/category-chart/overview/src/app.component.ts index 7f293a2f5..cf1e9fcaf 100644 --- a/samples/charts/category-chart/overview/src/app.component.ts +++ b/samples/charts/category-chart/overview/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/src/app.component.ts b/samples/charts/category-chart/point-chart-multiple-sources/src/app.component.ts index 7f293a2f5..cf1e9fcaf 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/src/app.component.ts +++ b/samples/charts/category-chart/point-chart-multiple-sources/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/point-chart-single-source/src/app.component.ts b/samples/charts/category-chart/point-chart-single-source/src/app.component.ts index ea8682686..0ad6dc0d6 100644 --- a/samples/charts/category-chart/point-chart-single-source/src/app.component.ts +++ b/samples/charts/category-chart/point-chart-single-source/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -26,5 +23,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/point-chart-styling/src/app.component.ts b/samples/charts/category-chart/point-chart-styling/src/app.component.ts index 7f293a2f5..cf1e9fcaf 100644 --- a/samples/charts/category-chart/point-chart-styling/src/app.component.ts +++ b/samples/charts/category-chart/point-chart-styling/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/app.component.ts b/samples/charts/category-chart/spline-area-multiple-sources/src/app.component.ts index 7f293a2f5..cf1e9fcaf 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/app.component.ts +++ b/samples/charts/category-chart/spline-area-multiple-sources/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/spline-area-single-source/src/app.component.ts b/samples/charts/category-chart/spline-area-single-source/src/app.component.ts index ea8682686..0ad6dc0d6 100644 --- a/samples/charts/category-chart/spline-area-single-source/src/app.component.ts +++ b/samples/charts/category-chart/spline-area-single-source/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -26,5 +23,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/spline-area-styling/src/app.component.ts b/samples/charts/category-chart/spline-area-styling/src/app.component.ts index 7f293a2f5..cf1e9fcaf 100644 --- a/samples/charts/category-chart/spline-area-styling/src/app.component.ts +++ b/samples/charts/category-chart/spline-area-styling/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/spline-multiple-sources/src/app.component.ts b/samples/charts/category-chart/spline-multiple-sources/src/app.component.ts index 7f293a2f5..cf1e9fcaf 100644 --- a/samples/charts/category-chart/spline-multiple-sources/src/app.component.ts +++ b/samples/charts/category-chart/spline-multiple-sources/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/spline-single-source/src/app.component.ts b/samples/charts/category-chart/spline-single-source/src/app.component.ts index ea8682686..0ad6dc0d6 100644 --- a/samples/charts/category-chart/spline-single-source/src/app.component.ts +++ b/samples/charts/category-chart/spline-single-source/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -26,5 +23,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/spline-styling/src/app.component.ts b/samples/charts/category-chart/spline-styling/src/app.component.ts index 7f293a2f5..cf1e9fcaf 100644 --- a/samples/charts/category-chart/spline-styling/src/app.component.ts +++ b/samples/charts/category-chart/spline-styling/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/step-area-multiple-sources/src/app.component.ts b/samples/charts/category-chart/step-area-multiple-sources/src/app.component.ts index 7f293a2f5..cf1e9fcaf 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/src/app.component.ts +++ b/samples/charts/category-chart/step-area-multiple-sources/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/step-area-single-source/src/app.component.ts b/samples/charts/category-chart/step-area-single-source/src/app.component.ts index ea8682686..0ad6dc0d6 100644 --- a/samples/charts/category-chart/step-area-single-source/src/app.component.ts +++ b/samples/charts/category-chart/step-area-single-source/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -26,5 +23,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/step-area-styling/src/app.component.ts b/samples/charts/category-chart/step-area-styling/src/app.component.ts index 7f293a2f5..cf1e9fcaf 100644 --- a/samples/charts/category-chart/step-area-styling/src/app.component.ts +++ b/samples/charts/category-chart/step-area-styling/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/step-line-multiple-sources/src/app.component.ts b/samples/charts/category-chart/step-line-multiple-sources/src/app.component.ts index 7f293a2f5..cf1e9fcaf 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/src/app.component.ts +++ b/samples/charts/category-chart/step-line-multiple-sources/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/step-line-single-source/src/app.component.ts b/samples/charts/category-chart/step-line-single-source/src/app.component.ts index ea8682686..0ad6dc0d6 100644 --- a/samples/charts/category-chart/step-line-single-source/src/app.component.ts +++ b/samples/charts/category-chart/step-line-single-source/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -26,5 +23,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/step-line-styling/src/app.component.ts b/samples/charts/category-chart/step-line-styling/src/app.component.ts index 7f293a2f5..cf1e9fcaf 100644 --- a/samples/charts/category-chart/step-line-styling/src/app.component.ts +++ b/samples/charts/category-chart/step-line-styling/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/category-chart/value-lines/src/app.component.ts b/samples/charts/category-chart/value-lines/src/app.component.ts index 6e68d1e31..de1ff9d7c 100644 --- a/samples/charts/category-chart/value-lines/src/app.component.ts +++ b/samples/charts/category-chart/value-lines/src/app.component.ts @@ -17,21 +17,18 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("propertyEditor", { static: true } ) - private propertyEditor: IgxPropertyEditorPanelComponent - @ViewChild("valueListEditor", { static: true } ) - private valueListEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("valueListEditor", { static: true } ) + private valueListEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -53,13 +50,21 @@ export class AppComponent { return this._componentRenderer; } - public editorChangeUpdateValueLines({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { - var item = sender as IgxPropertyEditorPropertyDescriptionComponent; - var chart = this.chart; + public constructor(private _detector: ChangeDetectorRef) + { + } - var valueLineType = item.primitiveValue; - chart.valueLines = valueLineType; - } + public ngAfterViewInit(): void + { + } + + public editorChangeUpdateValueLines({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { + var item = sender as IgxPropertyEditorPropertyDescriptionComponent; + var chart = this.chart; + + var valueLineType = item.primitiveValue; + chart.valueLines = valueLineType; + } } diff --git a/samples/charts/data-chart/annotations-custom/src/app.component.ts b/samples/charts/data-chart/annotations-custom/src/app.component.ts index 3f14afa0d..c23557ab5 100644 --- a/samples/charts/data-chart/annotations-custom/src/app.component.ts +++ b/samples/charts/data-chart/annotations-custom/src/app.component.ts @@ -9,29 +9,26 @@ import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisCompon templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("lineSeries1", { static: true } ) - private lineSeries1: IgxLineSeriesComponent - @ViewChild("calloutLayer1", { static: true } ) - private calloutLayer1: IgxCalloutLayerComponent - @ViewChild("finalValueLayer", { static: true } ) - private finalValueLayer: IgxFinalValueLayerComponent - @ViewChild("crosshairLayer", { static: true } ) - private crosshairLayer: IgxCrosshairLayerComponent - @ViewChild("tooltips", { static: true } ) - private tooltips: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("lineSeries1", { static: true } ) + private lineSeries1: IgxLineSeriesComponent + @ViewChild("calloutLayer1", { static: true } ) + private calloutLayer1: IgxCalloutLayerComponent + @ViewChild("finalValueLayer", { static: true } ) + private finalValueLayer: IgxFinalValueLayerComponent + @ViewChild("crosshairLayer", { static: true } ) + private crosshairLayer: IgxCrosshairLayerComponent + @ViewChild("tooltips", { static: true } ) + private tooltips: IgxDataToolTipLayerComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -50,5 +47,13 @@ export class AppComponent { return this._countryRenewableCallouts; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/src/app.component.ts b/samples/charts/data-chart/axis-annotations-corner-radius/src/app.component.ts index 6b7e105bc..fc863ead4 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/src/app.component.ts +++ b/samples/charts/data-chart/axis-annotations-corner-radius/src/app.component.ts @@ -8,29 +8,26 @@ import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisCompon templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("lineSeries1", { static: true } ) - private lineSeries1: IgxLineSeriesComponent - @ViewChild("calloutLayer1", { static: true } ) - private calloutLayer1: IgxCalloutLayerComponent - @ViewChild("finalValueLayer", { static: true } ) - private finalValueLayer: IgxFinalValueLayerComponent - @ViewChild("crosshairLayer", { static: true } ) - private crosshairLayer: IgxCrosshairLayerComponent - @ViewChild("tooltips", { static: true } ) - private tooltips: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("lineSeries1", { static: true } ) + private lineSeries1: IgxLineSeriesComponent + @ViewChild("calloutLayer1", { static: true } ) + private calloutLayer1: IgxCalloutLayerComponent + @ViewChild("finalValueLayer", { static: true } ) + private finalValueLayer: IgxFinalValueLayerComponent + @ViewChild("crosshairLayer", { static: true } ) + private crosshairLayer: IgxCrosshairLayerComponent + @ViewChild("tooltips", { static: true } ) + private tooltips: IgxDataToolTipLayerComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -40,5 +37,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/axis-label-rotation/src/app.component.ts b/samples/charts/data-chart/axis-label-rotation/src/app.component.ts index 18b6c21b3..2e8e963d0 100644 --- a/samples/charts/data-chart/axis-label-rotation/src/app.component.ts +++ b/samples/charts/data-chart/axis-label-rotation/src/app.component.ts @@ -14,27 +14,24 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("shouldConsiderAutoRotationForInitialLabels", { static: true } ) - private shouldConsiderAutoRotationForInitialLabels: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("autoMarginAndAngleUpdateMode", { static: true } ) - private autoMarginAndAngleUpdateMode: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("colSeries1", { static: true } ) - private colSeries1: IgxColumnSeriesComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("shouldConsiderAutoRotationForInitialLabels", { static: true } ) + private shouldConsiderAutoRotationForInitialLabels: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("autoMarginAndAngleUpdateMode", { static: true } ) + private autoMarginAndAngleUpdateMode: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("colSeries1", { static: true } ) + private colSeries1: IgxColumnSeriesComponent private _temperatureAverageDataLongLabels: TemperatureAverageDataLongLabels = null; public get temperatureAverageDataLongLabels(): TemperatureAverageDataLongLabels { if (this._temperatureAverageDataLongLabels == null) @@ -56,5 +53,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/axis-min-max-gap/src/app.component.ts b/samples/charts/data-chart/axis-min-max-gap/src/app.component.ts index 96193f38a..220a57600 100644 --- a/samples/charts/data-chart/axis-min-max-gap/src/app.component.ts +++ b/samples/charts/data-chart/axis-min-max-gap/src/app.component.ts @@ -8,25 +8,22 @@ import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisCompon templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("categoryHighlightLayer", { static: true } ) - private categoryHighlightLayer: IgxCategoryHighlightLayerComponent - @ViewChild("columnSeries1", { static: true } ) - private columnSeries1: IgxColumnSeriesComponent - @ViewChild("tooltips", { static: true } ) - private tooltips: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("categoryHighlightLayer", { static: true } ) + private categoryHighlightLayer: IgxCategoryHighlightLayerComponent + @ViewChild("columnSeries1", { static: true } ) + private columnSeries1: IgxColumnSeriesComponent + @ViewChild("tooltips", { static: true } ) + private tooltips: IgxDataToolTipLayerComponent private _temperatureAverageData: TemperatureAverageData = null; public get temperatureAverageData(): TemperatureAverageData { if (this._temperatureAverageData == null) @@ -36,5 +33,13 @@ export class AppComponent { return this._temperatureAverageData; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/src/app.component.ts b/samples/charts/data-chart/bar-chart-multiple-sources/src/app.component.ts index 15f485044..7c59dd98c 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/src/app.component.ts +++ b/samples/charts/data-chart/bar-chart-multiple-sources/src/app.component.ts @@ -8,29 +8,26 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryYAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxCategoryYAxisComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxNumericXAxisComponent - @ViewChild("categoryHighlightLayer", { static: true } ) - private categoryHighlightLayer: IgxCategoryHighlightLayerComponent - @ViewChild("barSeries1", { static: true } ) - private barSeries1: IgxBarSeriesComponent - @ViewChild("barSeries2", { static: true } ) - private barSeries2: IgxBarSeriesComponent - @ViewChild("tooltips", { static: true } ) - private tooltips: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxCategoryYAxisComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + @ViewChild("categoryHighlightLayer", { static: true } ) + private categoryHighlightLayer: IgxCategoryHighlightLayerComponent + @ViewChild("barSeries1", { static: true } ) + private barSeries1: IgxBarSeriesComponent + @ViewChild("barSeries2", { static: true } ) + private barSeries2: IgxBarSeriesComponent + @ViewChild("tooltips", { static: true } ) + private tooltips: IgxDataToolTipLayerComponent private _highestGrossingMovies: HighestGrossingMovies = null; public get highestGrossingMovies(): HighestGrossingMovies { if (this._highestGrossingMovies == null) @@ -40,5 +37,13 @@ export class AppComponent { return this._highestGrossingMovies; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/bar-chart-overlapping/src/app.component.ts b/samples/charts/data-chart/bar-chart-overlapping/src/app.component.ts index 0037c11d2..7ccec65ef 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/src/app.component.ts +++ b/samples/charts/data-chart/bar-chart-overlapping/src/app.component.ts @@ -8,35 +8,32 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryYAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("yAxis1", { static: true } ) - private yAxis1: IgxCategoryYAxisComponent - @ViewChild("yAxis2", { static: true } ) - private yAxis2: IgxCategoryYAxisComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxNumericXAxisComponent - @ViewChild("categoryHighlightLayer", { static: true } ) - private categoryHighlightLayer: IgxCategoryHighlightLayerComponent - @ViewChild("barSeries1", { static: true } ) - private barSeries1: IgxBarSeriesComponent - @ViewChild("barSeries2", { static: true } ) - private barSeries2: IgxBarSeriesComponent - @ViewChild("calloutLayer1", { static: true } ) - private calloutLayer1: IgxCalloutLayerComponent - @ViewChild("calloutLayer2", { static: true } ) - private calloutLayer2: IgxCalloutLayerComponent - @ViewChild("tooltips", { static: true } ) - private tooltips: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("yAxis1", { static: true } ) + private yAxis1: IgxCategoryYAxisComponent + @ViewChild("yAxis2", { static: true } ) + private yAxis2: IgxCategoryYAxisComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + @ViewChild("categoryHighlightLayer", { static: true } ) + private categoryHighlightLayer: IgxCategoryHighlightLayerComponent + @ViewChild("barSeries1", { static: true } ) + private barSeries1: IgxBarSeriesComponent + @ViewChild("barSeries2", { static: true } ) + private barSeries2: IgxBarSeriesComponent + @ViewChild("calloutLayer1", { static: true } ) + private calloutLayer1: IgxCalloutLayerComponent + @ViewChild("calloutLayer2", { static: true } ) + private calloutLayer2: IgxCalloutLayerComponent + @ViewChild("tooltips", { static: true } ) + private tooltips: IgxDataToolTipLayerComponent private _roadblocksToSuccess: RoadblocksToSuccess = null; public get roadblocksToSuccess(): RoadblocksToSuccess { if (this._roadblocksToSuccess == null) @@ -46,5 +43,13 @@ export class AppComponent { return this._roadblocksToSuccess; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/bar-chart-single-source/src/app.component.ts b/samples/charts/data-chart/bar-chart-single-source/src/app.component.ts index 72dc46598..b70343bc5 100644 --- a/samples/charts/data-chart/bar-chart-single-source/src/app.component.ts +++ b/samples/charts/data-chart/bar-chart-single-source/src/app.component.ts @@ -8,25 +8,22 @@ import { IgxDataChartComponent, IgxCategoryYAxisComponent, IgxNumericXAxisCompon templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxCategoryYAxisComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxNumericXAxisComponent - @ViewChild("categoryHighlightLayer", { static: true } ) - private categoryHighlightLayer: IgxCategoryHighlightLayerComponent - @ViewChild("barSeries1", { static: true } ) - private barSeries1: IgxBarSeriesComponent - @ViewChild("tooltips", { static: true } ) - private tooltips: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxCategoryYAxisComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + @ViewChild("categoryHighlightLayer", { static: true } ) + private categoryHighlightLayer: IgxCategoryHighlightLayerComponent + @ViewChild("barSeries1", { static: true } ) + private barSeries1: IgxBarSeriesComponent + @ViewChild("tooltips", { static: true } ) + private tooltips: IgxDataToolTipLayerComponent private _onlineShoppingSearches: OnlineShoppingSearches = null; public get onlineShoppingSearches(): OnlineShoppingSearches { if (this._onlineShoppingSearches == null) @@ -36,5 +33,13 @@ export class AppComponent { return this._onlineShoppingSearches; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/bar-chart-styling/src/app.component.ts b/samples/charts/data-chart/bar-chart-styling/src/app.component.ts index b3ac7948f..6a091f05d 100644 --- a/samples/charts/data-chart/bar-chart-styling/src/app.component.ts +++ b/samples/charts/data-chart/bar-chart-styling/src/app.component.ts @@ -8,27 +8,24 @@ import { IgxDataChartComponent, IgxCategoryYAxisComponent, IgxNumericXAxisCompon templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxCategoryYAxisComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxNumericXAxisComponent - @ViewChild("categoryHighlightLayer", { static: true } ) - private categoryHighlightLayer: IgxCategoryHighlightLayerComponent - @ViewChild("barSeries1", { static: true } ) - private barSeries1: IgxBarSeriesComponent - @ViewChild("calloutLayer1", { static: true } ) - private calloutLayer1: IgxCalloutLayerComponent - @ViewChild("tooltips", { static: true } ) - private tooltips: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxCategoryYAxisComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + @ViewChild("categoryHighlightLayer", { static: true } ) + private categoryHighlightLayer: IgxCategoryHighlightLayerComponent + @ViewChild("barSeries1", { static: true } ) + private barSeries1: IgxBarSeriesComponent + @ViewChild("calloutLayer1", { static: true } ) + private calloutLayer1: IgxCalloutLayerComponent + @ViewChild("tooltips", { static: true } ) + private tooltips: IgxDataToolTipLayerComponent private _onlineShoppingSearches: OnlineShoppingSearches = null; public get onlineShoppingSearches(): OnlineShoppingSearches { if (this._onlineShoppingSearches == null) @@ -38,5 +35,13 @@ export class AppComponent { return this._onlineShoppingSearches; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/callout-layer-styling/src/app.component.ts b/samples/charts/data-chart/callout-layer-styling/src/app.component.ts index 416884c5b..01c6b3623 100644 --- a/samples/charts/data-chart/callout-layer-styling/src/app.component.ts +++ b/samples/charts/data-chart/callout-layer-styling/src/app.component.ts @@ -8,23 +8,20 @@ import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisCompon templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("lineSeries1", { static: true } ) - private lineSeries1: IgxLineSeriesComponent - @ViewChild("calloutLayer1", { static: true } ) - private calloutLayer1: IgxCalloutLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("lineSeries1", { static: true } ) + private lineSeries1: IgxLineSeriesComponent + @ViewChild("calloutLayer1", { static: true } ) + private calloutLayer1: IgxCalloutLayerComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -34,5 +31,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/dash-array-axes/src/app.component.ts b/samples/charts/data-chart/dash-array-axes/src/app.component.ts index 829a2de47..9086ad69a 100644 --- a/samples/charts/data-chart/dash-array-axes/src/app.component.ts +++ b/samples/charts/data-chart/dash-array-axes/src/app.component.ts @@ -8,27 +8,24 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("lineSeries1", { static: true } ) - private lineSeries1: IgxLineSeriesComponent - @ViewChild("lineSeries2", { static: true } ) - private lineSeries2: IgxLineSeriesComponent - @ViewChild("lineSeries3", { static: true } ) - private lineSeries3: IgxLineSeriesComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("lineSeries1", { static: true } ) + private lineSeries1: IgxLineSeriesComponent + @ViewChild("lineSeries2", { static: true } ) + private lineSeries2: IgxLineSeriesComponent + @ViewChild("lineSeries3", { static: true } ) + private lineSeries3: IgxLineSeriesComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -38,5 +35,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/dash-array-series/src/app.component.ts b/samples/charts/data-chart/dash-array-series/src/app.component.ts index 829a2de47..9086ad69a 100644 --- a/samples/charts/data-chart/dash-array-series/src/app.component.ts +++ b/samples/charts/data-chart/dash-array-series/src/app.component.ts @@ -8,27 +8,24 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("lineSeries1", { static: true } ) - private lineSeries1: IgxLineSeriesComponent - @ViewChild("lineSeries2", { static: true } ) - private lineSeries2: IgxLineSeriesComponent - @ViewChild("lineSeries3", { static: true } ) - private lineSeries3: IgxLineSeriesComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("lineSeries1", { static: true } ) + private lineSeries1: IgxLineSeriesComponent + @ViewChild("lineSeries2", { static: true } ) + private lineSeries2: IgxLineSeriesComponent + @ViewChild("lineSeries3", { static: true } ) + private lineSeries3: IgxLineSeriesComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -38,5 +35,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/dash-array-tickmarks/src/app.component.ts b/samples/charts/data-chart/dash-array-tickmarks/src/app.component.ts index 00f9c93ed..6915a499b 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/src/app.component.ts +++ b/samples/charts/data-chart/dash-array-tickmarks/src/app.component.ts @@ -8,21 +8,18 @@ import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisCompon templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("columnSeries1", { static: true } ) - private columnSeries1: IgxColumnSeriesComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("columnSeries1", { static: true } ) + private columnSeries1: IgxColumnSeriesComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -32,5 +29,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/dash-array-trendline/src/app.component.ts b/samples/charts/data-chart/dash-array-trendline/src/app.component.ts index 40aa79cb9..dc495cc1d 100644 --- a/samples/charts/data-chart/dash-array-trendline/src/app.component.ts +++ b/samples/charts/data-chart/dash-array-trendline/src/app.component.ts @@ -8,21 +8,18 @@ import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisCompon templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("series1", { static: true } ) - private series1: IgxFinancialPriceSeriesComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("series1", { static: true } ) + private series1: IgxFinancialPriceSeriesComponent private _stock2Years: Stock2Years = null; public get stock2Years(): Stock2Years { if (this._stock2Years == null) @@ -32,5 +29,13 @@ export class AppComponent { return this._stock2Years; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/data-legend/src/app.component.ts b/samples/charts/data-chart/data-legend/src/app.component.ts index 00e7bb142..7b200e628 100644 --- a/samples/charts/data-chart/data-legend/src/app.component.ts +++ b/samples/charts/data-chart/data-legend/src/app.component.ts @@ -9,31 +9,28 @@ import { IgxDataLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxDataLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxNumericXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("bubbleSeries1", { static: true } ) - private bubbleSeries1: IgxBubbleSeriesComponent - @ViewChild("sizeScale1", { static: true } ) - private sizeScale1: IgxSizeScaleComponent - @ViewChild("bubbleSeries2", { static: true } ) - private bubbleSeries2: IgxBubbleSeriesComponent - @ViewChild("sizeScale2", { static: true } ) - private sizeScale2: IgxSizeScaleComponent - @ViewChild("crosshairLayer", { static: true } ) - private crosshairLayer: IgxCrosshairLayerComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxDataLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("bubbleSeries1", { static: true } ) + private bubbleSeries1: IgxBubbleSeriesComponent + @ViewChild("sizeScale1", { static: true } ) + private sizeScale1: IgxSizeScaleComponent + @ViewChild("bubbleSeries2", { static: true } ) + private bubbleSeries2: IgxBubbleSeriesComponent + @ViewChild("sizeScale2", { static: true } ) + private sizeScale2: IgxSizeScaleComponent + @ViewChild("crosshairLayer", { static: true } ) + private crosshairLayer: IgxCrosshairLayerComponent private _countryDemographicAfrican: CountryDemographicAfrican = null; public get countryDemographicAfrican(): CountryDemographicAfrican { if (this._countryDemographicAfrican == null) @@ -52,5 +49,13 @@ export class AppComponent { return this._countryDemographicEurope; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/data-tooltip/src/app.component.ts b/samples/charts/data-chart/data-tooltip/src/app.component.ts index c6b6c6625..172281ef5 100644 --- a/samples/charts/data-chart/data-tooltip/src/app.component.ts +++ b/samples/charts/data-chart/data-tooltip/src/app.component.ts @@ -9,29 +9,26 @@ import { IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisCompone templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxNumericXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("bubbleSeries1", { static: true } ) - private bubbleSeries1: IgxBubbleSeriesComponent - @ViewChild("sizeScale1", { static: true } ) - private sizeScale1: IgxSizeScaleComponent - @ViewChild("bubbleSeries2", { static: true } ) - private bubbleSeries2: IgxBubbleSeriesComponent - @ViewChild("sizeScale2", { static: true } ) - private sizeScale2: IgxSizeScaleComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("bubbleSeries1", { static: true } ) + private bubbleSeries1: IgxBubbleSeriesComponent + @ViewChild("sizeScale1", { static: true } ) + private sizeScale1: IgxSizeScaleComponent + @ViewChild("bubbleSeries2", { static: true } ) + private bubbleSeries2: IgxBubbleSeriesComponent + @ViewChild("sizeScale2", { static: true } ) + private sizeScale2: IgxSizeScaleComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _countryDemographicAfrican: CountryDemographicAfrican = null; public get countryDemographicAfrican(): CountryDemographicAfrican { if (this._countryDemographicAfrican == null) @@ -50,5 +47,13 @@ export class AppComponent { return this._countryDemographicEurope; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/financial-price-series/src/app.component.ts b/samples/charts/data-chart/financial-price-series/src/app.component.ts index feb227362..cb899d910 100644 --- a/samples/charts/data-chart/financial-price-series/src/app.component.ts +++ b/samples/charts/data-chart/financial-price-series/src/app.component.ts @@ -8,23 +8,20 @@ import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisCompon templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("series1", { static: true } ) - private series1: IgxFinancialPriceSeriesComponent - @ViewChild("tooltip", { static: true } ) - private tooltip: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("series1", { static: true } ) + private series1: IgxFinancialPriceSeriesComponent + @ViewChild("tooltip", { static: true } ) + private tooltip: IgxDataToolTipLayerComponent private _stock2Years: Stock2Years = null; public get stock2Years(): Stock2Years { if (this._stock2Years == null) @@ -34,5 +31,13 @@ export class AppComponent { return this._stock2Years; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/format-specifiers/src/app.component.ts b/samples/charts/data-chart/format-specifiers/src/app.component.ts index fc0fed04e..85545a924 100644 --- a/samples/charts/data-chart/format-specifiers/src/app.component.ts +++ b/samples/charts/data-chart/format-specifiers/src/app.component.ts @@ -9,43 +9,40 @@ import { IgxNumberFormatSpecifier } from 'igniteui-angular-core'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { +export class AppComponent implements AfterViewInit +{ - } - - @ViewChild("legend", { static: true } ) - private legend: IgxDataLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxCategoryYAxisComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxNumericXAxisComponent - private _numberFormatSpecifier1: IgxNumberFormatSpecifier[] | null = null; - public get numberFormatSpecifier1(): IgxNumberFormatSpecifier[] { - if (this._numberFormatSpecifier1 == null) - { - let numberFormatSpecifier1: IgxNumberFormatSpecifier[] = []; - var numberFormatSpecifier2 = new IgxNumberFormatSpecifier(); - numberFormatSpecifier2.style = "currency"; - numberFormatSpecifier2.currency = "USD"; - numberFormatSpecifier2.currencyDisplay = "symbol"; - numberFormatSpecifier2.minimumFractionDigits = 0; - - numberFormatSpecifier1.push(numberFormatSpecifier2) - this._numberFormatSpecifier1 = numberFormatSpecifier1; - } - return this._numberFormatSpecifier1; - } - @ViewChild("barSeries1", { static: true } ) - private barSeries1: IgxBarSeriesComponent - @ViewChild("barSeries2", { static: true } ) - private barSeries2: IgxBarSeriesComponent - @ViewChild("tooltips", { static: true } ) - private tooltips: IgxDataToolTipLayerComponent + @ViewChild("legend", { static: true } ) + private legend: IgxDataLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxCategoryYAxisComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + private _numberFormatSpecifier1: IgxNumberFormatSpecifier[] | null = null; + public get numberFormatSpecifier1(): IgxNumberFormatSpecifier[] { + if (this._numberFormatSpecifier1 == null) + { + let numberFormatSpecifier1: IgxNumberFormatSpecifier[] = []; + var numberFormatSpecifier2 = new IgxNumberFormatSpecifier(); + numberFormatSpecifier2.style = "currency"; + numberFormatSpecifier2.currency = "USD"; + numberFormatSpecifier2.currencyDisplay = "symbol"; + numberFormatSpecifier2.minimumFractionDigits = 0; + numberFormatSpecifier1.push(numberFormatSpecifier2) + this._numberFormatSpecifier1 = numberFormatSpecifier1; + } + return this._numberFormatSpecifier1; + } + @ViewChild("barSeries1", { static: true } ) + private barSeries1: IgxBarSeriesComponent + @ViewChild("barSeries2", { static: true } ) + private barSeries2: IgxBarSeriesComponent + @ViewChild("tooltips", { static: true } ) + private tooltips: IgxDataToolTipLayerComponent private _highestGrossingMovies: HighestGrossingMovies = null; public get highestGrossingMovies(): HighestGrossingMovies { if (this._highestGrossingMovies == null) @@ -55,5 +52,13 @@ export class AppComponent { return this._highestGrossingMovies; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/polar-area-chart-styling/src/app.component.ts b/samples/charts/data-chart/polar-area-chart-styling/src/app.component.ts index 431a6b332..27eefd200 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/src/app.component.ts +++ b/samples/charts/data-chart/polar-area-chart-styling/src/app.component.ts @@ -8,25 +8,22 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxNumericAngleAxisComponent templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("angleAxis", { static: true } ) - private angleAxis: IgxNumericAngleAxisComponent - @ViewChild("radiusAxis", { static: true } ) - private radiusAxis: IgxNumericRadiusAxisComponent - @ViewChild("polarAreaSeries1", { static: true } ) - private polarAreaSeries1: IgxPolarAreaSeriesComponent - @ViewChild("polarAreaSeries2", { static: true } ) - private polarAreaSeries2: IgxPolarAreaSeriesComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("angleAxis", { static: true } ) + private angleAxis: IgxNumericAngleAxisComponent + @ViewChild("radiusAxis", { static: true } ) + private radiusAxis: IgxNumericRadiusAxisComponent + @ViewChild("polarAreaSeries1", { static: true } ) + private polarAreaSeries1: IgxPolarAreaSeriesComponent + @ViewChild("polarAreaSeries2", { static: true } ) + private polarAreaSeries2: IgxPolarAreaSeriesComponent private _boatSailingData: BoatSailingData = null; public get boatSailingData(): BoatSailingData { if (this._boatSailingData == null) @@ -36,5 +33,13 @@ export class AppComponent { return this._boatSailingData; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/polar-area-chart/src/app.component.ts b/samples/charts/data-chart/polar-area-chart/src/app.component.ts index 562d5a050..b927a2be0 100644 --- a/samples/charts/data-chart/polar-area-chart/src/app.component.ts +++ b/samples/charts/data-chart/polar-area-chart/src/app.component.ts @@ -8,27 +8,24 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxNumericAngleAxisComponent templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("angleAxis", { static: true } ) - private angleAxis: IgxNumericAngleAxisComponent - @ViewChild("radiusAxis", { static: true } ) - private radiusAxis: IgxNumericRadiusAxisComponent - @ViewChild("polarAreaSeries1", { static: true } ) - private polarAreaSeries1: IgxPolarAreaSeriesComponent - @ViewChild("polarAreaSeries2", { static: true } ) - private polarAreaSeries2: IgxPolarAreaSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("angleAxis", { static: true } ) + private angleAxis: IgxNumericAngleAxisComponent + @ViewChild("radiusAxis", { static: true } ) + private radiusAxis: IgxNumericRadiusAxisComponent + @ViewChild("polarAreaSeries1", { static: true } ) + private polarAreaSeries1: IgxPolarAreaSeriesComponent + @ViewChild("polarAreaSeries2", { static: true } ) + private polarAreaSeries2: IgxPolarAreaSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _boatSailingData: BoatSailingData = null; public get boatSailingData(): BoatSailingData { if (this._boatSailingData == null) @@ -38,5 +35,13 @@ export class AppComponent { return this._boatSailingData; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/polar-line-chart/src/app.component.ts b/samples/charts/data-chart/polar-line-chart/src/app.component.ts index 91ff581e7..9fc0bdd6f 100644 --- a/samples/charts/data-chart/polar-line-chart/src/app.component.ts +++ b/samples/charts/data-chart/polar-line-chart/src/app.component.ts @@ -8,27 +8,24 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxNumericAngleAxisComponent templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("angleAxis", { static: true } ) - private angleAxis: IgxNumericAngleAxisComponent - @ViewChild("radiusAxis", { static: true } ) - private radiusAxis: IgxNumericRadiusAxisComponent - @ViewChild("polarLineSeries1", { static: true } ) - private polarLineSeries1: IgxPolarLineSeriesComponent - @ViewChild("polarLineSeries2", { static: true } ) - private polarLineSeries2: IgxPolarLineSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("angleAxis", { static: true } ) + private angleAxis: IgxNumericAngleAxisComponent + @ViewChild("radiusAxis", { static: true } ) + private radiusAxis: IgxNumericRadiusAxisComponent + @ViewChild("polarLineSeries1", { static: true } ) + private polarLineSeries1: IgxPolarLineSeriesComponent + @ViewChild("polarLineSeries2", { static: true } ) + private polarLineSeries2: IgxPolarLineSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _boatSailingData: BoatSailingData = null; public get boatSailingData(): BoatSailingData { if (this._boatSailingData == null) @@ -38,5 +35,13 @@ export class AppComponent { return this._boatSailingData; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/polar-scatter-chart/src/app.component.ts b/samples/charts/data-chart/polar-scatter-chart/src/app.component.ts index dd872b853..03ceb77a4 100644 --- a/samples/charts/data-chart/polar-scatter-chart/src/app.component.ts +++ b/samples/charts/data-chart/polar-scatter-chart/src/app.component.ts @@ -8,25 +8,22 @@ import { IgxDataChartComponent, IgxNumericAngleAxisComponent, IgxNumericRadiusAx templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("angleAxis", { static: true } ) - private angleAxis: IgxNumericAngleAxisComponent - @ViewChild("radiusAxis", { static: true } ) - private radiusAxis: IgxNumericRadiusAxisComponent - @ViewChild("polarScatterSeries1", { static: true } ) - private polarScatterSeries1: IgxPolarScatterSeriesComponent - @ViewChild("polarScatterSeries2", { static: true } ) - private polarScatterSeries2: IgxPolarScatterSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("angleAxis", { static: true } ) + private angleAxis: IgxNumericAngleAxisComponent + @ViewChild("radiusAxis", { static: true } ) + private radiusAxis: IgxNumericRadiusAxisComponent + @ViewChild("polarScatterSeries1", { static: true } ) + private polarScatterSeries1: IgxPolarScatterSeriesComponent + @ViewChild("polarScatterSeries2", { static: true } ) + private polarScatterSeries2: IgxPolarScatterSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _boatSailingData: BoatSailingData = null; public get boatSailingData(): BoatSailingData { if (this._boatSailingData == null) @@ -36,5 +33,13 @@ export class AppComponent { return this._boatSailingData; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/polar-spline-area-chart/src/app.component.ts b/samples/charts/data-chart/polar-spline-area-chart/src/app.component.ts index ae65fce59..52c2c3a8c 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/src/app.component.ts +++ b/samples/charts/data-chart/polar-spline-area-chart/src/app.component.ts @@ -8,25 +8,22 @@ import { IgxDataChartComponent, IgxNumericAngleAxisComponent, IgxNumericRadiusAx templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("angleAxis", { static: true } ) - private angleAxis: IgxNumericAngleAxisComponent - @ViewChild("radiusAxis", { static: true } ) - private radiusAxis: IgxNumericRadiusAxisComponent - @ViewChild("polarSplineAreaSeries1", { static: true } ) - private polarSplineAreaSeries1: IgxPolarSplineAreaSeriesComponent - @ViewChild("polarSplineAreaSeries2", { static: true } ) - private polarSplineAreaSeries2: IgxPolarSplineAreaSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("angleAxis", { static: true } ) + private angleAxis: IgxNumericAngleAxisComponent + @ViewChild("radiusAxis", { static: true } ) + private radiusAxis: IgxNumericRadiusAxisComponent + @ViewChild("polarSplineAreaSeries1", { static: true } ) + private polarSplineAreaSeries1: IgxPolarSplineAreaSeriesComponent + @ViewChild("polarSplineAreaSeries2", { static: true } ) + private polarSplineAreaSeries2: IgxPolarSplineAreaSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _boatSailingData: BoatSailingData = null; public get boatSailingData(): BoatSailingData { if (this._boatSailingData == null) @@ -36,5 +33,13 @@ export class AppComponent { return this._boatSailingData; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/polar-spline-chart/src/app.component.ts b/samples/charts/data-chart/polar-spline-chart/src/app.component.ts index eb4e68596..99447b199 100644 --- a/samples/charts/data-chart/polar-spline-chart/src/app.component.ts +++ b/samples/charts/data-chart/polar-spline-chart/src/app.component.ts @@ -8,25 +8,22 @@ import { IgxDataChartComponent, IgxNumericAngleAxisComponent, IgxNumericRadiusAx templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("angleAxis", { static: true } ) - private angleAxis: IgxNumericAngleAxisComponent - @ViewChild("radiusAxis", { static: true } ) - private radiusAxis: IgxNumericRadiusAxisComponent - @ViewChild("polarSplineSeries1", { static: true } ) - private polarSplineSeries1: IgxPolarSplineSeriesComponent - @ViewChild("polarSplineSeries2", { static: true } ) - private polarSplineSeries2: IgxPolarSplineSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("angleAxis", { static: true } ) + private angleAxis: IgxNumericAngleAxisComponent + @ViewChild("radiusAxis", { static: true } ) + private radiusAxis: IgxNumericRadiusAxisComponent + @ViewChild("polarSplineSeries1", { static: true } ) + private polarSplineSeries1: IgxPolarSplineSeriesComponent + @ViewChild("polarSplineSeries2", { static: true } ) + private polarSplineSeries2: IgxPolarSplineSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _boatSailingData: BoatSailingData = null; public get boatSailingData(): BoatSailingData { if (this._boatSailingData == null) @@ -36,5 +33,13 @@ export class AppComponent { return this._boatSailingData; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/radial-area-chart-styling/src/app.component.ts b/samples/charts/data-chart/radial-area-chart-styling/src/app.component.ts index 3536280bc..a6609b0db 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/src/app.component.ts +++ b/samples/charts/data-chart/radial-area-chart-styling/src/app.component.ts @@ -8,25 +8,22 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryAngleAxisComponen templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("angleAxis", { static: true } ) - private angleAxis: IgxCategoryAngleAxisComponent - @ViewChild("radiusAxis", { static: true } ) - private radiusAxis: IgxNumericRadiusAxisComponent - @ViewChild("radialAreaSeries1", { static: true } ) - private radialAreaSeries1: IgxRadialAreaSeriesComponent - @ViewChild("radialAreaSeries2", { static: true } ) - private radialAreaSeries2: IgxRadialAreaSeriesComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("angleAxis", { static: true } ) + private angleAxis: IgxCategoryAngleAxisComponent + @ViewChild("radiusAxis", { static: true } ) + private radiusAxis: IgxNumericRadiusAxisComponent + @ViewChild("radialAreaSeries1", { static: true } ) + private radialAreaSeries1: IgxRadialAreaSeriesComponent + @ViewChild("radialAreaSeries2", { static: true } ) + private radialAreaSeries2: IgxRadialAreaSeriesComponent private _footballPlayerStats: FootballPlayerStats = null; public get footballPlayerStats(): FootballPlayerStats { if (this._footballPlayerStats == null) @@ -36,5 +33,13 @@ export class AppComponent { return this._footballPlayerStats; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/radial-area-chart/src/app.component.ts b/samples/charts/data-chart/radial-area-chart/src/app.component.ts index 9e2b52823..2b8c9b3f3 100644 --- a/samples/charts/data-chart/radial-area-chart/src/app.component.ts +++ b/samples/charts/data-chart/radial-area-chart/src/app.component.ts @@ -8,27 +8,24 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryAngleAxisComponen templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("angleAxis", { static: true } ) - private angleAxis: IgxCategoryAngleAxisComponent - @ViewChild("radiusAxis", { static: true } ) - private radiusAxis: IgxNumericRadiusAxisComponent - @ViewChild("radialAreaSeries1", { static: true } ) - private radialAreaSeries1: IgxRadialAreaSeriesComponent - @ViewChild("radialAreaSeries2", { static: true } ) - private radialAreaSeries2: IgxRadialAreaSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("angleAxis", { static: true } ) + private angleAxis: IgxCategoryAngleAxisComponent + @ViewChild("radiusAxis", { static: true } ) + private radiusAxis: IgxNumericRadiusAxisComponent + @ViewChild("radialAreaSeries1", { static: true } ) + private radialAreaSeries1: IgxRadialAreaSeriesComponent + @ViewChild("radialAreaSeries2", { static: true } ) + private radialAreaSeries2: IgxRadialAreaSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _footballPlayerStats: FootballPlayerStats = null; public get footballPlayerStats(): FootballPlayerStats { if (this._footballPlayerStats == null) @@ -38,5 +35,13 @@ export class AppComponent { return this._footballPlayerStats; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/radial-column-chart/src/app.component.ts b/samples/charts/data-chart/radial-column-chart/src/app.component.ts index 6f2ca8919..6f51ac4c9 100644 --- a/samples/charts/data-chart/radial-column-chart/src/app.component.ts +++ b/samples/charts/data-chart/radial-column-chart/src/app.component.ts @@ -8,27 +8,24 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryAngleAxisComponen templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("angleAxis", { static: true } ) - private angleAxis: IgxCategoryAngleAxisComponent - @ViewChild("radiusAxis", { static: true } ) - private radiusAxis: IgxNumericRadiusAxisComponent - @ViewChild("radialColumnSeries1", { static: true } ) - private radialColumnSeries1: IgxRadialColumnSeriesComponent - @ViewChild("radialColumnSeries2", { static: true } ) - private radialColumnSeries2: IgxRadialColumnSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("angleAxis", { static: true } ) + private angleAxis: IgxCategoryAngleAxisComponent + @ViewChild("radiusAxis", { static: true } ) + private radiusAxis: IgxNumericRadiusAxisComponent + @ViewChild("radialColumnSeries1", { static: true } ) + private radialColumnSeries1: IgxRadialColumnSeriesComponent + @ViewChild("radialColumnSeries2", { static: true } ) + private radialColumnSeries2: IgxRadialColumnSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _footballPlayerStats: FootballPlayerStats = null; public get footballPlayerStats(): FootballPlayerStats { if (this._footballPlayerStats == null) @@ -38,5 +35,13 @@ export class AppComponent { return this._footballPlayerStats; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/radial-line-chart/src/app.component.ts b/samples/charts/data-chart/radial-line-chart/src/app.component.ts index acc1445d4..cda60a81a 100644 --- a/samples/charts/data-chart/radial-line-chart/src/app.component.ts +++ b/samples/charts/data-chart/radial-line-chart/src/app.component.ts @@ -8,27 +8,24 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryAngleAxisComponen templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("angleAxis", { static: true } ) - private angleAxis: IgxCategoryAngleAxisComponent - @ViewChild("radiusAxis", { static: true } ) - private radiusAxis: IgxNumericRadiusAxisComponent - @ViewChild("radialLineSeries1", { static: true } ) - private radialLineSeries1: IgxRadialLineSeriesComponent - @ViewChild("radialLineSeries2", { static: true } ) - private radialLineSeries2: IgxRadialLineSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("angleAxis", { static: true } ) + private angleAxis: IgxCategoryAngleAxisComponent + @ViewChild("radiusAxis", { static: true } ) + private radiusAxis: IgxNumericRadiusAxisComponent + @ViewChild("radialLineSeries1", { static: true } ) + private radialLineSeries1: IgxRadialLineSeriesComponent + @ViewChild("radialLineSeries2", { static: true } ) + private radialLineSeries2: IgxRadialLineSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _footballPlayerStats: FootballPlayerStats = null; public get footballPlayerStats(): FootballPlayerStats { if (this._footballPlayerStats == null) @@ -38,5 +35,13 @@ export class AppComponent { return this._footballPlayerStats; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/radial-pie-chart/src/app.component.ts b/samples/charts/data-chart/radial-pie-chart/src/app.component.ts index 214a1aeaf..077457f00 100644 --- a/samples/charts/data-chart/radial-pie-chart/src/app.component.ts +++ b/samples/charts/data-chart/radial-pie-chart/src/app.component.ts @@ -8,27 +8,24 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryAngleAxisComponen templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("angleAxis", { static: true } ) - private angleAxis: IgxCategoryAngleAxisComponent - @ViewChild("radiusAxis", { static: true } ) - private radiusAxis: IgxNumericRadiusAxisComponent - @ViewChild("radialPieSeries1", { static: true } ) - private radialPieSeries1: IgxRadialPieSeriesComponent - @ViewChild("radialPieSeries2", { static: true } ) - private radialPieSeries2: IgxRadialPieSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("angleAxis", { static: true } ) + private angleAxis: IgxCategoryAngleAxisComponent + @ViewChild("radiusAxis", { static: true } ) + private radiusAxis: IgxNumericRadiusAxisComponent + @ViewChild("radialPieSeries1", { static: true } ) + private radialPieSeries1: IgxRadialPieSeriesComponent + @ViewChild("radialPieSeries2", { static: true } ) + private radialPieSeries2: IgxRadialPieSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _footballPlayerStats: FootballPlayerStats = null; public get footballPlayerStats(): FootballPlayerStats { if (this._footballPlayerStats == null) @@ -38,5 +35,13 @@ export class AppComponent { return this._footballPlayerStats; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/range-area-chart/src/app.component.ts b/samples/charts/data-chart/range-area-chart/src/app.component.ts index b8e4d2ed8..d15f056a7 100644 --- a/samples/charts/data-chart/range-area-chart/src/app.component.ts +++ b/samples/charts/data-chart/range-area-chart/src/app.component.ts @@ -8,27 +8,24 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("rangeAreaSeries1", { static: true } ) - private rangeAreaSeries1: IgxRangeAreaSeriesComponent - @ViewChild("rangeAreaSeries2", { static: true } ) - private rangeAreaSeries2: IgxRangeAreaSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("rangeAreaSeries1", { static: true } ) + private rangeAreaSeries1: IgxRangeAreaSeriesComponent + @ViewChild("rangeAreaSeries2", { static: true } ) + private rangeAreaSeries2: IgxRangeAreaSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _temperatureRangeData: TemperatureRangeData = null; public get temperatureRangeData(): TemperatureRangeData { if (this._temperatureRangeData == null) @@ -38,5 +35,13 @@ export class AppComponent { return this._temperatureRangeData; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/range-column-chart/src/app.component.ts b/samples/charts/data-chart/range-column-chart/src/app.component.ts index 5054bcbbd..d2fada297 100644 --- a/samples/charts/data-chart/range-column-chart/src/app.component.ts +++ b/samples/charts/data-chart/range-column-chart/src/app.component.ts @@ -8,27 +8,24 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("rangeColumnSeries1", { static: true } ) - private rangeColumnSeries1: IgxRangeColumnSeriesComponent - @ViewChild("rangeColumnSeries2", { static: true } ) - private rangeColumnSeries2: IgxRangeColumnSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("rangeColumnSeries1", { static: true } ) + private rangeColumnSeries1: IgxRangeColumnSeriesComponent + @ViewChild("rangeColumnSeries2", { static: true } ) + private rangeColumnSeries2: IgxRangeColumnSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _temperatureRangeData: TemperatureRangeData = null; public get temperatureRangeData(): TemperatureRangeData { if (this._temperatureRangeData == null) @@ -38,5 +35,13 @@ export class AppComponent { return this._temperatureRangeData; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/scatter-line-chart/src/app.component.ts b/samples/charts/data-chart/scatter-line-chart/src/app.component.ts index 625a2a234..37d653fd6 100644 --- a/samples/charts/data-chart/scatter-line-chart/src/app.component.ts +++ b/samples/charts/data-chart/scatter-line-chart/src/app.component.ts @@ -9,27 +9,24 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, Ig templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxNumericXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("scatterLineSeries1", { static: true } ) - private scatterLineSeries1: IgxScatterLineSeriesComponent - @ViewChild("scatterLineSeries2", { static: true } ) - private scatterLineSeries2: IgxScatterLineSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("scatterLineSeries1", { static: true } ) + private scatterLineSeries1: IgxScatterLineSeriesComponent + @ViewChild("scatterLineSeries2", { static: true } ) + private scatterLineSeries2: IgxScatterLineSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _healthDataForGermany: HealthDataForGermany = null; public get healthDataForGermany(): HealthDataForGermany { if (this._healthDataForGermany == null) @@ -48,5 +45,13 @@ export class AppComponent { return this._healthDataForFrance; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/scatter-point-chart/src/app.component.ts b/samples/charts/data-chart/scatter-point-chart/src/app.component.ts index 8fc50a7c9..769f5bf3c 100644 --- a/samples/charts/data-chart/scatter-point-chart/src/app.component.ts +++ b/samples/charts/data-chart/scatter-point-chart/src/app.component.ts @@ -9,25 +9,22 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, Ig templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxNumericXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("scatterSeries1", { static: true } ) - private scatterSeries1: IgxScatterSeriesComponent - @ViewChild("scatterSeries2", { static: true } ) - private scatterSeries2: IgxScatterSeriesComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("scatterSeries1", { static: true } ) + private scatterSeries1: IgxScatterSeriesComponent + @ViewChild("scatterSeries2", { static: true } ) + private scatterSeries2: IgxScatterSeriesComponent private _countryDemographicEurope: CountryDemographicEurope = null; public get countryDemographicEurope(): CountryDemographicEurope { if (this._countryDemographicEurope == null) @@ -46,5 +43,13 @@ export class AppComponent { return this._countryDemographicAfrican; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/scatter-spline-chart/src/app.component.ts b/samples/charts/data-chart/scatter-spline-chart/src/app.component.ts index 98dd3f6f7..6598143e8 100644 --- a/samples/charts/data-chart/scatter-spline-chart/src/app.component.ts +++ b/samples/charts/data-chart/scatter-spline-chart/src/app.component.ts @@ -9,27 +9,24 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, Ig templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxNumericXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("scatterSplineSeries1", { static: true } ) - private scatterSplineSeries1: IgxScatterSplineSeriesComponent - @ViewChild("scatterSplineSeries2", { static: true } ) - private scatterSplineSeries2: IgxScatterSplineSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("scatterSplineSeries1", { static: true } ) + private scatterSplineSeries1: IgxScatterSplineSeriesComponent + @ViewChild("scatterSplineSeries2", { static: true } ) + private scatterSplineSeries2: IgxScatterSplineSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _healthDataForGermany: HealthDataForGermany = null; public get healthDataForGermany(): HealthDataForGermany { if (this._healthDataForGermany == null) @@ -48,5 +45,13 @@ export class AppComponent { return this._healthDataForFrance; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/stacked-100-area-chart/src/app.component.ts b/samples/charts/data-chart/stacked-100-area-chart/src/app.component.ts index 316ad432f..5f308e1bf 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-100-area-chart/src/app.component.ts @@ -8,35 +8,32 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("stacked100AreaSeries", { static: true } ) - private stacked100AreaSeries: IgxStacked100AreaSeriesComponent - @ViewChild("s1", { static: true } ) - private s1: IgxStackedFragmentSeriesComponent - @ViewChild("s2", { static: true } ) - private s2: IgxStackedFragmentSeriesComponent - @ViewChild("s3", { static: true } ) - private s3: IgxStackedFragmentSeriesComponent - @ViewChild("s4", { static: true } ) - private s4: IgxStackedFragmentSeriesComponent - @ViewChild("s5", { static: true } ) - private s5: IgxStackedFragmentSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("stacked100AreaSeries", { static: true } ) + private stacked100AreaSeries: IgxStacked100AreaSeriesComponent + @ViewChild("s1", { static: true } ) + private s1: IgxStackedFragmentSeriesComponent + @ViewChild("s2", { static: true } ) + private s2: IgxStackedFragmentSeriesComponent + @ViewChild("s3", { static: true } ) + private s3: IgxStackedFragmentSeriesComponent + @ViewChild("s4", { static: true } ) + private s4: IgxStackedFragmentSeriesComponent + @ViewChild("s5", { static: true } ) + private s5: IgxStackedFragmentSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _continentsBirthRate: ContinentsBirthRate = null; public get continentsBirthRate(): ContinentsBirthRate { if (this._continentsBirthRate == null) @@ -46,5 +43,13 @@ export class AppComponent { return this._continentsBirthRate; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/src/app.component.ts b/samples/charts/data-chart/stacked-100-bar-chart/src/app.component.ts index f308726d8..0a2f7e75d 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-100-bar-chart/src/app.component.ts @@ -8,33 +8,30 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryYAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxCategoryYAxisComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxNumericXAxisComponent - @ViewChild("stacked100BarSeries", { static: true } ) - private stacked100BarSeries: IgxStacked100BarSeriesComponent - @ViewChild("s1", { static: true } ) - private s1: IgxStackedFragmentSeriesComponent - @ViewChild("s2", { static: true } ) - private s2: IgxStackedFragmentSeriesComponent - @ViewChild("s3", { static: true } ) - private s3: IgxStackedFragmentSeriesComponent - @ViewChild("s4", { static: true } ) - private s4: IgxStackedFragmentSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxCategoryYAxisComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + @ViewChild("stacked100BarSeries", { static: true } ) + private stacked100BarSeries: IgxStacked100BarSeriesComponent + @ViewChild("s1", { static: true } ) + private s1: IgxStackedFragmentSeriesComponent + @ViewChild("s2", { static: true } ) + private s2: IgxStackedFragmentSeriesComponent + @ViewChild("s3", { static: true } ) + private s3: IgxStackedFragmentSeriesComponent + @ViewChild("s4", { static: true } ) + private s4: IgxStackedFragmentSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _energyRenewableConsumption: EnergyRenewableConsumption = null; public get energyRenewableConsumption(): EnergyRenewableConsumption { if (this._energyRenewableConsumption == null) @@ -44,5 +41,13 @@ export class AppComponent { return this._energyRenewableConsumption; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/stacked-100-column-chart/src/app.component.ts b/samples/charts/data-chart/stacked-100-column-chart/src/app.component.ts index 682c54027..b4e5c86a8 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-100-column-chart/src/app.component.ts @@ -8,31 +8,28 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("stacked100ColumnSeries", { static: true } ) - private stacked100ColumnSeries: IgxStacked100ColumnSeriesComponent - @ViewChild("s1", { static: true } ) - private s1: IgxStackedFragmentSeriesComponent - @ViewChild("s2", { static: true } ) - private s2: IgxStackedFragmentSeriesComponent - @ViewChild("s3", { static: true } ) - private s3: IgxStackedFragmentSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("stacked100ColumnSeries", { static: true } ) + private stacked100ColumnSeries: IgxStacked100ColumnSeriesComponent + @ViewChild("s1", { static: true } ) + private s1: IgxStackedFragmentSeriesComponent + @ViewChild("s2", { static: true } ) + private s2: IgxStackedFragmentSeriesComponent + @ViewChild("s3", { static: true } ) + private s3: IgxStackedFragmentSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _onlineTrafficByDevice: OnlineTrafficByDevice = null; public get onlineTrafficByDevice(): OnlineTrafficByDevice { if (this._onlineTrafficByDevice == null) @@ -42,5 +39,13 @@ export class AppComponent { return this._onlineTrafficByDevice; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/stacked-100-line-chart/src/app.component.ts b/samples/charts/data-chart/stacked-100-line-chart/src/app.component.ts index 3d0017c14..7f5cc0c7e 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-100-line-chart/src/app.component.ts @@ -8,35 +8,32 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("stacked100LineSeries", { static: true } ) - private stacked100LineSeries: IgxStacked100LineSeriesComponent - @ViewChild("s1", { static: true } ) - private s1: IgxStackedFragmentSeriesComponent - @ViewChild("s2", { static: true } ) - private s2: IgxStackedFragmentSeriesComponent - @ViewChild("s3", { static: true } ) - private s3: IgxStackedFragmentSeriesComponent - @ViewChild("s4", { static: true } ) - private s4: IgxStackedFragmentSeriesComponent - @ViewChild("s5", { static: true } ) - private s5: IgxStackedFragmentSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("stacked100LineSeries", { static: true } ) + private stacked100LineSeries: IgxStacked100LineSeriesComponent + @ViewChild("s1", { static: true } ) + private s1: IgxStackedFragmentSeriesComponent + @ViewChild("s2", { static: true } ) + private s2: IgxStackedFragmentSeriesComponent + @ViewChild("s3", { static: true } ) + private s3: IgxStackedFragmentSeriesComponent + @ViewChild("s4", { static: true } ) + private s4: IgxStackedFragmentSeriesComponent + @ViewChild("s5", { static: true } ) + private s5: IgxStackedFragmentSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _continentsBirthRate: ContinentsBirthRate = null; public get continentsBirthRate(): ContinentsBirthRate { if (this._continentsBirthRate == null) @@ -46,5 +43,13 @@ export class AppComponent { return this._continentsBirthRate; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.component.ts b/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.component.ts index 244966e96..fc41c6d30 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.component.ts @@ -8,35 +8,32 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("stacked100SplineAreaSeries", { static: true } ) - private stacked100SplineAreaSeries: IgxStacked100SplineAreaSeriesComponent - @ViewChild("s1", { static: true } ) - private s1: IgxStackedFragmentSeriesComponent - @ViewChild("s2", { static: true } ) - private s2: IgxStackedFragmentSeriesComponent - @ViewChild("s3", { static: true } ) - private s3: IgxStackedFragmentSeriesComponent - @ViewChild("s4", { static: true } ) - private s4: IgxStackedFragmentSeriesComponent - @ViewChild("s5", { static: true } ) - private s5: IgxStackedFragmentSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("stacked100SplineAreaSeries", { static: true } ) + private stacked100SplineAreaSeries: IgxStacked100SplineAreaSeriesComponent + @ViewChild("s1", { static: true } ) + private s1: IgxStackedFragmentSeriesComponent + @ViewChild("s2", { static: true } ) + private s2: IgxStackedFragmentSeriesComponent + @ViewChild("s3", { static: true } ) + private s3: IgxStackedFragmentSeriesComponent + @ViewChild("s4", { static: true } ) + private s4: IgxStackedFragmentSeriesComponent + @ViewChild("s5", { static: true } ) + private s5: IgxStackedFragmentSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _continentsBirthRate: ContinentsBirthRate = null; public get continentsBirthRate(): ContinentsBirthRate { if (this._continentsBirthRate == null) @@ -46,5 +43,13 @@ export class AppComponent { return this._continentsBirthRate; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/src/app.component.ts b/samples/charts/data-chart/stacked-100-spline-chart/src/app.component.ts index 2589d7d2c..5bf7866f7 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-100-spline-chart/src/app.component.ts @@ -8,35 +8,32 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("stacked100SplineSeries", { static: true } ) - private stacked100SplineSeries: IgxStacked100SplineSeriesComponent - @ViewChild("s1", { static: true } ) - private s1: IgxStackedFragmentSeriesComponent - @ViewChild("s2", { static: true } ) - private s2: IgxStackedFragmentSeriesComponent - @ViewChild("s3", { static: true } ) - private s3: IgxStackedFragmentSeriesComponent - @ViewChild("s4", { static: true } ) - private s4: IgxStackedFragmentSeriesComponent - @ViewChild("s5", { static: true } ) - private s5: IgxStackedFragmentSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("stacked100SplineSeries", { static: true } ) + private stacked100SplineSeries: IgxStacked100SplineSeriesComponent + @ViewChild("s1", { static: true } ) + private s1: IgxStackedFragmentSeriesComponent + @ViewChild("s2", { static: true } ) + private s2: IgxStackedFragmentSeriesComponent + @ViewChild("s3", { static: true } ) + private s3: IgxStackedFragmentSeriesComponent + @ViewChild("s4", { static: true } ) + private s4: IgxStackedFragmentSeriesComponent + @ViewChild("s5", { static: true } ) + private s5: IgxStackedFragmentSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _continentsBirthRate: ContinentsBirthRate = null; public get continentsBirthRate(): ContinentsBirthRate { if (this._continentsBirthRate == null) @@ -46,5 +43,13 @@ export class AppComponent { return this._continentsBirthRate; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/stacked-area-chart/src/app.component.ts b/samples/charts/data-chart/stacked-area-chart/src/app.component.ts index fcdbec8c6..a3fb6e0ba 100644 --- a/samples/charts/data-chart/stacked-area-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-area-chart/src/app.component.ts @@ -8,35 +8,32 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("stackedAreaSeries", { static: true } ) - private stackedAreaSeries: IgxStackedAreaSeriesComponent - @ViewChild("s1", { static: true } ) - private s1: IgxStackedFragmentSeriesComponent - @ViewChild("s2", { static: true } ) - private s2: IgxStackedFragmentSeriesComponent - @ViewChild("s3", { static: true } ) - private s3: IgxStackedFragmentSeriesComponent - @ViewChild("s4", { static: true } ) - private s4: IgxStackedFragmentSeriesComponent - @ViewChild("s5", { static: true } ) - private s5: IgxStackedFragmentSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("stackedAreaSeries", { static: true } ) + private stackedAreaSeries: IgxStackedAreaSeriesComponent + @ViewChild("s1", { static: true } ) + private s1: IgxStackedFragmentSeriesComponent + @ViewChild("s2", { static: true } ) + private s2: IgxStackedFragmentSeriesComponent + @ViewChild("s3", { static: true } ) + private s3: IgxStackedFragmentSeriesComponent + @ViewChild("s4", { static: true } ) + private s4: IgxStackedFragmentSeriesComponent + @ViewChild("s5", { static: true } ) + private s5: IgxStackedFragmentSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _continentsBirthRate: ContinentsBirthRate = null; public get continentsBirthRate(): ContinentsBirthRate { if (this._continentsBirthRate == null) @@ -46,5 +43,13 @@ export class AppComponent { return this._continentsBirthRate; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/stacked-bar-chart/src/app.component.ts b/samples/charts/data-chart/stacked-bar-chart/src/app.component.ts index f11027d5d..81efffc19 100644 --- a/samples/charts/data-chart/stacked-bar-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-bar-chart/src/app.component.ts @@ -8,33 +8,30 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryYAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxCategoryYAxisComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxNumericXAxisComponent - @ViewChild("stackedBarSeries", { static: true } ) - private stackedBarSeries: IgxStackedBarSeriesComponent - @ViewChild("s1", { static: true } ) - private s1: IgxStackedFragmentSeriesComponent - @ViewChild("s2", { static: true } ) - private s2: IgxStackedFragmentSeriesComponent - @ViewChild("s3", { static: true } ) - private s3: IgxStackedFragmentSeriesComponent - @ViewChild("s4", { static: true } ) - private s4: IgxStackedFragmentSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxCategoryYAxisComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + @ViewChild("stackedBarSeries", { static: true } ) + private stackedBarSeries: IgxStackedBarSeriesComponent + @ViewChild("s1", { static: true } ) + private s1: IgxStackedFragmentSeriesComponent + @ViewChild("s2", { static: true } ) + private s2: IgxStackedFragmentSeriesComponent + @ViewChild("s3", { static: true } ) + private s3: IgxStackedFragmentSeriesComponent + @ViewChild("s4", { static: true } ) + private s4: IgxStackedFragmentSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _energyRenewableConsumption: EnergyRenewableConsumption = null; public get energyRenewableConsumption(): EnergyRenewableConsumption { if (this._energyRenewableConsumption == null) @@ -44,5 +41,13 @@ export class AppComponent { return this._energyRenewableConsumption; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/stacked-column-chart/src/app.component.ts b/samples/charts/data-chart/stacked-column-chart/src/app.component.ts index 4cdb1547e..6e6694553 100644 --- a/samples/charts/data-chart/stacked-column-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-column-chart/src/app.component.ts @@ -8,35 +8,32 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("stackedColumnSeries", { static: true } ) - private stackedColumnSeries: IgxStackedColumnSeriesComponent - @ViewChild("s1", { static: true } ) - private s1: IgxStackedFragmentSeriesComponent - @ViewChild("s2", { static: true } ) - private s2: IgxStackedFragmentSeriesComponent - @ViewChild("s3", { static: true } ) - private s3: IgxStackedFragmentSeriesComponent - @ViewChild("s4", { static: true } ) - private s4: IgxStackedFragmentSeriesComponent - @ViewChild("s5", { static: true } ) - private s5: IgxStackedFragmentSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("stackedColumnSeries", { static: true } ) + private stackedColumnSeries: IgxStackedColumnSeriesComponent + @ViewChild("s1", { static: true } ) + private s1: IgxStackedFragmentSeriesComponent + @ViewChild("s2", { static: true } ) + private s2: IgxStackedFragmentSeriesComponent + @ViewChild("s3", { static: true } ) + private s3: IgxStackedFragmentSeriesComponent + @ViewChild("s4", { static: true } ) + private s4: IgxStackedFragmentSeriesComponent + @ViewChild("s5", { static: true } ) + private s5: IgxStackedFragmentSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _continentsBirthRate: ContinentsBirthRate = null; public get continentsBirthRate(): ContinentsBirthRate { if (this._continentsBirthRate == null) @@ -46,5 +43,13 @@ export class AppComponent { return this._continentsBirthRate; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/stacked-line-chart/src/app.component.ts b/samples/charts/data-chart/stacked-line-chart/src/app.component.ts index bb9ed1e3a..bde10a552 100644 --- a/samples/charts/data-chart/stacked-line-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-line-chart/src/app.component.ts @@ -8,35 +8,32 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("stackedLineSeries", { static: true } ) - private stackedLineSeries: IgxStackedLineSeriesComponent - @ViewChild("s1", { static: true } ) - private s1: IgxStackedFragmentSeriesComponent - @ViewChild("s2", { static: true } ) - private s2: IgxStackedFragmentSeriesComponent - @ViewChild("s3", { static: true } ) - private s3: IgxStackedFragmentSeriesComponent - @ViewChild("s4", { static: true } ) - private s4: IgxStackedFragmentSeriesComponent - @ViewChild("s5", { static: true } ) - private s5: IgxStackedFragmentSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("stackedLineSeries", { static: true } ) + private stackedLineSeries: IgxStackedLineSeriesComponent + @ViewChild("s1", { static: true } ) + private s1: IgxStackedFragmentSeriesComponent + @ViewChild("s2", { static: true } ) + private s2: IgxStackedFragmentSeriesComponent + @ViewChild("s3", { static: true } ) + private s3: IgxStackedFragmentSeriesComponent + @ViewChild("s4", { static: true } ) + private s4: IgxStackedFragmentSeriesComponent + @ViewChild("s5", { static: true } ) + private s5: IgxStackedFragmentSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _continentsBirthRate: ContinentsBirthRate = null; public get continentsBirthRate(): ContinentsBirthRate { if (this._continentsBirthRate == null) @@ -46,5 +43,13 @@ export class AppComponent { return this._continentsBirthRate; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/stacked-spline-area-chart/src/app.component.ts b/samples/charts/data-chart/stacked-spline-area-chart/src/app.component.ts index 8377c2290..198cc13c8 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-spline-area-chart/src/app.component.ts @@ -8,35 +8,32 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("stackedSplineAreaSeries", { static: true } ) - private stackedSplineAreaSeries: IgxStackedSplineAreaSeriesComponent - @ViewChild("s1", { static: true } ) - private s1: IgxStackedFragmentSeriesComponent - @ViewChild("s2", { static: true } ) - private s2: IgxStackedFragmentSeriesComponent - @ViewChild("s3", { static: true } ) - private s3: IgxStackedFragmentSeriesComponent - @ViewChild("s4", { static: true } ) - private s4: IgxStackedFragmentSeriesComponent - @ViewChild("s5", { static: true } ) - private s5: IgxStackedFragmentSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("stackedSplineAreaSeries", { static: true } ) + private stackedSplineAreaSeries: IgxStackedSplineAreaSeriesComponent + @ViewChild("s1", { static: true } ) + private s1: IgxStackedFragmentSeriesComponent + @ViewChild("s2", { static: true } ) + private s2: IgxStackedFragmentSeriesComponent + @ViewChild("s3", { static: true } ) + private s3: IgxStackedFragmentSeriesComponent + @ViewChild("s4", { static: true } ) + private s4: IgxStackedFragmentSeriesComponent + @ViewChild("s5", { static: true } ) + private s5: IgxStackedFragmentSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _continentsBirthRate: ContinentsBirthRate = null; public get continentsBirthRate(): ContinentsBirthRate { if (this._continentsBirthRate == null) @@ -46,5 +43,13 @@ export class AppComponent { return this._continentsBirthRate; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/stacked-spline-chart/src/app.component.ts b/samples/charts/data-chart/stacked-spline-chart/src/app.component.ts index 623d1e625..d37dd2475 100644 --- a/samples/charts/data-chart/stacked-spline-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-spline-chart/src/app.component.ts @@ -8,35 +8,32 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, I templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("stackedSplineSeries", { static: true } ) - private stackedSplineSeries: IgxStackedSplineSeriesComponent - @ViewChild("s1", { static: true } ) - private s1: IgxStackedFragmentSeriesComponent - @ViewChild("s2", { static: true } ) - private s2: IgxStackedFragmentSeriesComponent - @ViewChild("s3", { static: true } ) - private s3: IgxStackedFragmentSeriesComponent - @ViewChild("s4", { static: true } ) - private s4: IgxStackedFragmentSeriesComponent - @ViewChild("s5", { static: true } ) - private s5: IgxStackedFragmentSeriesComponent - @ViewChild("dataToolTipLayer", { static: true } ) - private dataToolTipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("stackedSplineSeries", { static: true } ) + private stackedSplineSeries: IgxStackedSplineSeriesComponent + @ViewChild("s1", { static: true } ) + private s1: IgxStackedFragmentSeriesComponent + @ViewChild("s2", { static: true } ) + private s2: IgxStackedFragmentSeriesComponent + @ViewChild("s3", { static: true } ) + private s3: IgxStackedFragmentSeriesComponent + @ViewChild("s4", { static: true } ) + private s4: IgxStackedFragmentSeriesComponent + @ViewChild("s5", { static: true } ) + private s5: IgxStackedFragmentSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _continentsBirthRate: ContinentsBirthRate = null; public get continentsBirthRate(): ContinentsBirthRate { if (this._continentsBirthRate == null) @@ -46,5 +43,13 @@ export class AppComponent { return this._continentsBirthRate; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/data-chart/transition-event/src/app.component.ts b/samples/charts/data-chart/transition-event/src/app.component.ts index e1398e952..ea3de101f 100644 --- a/samples/charts/data-chart/transition-event/src/app.component.ts +++ b/samples/charts/data-chart/transition-event/src/app.component.ts @@ -16,27 +16,24 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("propertyEditorPropertyDescription1", { static: true } ) - private propertyEditorPropertyDescription1: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("waterfallSeries1", { static: true } ) - private waterfallSeries1: IgxWaterfallSeriesComponent - @ViewChild("waterfallSeries2", { static: true } ) - private waterfallSeries2: IgxWaterfallSeriesComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("propertyEditorPropertyDescription1", { static: true } ) + private propertyEditorPropertyDescription1: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("waterfallSeries1", { static: true } ) + private waterfallSeries1: IgxWaterfallSeriesComponent + @ViewChild("waterfallSeries2", { static: true } ) + private waterfallSeries2: IgxWaterfallSeriesComponent private _companyIncomeData: CompanyIncomeData = null; public get companyIncomeData(): CompanyIncomeData { if (this._companyIncomeData == null) @@ -58,12 +55,20 @@ export class AppComponent { return this._componentRenderer; } - public editorButtonReplayTransitionIn({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionButtonClickEventArgs }): void { - var series = this.chart.actualSeries; - for (var i = 0; i < series.length; i++) { - series[i].replayTransitionIn(); - } - } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + + public editorButtonReplayTransitionIn({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionButtonClickEventArgs }): void { + var series = this.chart.actualSeries; + for (var i = 0; i < series.length; i++) { + series[i].replayTransitionIn(); + } + } } diff --git a/samples/charts/data-chart/waterfall-chart/src/app.component.ts b/samples/charts/data-chart/waterfall-chart/src/app.component.ts index 8c8bd4a1f..8522570c5 100644 --- a/samples/charts/data-chart/waterfall-chart/src/app.component.ts +++ b/samples/charts/data-chart/waterfall-chart/src/app.component.ts @@ -8,23 +8,20 @@ import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisCompon templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("waterfallSeries1", { static: true } ) - private waterfallSeries1: IgxWaterfallSeriesComponent - @ViewChild("waterfallSeries2", { static: true } ) - private waterfallSeries2: IgxWaterfallSeriesComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("waterfallSeries1", { static: true } ) + private waterfallSeries1: IgxWaterfallSeriesComponent + @ViewChild("waterfallSeries2", { static: true } ) + private waterfallSeries2: IgxWaterfallSeriesComponent private _companyIncomeData: CompanyIncomeData = null; public get companyIncomeData(): CompanyIncomeData { if (this._companyIncomeData == null) @@ -34,5 +31,13 @@ export class AppComponent { return this._companyIncomeData; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/doughnut-chart/legend/src/app.component.ts b/samples/charts/doughnut-chart/legend/src/app.component.ts index 0d739d6c5..d7720aa4b 100644 --- a/samples/charts/doughnut-chart/legend/src/app.component.ts +++ b/samples/charts/doughnut-chart/legend/src/app.component.ts @@ -8,19 +8,16 @@ import { IgxItemLegendComponent, IgxDoughnutChartComponent, IgxRingSeriesCompone templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxItemLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDoughnutChartComponent - @ViewChild("series", { static: true } ) - private series: IgxRingSeriesComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxItemLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDoughnutChartComponent + @ViewChild("series", { static: true } ) + private series: IgxRingSeriesComponent private _energyGlobalDemand: EnergyGlobalDemand = null; public get energyGlobalDemand(): EnergyGlobalDemand { if (this._energyGlobalDemand == null) @@ -30,5 +27,13 @@ export class AppComponent { return this._energyGlobalDemand; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/doughnut-chart/overview/src/app.component.ts b/samples/charts/doughnut-chart/overview/src/app.component.ts index 83bca80fd..1ea53ff1f 100644 --- a/samples/charts/doughnut-chart/overview/src/app.component.ts +++ b/samples/charts/doughnut-chart/overview/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxDoughnutChartComponent, IgxRingSeriesComponent } from 'igniteui-angu templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxDoughnutChartComponent - @ViewChild("series", { static: true } ) - private series: IgxRingSeriesComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxDoughnutChartComponent + @ViewChild("series", { static: true } ) + private series: IgxRingSeriesComponent private _companyMarketShares: CompanyMarketShares = null; public get companyMarketShares(): CompanyMarketShares { if (this._companyMarketShares == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._companyMarketShares; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/doughnut-chart/rings/src/app.component.ts b/samples/charts/doughnut-chart/rings/src/app.component.ts index 02737bbce..cd0d244e0 100644 --- a/samples/charts/doughnut-chart/rings/src/app.component.ts +++ b/samples/charts/doughnut-chart/rings/src/app.component.ts @@ -9,19 +9,16 @@ import { IgxDoughnutChartComponent, IgxRingSeriesComponent } from 'igniteui-angu templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxDoughnutChartComponent - @ViewChild("series1", { static: true } ) - private series1: IgxRingSeriesComponent - @ViewChild("series2", { static: true } ) - private series2: IgxRingSeriesComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxDoughnutChartComponent + @ViewChild("series1", { static: true } ) + private series1: IgxRingSeriesComponent + @ViewChild("series2", { static: true } ) + private series2: IgxRingSeriesComponent private _calendarSeasons: CalendarSeasons = null; public get calendarSeasons(): CalendarSeasons { if (this._calendarSeasons == null) @@ -40,5 +37,13 @@ export class AppComponent { return this._calendarMonths; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/src/app.component.ts b/samples/charts/financial-chart/data-legend-formatting-currency/src/app.component.ts index 7ea741dc1..b97b8e7df 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/src/app.component.ts +++ b/samples/charts/financial-chart/data-legend-formatting-currency/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxDataLegendComponent, IgxFinancialChartComponent } from 'igniteui-ang templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxDataLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxFinancialChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxDataLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxFinancialChartComponent private _multipleStocks: MultipleStocks = null; private _multipleStocksFetching: boolean = false; public get multipleStocks(): MultipleStocks { @@ -30,5 +27,13 @@ export class AppComponent { return this._multipleStocks; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/app.component.ts b/samples/charts/financial-chart/data-legend-styling-props/src/app.component.ts index 2c54ead9e..43a3aeb72 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/src/app.component.ts +++ b/samples/charts/financial-chart/data-legend-styling-props/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxDataLegendComponent, IgxFinancialChartComponent } from 'igniteui-ang templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxDataLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxFinancialChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxDataLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxFinancialChartComponent private _stockGoogle: StockGoogle = null; public get stockGoogle(): StockGoogle { if (this._stockGoogle == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._stockGoogle; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/financial-chart/data-legend/src/app.component.ts b/samples/charts/financial-chart/data-legend/src/app.component.ts index 7ea741dc1..b97b8e7df 100644 --- a/samples/charts/financial-chart/data-legend/src/app.component.ts +++ b/samples/charts/financial-chart/data-legend/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxDataLegendComponent, IgxFinancialChartComponent } from 'igniteui-ang templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxDataLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxFinancialChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxDataLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxFinancialChartComponent private _multipleStocks: MultipleStocks = null; private _multipleStocksFetching: boolean = false; public get multipleStocks(): MultipleStocks { @@ -30,5 +27,13 @@ export class AppComponent { return this._multipleStocks; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/app.component.ts b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/app.component.ts index e7d55683f..8b78b3fad 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/app.component.ts +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxFinancialChartComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxFinancialChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxFinancialChartComponent private _multipleStocks: MultipleStocks = null; private _multipleStocksFetching: boolean = false; public get multipleStocks(): MultipleStocks { @@ -28,5 +25,13 @@ export class AppComponent { return this._multipleStocks; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/src/app.component.ts b/samples/charts/financial-chart/data-tooltip-styling-props/src/app.component.ts index 0738ab15b..8b4e015ed 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/src/app.component.ts +++ b/samples/charts/financial-chart/data-tooltip-styling-props/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxFinancialChartComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxFinancialChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxFinancialChartComponent private _stockGoogle: StockGoogle = null; public get stockGoogle(): StockGoogle { if (this._stockGoogle == null) @@ -26,5 +23,13 @@ export class AppComponent { return this._stockGoogle; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/financial-chart/data-tooltip/src/app.component.ts b/samples/charts/financial-chart/data-tooltip/src/app.component.ts index e7d55683f..8b78b3fad 100644 --- a/samples/charts/financial-chart/data-tooltip/src/app.component.ts +++ b/samples/charts/financial-chart/data-tooltip/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxFinancialChartComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxFinancialChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxFinancialChartComponent private _multipleStocks: MultipleStocks = null; private _multipleStocksFetching: boolean = false; public get multipleStocks(): MultipleStocks { @@ -28,5 +25,13 @@ export class AppComponent { return this._multipleStocks; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/financial-chart/format-specifiers/src/app.component.ts b/samples/charts/financial-chart/format-specifiers/src/app.component.ts index 679762bf0..13a978c8f 100644 --- a/samples/charts/financial-chart/format-specifiers/src/app.component.ts +++ b/samples/charts/financial-chart/format-specifiers/src/app.component.ts @@ -9,47 +9,44 @@ import { IgxNumberFormatSpecifier, IgxDateTimeFormatSpecifier } from 'igniteui-a templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { +export class AppComponent implements AfterViewInit +{ - } - - @ViewChild("legend", { static: true } ) - private legend: IgxDataLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxFinancialChartComponent - private _numberFormatSpecifier1: IgxNumberFormatSpecifier[] | null = null; - public get numberFormatSpecifier1(): IgxNumberFormatSpecifier[] { - if (this._numberFormatSpecifier1 == null) - { - let numberFormatSpecifier1: IgxNumberFormatSpecifier[] = []; - var numberFormatSpecifier2 = new IgxNumberFormatSpecifier(); - numberFormatSpecifier2.currency = "EUR"; - numberFormatSpecifier2.style = "currency"; - numberFormatSpecifier2.locale = "en-GB"; - numberFormatSpecifier2.minimumFractionDigits = 0; + @ViewChild("legend", { static: true } ) + private legend: IgxDataLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxFinancialChartComponent + private _numberFormatSpecifier1: IgxNumberFormatSpecifier[] | null = null; + public get numberFormatSpecifier1(): IgxNumberFormatSpecifier[] { + if (this._numberFormatSpecifier1 == null) + { + let numberFormatSpecifier1: IgxNumberFormatSpecifier[] = []; + var numberFormatSpecifier2 = new IgxNumberFormatSpecifier(); + numberFormatSpecifier2.currency = "EUR"; + numberFormatSpecifier2.style = "currency"; + numberFormatSpecifier2.locale = "en-GB"; + numberFormatSpecifier2.minimumFractionDigits = 0; - numberFormatSpecifier1.push(numberFormatSpecifier2) - this._numberFormatSpecifier1 = numberFormatSpecifier1; - } - return this._numberFormatSpecifier1; - } - private _dateTimeFormatSpecifier1: IgxDateTimeFormatSpecifier[] | null = null; - public get dateTimeFormatSpecifier1(): IgxDateTimeFormatSpecifier[] { - if (this._dateTimeFormatSpecifier1 == null) - { - let dateTimeFormatSpecifier1: IgxDateTimeFormatSpecifier[] = []; - var dateTimeFormatSpecifier2 = new IgxDateTimeFormatSpecifier(); - dateTimeFormatSpecifier2.locale = "en-GB"; - dateTimeFormatSpecifier2.dateStyle = "long"; - - dateTimeFormatSpecifier1.push(dateTimeFormatSpecifier2) - this._dateTimeFormatSpecifier1 = dateTimeFormatSpecifier1; - } - return this._dateTimeFormatSpecifier1; - } + numberFormatSpecifier1.push(numberFormatSpecifier2) + this._numberFormatSpecifier1 = numberFormatSpecifier1; + } + return this._numberFormatSpecifier1; + } + private _dateTimeFormatSpecifier1: IgxDateTimeFormatSpecifier[] | null = null; + public get dateTimeFormatSpecifier1(): IgxDateTimeFormatSpecifier[] { + if (this._dateTimeFormatSpecifier1 == null) + { + let dateTimeFormatSpecifier1: IgxDateTimeFormatSpecifier[] = []; + var dateTimeFormatSpecifier2 = new IgxDateTimeFormatSpecifier(); + dateTimeFormatSpecifier2.locale = "en-GB"; + dateTimeFormatSpecifier2.dateStyle = "long"; + dateTimeFormatSpecifier1.push(dateTimeFormatSpecifier2) + this._dateTimeFormatSpecifier1 = dateTimeFormatSpecifier1; + } + return this._dateTimeFormatSpecifier1; + } private _multipleStocks: MultipleStocks = null; private _multipleStocksFetching: boolean = false; public get multipleStocks(): MultipleStocks { @@ -61,5 +58,13 @@ export class AppComponent { return this._multipleStocks; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/financial-chart/scrollbars/src/app.component.ts b/samples/charts/financial-chart/scrollbars/src/app.component.ts index e7d55683f..8b78b3fad 100644 --- a/samples/charts/financial-chart/scrollbars/src/app.component.ts +++ b/samples/charts/financial-chart/scrollbars/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxFinancialChartComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxFinancialChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxFinancialChartComponent private _multipleStocks: MultipleStocks = null; private _multipleStocksFetching: boolean = false; public get multipleStocks(): MultipleStocks { @@ -28,5 +25,13 @@ export class AppComponent { return this._multipleStocks; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/pie-chart/legend/src/app.component.ts b/samples/charts/pie-chart/legend/src/app.component.ts index 39108ff6b..25b540f07 100644 --- a/samples/charts/pie-chart/legend/src/app.component.ts +++ b/samples/charts/pie-chart/legend/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxItemLegendComponent, IgxPieChartComponent } from 'igniteui-angular-c templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxItemLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxPieChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxItemLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxPieChartComponent private _energyGlobalDemand: EnergyGlobalDemand = null; public get energyGlobalDemand(): EnergyGlobalDemand { if (this._energyGlobalDemand == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._energyGlobalDemand; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/pie-chart/others/src/app.component.ts b/samples/charts/pie-chart/others/src/app.component.ts index 39108ff6b..25b540f07 100644 --- a/samples/charts/pie-chart/others/src/app.component.ts +++ b/samples/charts/pie-chart/others/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxItemLegendComponent, IgxPieChartComponent } from 'igniteui-angular-c templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxItemLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxPieChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxItemLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxPieChartComponent private _energyGlobalDemand: EnergyGlobalDemand = null; public get energyGlobalDemand(): EnergyGlobalDemand { if (this._energyGlobalDemand == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._energyGlobalDemand; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/pie-chart/overview/src/app.component.ts b/samples/charts/pie-chart/overview/src/app.component.ts index 39108ff6b..25b540f07 100644 --- a/samples/charts/pie-chart/overview/src/app.component.ts +++ b/samples/charts/pie-chart/overview/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxItemLegendComponent, IgxPieChartComponent } from 'igniteui-angular-c templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxItemLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxPieChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxItemLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxPieChartComponent private _energyGlobalDemand: EnergyGlobalDemand = null; public get energyGlobalDemand(): EnergyGlobalDemand { if (this._energyGlobalDemand == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._energyGlobalDemand; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/pie-chart/styling/src/app.component.ts b/samples/charts/pie-chart/styling/src/app.component.ts index 39108ff6b..25b540f07 100644 --- a/samples/charts/pie-chart/styling/src/app.component.ts +++ b/samples/charts/pie-chart/styling/src/app.component.ts @@ -8,17 +8,14 @@ import { IgxItemLegendComponent, IgxPieChartComponent } from 'igniteui-angular-c templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxItemLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxPieChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxItemLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxPieChartComponent private _energyGlobalDemand: EnergyGlobalDemand = null; public get energyGlobalDemand(): EnergyGlobalDemand { if (this._energyGlobalDemand == null) @@ -28,5 +25,13 @@ export class AppComponent { return this._energyGlobalDemand; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/sparkline/display-area/src/app.component.ts b/samples/charts/sparkline/display-area/src/app.component.ts index 37b16638d..f7abaf08a 100644 --- a/samples/charts/sparkline/display-area/src/app.component.ts +++ b/samples/charts/sparkline/display-area/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxSparklineComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxSparklineComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxSparklineComponent private _sparklineMixedData: SparklineMixedData = null; public get sparklineMixedData(): SparklineMixedData { if (this._sparklineMixedData == null) @@ -26,5 +23,13 @@ export class AppComponent { return this._sparklineMixedData; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/sparkline/display-column/src/app.component.ts b/samples/charts/sparkline/display-column/src/app.component.ts index 37b16638d..f7abaf08a 100644 --- a/samples/charts/sparkline/display-column/src/app.component.ts +++ b/samples/charts/sparkline/display-column/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxSparklineComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxSparklineComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxSparklineComponent private _sparklineMixedData: SparklineMixedData = null; public get sparklineMixedData(): SparklineMixedData { if (this._sparklineMixedData == null) @@ -26,5 +23,13 @@ export class AppComponent { return this._sparklineMixedData; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/sparkline/display-lines/src/app.component.ts b/samples/charts/sparkline/display-lines/src/app.component.ts index 39e22a946..ebe19a3ce 100644 --- a/samples/charts/sparkline/display-lines/src/app.component.ts +++ b/samples/charts/sparkline/display-lines/src/app.component.ts @@ -9,15 +9,12 @@ import { IgxSparklineComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxSparklineComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxSparklineComponent private _sparklineMixedData: SparklineMixedData = null; public get sparklineMixedData(): SparklineMixedData { if (this._sparklineMixedData == null) @@ -38,5 +35,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/sparkline/display-winloss/src/app.component.ts b/samples/charts/sparkline/display-winloss/src/app.component.ts index 37b16638d..f7abaf08a 100644 --- a/samples/charts/sparkline/display-winloss/src/app.component.ts +++ b/samples/charts/sparkline/display-winloss/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxSparklineComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("chart", { static: true } ) - private chart: IgxSparklineComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("chart", { static: true } ) + private chart: IgxSparklineComponent private _sparklineMixedData: SparklineMixedData = null; public get sparklineMixedData(): SparklineMixedData { if (this._sparklineMixedData == null) @@ -26,5 +23,13 @@ export class AppComponent { return this._sparklineMixedData; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/sparkline/markers/src/app.component.ts b/samples/charts/sparkline/markers/src/app.component.ts index 2c2f22c74..e81174723 100644 --- a/samples/charts/sparkline/markers/src/app.component.ts +++ b/samples/charts/sparkline/markers/src/app.component.ts @@ -14,29 +14,26 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("firstMarkerVisibilityEditor", { static: true } ) - private firstMarkerVisibilityEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("highMarkerVisibilityEditor", { static: true } ) - private highMarkerVisibilityEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("lowMarkerVisibilityEditor", { static: true } ) - private lowMarkerVisibilityEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("negativeMarkerVisibilityEditor", { static: true } ) - private negativeMarkerVisibilityEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("lastMarkerVisibilityEditor", { static: true } ) - private lastMarkerVisibilityEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("markerVisibilityEditor", { static: true } ) - private markerVisibilityEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxSparklineComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("firstMarkerVisibilityEditor", { static: true } ) + private firstMarkerVisibilityEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("highMarkerVisibilityEditor", { static: true } ) + private highMarkerVisibilityEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("lowMarkerVisibilityEditor", { static: true } ) + private lowMarkerVisibilityEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("negativeMarkerVisibilityEditor", { static: true } ) + private negativeMarkerVisibilityEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("lastMarkerVisibilityEditor", { static: true } ) + private lastMarkerVisibilityEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("markerVisibilityEditor", { static: true } ) + private markerVisibilityEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxSparklineComponent private _sparklineProfitData: SparklineProfitData = null; public get sparklineProfitData(): SparklineProfitData { if (this._sparklineProfitData == null) @@ -57,5 +54,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/sparkline/normal-range/src/app.component.ts b/samples/charts/sparkline/normal-range/src/app.component.ts index a8725aea5..d4c79364b 100644 --- a/samples/charts/sparkline/normal-range/src/app.component.ts +++ b/samples/charts/sparkline/normal-range/src/app.component.ts @@ -14,23 +14,20 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("normalRangeVisibilityEditor", { static: true } ) - private normalRangeVisibilityEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("normalRangeMinimumEditor", { static: true } ) - private normalRangeMinimumEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("normalRangeMaximumEditor", { static: true } ) - private normalRangeMaximumEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxSparklineComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("normalRangeVisibilityEditor", { static: true } ) + private normalRangeVisibilityEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("normalRangeMinimumEditor", { static: true } ) + private normalRangeMinimumEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("normalRangeMaximumEditor", { static: true } ) + private normalRangeMaximumEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxSparklineComponent private _sparklineMixedData: SparklineMixedData = null; public get sparklineMixedData(): SparklineMixedData { if (this._sparklineMixedData == null) @@ -51,5 +48,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/sparkline/trendlines/src/app.component.ts b/samples/charts/sparkline/trendlines/src/app.component.ts index f622d6aa9..6a5dbb7ab 100644 --- a/samples/charts/sparkline/trendlines/src/app.component.ts +++ b/samples/charts/sparkline/trendlines/src/app.component.ts @@ -14,19 +14,16 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("trendLineTypeEditor", { static: true } ) - private trendLineTypeEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxSparklineComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("trendLineTypeEditor", { static: true } ) + private trendLineTypeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxSparklineComponent private _sparklineMixedData: SparklineMixedData = null; public get sparklineMixedData(): SparklineMixedData { if (this._sparklineMixedData == null) @@ -47,5 +44,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/sparkline/unknown-values/src/app.component.ts b/samples/charts/sparkline/unknown-values/src/app.component.ts index 56610a09f..a7107a21c 100644 --- a/samples/charts/sparkline/unknown-values/src/app.component.ts +++ b/samples/charts/sparkline/unknown-values/src/app.component.ts @@ -14,19 +14,16 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("unknownValuePlottingEditor", { static: true } ) - private unknownValuePlottingEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("chart", { static: true } ) - private chart: IgxSparklineComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("unknownValuePlottingEditor", { static: true } ) + private unknownValuePlottingEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxSparklineComponent private _sparklineUnknownData: SparklineUnknownData = null; public get sparklineUnknownData(): SparklineUnknownData { if (this._sparklineUnknownData == null) @@ -47,5 +44,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/app.component.ts b/samples/charts/toolbar/actions-built-in-category-chart/src/app.component.ts index 0ae23da34..6ba51d852 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/app.component.ts +++ b/samples/charts/toolbar/actions-built-in-category-chart/src/app.component.ts @@ -9,19 +9,16 @@ import { IgxToolbarComponent } from 'igniteui-angular-layouts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("toolbar", { static: true } ) - private toolbar: IgxToolbarComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("toolbar", { static: true } ) + private toolbar: IgxToolbarComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -31,5 +28,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/src/app.component.ts b/samples/charts/toolbar/actions-built-in-data-chart/src/app.component.ts index 4b4b5fac3..144fe4969 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/app.component.ts +++ b/samples/charts/toolbar/actions-built-in-data-chart/src/app.component.ts @@ -9,29 +9,26 @@ import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisCompon templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("toolbar", { static: true } ) - private toolbar: IgxToolbarComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("lineSeries1", { static: true } ) - private lineSeries1: IgxLineSeriesComponent - @ViewChild("lineSeries2", { static: true } ) - private lineSeries2: IgxLineSeriesComponent - @ViewChild("lineSeries3", { static: true } ) - private lineSeries3: IgxLineSeriesComponent - @ViewChild("tooltipLayer", { static: true } ) - private tooltipLayer: IgxDataToolTipLayerComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("toolbar", { static: true } ) + private toolbar: IgxToolbarComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("lineSeries1", { static: true } ) + private lineSeries1: IgxLineSeriesComponent + @ViewChild("lineSeries2", { static: true } ) + private lineSeries2: IgxLineSeriesComponent + @ViewChild("lineSeries3", { static: true } ) + private lineSeries3: IgxLineSeriesComponent + @ViewChild("tooltipLayer", { static: true } ) + private tooltipLayer: IgxDataToolTipLayerComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -41,5 +38,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/toolbar/custom-tool/.stackblitzrc b/samples/charts/toolbar/custom-tool/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/toolbar/custom-tool/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/toolbar/custom-tool/angular.json b/samples/charts/toolbar/custom-tool/angular.json new file mode 100644 index 000000000..11ffb8c9c --- /dev/null +++ b/samples/charts/toolbar/custom-tool/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json new file mode 100644 index 000000000..eefcefe2c --- /dev/null +++ b/samples/charts/toolbar/custom-tool/package.json @@ -0,0 +1,45 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "9.1.1", + "typescript": "5.2.2" + } +} diff --git a/samples/charts/toolbar/custom-tool/sandbox.config.json b/samples/charts/toolbar/custom-tool/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/samples/charts/toolbar/custom-tool/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/toolbar/custom-tool/src/app.component.html b/samples/charts/toolbar/custom-tool/src/app.component.html new file mode 100644 index 000000000..53be05748 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/app.component.html @@ -0,0 +1,14 @@ +
+
+ + + + +
+
diff --git a/samples/charts/toolbar/custom-tool/src/app.component.scss b/samples/charts/toolbar/custom-tool/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/toolbar/custom-tool/src/app.component.ts b/samples/charts/toolbar/custom-tool/src/app.component.ts new file mode 100644 index 000000000..8490ad7a4 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/app.component.ts @@ -0,0 +1,34 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { IgxToolbarComponent, IgxToolActionLabelComponent, IgxToolActionComponent, IgxToolCommandEventArgs } from 'igniteui-angular-layouts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("toolbar", { static: true } ) + private toolbar: IgxToolbarComponent + + public constructor(private _detector: ChangeDetectorRef) + { + this.toolbarCustomIconOnViewInit(); + } + + public ngAfterViewInit(): void + { + } + + public toolbarCustomIconOnViewInit(): void { + + const icon = ''; + this.toolbar.registerIconFromText("CustomCollection", "CustomIcon", icon); + + } + +} + diff --git a/samples/charts/toolbar/custom-tool/src/app.module.ts b/samples/charts/toolbar/custom-tool/src/app.module.ts new file mode 100644 index 000000000..cb4c87d23 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/app.module.ts @@ -0,0 +1,25 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxToolbarModule } from 'igniteui-angular-layouts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxToolbarModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/toolbar/custom-tool/src/config/tsconfig-es5.app.json b/samples/charts/toolbar/custom-tool/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/samples/charts/toolbar/custom-tool/src/config/tsconfig.app.json b/samples/charts/toolbar/custom-tool/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/toolbar/custom-tool/src/config/tsconfig.base.json b/samples/charts/toolbar/custom-tool/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/samples/charts/toolbar/custom-tool/src/config/tsconfig.spec.json b/samples/charts/toolbar/custom-tool/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/toolbar/custom-tool/src/config/tsconfig.worker.json b/samples/charts/toolbar/custom-tool/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/toolbar/custom-tool/src/environments/environment.prod.ts b/samples/charts/toolbar/custom-tool/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/toolbar/custom-tool/src/environments/environment.ts b/samples/charts/toolbar/custom-tool/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/toolbar/custom-tool/src/index.html b/samples/charts/toolbar/custom-tool/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/toolbar/custom-tool/src/main.ts b/samples/charts/toolbar/custom-tool/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/toolbar/custom-tool/src/polyfills.ts b/samples/charts/toolbar/custom-tool/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/toolbar/custom-tool/src/styles.scss b/samples/charts/toolbar/custom-tool/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/toolbar/custom-tool/src/typings.d.ts b/samples/charts/toolbar/custom-tool/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/toolbar/custom-tool/tsconfig.json b/samples/charts/toolbar/custom-tool/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/toolbar/custom-tool/tslint.json b/samples/charts/toolbar/custom-tool/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.ts b/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.ts index 7239ae830..c79d4e96e 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.ts +++ b/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.ts @@ -11,35 +11,32 @@ import { IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxLineSeriesCompo templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("toolbar", { static: true } ) - private toolbar: IgxToolbarComponent - @ViewChild("enableTooltipsLabel", { static: true } ) - private enableTooltipsLabel: IgxToolActionCheckboxComponent - @ViewChild("zoomResetHidden", { static: true } ) - private zoomResetHidden: IgxToolActionLabelComponent - @ViewChild("zoomResetLabel", { static: true } ) - private zoomResetLabel: IgxToolActionLabelComponent - @ViewChild("analyzeMenu", { static: true } ) - private analyzeMenu: IgxToolActionIconMenuComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("lineSeries1", { static: true } ) - private lineSeries1: IgxLineSeriesComponent - @ViewChild("lineSeries2", { static: true } ) - private lineSeries2: IgxLineSeriesComponent - @ViewChild("lineSeries3", { static: true } ) - private lineSeries3: IgxLineSeriesComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("toolbar", { static: true } ) + private toolbar: IgxToolbarComponent + @ViewChild("enableTooltipsLabel", { static: true } ) + private enableTooltipsLabel: IgxToolActionCheckboxComponent + @ViewChild("zoomResetHidden", { static: true } ) + private zoomResetHidden: IgxToolActionLabelComponent + @ViewChild("zoomResetLabel", { static: true } ) + private zoomResetLabel: IgxToolActionLabelComponent + @ViewChild("analyzeMenu", { static: true } ) + private analyzeMenu: IgxToolActionIconMenuComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("lineSeries1", { static: true } ) + private lineSeries1: IgxLineSeriesComponent + @ViewChild("lineSeries2", { static: true } ) + private lineSeries2: IgxLineSeriesComponent + @ViewChild("lineSeries3", { static: true } ) + private lineSeries3: IgxLineSeriesComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -49,35 +46,42 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } - public toolbarToggleTooltip({ sender, args }: { sender: any, args: IgxToolCommandEventArgs }): void { - var target = this.chart; - switch (args.command.commandId) - { - case "EnableTooltips": - var enable = args.command.argumentsList[0].value as boolean; - if (enable) - { - target.series.add(new IgxDataToolTipLayerComponent()); - } - else - { - var toRemove = null; - for (var i = 0; i < target.actualSeries.length; i++) { - let s = target.actualSeries[i] as IgxSeriesComponent; - if (s instanceof IgxDataToolTipLayerComponent) - { - toRemove = s; - } - } - if (toRemove != null) - { - target.series.remove(toRemove); - } - } - break; - } - } + public ngAfterViewInit(): void + { + } + + public toolbarToggleTooltip({ sender, args }: { sender: any, args: IgxToolCommandEventArgs }): void { + var target = this.chart; + switch (args.command.commandId) + { + case "EnableTooltips": + var enable = args.command.argumentsList[0].value as boolean; + if (enable) + { + target.series.add(new IgxDataToolTipLayerComponent()); + } + else + { + var toRemove = null; + for (var i = 0; i < target.actualSeries.length; i++) { + let s = target.actualSeries[i] as IgxSeriesComponent; + if (s instanceof IgxDataToolTipLayerComponent) + { + toRemove = s; + } + } + if (toRemove != null) + { + target.series.remove(toRemove); + } + } + break; + } + } } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/src/app.component.ts b/samples/charts/toolbar/layout-in-vertical-orientation/src/app.component.ts index da9a2c634..605eb3faa 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/src/app.component.ts +++ b/samples/charts/toolbar/layout-in-vertical-orientation/src/app.component.ts @@ -9,23 +9,20 @@ import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisCompon templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("toolbar", { static: true } ) - private toolbar: IgxToolbarComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("lineSeries1", { static: true } ) - private lineSeries1: IgxLineSeriesComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("toolbar", { static: true } ) + private toolbar: IgxToolbarComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("lineSeries1", { static: true } ) + private lineSeries1: IgxLineSeriesComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -35,5 +32,13 @@ export class AppComponent { return this._countryRenewableElectricity; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/toolbar/theming/src/app.component.ts b/samples/charts/toolbar/theming/src/app.component.ts index 7e835c2f8..17703a1fc 100644 --- a/samples/charts/toolbar/theming/src/app.component.ts +++ b/samples/charts/toolbar/theming/src/app.component.ts @@ -14,25 +14,22 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("toolbar", { static: true } ) - private toolbar: IgxToolbarComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxCategoryXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("lineSeries1", { static: true } ) - private lineSeries1: IgxLineSeriesComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("toolbar", { static: true } ) + private toolbar: IgxToolbarComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("lineSeries1", { static: true } ) + private lineSeries1: IgxLineSeriesComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; public get countryRenewableElectricity(): CountryRenewableElectricity { if (this._countryRenewableElectricity == null) @@ -60,5 +57,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/tree-map/layout/src/app.component.ts b/samples/charts/tree-map/layout/src/app.component.ts index 80161979c..936e198bc 100644 --- a/samples/charts/tree-map/layout/src/app.component.ts +++ b/samples/charts/tree-map/layout/src/app.component.ts @@ -14,25 +14,22 @@ defineAllComponents(); templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("layoutTypeEditor", { static: true } ) - private layoutTypeEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("layoutOrientationEditor", { static: true } ) - private layoutOrientationEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("headerDisplayModeEditor", { static: true } ) - private headerDisplayModeEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("labelVerticalAlignmentEditor", { static: true } ) - private labelVerticalAlignmentEditor: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("treemap", { static: true } ) - private treemap: IgxTreemapComponent +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("layoutTypeEditor", { static: true } ) + private layoutTypeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("layoutOrientationEditor", { static: true } ) + private layoutOrientationEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("headerDisplayModeEditor", { static: true } ) + private headerDisplayModeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("labelVerticalAlignmentEditor", { static: true } ) + private labelVerticalAlignmentEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("treemap", { static: true } ) + private treemap: IgxTreemapComponent private _countyHierarchicalData: CountyHierarchicalData = null; public get countyHierarchicalData(): CountyHierarchicalData { if (this._countyHierarchicalData == null) @@ -53,5 +50,13 @@ export class AppComponent { return this._componentRenderer; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/tree-map/overview/src/app.component.ts b/samples/charts/tree-map/overview/src/app.component.ts index 0b00d41ef..7b22b0470 100644 --- a/samples/charts/tree-map/overview/src/app.component.ts +++ b/samples/charts/tree-map/overview/src/app.component.ts @@ -8,15 +8,12 @@ import { IgxTreemapComponent } from 'igniteui-angular-charts'; templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("treemap", { static: true } ) - private treemap: IgxTreemapComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("treemap", { static: true } ) + private treemap: IgxTreemapComponent private _countyHierarchicalData: CountyHierarchicalData = null; public get countyHierarchicalData(): CountyHierarchicalData { if (this._countyHierarchicalData == null) @@ -26,5 +23,13 @@ export class AppComponent { return this._countyHierarchicalData; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } diff --git a/samples/charts/tree-map/styling/src/app.component.ts b/samples/charts/tree-map/styling/src/app.component.ts index 9aa9e6eac..b81157f89 100644 --- a/samples/charts/tree-map/styling/src/app.component.ts +++ b/samples/charts/tree-map/styling/src/app.component.ts @@ -8,31 +8,28 @@ import { IgxTreemapComponent, IgxTreemapNodeStyleMappingComponent } from 'ignite templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { - - } - - @ViewChild("treemap", { static: true } ) - private treemap: IgxTreemapComponent - @ViewChild("styling1", { static: true } ) - private styling1: IgxTreemapNodeStyleMappingComponent - @ViewChild("styling2", { static: true } ) - private styling2: IgxTreemapNodeStyleMappingComponent - @ViewChild("styling3", { static: true } ) - private styling3: IgxTreemapNodeStyleMappingComponent - @ViewChild("styling4", { static: true } ) - private styling4: IgxTreemapNodeStyleMappingComponent - @ViewChild("styling5", { static: true } ) - private styling5: IgxTreemapNodeStyleMappingComponent - @ViewChild("styling6", { static: true } ) - private styling6: IgxTreemapNodeStyleMappingComponent - @ViewChild("styling7", { static: true } ) - private styling7: IgxTreemapNodeStyleMappingComponent - @ViewChild("styling8", { static: true } ) - private styling8: IgxTreemapNodeStyleMappingComponent +export class AppComponent implements AfterViewInit +{ + @ViewChild("treemap", { static: true } ) + private treemap: IgxTreemapComponent + @ViewChild("styling1", { static: true } ) + private styling1: IgxTreemapNodeStyleMappingComponent + @ViewChild("styling2", { static: true } ) + private styling2: IgxTreemapNodeStyleMappingComponent + @ViewChild("styling3", { static: true } ) + private styling3: IgxTreemapNodeStyleMappingComponent + @ViewChild("styling4", { static: true } ) + private styling4: IgxTreemapNodeStyleMappingComponent + @ViewChild("styling5", { static: true } ) + private styling5: IgxTreemapNodeStyleMappingComponent + @ViewChild("styling6", { static: true } ) + private styling6: IgxTreemapNodeStyleMappingComponent + @ViewChild("styling7", { static: true } ) + private styling7: IgxTreemapNodeStyleMappingComponent + @ViewChild("styling8", { static: true } ) + private styling8: IgxTreemapNodeStyleMappingComponent private _countyHierarchicalData: CountyHierarchicalData = null; public get countyHierarchicalData(): CountyHierarchicalData { if (this._countyHierarchicalData == null) @@ -42,5 +39,13 @@ export class AppComponent { return this._countyHierarchicalData; } + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + } From 6c149e4cababa8ad6ad1482bf1fd96b5a43339f2 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Thu, 14 Dec 2023 10:28:10 -0500 Subject: [PATCH 020/154] mdd-fix-casing-issue-manually (#89) mdd-fix-casing-issue-manually --- browser/src/app/app-routing.module.ts | 4 +- browser/src/app/index/index.component.ts | 6 +- browser/src/assets/stats.json | 187 +++++++++--------- browser/src/browser-info.json | 24 +-- .../format-specifiers/src/app.component.html | 2 +- .../format-specifiers/src/app.component.html | 2 +- .../format-specifiers/src/app.component.html | 4 +- 7 files changed, 115 insertions(+), 114 deletions(-) diff --git a/browser/src/app/app-routing.module.ts b/browser/src/app/app-routing.module.ts index fe7db51f6..b45fe3d5e 100644 --- a/browser/src/app/app-routing.module.ts +++ b/browser/src/app/app-routing.module.ts @@ -17,8 +17,8 @@ export const samplesRoutes: Routes = [ // Auto-Insert-Modules-Start { path: "charts", data: ["SamplesForCharts"], loadChildren: () => import("../samples/charts/samples-modules").then(m => m.SamplesForCharts) }, { path: "excel", data: ["SamplesForExcel"], loadChildren: () => import("../samples/excel/samples-modules").then(m => m.SamplesForExcel) }, - { path: "gauges", data: ["SamplesForGauges"], loadChildren: () => import("../samples/gauges/samples-modules").then(m => m.SamplesForGauges) }, - { path: "maps", data: ["SamplesForMaps"], loadChildren: () => import("../samples/maps/samples-modules").then(m => m.SamplesForMaps) } + { path: "maps", data: ["SamplesForMaps"], loadChildren: () => import("../samples/maps/samples-modules").then(m => m.SamplesForMaps) }, + { path: "gauges", data: ["SamplesForGauges"], loadChildren: () => import("../samples/gauges/samples-modules").then(m => m.SamplesForGauges) } // Auto-Insert-Modules-End diff --git a/browser/src/app/index/index.component.ts b/browser/src/app/index/index.component.ts index 6213578a9..e657f49b7 100644 --- a/browser/src/app/index/index.component.ts +++ b/browser/src/app/index/index.component.ts @@ -10,8 +10,8 @@ import BrowserInfo from "../../browser-info.json"; // Auto-Insert-Imports-RoutingData-Start import { RoutingDataForCharts } from "../../samples/charts/routing-data"; import { RoutingDataForExcel } from "../../samples/excel/routing-data"; -import { RoutingDataForGauges } from "../../samples/gauges/routing-data"; import { RoutingDataForMaps } from "../../samples/maps/routing-data"; +import { RoutingDataForGauges } from "../../samples/gauges/routing-data"; // Auto-Insert-Imports-RoutingData-End @@ -49,8 +49,8 @@ export class IndexComponent implements OnInit, AfterViewInit { // Auto-Insert-SamplesRoutingArray-Start { path: "charts", routesData: RoutingDataForCharts }, { path: "excel", routesData: RoutingDataForExcel }, - { path: "gauges", routesData: RoutingDataForGauges }, - { path: "maps", routesData: RoutingDataForMaps } + { path: "maps", routesData: RoutingDataForMaps }, + { path: "gauges", routesData: RoutingDataForGauges } // Auto-Insert-SamplesRoutingArray-End diff --git a/browser/src/assets/stats.json b/browser/src/assets/stats.json index b0c755ead..85a69cf7d 100644 --- a/browser/src/assets/stats.json +++ b/browser/src/assets/stats.json @@ -1,4 +1,10 @@ [ + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/animation" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/legend" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/explosion" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/overview" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/rings" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/selection" }, { "browser": true, "xplat": false, "path": "charts/category-chart/annotations" }, { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-all" }, { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-callouts" }, @@ -40,18 +46,18 @@ { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-animations" }, { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-annotations" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-legend" }, { "browser": false, "xplat": false, "path": "charts/category-chart/marker-options" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-legend" }, { "browser": false, "xplat": false, "path": "charts/category-chart/marker-templates" }, { "browser": false, "xplat": false, "path": "charts/category-chart/overview" }, { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-single-source" }, { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-single-source" }, { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-single-source" }, { "browser": false, "xplat": false, "path": "charts/category-chart/spline-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/spline-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/category-chart/spline-styling" }, { "browser": false, "xplat": false, "path": "charts/category-chart/stack-columns" }, { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-multiple-sources" }, @@ -64,6 +70,34 @@ { "browser": false, "xplat": false, "path": "charts/category-chart/tooltip-types" }, { "browser": false, "xplat": false, "path": "charts/category-chart/trendline" }, { "browser": false, "xplat": false, "path": "charts/category-chart/value-lines" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/annotations" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/axis-types" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-formatting-currency" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-styling-props" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-formatting-currency" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-styling-props" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/format-specifiers" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/high-frequency" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/high-volume" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-customization" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-types" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-data" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/overview" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-feeds" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/panes" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/performance" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/scrollbars" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/stock-index-chart" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/styling" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/theming" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/time-based-data" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/titles" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-template" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/trendlines" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/volume-types" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-types" }, { "browser": false, "xplat": false, "path": "charts/data-chart/annotations-custom" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-annotations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-annotations-corner-radius" }, @@ -72,8 +106,8 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/axis-locations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-min-max-gap" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-settings" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-sharing" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-types" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/axis-sharing" }, { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-overlapping" }, { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-single-source" }, @@ -87,31 +121,31 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/column-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/composite-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/crosshair-layer-styling" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/custom-drawing-annotations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/custom-editing-data" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-axes" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/custom-drawing-annotations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-tickmarks" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-axes" }, { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-trendline" }, { "browser": false, "xplat": false, "path": "charts/data-chart/data-legend" }, { "browser": false, "xplat": false, "path": "charts/data-chart/data-tooltip" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/format-specifiers" }, { "browser": false, "xplat": false, "path": "charts/data-chart/final-value-layer-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/financial-price-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/format-specifiers" }, { "browser": false, "xplat": false, "path": "charts/data-chart/legends" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/polar-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-area-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/polar-chart-types" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/polar-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-line-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-scatter-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/polar-chart-types" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/radial-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-spline-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-spline-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/radial-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-area-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-chart-types" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-column-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/radial-line-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-pie-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/radial-line-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/range-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/range-column-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-bubble-chart-multiple-sources" }, @@ -123,8 +157,8 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/series-animations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-annotations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-highlighting" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-marker-template" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-markers" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/series-marker-template" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-tooltips" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-trendlines" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-value-overlay" }, @@ -132,8 +166,8 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-bar-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-column-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-line-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-spline-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-spline-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-spline-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-bar-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-chart-types" }, @@ -148,8 +182,8 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-point-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-spline-area-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-spline-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-step-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-step-line-series" }, @@ -158,19 +192,19 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-candlestick-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-column-indicators" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-line-indicators" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-ohlc-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-overlays" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-ohlc-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-pie-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-area-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-bubble-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-contour-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-bubble-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-hd-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-point-series" }, @@ -186,92 +220,42 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-spline-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-spline-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-area-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-line-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-spline-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-spline-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/waterfall-chart" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/animation" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/explosion" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/legend" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/rings" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/selection" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/annotations" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/axis-types" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-formatting-currency" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-styling-props" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-formatting-currency" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-styling-props" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/format-specifiers" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/high-frequency" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/high-volume" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-customization" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-types" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-data" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-feeds" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/panes" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/performance" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/scrollbars" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/stock-index-chart" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/styling" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/theming" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/time-based-data" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/titles" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-template" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-types" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/trendlines" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/volume-types" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/animation" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/legend" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/explosion" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/others" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/selection" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/styling" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-category-chart" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-data-chart" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/custom-tool" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/layout-actions-for-data-chart" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/layout-in-vertical-orientation" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/theming" }, + { "browser": false, "xplat": false, "path": "charts/tree-map/events" }, + { "browser": false, "xplat": false, "path": "charts/tree-map/overview" }, + { "browser": false, "xplat": false, "path": "charts/tree-map/styling" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-area" }, + { "browser": false, "xplat": false, "path": "charts/tree-map/layout" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-column" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-lines" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-types" }, + { "browser": false, "xplat": false, "path": "charts/sparkline/display-lines" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-winloss" }, { "browser": false, "xplat": false, "path": "charts/sparkline/grid" }, { "browser": false, "xplat": false, "path": "charts/sparkline/markers" }, { "browser": false, "xplat": false, "path": "charts/sparkline/normal-range" }, { "browser": false, "xplat": false, "path": "charts/sparkline/trendlines" }, { "browser": false, "xplat": false, "path": "charts/sparkline/unknown-values" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-category-chart" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-data-chart" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/layout-actions-for-data-chart" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/layout-in-vertical-orientation" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/theming" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/events" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/layout" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/overview" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/styling" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/animation" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/explosion" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/legend" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/others" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/overview" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/selection" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/styling" }, { "browser": false, "xplat": false, "path": "charts/zoomslider/overview" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-workbooks" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-worksheets" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/overview" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-cells" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-charts" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-sparklines" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-tables" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/activation" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-chart" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-combo" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/clipboard" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/commands" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/conditional-formatting" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/config-options" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/data-validation" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/hyperlinks" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/overview" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/animation" }, { "browser": false, "xplat": false, "path": "gauges/bullet-graph/background" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/animation" }, { "browser": false, "xplat": false, "path": "gauges/bullet-graph/labels" }, { "browser": false, "xplat": false, "path": "gauges/bullet-graph/measures" }, { "browser": false, "xplat": false, "path": "gauges/bullet-graph/ranges" }, @@ -283,14 +267,31 @@ { "browser": false, "xplat": false, "path": "gauges/linear-gauge/needle" }, { "browser": false, "xplat": false, "path": "gauges/linear-gauge/ranges" }, { "browser": false, "xplat": false, "path": "gauges/linear-gauge/scale" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/tickmarks" }, { "browser": false, "xplat": false, "path": "gauges/radial-gauge/animation" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/tickmarks" }, { "browser": false, "xplat": false, "path": "gauges/radial-gauge/backing" }, { "browser": false, "xplat": false, "path": "gauges/radial-gauge/labels" }, { "browser": false, "xplat": false, "path": "gauges/radial-gauge/needle" }, { "browser": false, "xplat": false, "path": "gauges/radial-gauge/ranges" }, { "browser": false, "xplat": false, "path": "gauges/radial-gauge/scale" }, { "browser": false, "xplat": false, "path": "gauges/radial-gauge/tickmarks" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-chart" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/activation" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-combo" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/commands" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/clipboard" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/conditional-formatting" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/data-validation" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/config-options" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/hyperlinks" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/overview" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-workbooks" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-worksheets" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/overview" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-cells" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-charts" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-sparklines" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-tables" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-csv" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-json-points" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-model" }, @@ -299,16 +300,16 @@ { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-points" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-polygons" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-polylines" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/custom-tooltips" }, { "browser": false, "xplat": false, "path": "maps/geo-map/display-bing-imagery" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/custom-tooltips" }, { "browser": false, "xplat": false, "path": "maps/geo-map/display-esri-imagery" }, { "browser": false, "xplat": false, "path": "maps/geo-map/display-heat-imagery" }, { "browser": false, "xplat": false, "path": "maps/geo-map/display-osm-imagery" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/marker-layouts" }, { "browser": false, "xplat": false, "path": "maps/geo-map/marker-template" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/marker-layouts" }, { "browser": false, "xplat": false, "path": "maps/geo-map/marker-type" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/navigation" }, { "browser": false, "xplat": false, "path": "maps/geo-map/overview" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/navigation" }, { "browser": false, "xplat": false, "path": "maps/geo-map/shape-styling" }, { "browser": false, "xplat": false, "path": "maps/geo-map/triangulating-data" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-area-series" }, @@ -316,6 +317,6 @@ { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-contour-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-density-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-symbol-series" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polygon-series" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polyline-series" } + { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polyline-series" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polygon-series" } ] \ No newline at end of file diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index b18360557..0aa40a84e 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,14 +1,14 @@ [ -{"ver":"17.0.0-beta.0","name":"igniteui-angular"}, -{"ver":"17.0.0-beta.0","name":"igniteui-angular-charts"}, -{"ver":"17.0.0-beta.0","name":"igniteui-angular-core"}, -{"ver":"17.0.0-beta.0","name":"igniteui-angular-excel"}, -{"ver":"17.0.0-beta.0","name":"igniteui-angular-gauges"}, -{"ver":"17.0.0-beta.0","name":"igniteui-angular-inputs"}, -{"ver":"17.0.0-beta.0","name":"igniteui-angular-layouts"}, -{"ver":"17.0.0-beta.0","name":"igniteui-angular-maps"}, -{"ver":"17.0.0-beta.0","name":"igniteui-angular-spreadsheet"}, -{"ver":"17.0.0-beta.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, -{"ver":"^3.3.1","name":"igniteui-theming"}, -{"ver":"4.5.0-beta.1","name":"igniteui-webcomponents"} +{"ver":"17.0.0","name":"igniteui-angular"}, +{"ver":"17.0.0","name":"igniteui-angular-charts"}, +{"ver":"17.0.0","name":"igniteui-angular-core"}, +{"ver":"17.0.0","name":"igniteui-angular-excel"}, +{"ver":"17.0.0","name":"igniteui-angular-gauges"}, +{"ver":"17.0.0","name":"igniteui-angular-inputs"}, +{"ver":"17.0.0","name":"igniteui-angular-layouts"}, +{"ver":"17.0.0","name":"igniteui-angular-maps"}, +{"ver":"17.0.0","name":"igniteui-angular-spreadsheet"}, +{"ver":"17.0.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"3.3.1","name":"igniteui-theming"}, +{"ver":"4.5.0","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/samples/charts/category-chart/format-specifiers/src/app.component.html b/samples/charts/category-chart/format-specifiers/src/app.component.html index 47f4172f9..914d5ee45 100644 --- a/samples/charts/category-chart/format-specifiers/src/app.component.html +++ b/samples/charts/category-chart/format-specifiers/src/app.component.html @@ -22,7 +22,7 @@ dataToolTipValueFormatMode="Currency" dataToolTipValueFormatString="${0} Billion" yAxisLabelFormat="{0}B" - [yAxisLabelFormatSpecifiers]="NumberFormatSpecifier1"> + [yAxisLabelFormatSpecifiers]="numberFormatSpecifier1"> diff --git a/samples/charts/data-chart/format-specifiers/src/app.component.html b/samples/charts/data-chart/format-specifiers/src/app.component.html index a5e48b04f..8a048de82 100644 --- a/samples/charts/data-chart/format-specifiers/src/app.component.html +++ b/samples/charts/data-chart/format-specifiers/src/app.component.html @@ -32,7 +32,7 @@ title="Billions of U.S. Dollars" labelFormat="{0}B" abbreviateLargeNumbers="false" - [labelFormatSpecifiers]="NumberFormatSpecifier1"> + [labelFormatSpecifiers]="numberFormatSpecifier1"> + [xAxisLabelFormatSpecifiers]="dateTimeFormatSpecifier1"> From e6a599bd63689534602ddefcc351e753a6b7de1e Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 10:20:27 -0500 Subject: [PATCH 021/154] Adding changes from build igniteui-xplat-examples-output+PRs_2023.12.19.2 (#92) Co-authored-by: tfsbuild --- .../category-chart/format-specifiers/src/app.component.html | 2 +- .../data-chart/format-specifiers/src/app.component.html | 2 +- .../financial-chart/format-specifiers/src/app.component.html | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/charts/category-chart/format-specifiers/src/app.component.html b/samples/charts/category-chart/format-specifiers/src/app.component.html index 914d5ee45..47f4172f9 100644 --- a/samples/charts/category-chart/format-specifiers/src/app.component.html +++ b/samples/charts/category-chart/format-specifiers/src/app.component.html @@ -22,7 +22,7 @@ dataToolTipValueFormatMode="Currency" dataToolTipValueFormatString="${0} Billion" yAxisLabelFormat="{0}B" - [yAxisLabelFormatSpecifiers]="numberFormatSpecifier1"> + [yAxisLabelFormatSpecifiers]="NumberFormatSpecifier1"> diff --git a/samples/charts/data-chart/format-specifiers/src/app.component.html b/samples/charts/data-chart/format-specifiers/src/app.component.html index 8a048de82..a5e48b04f 100644 --- a/samples/charts/data-chart/format-specifiers/src/app.component.html +++ b/samples/charts/data-chart/format-specifiers/src/app.component.html @@ -32,7 +32,7 @@ title="Billions of U.S. Dollars" labelFormat="{0}B" abbreviateLargeNumbers="false" - [labelFormatSpecifiers]="numberFormatSpecifier1"> + [labelFormatSpecifiers]="NumberFormatSpecifier1"> + [xAxisLabelFormatSpecifiers]="DateTimeFormatSpecifier1"> From 9bd47ebc8dbd3dce43a9aebcf8aad1da30df45a5 Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Wed, 3 Jan 2024 14:57:12 -0500 Subject: [PATCH 022/154] fix gulp scripts --- browser/gulpfile.js | 1 + browser/scripts/browser.js | 1 + browser/src/app/app-routing.module.ts | 29 +--- browser/src/app/index/index.component.ts | 6 +- browser/src/assets/stats.json | 166 +++++++++++------------ 5 files changed, 90 insertions(+), 113 deletions(-) diff --git a/browser/gulpfile.js b/browser/gulpfile.js index 8c25d0d4e..8447bbf09 100644 --- a/browser/gulpfile.js +++ b/browser/gulpfile.js @@ -36,6 +36,7 @@ gulp.task('updateBrowser', gulp.series( browser.findSamples, browser.copySamples, browser.updateCodeViewer, + browser.updateReadme, browser.generateStats, // browser.copyBootstrapCss, )); diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index d34754453..17f962346 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -684,6 +684,7 @@ function copySamples(cb) { for (let i = autoInsertStart+1; i < autoInsertEnd; i++) { appModuleLines[i] = ""; // clearing previously auto-generated inserts } + appModuleRoutes = appModuleRoutes.sort(); // adding latest auto-generated inserts for JS files appModuleLines[autoInsertStart + 1] = appModuleRoutes.join(',\r\n'); appModuleContent = appModuleLines.join('\r\n'); diff --git a/browser/src/app/app-routing.module.ts b/browser/src/app/app-routing.module.ts index b45fe3d5e..8c276c989 100644 --- a/browser/src/app/app-routing.module.ts +++ b/browser/src/app/app-routing.module.ts @@ -17,37 +17,12 @@ export const samplesRoutes: Routes = [ // Auto-Insert-Modules-Start { path: "charts", data: ["SamplesForCharts"], loadChildren: () => import("../samples/charts/samples-modules").then(m => m.SamplesForCharts) }, { path: "excel", data: ["SamplesForExcel"], loadChildren: () => import("../samples/excel/samples-modules").then(m => m.SamplesForExcel) }, - { path: "maps", data: ["SamplesForMaps"], loadChildren: () => import("../samples/maps/samples-modules").then(m => m.SamplesForMaps) }, - { path: "gauges", data: ["SamplesForGauges"], loadChildren: () => import("../samples/gauges/samples-modules").then(m => m.SamplesForGauges) } + { path: "gauges", data: ["SamplesForGauges"], loadChildren: () => import("../samples/gauges/samples-modules").then(m => m.SamplesForGauges) }, + { path: "maps", data: ["SamplesForMaps"], loadChildren: () => import("../samples/maps/samples-modules").then(m => m.SamplesForMaps) } // Auto-Insert-Modules-End - // { - // data: ["ChartsModule"], - // loadChildren: () => import("./charts/charts.module").then(m => m.ChartsModule), - // path: "charts" - // }, - // { - // data: ["ExcelLibraryModule"], - // loadChildren: () => import("./excel-library/excel-library.module").then(m => m.ExcelLibraryModule), - // path: "excel" - // }, - // { - // data: ["GaugesModule"], - // loadChildren: () => import("./gauges/gauges.module").then(m => m.GaugesModule), - // path: "gauges" - // }, - // { - // data: ["GeoMapModule"], - // loadChildren: () => import("./maps/geo-map.module").then(m => m.GeoMapModule), - // path: "maps" - // }, - // { - // data: ["SpreadsheetModule"], - // loadChildren: () => import("./spreadsheet/spreadsheet.module").then(m => m.SpreadsheetModule), - // path: "excel" - // } ]; export const appRoutes: Routes = [ { diff --git a/browser/src/app/index/index.component.ts b/browser/src/app/index/index.component.ts index e657f49b7..6213578a9 100644 --- a/browser/src/app/index/index.component.ts +++ b/browser/src/app/index/index.component.ts @@ -10,8 +10,8 @@ import BrowserInfo from "../../browser-info.json"; // Auto-Insert-Imports-RoutingData-Start import { RoutingDataForCharts } from "../../samples/charts/routing-data"; import { RoutingDataForExcel } from "../../samples/excel/routing-data"; -import { RoutingDataForMaps } from "../../samples/maps/routing-data"; import { RoutingDataForGauges } from "../../samples/gauges/routing-data"; +import { RoutingDataForMaps } from "../../samples/maps/routing-data"; // Auto-Insert-Imports-RoutingData-End @@ -49,8 +49,8 @@ export class IndexComponent implements OnInit, AfterViewInit { // Auto-Insert-SamplesRoutingArray-Start { path: "charts", routesData: RoutingDataForCharts }, { path: "excel", routesData: RoutingDataForExcel }, - { path: "maps", routesData: RoutingDataForMaps }, - { path: "gauges", routesData: RoutingDataForGauges } + { path: "gauges", routesData: RoutingDataForGauges }, + { path: "maps", routesData: RoutingDataForMaps } // Auto-Insert-SamplesRoutingArray-End diff --git a/browser/src/assets/stats.json b/browser/src/assets/stats.json index 85a69cf7d..fa67616b7 100644 --- a/browser/src/assets/stats.json +++ b/browser/src/assets/stats.json @@ -1,12 +1,6 @@ [ - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/animation" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/legend" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/explosion" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/rings" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/selection" }, - { "browser": true, "xplat": false, "path": "charts/category-chart/annotations" }, { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-all" }, + { "browser": true, "xplat": false, "path": "charts/category-chart/annotations" }, { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-callouts" }, { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-crosshairs" }, { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-custom" }, @@ -19,12 +13,12 @@ { "browser": false, "xplat": false, "path": "charts/category-chart/axis-gridlines" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-inverted" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-labels" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-locations" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-options" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-locations" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-overlap" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-range" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-tickmarks" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-titles" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-tickmarks" }, { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-single-source" }, { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-styling" }, @@ -46,18 +40,18 @@ { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-animations" }, { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-annotations" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/marker-options" }, { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-legend" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/marker-options" }, { "browser": false, "xplat": false, "path": "charts/category-chart/marker-templates" }, { "browser": false, "xplat": false, "path": "charts/category-chart/overview" }, { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-single-source" }, { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-styling" }, { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-styling" }, { "browser": false, "xplat": false, "path": "charts/category-chart/spline-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/spline-single-source" }, { "browser": false, "xplat": false, "path": "charts/category-chart/spline-styling" }, { "browser": false, "xplat": false, "path": "charts/category-chart/stack-columns" }, { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-multiple-sources" }, @@ -70,6 +64,12 @@ { "browser": false, "xplat": false, "path": "charts/category-chart/tooltip-types" }, { "browser": false, "xplat": false, "path": "charts/category-chart/trendline" }, { "browser": false, "xplat": false, "path": "charts/category-chart/value-lines" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/animation" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/explosion" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/legend" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/overview" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/rings" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/selection" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/annotations" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/axis-types" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend" }, @@ -84,8 +84,8 @@ { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-customization" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-types" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-data" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/overview" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-feeds" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/overview" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/panes" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/performance" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/scrollbars" }, @@ -95,9 +95,16 @@ { "browser": false, "xplat": false, "path": "charts/financial-chart/time-based-data" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/titles" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-template" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-types" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/trendlines" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/volume-types" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-types" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/animation" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/explosion" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/legend" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/others" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/overview" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/selection" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/annotations-custom" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-annotations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-annotations-corner-radius" }, @@ -106,8 +113,8 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/axis-locations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-min-max-gap" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-settings" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-types" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-sharing" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/axis-types" }, { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-overlapping" }, { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-single-source" }, @@ -121,31 +128,31 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/column-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/composite-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/crosshair-layer-styling" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/custom-editing-data" }, { "browser": false, "xplat": false, "path": "charts/data-chart/custom-drawing-annotations" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/custom-editing-data" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-axes" }, { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-tickmarks" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-axes" }, { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-trendline" }, { "browser": false, "xplat": false, "path": "charts/data-chart/data-legend" }, { "browser": false, "xplat": false, "path": "charts/data-chart/data-tooltip" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/format-specifiers" }, { "browser": false, "xplat": false, "path": "charts/data-chart/final-value-layer-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/financial-price-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/format-specifiers" }, { "browser": false, "xplat": false, "path": "charts/data-chart/legends" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/polar-area-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-area-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/polar-area-chart-styling" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/polar-chart-types" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-line-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-scatter-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/polar-chart-types" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/radial-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-spline-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-spline-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/radial-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-area-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-chart-types" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-column-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/radial-pie-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-line-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/radial-pie-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/range-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/range-column-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-bubble-chart-multiple-sources" }, @@ -157,8 +164,8 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/series-animations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-annotations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-highlighting" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-markers" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-marker-template" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/series-markers" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-tooltips" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-trendlines" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-value-overlay" }, @@ -166,8 +173,8 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-bar-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-column-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-line-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-spline-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-spline-area-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-spline-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-bar-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-chart-types" }, @@ -182,8 +189,8 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-point-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-spline-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-spline-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-spline-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-step-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-step-line-series" }, @@ -192,19 +199,19 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-candlestick-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-column-indicators" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-line-indicators" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-overlays" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-ohlc-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-overlays" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-pie-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-area-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-contour-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-bubble-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-contour-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-hd-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-point-series" }, @@ -213,78 +220,40 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-spline-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-shape-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-bar-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-spline-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-spline-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-area-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-line-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-spline-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-spline-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/waterfall-chart" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-category-chart" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-data-chart" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/custom-tool" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/layout-actions-for-data-chart" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/layout-in-vertical-orientation" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/theming" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/events" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/overview" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/styling" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-area" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/layout" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-column" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-types" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-lines" }, + { "browser": false, "xplat": false, "path": "charts/sparkline/display-types" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-winloss" }, { "browser": false, "xplat": false, "path": "charts/sparkline/grid" }, { "browser": false, "xplat": false, "path": "charts/sparkline/markers" }, { "browser": false, "xplat": false, "path": "charts/sparkline/normal-range" }, { "browser": false, "xplat": false, "path": "charts/sparkline/trendlines" }, { "browser": false, "xplat": false, "path": "charts/sparkline/unknown-values" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/animation" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/explosion" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/legend" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/others" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/selection" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/styling" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-category-chart" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-data-chart" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/custom-tool" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/layout-actions-for-data-chart" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/layout-in-vertical-orientation" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/theming" }, + { "browser": false, "xplat": false, "path": "charts/tree-map/events" }, + { "browser": false, "xplat": false, "path": "charts/tree-map/layout" }, + { "browser": false, "xplat": false, "path": "charts/tree-map/overview" }, + { "browser": false, "xplat": false, "path": "charts/tree-map/styling" }, { "browser": false, "xplat": false, "path": "charts/zoomslider/overview" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/background" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/animation" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/labels" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/measures" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/ranges" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/scale" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/tickmarks" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/animation" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/backing" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/labels" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/needle" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/ranges" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/scale" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/animation" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/tickmarks" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/backing" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/labels" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/needle" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/ranges" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/scale" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/tickmarks" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-chart" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/activation" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-combo" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/commands" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/clipboard" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/conditional-formatting" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/data-validation" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/config-options" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/hyperlinks" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/overview" }, { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-workbooks" }, { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-worksheets" }, { "browser": false, "xplat": false, "path": "excel/excel-library/overview" }, @@ -292,6 +261,16 @@ { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-charts" }, { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-sparklines" }, { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-tables" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/activation" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-chart" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-combo" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/clipboard" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/commands" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/conditional-formatting" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/config-options" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/data-validation" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/hyperlinks" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/overview" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-csv" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-json-points" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-model" }, @@ -300,16 +279,16 @@ { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-points" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-polygons" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-polylines" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/display-bing-imagery" }, { "browser": false, "xplat": false, "path": "maps/geo-map/custom-tooltips" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/display-bing-imagery" }, { "browser": false, "xplat": false, "path": "maps/geo-map/display-esri-imagery" }, { "browser": false, "xplat": false, "path": "maps/geo-map/display-heat-imagery" }, { "browser": false, "xplat": false, "path": "maps/geo-map/display-osm-imagery" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/marker-template" }, { "browser": false, "xplat": false, "path": "maps/geo-map/marker-layouts" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/marker-template" }, { "browser": false, "xplat": false, "path": "maps/geo-map/marker-type" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/overview" }, { "browser": false, "xplat": false, "path": "maps/geo-map/navigation" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/overview" }, { "browser": false, "xplat": false, "path": "maps/geo-map/shape-styling" }, { "browser": false, "xplat": false, "path": "maps/geo-map/triangulating-data" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-area-series" }, @@ -317,6 +296,27 @@ { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-contour-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-density-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-symbol-series" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polygon-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polyline-series" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polygon-series" } + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/animation" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/background" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/labels" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/measures" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/ranges" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/scale" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/tickmarks" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/animation" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/backing" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/labels" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/needle" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/ranges" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/scale" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/tickmarks" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/animation" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/backing" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/labels" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/needle" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/ranges" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/scale" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/tickmarks" } ] \ No newline at end of file From 544f892061e44b9050b176b1448a2e49a65d2c17 Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Wed, 3 Jan 2024 14:57:22 -0500 Subject: [PATCH 023/154] gen readme --- samples/charts/toolbar/custom-tool/ReadMe.md | 50 ++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 samples/charts/toolbar/custom-tool/ReadMe.md diff --git a/samples/charts/toolbar/custom-tool/ReadMe.md b/samples/charts/toolbar/custom-tool/ReadMe.md new file mode 100644 index 000000000..c16697f84 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/ReadMe.md @@ -0,0 +1,50 @@ + + + +This folder contains Angular application with example of Custom Tool feature using [Toolbar](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +cd ./igniteui-angular-examples +cd ../samples/charts/toolbar/custom-tool +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). From cfc22679900f71f6170d8cd0290133b40ef465f1 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 3 Jan 2024 15:00:36 -0500 Subject: [PATCH 024/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.1.3.1 (#94) Co-authored-by: tfsbuild --- .../chart-highlight-filter/.stackblitzrc | 1 + .../chart-highlight-filter/angular.json | 106 + .../chart-highlight-filter/package.json | 47 + .../sandbox.config.json | 5 + .../chart-highlight-filter/src/SalesData.ts | 16700 ++++++++++++++++ .../src/app.component.html | 29 + .../src/app.component.scss | 3 + .../src/app.component.ts | 56 + .../chart-highlight-filter/src/app.module.ts | 27 + .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 + .../src/config/tsconfig.base.json | 24 + .../src/config/tsconfig.spec.json | 19 + .../src/config/tsconfig.worker.json | 14 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../chart-highlight-filter/src/index.html | 23 + .../chart-highlight-filter/src/main.ts | 15 + .../chart-highlight-filter/src/polyfills.ts | 65 + .../chart-highlight-filter/src/styles.scss | 9 + .../chart-highlight-filter/src/typings.d.ts | 5 + .../chart-highlight-filter/tsconfig.json | 21 + .../chart-highlight-filter/tslint.json | 31 + .../.stackblitzrc | 1 + .../angular.json | 106 + .../package.json | 47 + .../sandbox.config.json | 5 + .../src/OnlineTrafficHighlightTotals.ts | 49 + .../src/app.component.html | 48 + .../src/app.component.scss | 3 + .../src/app.component.ts | 64 + .../src/app.module.ts | 29 + .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 + .../src/config/tsconfig.base.json | 24 + .../src/config/tsconfig.spec.json | 19 + .../src/config/tsconfig.worker.json | 14 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../src/index.html | 23 + .../src/main.ts | 15 + .../src/polyfills.ts | 65 + .../src/styles.scss | 9 + .../src/typings.d.ts | 5 + .../tsconfig.json | 21 + .../tslint.json | 31 + .../.stackblitzrc | 1 + .../angular.json | 106 + .../package.json | 47 + .../sandbox.config.json | 5 + .../src/CountryRenewableElectricity.ts | 100 + .../src/app.component.html | 62 + .../src/app.component.scss | 3 + .../src/app.component.ts | 68 + .../src/app.module.ts | 29 + .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 + .../src/config/tsconfig.base.json | 24 + .../src/config/tsconfig.spec.json | 19 + .../src/config/tsconfig.worker.json | 14 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../src/index.html | 23 + .../src/main.ts | 15 + .../src/polyfills.ts | 65 + .../src/styles.scss | 9 + .../src/typings.d.ts | 5 + .../tsconfig.json | 21 + .../tslint.json | 31 + .../chart-highlight-filter/.stackblitzrc | 1 + .../chart-highlight-filter/angular.json | 106 + .../chart-highlight-filter/package.json | 47 + .../sandbox.config.json | 5 + .../OlympicMedalsTopCountriesWithTotals.ts | 65 + .../src/app.component.html | 48 + .../src/app.component.scss | 3 + .../src/app.component.ts | 64 + .../chart-highlight-filter/src/app.module.ts | 29 + .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 + .../src/config/tsconfig.base.json | 24 + .../src/config/tsconfig.spec.json | 19 + .../src/config/tsconfig.worker.json | 14 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../chart-highlight-filter/src/index.html | 23 + .../chart-highlight-filter/src/main.ts | 15 + .../chart-highlight-filter/src/polyfills.ts | 65 + .../chart-highlight-filter/src/styles.scss | 9 + .../chart-highlight-filter/src/typings.d.ts | 5 + .../chart-highlight-filter/tsconfig.json | 21 + .../chart-highlight-filter/tslint.json | 31 + 92 files changed, 19167 insertions(+) create mode 100644 samples/charts/category-chart/chart-highlight-filter/.stackblitzrc create mode 100644 samples/charts/category-chart/chart-highlight-filter/angular.json create mode 100644 samples/charts/category-chart/chart-highlight-filter/package.json create mode 100644 samples/charts/category-chart/chart-highlight-filter/sandbox.config.json create mode 100644 samples/charts/category-chart/chart-highlight-filter/src/SalesData.ts create mode 100644 samples/charts/category-chart/chart-highlight-filter/src/app.component.html create mode 100644 samples/charts/category-chart/chart-highlight-filter/src/app.component.scss create mode 100644 samples/charts/category-chart/chart-highlight-filter/src/app.component.ts create mode 100644 samples/charts/category-chart/chart-highlight-filter/src/app.module.ts create mode 100644 samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.app.json create mode 100644 samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.base.json create mode 100644 samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.spec.json create mode 100644 samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/chart-highlight-filter/src/environments/environment.prod.ts create mode 100644 samples/charts/category-chart/chart-highlight-filter/src/environments/environment.ts create mode 100644 samples/charts/category-chart/chart-highlight-filter/src/index.html create mode 100644 samples/charts/category-chart/chart-highlight-filter/src/main.ts create mode 100644 samples/charts/category-chart/chart-highlight-filter/src/polyfills.ts create mode 100644 samples/charts/category-chart/chart-highlight-filter/src/styles.scss create mode 100644 samples/charts/category-chart/chart-highlight-filter/src/typings.d.ts create mode 100644 samples/charts/category-chart/chart-highlight-filter/tsconfig.json create mode 100644 samples/charts/category-chart/chart-highlight-filter/tslint.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/.stackblitzrc create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/angular.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/package.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/sandbox.config.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/OnlineTrafficHighlightTotals.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.html create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.scss create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/app.module.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.app.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.base.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.spec.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/environments/environment.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/index.html create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/main.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/polyfills.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/styles.scss create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/typings.d.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/tslint.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/.stackblitzrc create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/angular.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/sandbox.config.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/CountryRenewableElectricity.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.html create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.scss create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.module.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.app.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.base.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.spec.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/environments/environment.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/index.html create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/main.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/polyfills.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/styles.scss create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/typings.d.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/tslint.json create mode 100644 samples/charts/data-chart/chart-highlight-filter/.stackblitzrc create mode 100644 samples/charts/data-chart/chart-highlight-filter/angular.json create mode 100644 samples/charts/data-chart/chart-highlight-filter/package.json create mode 100644 samples/charts/data-chart/chart-highlight-filter/sandbox.config.json create mode 100644 samples/charts/data-chart/chart-highlight-filter/src/OlympicMedalsTopCountriesWithTotals.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter/src/app.component.html create mode 100644 samples/charts/data-chart/chart-highlight-filter/src/app.component.scss create mode 100644 samples/charts/data-chart/chart-highlight-filter/src/app.component.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter/src/app.module.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.app.json create mode 100644 samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.base.json create mode 100644 samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.spec.json create mode 100644 samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/chart-highlight-filter/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter/src/environments/environment.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter/src/index.html create mode 100644 samples/charts/data-chart/chart-highlight-filter/src/main.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter/src/polyfills.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter/src/styles.scss create mode 100644 samples/charts/data-chart/chart-highlight-filter/src/typings.d.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter/tsconfig.json create mode 100644 samples/charts/data-chart/chart-highlight-filter/tslint.json diff --git a/samples/charts/category-chart/chart-highlight-filter/.stackblitzrc b/samples/charts/category-chart/chart-highlight-filter/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/category-chart/chart-highlight-filter/angular.json b/samples/charts/category-chart/chart-highlight-filter/angular.json new file mode 100644 index 000000000..11ffb8c9c --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json new file mode 100644 index 000000000..366494b4f --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -0,0 +1,47 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "9.1.1", + "typescript": "5.2.2" + } +} diff --git a/samples/charts/category-chart/chart-highlight-filter/sandbox.config.json b/samples/charts/category-chart/chart-highlight-filter/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/category-chart/chart-highlight-filter/src/SalesData.ts b/samples/charts/category-chart/chart-highlight-filter/src/SalesData.ts new file mode 100644 index 000000000..2da064b31 --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/src/SalesData.ts @@ -0,0 +1,16700 @@ +//begin data +export class SalesData extends Array { + public constructor() { + super(); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `501`, + ManufacturingPrice: 15, + SalePrice: 23, + GrossSales: 26440, + Discounts: 0, + Sales: 26440, + COGS: 16185, + Profit: 11255, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1372`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 27440, + Discounts: 0, + Sales: 27440, + COGS: 16185, + Profit: 11255, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2762`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 55240, + Discounts: 0, + Sales: 55240, + COGS: 13210, + Profit: 42030, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1464`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 21960, + Discounts: 0, + Sales: 21960, + COGS: 21780, + Profit: 180, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `719`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 10785, + Discounts: 0, + Sales: 10785, + COGS: 8880, + Profit: 1905, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3576`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 53640, + Discounts: 0, + Sales: 53640, + COGS: 24700, + Profit: 28940, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `4422`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1547700, + Discounts: 0, + Sales: 1547700, + COGS: 393380, + Profit: 1154320, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3649`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 54735, + Discounts: 0, + Sales: 54735, + COGS: 9210, + Profit: 45525, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `4172`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 50064, + Discounts: 0, + Sales: 50064, + COGS: 7554, + Profit: 42510, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3841`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 76820, + Discounts: 0, + Sales: 76820, + COGS: 18990, + Profit: 57830, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3726`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 44712, + Discounts: 0, + Sales: 44712, + COGS: 4635, + Profit: 40077, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `2625`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 39375, + Discounts: 0, + Sales: 39375, + COGS: 24700, + Profit: 14675, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1958`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 244750, + Discounts: 0, + Sales: 244750, + COGS: 319860, + Profit: 75110, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `3271`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 981300, + Discounts: 0, + Sales: 981300, + COGS: 239500, + Profit: 741800, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2091`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 14637, + Discounts: 0, + Sales: 14637, + COGS: 10730, + Profit: 3907, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `2825`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 42375, + Discounts: 0, + Sales: 42375, + COGS: 6150, + Profit: 36225, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2513`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 50260, + Discounts: 0, + Sales: 50260, + COGS: 2920, + Profit: 47340, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `883`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 13245, + Discounts: 0, + Sales: 13245, + COGS: 9740, + Profit: 3505, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2087`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 25044, + Discounts: 0, + Sales: 25044, + COGS: 7554, + Profit: 17490, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2563`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 897050, + Discounts: 0, + Sales: 897050, + COGS: 261560, + Profit: 635490, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2846`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 34152, + Discounts: 0, + Sales: 34152, + COGS: 1101, + Profit: 33051, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `997`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 6979, + Discounts: 0, + Sales: 6979, + COGS: 4415, + Profit: 2564, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2290`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 34350, + Discounts: 0, + Sales: 34350, + COGS: 24720, + Profit: 9630, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2133`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14931, + Discounts: 0, + Sales: 14931, + COGS: 5715, + Profit: 9216, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3617`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 72340, + Discounts: 0, + Sales: 72340, + COGS: 18170, + Profit: 54170, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1266`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 443100, + Discounts: 0, + Sales: 443100, + COGS: 393380, + Profit: 49720, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `894`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 6258, + Discounts: 0, + Sales: 6258, + COGS: 7465, + Profit: 1207, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `2725`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 340625, + Discounts: 0, + Sales: 340625, + COGS: 216480, + Profit: 124145, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3061`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 36732, + Discounts: 0, + Sales: 36732, + COGS: 6483, + Profit: 30249, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3958`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1385300, + Discounts: 0, + Sales: 1385300, + COGS: 261560, + Profit: 1123740, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3920`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 47040, + Discounts: 0, + Sales: 47040, + COGS: 4635, + Profit: 42405, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3381`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 422625, + Discounts: 0, + Sales: 422625, + COGS: 338520, + Profit: 84105, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `4307`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 1292100, + Discounts: 0, + Sales: 1292100, + COGS: 500250, + Profit: 791850, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `878`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10536, + Discounts: 0, + Sales: 10536, + COGS: 8514, + Profit: 2022, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `496`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 7440, + Discounts: 0, + Sales: 7440, + COGS: 21780, + Profit: 14340, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3367`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 50505, + Discounts: 0, + Sales: 50505, + COGS: 8880, + Profit: 41625, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2055`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 616500, + Discounts: 0, + Sales: 616500, + COGS: 537750, + Profit: 78750, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `4041`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 80820, + Discounts: 0, + Sales: 80820, + COGS: 18170, + Profit: 62650, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `3237`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1132950, + Discounts: 0, + Sales: 1132950, + COGS: 715000, + Profit: 417950, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `630`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 7560, + Discounts: 0, + Sales: 7560, + COGS: 5859, + Profit: 1701, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `4210`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 526250, + Discounts: 0, + Sales: 526250, + COGS: 506340, + Profit: 19910, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1127`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 22540, + Discounts: 0, + Sales: 22540, + COGS: 18990, + Profit: 3550, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `3438`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 24066, + Discounts: 0, + Sales: 24066, + COGS: 8430, + Profit: 15636, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2015`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 24180, + Discounts: 0, + Sales: 24180, + COGS: 6423, + Profit: 17757, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2534`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 17738, + Discounts: 0, + Sales: 17738, + COGS: 5715, + Profit: 12023, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1384`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 20760, + Discounts: 0, + Sales: 20760, + COGS: 6150, + Profit: 14610, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3561`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 24927, + Discounts: 276.15, + Sales: 24650.85, + COGS: 19725, + Profit: 4925.85, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1823`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27345, + Discounts: 344.4, + Sales: 27000.6, + COGS: 22960, + Profit: 4040.6, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2795`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19565, + Discounts: 72.1, + Sales: 19492.9, + COGS: 5150, + Profit: 14342.9, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `457`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 3199, + Discounts: 44.73, + Sales: 3154.27, + COGS: 3195, + Profit: 40.73, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3785`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26495, + Discounts: 92.82, + Sales: 26402.18, + COGS: 6630, + Profit: 19772.18, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `748`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 8976, + Discounts: 222.96, + Sales: 8753.04, + COGS: 5574, + Profit: 3179.04, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1021`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 357350, + Discounts: 4235, + Sales: 353115, + COGS: 314600, + Profit: 38515, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `2076`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 14532, + Discounts: 177.03, + Sales: 14354.97, + COGS: 12645, + Profit: 1709.97, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `4316`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 51792, + Discounts: 173.4, + Sales: 51618.6, + COGS: 4335, + Profit: 47283.6, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `4174`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50088, + Discounts: 320.52, + Sales: 49767.48, + COGS: 8013, + Profit: 41754.48, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3736`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1307600, + Discounts: 4889.5, + Sales: 1302710.5, + COGS: 363220, + Profit: 939490.5, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1914`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 669900, + Discounts: 7542.5, + Sales: 662357.5, + COGS: 560300, + Profit: 102057.5, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `2742`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 41130, + Discounts: 332.1, + Sales: 40797.9, + COGS: 22140, + Profit: 18657.9, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1499`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 449700, + Discounts: 6903, + Sales: 442797, + COGS: 575250, + Profit: 132453, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3772`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 75440, + Discounts: 275.1, + Sales: 75164.9, + COGS: 13755, + Profit: 61409.9, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1112`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 7784, + Discounts: 128.1, + Sales: 7655.9, + COGS: 9150, + Profit: 1494.1, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2368`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 35520, + Discounts: 227.1, + Sales: 35292.9, + COGS: 15140, + Profit: 20152.9, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1586`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 11102, + Discounts: 314.48, + Sales: 10787.52, + COGS: 22462.5, + Profit: 11674.98, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3386`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 423250, + Discounts: 908.75, + Sales: 422341.25, + COGS: 87240, + Profit: 335101.25, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `852`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 106500, + Discounts: 983.75, + Sales: 105516.25, + COGS: 94440, + Profit: 11076.25, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2783`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 347875, + Discounts: 2278.75, + Sales: 345596.25, + COGS: 218760, + Profit: 126836.25, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2684`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 40260, + Discounts: 112.05, + Sales: 40147.95, + COGS: 7470, + Profit: 32677.95, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4083`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1224900, + Discounts: 8715, + Sales: 1216185, + COGS: 726250, + Profit: 489935, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2816`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 985600, + Discounts: 7542.5, + Sales: 978057.5, + COGS: 560300, + Profit: 417757.5, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `4294`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 85880, + Discounts: 772.8, + Sales: 85107.2, + COGS: 38640, + Profit: 46467.2, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2856`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 19992, + Discounts: 25.34, + Sales: 19966.66, + COGS: 1810, + Profit: 18156.66, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `1407`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 175875, + Discounts: 1153.75, + Sales: 174721.25, + COGS: 110760, + Profit: 63961.25, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `1265`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 8855, + Discounts: 18.41, + Sales: 8836.59, + COGS: 1315, + Profit: 7521.59, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3892`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1362200, + Discounts: 3302.25, + Sales: 1358897.75, + COGS: 245310, + Profit: 1113587.75, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `3068`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 383500, + Discounts: 908.75, + Sales: 382591.25, + COGS: 87240, + Profit: 295351.25, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2181`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 272625, + Discounts: 983.75, + Sales: 271641.25, + COGS: 94440, + Profit: 177201.25, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `1356`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 406800, + Discounts: 2958, + Sales: 403842, + COGS: 246500, + Profit: 177201.25, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1814`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 634900, + Discounts: 4889.5, + Sales: 630010.5, + COGS: 363220, + Profit: 266790.5, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `1495`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 186875, + Discounts: 2180, + Sales: 184695, + COGS: 209280, + Profit: 24585, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1463`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 182875, + Discounts: 1856.25, + Sales: 181018.75, + COGS: 89100, + Profit: 91918.75, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `215`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 2580, + Discounts: 310.8, + Sales: 2269.2, + COGS: 3885, + Profit: 1615.8, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `566`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 198100, + Discounts: 19964, + Sales: 178136, + COGS: 741520, + Profit: 563384, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `3255`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 39060, + Discounts: 274.08, + Sales: 38785.92, + COGS: 3426, + Profit: 35359.92, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `772`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 15440, + Discounts: 626.4, + Sales: 14813.6, + COGS: 15660, + Profit: 846.4, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1135`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13620, + Discounts: 165.6, + Sales: 13454.4, + COGS: 2070, + Profit: 11384.4, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1193`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 17895, + Discounts: 708.9, + Sales: 17186.1, + COGS: 23630, + Profit: 6443.9, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2530`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 759000, + Discounts: 5508, + Sales: 753492, + COGS: 229500, + Profit: 523992, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3451`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1035300, + Discounts: 10368, + Sales: 1024932, + COGS: 432000, + Profit: 592932, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3059`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 36708, + Discounts: 274.08, + Sales: 36433.92, + COGS: 3426, + Profit: 33007.92, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3957`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 494625, + Discounts: 1655, + Sales: 492970, + COGS: 79440, + Profit: 413530, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3444`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 41328, + Discounts: 310.8, + Sales: 41017.2, + COGS: 3885, + Profit: 37132.2, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3154`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 946200, + Discounts: 11496, + Sales: 934704, + COGS: 479000, + Profit: 455704, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `4108`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1437800, + Discounts: 19964, + Sales: 1417836, + COGS: 741520, + Profit: 676316, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3760`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 470000, + Discounts: 6822.5, + Sales: 463177.5, + COGS: 327480, + Profit: 135697.5, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2334`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 28008, + Discounts: 253.2, + Sales: 27754.8, + COGS: 3165, + Profit: 24589.8, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `580`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 6960, + Discounts: 260.16, + Sales: 6699.84, + COGS: 3252, + Profit: 3447.84, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2610`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 52200, + Discounts: 626.4, + Sales: 51573.6, + COGS: 15660, + Profit: 35913.6, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `1459`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 510650, + Discounts: 20139, + Sales: 490511, + COGS: 748020, + Profit: 257509, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `3774`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 45288, + Discounts: 253.2, + Sales: 45034.8, + COGS: 3165, + Profit: 41869.8, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2572`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 30864, + Discounts: 260.16, + Sales: 30603.84, + COGS: 3252, + Profit: 27351.84, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `320`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 40000, + Discounts: 1655, + Sales: 38345, + COGS: 79440, + Profit: 41095, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3275`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1146250, + Discounts: 20139, + Sales: 1126111, + COGS: 748020, + Profit: 378091, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3582`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 447750, + Discounts: 6822.5, + Sales: 440927.5, + COGS: 327480, + Profit: 113447.5, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `4056`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1216800, + Discounts: 1554, + Sales: 1215246, + COGS: 64750, + Profit: 1150496, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2144`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 643200, + Discounts: 6606, + Sales: 636594, + COGS: 275250, + Profit: 361344, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `3502`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 437750, + Discounts: 5690, + Sales: 432060, + COGS: 273120, + Profit: 158940, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `679`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 13580, + Discounts: 494.4, + Sales: 13085.6, + COGS: 12360, + Profit: 725.6, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `2351`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 47020, + Discounts: 376.4, + Sales: 46643.6, + COGS: 9410, + Profit: 37233.6, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `2043`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 612900, + Discounts: 11496, + Sales: 601404, + COGS: 479000, + Profit: 122404, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `3565`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 445625, + Discounts: 15913.13, + Sales: 429711.88, + COGS: 509220, + Profit: 79508.13, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1401`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 28020, + Discounts: 1548, + Sales: 26472, + COGS: 25800, + Profit: 672, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2077`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 623100, + Discounts: 6201, + Sales: 616899, + COGS: 172250, + Profit: 444649, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `3643`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 43716, + Discounts: 700.92, + Sales: 43015.08, + COGS: 5841, + Profit: 37174.08, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2960`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20720, + Discounts: 411.18, + Sales: 20308.82, + COGS: 9790, + Profit: 10518.82, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1201`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 14412, + Discounts: 684.36, + Sales: 13727.64, + COGS: 5703, + Profit: 8024.64, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `2321`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 16247, + Discounts: 114.24, + Sales: 16132.76, + COGS: 2720, + Profit: 13412.76, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3972`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 496500, + Discounts: 4826.25, + Sales: 491673.75, + COGS: 154440, + Profit: 337233.75, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3878`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 484750, + Discounts: 6397.5, + Sales: 478352.5, + COGS: 204720, + Profit: 273632.5, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2278`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 683400, + Discounts: 21910.5, + Sales: 661489.5, + COGS: 608625, + Profit: 52864.5, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1075`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 134375, + Discounts: 6652.5, + Sales: 127722.5, + COGS: 212880, + Profit: 85157.5, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `4050`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 48600, + Discounts: 684.36, + Sales: 47915.64, + COGS: 5703, + Profit: 42212.64, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3035`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 910500, + Discounts: 6201, + Sales: 904299, + COGS: 172250, + Profit: 732049, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3636`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 454500, + Discounts: 5887.5, + Sales: 448612.5, + COGS: 188400, + Profit: 260212.5, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1379`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 16548, + Discounts: 493.02, + Sales: 16054.98, + COGS: 4108.5, + Profit: 11946.48, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `4492`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 561500, + Discounts: 7533.75, + Sales: 553966.25, + COGS: 241080, + Profit: 312886.25, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1744`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 218000, + Discounts: 4826.25, + Sales: 213173.75, + COGS: 154440, + Profit: 58733.75, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2341`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 292625, + Discounts: 6397.5, + Sales: 286227.5, + COGS: 204720, + Profit: 81507.5, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3835`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 479375, + Discounts: 7533.75, + Sales: 471841.25, + COGS: 241080, + Profit: 230761.25, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1161`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 348300, + Discounts: 25596, + Sales: 322704, + COGS: 711000, + Profit: 388296, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `876`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10512, + Discounts: 689.76, + Sales: 9822.24, + COGS: 5748, + Profit: 4074.24, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `1705`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 213125, + Discounts: 5887.5, + Sales: 207237.5, + COGS: 188400, + Profit: 18837.5, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1805`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 541500, + Discounts: 16866, + Sales: 524634, + COGS: 468500, + Profit: 56134, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `389`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 136150, + Discounts: 17241, + Sales: 118909, + COGS: 426920, + Profit: 308011, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1459`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 29180, + Discounts: 498.6, + Sales: 28681.4, + COGS: 8310, + Profit: 20371.4, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `4236`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 84720, + Discounts: 2310.3, + Sales: 82409.7, + COGS: 38505, + Profit: 43904.7, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3627`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 43524, + Discounts: 892.44, + Sales: 42631.56, + COGS: 7437, + Profit: 35194.56, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1756`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 26340, + Discounts: 1218.6, + Sales: 25121.4, + COGS: 20310, + Profit: 4811.4, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `307`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 4605, + Discounts: 1218.6, + Sales: 3386.4, + COGS: 20310, + Profit: 16923.6, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1222`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 366600, + Discounts: 24252, + Sales: 342348, + COGS: 505250, + Profit: 162902, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `489`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 171150, + Discounts: 3836, + Sales: 167314, + COGS: 71240, + Profit: 96074, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `4133`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 61995, + Discounts: 1180.2, + Sales: 60814.8, + COGS: 19670, + Profit: 41144.8, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2743`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 822900, + Discounts: 22308, + Sales: 800592, + COGS: 464750, + Profit: 335842, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `4460`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1338000, + Discounts: 24252, + Sales: 1313748, + COGS: 505250, + Profit: 808498, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1232`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 154000, + Discounts: 5690, + Sales: 148310, + COGS: 136560, + Profit: 11750, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2586`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 18102, + Discounts: 1190.28, + Sales: 16911.72, + COGS: 21255, + Profit: 4343.28, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1332`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 166500, + Discounts: 3975, + Sales: 162525, + COGS: 95400, + Profit: 67125, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4487`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1346100, + Discounts: 16974, + Sales: 1329126, + COGS: 353625, + Profit: 975501, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3862`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1158600, + Discounts: 35016, + Sales: 1123584, + COGS: 729500, + Profit: 394084, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1765`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 617750, + Discounts: 48300, + Sales: 569450, + COGS: 897000, + Profit: 327550, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3533`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 441625, + Discounts: 14940, + Sales: 426685, + COGS: 358560, + Profit: 68125, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2016`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 30240, + Discounts: 130.8, + Sales: 30109.2, + COGS: 2180, + Profit: 27929.2, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2938`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 58760, + Discounts: 1659.2, + Sales: 57100.8, + COGS: 20740, + Profit: 36360.8, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3352`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67040, + Discounts: 844.8, + Sales: 66195.2, + COGS: 10560, + Profit: 55635.2, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2430`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 850500, + Discounts: 3836, + Sales: 846664, + COGS: 71240, + Profit: 775424, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `535`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 66875, + Discounts: 5690, + Sales: 61185, + COGS: 136560, + Profit: 75375, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1523`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 18276, + Discounts: 703.2, + Sales: 17572.8, + COGS: 4395, + Profit: 13177.8, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1782`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 623700, + Discounts: 30478, + Sales: 593222, + COGS: 566020, + Profit: 27202, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `347`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 4164, + Discounts: 415.68, + Sales: 3748.32, + COGS: 2598, + Profit: 1150.32, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3509`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1228150, + Discounts: 30478, + Sales: 1197672, + COGS: 566020, + Profit: 631652, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2943`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1030050, + Discounts: 26110, + Sales: 1003940, + COGS: 484900, + Profit: 519040, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `4037`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 504625, + Discounts: 5370, + Sales: 499255, + COGS: 128880, + Profit: 370375, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `4146`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1451100, + Discounts: 26698, + Sales: 1424402, + COGS: 495820, + Profit: 928582, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `725`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 5075, + Discounts: 480.2, + Sales: 4594.8, + COGS: 6860, + Profit: 2265.2, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2325`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 16275, + Discounts: 941.15, + Sales: 15333.85, + COGS: 13445, + Profit: 1888.85, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `675`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 8100, + Discounts: 1458.6, + Sales: 6641.4, + COGS: 7293, + Profit: 651.6, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2990`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 35880, + Discounts: 1458.6, + Sales: 34421.4, + COGS: 7293, + Profit: 27128.4, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1072`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 7504, + Discounts: 941.15, + Sales: 6562.85, + COGS: 13445, + Profit: 6882.15, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `1048`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 7336, + Discounts: 589.05, + Sales: 6746.95, + COGS: 8415, + Profit: 1668.05, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `469`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 5628, + Discounts: 673.8, + Sales: 4954.2, + COGS: 3369, + Profit: 1585.2, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `4240`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50880, + Discounts: 1119, + Sales: 49761, + COGS: 5595, + Profit: 44166, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1976`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 23712, + Discounts: 669.6, + Sales: 23042.4, + COGS: 3348, + Profit: 19694.4, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1984`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39680, + Discounts: 1563, + Sales: 38117, + COGS: 15630, + Profit: 22487, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `480`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 144000, + Discounts: 14865, + Sales: 129135, + COGS: 247750, + Profit: 118615, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1205`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 18075, + Discounts: 2093.25, + Sales: 15981.75, + COGS: 27910, + Profit: 11928.25, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `2480`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 17360, + Discounts: 199.5, + Sales: 17160.5, + COGS: 2850, + Profit: 14310.5, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `2926`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 20482, + Discounts: 870.45, + Sales: 19611.55, + COGS: 12435, + Profit: 7176.55, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3210`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1123500, + Discounts: 24228.75, + Sales: 1099271.25, + COGS: 359970, + Profit: 739301.25, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `3221`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 402625, + Discounts: 22668.75, + Sales: 379956.25, + COGS: 435240, + Profit: 55283.75, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `1127`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13524, + Discounts: 1405.2, + Sales: 12118.8, + COGS: 7026, + Profit: 5092.8, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1610`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 32200, + Discounts: 1303, + Sales: 30897, + COGS: 13030, + Profit: 17867, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4100`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 512500, + Discounts: 18700, + Sales: 493800, + COGS: 359040, + Profit: 134760, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1012`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 126500, + Discounts: 14906.25, + Sales: 111593.75, + COGS: 286200, + Profit: 174606.25, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3337`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1001100, + Discounts: 24105, + Sales: 976995, + COGS: 401750, + Profit: 575245, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3955`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 27685, + Discounts: 814.45, + Sales: 26870.55, + COGS: 11635, + Profit: 15235.55, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4347`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1304100, + Discounts: 14865, + Sales: 1289235, + COGS: 247750, + Profit: 1041485, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1548`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 541800, + Discounts: 10535, + Sales: 531265, + COGS: 156520, + Profit: 374745, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2153`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 32295, + Discounts: 1965, + Sales: 30330, + COGS: 26200, + Profit: 4130, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4126`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 515750, + Discounts: 5381.25, + Sales: 510368.75, + COGS: 103320, + Profit: 407048.75, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3376`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67520, + Discounts: 2663, + Sales: 64857, + COGS: 26630, + Profit: 38227, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2244`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 33660, + Discounts: 416.25, + Sales: 33243.75, + COGS: 5550, + Profit: 27693.75, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `1360`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 20400, + Discounts: 2145.75, + Sales: 18254.25, + COGS: 28610, + Profit: 10355.75, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `279`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 34875, + Discounts: 5043.75, + Sales: 29831.25, + COGS: 96840, + Profit: 67008.75, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2521`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 882350, + Discounts: 10535, + Sales: 871815, + COGS: 156520, + Profit: 715295, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2433`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 48660, + Discounts: 2832, + Sales: 45828, + COGS: 28320, + Profit: 17508, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1738`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 34760, + Discounts: 1579, + Sales: 33181, + COGS: 15790, + Profit: 17391, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1106`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 138250, + Discounts: 5381.25, + Sales: 132868.75, + COGS: 103320, + Profit: 29548.75, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `213`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 63900, + Discounts: 18750, + Sales: 45150, + COGS: 312500, + Profit: 267350, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2929`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 58580, + Discounts: 2663, + Sales: 55917, + COGS: 26630, + Profit: 29287, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2389`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 16723, + Discounts: 199.5, + Sales: 16523.5, + COGS: 2850, + Profit: 13673.5, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3086`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 21602, + Discounts: 870.45, + Sales: 20731.55, + COGS: 12435, + Profit: 8296.55, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `745`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 260750, + Discounts: 23625, + Sales: 237125, + COGS: 351000, + Profit: 113875, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `1266`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 443100, + Discounts: 9660, + Sales: 433440, + COGS: 143520, + Profit: 289920, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `4287`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1286100, + Discounts: 18750, + Sales: 1267350, + COGS: 312500, + Profit: 954850, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3193`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 47895, + Discounts: 3420.9, + Sales: 44474.1, + COGS: 38010, + Profit: 6464.1, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `1967`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39340, + Discounts: 1341, + Sales: 37999, + COGS: 11175, + Profit: 26824, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `631`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 9465, + Discounts: 2559.6, + Sales: 6905.4, + COGS: 28440, + Profit: 21534.6, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3469`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 41628, + Discounts: 404.64, + Sales: 41223.36, + COGS: 1686, + Profit: 39537.36, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `3215`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 48225, + Discounts: 1827, + Sales: 46398, + COGS: 20300, + Profit: 26098, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1959`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 685650, + Discounts: 20580, + Sales: 665070, + COGS: 254800, + Profit: 410270, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2181`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 763350, + Discounts: 30660, + Sales: 732690, + COGS: 379600, + Profit: 353090, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `2205`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 26460, + Discounts: 1960.56, + Sales: 24499.44, + COGS: 8169, + Profit: 16330.44, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1890`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 661500, + Discounts: 31416, + Sales: 630084, + COGS: 388960, + Profit: 241124, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2417`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 302125, + Discounts: 7140, + Sales: 294985, + COGS: 114240, + Profit: 180745, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1158`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 144750, + Discounts: 20662.5, + Sales: 124087.5, + COGS: 330600, + Profit: 206512.5, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `803`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 12045, + Discounts: 1377, + Sales: 10668, + COGS: 15300, + Profit: 4632, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `3705`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1296750, + Discounts: 31416, + Sales: 1265334, + COGS: 388960, + Profit: 876374, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `589`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 4123, + Discounts: 629.16, + Sales: 3493.84, + COGS: 7490, + Profit: 3996.16, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3999`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 59985, + Discounts: 2559.6, + Sales: 57425.4, + COGS: 28440, + Profit: 28985.4, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `4256`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 29792, + Discounts: 629.16, + Sales: 29162.84, + COGS: 7490, + Profit: 21672.84, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `2160`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 270000, + Discounts: 14906.25, + Sales: 255093.75, + COGS: 238500, + Profit: 16593.75, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `466`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 163100, + Discounts: 35259, + Sales: 127841, + COGS: 436540, + Profit: 308699, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1478`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 22170, + Discounts: 1978.2, + Sales: 20191.8, + COGS: 21980, + Profit: 1788.2, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3798`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 56970, + Discounts: 1568.7, + Sales: 55401.3, + COGS: 17430, + Profit: 37971.3, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `447`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 6705, + Discounts: 1037.7, + Sales: 5667.3, + COGS: 11530, + Profit: 5862.7, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `745`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 14900, + Discounts: 1201.2, + Sales: 13698.8, + COGS: 10010, + Profit: 3688.8, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `1732`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 12124, + Discounts: 559.86, + Sales: 11564.14, + COGS: 6665, + Profit: 4899.14, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1759`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 26385, + Discounts: 1037.7, + Sales: 25347.3, + COGS: 11530, + Profit: 13817.3, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `338`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 4056, + Discounts: 610.68, + Sales: 3445.32, + COGS: 2181, + Profit: 1264.32, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `3911`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 46932, + Discounts: 1582.56, + Sales: 45349.44, + COGS: 5652, + Profit: 39697.44, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `4473`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 53676, + Discounts: 1965.6, + Sales: 51710.4, + COGS: 7020, + Profit: 44690.4, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `383`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 4596, + Discounts: 1967.28, + Sales: 2628.72, + COGS: 7026, + Profit: 4397.28, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `1062`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 15930, + Discounts: 1325.1, + Sales: 14604.9, + COGS: 12620, + Profit: 1984.9, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `4083`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 28581, + Discounts: 556.15, + Sales: 28024.85, + COGS: 5675, + Profit: 22349.85, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3974`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 27818, + Discounts: 268.03, + Sales: 27549.97, + COGS: 2735, + Profit: 24814.97, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3723`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 26061, + Discounts: 775.18, + Sales: 25285.82, + COGS: 7910, + Profit: 17375.82, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2435`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 29220, + Discounts: 1460.34, + Sales: 27759.66, + COGS: 5215.5, + Profit: 22544.16, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1763`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 12341, + Discounts: 775.18, + Sales: 11565.82, + COGS: 7910, + Profit: 3655.82, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `4473`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 31311, + Discounts: 556.15, + Sales: 30754.85, + COGS: 5675, + Profit: 25079.85, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `1246`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 436100, + Discounts: 43144.5, + Sales: 392955.5, + COGS: 457860, + Profit: 64904.5, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1615`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 484500, + Discounts: 9408, + Sales: 475092, + COGS: 112000, + Profit: 363092, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `749`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 224700, + Discounts: 45801, + Sales: 178899, + COGS: 545250, + Profit: 366351, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1318`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 26360, + Discounts: 2766.4, + Sales: 23593.6, + COGS: 19760, + Profit: 3833.6, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `2882`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 864600, + Discounts: 45801, + Sales: 818799, + COGS: 545250, + Profit: 273549, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2484`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 745200, + Discounts: 35742, + Sales: 709458, + COGS: 425500, + Profit: 283958, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3169`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 950700, + Discounts: 9408, + Sales: 941292, + COGS: 112000, + Profit: 829292, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4080`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 510000, + Discounts: 30738.75, + Sales: 479261.25, + COGS: 421560, + Profit: 57701.25, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3943`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 59145, + Discounts: 2206.05, + Sales: 56938.95, + COGS: 21010, + Profit: 35928.95, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `253`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 5060, + Discounts: 2149, + Sales: 2911, + COGS: 15350, + Profit: 12439, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `799`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 239700, + Discounts: 34839, + Sales: 204861, + COGS: 414750, + Profit: 209889, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `3942`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 78840, + Discounts: 852.6, + Sales: 77987.4, + COGS: 6090, + Profit: 71897.4, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `2498`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 312250, + Discounts: 18261.25, + Sales: 293988.75, + COGS: 250440, + Profit: 43548.75, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `2517`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 50340, + Discounts: 2766.4, + Sales: 47573.6, + COGS: 19760, + Profit: 27813.6, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1145`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 343500, + Discounts: 28812, + Sales: 314688, + COGS: 343000, + Profit: 28312, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3814`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 45768, + Discounts: 2725.38, + Sales: 43042.62, + COGS: 9733.5, + Profit: 33309.12, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `1188`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 356400, + Discounts: 20139, + Sales: 336261, + COGS: 239750, + Profit: 96511, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `2233`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 669900, + Discounts: 57687, + Sales: 612213, + COGS: 686750, + Profit: 74537, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `421`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 52625, + Discounts: 14393.75, + Sales: 38231.25, + COGS: 197400, + Profit: 159168.75, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `269`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 94150, + Discounts: 70462, + Sales: 23688, + COGS: 747760, + Profit: 724072, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `952`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19040, + Discounts: 1565.2, + Sales: 17474.8, + COGS: 11180, + Profit: 6294.8, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2964`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 889200, + Discounts: 28812, + Sales: 860388, + COGS: 343000, + Profit: 517388, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1505`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 10535, + Discounts: 273.28, + Sales: 10261.72, + COGS: 2440, + Profit: 7821.72, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1678`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 33560, + Discounts: 2051.2, + Sales: 31508.8, + COGS: 12820, + Profit: 18688.8, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `4249`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 29743, + Discounts: 143.92, + Sales: 29599.08, + COGS: 1285, + Profit: 28314.08, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1677`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 33540, + Discounts: 2051.2, + Sales: 31488.8, + COGS: 12820, + Profit: 18668.8, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3051`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 381375, + Discounts: 15400, + Sales: 365975, + COGS: 184800, + Profit: 181175, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `3372`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 50580, + Discounts: 588, + Sales: 49992, + COGS: 4900, + Profit: 45092, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1686`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 590100, + Discounts: 38136, + Sales: 551964, + COGS: 354120, + Profit: 197844, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3086`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 46290, + Discounts: 3001.2, + Sales: 43288.8, + COGS: 25010, + Profit: 18278.8, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `4150`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 83000, + Discounts: 1132.8, + Sales: 81867.2, + COGS: 7080, + Profit: 74787.2, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3027`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 60540, + Discounts: 1032, + Sales: 59508, + COGS: 6450, + Profit: 53058, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `4359`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1307700, + Discounts: 37488, + Sales: 1270212, + COGS: 390500, + Profit: 879712, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `1589`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 23835, + Discounts: 853.2, + Sales: 22981.8, + COGS: 7110, + Profit: 15871.8, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2679`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 334875, + Discounts: 11140, + Sales: 323735, + COGS: 133680, + Profit: 190055, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3401`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 23807, + Discounts: 705.04, + Sales: 23101.96, + COGS: 6295, + Profit: 16806.96, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2815`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19705, + Discounts: 613.2, + Sales: 19091.8, + COGS: 5475, + Profit: 13616.8, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2964`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 59280, + Discounts: 2185.6, + Sales: 57094.4, + COGS: 13660, + Profit: 43434.4, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `4173`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1251900, + Discounts: 59040, + Sales: 1192860, + COGS: 615000, + Profit: 577860, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1157`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 8099, + Discounts: 379.68, + Sales: 7719.32, + COGS: 3390, + Profit: 4329.32, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3065`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 21455, + Discounts: 894.88, + Sales: 20560.12, + COGS: 7990, + Profit: 12570.12, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4080`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 81600, + Discounts: 3094.4, + Sales: 78505.6, + COGS: 19340, + Profit: 59165.6, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1713`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34260, + Discounts: 4788.8, + Sales: 29471.2, + COGS: 29930, + Profit: 458.8, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1691`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 591850, + Discounts: 38136, + Sales: 553714, + COGS: 354120, + Profit: 199594, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2305`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 27660, + Discounts: 574.08, + Sales: 27085.92, + COGS: 1794, + Profit: 25291.92, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3401`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 23807, + Discounts: 1627.92, + Sales: 22179.08, + COGS: 14535, + Profit: 7644.08, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `2288`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 16016, + Discounts: 1309.28, + Sales: 14706.72, + COGS: 11690, + Profit: 3016.72, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `4086`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1225800, + Discounts: 15240, + Sales: 1210560, + COGS: 158750, + Profit: 1051810, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2651`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 927850, + Discounts: 16086, + Sales: 911764, + COGS: 149370, + Profit: 762394, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3971`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27797, + Discounts: 1309.28, + Sales: 26487.72, + COGS: 11690, + Profit: 14797.72, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2512`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 879200, + Discounts: 10668, + Sales: 868532, + COGS: 99060, + Profit: 769472, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `2745`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 960750, + Discounts: 11816, + Sales: 948934, + COGS: 109720, + Profit: 839214, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1903`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 570900, + Discounts: 51216, + Sales: 519684, + COGS: 533500, + Profit: 13816, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `2914`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 58280, + Discounts: 1132.8, + Sales: 57147.2, + COGS: 7080, + Profit: 50067.2, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1889`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 13223, + Discounts: 1627.92, + Sales: 11595.08, + COGS: 14535, + Profit: 2939.92, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `1466`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 29320, + Discounts: 2185.6, + Sales: 27134.4, + COGS: 13660, + Profit: 13474.4, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `887`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 266100, + Discounts: 59040, + Sales: 207060, + COGS: 615000, + Profit: 407940, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `395`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 7900, + Discounts: 2432, + Sales: 5468, + COGS: 15200, + Profit: 9732, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `1693`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 25395, + Discounts: 853.2, + Sales: 24541.8, + COGS: 7110, + Profit: 17431.8, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2649`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 794700, + Discounts: 15240, + Sales: 779460, + COGS: 158750, + Profit: 620710, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `3608`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 72160, + Discounts: 698.4, + Sales: 71461.6, + COGS: 4365, + Profit: 67096.6, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1073`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 321900, + Discounts: 29538, + Sales: 292362, + COGS: 273500, + Profit: 18862, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `2167`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 650100, + Discounts: 102667.5, + Sales: 547432.5, + COGS: 950625, + Profit: 403192.5, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1319`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 461650, + Discounts: 52479, + Sales: 409171, + COGS: 433160, + Profit: 23989, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1252`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 15024, + Discounts: 2506.68, + Sales: 12517.32, + COGS: 6963, + Profit: 5554.32, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1156`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 144500, + Discounts: 31466.25, + Sales: 113033.75, + COGS: 335640, + Profit: 222606.25, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1153`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 345900, + Discounts: 69255, + Sales: 276645, + COGS: 641250, + Profit: 364605, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2720`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 952000, + Discounts: 76135.5, + Sales: 875864.5, + COGS: 628420, + Profit: 247444.5, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3658`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 54870, + Discounts: 4961.25, + Sales: 49908.75, + COGS: 36750, + Profit: 13158.75, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2950`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 885000, + Discounts: 29538, + Sales: 855462, + COGS: 273500, + Profit: 581962, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1821`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27315, + Discounts: 1656.45, + Sales: 25658.55, + COGS: 12270, + Profit: 13388.55, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1127`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 338100, + Discounts: 35748, + Sales: 302352, + COGS: 331000, + Profit: 28648, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `862`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 107750, + Discounts: 31466.25, + Sales: 76283.75, + COGS: 335640, + Profit: 259356.25, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `3805`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 57075, + Discounts: 330.75, + Sales: 56744.25, + COGS: 2450, + Profit: 54294.25, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `1415`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 424500, + Discounts: 102424.5, + Sales: 322075.5, + COGS: 948375, + Profit: 626299.5, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `2231`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 780850, + Discounts: 41170.5, + Sales: 739679.5, + COGS: 339820, + Profit: 399859.5, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3649`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 456125, + Discounts: 6378.75, + Sales: 449746.25, + COGS: 68040, + Profit: 381706.25, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2948`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 368500, + Discounts: 23737.5, + Sales: 344762.5, + COGS: 253200, + Profit: 91562.5, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3395`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1188250, + Discounts: 39973.5, + Sales: 1148276.5, + COGS: 329940, + Profit: 818336.5, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2650`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 31800, + Discounts: 2112.48, + Sales: 29687.52, + COGS: 5868, + Profit: 23819.52, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `585`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 175500, + Discounts: 71793, + Sales: 103707, + COGS: 664750, + Profit: 561043, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1316`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 460600, + Discounts: 42572.25, + Sales: 418027.75, + COGS: 351390, + Profit: 66637.75, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `4459`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 53508, + Discounts: 950.4, + Sales: 52557.6, + COGS: 2640, + Profit: 49917.6, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2711`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 813300, + Discounts: 50409, + Sales: 762891, + COGS: 466750, + Profit: 296141, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3613`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 54195, + Discounts: 1656.45, + Sales: 52538.55, + COGS: 12270, + Profit: 40268.55, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1847`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 230875, + Discounts: 9866.25, + Sales: 221008.75, + COGS: 105240, + Profit: 115768.75, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2996`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1048600, + Discounts: 65236.5, + Sales: 983363.5, + COGS: 538460, + Profit: 444903.5, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `2838`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 993300, + Discounts: 39973.5, + Sales: 953326.5, + COGS: 329940, + Profit: 623386.5, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `1536`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 30720, + Discounts: 3049.2, + Sales: 27670.8, + COGS: 16940, + Profit: 10730.8, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1291`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 25820, + Discounts: 1193.4, + Sales: 24626.6, + COGS: 6630, + Profit: 17996.6, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1213`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 8491, + Discounts: 515.97, + Sales: 7975.03, + COGS: 4095, + Profit: 3880.03, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2370`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 28440, + Discounts: 1706.4, + Sales: 26733.6, + COGS: 4740, + Profit: 21993.6, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1979`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 13853, + Discounts: 328.23, + Sales: 13524.77, + COGS: 2605, + Profit: 10919.77, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2879`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 57580, + Discounts: 1751.4, + Sales: 55828.6, + COGS: 9730, + Profit: 46098.6, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1707`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34140, + Discounts: 1868.4, + Sales: 32271.6, + COGS: 10380, + Profit: 21891.6, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2933`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 20531, + Discounts: 226.8, + Sales: 20304.2, + COGS: 1800, + Profit: 18504.2, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1014`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 12168, + Discounts: 2124.36, + Sales: 10043.64, + COGS: 5901, + Profit: 4142.64, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `693`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 10395, + Discounts: 3547.8, + Sales: 6847.2, + COGS: 26280, + Profit: 19432.8, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3741`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26187, + Discounts: 226.8, + Sales: 25960.2, + COGS: 1800, + Profit: 24160.2, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `3995`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27965, + Discounts: 328.23, + Sales: 27636.77, + COGS: 2605, + Profit: 25031.77, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `953`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19060, + Discounts: 1868.4, + Sales: 17191.6, + COGS: 10380, + Profit: 6811.6, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `2530`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 37950, + Discounts: 2201.18, + Sales: 35748.82, + COGS: 16305, + Profit: 19443.82, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1372`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 27440, + Discounts: 0, + Sales: 27440, + COGS: 16185, + Profit: 11255, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2762`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 55240, + Discounts: 0, + Sales: 55240, + COGS: 13210, + Profit: 42030, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1464`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 21960, + Discounts: 0, + Sales: 21960, + COGS: 21780, + Profit: 180, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `719`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 10785, + Discounts: 0, + Sales: 10785, + COGS: 8880, + Profit: 1905, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3576`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 53640, + Discounts: 0, + Sales: 53640, + COGS: 24700, + Profit: 28940, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `4422`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1547700, + Discounts: 0, + Sales: 1547700, + COGS: 393380, + Profit: 1154320, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3649`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 54735, + Discounts: 0, + Sales: 54735, + COGS: 9210, + Profit: 45525, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `4172`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 50064, + Discounts: 0, + Sales: 50064, + COGS: 7554, + Profit: 42510, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3841`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 76820, + Discounts: 0, + Sales: 76820, + COGS: 18990, + Profit: 57830, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3726`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 44712, + Discounts: 0, + Sales: 44712, + COGS: 4635, + Profit: 40077, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `2625`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 39375, + Discounts: 0, + Sales: 39375, + COGS: 24700, + Profit: 14675, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1958`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 244750, + Discounts: 0, + Sales: 244750, + COGS: 319860, + Profit: 75110, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `3271`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 981300, + Discounts: 0, + Sales: 981300, + COGS: 239500, + Profit: 741800, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2091`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 14637, + Discounts: 0, + Sales: 14637, + COGS: 10730, + Profit: 3907, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `2530`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 316250, + Discounts: 0, + Sales: 316250, + COGS: 41400, + Profit: 274850, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `2825`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 42375, + Discounts: 0, + Sales: 42375, + COGS: 6150, + Profit: 36225, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2513`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 50260, + Discounts: 0, + Sales: 50260, + COGS: 2920, + Profit: 47340, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `883`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 13245, + Discounts: 0, + Sales: 13245, + COGS: 9740, + Profit: 3505, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2087`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 25044, + Discounts: 0, + Sales: 25044, + COGS: 7554, + Profit: 17490, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2563`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 897050, + Discounts: 0, + Sales: 897050, + COGS: 261560, + Profit: 635490, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2846`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 34152, + Discounts: 0, + Sales: 34152, + COGS: 1101, + Profit: 33051, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `997`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 6979, + Discounts: 0, + Sales: 6979, + COGS: 4415, + Profit: 2564, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3421`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 51315, + Discounts: 0, + Sales: 51315, + COGS: 5490, + Profit: 45825, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Marchesa`, + UnitsSold: `70000`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 1050000, + Discounts: 0, + Sales: 1050000, + COGS: 5490, + Profit: 1044510, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2291`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 687300, + Discounts: 0, + Sales: 687300, + COGS: 197000, + Profit: 490300, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2290`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 34350, + Discounts: 0, + Sales: 34350, + COGS: 24720, + Profit: 9630, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2133`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14931, + Discounts: 0, + Sales: 14931, + COGS: 5715, + Profit: 9216, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3475`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1216250, + Discounts: 0, + Sales: 1216250, + COGS: 448500, + Profit: 767750, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3686`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 44232, + Discounts: 0, + Sales: 44232, + COGS: 2736, + Profit: 41496, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3319`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 49785, + Discounts: 0, + Sales: 49785, + COGS: 21520, + Profit: 28265, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3617`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 72340, + Discounts: 0, + Sales: 72340, + COGS: 18170, + Profit: 54170, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1266`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 443100, + Discounts: 0, + Sales: 443100, + COGS: 393380, + Profit: 49720, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `894`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 6258, + Discounts: 0, + Sales: 6258, + COGS: 7465, + Profit: 1207, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `2725`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 340625, + Discounts: 0, + Sales: 340625, + COGS: 216480, + Profit: 124145, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3061`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 36732, + Discounts: 0, + Sales: 36732, + COGS: 6483, + Profit: 30249, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3958`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1385300, + Discounts: 0, + Sales: 1385300, + COGS: 261560, + Profit: 1123740, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3920`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 47040, + Discounts: 0, + Sales: 47040, + COGS: 4635, + Profit: 42405, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3381`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 422625, + Discounts: 0, + Sales: 422625, + COGS: 338520, + Profit: 84105, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `1094`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 136750, + Discounts: 0, + Sales: 136750, + COGS: 41400, + Profit: 95350, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `4307`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 1292100, + Discounts: 0, + Sales: 1292100, + COGS: 500250, + Profit: 791850, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `878`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10536, + Discounts: 0, + Sales: 10536, + COGS: 8514, + Profit: 2022, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `496`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 7440, + Discounts: 0, + Sales: 7440, + COGS: 21780, + Profit: 14340, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3367`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 50505, + Discounts: 0, + Sales: 50505, + COGS: 8880, + Profit: 41625, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3880`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1358000, + Discounts: 0, + Sales: 1358000, + COGS: 397020, + Profit: 960980, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2055`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 616500, + Discounts: 0, + Sales: 616500, + COGS: 537750, + Profit: 78750, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `4041`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 80820, + Discounts: 0, + Sales: 80820, + COGS: 18170, + Profit: 62650, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `3237`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1132950, + Discounts: 0, + Sales: 1132950, + COGS: 715000, + Profit: 417950, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `630`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 7560, + Discounts: 0, + Sales: 7560, + COGS: 5859, + Profit: 1701, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `4210`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 526250, + Discounts: 0, + Sales: 526250, + COGS: 506340, + Profit: 19910, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1127`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 22540, + Discounts: 0, + Sales: 22540, + COGS: 18990, + Profit: 3550, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `3438`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 24066, + Discounts: 0, + Sales: 24066, + COGS: 8430, + Profit: 15636, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2015`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 24180, + Discounts: 0, + Sales: 24180, + COGS: 6423, + Profit: 17757, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2534`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 17738, + Discounts: 0, + Sales: 17738, + COGS: 5715, + Profit: 12023, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1384`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 20760, + Discounts: 0, + Sales: 20760, + COGS: 6150, + Profit: 14610, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3561`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 24927, + Discounts: 276.15, + Sales: 24650.85, + COGS: 19725, + Profit: 4925.85, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1823`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27345, + Discounts: 344.4, + Sales: 27000.6, + COGS: 22960, + Profit: 4040.6, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2795`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19565, + Discounts: 72.1, + Sales: 19492.9, + COGS: 5150, + Profit: 14342.9, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `457`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 3199, + Discounts: 44.73, + Sales: 3154.27, + COGS: 3195, + Profit: 40.73, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3785`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26495, + Discounts: 92.82, + Sales: 26402.18, + COGS: 6630, + Profit: 19772.18, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `748`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 8976, + Discounts: 222.96, + Sales: 8753.04, + COGS: 5574, + Profit: 3179.04, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1021`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 357350, + Discounts: 4235, + Sales: 353115, + COGS: 314600, + Profit: 38515, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `2076`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 14532, + Discounts: 177.03, + Sales: 14354.97, + COGS: 12645, + Profit: 1709.97, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `4316`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 51792, + Discounts: 173.4, + Sales: 51618.6, + COGS: 4335, + Profit: 47283.6, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `2654`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 331750, + Discounts: 412.5, + Sales: 331337.5, + COGS: 39600, + Profit: 291737.5, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `4174`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50088, + Discounts: 320.52, + Sales: 49767.48, + COGS: 8013, + Profit: 41754.48, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1675`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 20100, + Discounts: 91.92, + Sales: 20008.08, + COGS: 2298, + Profit: 17710.08, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1572`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 471600, + Discounts: 1482, + Sales: 470118, + COGS: 123500, + Profit: 346618, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3736`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1307600, + Discounts: 4889.5, + Sales: 1302710.5, + COGS: 363220, + Profit: 939490.5, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1914`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 669900, + Discounts: 7542.5, + Sales: 662357.5, + COGS: 560300, + Profit: 102057.5, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `2742`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 41130, + Discounts: 332.1, + Sales: 40797.9, + COGS: 22140, + Profit: 18657.9, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1499`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 449700, + Discounts: 6903, + Sales: 442797, + COGS: 575250, + Profit: 132453, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3772`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 75440, + Discounts: 275.1, + Sales: 75164.9, + COGS: 13755, + Profit: 61409.9, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1112`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 7784, + Discounts: 128.1, + Sales: 7655.9, + COGS: 9150, + Profit: 1494.1, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1723`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 516900, + Discounts: 7494, + Sales: 509406, + COGS: 624500, + Profit: 115094, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `423`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 52875, + Discounts: 828.75, + Sales: 52046.25, + COGS: 79560, + Profit: 27513.75, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2368`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 35520, + Discounts: 227.1, + Sales: 35292.9, + COGS: 15140, + Profit: 20152.9, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1586`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 11102, + Discounts: 314.48, + Sales: 10787.52, + COGS: 22462.5, + Profit: 11674.98, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3386`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 423250, + Discounts: 908.75, + Sales: 422341.25, + COGS: 87240, + Profit: 335101.25, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `852`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 106500, + Discounts: 983.75, + Sales: 105516.25, + COGS: 94440, + Profit: 11076.25, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2783`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 347875, + Discounts: 2278.75, + Sales: 345596.25, + COGS: 218760, + Profit: 126836.25, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2684`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 40260, + Discounts: 112.05, + Sales: 40147.95, + COGS: 7470, + Profit: 32677.95, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4393`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 52716, + Discounts: 91.92, + Sales: 52624.08, + COGS: 2298, + Profit: 50326.08, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4083`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1224900, + Discounts: 8715, + Sales: 1216185, + COGS: 726250, + Profit: 489935, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2816`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 985600, + Discounts: 7542.5, + Sales: 978057.5, + COGS: 560300, + Profit: 417757.5, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `4294`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 85880, + Discounts: 772.8, + Sales: 85107.2, + COGS: 38640, + Profit: 46467.2, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2856`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 19992, + Discounts: 25.34, + Sales: 19966.66, + COGS: 1810, + Profit: 18156.66, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `1407`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 175875, + Discounts: 1153.75, + Sales: 174721.25, + COGS: 110760, + Profit: 63961.25, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3850`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 481250, + Discounts: 828.75, + Sales: 480421.25, + COGS: 79560, + Profit: 400861.25, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2856`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 19992, + Discounts: 146.44, + Sales: 19845.56, + COGS: 10460, + Profit: 9385.56, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `1265`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 8855, + Discounts: 18.41, + Sales: 8836.59, + COGS: 1315, + Profit: 7521.59, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3892`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1362200, + Discounts: 3302.25, + Sales: 1358897.75, + COGS: 245310, + Profit: 1113587.75, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `3068`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 383500, + Discounts: 908.75, + Sales: 382591.25, + COGS: 87240, + Profit: 295351.25, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2181`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 272625, + Discounts: 983.75, + Sales: 271641.25, + COGS: 94440, + Profit: 177201.25, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `1356`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 406800, + Discounts: 2958, + Sales: 403842, + COGS: 246500, + Profit: 157342, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `2545`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 763500, + Discounts: 1482, + Sales: 762018, + COGS: 123500, + Profit: 638518, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1814`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 634900, + Discounts: 4889.5, + Sales: 630010.5, + COGS: 363220, + Profit: 266790.5, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `1495`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 186875, + Discounts: 2180, + Sales: 184695, + COGS: 209280, + Profit: 24585, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1154`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 13848, + Discounts: 238.68, + Sales: 13609.32, + COGS: 5967, + Profit: 7642.32, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `4180`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 62700, + Discounts: 48.15, + Sales: 62651.85, + COGS: 3210, + Profit: 59441.85, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1463`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 182875, + Discounts: 1856.25, + Sales: 181018.75, + COGS: 89100, + Profit: 91918.75, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `215`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 2580, + Discounts: 310.8, + Sales: 2269.2, + COGS: 3885, + Profit: 1615.8, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `4099`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 1229700, + Discounts: 1284, + Sales: 1228416, + COGS: 53500, + Profit: 1174916, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `2660`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 18620, + Discounts: 300.3, + Sales: 18319.7, + COGS: 10725, + Profit: 7594.7, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `566`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 198100, + Discounts: 19964, + Sales: 178136, + COGS: 741520, + Profit: 563384, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `3255`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 39060, + Discounts: 274.08, + Sales: 38785.92, + COGS: 3426, + Profit: 35359.92, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `772`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 15440, + Discounts: 626.4, + Sales: 14813.6, + COGS: 15660, + Profit: 846.4, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1135`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13620, + Discounts: 165.6, + Sales: 13454.4, + COGS: 2070, + Profit: 11384.4, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `3826`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 478250, + Discounts: 4150, + Sales: 474100, + COGS: 199200, + Profit: 274900, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1193`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 17895, + Discounts: 708.9, + Sales: 17186.1, + COGS: 23630, + Profit: 6443.9, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2530`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 759000, + Discounts: 5508, + Sales: 753492, + COGS: 229500, + Profit: 523992, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3451`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1035300, + Discounts: 10368, + Sales: 1024932, + COGS: 432000, + Profit: 592932, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3059`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 36708, + Discounts: 274.08, + Sales: 36433.92, + COGS: 3426, + Profit: 33007.92, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3957`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 494625, + Discounts: 1655, + Sales: 492970, + COGS: 79440, + Profit: 413530, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3444`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 41328, + Discounts: 310.8, + Sales: 41017.2, + COGS: 3885, + Profit: 37132.2, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4388`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 548500, + Discounts: 2022.5, + Sales: 546477.5, + COGS: 97080, + Profit: 449397.5, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2106`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 263250, + Discounts: 5362.5, + Sales: 257887.5, + COGS: 257400, + Profit: 487.5, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `799`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 9588, + Discounts: 428.4, + Sales: 9159.6, + COGS: 5355, + Profit: 3804.6, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3154`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 946200, + Discounts: 11496, + Sales: 934704, + COGS: 479000, + Profit: 455704, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `4108`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1437800, + Discounts: 19964, + Sales: 1417836, + COGS: 741520, + Profit: 676316, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3760`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 470000, + Discounts: 6822.5, + Sales: 463177.5, + COGS: 327480, + Profit: 135697.5, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `377`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 5655, + Discounts: 577.5, + Sales: 5077.5, + COGS: 19250, + Profit: 14172.5, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2110`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14770, + Discounts: 281.82, + Sales: 14488.18, + COGS: 10065, + Profit: 4423.18, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2334`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 28008, + Discounts: 253.2, + Sales: 27754.8, + COGS: 3165, + Profit: 24589.8, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `580`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 6960, + Discounts: 260.16, + Sales: 6699.84, + COGS: 3252, + Profit: 3447.84, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2610`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 52200, + Discounts: 626.4, + Sales: 51573.6, + COGS: 15660, + Profit: 35913.6, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `1598`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 559300, + Discounts: 20762, + Sales: 538538, + COGS: 771160, + Profit: 232622, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `1459`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 510650, + Discounts: 20139, + Sales: 490511, + COGS: 748020, + Profit: 257509, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3284`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 410500, + Discounts: 2022.5, + Sales: 408477.5, + COGS: 97080, + Profit: 311397.5, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `1197`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 149625, + Discounts: 5362.5, + Sales: 144262.5, + COGS: 257400, + Profit: 113137.5, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `3774`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 45288, + Discounts: 253.2, + Sales: 45034.8, + COGS: 3165, + Profit: 41869.8, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2303`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 46060, + Discounts: 217.6, + Sales: 45842.4, + COGS: 5440, + Profit: 40402.4, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2572`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 30864, + Discounts: 260.16, + Sales: 30603.84, + COGS: 3252, + Profit: 27351.84, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `320`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 40000, + Discounts: 1655, + Sales: 38345, + COGS: 79440, + Profit: 41095, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `2126`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 637800, + Discounts: 1284, + Sales: 636516, + COGS: 53500, + Profit: 583016, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3275`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1146250, + Discounts: 20139, + Sales: 1126111, + COGS: 748020, + Profit: 378091, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3582`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 447750, + Discounts: 6822.5, + Sales: 440927.5, + COGS: 327480, + Profit: 113447.5, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `783`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 274050, + Discounts: 1862, + Sales: 272188, + COGS: 69160, + Profit: 203028, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1202`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 420700, + Discounts: 13580, + Sales: 407120, + COGS: 504400, + Profit: 97280, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `4056`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1216800, + Discounts: 1554, + Sales: 1215246, + COGS: 64750, + Profit: 1150496, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2144`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 643200, + Discounts: 6606, + Sales: 636594, + COGS: 275250, + Profit: 361344, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `3502`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 437750, + Discounts: 5690, + Sales: 432060, + COGS: 273120, + Profit: 158940, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `1397`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 488950, + Discounts: 20762, + Sales: 468188, + COGS: 771160, + Profit: 302972, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `679`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 13580, + Discounts: 494.4, + Sales: 13085.6, + COGS: 12360, + Profit: 725.6, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `2351`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 47020, + Discounts: 376.4, + Sales: 46643.6, + COGS: 9410, + Profit: 37233.6, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `2043`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 612900, + Discounts: 11496, + Sales: 601404, + COGS: 479000, + Profit: 122404, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `3565`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 445625, + Discounts: 15913.13, + Sales: 429711.88, + COGS: 509220, + Profit: 79508.13, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1401`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 28020, + Discounts: 1548, + Sales: 26472, + COGS: 25800, + Profit: 672, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2077`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 623100, + Discounts: 6201, + Sales: 616899, + COGS: 172250, + Profit: 444649, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `3643`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 43716, + Discounts: 700.92, + Sales: 43015.08, + COGS: 5841, + Profit: 37174.08, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1105`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 13260, + Discounts: 326.88, + Sales: 12933.12, + COGS: 2724, + Profit: 10209.12, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2960`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20720, + Discounts: 411.18, + Sales: 20308.82, + COGS: 9790, + Profit: 10518.82, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1201`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 14412, + Discounts: 684.36, + Sales: 13727.64, + COGS: 5703, + Profit: 8024.64, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `2321`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 16247, + Discounts: 114.24, + Sales: 16132.76, + COGS: 2720, + Profit: 13412.76, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3640`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1274000, + Discounts: 18868.5, + Sales: 1255131.5, + COGS: 467220, + Profit: 787911.5, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3972`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 496500, + Discounts: 4826.25, + Sales: 491673.75, + COGS: 154440, + Profit: 337233.75, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3878`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 484750, + Discounts: 6397.5, + Sales: 478352.5, + COGS: 204720, + Profit: 273632.5, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2278`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 683400, + Discounts: 21910.5, + Sales: 661489.5, + COGS: 608625, + Profit: 52864.5, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1075`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 134375, + Discounts: 6652.5, + Sales: 127722.5, + COGS: 212880, + Profit: 85157.5, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `4050`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 48600, + Discounts: 684.36, + Sales: 47915.64, + COGS: 5703, + Profit: 42212.64, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3035`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 910500, + Discounts: 6201, + Sales: 904299, + COGS: 172250, + Profit: 732049, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3636`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 454500, + Discounts: 5887.5, + Sales: 448612.5, + COGS: 188400, + Profit: 260212.5, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1379`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 16548, + Discounts: 493.02, + Sales: 16054.98, + COGS: 4108.5, + Profit: 11946.48, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `4492`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 561500, + Discounts: 7533.75, + Sales: 553966.25, + COGS: 241080, + Profit: 312886.25, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `764`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 11460, + Discounts: 875.25, + Sales: 10584.75, + COGS: 19450, + Profit: 8865.25, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1744`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 218000, + Discounts: 4826.25, + Sales: 213173.75, + COGS: 154440, + Profit: 58733.75, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2341`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 292625, + Discounts: 6397.5, + Sales: 286227.5, + COGS: 204720, + Profit: 81507.5, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3835`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 479375, + Discounts: 7533.75, + Sales: 471841.25, + COGS: 241080, + Profit: 230761.25, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1161`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 348300, + Discounts: 25596, + Sales: 322704, + COGS: 711000, + Profit: 388296, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `876`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10512, + Discounts: 689.76, + Sales: 9822.24, + COGS: 5748, + Profit: 4074.24, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `1705`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 213125, + Discounts: 5887.5, + Sales: 207237.5, + COGS: 188400, + Profit: 18837.5, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1805`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 541500, + Discounts: 16866, + Sales: 524634, + COGS: 468500, + Profit: 56134, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `389`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 136150, + Discounts: 17241, + Sales: 118909, + COGS: 426920, + Profit: 308011, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `2745`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 41175, + Discounts: 875.25, + Sales: 40299.75, + COGS: 19450, + Profit: 20849.75, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1459`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 29180, + Discounts: 498.6, + Sales: 28681.4, + COGS: 8310, + Profit: 20371.4, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3938`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 27566, + Discounts: 369.6, + Sales: 27196.4, + COGS: 8800, + Profit: 18396.4, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `4236`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 84720, + Discounts: 2310.3, + Sales: 82409.7, + COGS: 38505, + Profit: 43904.7, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3627`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 43524, + Discounts: 892.44, + Sales: 42631.56, + COGS: 7437, + Profit: 35194.56, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1756`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 26340, + Discounts: 1218.6, + Sales: 25121.4, + COGS: 20310, + Profit: 4811.4, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `307`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 4605, + Discounts: 1218.6, + Sales: 3386.4, + COGS: 20310, + Profit: 16923.6, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `4489`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 67335, + Discounts: 1356.6, + Sales: 65978.4, + COGS: 22610, + Profit: 43368.4, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2167`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 43340, + Discounts: 588.8, + Sales: 42751.2, + COGS: 7360, + Profit: 35391.2, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1137`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 7959, + Discounts: 798.28, + Sales: 7160.72, + COGS: 14255, + Profit: 7094.28, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1222`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 366600, + Discounts: 24252, + Sales: 342348, + COGS: 505250, + Profit: 162902, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `489`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 171150, + Discounts: 3836, + Sales: 167314, + COGS: 71240, + Profit: 96074, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `4133`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 61995, + Discounts: 1180.2, + Sales: 60814.8, + COGS: 19670, + Profit: 41144.8, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2743`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 822900, + Discounts: 22308, + Sales: 800592, + COGS: 464750, + Profit: 335842, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `3699`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 25893, + Discounts: 798.28, + Sales: 25094.72, + COGS: 14255, + Profit: 10839.72, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `4460`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1338000, + Discounts: 24252, + Sales: 1313748, + COGS: 505250, + Profit: 808498, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1232`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 154000, + Discounts: 5690, + Sales: 148310, + COGS: 136560, + Profit: 11750, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2586`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 18102, + Discounts: 1190.28, + Sales: 16911.72, + COGS: 21255, + Profit: 4343.28, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1332`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 166500, + Discounts: 3975, + Sales: 162525, + COGS: 95400, + Profit: 67125, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4487`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1346100, + Discounts: 16974, + Sales: 1329126, + COGS: 353625, + Profit: 975501, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3862`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1158600, + Discounts: 35016, + Sales: 1123584, + COGS: 729500, + Profit: 394084, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1765`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 617750, + Discounts: 48300, + Sales: 569450, + COGS: 897000, + Profit: 327550, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3533`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 441625, + Discounts: 14940, + Sales: 426685, + COGS: 358560, + Profit: 68125, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2016`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 30240, + Discounts: 130.8, + Sales: 30109.2, + COGS: 2180, + Profit: 27929.2, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2938`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 58760, + Discounts: 1659.2, + Sales: 57100.8, + COGS: 20740, + Profit: 36360.8, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3352`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67040, + Discounts: 844.8, + Sales: 66195.2, + COGS: 10560, + Profit: 55635.2, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4409`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 66135, + Discounts: 402.6, + Sales: 65732.4, + COGS: 6710, + Profit: 59022.4, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3323`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 49845, + Discounts: 908.4, + Sales: 48936.6, + COGS: 15140, + Profit: 33796.6, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2430`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 850500, + Discounts: 3836, + Sales: 846664, + COGS: 71240, + Profit: 775424, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `535`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 66875, + Discounts: 5690, + Sales: 61185, + COGS: 136560, + Profit: 75375, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1523`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 18276, + Discounts: 703.2, + Sales: 17572.8, + COGS: 4395, + Profit: 13177.8, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3631`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 72620, + Discounts: 2116.8, + Sales: 70503.2, + COGS: 26460, + Profit: 44043.2, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1782`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 623700, + Discounts: 30478, + Sales: 593222, + COGS: 566020, + Profit: 27202, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `347`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 4164, + Discounts: 415.68, + Sales: 3748.32, + COGS: 2598, + Profit: 1150.32, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `4147`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1451450, + Discounts: 4886, + Sales: 1446564, + COGS: 90740, + Profit: 1355824, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3509`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1228150, + Discounts: 30478, + Sales: 1197672, + COGS: 566020, + Profit: 631652, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `2774`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 41610, + Discounts: 908.4, + Sales: 40701.6, + COGS: 15140, + Profit: 25561.6, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2943`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1030050, + Discounts: 26110, + Sales: 1003940, + COGS: 484900, + Profit: 519040, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `4037`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 504625, + Discounts: 5370, + Sales: 499255, + COGS: 128880, + Profit: 370375, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `4146`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1451100, + Discounts: 26698, + Sales: 1424402, + COGS: 495820, + Profit: 928582, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `4123`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 61845, + Discounts: 402.6, + Sales: 61442.4, + COGS: 6710, + Profit: 54732.4, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `1337`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 467950, + Discounts: 24892, + Sales: 443058, + COGS: 462280, + Profit: 19222, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `599`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 4193, + Discounts: 405.65, + Sales: 3787.35, + COGS: 5795, + Profit: 2007.65, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `725`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 5075, + Discounts: 480.2, + Sales: 4594.8, + COGS: 6860, + Profit: 2265.2, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `477`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 3339, + Discounts: 822.15, + Sales: 2516.85, + COGS: 11745, + Profit: 9228.15, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2325`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 16275, + Discounts: 941.15, + Sales: 15333.85, + COGS: 13445, + Profit: 1888.85, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `675`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 8100, + Discounts: 1458.6, + Sales: 6641.4, + COGS: 7293, + Profit: 651.6, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2990`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 35880, + Discounts: 1458.6, + Sales: 34421.4, + COGS: 7293, + Profit: 27128.4, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1072`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 7504, + Discounts: 941.15, + Sales: 6562.85, + COGS: 13445, + Profit: 6882.15, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `1048`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 7336, + Discounts: 589.05, + Sales: 6746.95, + COGS: 8415, + Profit: 1668.05, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `469`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 5628, + Discounts: 673.8, + Sales: 4954.2, + COGS: 3369, + Profit: 1585.2, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `804`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 5628, + Discounts: 405.65, + Sales: 5222.35, + COGS: 5795, + Profit: 572.65, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `4240`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50880, + Discounts: 1119, + Sales: 49761, + COGS: 5595, + Profit: 44166, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1976`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 23712, + Discounts: 669.6, + Sales: 23042.4, + COGS: 3348, + Profit: 19694.4, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1984`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39680, + Discounts: 1563, + Sales: 38117, + COGS: 15630, + Profit: 22487, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `480`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 144000, + Discounts: 14865, + Sales: 129135, + COGS: 247750, + Profit: 118615, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `3551`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 24857, + Discounts: 355.6, + Sales: 24501.4, + COGS: 5080, + Profit: 19421.4, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1205`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 18075, + Discounts: 2093.25, + Sales: 15981.75, + COGS: 27910, + Profit: 11928.25, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `2480`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 17360, + Discounts: 199.5, + Sales: 17160.5, + COGS: 2850, + Profit: 14310.5, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `2926`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 20482, + Discounts: 870.45, + Sales: 19611.55, + COGS: 12435, + Profit: 7176.55, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3210`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1123500, + Discounts: 24228.75, + Sales: 1099271.25, + COGS: 359970, + Profit: 739301.25, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `3221`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 402625, + Discounts: 22668.75, + Sales: 379956.25, + COGS: 435240, + Profit: 55283.75, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `2389`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 836150, + Discounts: 12600, + Sales: 823550, + COGS: 187200, + Profit: 636350, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `1127`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13524, + Discounts: 1405.2, + Sales: 12118.8, + COGS: 7026, + Profit: 5092.8, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `319`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 95700, + Discounts: 16500, + Sales: 79200, + COGS: 275000, + Profit: 195800, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1610`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 32200, + Discounts: 1303, + Sales: 30897, + COGS: 13030, + Profit: 17867, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4100`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 512500, + Discounts: 18700, + Sales: 493800, + COGS: 359040, + Profit: 134760, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1012`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 126500, + Discounts: 14906.25, + Sales: 111593.75, + COGS: 286200, + Profit: 174606.25, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3337`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1001100, + Discounts: 24105, + Sales: 976995, + COGS: 401750, + Profit: 575245, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3955`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 27685, + Discounts: 814.45, + Sales: 26870.55, + COGS: 11635, + Profit: 15235.55, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4347`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1304100, + Discounts: 14865, + Sales: 1289235, + COGS: 247750, + Profit: 1041485, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1548`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 541800, + Discounts: 10535, + Sales: 531265, + COGS: 156520, + Profit: 374745, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2153`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 32295, + Discounts: 1965, + Sales: 30330, + COGS: 26200, + Profit: 4130, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3789`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1326150, + Discounts: 21490, + Sales: 1304660, + COGS: 319280, + Profit: 985380, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `4364`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 87280, + Discounts: 1389, + Sales: 85891, + COGS: 13890, + Profit: 72001, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4126`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 515750, + Discounts: 5381.25, + Sales: 510368.75, + COGS: 103320, + Profit: 407048.75, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1343`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 167875, + Discounts: 4400, + Sales: 163475, + COGS: 84480, + Profit: 78995, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `245`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 4900, + Discounts: 1802, + Sales: 3098, + COGS: 18020, + Profit: 14922, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3376`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67520, + Discounts: 2663, + Sales: 64857, + COGS: 26630, + Profit: 38227, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1401`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 9807, + Discounts: 747.6, + Sales: 9059.4, + COGS: 10680, + Profit: 1620.6, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3483`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 52245, + Discounts: 1587, + Sales: 50658, + COGS: 21160, + Profit: 29498, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2244`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 33660, + Discounts: 416.25, + Sales: 33243.75, + COGS: 5550, + Profit: 27693.75, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `1360`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 20400, + Discounts: 2145.75, + Sales: 18254.25, + COGS: 28610, + Profit: 10355.75, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `279`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 34875, + Discounts: 5043.75, + Sales: 29831.25, + COGS: 96840, + Profit: 67008.75, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2521`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 882350, + Discounts: 10535, + Sales: 871815, + COGS: 156520, + Profit: 715295, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2433`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 48660, + Discounts: 2832, + Sales: 45828, + COGS: 28320, + Profit: 17508, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1738`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 34760, + Discounts: 1579, + Sales: 33181, + COGS: 15790, + Profit: 17391, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1106`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 138250, + Discounts: 5381.25, + Sales: 132868.75, + COGS: 103320, + Profit: 29548.75, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `3379`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 422375, + Discounts: 4400, + Sales: 417975, + COGS: 84480, + Profit: 333495, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1221`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 24420, + Discounts: 1033, + Sales: 23387, + COGS: 10330, + Profit: 13057, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `213`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 63900, + Discounts: 18750, + Sales: 45150, + COGS: 312500, + Profit: 267350, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3335`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 66700, + Discounts: 1389, + Sales: 65311, + COGS: 13890, + Profit: 51421, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1260`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 25200, + Discounts: 1265, + Sales: 23935, + COGS: 12650, + Profit: 11285, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3034`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 60680, + Discounts: 2297, + Sales: 58383, + COGS: 22970, + Profit: 35413, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2929`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 58580, + Discounts: 2663, + Sales: 55917, + COGS: 26630, + Profit: 29287, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2389`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 16723, + Discounts: 199.5, + Sales: 16523.5, + COGS: 2850, + Profit: 13673.5, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3086`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 21602, + Discounts: 870.45, + Sales: 20731.55, + COGS: 12435, + Profit: 8296.55, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `745`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 260750, + Discounts: 23625, + Sales: 237125, + COGS: 351000, + Profit: 113875, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `1266`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 443100, + Discounts: 9660, + Sales: 433440, + COGS: 143520, + Profit: 289920, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `3790`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1326500, + Discounts: 21490, + Sales: 1305010, + COGS: 319280, + Profit: 985730, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `4287`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1286100, + Discounts: 18750, + Sales: 1267350, + COGS: 312500, + Profit: 954850, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3193`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 47895, + Discounts: 3420.9, + Sales: 44474.1, + COGS: 38010, + Profit: 6464.1, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `1967`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39340, + Discounts: 1341, + Sales: 37999, + COGS: 11175, + Profit: 26824, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `631`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 9465, + Discounts: 2559.6, + Sales: 6905.4, + COGS: 28440, + Profit: 21534.6, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3469`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 41628, + Discounts: 404.64, + Sales: 41223.36, + COGS: 1686, + Profit: 39537.36, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `570`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 6840, + Discounts: 1655.28, + Sales: 5184.72, + COGS: 6897, + Profit: 1712.28, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `3215`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 48225, + Discounts: 1827, + Sales: 46398, + COGS: 20300, + Profit: 26098, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `3754`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 26278, + Discounts: 110.46, + Sales: 26167.54, + COGS: 1315, + Profit: 24852.54, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2187`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 273375, + Discounts: 6652.5, + Sales: 266722.5, + COGS: 106440, + Profit: 160282.5, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1959`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 685650, + Discounts: 20580, + Sales: 665070, + COGS: 254800, + Profit: 410270, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2181`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 763350, + Discounts: 30660, + Sales: 732690, + COGS: 379600, + Profit: 353090, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3559`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 24913, + Discounts: 589.26, + Sales: 24323.74, + COGS: 7015, + Profit: 17308.74, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `2205`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 26460, + Discounts: 1960.56, + Sales: 24499.44, + COGS: 8169, + Profit: 16330.44, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1890`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 661500, + Discounts: 31416, + Sales: 630084, + COGS: 388960, + Profit: 241124, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1296`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 15552, + Discounts: 1655.28, + Sales: 13896.72, + COGS: 6897, + Profit: 6999.72, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `775`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 271250, + Discounts: 15267, + Sales: 255983, + COGS: 189020, + Profit: 66963, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2417`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 302125, + Discounts: 7140, + Sales: 294985, + COGS: 114240, + Profit: 180745, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1158`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 144750, + Discounts: 20662.5, + Sales: 124087.5, + COGS: 330600, + Profit: 206512.5, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `803`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 12045, + Discounts: 1377, + Sales: 10668, + COGS: 15300, + Profit: 4632, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `3705`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1296750, + Discounts: 31416, + Sales: 1265334, + COGS: 388960, + Profit: 876374, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `589`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 4123, + Discounts: 629.16, + Sales: 3493.84, + COGS: 7490, + Profit: 3996.16, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `3797`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1139100, + Discounts: 21978, + Sales: 1117122, + COGS: 305250, + Profit: 811872, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1321`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 462350, + Discounts: 43596, + Sales: 418754, + COGS: 539760, + Profit: 121006, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3999`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 59985, + Discounts: 2559.6, + Sales: 57425.4, + COGS: 28440, + Profit: 28985.4, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `4256`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 29792, + Discounts: 629.16, + Sales: 29162.84, + COGS: 7490, + Profit: 21672.84, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `1643`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 492900, + Discounts: 21978, + Sales: 470922, + COGS: 305250, + Profit: 165672, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1912`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 38240, + Discounts: 1347.6, + Sales: 36892.4, + COGS: 11230, + Profit: 25662.4, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1610`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 483000, + Discounts: 43848, + Sales: 439152, + COGS: 609000, + Profit: 169848, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `2160`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 270000, + Discounts: 14906.25, + Sales: 255093.75, + COGS: 238500, + Profit: 16593.75, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `466`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 163100, + Discounts: 35259, + Sales: 127841, + COGS: 436540, + Profit: 308699, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `328`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 114800, + Discounts: 15267, + Sales: 99533, + COGS: 189020, + Profit: 89487, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `4099`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 28693, + Discounts: 589.26, + Sales: 28103.74, + COGS: 7015, + Profit: 21088.74, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `990`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 346500, + Discounts: 43596, + Sales: 302904, + COGS: 539760, + Profit: 236856, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1433`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 28660, + Discounts: 2108.4, + Sales: 26551.6, + COGS: 17570, + Profit: 8981.6, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1478`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 22170, + Discounts: 1978.2, + Sales: 20191.8, + COGS: 21980, + Profit: 1788.2, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3798`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 56970, + Discounts: 1568.7, + Sales: 55401.3, + COGS: 17430, + Profit: 37971.3, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `447`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 6705, + Discounts: 1037.7, + Sales: 5667.3, + COGS: 11530, + Profit: 5862.7, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1711`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34220, + Discounts: 2108.4, + Sales: 32111.6, + COGS: 17570, + Profit: 14541.6, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `745`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 14900, + Discounts: 1201.2, + Sales: 13698.8, + COGS: 10010, + Profit: 3688.8, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `1732`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 12124, + Discounts: 559.86, + Sales: 11564.14, + COGS: 6665, + Profit: 4899.14, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1759`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 26385, + Discounts: 1037.7, + Sales: 25347.3, + COGS: 11530, + Profit: 13817.3, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `338`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 4056, + Discounts: 610.68, + Sales: 3445.32, + COGS: 2181, + Profit: 1264.32, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `3911`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 46932, + Discounts: 1582.56, + Sales: 45349.44, + COGS: 5652, + Profit: 39697.44, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3691`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 73820, + Discounts: 2567.6, + Sales: 71252.4, + COGS: 18340, + Profit: 52912.4, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `4473`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 53676, + Discounts: 1965.6, + Sales: 51710.4, + COGS: 7020, + Profit: 44690.4, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `383`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 4596, + Discounts: 1967.28, + Sales: 2628.72, + COGS: 7026, + Profit: 4397.28, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3105`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 21735, + Discounts: 505.19, + Sales: 21229.81, + COGS: 5155, + Profit: 16074.81, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `1062`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 15930, + Discounts: 1325.1, + Sales: 14604.9, + COGS: 12620, + Profit: 1984.9, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `4083`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 28581, + Discounts: 556.15, + Sales: 28024.85, + COGS: 5675, + Profit: 22349.85, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3974`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 27818, + Discounts: 268.03, + Sales: 27549.97, + COGS: 2735, + Profit: 24814.97, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3723`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 26061, + Discounts: 775.18, + Sales: 25285.82, + COGS: 7910, + Profit: 17375.82, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2435`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 29220, + Discounts: 1460.34, + Sales: 27759.66, + COGS: 5215.5, + Profit: 22544.16, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `1678`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 20136, + Discounts: 1860.6, + Sales: 18275.4, + COGS: 6645, + Profit: 11630.4, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1763`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 12341, + Discounts: 775.18, + Sales: 11565.82, + COGS: 7910, + Profit: 3655.82, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `4473`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 31311, + Discounts: 556.15, + Sales: 30754.85, + COGS: 5675, + Profit: 25079.85, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `1246`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 436100, + Discounts: 43144.5, + Sales: 392955.5, + COGS: 457860, + Profit: 64904.5, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1615`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 484500, + Discounts: 9408, + Sales: 475092, + COGS: 112000, + Profit: 363092, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `749`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 224700, + Discounts: 45801, + Sales: 178899, + COGS: 545250, + Profit: 366351, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1318`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 26360, + Discounts: 2766.4, + Sales: 23593.6, + COGS: 19760, + Profit: 3833.6, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `2882`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 864600, + Discounts: 45801, + Sales: 818799, + COGS: 545250, + Profit: 273549, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3039`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 379875, + Discounts: 21875, + Sales: 358000, + COGS: 300000, + Profit: 58000, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2484`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 745200, + Discounts: 35742, + Sales: 709458, + COGS: 425500, + Profit: 283958, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3169`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 950700, + Discounts: 9408, + Sales: 941292, + COGS: 112000, + Profit: 829292, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4080`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 510000, + Discounts: 30738.75, + Sales: 479261.25, + COGS: 421560, + Profit: 57701.25, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3943`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 59145, + Discounts: 2206.05, + Sales: 56938.95, + COGS: 21010, + Profit: 35928.95, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `784`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 11760, + Discounts: 3077.55, + Sales: 8682.45, + COGS: 29310, + Profit: 20627.55, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `253`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 5060, + Discounts: 2149, + Sales: 2911, + COGS: 15350, + Profit: 12439, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1316`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 394800, + Discounts: 23583, + Sales: 371217, + COGS: 280750, + Profit: 90467, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `808`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 242400, + Discounts: 29484, + Sales: 212916, + COGS: 351000, + Profit: 138084, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3295`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 39540, + Discounts: 2320.92, + Sales: 37219.08, + COGS: 8289, + Profit: 28930.08, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `520`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 3640, + Discounts: 1041.25, + Sales: 2598.75, + COGS: 10625, + Profit: 8026.25, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `799`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 239700, + Discounts: 34839, + Sales: 204861, + COGS: 414750, + Profit: 209889, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `3942`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 78840, + Discounts: 852.6, + Sales: 77987.4, + COGS: 6090, + Profit: 71897.4, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `2498`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 312250, + Discounts: 18261.25, + Sales: 293988.75, + COGS: 250440, + Profit: 43548.75, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `2517`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 50340, + Discounts: 2766.4, + Sales: 47573.6, + COGS: 19760, + Profit: 27813.6, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3182`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 63640, + Discounts: 1989.4, + Sales: 61650.6, + COGS: 14210, + Profit: 47440.6, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1145`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 343500, + Discounts: 28812, + Sales: 314688, + COGS: 343000, + Profit: 28312, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `895`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 17900, + Discounts: 823.2, + Sales: 17076.8, + COGS: 5880, + Profit: 11196.8, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3814`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 45768, + Discounts: 2725.38, + Sales: 43042.62, + COGS: 9733.5, + Profit: 33309.12, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `1188`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 356400, + Discounts: 20139, + Sales: 336261, + COGS: 239750, + Profit: 96511, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `2233`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 669900, + Discounts: 57687, + Sales: 612213, + COGS: 686750, + Profit: 74537, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `421`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 52625, + Discounts: 14393.75, + Sales: 38231.25, + COGS: 197400, + Profit: 159168.75, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `269`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 94150, + Discounts: 70462, + Sales: 23688, + COGS: 747760, + Profit: 724072, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `3766`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 470750, + Discounts: 8697.5, + Sales: 462052.5, + COGS: 119280, + Profit: 342772.5, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `952`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19040, + Discounts: 1565.2, + Sales: 17474.8, + COGS: 11180, + Profit: 6294.8, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2964`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 889200, + Discounts: 28812, + Sales: 860388, + COGS: 343000, + Profit: 517388, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1505`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 10535, + Discounts: 273.28, + Sales: 10261.72, + COGS: 2440, + Profit: 7821.72, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1678`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 33560, + Discounts: 2051.2, + Sales: 31508.8, + COGS: 12820, + Profit: 18688.8, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `4249`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 29743, + Discounts: 143.92, + Sales: 29599.08, + COGS: 1285, + Profit: 28314.08, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1677`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 33540, + Discounts: 2051.2, + Sales: 31488.8, + COGS: 12820, + Profit: 18668.8, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3051`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 381375, + Discounts: 15400, + Sales: 365975, + COGS: 184800, + Profit: 181175, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `3372`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 50580, + Discounts: 588, + Sales: 49992, + COGS: 4900, + Profit: 45092, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1686`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 590100, + Discounts: 38136, + Sales: 551964, + COGS: 354120, + Profit: 197844, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3086`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 46290, + Discounts: 3001.2, + Sales: 43288.8, + COGS: 25010, + Profit: 18278.8, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `4150`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 83000, + Discounts: 1132.8, + Sales: 81867.2, + COGS: 7080, + Profit: 74787.2, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3027`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 60540, + Discounts: 1032, + Sales: 59508, + COGS: 6450, + Profit: 53058, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `4359`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1307700, + Discounts: 37488, + Sales: 1270212, + COGS: 390500, + Profit: 879712, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `3628`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1088400, + Discounts: 30792, + Sales: 1057608, + COGS: 320750, + Profit: 736858, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `1589`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 23835, + Discounts: 853.2, + Sales: 22981.8, + COGS: 7110, + Profit: 15871.8, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2679`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 334875, + Discounts: 11140, + Sales: 323735, + COGS: 133680, + Profit: 190055, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3401`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 23807, + Discounts: 705.04, + Sales: 23101.96, + COGS: 6295, + Profit: 16806.96, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2815`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19705, + Discounts: 613.2, + Sales: 19091.8, + COGS: 5475, + Profit: 13616.8, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2964`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 59280, + Discounts: 2185.6, + Sales: 57094.4, + COGS: 13660, + Profit: 43434.4, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `4173`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1251900, + Discounts: 59040, + Sales: 1192860, + COGS: 615000, + Profit: 577860, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1157`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 8099, + Discounts: 379.68, + Sales: 7719.32, + COGS: 3390, + Profit: 4329.32, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3065`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 21455, + Discounts: 894.88, + Sales: 20560.12, + COGS: 7990, + Profit: 12570.12, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1962`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 13734, + Discounts: 1349.04, + Sales: 12384.96, + COGS: 12045, + Profit: 339.96, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4080`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 81600, + Discounts: 3094.4, + Sales: 78505.6, + COGS: 19340, + Profit: 59165.6, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1713`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34260, + Discounts: 4788.8, + Sales: 29471.2, + COGS: 29930, + Profit: 458.8, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2795`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 978250, + Discounts: 60088, + Sales: 918162, + COGS: 557960, + Profit: 360202, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `4082`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 28574, + Discounts: 1089.76, + Sales: 27484.24, + COGS: 9730, + Profit: 17754.24, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1691`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 591850, + Discounts: 38136, + Sales: 553714, + COGS: 354120, + Profit: 199594, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2305`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 27660, + Discounts: 574.08, + Sales: 27085.92, + COGS: 1794, + Profit: 25291.92, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3401`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 23807, + Discounts: 1627.92, + Sales: 22179.08, + COGS: 14535, + Profit: 7644.08, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `2288`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 16016, + Discounts: 1309.28, + Sales: 14706.72, + COGS: 11690, + Profit: 3016.72, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `2399`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 719700, + Discounts: 9264, + Sales: 710436, + COGS: 96500, + Profit: 613936, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `4086`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1225800, + Discounts: 15240, + Sales: 1210560, + COGS: 158750, + Profit: 1051810, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2651`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 927850, + Discounts: 16086, + Sales: 911764, + COGS: 149370, + Profit: 762394, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3971`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27797, + Discounts: 1309.28, + Sales: 26487.72, + COGS: 11690, + Profit: 14797.72, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2512`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 879200, + Discounts: 10668, + Sales: 868532, + COGS: 99060, + Profit: 769472, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `2745`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 960750, + Discounts: 11816, + Sales: 948934, + COGS: 109720, + Profit: 839214, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1903`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 570900, + Discounts: 51216, + Sales: 519684, + COGS: 533500, + Profit: 13816, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `647`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 194100, + Discounts: 19392, + Sales: 174708, + COGS: 202000, + Profit: 27292, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `2914`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 58280, + Discounts: 1132.8, + Sales: 57147.2, + COGS: 7080, + Profit: 50067.2, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1889`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 13223, + Discounts: 1627.92, + Sales: 11595.08, + COGS: 14535, + Profit: 2939.92, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `1466`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 29320, + Discounts: 2185.6, + Sales: 27134.4, + COGS: 13660, + Profit: 13474.4, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `887`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 266100, + Discounts: 59040, + Sales: 207060, + COGS: 615000, + Profit: 407940, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `395`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 7900, + Discounts: 2432, + Sales: 5468, + COGS: 15200, + Profit: 9732, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `1693`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 25395, + Discounts: 853.2, + Sales: 24541.8, + COGS: 7110, + Profit: 17431.8, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2459`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 29508, + Discounts: 1320, + Sales: 28188, + COGS: 4125, + Profit: 24063, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2649`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 794700, + Discounts: 15240, + Sales: 779460, + COGS: 158750, + Profit: 620710, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `3608`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 72160, + Discounts: 698.4, + Sales: 71461.6, + COGS: 4365, + Profit: 67096.6, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1073`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 321900, + Discounts: 29538, + Sales: 292362, + COGS: 273500, + Profit: 18862, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1754`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 21048, + Discounts: 396.36, + Sales: 20651.64, + COGS: 1101, + Profit: 19550.64, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `2167`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 650100, + Discounts: 102667.5, + Sales: 547432.5, + COGS: 950625, + Profit: 403192.5, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1319`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 461650, + Discounts: 52479, + Sales: 409171, + COGS: 433160, + Profit: 23989, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1679`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 503700, + Discounts: 8694, + Sales: 495006, + COGS: 80500, + Profit: 414506, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1252`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 15024, + Discounts: 2506.68, + Sales: 12517.32, + COGS: 6963, + Profit: 5554.32, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3493`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 436625, + Discounts: 20891.25, + Sales: 415733.75, + COGS: 222840, + Profit: 192893.75, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1697`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 11879, + Discounts: 1014.93, + Sales: 10864.07, + COGS: 8055, + Profit: 2809.07, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1156`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 144500, + Discounts: 31466.25, + Sales: 113033.75, + COGS: 335640, + Profit: 222606.25, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `726`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 217800, + Discounts: 9018, + Sales: 208782, + COGS: 83500, + Profit: 125282, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1153`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 345900, + Discounts: 69255, + Sales: 276645, + COGS: 641250, + Profit: 364605, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2720`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 952000, + Discounts: 76135.5, + Sales: 875864.5, + COGS: 628420, + Profit: 247444.5, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3658`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 54870, + Discounts: 4961.25, + Sales: 49908.75, + COGS: 36750, + Profit: 13158.75, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2950`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 885000, + Discounts: 29538, + Sales: 855462, + COGS: 273500, + Profit: 581962, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1821`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27315, + Discounts: 1656.45, + Sales: 25658.55, + COGS: 12270, + Profit: 13388.55, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `4174`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 50088, + Discounts: 396.36, + Sales: 49691.64, + COGS: 1101, + Profit: 48590.64, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1127`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 338100, + Discounts: 35748, + Sales: 302352, + COGS: 331000, + Profit: 28648, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2209`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 26508, + Discounts: 1917, + Sales: 24591, + COGS: 5325, + Profit: 19266, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `862`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 107750, + Discounts: 31466.25, + Sales: 76283.75, + COGS: 335640, + Profit: 259356.25, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `3805`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 57075, + Discounts: 330.75, + Sales: 56744.25, + COGS: 2450, + Profit: 54294.25, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `1415`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 424500, + Discounts: 102424.5, + Sales: 322075.5, + COGS: 948375, + Profit: 626299.5, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `2231`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 780850, + Discounts: 41170.5, + Sales: 739679.5, + COGS: 339820, + Profit: 399859.5, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3649`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 456125, + Discounts: 6378.75, + Sales: 449746.25, + COGS: 68040, + Profit: 381706.25, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2948`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 368500, + Discounts: 23737.5, + Sales: 344762.5, + COGS: 253200, + Profit: 91562.5, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3395`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1188250, + Discounts: 39973.5, + Sales: 1148276.5, + COGS: 329940, + Profit: 818336.5, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2650`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 31800, + Discounts: 2112.48, + Sales: 29687.52, + COGS: 5868, + Profit: 23819.52, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `585`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 175500, + Discounts: 71793, + Sales: 103707, + COGS: 664750, + Profit: 561043, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1316`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 460600, + Discounts: 42572.25, + Sales: 418027.75, + COGS: 351390, + Profit: 66637.75, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `4459`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 53508, + Discounts: 950.4, + Sales: 52557.6, + COGS: 2640, + Profit: 49917.6, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2711`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 813300, + Discounts: 50409, + Sales: 762891, + COGS: 466750, + Profit: 296141, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2621`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 31452, + Discounts: 2412.72, + Sales: 29039.28, + COGS: 6702, + Profit: 22337.28, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3613`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 54195, + Discounts: 1656.45, + Sales: 52538.55, + COGS: 12270, + Profit: 40268.55, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1847`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 230875, + Discounts: 9866.25, + Sales: 221008.75, + COGS: 105240, + Profit: 115768.75, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2996`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1048600, + Discounts: 65236.5, + Sales: 983363.5, + COGS: 538460, + Profit: 444903.5, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `2838`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 993300, + Discounts: 39973.5, + Sales: 953326.5, + COGS: 329940, + Profit: 623386.5, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `1302`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 19530, + Discounts: 1309.5, + Sales: 18220.5, + COGS: 9700, + Profit: 8520.5, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `1536`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 30720, + Discounts: 3049.2, + Sales: 27670.8, + COGS: 16940, + Profit: 10730.8, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1291`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 25820, + Discounts: 1193.4, + Sales: 24626.6, + COGS: 6630, + Profit: 17996.6, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1213`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 8491, + Discounts: 515.97, + Sales: 7975.03, + COGS: 4095, + Profit: 3880.03, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2370`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 28440, + Discounts: 1706.4, + Sales: 26733.6, + COGS: 4740, + Profit: 21993.6, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1979`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 13853, + Discounts: 328.23, + Sales: 13524.77, + COGS: 2605, + Profit: 10919.77, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2879`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 57580, + Discounts: 1751.4, + Sales: 55828.6, + COGS: 9730, + Profit: 46098.6, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1707`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34140, + Discounts: 1868.4, + Sales: 32271.6, + COGS: 10380, + Profit: 21891.6, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2933`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 20531, + Discounts: 226.8, + Sales: 20304.2, + COGS: 1800, + Profit: 18504.2, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1014`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 12168, + Discounts: 2124.36, + Sales: 10043.64, + COGS: 5901, + Profit: 4142.64, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `693`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 10395, + Discounts: 3547.8, + Sales: 6847.2, + COGS: 26280, + Profit: 19432.8, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3741`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26187, + Discounts: 226.8, + Sales: 25960.2, + COGS: 1800, + Profit: 24160.2, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3116`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 62320, + Discounts: 4827.6, + Sales: 57492.4, + COGS: 26820, + Profit: 30672.4, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `3995`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27965, + Discounts: 328.23, + Sales: 27636.77, + COGS: 2605, + Profit: 25031.77, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `953`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19060, + Discounts: 1868.4, + Sales: 17191.6, + COGS: 10380, + Profit: 6811.6, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `2530`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 37950, + Discounts: 2201.18, + Sales: 35748.82, + COGS: 16305, + Profit: 19443.82, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `2565`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 30780, + Discounts: 330.48, + Sales: 30449.52, + COGS: 918, + Profit: 29531.52, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `4297`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 51564, + Discounts: 463.2, + Sales: 51100.8, + COGS: 1158, + Profit: 49942.8, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `2871`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20097, + Discounts: 1629.6, + Sales: 18467.4, + COGS: 11640, + Profit: 6827.4, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3537`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 42444, + Discounts: 463.2, + Sales: 41980.8, + COGS: 1158, + Profit: 40822.8, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `1598`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 199750, + Discounts: 43068.75, + Sales: 156681.25, + COGS: 413460, + Profit: 256778.75, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `2616`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 327000, + Discounts: 18525, + Sales: 308475, + COGS: 177840, + Profit: 130635, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `2836`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 992600, + Discounts: 80955, + Sales: 911645, + COGS: 601380, + Profit: 310265, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `4023`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 502875, + Discounts: 22550, + Sales: 480325, + COGS: 216480, + Profit: 263845, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3994`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 59910, + Discounts: 3108, + Sales: 56802, + COGS: 20720, + Profit: 36082, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2928`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 58560, + Discounts: 3908, + Sales: 54652, + COGS: 19540, + Profit: 35112, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2912`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 873600, + Discounts: 17730, + Sales: 855870, + COGS: 147750, + Profit: 708120, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3671`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 55065, + Discounts: 3250.5, + Sales: 51814.5, + COGS: 21670, + Profit: 30144.5, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2778`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 55560, + Discounts: 482, + Sales: 55078, + COGS: 2410, + Profit: 52668, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `405`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 6075, + Discounts: 1021.5, + Sales: 5053.5, + COGS: 6810, + Profit: 1756.5, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `2013`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 30195, + Discounts: 765, + Sales: 29430, + COGS: 5100, + Profit: 24330, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2634`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 39510, + Discounts: 1185, + Sales: 38325, + COGS: 7900, + Profit: 30425, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `4166`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1458100, + Discounts: 22365, + Sales: 1435735, + COGS: 166140, + Profit: 1269595, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `355`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 44375, + Discounts: 19950, + Sales: 24425, + COGS: 191520, + Profit: 167095, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2382`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 714600, + Discounts: 68820, + Sales: 645780, + COGS: 573500, + Profit: 72280, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `4170`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 83400, + Discounts: 482, + Sales: 82918, + COGS: 2410, + Profit: 80508, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `892`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 6244, + Discounts: 1865.5, + Sales: 4378.5, + COGS: 13325, + Profit: 8946.5, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2200`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 275000, + Discounts: 23950, + Sales: 251050, + COGS: 229920, + Profit: 21130, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `3389`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1016700, + Discounts: 25590, + Sales: 991110, + COGS: 213250, + Profit: 777860, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `2990`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 373750, + Discounts: 4262.5, + Sales: 369487.5, + COGS: 40920, + Profit: 328567.5, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `4013`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 60195, + Discounts: 961.5, + Sales: 59233.5, + COGS: 6410, + Profit: 52823.5, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `739`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 258650, + Discounts: 98245, + Sales: 160405, + COGS: 729820, + Profit: 569415, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1989`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 596700, + Discounts: 12960, + Sales: 583740, + COGS: 108000, + Profit: 475740, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2991`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 897300, + Discounts: 68820, + Sales: 828480, + COGS: 573500, + Profit: 254980, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `4237`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 63555, + Discounts: 3250.5, + Sales: 60304.5, + COGS: 21670, + Profit: 38634.5, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1442`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 180250, + Discounts: 31612.5, + Sales: 148637.5, + COGS: 303480, + Profit: 154842.5, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `2712`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 949200, + Discounts: 65450, + Sales: 883750, + COGS: 486200, + Profit: 397550, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1508`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 188500, + Discounts: 7237.5, + Sales: 181262.5, + COGS: 69480, + Profit: 111782.5, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `4245`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1485750, + Discounts: 78400, + Sales: 1407350, + COGS: 582400, + Profit: 824950, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2630`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 789000, + Discounts: 89790, + Sales: 699210, + COGS: 748250, + Profit: 49040, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `1182`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 14184, + Discounts: 4224.6, + Sales: 9959.4, + COGS: 10561.5, + Profit: 602.1, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `1221`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 24420, + Discounts: 4078, + Sales: 20342, + COGS: 20390, + Profit: 48, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `963`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 11556, + Discounts: 3088.8, + Sales: 8467.2, + COGS: 7722, + Profit: 745.2, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `3243`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1135050, + Discounts: 24745, + Sales: 1110305, + COGS: 183820, + Profit: 926485, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1120`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 16800, + Discounts: 3108, + Sales: 13692, + COGS: 20720, + Profit: 7028, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1174`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 352200, + Discounts: 25590, + Sales: 326610, + COGS: 213250, + Profit: 113360, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `2541`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 30492, + Discounts: 1581.36, + Sales: 28910.64, + COGS: 3594, + Profit: 25316.64, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3246`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 22722, + Discounts: 1949.64, + Sales: 20772.36, + COGS: 12660, + Profit: 8112.36, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1531`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 18372, + Discounts: 1581.36, + Sales: 16790.64, + COGS: 3594, + Profit: 13196.64, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2526`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 37890, + Discounts: 633.6, + Sales: 37256.4, + COGS: 3840, + Profit: 33416.4, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `1136`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 13632, + Discounts: 623.04, + Sales: 13008.96, + COGS: 1416, + Profit: 11592.96, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1983`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 13881, + Discounts: 1215.83, + Sales: 12665.17, + COGS: 7895, + Profit: 4770.17, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `3259`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 39108, + Discounts: 1326.6, + Sales: 37781.4, + COGS: 3015, + Profit: 34766.4, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `3267`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 49005, + Discounts: 5279.17, + Sales: 43725.82, + COGS: 31995, + Profit: 11730.82, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `2454`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 29448, + Discounts: 623.04, + Sales: 28824.96, + COGS: 1416, + Profit: 27408.96, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `2643`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 31716, + Discounts: 2556.84, + Sales: 29159.16, + COGS: 5811, + Profit: 23348.16, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `383`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 134050, + Discounts: 30492, + Sales: 103558, + COGS: 205920, + Profit: 102362, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2801`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 840300, + Discounts: 92763, + Sales: 747537, + COGS: 702750, + Profit: 44787, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1667`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 208375, + Discounts: 33563.75, + Sales: 174811.25, + COGS: 292920, + Profit: 118108.75, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `3539`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 53085, + Discounts: 2574, + Sales: 50511, + COGS: 15600, + Profit: 34911, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `4226`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 29582, + Discounts: 2083.62, + Sales: 27498.38, + COGS: 13530, + Profit: 13968.38, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2220`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 777000, + Discounts: 29491, + Sales: 747509, + COGS: 199160, + Profit: 548349, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `776`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 15520, + Discounts: 6582.4, + Sales: 8937.6, + COGS: 29920, + Profit: 20982.4, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `553`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 8295, + Discounts: 3559.05, + Sales: 4735.95, + COGS: 21570, + Profit: 16834.05, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2107`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 632100, + Discounts: 28809, + Sales: 603291, + COGS: 218250, + Profit: 385041, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2468`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 49360, + Discounts: 2468.4, + Sales: 46891.6, + COGS: 11220, + Profit: 35671.6, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1905`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 666750, + Discounts: 81023.25, + Sales: 585726.75, + COGS: 547170, + Profit: 38556.75, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3658`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 43896, + Discounts: 5314.32, + Sales: 38581.68, + COGS: 12078, + Profit: 26503.68, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `4301`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 51612, + Discounts: 3201.66, + Sales: 48410.34, + COGS: 7276.5, + Profit: 41133.84, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2446`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 48920, + Discounts: 5266.8, + Sales: 43653.2, + COGS: 23940, + Profit: 19713.2, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `4209`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 63135, + Discounts: 3273.6, + Sales: 59861.4, + COGS: 19840, + Profit: 40021.4, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3353`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 419125, + Discounts: 33563.75, + Sales: 385561.25, + COGS: 292920, + Profit: 92641.25, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1401`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 28020, + Discounts: 6582.4, + Sales: 21437.6, + COGS: 29920, + Profit: 8482.4, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1865`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 559500, + Discounts: 45078, + Sales: 514422, + COGS: 341500, + Profit: 172922, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `463`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 9260, + Discounts: 6171, + Sales: 3089, + COGS: 28050, + Profit: 24961, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `4177`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 62655, + Discounts: 1080.75, + Sales: 61574.25, + COGS: 6550, + Profit: 55024.25, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2523`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 883050, + Discounts: 13244, + Sales: 869806, + COGS: 89440, + Profit: 780366, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `1930`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 13510, + Discounts: 1392.16, + Sales: 12117.84, + COGS: 9040, + Profit: 3077.84, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `1301`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 15612, + Discounts: 2288.88, + Sales: 13323.12, + COGS: 5202, + Profit: 8121.12, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `4125`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 515625, + Discounts: 7617.5, + Sales: 508007.5, + COGS: 66480, + Profit: 441527.5, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `607`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 12140, + Discounts: 6457, + Sales: 5683, + COGS: 29350, + Profit: 23667, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `478`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 59750, + Discounts: 43518.75, + Sales: 16231.25, + COGS: 379800, + Profit: 363568.75, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `4489`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 89780, + Discounts: 5783.8, + Sales: 83996.2, + COGS: 26290, + Profit: 57706.2, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1504`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 188000, + Discounts: 19703.75, + Sales: 168296.25, + COGS: 171960, + Profit: 3663.75, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `3763`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 470375, + Discounts: 13021.25, + Sales: 457353.75, + COGS: 113640, + Profit: 343713.75, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2412`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 844200, + Discounts: 13244, + Sales: 830956, + COGS: 89440, + Profit: 741516, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2342`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 35130, + Discounts: 3559.05, + Sales: 31570.95, + COGS: 21570, + Profit: 10000.95, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4451`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 31157, + Discounts: 292.6, + Sales: 30864.4, + COGS: 1900, + Profit: 28964.4, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3796`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1328600, + Discounts: 37212, + Sales: 1291388, + COGS: 230360, + Profit: 1061028, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `2286`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 285750, + Discounts: 36240, + Sales: 249510, + COGS: 289920, + Profit: 40410, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3614`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 451750, + Discounts: 32340, + Sales: 419410, + COGS: 258720, + Profit: 160690, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1716`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 25740, + Discounts: 4840.2, + Sales: 20899.8, + COGS: 26890, + Profit: 5990.2, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1301`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 19515, + Discounts: 1218.6, + Sales: 18296.4, + COGS: 6770, + Profit: 11526.4, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `4175`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1252500, + Discounts: 63828, + Sales: 1188672, + COGS: 443250, + Profit: 745422, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `975`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 6825, + Discounts: 2032.8, + Sales: 4792.2, + COGS: 12100, + Profit: 7307.8, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1154`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 8078, + Discounts: 2296.56, + Sales: 5781.44, + COGS: 13670, + Profit: 7888.56, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1873`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 37460, + Discounts: 4116, + Sales: 33344, + COGS: 17150, + Profit: 16194, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3766`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1129800, + Discounts: 42696, + Sales: 1087104, + COGS: 296500, + Profit: 790604, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3558`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1067400, + Discounts: 125820, + Sales: 941580, + COGS: 873750, + Profit: 67830, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3156`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1104600, + Discounts: 37212, + Sales: 1067388, + COGS: 230360, + Profit: 837028, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2994`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 374250, + Discounts: 32340, + Sales: 341910, + COGS: 258720, + Profit: 83190, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2087`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 41740, + Discounts: 2172, + Sales: 39568, + COGS: 9050, + Profit: 30518, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1056`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 21120, + Discounts: 4116, + Sales: 17004, + COGS: 17150, + Profit: 146, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1353`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 473550, + Discounts: 66948, + Sales: 406602, + COGS: 414440, + Profit: 7838, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `416`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 124800, + Discounts: 48924, + Sales: 75876, + COGS: 339750, + Profit: 263874, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3880`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1164000, + Discounts: 77400, + Sales: 1086600, + COGS: 537500, + Profit: 549100, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `809`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 283150, + Discounts: 50274, + Sales: 232876, + COGS: 311220, + Profit: 78344, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1892`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 28380, + Discounts: 684, + Sales: 27696, + COGS: 3800, + Profit: 23896, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2072`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 41440, + Discounts: 2959.2, + Sales: 38480.8, + COGS: 12330, + Profit: 26150.8, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `3052`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1068200, + Discounts: 58590, + Sales: 1009610, + COGS: 362700, + Profit: 646910, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3121`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1092350, + Discounts: 41412, + Sales: 1050938, + COGS: 256360, + Profit: 794578, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2059`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 41180, + Discounts: 2172, + Sales: 39008, + COGS: 9050, + Profit: 29958, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `4254`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 51048, + Discounts: 3036.96, + Sales: 48011.04, + COGS: 6327, + Profit: 41684.04, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `1293`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 19395, + Discounts: 6974.1, + Sales: 12420.9, + COGS: 38745, + Profit: 26324.1, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1293`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 452550, + Discounts: 26166, + Sales: 426384, + COGS: 161980, + Profit: 264404, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `230`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 80500, + Discounts: 41412, + Sales: 39088, + COGS: 256360, + Profit: 217272, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1723`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 215375, + Discounts: 35805, + Sales: 179570, + COGS: 286440, + Profit: 106870, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `240`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 4800, + Discounts: 2959.2, + Sales: 1840.8, + COGS: 12330, + Profit: 10489.2, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2571`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 899850, + Discounts: 11340, + Sales: 888510, + COGS: 70200, + Profit: 818310, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1661`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 11627, + Discounts: 2874.06, + Sales: 8752.94, + COGS: 17107.5, + Profit: 8354.56, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `4474`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 31318, + Discounts: 2296.56, + Sales: 29021.44, + COGS: 13670, + Profit: 15351.44, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `833`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 12495, + Discounts: 4586.4, + Sales: 7908.6, + COGS: 25480, + Profit: 17571.4, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `674`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 13480, + Discounts: 6051.6, + Sales: 7428.4, + COGS: 25215, + Profit: 17786.6, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `778`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 9336, + Discounts: 3831.84, + Sales: 5504.16, + COGS: 7983, + Profit: 2478.84, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1457`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 29140, + Discounts: 3674.4, + Sales: 25465.6, + COGS: 15310, + Profit: 10155.6, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3158`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 22106, + Discounts: 1252.44, + Sales: 20853.56, + COGS: 7455, + Profit: 13398.56, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `4095`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 81900, + Discounts: 3674.4, + Sales: 78225.6, + COGS: 15310, + Profit: 62915.6, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `3170`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 38040, + Discounts: 3975.84, + Sales: 34064.16, + COGS: 8283, + Profit: 25781.16, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `493`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 7395, + Discounts: 5005.65, + Sales: 2389.35, + COGS: 25670, + Profit: 23280.65, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `3286`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 49290, + Discounts: 5005.65, + Sales: 44284.35, + COGS: 25670, + Profit: 18614.35, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `3563`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1247050, + Discounts: 41996.5, + Sales: 1205053.5, + COGS: 239980, + Profit: 965073.5, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `4109`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1438150, + Discounts: 81445, + Sales: 1356705, + COGS: 465400, + Profit: 891305, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `3653`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 73060, + Discounts: 1149.2, + Sales: 71910.8, + COGS: 4420, + Profit: 67490.8, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `2203`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 771050, + Discounts: 44703.75, + Sales: 726346.25, + COGS: 255450, + Profit: 470896.25, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `2924`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20468, + Discounts: 1181.18, + Sales: 19286.82, + COGS: 6490, + Profit: 12796.82, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `2650`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 31800, + Discounts: 942.24, + Sales: 30857.76, + COGS: 1812, + Profit: 29045.76, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1194`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 23880, + Discounts: 5863, + Sales: 18017, + COGS: 22550, + Profit: 4533, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `3366`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 67320, + Discounts: 3247.4, + Sales: 64072.6, + COGS: 12490, + Profit: 51582.6, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1325`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 9275, + Discounts: 1309.04, + Sales: 7965.97, + COGS: 7192.5, + Profit: 773.47, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4243`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1272900, + Discounts: 31473, + Sales: 1241427, + COGS: 201750, + Profit: 1039677, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2887`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 57740, + Discounts: 6866.6, + Sales: 50873.4, + COGS: 26410, + Profit: 24463.4, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3839`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 76780, + Discounts: 7040.8, + Sales: 69739.2, + COGS: 27080, + Profit: 42659.2, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1863`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 652050, + Discounts: 119756, + Sales: 532294, + COGS: 684320, + Profit: 152026, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2858`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 357250, + Discounts: 25723.75, + Sales: 331526.25, + COGS: 189960, + Profit: 141566.25, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2868`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 34416, + Discounts: 890.76, + Sales: 33525.24, + COGS: 1713, + Profit: 31812.24, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3805`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 26635, + Discounts: 2453.36, + Sales: 24181.64, + COGS: 13480, + Profit: 10701.64, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3914`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 58710, + Discounts: 3051.75, + Sales: 55658.25, + COGS: 15650, + Profit: 40008.25, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `524`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 10480, + Discounts: 3247.4, + Sales: 7232.6, + COGS: 12490, + Profit: 5257.4, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3095`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1083250, + Discounts: 16243.5, + Sales: 1067006.5, + COGS: 92820, + Profit: 974186.5, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2410`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 28920, + Discounts: 1580.28, + Sales: 27339.72, + COGS: 3039, + Profit: 24300.72, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `4263`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 63945, + Discounts: 7795.13, + Sales: 56149.88, + COGS: 39975, + Profit: 16174.88, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2239`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 783650, + Discounts: 119756, + Sales: 663894, + COGS: 684320, + Profit: 20426, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `569`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 3983, + Discounts: 1082.9, + Sales: 2900.1, + COGS: 5950, + Profit: 3049.9, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `3889`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 46668, + Discounts: 942.24, + Sales: 45725.76, + COGS: 1812, + Profit: 43913.76, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `1378`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 20670, + Discounts: 1287, + Sales: 19383, + COGS: 6600, + Profit: 12783, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2253`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 27036, + Discounts: 639.6, + Sales: 26396.4, + COGS: 1230, + Profit: 25166.4, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `3202`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 960600, + Discounts: 101595, + Sales: 859005, + COGS: 651250, + Profit: 207755, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3835`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 46020, + Discounts: 1580.28, + Sales: 44439.72, + COGS: 3039, + Profit: 41400.72, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `2487`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 310875, + Discounts: 25723.75, + Sales: 285151.25, + COGS: 189960, + Profit: 95191.25, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `4428`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 66420, + Discounts: 3051.75, + Sales: 63368.25, + COGS: 15650, + Profit: 47718.25, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `1200`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 150000, + Discounts: 26958.75, + Sales: 123041.25, + COGS: 199080, + Profit: 76038.75, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `2953`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 20671, + Discounts: 1082.9, + Sales: 19588.1, + COGS: 5950, + Profit: 13638.1, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `1453`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 17436, + Discounts: 639.6, + Sales: 16796.4, + COGS: 1230, + Profit: 15566.4, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `865`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 10380, + Discounts: 2761.2, + Sales: 7618.8, + COGS: 5310, + Profit: 2308.8, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1072`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 21440, + Discounts: 7221.2, + Sales: 14218.8, + COGS: 25790, + Profit: 11571.2, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `1737`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 34740, + Discounts: 4880.4, + Sales: 29859.6, + COGS: 17430, + Profit: 12429.6, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `1535`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 10745, + Discounts: 2936.08, + Sales: 7808.92, + COGS: 14980, + Profit: 7171.08, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2532`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 17724, + Discounts: 274.4, + Sales: 17449.6, + COGS: 1400, + Profit: 16049.6, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1765`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 12355, + Discounts: 287.14, + Sales: 12067.86, + COGS: 1465, + Profit: 10602.86, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1567`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 10969, + Discounts: 2936.08, + Sales: 8032.92, + COGS: 14980, + Profit: 6947.08, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2640`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 39600, + Discounts: 583.8, + Sales: 39016.2, + COGS: 2780, + Profit: 36236.2, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3079`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 61580, + Discounts: 6798.4, + Sales: 54781.6, + COGS: 24280, + Profit: 30501.6, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4130`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 61950, + Discounts: 3710.7, + Sales: 58239.3, + COGS: 17670, + Profit: 40569.3, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2938`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 35256, + Discounts: 2340.24, + Sales: 32915.76, + COGS: 4179, + Profit: 28736.76, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3080`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 21560, + Discounts: 274.4, + Sales: 21285.6, + COGS: 1400, + Profit: 19885.6, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1530`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 18360, + Discounts: 2340.24, + Sales: 16019.76, + COGS: 4179, + Profit: 11840.76, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `3537`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 42444, + Discounts: 3385.2, + Sales: 39058.8, + COGS: 6045, + Profit: 33013.8, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `2021`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 606300, + Discounts: 33642, + Sales: 572658, + COGS: 200250, + Profit: 372408, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1804`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 225500, + Discounts: 17902.5, + Sales: 207597.5, + COGS: 122760, + Profit: 84837.5, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1014`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 304200, + Discounts: 62832, + Sales: 241368, + COGS: 374000, + Profit: 132632, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `2913`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 873900, + Discounts: 42420, + Sales: 831480, + COGS: 252500, + Profit: 578980, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `763`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 11445, + Discounts: 3177.3, + Sales: 8267.7, + COGS: 15130, + Profit: 6862.3, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1425`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 21375, + Discounts: 4830, + Sales: 16545, + COGS: 23000, + Profit: 6455, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `4357`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 544625, + Discounts: 49367.5, + Sales: 495257.5, + COGS: 338520, + Profit: 156737.5, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `2138`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 748300, + Discounts: 109147.5, + Sales: 639152.5, + COGS: 579150, + Profit: 60002.5, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3825`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1338750, + Discounts: 58751, + Sales: 1279999, + COGS: 311740, + Profit: 968259, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `3393`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1187550, + Discounts: 9800, + Sales: 1177750, + COGS: 52000, + Profit: 1125750, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `2215`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 15505, + Discounts: 380.24, + Sales: 15124.76, + COGS: 1940, + Profit: 13184.76, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `2278`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 15946, + Discounts: 1692.46, + Sales: 14253.54, + COGS: 8635, + Profit: 5618.54, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `403`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 6045, + Discounts: 4830, + Sales: 1215, + COGS: 23000, + Profit: 21785, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `289`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 5780, + Discounts: 728, + Sales: 5052, + COGS: 2600, + Profit: 2452, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `749`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 11235, + Discounts: 5187, + Sales: 6048, + COGS: 24700, + Profit: 18652, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `372`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 5580, + Discounts: 3660.3, + Sales: 1919.7, + COGS: 17430, + Profit: 15510.3, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3781`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 45372, + Discounts: 4895.52, + Sales: 40476.48, + COGS: 8742, + Profit: 31734.48, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1785`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 12495, + Discounts: 1696.38, + Sales: 10798.62, + COGS: 8655, + Profit: 2143.62, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `4029`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1410150, + Discounts: 34300, + Sales: 1375850, + COGS: 182000, + Profit: 1193850, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2813`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 33756, + Discounts: 3732.96, + Sales: 30023.04, + COGS: 6666, + Profit: 23357.04, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2150`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 752500, + Discounts: 57673, + Sales: 694827, + COGS: 306020, + Profit: 388807, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2093`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 732550, + Discounts: 94178, + Sales: 638372, + COGS: 499720, + Profit: 138652, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `4391`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 548875, + Discounts: 27562.5, + Sales: 521312.5, + COGS: 189000, + Profit: 332312.5, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2695`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 53900, + Discounts: 1696.8, + Sales: 52203.2, + COGS: 6060, + Profit: 46143.2, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1337`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 401100, + Discounts: 103320, + Sales: 297780, + COGS: 615000, + Profit: 317220, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2621`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 786300, + Discounts: 11298, + Sales: 775002, + COGS: 67250, + Profit: 707752, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3735`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1120500, + Discounts: 106512, + Sales: 1013988, + COGS: 634000, + Profit: 379988, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `4320`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 30240, + Discounts: 2844.94, + Sales: 27395.06, + COGS: 14515, + Profit: 12880.06, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2828`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 848400, + Discounts: 106722, + Sales: 741678, + COGS: 635250, + Profit: 106428, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `2586`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 775800, + Discounts: 11298, + Sales: 764502, + COGS: 67250, + Profit: 697252, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1248`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 374400, + Discounts: 62832, + Sales: 311568, + COGS: 374000, + Profit: 62432, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `4035`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 1210500, + Discounts: 42420, + Sales: 1168080, + COGS: 252500, + Profit: 915580, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `359`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 125650, + Discounts: 62769, + Sales: 62881, + COGS: 333060, + Profit: 270179, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `3926`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1177800, + Discounts: 37296, + Sales: 1140504, + COGS: 222000, + Profit: 918504, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `4247`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 530875, + Discounts: 49770, + Sales: 481105, + COGS: 341280, + Profit: 139825, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `2695`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 32340, + Discounts: 4158, + Sales: 28182, + COGS: 7425, + Profit: 20757, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `1104`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 16560, + Discounts: 3660.3, + Sales: 12899.7, + COGS: 17430, + Profit: 4530.3, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1449`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 17388, + Discounts: 4895.52, + Sales: 12492.48, + COGS: 8742, + Profit: 3750.48, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1131`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 7917, + Discounts: 1696.38, + Sales: 6220.62, + COGS: 8655, + Profit: 2434.38, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `1468`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 10276, + Discounts: 1692.46, + Sales: 8583.54, + COGS: 8635, + Profit: 51.46, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `1272`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 19080, + Discounts: 3927, + Sales: 15153, + COGS: 18700, + Profit: 3547, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1403`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 175375, + Discounts: 22012.5, + Sales: 153362.5, + COGS: 140880, + Profit: 12482.5, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2161`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 270125, + Discounts: 51881.25, + Sales: 218243.75, + COGS: 332040, + Profit: 113796.25, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1937`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 242125, + Discounts: 20343.75, + Sales: 221781.25, + COGS: 130200, + Profit: 91581.25, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `2879`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 863700, + Discounts: 24570, + Sales: 839130, + COGS: 136500, + Profit: 702630, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1330`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 26600, + Discounts: 3474, + Sales: 23126, + COGS: 11580, + Profit: 11546, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2426`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 36390, + Discounts: 3631.5, + Sales: 32758.5, + COGS: 16140, + Profit: 16618.5, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2033`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14231, + Discounts: 2661.75, + Sales: 11569.25, + COGS: 12675, + Profit: 1105.75, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2029`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 710150, + Discounts: 149677.5, + Sales: 560472.5, + COGS: 741260, + Profit: 180787.5, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1049`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 15735, + Discounts: 5757.75, + Sales: 9977.25, + COGS: 25590, + Profit: 15612.75, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1062`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 21240, + Discounts: 801, + Sales: 20439, + COGS: 2670, + Profit: 17769, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2509`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 313625, + Discounts: 20343.75, + Sales: 293281.25, + COGS: 130200, + Profit: 163081.25, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1743`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 26145, + Discounts: 2643.75, + Sales: 23501.25, + COGS: 11750, + Profit: 11751.25, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3418`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1196300, + Discounts: 105367.5, + Sales: 1090932.5, + COGS: 521820, + Profit: 569112.5, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1751`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 612850, + Discounts: 112927.5, + Sales: 499922.5, + COGS: 559260, + Profit: 59337.5, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3228`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 38736, + Discounts: 1645.2, + Sales: 37090.8, + COGS: 2742, + Profit: 34348.8, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1105`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 22100, + Discounts: 879, + Sales: 21221, + COGS: 2930, + Profit: 18291, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2778`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 33336, + Discounts: 900, + Sales: 32436, + COGS: 1500, + Profit: 30936, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1173`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 17595, + Discounts: 6358.5, + Sales: 11236.5, + COGS: 28260, + Profit: 17023.5, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `3160`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 395000, + Discounts: 12431.25, + Sales: 382568.75, + COGS: 79560, + Profit: 303008.75, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `4322`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1296600, + Discounts: 115830, + Sales: 1180770, + COGS: 643500, + Profit: 537270, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1901`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 237625, + Discounts: 45712.5, + Sales: 191912.5, + COGS: 292560, + Profit: 100647.5, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2980`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 35760, + Discounts: 1645.2, + Sales: 34114.8, + COGS: 2742, + Profit: 31372.8, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `4068`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 81360, + Discounts: 2596.5, + Sales: 78763.5, + COGS: 8655, + Profit: 70108.5, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `2105`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 31575, + Discounts: 1107, + Sales: 30468, + COGS: 4920, + Profit: 25548, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1647`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 32940, + Discounts: 801, + Sales: 32139, + COGS: 2670, + Profit: 29469, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `235`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 3525, + Discounts: 2643.75, + Sales: 881.25, + COGS: 11750, + Profit: 10868.75, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3617`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 452125, + Discounts: 55387.5, + Sales: 396737.5, + COGS: 354480, + Profit: 42257.5, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `2106`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 263250, + Discounts: 10350, + Sales: 252900, + COGS: 66240, + Profit: 186660, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2351`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 47020, + Discounts: 879, + Sales: 46141, + COGS: 2930, + Profit: 43211, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1897`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 569100, + Discounts: 111375, + Sales: 457725, + COGS: 618750, + Profit: 161025, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `647`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 194100, + Discounts: 24570, + Sales: 169530, + COGS: 136500, + Profit: 33030, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `3621`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 25347, + Discounts: 1436.4, + Sales: 23910.6, + COGS: 6840, + Profit: 17070.6, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3221`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 22547, + Discounts: 759.15, + Sales: 21787.85, + COGS: 3615, + Profit: 18172.85, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `493`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 5916, + Discounts: 3250.8, + Sales: 2665.2, + COGS: 5418, + Profit: 2752.8, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + } +} + +export class SalesDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public Country: string; + public Product: string; + public UnitsSold: string; + public ManufacturingPrice: number; + public SalePrice: number; + public GrossSales: number; + public Discounts: number; + public Sales: number; + public COGS: number; + public Profit: number; + public Date: string; + public MonthName: string; + public Year: string; + +} +//end data \ No newline at end of file diff --git a/samples/charts/category-chart/chart-highlight-filter/src/app.component.html b/samples/charts/category-chart/chart-highlight-filter/src/app.component.html new file mode 100644 index 000000000..e0b7e2f3c --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/src/app.component.html @@ -0,0 +1,29 @@ +
+
+ + + + +
+
+ + +
+
diff --git a/samples/charts/category-chart/chart-highlight-filter/src/app.component.scss b/samples/charts/category-chart/chart-highlight-filter/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/category-chart/chart-highlight-filter/src/app.component.ts b/samples/charts/category-chart/chart-highlight-filter/src/app.component.ts new file mode 100644 index 000000000..7bc7565e0 --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/src/app.component.ts @@ -0,0 +1,56 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; +import { SalesData } from './SalesData'; +import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("highlightedValuesDisplayModeEditor", { static: true } ) + private highlightedValuesDisplayModeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent + private _salesData: SalesData = null; + public get salesData(): SalesData { + if (this._salesData == null) + { + this._salesData = new SalesData(); + } + return this._salesData; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + CategoryChartDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/category-chart/chart-highlight-filter/src/app.module.ts b/samples/charts/category-chart/chart-highlight-filter/src/app.module.ts new file mode 100644 index 000000000..1cdbd60b2 --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/src/app.module.ts @@ -0,0 +1,27 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxCategoryChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxCategoryChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.app.json b/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.base.json b/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.spec.json b/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.worker.json b/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/category-chart/chart-highlight-filter/src/environments/environment.prod.ts b/samples/charts/category-chart/chart-highlight-filter/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/category-chart/chart-highlight-filter/src/environments/environment.ts b/samples/charts/category-chart/chart-highlight-filter/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/category-chart/chart-highlight-filter/src/index.html b/samples/charts/category-chart/chart-highlight-filter/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/category-chart/chart-highlight-filter/src/main.ts b/samples/charts/category-chart/chart-highlight-filter/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/category-chart/chart-highlight-filter/src/polyfills.ts b/samples/charts/category-chart/chart-highlight-filter/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/category-chart/chart-highlight-filter/src/styles.scss b/samples/charts/category-chart/chart-highlight-filter/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/category-chart/chart-highlight-filter/src/typings.d.ts b/samples/charts/category-chart/chart-highlight-filter/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/category-chart/chart-highlight-filter/tsconfig.json b/samples/charts/category-chart/chart-highlight-filter/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/category-chart/chart-highlight-filter/tslint.json b/samples/charts/category-chart/chart-highlight-filter/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/.stackblitzrc b/samples/charts/data-chart/chart-highlight-filter-datasource/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/angular.json b/samples/charts/data-chart/chart-highlight-filter-datasource/angular.json new file mode 100644 index 000000000..11ffb8c9c --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json new file mode 100644 index 000000000..366494b4f --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -0,0 +1,47 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "9.1.1", + "typescript": "5.2.2" + } +} diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/sandbox.config.json b/samples/charts/data-chart/chart-highlight-filter-datasource/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/OnlineTrafficHighlightTotals.ts b/samples/charts/data-chart/chart-highlight-filter-datasource/src/OnlineTrafficHighlightTotals.ts new file mode 100644 index 000000000..39a92585e --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/OnlineTrafficHighlightTotals.ts @@ -0,0 +1,49 @@ +export class OnlineTrafficHighlightTotalsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public category: string; + public value: number; + +} +export class OnlineTrafficHighlightTotals extends Array { + public constructor() { + super(); + this.push(new OnlineTrafficHighlightTotalsItem( + { + category: `Apparel`, + value: 100 + })); + this.push(new OnlineTrafficHighlightTotalsItem( + { + category: `Beauty`, + value: 100 + })); + this.push(new OnlineTrafficHighlightTotalsItem( + { + category: `Travel`, + value: 100 + })); + this.push(new OnlineTrafficHighlightTotalsItem( + { + category: `Grocery`, + value: 100 + })); + this.push(new OnlineTrafficHighlightTotalsItem( + { + category: `Energy`, + value: 100 + })); + this.push(new OnlineTrafficHighlightTotalsItem( + { + category: `Home Supply`, + value: 100 + })); + this.push(new OnlineTrafficHighlightTotalsItem( + { + category: `Financial`, + value: 100 + })); + } +} diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.html b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.html new file mode 100644 index 000000000..a2d31534a --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.html @@ -0,0 +1,48 @@ +
+
+ + + + +
+
+ + + + + + + + +
+
diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.scss b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.ts b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.ts new file mode 100644 index 000000000..43b68d47b --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.ts @@ -0,0 +1,64 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataChartCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule } from 'igniteui-angular-core'; +import { OnlineTrafficHighlightTotalsItem, OnlineTrafficHighlightTotals } from './OnlineTrafficHighlightTotals'; +import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent } from 'igniteui-angular-charts'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("highlightedValuesDisplayModeEditor", { static: true } ) + private highlightedValuesDisplayModeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("columnSeries1", { static: true } ) + private columnSeries1: IgxColumnSeriesComponent + private _onlineTrafficHighlightTotals: OnlineTrafficHighlightTotals = null; + public get onlineTrafficHighlightTotals(): OnlineTrafficHighlightTotals { + if (this._onlineTrafficHighlightTotals == null) + { + this._onlineTrafficHighlightTotals = new OnlineTrafficHighlightTotals(); + } + return this._onlineTrafficHighlightTotals; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + DataChartCoreDescriptionModule.register(context); + DataChartCategoryDescriptionModule.register(context); + DataChartInteractivityDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.module.ts b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.module.ts new file mode 100644 index 000000000..6cbdeaeab --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.module.ts @@ -0,0 +1,29 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartInteractivityModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartInteractivityModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.app.json b/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.base.json b/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.spec.json b/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.worker.json b/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/environments/environment.prod.ts b/samples/charts/data-chart/chart-highlight-filter-datasource/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/environments/environment.ts b/samples/charts/data-chart/chart-highlight-filter-datasource/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/index.html b/samples/charts/data-chart/chart-highlight-filter-datasource/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/main.ts b/samples/charts/data-chart/chart-highlight-filter-datasource/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/polyfills.ts b/samples/charts/data-chart/chart-highlight-filter-datasource/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/styles.scss b/samples/charts/data-chart/chart-highlight-filter-datasource/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/typings.d.ts b/samples/charts/data-chart/chart-highlight-filter-datasource/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json b/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/tslint.json b/samples/charts/data-chart/chart-highlight-filter-datasource/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/.stackblitzrc b/samples/charts/data-chart/chart-highlight-filter-multiple-series/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/angular.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/angular.json new file mode 100644 index 000000000..11ffb8c9c --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json new file mode 100644 index 000000000..366494b4f --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -0,0 +1,47 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "9.1.1", + "typescript": "5.2.2" + } +} diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/sandbox.config.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/CountryRenewableElectricity.ts b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/CountryRenewableElectricity.ts new file mode 100644 index 000000000..4849f0cff --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/CountryRenewableElectricity.ts @@ -0,0 +1,100 @@ +export class CountryRenewableElectricityItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public europe: number; + public china: number; + public america: number; + +} +export class CountryRenewableElectricity extends Array { + public constructor() { + super(); + this.push(new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + })); + this.push(new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + })); + } +} diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.html b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.html new file mode 100644 index 000000000..94fd047a3 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.html @@ -0,0 +1,62 @@ +
+
+ + + + +
+
+ + + + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.scss b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.ts b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.ts new file mode 100644 index 000000000..50efed436 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.ts @@ -0,0 +1,68 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataChartCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule } from 'igniteui-angular-core'; +import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; +import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent } from 'igniteui-angular-charts'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("highlightedValuesDisplayModeEditor", { static: true } ) + private highlightedValuesDisplayModeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("columnSeries1", { static: true } ) + private columnSeries1: IgxColumnSeriesComponent + @ViewChild("columnSeries2", { static: true } ) + private columnSeries2: IgxColumnSeriesComponent + @ViewChild("columnSeries3", { static: true } ) + private columnSeries3: IgxColumnSeriesComponent + private _countryRenewableElectricity: CountryRenewableElectricity = null; + public get countryRenewableElectricity(): CountryRenewableElectricity { + if (this._countryRenewableElectricity == null) + { + this._countryRenewableElectricity = new CountryRenewableElectricity(); + } + return this._countryRenewableElectricity; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + DataChartCoreDescriptionModule.register(context); + DataChartCategoryDescriptionModule.register(context); + DataChartInteractivityDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.module.ts b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.module.ts new file mode 100644 index 000000000..6cbdeaeab --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.module.ts @@ -0,0 +1,29 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartInteractivityModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartInteractivityModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.app.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.base.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/environments/environment.prod.ts b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/environments/environment.ts b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/index.html b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/main.ts b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/polyfills.ts b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/styles.scss b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/typings.d.ts b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/tslint.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/chart-highlight-filter/.stackblitzrc b/samples/charts/data-chart/chart-highlight-filter/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter/angular.json b/samples/charts/data-chart/chart-highlight-filter/angular.json new file mode 100644 index 000000000..11ffb8c9c --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json new file mode 100644 index 000000000..366494b4f --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -0,0 +1,47 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.0.0", + "igniteui-angular-core": "17.0.0", + "igniteui-angular-inputs": "17.0.0", + "igniteui-angular-layouts": "17.0.0", + "igniteui-webcomponents": "4.5.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "9.1.1", + "typescript": "5.2.2" + } +} diff --git a/samples/charts/data-chart/chart-highlight-filter/sandbox.config.json b/samples/charts/data-chart/chart-highlight-filter/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter/src/OlympicMedalsTopCountriesWithTotals.ts b/samples/charts/data-chart/chart-highlight-filter/src/OlympicMedalsTopCountriesWithTotals.ts new file mode 100644 index 000000000..dab1898aa --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/src/OlympicMedalsTopCountriesWithTotals.ts @@ -0,0 +1,65 @@ +export class OlympicMedalsTopCountriesWithTotalsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public america: number; + public china: number; + public russia: number; + public total: number; + +} +export class OlympicMedalsTopCountriesWithTotals extends Array { + public constructor() { + super(); + this.push(new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `1996`, + america: 148, + china: 110, + russia: 95, + total: 353 + })); + this.push(new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2000`, + america: 142, + china: 115, + russia: 91, + total: 348 + })); + this.push(new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2004`, + america: 134, + china: 121, + russia: 86, + total: 341 + })); + this.push(new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2008`, + america: 131, + china: 129, + russia: 65, + total: 325 + })); + this.push(new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2012`, + america: 135, + china: 115, + russia: 77, + total: 327 + })); + this.push(new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2016`, + america: 146, + china: 112, + russia: 88, + total: 346 + })); + } +} diff --git a/samples/charts/data-chart/chart-highlight-filter/src/app.component.html b/samples/charts/data-chart/chart-highlight-filter/src/app.component.html new file mode 100644 index 000000000..62627ec8e --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/src/app.component.html @@ -0,0 +1,48 @@ +
+
+ + + + +
+
+ + + + + + + + +
+
diff --git a/samples/charts/data-chart/chart-highlight-filter/src/app.component.scss b/samples/charts/data-chart/chart-highlight-filter/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/chart-highlight-filter/src/app.component.ts b/samples/charts/data-chart/chart-highlight-filter/src/app.component.ts new file mode 100644 index 000000000..2b048e31e --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/src/app.component.ts @@ -0,0 +1,64 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataChartCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule } from 'igniteui-angular-core'; +import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithTotals } from './OlympicMedalsTopCountriesWithTotals'; +import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent } from 'igniteui-angular-charts'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("highlightedValuesDisplayModeEditor", { static: true } ) + private highlightedValuesDisplayModeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("columnSeries1", { static: true } ) + private columnSeries1: IgxColumnSeriesComponent + private _olympicMedalsTopCountriesWithTotals: OlympicMedalsTopCountriesWithTotals = null; + public get olympicMedalsTopCountriesWithTotals(): OlympicMedalsTopCountriesWithTotals { + if (this._olympicMedalsTopCountriesWithTotals == null) + { + this._olympicMedalsTopCountriesWithTotals = new OlympicMedalsTopCountriesWithTotals(); + } + return this._olympicMedalsTopCountriesWithTotals; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + DataChartCoreDescriptionModule.register(context); + DataChartCategoryDescriptionModule.register(context); + DataChartInteractivityDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/chart-highlight-filter/src/app.module.ts b/samples/charts/data-chart/chart-highlight-filter/src/app.module.ts new file mode 100644 index 000000000..6cbdeaeab --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/src/app.module.ts @@ -0,0 +1,29 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartInteractivityModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartInteractivityModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.app.json b/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.base.json b/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.spec.json b/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.worker.json b/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/data-chart/chart-highlight-filter/src/environments/environment.prod.ts b/samples/charts/data-chart/chart-highlight-filter/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/chart-highlight-filter/src/environments/environment.ts b/samples/charts/data-chart/chart-highlight-filter/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/chart-highlight-filter/src/index.html b/samples/charts/data-chart/chart-highlight-filter/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/chart-highlight-filter/src/main.ts b/samples/charts/data-chart/chart-highlight-filter/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/chart-highlight-filter/src/polyfills.ts b/samples/charts/data-chart/chart-highlight-filter/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/chart-highlight-filter/src/styles.scss b/samples/charts/data-chart/chart-highlight-filter/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/chart-highlight-filter/src/typings.d.ts b/samples/charts/data-chart/chart-highlight-filter/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/chart-highlight-filter/tsconfig.json b/samples/charts/data-chart/chart-highlight-filter/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter/tslint.json b/samples/charts/data-chart/chart-highlight-filter/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} From 299032036b938166fa7363a26d816efdd61d52cb Mon Sep 17 00:00:00 2001 From: Borislav Traykov Date: Thu, 4 Jan 2024 10:50:42 +0200 Subject: [PATCH 025/154] Try using node 18 for compatibility with Angular 17 --- azure-pipelines/build-pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines/build-pipeline.yml b/azure-pipelines/build-pipeline.yml index 6f8033884..451a41f03 100644 --- a/azure-pipelines/build-pipeline.yml +++ b/azure-pipelines/build-pipeline.yml @@ -28,7 +28,7 @@ jobs: - task: NodeTool@0 inputs: versionSource: 'spec' - versionSpec: '16.x' + versionSpec: '18.x' - task: Npm@1 displayName: 'npm install' @@ -67,4 +67,4 @@ jobs: publishLocation: 'pipeline' # TODO Once the project can adhere to the IG Angular schematic, - # use it or use npx to call igniteui-cli to apply the Angular schematic (trial -> licensed) \ No newline at end of file + # use it or use npx to call igniteui-cli to apply the Angular schematic (trial -> licensed) From eb1a95fafb9d2bc717046ac41eeef6e9e7ccc95a Mon Sep 17 00:00:00 2001 From: Borislav Traykov Date: Thu, 4 Jan 2024 10:57:11 +0200 Subject: [PATCH 026/154] Add runtime-settable verbosity of npm steps --- azure-pipelines/build-pipeline.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/azure-pipelines/build-pipeline.yml b/azure-pipelines/build-pipeline.yml index 451a41f03..5a4b56a81 100644 --- a/azure-pipelines/build-pipeline.yml +++ b/azure-pipelines/build-pipeline.yml @@ -11,6 +11,12 @@ pr: none name: $(BuildDefinitionName)_$(Year:yyyy).$(Month).$(DayOfMonth)$(Rev:.r) +parameters: +- name: isVerbose + displayName: 'Get verbose output from steps - where configurable' + type: boolean + default: false + pool: name: BuildAgentOnPrem @@ -35,6 +41,7 @@ jobs: inputs: command: 'install' workingDir: '$(Build.SourcesDirectory)\browser' + verbose: ${{ parameters.isVerbose }} - task: PowerShell@2 displayName: 'Apply very special configuration' @@ -52,6 +59,7 @@ jobs: command: 'custom' workingDir: '$(Build.SourcesDirectory)\browser' customCommand: 'run build' + verbose: ${{ parameters.isVerbose }} - task: CopyFiles@2 inputs: From 90c2360a87bcdfa56201b4be6af53751d2af809d Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Fri, 5 Jan 2024 10:33:05 -0500 Subject: [PATCH 027/154] gen readme --- .../chart-highlight-filter/ReadMe.md | 50 +++++++++++++++++++ .../ReadMe.md | 50 +++++++++++++++++++ .../ReadMe.md | 50 +++++++++++++++++++ .../chart-highlight-filter/ReadMe.md | 50 +++++++++++++++++++ 4 files changed, 200 insertions(+) create mode 100644 samples/charts/category-chart/chart-highlight-filter/ReadMe.md create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/ReadMe.md create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/ReadMe.md create mode 100644 samples/charts/data-chart/chart-highlight-filter/ReadMe.md diff --git a/samples/charts/category-chart/chart-highlight-filter/ReadMe.md b/samples/charts/category-chart/chart-highlight-filter/ReadMe.md new file mode 100644 index 000000000..58a2a42ad --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/ReadMe.md @@ -0,0 +1,50 @@ + + + +This folder contains Angular application with example of Chart Highlight Filter feature using [CategoryChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +cd ./igniteui-angular-examples +cd ../samples/charts/category-chart/chart-highlight-filter +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/ReadMe.md b/samples/charts/data-chart/chart-highlight-filter-datasource/ReadMe.md new file mode 100644 index 000000000..118dad9f9 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/ReadMe.md @@ -0,0 +1,50 @@ + + + +This folder contains Angular application with example of Chart Highlight Filter Datasource feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +cd ./igniteui-angular-examples +cd ../samples/charts/data-chart/chart-highlight-filter-datasource +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/ReadMe.md b/samples/charts/data-chart/chart-highlight-filter-multiple-series/ReadMe.md new file mode 100644 index 000000000..a21af7c85 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/ReadMe.md @@ -0,0 +1,50 @@ + + + +This folder contains Angular application with example of Chart Highlight Filter Multiple Series feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +cd ./igniteui-angular-examples +cd ../samples/charts/data-chart/chart-highlight-filter-multiple-series +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/chart-highlight-filter/ReadMe.md b/samples/charts/data-chart/chart-highlight-filter/ReadMe.md new file mode 100644 index 000000000..328b16f9c --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/ReadMe.md @@ -0,0 +1,50 @@ + + + +This folder contains Angular application with example of Chart Highlight Filter feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +cd ./igniteui-angular-examples +cd ../samples/charts/data-chart/chart-highlight-filter +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). From dcc7bb859e3f24b8e0856b8edba5ed0296286dbc Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Fri, 5 Jan 2024 10:34:06 -0500 Subject: [PATCH 028/154] gen stats --- browser/src/assets/stats.json | 126 ++++++++++++++++++---------------- 1 file changed, 65 insertions(+), 61 deletions(-) diff --git a/browser/src/assets/stats.json b/browser/src/assets/stats.json index fa67616b7..ae9c3795e 100644 --- a/browser/src/assets/stats.json +++ b/browser/src/assets/stats.json @@ -1,6 +1,6 @@ [ - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-all" }, { "browser": true, "xplat": false, "path": "charts/category-chart/annotations" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-all" }, { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-callouts" }, { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-crosshairs" }, { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-custom" }, @@ -13,12 +13,13 @@ { "browser": false, "xplat": false, "path": "charts/category-chart/axis-gridlines" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-inverted" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-labels" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-options" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-locations" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-options" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-overlap" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-range" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-titles" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-tickmarks" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-titles" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/chart-highlight-filter" }, { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-single-source" }, { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-styling" }, @@ -70,41 +71,6 @@ { "browser": false, "xplat": false, "path": "charts/doughnut-chart/overview" }, { "browser": false, "xplat": false, "path": "charts/doughnut-chart/rings" }, { "browser": false, "xplat": false, "path": "charts/doughnut-chart/selection" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/annotations" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/axis-types" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-formatting-currency" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-styling-props" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-formatting-currency" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-styling-props" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/format-specifiers" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/high-frequency" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/high-volume" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-customization" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-types" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-data" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-feeds" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/panes" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/performance" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/scrollbars" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/stock-index-chart" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/styling" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/theming" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/time-based-data" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/titles" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-template" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-types" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/trendlines" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/volume-types" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/animation" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/explosion" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/legend" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/others" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/selection" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/annotations-custom" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-annotations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-annotations-corner-radius" }, @@ -120,6 +86,9 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-single-source" }, { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/callout-layer-styling" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/chart-highlight-filter" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/chart-highlight-filter-datasource" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/chart-highlight-filter-multiple-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/chart-navigation" }, { "browser": false, "xplat": false, "path": "charts/data-chart/chart-overview" }, { "browser": false, "xplat": false, "path": "charts/data-chart/chart-performance" }, @@ -220,8 +189,8 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-spline-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-shape-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-area-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-spline-area-series" }, @@ -233,6 +202,41 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-spline-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-spline-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/waterfall-chart" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/annotations" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/axis-types" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-formatting-currency" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-styling-props" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-formatting-currency" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-styling-props" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/format-specifiers" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/high-frequency" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/high-volume" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-customization" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-types" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-data" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-feeds" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/overview" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/panes" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/performance" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/scrollbars" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/stock-index-chart" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/styling" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/theming" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/time-based-data" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/titles" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-template" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-types" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/trendlines" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/volume-types" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/animation" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/explosion" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/legend" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/others" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/overview" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/selection" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/styling" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-area" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-column" }, { "browser": false, "xplat": false, "path": "charts/sparkline/display-lines" }, @@ -271,6 +275,27 @@ { "browser": false, "xplat": false, "path": "excel/spreadsheet/data-validation" }, { "browser": false, "xplat": false, "path": "excel/spreadsheet/hyperlinks" }, { "browser": false, "xplat": false, "path": "excel/spreadsheet/overview" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/animation" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/background" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/labels" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/measures" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/ranges" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/scale" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/tickmarks" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/animation" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/backing" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/labels" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/needle" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/ranges" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/scale" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/tickmarks" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/animation" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/backing" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/labels" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/needle" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/ranges" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/scale" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/tickmarks" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-csv" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-json-points" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-model" }, @@ -297,26 +322,5 @@ { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-density-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-symbol-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polygon-series" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polyline-series" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/animation" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/background" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/labels" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/measures" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/ranges" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/scale" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/tickmarks" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/animation" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/backing" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/labels" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/needle" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/ranges" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/scale" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/tickmarks" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/animation" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/backing" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/labels" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/needle" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/ranges" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/scale" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/tickmarks" } + { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polyline-series" } ] \ No newline at end of file From 8fccd7b1fff83003959b471b78d71539c4405989 Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Fri, 5 Jan 2024 10:42:56 -0500 Subject: [PATCH 029/154] fixed auto-gen of FormatSpecifiers --- .../category-chart/format-specifiers/src/app.component.html | 2 +- .../data-chart/format-specifiers/src/app.component.html | 2 +- .../financial-chart/format-specifiers/src/app.component.html | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/charts/category-chart/format-specifiers/src/app.component.html b/samples/charts/category-chart/format-specifiers/src/app.component.html index 47f4172f9..914d5ee45 100644 --- a/samples/charts/category-chart/format-specifiers/src/app.component.html +++ b/samples/charts/category-chart/format-specifiers/src/app.component.html @@ -22,7 +22,7 @@ dataToolTipValueFormatMode="Currency" dataToolTipValueFormatString="${0} Billion" yAxisLabelFormat="{0}B" - [yAxisLabelFormatSpecifiers]="NumberFormatSpecifier1"> + [yAxisLabelFormatSpecifiers]="numberFormatSpecifier1"> diff --git a/samples/charts/data-chart/format-specifiers/src/app.component.html b/samples/charts/data-chart/format-specifiers/src/app.component.html index a5e48b04f..8a048de82 100644 --- a/samples/charts/data-chart/format-specifiers/src/app.component.html +++ b/samples/charts/data-chart/format-specifiers/src/app.component.html @@ -32,7 +32,7 @@ title="Billions of U.S. Dollars" labelFormat="{0}B" abbreviateLargeNumbers="false" - [labelFormatSpecifiers]="NumberFormatSpecifier1"> + [labelFormatSpecifiers]="numberFormatSpecifier1"> + [xAxisLabelFormatSpecifiers]="dateTimeFormatSpecifier1"> From 27d71fbef536b46aeb8516935d180dddf8070f5e Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Fri, 5 Jan 2024 10:43:36 -0500 Subject: [PATCH 030/154] init arrays in sample info in gulpscript --- browser/scripts/browser.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 17f962346..2a8fbb8cd 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -163,6 +163,8 @@ function getSampleInfo(samplePath, sampleCallback, sampleFile) { info.SourceModuleTS = ""; // e.g. ./samples/charts/data-chart/axis-sharing/src/app.module.ts info.SourceDataFiles = []; // e.g. ./samples/charts/data-chart/axis-sharing/src/SampleFinancialData.ts info.SourceFiles = []; // all above + info.ImportsLines = []; + info.ImportsModules = []; // getting path to files in a given sample's source path: gulp.src([ From 56d62572725ae73d8bd36b56855d27d6d046b0ea Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Fri, 5 Jan 2024 11:15:03 -0500 Subject: [PATCH 031/154] mdd-redo-17.2.0-beta.0 mdd-redo-17.2.0-beta.0 --- browser/package.json | 20 +- browser/scripts/browser.js | 22 +- browser/src/assets/stats.json | 200 +++++++++--------- browser/src/browser-info.json | 20 +- .../annotations-all/package.json | 10 +- .../annotations-callouts/package.json | 10 +- .../annotations-crosshairs/package.json | 10 +- .../annotations-custom/package.json | 10 +- .../annotations-final-value/package.json | 10 +- .../annotations-highlighting/package.json | 10 +- .../category-chart/annotations/package.json | 4 +- .../area-chart-multiple-sources/package.json | 4 +- .../area-chart-single-source/package.json | 4 +- .../area-chart-styling/package.json | 4 +- .../category-chart/axis-gap/package.json | 10 +- .../axis-gridlines/package.json | 10 +- .../category-chart/axis-inverted/package.json | 10 +- .../category-chart/axis-labels/package.json | 10 +- .../axis-locations/package.json | 10 +- .../category-chart/axis-options/package.json | 4 +- .../category-chart/axis-overlap/package.json | 10 +- .../category-chart/axis-range/package.json | 10 +- .../axis-tickmarks/package.json | 10 +- .../category-chart/axis-titles/package.json | 4 +- .../chart-highlight-filter/ReadMe.md | 50 +++++ .../chart-highlight-filter/package.json | 10 +- .../package.json | 4 +- .../column-chart-single-source/package.json | 4 +- .../column-chart-styling/package.json | 4 +- .../package.json | 4 +- .../column-chart-with-tooltips/package.json | 10 +- .../custom-selection/package.json | 4 +- .../data-aggregations/package.json | 10 +- .../package.json | 4 +- .../category-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-positioning/package.json | 10 +- .../category-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 8 +- .../format-specifiers/src/app.component.html | 2 +- .../high-frequency/package.json | 4 +- .../category-chart/high-volume/package.json | 4 +- .../category-chart/highlighting/package.json | 4 +- .../line-chart-multiple-sources/package.json | 4 +- .../line-chart-single-source/package.json | 4 +- .../line-chart-styling/package.json | 4 +- .../line-chart-with-animations/package.json | 4 +- .../line-chart-with-annotations/package.json | 4 +- .../line-chart-with-legend/package.json | 4 +- .../marker-options/package.json | 10 +- .../marker-templates/package.json | 4 +- .../category-chart/overview/package.json | 4 +- .../point-chart-multiple-sources/package.json | 4 +- .../point-chart-single-source/package.json | 4 +- .../point-chart-styling/package.json | 4 +- .../spline-area-multiple-sources/package.json | 4 +- .../spline-area-single-source/package.json | 4 +- .../spline-area-styling/package.json | 4 +- .../spline-multiple-sources/package.json | 4 +- .../spline-single-source/package.json | 4 +- .../spline-styling/package.json | 4 +- .../category-chart/stack-columns/package.json | 4 +- .../step-area-multiple-sources/package.json | 4 +- .../step-area-single-source/package.json | 4 +- .../step-area-styling/package.json | 4 +- .../step-line-multiple-sources/package.json | 4 +- .../step-line-single-source/package.json | 4 +- .../step-line-styling/package.json | 4 +- .../tooltip-template/package.json | 4 +- .../category-chart/tooltip-types/package.json | 4 +- .../category-chart/trendline/package.json | 4 +- .../category-chart/value-lines/package.json | 10 +- .../annotations-custom/package.json | 4 +- .../package.json | 4 +- .../data-chart/axis-annotations/package.json | 4 +- .../data-chart/axis-crossing/package.json | 4 +- .../axis-label-rotation/package.json | 10 +- .../data-chart/axis-locations/package.json | 4 +- .../data-chart/axis-min-max-gap/package.json | 4 +- .../data-chart/axis-settings/package.json | 4 +- .../data-chart/axis-sharing/package.json | 4 +- .../charts/data-chart/axis-types/package.json | 4 +- .../bar-chart-multiple-sources/package.json | 4 +- .../bar-chart-overlapping/package.json | 4 +- .../bar-chart-single-source/package.json | 4 +- .../data-chart/bar-chart-styling/package.json | 4 +- .../callout-layer-styling/package.json | 4 +- .../ReadMe.md | 50 +++++ .../package.json | 10 +- .../ReadMe.md | 50 +++++ .../package.json | 10 +- .../chart-highlight-filter/ReadMe.md | 50 +++++ .../chart-highlight-filter/package.json | 10 +- .../data-chart/chart-navigation/package.json | 4 +- .../data-chart/chart-overview/package.json | 4 +- .../data-chart/chart-performance/package.json | 4 +- .../chart-synchronization/package.json | 4 +- .../data-chart/chart-titles/package.json | 4 +- .../column-chart-styling/package.json | 4 +- .../data-chart/composite-chart/package.json | 4 +- .../crosshair-layer-styling/package.json | 4 +- .../custom-drawing-annotations/package.json | 8 +- .../custom-editing-data/package.json | 4 +- .../data-chart/dash-array-axes/package.json | 4 +- .../data-chart/dash-array-series/package.json | 4 +- .../dash-array-tickmarks/package.json | 4 +- .../dash-array-trendline/package.json | 4 +- .../data-chart/data-legend/package.json | 4 +- .../data-chart/data-tooltip/package.json | 4 +- .../final-value-layer-styling/package.json | 4 +- .../financial-price-series/package.json | 4 +- .../data-chart/format-specifiers/package.json | 4 +- .../format-specifiers/src/app.component.html | 2 +- .../charts/data-chart/legends/package.json | 4 +- .../polar-area-chart-styling/package.json | 4 +- .../data-chart/polar-area-chart/package.json | 4 +- .../data-chart/polar-chart-types/package.json | 4 +- .../data-chart/polar-line-chart/package.json | 4 +- .../polar-scatter-chart/package.json | 4 +- .../polar-spline-area-chart/package.json | 4 +- .../polar-spline-chart/package.json | 4 +- .../radial-area-chart-styling/package.json | 4 +- .../data-chart/radial-area-chart/package.json | 4 +- .../radial-chart-types/package.json | 4 +- .../radial-column-chart/package.json | 4 +- .../data-chart/radial-line-chart/package.json | 4 +- .../data-chart/radial-pie-chart/package.json | 4 +- .../data-chart/range-area-chart/package.json | 4 +- .../range-column-chart/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../scatter-bubble-chart-styling/package.json | 4 +- .../scatter-line-chart/package.json | 4 +- .../scatter-point-chart/package.json | 4 +- .../scatter-spline-chart/package.json | 4 +- .../data-chart/series-animations/package.json | 4 +- .../series-annotations/package.json | 4 +- .../series-highlighting/package.json | 4 +- .../series-marker-template/package.json | 4 +- .../data-chart/series-markers/package.json | 4 +- .../data-chart/series-tooltips/package.json | 4 +- .../data-chart/series-trendlines/package.json | 4 +- .../series-value-overlay/package.json | 4 +- .../stacked-100-area-chart/package.json | 4 +- .../stacked-100-bar-chart/package.json | 4 +- .../stacked-100-column-chart/package.json | 4 +- .../stacked-100-line-chart/package.json | 4 +- .../package.json | 4 +- .../stacked-100-spline-chart/package.json | 4 +- .../stacked-area-chart/package.json | 4 +- .../data-chart/stacked-bar-chart/package.json | 4 +- .../stacked-chart-types/package.json | 4 +- .../stacked-column-chart/package.json | 4 +- .../stacked-line-chart/package.json | 4 +- .../stacked-spline-area-chart/package.json | 4 +- .../stacked-spline-chart/package.json | 4 +- .../data-chart/tooltip-template/package.json | 4 +- .../data-chart/transition-event/package.json | 10 +- .../type-category-area-series/package.json | 4 +- .../type-category-bar-series/package.json | 4 +- .../type-category-column-series/package.json | 4 +- .../type-category-line-series/package.json | 4 +- .../type-category-point-series/package.json | 4 +- .../type-category-series/package.json | 4 +- .../package.json | 4 +- .../type-category-spline-series/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../type-financial-ohlc-series/package.json | 4 +- .../type-financial-overlays/package.json | 4 +- .../type-financial-series/package.json | 4 +- .../type-radial-area-series/package.json | 4 +- .../type-radial-column-series/package.json | 4 +- .../type-radial-line-series/package.json | 4 +- .../type-radial-pie-series/package.json | 4 +- .../type-range-area-series/package.json | 4 +- .../type-range-column-series/package.json | 4 +- .../data-chart/type-range-series/package.json | 4 +- .../type-scatter-area-series/package.json | 4 +- .../type-scatter-bubble-series/package.json | 4 +- .../type-scatter-contour-series/package.json | 4 +- .../type-scatter-hd-series/package.json | 4 +- .../type-scatter-line-series/package.json | 4 +- .../type-scatter-point-series/package.json | 4 +- .../type-scatter-polygon-series/package.json | 4 +- .../type-scatter-polyline-series/package.json | 4 +- .../type-scatter-series/package.json | 4 +- .../type-scatter-spline-series/package.json | 4 +- .../data-chart/type-shape-series/package.json | 4 +- .../type-stacked-100-area-series/package.json | 4 +- .../type-stacked-100-bar-series/package.json | 4 +- .../package.json | 4 +- .../type-stacked-100-line-series/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../type-stacked-area-series/package.json | 4 +- .../type-stacked-bar-series/package.json | 4 +- .../type-stacked-column-series/package.json | 4 +- .../type-stacked-line-series/package.json | 4 +- .../package.json | 4 +- .../type-stacked-spline-series/package.json | 4 +- .../data-chart/waterfall-chart/package.json | 4 +- .../doughnut-chart/animation/package.json | 4 +- .../doughnut-chart/explosion/package.json | 4 +- .../charts/doughnut-chart/legend/package.json | 4 +- .../doughnut-chart/overview/package.json | 4 +- .../charts/doughnut-chart/rings/package.json | 4 +- .../doughnut-chart/selection/package.json | 4 +- .../financial-chart/annotations/package.json | 4 +- .../financial-chart/axis-types/package.json | 4 +- .../package.json | 4 +- .../data-legend-styling-props/package.json | 4 +- .../financial-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-styling-props/package.json | 4 +- .../financial-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 4 +- .../format-specifiers/src/app.component.html | 4 +- .../high-frequency/package.json | 4 +- .../financial-chart/high-volume/package.json | 4 +- .../indicator-customization/package.json | 4 +- .../indicator-types/package.json | 4 +- .../multiple-data/package.json | 4 +- .../multiple-feeds/package.json | 4 +- .../financial-chart/overview/package.json | 4 +- .../charts/financial-chart/panes/package.json | 4 +- .../financial-chart/performance/package.json | 4 +- .../financial-chart/scrollbars/package.json | 4 +- .../stock-index-chart/package.json | 4 +- .../financial-chart/styling/package.json | 4 +- .../financial-chart/theming/package.json | 4 +- .../time-based-data/package.json | 4 +- .../financial-chart/titles/package.json | 4 +- .../tooltip-template/package.json | 4 +- .../tooltip-types/package.json | 4 +- .../financial-chart/trendlines/package.json | 4 +- .../financial-chart/volume-types/package.json | 4 +- .../charts/pie-chart/animation/package.json | 4 +- .../charts/pie-chart/explosion/package.json | 4 +- samples/charts/pie-chart/legend/package.json | 4 +- samples/charts/pie-chart/others/package.json | 4 +- .../charts/pie-chart/overview/package.json | 4 +- .../charts/pie-chart/selection/package.json | 4 +- samples/charts/pie-chart/styling/package.json | 4 +- .../sparkline/display-area/package.json | 4 +- .../sparkline/display-column/package.json | 4 +- .../sparkline/display-lines/package.json | 8 +- .../sparkline/display-types/package.json | 4 +- .../sparkline/display-winloss/package.json | 4 +- samples/charts/sparkline/grid/package.json | 4 +- samples/charts/sparkline/markers/package.json | 10 +- .../sparkline/normal-range/package.json | 10 +- .../charts/sparkline/trendlines/package.json | 10 +- .../sparkline/unknown-values/package.json | 10 +- .../package.json | 8 +- .../actions-built-in-data-chart/package.json | 8 +- .../charts/toolbar/custom-tool/package.json | 6 +- .../package.json | 8 +- .../package.json | 8 +- samples/charts/toolbar/theming/package.json | 10 +- samples/charts/tree-map/events/package.json | 4 +- samples/charts/tree-map/layout/package.json | 10 +- samples/charts/tree-map/overview/package.json | 4 +- samples/charts/tree-map/styling/package.json | 4 +- .../charts/zoomslider/overview/package.json | 4 +- .../operations-on-workbooks/package.json | 4 +- .../operations-on-worksheets/package.json | 4 +- .../excel/excel-library/overview/package.json | 4 +- .../working-with-cells/package.json | 4 +- .../working-with-charts/package.json | 6 +- .../working-with-sparklines/package.json | 6 +- .../working-with-tables/package.json | 8 +- .../excel/spreadsheet/activation/package.json | 6 +- .../spreadsheet/adapter-chart/package.json | 10 +- .../spreadsheet/adapter-combo/package.json | 10 +- .../excel/spreadsheet/clipboard/package.json | 6 +- .../excel/spreadsheet/commands/package.json | 6 +- .../conditional-formatting/package.json | 6 +- .../spreadsheet/config-options/package.json | 6 +- .../spreadsheet/data-validation/package.json | 6 +- .../excel/spreadsheet/hyperlinks/package.json | 6 +- .../excel/spreadsheet/overview/package.json | 6 +- .../bullet-graph/animation/package.json | 4 +- .../bullet-graph/background/package.json | 4 +- .../gauges/bullet-graph/labels/package.json | 4 +- .../gauges/bullet-graph/measures/package.json | 4 +- .../gauges/bullet-graph/ranges/package.json | 4 +- .../gauges/bullet-graph/scale/package.json | 4 +- .../bullet-graph/tickmarks/package.json | 4 +- .../linear-gauge/animation/package.json | 4 +- .../gauges/linear-gauge/backing/package.json | 4 +- .../gauges/linear-gauge/labels/package.json | 4 +- .../gauges/linear-gauge/needle/package.json | 4 +- .../gauges/linear-gauge/ranges/package.json | 4 +- .../gauges/linear-gauge/scale/package.json | 4 +- .../linear-gauge/tickmarks/package.json | 4 +- .../radial-gauge/animation/package.json | 4 +- .../gauges/radial-gauge/backing/package.json | 4 +- .../gauges/radial-gauge/labels/package.json | 4 +- .../gauges/radial-gauge/needle/package.json | 4 +- .../gauges/radial-gauge/ranges/package.json | 4 +- .../gauges/radial-gauge/scale/package.json | 4 +- .../radial-gauge/tickmarks/package.json | 4 +- .../geo-map/binding-data-csv/package.json | 6 +- .../binding-data-json-points/package.json | 6 +- .../geo-map/binding-data-model/package.json | 6 +- .../binding-multiple-shapes/package.json | 6 +- .../binding-multiple-sources/package.json | 6 +- .../geo-map/binding-shp-points/package.json | 6 +- .../geo-map/binding-shp-polygons/package.json | 6 +- .../binding-shp-polylines/package.json | 6 +- .../maps/geo-map/custom-tooltips/package.json | 6 +- .../geo-map/display-bing-imagery/package.json | 6 +- .../geo-map/display-esri-imagery/package.json | 6 +- .../geo-map/display-heat-imagery/package.json | 6 +- .../geo-map/display-osm-imagery/package.json | 6 +- .../maps/geo-map/marker-layouts/package.json | 6 +- .../maps/geo-map/marker-template/package.json | 6 +- samples/maps/geo-map/marker-type/package.json | 6 +- samples/maps/geo-map/navigation/package.json | 6 +- samples/maps/geo-map/overview/package.json | 6 +- .../maps/geo-map/shape-styling/package.json | 6 +- .../geo-map/triangulating-data/package.json | 6 +- .../type-scatter-area-series/package.json | 6 +- .../type-scatter-bubble-series/package.json | 6 +- .../type-scatter-contour-series/package.json | 6 +- .../type-scatter-density-series/package.json | 6 +- .../type-scatter-symbol-series/package.json | 6 +- .../type-shape-polygon-series/package.json | 6 +- .../type-shape-polyline-series/package.json | 6 +- 335 files changed, 1138 insertions(+), 934 deletions(-) create mode 100644 samples/charts/category-chart/chart-highlight-filter/ReadMe.md create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/ReadMe.md create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/ReadMe.md create mode 100644 samples/charts/data-chart/chart-highlight-filter/ReadMe.md diff --git a/browser/package.json b/browser/package.json index 5e453da66..7121ca6b9 100644 --- a/browser/package.json +++ b/browser/package.json @@ -39,17 +39,17 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", - "igniteui-angular-gauges": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-angular-maps": "17.0.0", - "igniteui-angular-spreadsheet": "17.0.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-spreadsheet": "17.2.0-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.2.0-beta.0", "igniteui-theming": "3.3.1", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "immediate": "3.2.3", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 17f962346..233e8575e 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1063,18 +1063,18 @@ function updateIG(cb) { // { name: "igniteui-angular-charts", version: "14.1.0" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { name: "igniteui-angular-core" , version: "17.0.0" }, - { name: "igniteui-angular-charts" , version: "17.0.0" }, - { name: "igniteui-angular-excel" , version: "17.0.0" }, - { name: "igniteui-angular-gauges" , version: "17.0.0" }, - { name: "igniteui-angular-inputs" , version: "17.0.0" }, - { name: "igniteui-angular-layouts" , version: "17.0.0" }, - { name: "igniteui-angular-maps" , version: "17.0.0" }, - { name: "igniteui-angular-spreadsheet-chart-adapter", version: "17.0.0" }, - { name: "igniteui-angular-spreadsheet" , version: "17.0.0" }, - { name: "igniteui-angular-datasources" , version: "17.0.0" }, + { name: "igniteui-angular-core" , version: "17.2.0-beta.0" }, + { name: "igniteui-angular-charts" , version: "17.2.0-beta.0" }, + { name: "igniteui-angular-excel" , version: "17.2.0-beta.0" }, + { name: "igniteui-angular-gauges" , version: "17.2.0-beta.0" }, + { name: "igniteui-angular-inputs" , version: "17.2.0-beta.0" }, + { name: "igniteui-angular-layouts" , version: "17.2.0-beta.0" }, + { name: "igniteui-angular-maps" , version: "17.2.0-beta.0" }, + { name: "igniteui-angular-spreadsheet-chart-adapter", version: "17.2.0-beta.0" }, + { name: "igniteui-angular-spreadsheet" , version: "17.2.0-beta.0" }, + { name: "igniteui-angular-datasources" , version: "17.2.0-beta.0" }, // these IG packages are sometimes updated: - { name: "igniteui-webcomponents", version: "4.5.0" }, + { name: "igniteui-webcomponents", version: "4.6.0" }, { name: "igniteui-theming", version: "3.3.1" }, { name: "igniteui-angular", version: "17.0.0" }, { name: "@angular/animations", version: "17.0.0" }, diff --git a/browser/src/assets/stats.json b/browser/src/assets/stats.json index fa67616b7..95a3d86a5 100644 --- a/browser/src/assets/stats.json +++ b/browser/src/assets/stats.json @@ -1,37 +1,38 @@ [ { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-all" }, - { "browser": true, "xplat": false, "path": "charts/category-chart/annotations" }, { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-callouts" }, { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-crosshairs" }, { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-custom" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/annotations" }, { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-final-value" }, { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-highlighting" }, { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-gap" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-gridlines" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-inverted" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-locations" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-labels" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-options" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-locations" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-overlap" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-range" }, { "browser": false, "xplat": false, "path": "charts/category-chart/axis-titles" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-tickmarks" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/chart-highlight-filter" }, { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/axis-tickmarks" }, { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-with-highlighting" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-with-tooltips" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/custom-selection" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/category-chart/data-aggregations" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-legend" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/custom-selection" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-with-tooltips" }, { "browser": false, "xplat": false, "path": "charts/category-chart/data-legend-formatting-decimals" }, { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/data-legend" }, { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip-formatting-decimals" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip-positioning" }, { "browser": false, "xplat": false, "path": "charts/category-chart/format-specifiers" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip-positioning" }, { "browser": false, "xplat": false, "path": "charts/category-chart/high-frequency" }, { "browser": false, "xplat": false, "path": "charts/category-chart/high-volume" }, { "browser": false, "xplat": false, "path": "charts/category-chart/highlighting" }, @@ -41,14 +42,14 @@ { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-animations" }, { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-annotations" }, { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-legend" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/marker-options" }, { "browser": false, "xplat": false, "path": "charts/category-chart/marker-templates" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/marker-options" }, { "browser": false, "xplat": false, "path": "charts/category-chart/overview" }, { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-single-source" }, { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-single-source" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-styling" }, { "browser": false, "xplat": false, "path": "charts/category-chart/spline-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/category-chart/spline-single-source" }, @@ -56,32 +57,26 @@ { "browser": false, "xplat": false, "path": "charts/category-chart/stack-columns" }, { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-styling" }, { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-multiple-sources" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-styling" }, { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-styling" }, { "browser": false, "xplat": false, "path": "charts/category-chart/tooltip-template" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-styling" }, { "browser": false, "xplat": false, "path": "charts/category-chart/tooltip-types" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/trendline" }, { "browser": false, "xplat": false, "path": "charts/category-chart/value-lines" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/animation" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/explosion" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/legend" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/rings" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/selection" }, + { "browser": false, "xplat": false, "path": "charts/category-chart/trendline" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/annotations" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/axis-types" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-formatting-currency" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-styling-props" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-formatting-currency" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-styling-props" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-formatting-currency" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-formatting-currency" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/format-specifiers" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/high-frequency" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/high-volume" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-customization" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/high-frequency" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-types" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-data" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-feeds" }, @@ -89,44 +84,40 @@ { "browser": false, "xplat": false, "path": "charts/financial-chart/panes" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/performance" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/scrollbars" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/stock-index-chart" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/styling" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/stock-index-chart" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/theming" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/time-based-data" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/titles" }, + { "browser": false, "xplat": false, "path": "charts/financial-chart/time-based-data" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-template" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-types" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/trendlines" }, { "browser": false, "xplat": false, "path": "charts/financial-chart/volume-types" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/animation" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/explosion" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/legend" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/others" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/selection" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/styling" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/annotations-custom" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-annotations" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/annotations-custom" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-annotations-corner-radius" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-crossing" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-label-rotation" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/axis-crossing" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-locations" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-min-max-gap" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-settings" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/axis-min-max-gap" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-sharing" }, { "browser": false, "xplat": false, "path": "charts/data-chart/axis-types" }, { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-multiple-sources" }, { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-overlapping" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-single-source" }, { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-styling" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-single-source" }, { "browser": false, "xplat": false, "path": "charts/data-chart/callout-layer-styling" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/chart-highlight-filter-datasource" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/chart-highlight-filter" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/chart-highlight-filter-multiple-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/chart-navigation" }, { "browser": false, "xplat": false, "path": "charts/data-chart/chart-overview" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/chart-performance" }, { "browser": false, "xplat": false, "path": "charts/data-chart/chart-synchronization" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/chart-performance" }, { "browser": false, "xplat": false, "path": "charts/data-chart/chart-titles" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/column-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/composite-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/column-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/crosshair-layer-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/custom-drawing-annotations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/custom-editing-data" }, @@ -136,15 +127,15 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-trendline" }, { "browser": false, "xplat": false, "path": "charts/data-chart/data-legend" }, { "browser": false, "xplat": false, "path": "charts/data-chart/data-tooltip" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/final-value-layer-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/financial-price-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/final-value-layer-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/format-specifiers" }, { "browser": false, "xplat": false, "path": "charts/data-chart/legends" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-area-chart-styling" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-chart-types" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/polar-line-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-scatter-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/polar-line-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-spline-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/polar-spline-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-area-chart" }, @@ -153,24 +144,24 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/radial-column-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-line-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/radial-pie-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/range-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/range-column-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/range-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-bubble-chart-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-bubble-chart-single-source" }, { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-bubble-chart-styling" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-bubble-chart-single-source" }, { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-line-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-point-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-spline-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-animations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-annotations" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/series-animations" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-highlighting" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-marker-template" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-markers" }, { "browser": false, "xplat": false, "path": "charts/data-chart/series-tooltips" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-trendlines" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-value-overlay" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/series-marker-template" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-area-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/series-trendlines" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-bar-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/series-value-overlay" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-column-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-line-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-spline-area-chart" }, @@ -178,42 +169,42 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-bar-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-chart-types" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-column-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-line-chart" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-column-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-spline-area-chart" }, { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-spline-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/tooltip-template" }, { "browser": false, "xplat": false, "path": "charts/data-chart/transition-event" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-line-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/tooltip-template" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-point-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-spline-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-spline-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-step-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-step-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-waterfall-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-area-indicators" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-step-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-candlestick-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-column-indicators" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-line-indicators" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-ohlc-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-overlays" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-column-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-pie-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-area-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-column-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-bubble-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-contour-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-hd-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-line-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-hd-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-point-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-polygon-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-polyline-series" }, @@ -223,8 +214,8 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-bar-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-column-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-spline-area-series" }, + { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-line-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-spline-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-bar-series" }, @@ -233,90 +224,103 @@ { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-spline-area-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-spline-series" }, { "browser": false, "xplat": false, "path": "charts/data-chart/waterfall-chart" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-area" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-column" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-lines" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-types" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-winloss" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/grid" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/markers" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/normal-range" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/trendlines" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/unknown-values" }, + { "browser": true, "xplat": false, "path": "charts/doughnut-chart/animation" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/explosion" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/legend" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/overview" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/selection" }, + { "browser": false, "xplat": false, "path": "charts/doughnut-chart/rings" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/animation" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/legend" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/explosion" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/others" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/overview" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/selection" }, { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-category-chart" }, + { "browser": false, "xplat": false, "path": "charts/pie-chart/styling" }, { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-data-chart" }, { "browser": false, "xplat": false, "path": "charts/toolbar/custom-tool" }, { "browser": false, "xplat": false, "path": "charts/toolbar/layout-actions-for-data-chart" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/layout-in-vertical-orientation" }, { "browser": false, "xplat": false, "path": "charts/toolbar/theming" }, + { "browser": false, "xplat": false, "path": "charts/toolbar/layout-in-vertical-orientation" }, { "browser": false, "xplat": false, "path": "charts/tree-map/events" }, { "browser": false, "xplat": false, "path": "charts/tree-map/layout" }, { "browser": false, "xplat": false, "path": "charts/tree-map/overview" }, { "browser": false, "xplat": false, "path": "charts/tree-map/styling" }, - { "browser": false, "xplat": false, "path": "charts/zoomslider/overview" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-workbooks" }, { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-worksheets" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-workbooks" }, { "browser": false, "xplat": false, "path": "excel/excel-library/overview" }, { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-cells" }, { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-charts" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-sparklines" }, { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-tables" }, + { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-sparklines" }, { "browser": false, "xplat": false, "path": "excel/spreadsheet/activation" }, { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-chart" }, { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-combo" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/clipboard" }, { "browser": false, "xplat": false, "path": "excel/spreadsheet/commands" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/clipboard" }, { "browser": false, "xplat": false, "path": "excel/spreadsheet/conditional-formatting" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/config-options" }, { "browser": false, "xplat": false, "path": "excel/spreadsheet/data-validation" }, + { "browser": false, "xplat": false, "path": "excel/spreadsheet/config-options" }, { "browser": false, "xplat": false, "path": "excel/spreadsheet/hyperlinks" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/animation" }, { "browser": false, "xplat": false, "path": "excel/spreadsheet/overview" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/background" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/measures" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/labels" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/ranges" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/tickmarks" }, + { "browser": false, "xplat": false, "path": "gauges/bullet-graph/scale" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/animation" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/backing" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/labels" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/needle" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/ranges" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/tickmarks" }, + { "browser": false, "xplat": false, "path": "gauges/radial-gauge/scale" }, + { "browser": false, "xplat": false, "path": "charts/sparkline/display-column" }, + { "browser": false, "xplat": false, "path": "charts/sparkline/display-area" }, + { "browser": false, "xplat": false, "path": "charts/sparkline/display-lines" }, + { "browser": false, "xplat": false, "path": "charts/sparkline/display-types" }, + { "browser": false, "xplat": false, "path": "charts/sparkline/display-winloss" }, + { "browser": false, "xplat": false, "path": "charts/sparkline/grid" }, + { "browser": false, "xplat": false, "path": "charts/sparkline/markers" }, + { "browser": false, "xplat": false, "path": "charts/sparkline/normal-range" }, + { "browser": false, "xplat": false, "path": "charts/sparkline/unknown-values" }, + { "browser": false, "xplat": false, "path": "charts/zoomslider/overview" }, + { "browser": false, "xplat": false, "path": "charts/sparkline/trendlines" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/animation" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/backing" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/labels" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/needle" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/scale" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/ranges" }, + { "browser": false, "xplat": false, "path": "gauges/linear-gauge/tickmarks" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-csv" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-json-points" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-model" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-multiple-shapes" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-model" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-multiple-sources" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-points" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-polygons" }, { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-polylines" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-polygons" }, { "browser": false, "xplat": false, "path": "maps/geo-map/custom-tooltips" }, { "browser": false, "xplat": false, "path": "maps/geo-map/display-bing-imagery" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-points" }, { "browser": false, "xplat": false, "path": "maps/geo-map/display-esri-imagery" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/display-heat-imagery" }, { "browser": false, "xplat": false, "path": "maps/geo-map/display-osm-imagery" }, { "browser": false, "xplat": false, "path": "maps/geo-map/marker-layouts" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/display-heat-imagery" }, { "browser": false, "xplat": false, "path": "maps/geo-map/marker-template" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/marker-type" }, { "browser": false, "xplat": false, "path": "maps/geo-map/navigation" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/marker-type" }, { "browser": false, "xplat": false, "path": "maps/geo-map/overview" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/shape-styling" }, { "browser": false, "xplat": false, "path": "maps/geo-map/triangulating-data" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/shape-styling" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-area-series" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-bubble-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-contour-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-density-series" }, + { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-bubble-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-symbol-series" }, { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polygon-series" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polyline-series" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/animation" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/background" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/labels" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/measures" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/ranges" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/scale" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/tickmarks" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/animation" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/backing" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/labels" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/needle" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/ranges" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/scale" }, - { "browser": false, "xplat": false, "path": "gauges/linear-gauge/tickmarks" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/animation" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/backing" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/labels" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/needle" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/ranges" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/scale" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/tickmarks" } + { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polyline-series" } ] \ No newline at end of file diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index 0aa40a84e..d385fcd86 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,14 +1,14 @@ [ {"ver":"17.0.0","name":"igniteui-angular"}, -{"ver":"17.0.0","name":"igniteui-angular-charts"}, -{"ver":"17.0.0","name":"igniteui-angular-core"}, -{"ver":"17.0.0","name":"igniteui-angular-excel"}, -{"ver":"17.0.0","name":"igniteui-angular-gauges"}, -{"ver":"17.0.0","name":"igniteui-angular-inputs"}, -{"ver":"17.0.0","name":"igniteui-angular-layouts"}, -{"ver":"17.0.0","name":"igniteui-angular-maps"}, -{"ver":"17.0.0","name":"igniteui-angular-spreadsheet"}, -{"ver":"17.0.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"17.2.0-beta.0","name":"igniteui-angular-charts"}, +{"ver":"17.2.0-beta.0","name":"igniteui-angular-core"}, +{"ver":"17.2.0-beta.0","name":"igniteui-angular-excel"}, +{"ver":"17.2.0-beta.0","name":"igniteui-angular-gauges"}, +{"ver":"17.2.0-beta.0","name":"igniteui-angular-inputs"}, +{"ver":"17.2.0-beta.0","name":"igniteui-angular-layouts"}, +{"ver":"17.2.0-beta.0","name":"igniteui-angular-maps"}, +{"ver":"17.2.0-beta.0","name":"igniteui-angular-spreadsheet"}, +{"ver":"17.2.0-beta.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, {"ver":"3.3.1","name":"igniteui-theming"}, -{"ver":"4.5.0","name":"igniteui-webcomponents"} +{"ver":"4.6.0","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/chart-highlight-filter/ReadMe.md b/samples/charts/category-chart/chart-highlight-filter/ReadMe.md new file mode 100644 index 000000000..58a2a42ad --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/ReadMe.md @@ -0,0 +1,50 @@ + + + +This folder contains Angular application with example of Chart Highlight Filter feature using [CategoryChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +cd ./igniteui-angular-examples +cd ../samples/charts/category-chart/chart-highlight-filter +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index e27d2007a..27ca26e48 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/format-specifiers/src/app.component.html b/samples/charts/category-chart/format-specifiers/src/app.component.html index 47f4172f9..914d5ee45 100644 --- a/samples/charts/category-chart/format-specifiers/src/app.component.html +++ b/samples/charts/category-chart/format-specifiers/src/app.component.html @@ -22,7 +22,7 @@ dataToolTipValueFormatMode="Currency" dataToolTipValueFormatString="${0} Billion" yAxisLabelFormat="{0}B" - [yAxisLabelFormatSpecifiers]="NumberFormatSpecifier1"> + [yAxisLabelFormatSpecifiers]="numberFormatSpecifier1"> diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 84991650c..964d01ceb 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 84991650c..964d01ceb 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/ReadMe.md b/samples/charts/data-chart/chart-highlight-filter-datasource/ReadMe.md new file mode 100644 index 000000000..118dad9f9 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/ReadMe.md @@ -0,0 +1,50 @@ + + + +This folder contains Angular application with example of Chart Highlight Filter Datasource feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +cd ./igniteui-angular-examples +cd ../samples/charts/data-chart/chart-highlight-filter-datasource +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/ReadMe.md b/samples/charts/data-chart/chart-highlight-filter-multiple-series/ReadMe.md new file mode 100644 index 000000000..a21af7c85 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/ReadMe.md @@ -0,0 +1,50 @@ + + + +This folder contains Angular application with example of Chart Highlight Filter Multiple Series feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +cd ./igniteui-angular-examples +cd ../samples/charts/data-chart/chart-highlight-filter-multiple-series +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter/ReadMe.md b/samples/charts/data-chart/chart-highlight-filter/ReadMe.md new file mode 100644 index 000000000..328b16f9c --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/ReadMe.md @@ -0,0 +1,50 @@ + + + +This folder contains Angular application with example of Chart Highlight Filter feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +cd ./igniteui-angular-examples +cd ../samples/charts/data-chart/chart-highlight-filter +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index e09563afd..7201eda09 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/format-specifiers/src/app.component.html b/samples/charts/data-chart/format-specifiers/src/app.component.html index a5e48b04f..8a048de82 100644 --- a/samples/charts/data-chart/format-specifiers/src/app.component.html +++ b/samples/charts/data-chart/format-specifiers/src/app.component.html @@ -32,7 +32,7 @@ title="Billions of U.S. Dollars" labelFormat="{0}B" abbreviateLargeNumbers="false" - [labelFormatSpecifiers]="NumberFormatSpecifier1"> + [labelFormatSpecifiers]="numberFormatSpecifier1"> + [xAxisLabelFormatSpecifiers]="dateTimeFormatSpecifier1"> diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index e27d2007a..27ca26e48 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 3cdcfbd9b..6bb1d3cd7 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "igniteui-theming": "3.3.1", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index e27d2007a..27ca26e48 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index e27d2007a..27ca26e48 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index eefcefe2c..9941a0993 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index e27d2007a..27ca26e48 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index e27d2007a..27ca26e48 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 84991650c..964d01ceb 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 366494b4f..a5ce7a24a 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-inputs": "17.0.0", - "igniteui-angular-layouts": "17.0.0", - "igniteui-webcomponents": "4.5.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-inputs": "17.2.0-beta.0", + "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index f089ceb83..9a0a06920 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 12ac04a45..69d70741f 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index e4d192c42..3a90861e8 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -21,8 +21,8 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 7c87a36b1..827d809e8 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 7c87a36b1..827d809e8 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 7c87a36b1..827d809e8 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 81e3ad89a..f4161f364 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 81e3ad89a..f4161f364 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index ca6efc231..2f65616ef 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -20,10 +20,10 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", - "igniteui-angular-spreadsheet": "17.0.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-spreadsheet": "17.2.0-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 0428b2e8c..e42c696a4 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", - "igniteui-angular-spreadsheet": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-spreadsheet": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 9621f7b5f..257f83d1f 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", - "igniteui-angular-spreadsheet": "17.0.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-spreadsheet": "17.2.0-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index 9621f7b5f..257f83d1f 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", - "igniteui-angular-spreadsheet": "17.0.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-spreadsheet": "17.2.0-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index 0428b2e8c..e42c696a4 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", - "igniteui-angular-spreadsheet": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-spreadsheet": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 0428b2e8c..e42c696a4 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", - "igniteui-angular-spreadsheet": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-spreadsheet": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index 0428b2e8c..e42c696a4 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", - "igniteui-angular-spreadsheet": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-spreadsheet": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 0428b2e8c..e42c696a4 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", - "igniteui-angular-spreadsheet": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-spreadsheet": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 0428b2e8c..e42c696a4 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", - "igniteui-angular-spreadsheet": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-spreadsheet": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 0428b2e8c..e42c696a4 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", - "igniteui-angular-spreadsheet": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-spreadsheet": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index 0428b2e8c..e42c696a4 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-excel": "17.0.0", - "igniteui-angular-spreadsheet": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-spreadsheet": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 6b15f41de..6bb27a1dd 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 6b15f41de..6bb27a1dd 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 6b15f41de..6bb27a1dd 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 54e877958..e29f3efc3 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-gauges": "17.0.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-gauges": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 385cfa557..d7a94c322 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.0.0", - "igniteui-angular-core": "17.0.0", - "igniteui-angular-maps": "17.0.0", + "igniteui-angular-charts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-maps": "17.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", From ca2296653babaa9e3843147450bcb560b5a54d31 Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Fri, 5 Jan 2024 11:38:37 -0500 Subject: [PATCH 032/154] sample cleanup script (#102) * Delete stats.json * exclude auto-gen stats.json * improve cleanSamples script * cleanSamples --- .gitignore | 2 + browser/gulpfile.js | 1 + browser/scripts/browser.js | 18 +- browser/src/assets/stats.json | 362 ---------------------------------- 4 files changed, 15 insertions(+), 368 deletions(-) delete mode 100644 browser/src/assets/stats.json diff --git a/.gitignore b/.gitignore index 828f948d4..21a9145d9 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ /samples/**/node_modules/ /samples/**/package-lock.json /samples/**/.angular +/samples/**/.git # /samples-tmp/ # /samples-tmp/**/node_modules/ @@ -17,6 +18,7 @@ /browser/src/samples /browser/src/assets/code-viewer/*.json /browser/src/assets/samples/*.json +/browser/src/assets/stats.json !/browser/src/assets/samples/meta.json !/browser/src/assets/samples/shared.json /browser/dist diff --git a/browser/gulpfile.js b/browser/gulpfile.js index 8447bbf09..6cfca5606 100644 --- a/browser/gulpfile.js +++ b/browser/gulpfile.js @@ -90,6 +90,7 @@ gulp.task('updateSamples', gulp.series( browser.updateSamples )); +gulp.task('cleanSamples', browser.cleanSamples); gulp.task('updateIG', browser.updateIG); gulp.task('copyBootstrapCss', browser.copyBootstrapCss); diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 86d3a9cef..13aa35269 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -824,13 +824,19 @@ function updateCodeViewer(cb) { } exports.updateCodeViewer = updateCodeViewer; function cleanSamples() { - log("clean samples in browser: " + sampleOutput); + log("cleaning up ../samples folder and ./browser/src/samples folder"); return del([ - sampleOutput + "*.ts", - sampleOutput + "**/*.ts", - sampleOutput + "**/*.html", - sampleOutput + "**/*.scss", - sampleOutput + "**/*.css" + sampleOutput + "**/*.*", + sampleOutput, + "../samples/**/.angular/**/*.*", + "../samples/**/.angular", + "../samples/**/.git/**/*.*", + "../samples/**/.git", + "../samples/**/build/**/*.*", + "../samples/**/dist/**/*.*", + "../samples/**/node_modules/**/*.*", + "../samples/**/node_modules", + "../samples/**/package-lock.json" ],{force: true}); } exports.cleanSamples = cleanSamples; diff --git a/browser/src/assets/stats.json b/browser/src/assets/stats.json deleted file mode 100644 index ae4591171..000000000 --- a/browser/src/assets/stats.json +++ /dev/null @@ -1,362 +0,0 @@ -[ - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-all" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-callouts" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-crosshairs" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-custom" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-final-value" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/annotations-highlighting" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-gap" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/area-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-gridlines" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-inverted" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-locations" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-labels" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-options" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-overlap" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-range" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-titles" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/chart-highlight-filter" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/axis-tickmarks" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-with-highlighting" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-aggregations" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/custom-selection" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/column-chart-with-tooltips" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-legend-formatting-decimals" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-legend" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip-formatting-decimals" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/format-specifiers" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/data-tooltip-positioning" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/high-frequency" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/high-volume" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/highlighting" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-animations" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-annotations" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/line-chart-with-legend" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/marker-templates" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/marker-options" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/point-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-area-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/spline-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/stack-columns" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-area-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-single-source" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/tooltip-template" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/step-line-styling" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/tooltip-types" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/value-lines" }, - { "browser": false, "xplat": false, "path": "charts/category-chart/trendline" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/annotations" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/axis-types" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-styling-props" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-styling-props" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-formatting-currency" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-formatting-currency" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/format-specifiers" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/high-volume" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-customization" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/high-frequency" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-types" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-data" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-feeds" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/panes" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/performance" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/scrollbars" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/styling" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/stock-index-chart" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/theming" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/titles" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/time-based-data" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-template" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-types" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/trendlines" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/volume-types" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-annotations" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/annotations-custom" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-annotations-corner-radius" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-label-rotation" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-crossing" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-locations" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-settings" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-min-max-gap" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-sharing" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/axis-types" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-overlapping" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/bar-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/callout-layer-styling" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/chart-highlight-filter-multiple-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/chart-navigation" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/chart-overview" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/chart-synchronization" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/chart-performance" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/chart-titles" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/composite-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/column-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/crosshair-layer-styling" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/custom-drawing-annotations" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/custom-editing-data" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-axes" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-tickmarks" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/dash-array-trendline" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/data-legend" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/data-tooltip" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/financial-price-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/final-value-layer-styling" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/format-specifiers" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/legends" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/polar-area-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/polar-area-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/polar-chart-types" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/polar-scatter-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/polar-line-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/polar-spline-area-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/polar-spline-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/radial-area-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/radial-area-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/radial-chart-types" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/radial-column-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/radial-line-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/radial-pie-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/range-column-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/range-area-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-bubble-chart-multiple-sources" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-bubble-chart-styling" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-bubble-chart-single-source" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-line-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-point-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/scatter-spline-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-annotations" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-animations" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-highlighting" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-markers" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-tooltips" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-marker-template" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-area-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-trendlines" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-bar-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/series-value-overlay" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-column-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-line-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-spline-area-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-100-spline-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-area-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-bar-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-chart-types" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-line-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-column-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-spline-area-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/stacked-spline-chart" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/transition-event" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-area-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-bar-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-column-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-line-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/tooltip-template" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-point-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-spline-area-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-spline-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-step-line-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-waterfall-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-area-indicators" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-category-step-area-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-candlestick-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-column-indicators" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-line-indicators" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-ohlc-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-overlays" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-financial-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-column-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-line-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-pie-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-area-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-radial-area-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-column-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-area-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-bubble-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-range-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-contour-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-line-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-hd-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-point-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-polygon-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-polyline-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-scatter-spline-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-shape-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-area-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-bar-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-column-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-spline-area-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-line-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-100-spline-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-area-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-bar-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-column-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-line-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-spline-area-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/type-stacked-spline-series" }, - { "browser": false, "xplat": false, "path": "charts/data-chart/waterfall-chart" }, - { "browser": true, "xplat": false, "path": "charts/doughnut-chart/animation" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/explosion" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/legend" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/selection" }, - { "browser": false, "xplat": false, "path": "charts/doughnut-chart/rings" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/animation" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/legend" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/explosion" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/others" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/selection" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/annotations" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/axis-types" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-formatting-currency" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-legend-styling-props" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-formatting-currency" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/data-tooltip-styling-props" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/format-specifiers" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/high-frequency" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/high-volume" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-customization" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/indicator-types" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-data" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/multiple-feeds" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/panes" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/performance" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/scrollbars" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/stock-index-chart" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/styling" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/theming" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/time-based-data" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/titles" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-template" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/tooltip-types" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/trendlines" }, - { "browser": false, "xplat": false, "path": "charts/financial-chart/volume-types" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/animation" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/explosion" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/legend" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/others" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/overview" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/selection" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/styling" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-area" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-column" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-lines" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-types" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-winloss" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/grid" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/markers" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/normal-range" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/trendlines" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/unknown-values" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-category-chart" }, - { "browser": false, "xplat": false, "path": "charts/pie-chart/styling" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/actions-built-in-data-chart" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/custom-tool" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/layout-actions-for-data-chart" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/theming" }, - { "browser": false, "xplat": false, "path": "charts/toolbar/layout-in-vertical-orientation" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/events" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/layout" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/overview" }, - { "browser": false, "xplat": false, "path": "charts/tree-map/styling" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-worksheets" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/operations-on-workbooks" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/overview" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-cells" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-charts" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-tables" }, - { "browser": false, "xplat": false, "path": "excel/excel-library/working-with-sparklines" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/activation" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-chart" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/adapter-combo" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/commands" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/clipboard" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/conditional-formatting" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/data-validation" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/config-options" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/hyperlinks" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/animation" }, - { "browser": false, "xplat": false, "path": "excel/spreadsheet/overview" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/background" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/measures" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/labels" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/ranges" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/tickmarks" }, - { "browser": false, "xplat": false, "path": "gauges/bullet-graph/scale" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/animation" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/backing" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/labels" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/needle" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/ranges" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/tickmarks" }, - { "browser": false, "xplat": false, "path": "gauges/radial-gauge/scale" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-column" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-area" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-lines" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-types" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/display-winloss" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/grid" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/markers" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/normal-range" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/unknown-values" }, - { "browser": false, "xplat": false, "path": "charts/zoomslider/overview" }, - { "browser": false, "xplat": false, "path": "charts/sparkline/trendlines" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-csv" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-json-points" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/binding-multiple-shapes" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/binding-data-model" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/binding-multiple-sources" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-polylines" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-polygons" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/custom-tooltips" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/display-bing-imagery" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/binding-shp-points" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/display-esri-imagery" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/display-osm-imagery" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/marker-layouts" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/display-heat-imagery" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/marker-template" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/navigation" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/marker-type" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/overview" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/triangulating-data" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/shape-styling" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-area-series" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-contour-series" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-density-series" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-bubble-series" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-scatter-symbol-series" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polygon-series" }, - { "browser": false, "xplat": false, "path": "maps/geo-map/type-shape-polyline-series" } -] \ No newline at end of file From e01d8f52ad5f3da832f130a108a6789b94c87be5 Mon Sep 17 00:00:00 2001 From: Andrew Goldenbaum Date: Tue, 9 Jan 2024 10:29:49 -0500 Subject: [PATCH 033/154] Export chart highlighting sample (#104) --- .../chart-highlight-filter/src/app.component.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/samples/charts/category-chart/chart-highlight-filter/src/app.component.html b/samples/charts/category-chart/chart-highlight-filter/src/app.component.html index e0b7e2f3c..4dc5ba354 100644 --- a/samples/charts/category-chart/chart-highlight-filter/src/app.component.html +++ b/samples/charts/category-chart/chart-highlight-filter/src/app.component.html @@ -23,7 +23,9 @@ #chart chartType="Column" [dataSource]="salesData" - initialGroups="MonthName"> + initialGroups="MonthName" + initialHighlightFilter="Country ne 'UK'" + highlightedValuesDisplayMode="Hidden"> From 5f0755f36fd3699abb402438e8c2d83e1157160a Mon Sep 17 00:00:00 2001 From: Andrew Goldenbaum Date: Tue, 9 Jan 2024 13:17:51 -0500 Subject: [PATCH 034/154] Update Angular browser packages (#107) --- browser/package.json | 20 +++++++++---------- browser/scripts/browser.js | 20 +++++++++---------- browser/src/browser-info.json | 20 +++++++++---------- .../annotations-all/package.json | 8 ++++---- .../annotations-callouts/package.json | 8 ++++---- .../annotations-crosshairs/package.json | 8 ++++---- .../annotations-custom/package.json | 8 ++++---- .../annotations-final-value/package.json | 8 ++++---- .../annotations-highlighting/package.json | 8 ++++---- .../category-chart/annotations/package.json | 4 ++-- .../area-chart-multiple-sources/package.json | 4 ++-- .../area-chart-single-source/package.json | 4 ++-- .../area-chart-styling/package.json | 4 ++-- .../category-chart/axis-gap/package.json | 8 ++++---- .../axis-gridlines/package.json | 8 ++++---- .../category-chart/axis-inverted/package.json | 8 ++++---- .../category-chart/axis-labels/package.json | 8 ++++---- .../axis-locations/package.json | 8 ++++---- .../category-chart/axis-options/package.json | 4 ++-- .../category-chart/axis-overlap/package.json | 8 ++++---- .../category-chart/axis-range/package.json | 8 ++++---- .../axis-tickmarks/package.json | 8 ++++---- .../category-chart/axis-titles/package.json | 4 ++-- .../chart-highlight-filter/package.json | 8 ++++---- .../package.json | 4 ++-- .../column-chart-single-source/package.json | 4 ++-- .../column-chart-styling/package.json | 4 ++-- .../package.json | 4 ++-- .../column-chart-with-tooltips/package.json | 8 ++++---- .../custom-selection/package.json | 4 ++-- .../data-aggregations/package.json | 8 ++++---- .../package.json | 4 ++-- .../category-chart/data-legend/package.json | 4 ++-- .../package.json | 4 ++-- .../data-tooltip-positioning/package.json | 8 ++++---- .../category-chart/data-tooltip/package.json | 4 ++-- .../format-specifiers/package.json | 8 ++++---- .../high-frequency/package.json | 4 ++-- .../category-chart/high-volume/package.json | 4 ++-- .../category-chart/highlighting/package.json | 4 ++-- .../line-chart-multiple-sources/package.json | 4 ++-- .../line-chart-single-source/package.json | 4 ++-- .../line-chart-styling/package.json | 4 ++-- .../line-chart-with-animations/package.json | 4 ++-- .../line-chart-with-annotations/package.json | 4 ++-- .../line-chart-with-legend/package.json | 4 ++-- .../marker-options/package.json | 8 ++++---- .../marker-templates/package.json | 4 ++-- .../category-chart/overview/package.json | 4 ++-- .../point-chart-multiple-sources/package.json | 4 ++-- .../point-chart-single-source/package.json | 4 ++-- .../point-chart-styling/package.json | 4 ++-- .../spline-area-multiple-sources/package.json | 4 ++-- .../spline-area-single-source/package.json | 4 ++-- .../spline-area-styling/package.json | 4 ++-- .../spline-multiple-sources/package.json | 4 ++-- .../spline-single-source/package.json | 4 ++-- .../spline-styling/package.json | 4 ++-- .../category-chart/stack-columns/package.json | 4 ++-- .../step-area-multiple-sources/package.json | 4 ++-- .../step-area-single-source/package.json | 4 ++-- .../step-area-styling/package.json | 4 ++-- .../step-line-multiple-sources/package.json | 4 ++-- .../step-line-single-source/package.json | 4 ++-- .../step-line-styling/package.json | 4 ++-- .../tooltip-template/package.json | 4 ++-- .../category-chart/tooltip-types/package.json | 4 ++-- .../category-chart/trendline/package.json | 4 ++-- .../category-chart/value-lines/package.json | 8 ++++---- .../annotations-custom/package.json | 4 ++-- .../package.json | 4 ++-- .../data-chart/axis-annotations/package.json | 4 ++-- .../data-chart/axis-crossing/package.json | 4 ++-- .../axis-label-rotation/package.json | 8 ++++---- .../data-chart/axis-locations/package.json | 4 ++-- .../data-chart/axis-min-max-gap/package.json | 4 ++-- .../data-chart/axis-settings/package.json | 4 ++-- .../data-chart/axis-sharing/package.json | 4 ++-- .../charts/data-chart/axis-types/package.json | 4 ++-- .../bar-chart-multiple-sources/package.json | 4 ++-- .../bar-chart-overlapping/package.json | 4 ++-- .../bar-chart-single-source/package.json | 4 ++-- .../data-chart/bar-chart-styling/package.json | 4 ++-- .../callout-layer-styling/package.json | 4 ++-- .../package.json | 8 ++++---- .../package.json | 8 ++++---- .../chart-highlight-filter/package.json | 8 ++++---- .../data-chart/chart-navigation/package.json | 4 ++-- .../data-chart/chart-overview/package.json | 4 ++-- .../data-chart/chart-performance/package.json | 4 ++-- .../chart-synchronization/package.json | 4 ++-- .../data-chart/chart-titles/package.json | 4 ++-- .../column-chart-styling/package.json | 4 ++-- .../data-chart/composite-chart/package.json | 4 ++-- .../crosshair-layer-styling/package.json | 4 ++-- .../custom-drawing-annotations/package.json | 8 ++++---- .../custom-editing-data/package.json | 4 ++-- .../data-chart/dash-array-axes/package.json | 4 ++-- .../data-chart/dash-array-series/package.json | 4 ++-- .../dash-array-tickmarks/package.json | 4 ++-- .../dash-array-trendline/package.json | 4 ++-- .../data-chart/data-legend/package.json | 4 ++-- .../data-chart/data-tooltip/package.json | 4 ++-- .../final-value-layer-styling/package.json | 4 ++-- .../financial-price-series/package.json | 4 ++-- .../data-chart/format-specifiers/package.json | 4 ++-- .../charts/data-chart/legends/package.json | 4 ++-- .../polar-area-chart-styling/package.json | 4 ++-- .../data-chart/polar-area-chart/package.json | 4 ++-- .../data-chart/polar-chart-types/package.json | 4 ++-- .../data-chart/polar-line-chart/package.json | 4 ++-- .../polar-scatter-chart/package.json | 4 ++-- .../polar-spline-area-chart/package.json | 4 ++-- .../polar-spline-chart/package.json | 4 ++-- .../radial-area-chart-styling/package.json | 4 ++-- .../data-chart/radial-area-chart/package.json | 4 ++-- .../radial-chart-types/package.json | 4 ++-- .../radial-column-chart/package.json | 4 ++-- .../data-chart/radial-line-chart/package.json | 4 ++-- .../data-chart/radial-pie-chart/package.json | 4 ++-- .../data-chart/range-area-chart/package.json | 4 ++-- .../range-column-chart/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../scatter-bubble-chart-styling/package.json | 4 ++-- .../scatter-line-chart/package.json | 4 ++-- .../scatter-point-chart/package.json | 4 ++-- .../scatter-spline-chart/package.json | 4 ++-- .../data-chart/series-animations/package.json | 4 ++-- .../series-annotations/package.json | 4 ++-- .../series-highlighting/package.json | 4 ++-- .../series-marker-template/package.json | 4 ++-- .../data-chart/series-markers/package.json | 4 ++-- .../data-chart/series-tooltips/package.json | 4 ++-- .../data-chart/series-trendlines/package.json | 4 ++-- .../series-value-overlay/package.json | 4 ++-- .../stacked-100-area-chart/package.json | 4 ++-- .../stacked-100-bar-chart/package.json | 4 ++-- .../stacked-100-column-chart/package.json | 4 ++-- .../stacked-100-line-chart/package.json | 4 ++-- .../package.json | 4 ++-- .../stacked-100-spline-chart/package.json | 4 ++-- .../stacked-area-chart/package.json | 4 ++-- .../data-chart/stacked-bar-chart/package.json | 4 ++-- .../stacked-chart-types/package.json | 4 ++-- .../stacked-column-chart/package.json | 4 ++-- .../stacked-line-chart/package.json | 4 ++-- .../stacked-spline-area-chart/package.json | 4 ++-- .../stacked-spline-chart/package.json | 4 ++-- .../data-chart/tooltip-template/package.json | 4 ++-- .../data-chart/transition-event/package.json | 8 ++++---- .../type-category-area-series/package.json | 4 ++-- .../type-category-bar-series/package.json | 4 ++-- .../type-category-column-series/package.json | 4 ++-- .../type-category-line-series/package.json | 4 ++-- .../type-category-point-series/package.json | 4 ++-- .../type-category-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-category-spline-series/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../type-financial-ohlc-series/package.json | 4 ++-- .../type-financial-overlays/package.json | 4 ++-- .../type-financial-series/package.json | 4 ++-- .../type-radial-area-series/package.json | 4 ++-- .../type-radial-column-series/package.json | 4 ++-- .../type-radial-line-series/package.json | 4 ++-- .../type-radial-pie-series/package.json | 4 ++-- .../type-range-area-series/package.json | 4 ++-- .../type-range-column-series/package.json | 4 ++-- .../data-chart/type-range-series/package.json | 4 ++-- .../type-scatter-area-series/package.json | 4 ++-- .../type-scatter-bubble-series/package.json | 4 ++-- .../type-scatter-contour-series/package.json | 4 ++-- .../type-scatter-hd-series/package.json | 4 ++-- .../type-scatter-line-series/package.json | 4 ++-- .../type-scatter-point-series/package.json | 4 ++-- .../type-scatter-polygon-series/package.json | 4 ++-- .../type-scatter-polyline-series/package.json | 4 ++-- .../type-scatter-series/package.json | 4 ++-- .../type-scatter-spline-series/package.json | 4 ++-- .../data-chart/type-shape-series/package.json | 4 ++-- .../type-stacked-100-area-series/package.json | 4 ++-- .../type-stacked-100-bar-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-100-line-series/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-area-series/package.json | 4 ++-- .../type-stacked-bar-series/package.json | 4 ++-- .../type-stacked-column-series/package.json | 4 ++-- .../type-stacked-line-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-spline-series/package.json | 4 ++-- .../data-chart/waterfall-chart/package.json | 4 ++-- .../doughnut-chart/animation/package.json | 4 ++-- .../doughnut-chart/explosion/package.json | 4 ++-- .../charts/doughnut-chart/legend/package.json | 4 ++-- .../doughnut-chart/overview/package.json | 4 ++-- .../charts/doughnut-chart/rings/package.json | 4 ++-- .../doughnut-chart/selection/package.json | 4 ++-- .../financial-chart/annotations/package.json | 4 ++-- .../financial-chart/axis-types/package.json | 4 ++-- .../package.json | 4 ++-- .../data-legend-styling-props/package.json | 4 ++-- .../financial-chart/data-legend/package.json | 4 ++-- .../package.json | 4 ++-- .../data-tooltip-styling-props/package.json | 4 ++-- .../financial-chart/data-tooltip/package.json | 4 ++-- .../format-specifiers/package.json | 4 ++-- .../high-frequency/package.json | 4 ++-- .../financial-chart/high-volume/package.json | 4 ++-- .../indicator-customization/package.json | 4 ++-- .../indicator-types/package.json | 4 ++-- .../multiple-data/package.json | 4 ++-- .../multiple-feeds/package.json | 4 ++-- .../financial-chart/overview/package.json | 4 ++-- .../charts/financial-chart/panes/package.json | 4 ++-- .../financial-chart/performance/package.json | 4 ++-- .../financial-chart/scrollbars/package.json | 4 ++-- .../stock-index-chart/package.json | 4 ++-- .../financial-chart/styling/package.json | 4 ++-- .../financial-chart/theming/package.json | 4 ++-- .../time-based-data/package.json | 4 ++-- .../financial-chart/titles/package.json | 4 ++-- .../tooltip-template/package.json | 4 ++-- .../tooltip-types/package.json | 4 ++-- .../financial-chart/trendlines/package.json | 4 ++-- .../financial-chart/volume-types/package.json | 4 ++-- .../charts/pie-chart/animation/package.json | 4 ++-- .../charts/pie-chart/explosion/package.json | 4 ++-- samples/charts/pie-chart/legend/package.json | 4 ++-- samples/charts/pie-chart/others/package.json | 4 ++-- .../charts/pie-chart/overview/package.json | 4 ++-- .../charts/pie-chart/selection/package.json | 4 ++-- samples/charts/pie-chart/styling/package.json | 4 ++-- .../sparkline/display-area/package.json | 4 ++-- .../sparkline/display-column/package.json | 4 ++-- .../sparkline/display-lines/package.json | 8 ++++---- .../sparkline/display-types/package.json | 4 ++-- .../sparkline/display-winloss/package.json | 4 ++-- samples/charts/sparkline/grid/package.json | 4 ++-- samples/charts/sparkline/markers/package.json | 8 ++++---- .../sparkline/normal-range/package.json | 8 ++++---- .../charts/sparkline/trendlines/package.json | 8 ++++---- .../sparkline/unknown-values/package.json | 8 ++++---- .../package.json | 8 ++++---- .../actions-built-in-data-chart/package.json | 8 ++++---- .../charts/toolbar/custom-tool/package.json | 6 +++--- .../package.json | 8 ++++---- .../package.json | 8 ++++---- samples/charts/toolbar/theming/package.json | 8 ++++---- samples/charts/tree-map/events/package.json | 4 ++-- samples/charts/tree-map/layout/package.json | 8 ++++---- samples/charts/tree-map/overview/package.json | 4 ++-- samples/charts/tree-map/styling/package.json | 4 ++-- .../charts/zoomslider/overview/package.json | 4 ++-- .../operations-on-workbooks/package.json | 4 ++-- .../operations-on-worksheets/package.json | 4 ++-- .../excel/excel-library/overview/package.json | 4 ++-- .../working-with-cells/package.json | 4 ++-- .../working-with-charts/package.json | 6 +++--- .../working-with-sparklines/package.json | 6 +++--- .../working-with-tables/package.json | 8 ++++---- .../excel/spreadsheet/activation/package.json | 6 +++--- .../spreadsheet/adapter-chart/package.json | 10 +++++----- .../spreadsheet/adapter-combo/package.json | 10 +++++----- .../excel/spreadsheet/clipboard/package.json | 6 +++--- .../excel/spreadsheet/commands/package.json | 6 +++--- .../conditional-formatting/package.json | 6 +++--- .../spreadsheet/config-options/package.json | 6 +++--- .../spreadsheet/data-validation/package.json | 6 +++--- .../excel/spreadsheet/hyperlinks/package.json | 6 +++--- .../excel/spreadsheet/overview/package.json | 6 +++--- .../bullet-graph/animation/package.json | 4 ++-- .../bullet-graph/background/package.json | 4 ++-- .../gauges/bullet-graph/labels/package.json | 4 ++-- .../gauges/bullet-graph/measures/package.json | 4 ++-- .../gauges/bullet-graph/ranges/package.json | 4 ++-- .../gauges/bullet-graph/scale/package.json | 4 ++-- .../bullet-graph/tickmarks/package.json | 4 ++-- .../linear-gauge/animation/package.json | 4 ++-- .../gauges/linear-gauge/backing/package.json | 4 ++-- .../gauges/linear-gauge/labels/package.json | 4 ++-- .../gauges/linear-gauge/needle/package.json | 4 ++-- .../gauges/linear-gauge/ranges/package.json | 4 ++-- .../gauges/linear-gauge/scale/package.json | 4 ++-- .../linear-gauge/tickmarks/package.json | 4 ++-- .../radial-gauge/animation/package.json | 4 ++-- .../gauges/radial-gauge/backing/package.json | 4 ++-- .../gauges/radial-gauge/labels/package.json | 4 ++-- .../gauges/radial-gauge/needle/package.json | 4 ++-- .../gauges/radial-gauge/ranges/package.json | 4 ++-- .../gauges/radial-gauge/scale/package.json | 4 ++-- .../radial-gauge/tickmarks/package.json | 4 ++-- .../geo-map/binding-data-csv/package.json | 6 +++--- .../binding-data-json-points/package.json | 6 +++--- .../geo-map/binding-data-model/package.json | 6 +++--- .../binding-multiple-shapes/package.json | 6 +++--- .../binding-multiple-sources/package.json | 6 +++--- .../geo-map/binding-shp-points/package.json | 6 +++--- .../geo-map/binding-shp-polygons/package.json | 6 +++--- .../binding-shp-polylines/package.json | 6 +++--- .../maps/geo-map/custom-tooltips/package.json | 6 +++--- .../geo-map/display-bing-imagery/package.json | 6 +++--- .../geo-map/display-esri-imagery/package.json | 6 +++--- .../geo-map/display-heat-imagery/package.json | 6 +++--- .../geo-map/display-osm-imagery/package.json | 6 +++--- .../maps/geo-map/marker-layouts/package.json | 6 +++--- .../maps/geo-map/marker-template/package.json | 6 +++--- samples/maps/geo-map/marker-type/package.json | 6 +++--- samples/maps/geo-map/navigation/package.json | 6 +++--- samples/maps/geo-map/overview/package.json | 6 +++--- .../maps/geo-map/shape-styling/package.json | 6 +++--- .../geo-map/triangulating-data/package.json | 6 +++--- .../type-scatter-area-series/package.json | 6 +++--- .../type-scatter-bubble-series/package.json | 6 +++--- .../type-scatter-contour-series/package.json | 6 +++--- .../type-scatter-density-series/package.json | 6 +++--- .../type-scatter-symbol-series/package.json | 6 +++--- .../type-shape-polygon-series/package.json | 6 +++--- .../type-shape-polyline-series/package.json | 6 +++--- 327 files changed, 800 insertions(+), 800 deletions(-) diff --git a/browser/package.json b/browser/package.json index 7121ca6b9..358cb4770 100644 --- a/browser/package.json +++ b/browser/package.json @@ -39,15 +39,15 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", - "igniteui-angular-spreadsheet": "17.2.0-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", + "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-maps": "17.2.0", + "igniteui-angular-spreadsheet": "17.2.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.2.0", "igniteui-theming": "3.3.1", "igniteui-webcomponents": "4.6.0", "immediate": "3.2.3", @@ -92,4 +92,4 @@ "tslint": "~6.1.3", "typescript": "5.2.2" } -} \ No newline at end of file +} diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 13aa35269..48fe0e584 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1071,16 +1071,16 @@ function updateIG(cb) { // { name: "igniteui-angular-charts", version: "14.1.0" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { name: "igniteui-angular-core" , version: "17.2.0-beta.0" }, - { name: "igniteui-angular-charts" , version: "17.2.0-beta.0" }, - { name: "igniteui-angular-excel" , version: "17.2.0-beta.0" }, - { name: "igniteui-angular-gauges" , version: "17.2.0-beta.0" }, - { name: "igniteui-angular-inputs" , version: "17.2.0-beta.0" }, - { name: "igniteui-angular-layouts" , version: "17.2.0-beta.0" }, - { name: "igniteui-angular-maps" , version: "17.2.0-beta.0" }, - { name: "igniteui-angular-spreadsheet-chart-adapter", version: "17.2.0-beta.0" }, - { name: "igniteui-angular-spreadsheet" , version: "17.2.0-beta.0" }, - { name: "igniteui-angular-datasources" , version: "17.2.0-beta.0" }, + { name: "igniteui-angular-core" , version: "17.2.0" }, + { name: "igniteui-angular-charts" , version: "17.2.0" }, + { name: "igniteui-angular-excel" , version: "17.2.0" }, + { name: "igniteui-angular-gauges" , version: "17.2.0" }, + { name: "igniteui-angular-inputs" , version: "17.2.0" }, + { name: "igniteui-angular-layouts" , version: "17.2.0" }, + { name: "igniteui-angular-maps" , version: "17.2.0" }, + { name: "igniteui-angular-spreadsheet-chart-adapter", version: "17.2.0" }, + { name: "igniteui-angular-spreadsheet" , version: "17.2.0" }, + { name: "igniteui-angular-datasources" , version: "17.2.0" }, // these IG packages are sometimes updated: { name: "igniteui-webcomponents", version: "4.6.0" }, { name: "igniteui-theming", version: "3.3.1" }, diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index d385fcd86..f20778708 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,14 +1,14 @@ [ {"ver":"17.0.0","name":"igniteui-angular"}, -{"ver":"17.2.0-beta.0","name":"igniteui-angular-charts"}, -{"ver":"17.2.0-beta.0","name":"igniteui-angular-core"}, -{"ver":"17.2.0-beta.0","name":"igniteui-angular-excel"}, -{"ver":"17.2.0-beta.0","name":"igniteui-angular-gauges"}, -{"ver":"17.2.0-beta.0","name":"igniteui-angular-inputs"}, -{"ver":"17.2.0-beta.0","name":"igniteui-angular-layouts"}, -{"ver":"17.2.0-beta.0","name":"igniteui-angular-maps"}, -{"ver":"17.2.0-beta.0","name":"igniteui-angular-spreadsheet"}, -{"ver":"17.2.0-beta.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"17.2.0","name":"igniteui-angular-charts"}, +{"ver":"17.2.0","name":"igniteui-angular-core"}, +{"ver":"17.2.0","name":"igniteui-angular-excel"}, +{"ver":"17.2.0","name":"igniteui-angular-gauges"}, +{"ver":"17.2.0","name":"igniteui-angular-inputs"}, +{"ver":"17.2.0","name":"igniteui-angular-layouts"}, +{"ver":"17.2.0","name":"igniteui-angular-maps"}, +{"ver":"17.2.0","name":"igniteui-angular-spreadsheet"}, +{"ver":"17.2.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, {"ver":"3.3.1","name":"igniteui-theming"}, {"ver":"4.6.0","name":"igniteui-webcomponents"} -] \ No newline at end of file +] diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 27ca26e48..2ac14f415 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 964d01ceb..45cc33550 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 964d01ceb..45cc33550 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 7201eda09..863035afa 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 27ca26e48..2ac14f415 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 6bb1d3cd7..143e02559 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "igniteui-theming": "3.3.1", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 27ca26e48..2ac14f415 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 27ca26e48..2ac14f415 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 9941a0993..05f444317 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 27ca26e48..2ac14f415 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 27ca26e48..2ac14f415 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 964d01ceb..45cc33550 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index a5ce7a24a..b575b10ae 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-inputs": "17.2.0-beta.0", - "igniteui-angular-layouts": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-inputs": "17.2.0", + "igniteui-angular-layouts": "17.2.0", "igniteui-webcomponents": "4.6.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 9a0a06920..80bb9874b 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 69d70741f..85eb89ba1 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 3a90861e8..ac7a7d7a5 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -21,8 +21,8 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 827d809e8..5acdce180 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 827d809e8..5acdce180 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 827d809e8..5acdce180 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index f4161f364..1acae5f6a 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index f4161f364..1acae5f6a 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index 2f65616ef..a9d7e8841 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -20,10 +20,10 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", - "igniteui-angular-spreadsheet": "17.2.0-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", + "igniteui-angular-spreadsheet": "17.2.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index e42c696a4..0bf62c38b 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", - "igniteui-angular-spreadsheet": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", + "igniteui-angular-spreadsheet": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 257f83d1f..634bd7d03 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", - "igniteui-angular-spreadsheet": "17.2.0-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", + "igniteui-angular-spreadsheet": "17.2.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index 257f83d1f..634bd7d03 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", - "igniteui-angular-spreadsheet": "17.2.0-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", + "igniteui-angular-spreadsheet": "17.2.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index e42c696a4..0bf62c38b 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", - "igniteui-angular-spreadsheet": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", + "igniteui-angular-spreadsheet": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index e42c696a4..0bf62c38b 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", - "igniteui-angular-spreadsheet": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", + "igniteui-angular-spreadsheet": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index e42c696a4..0bf62c38b 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", - "igniteui-angular-spreadsheet": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", + "igniteui-angular-spreadsheet": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index e42c696a4..0bf62c38b 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", - "igniteui-angular-spreadsheet": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", + "igniteui-angular-spreadsheet": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index e42c696a4..0bf62c38b 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", - "igniteui-angular-spreadsheet": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", + "igniteui-angular-spreadsheet": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index e42c696a4..0bf62c38b 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", - "igniteui-angular-spreadsheet": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", + "igniteui-angular-spreadsheet": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index e42c696a4..0bf62c38b 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-excel": "17.2.0-beta.0", - "igniteui-angular-spreadsheet": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-excel": "17.2.0", + "igniteui-angular-spreadsheet": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 6bb27a1dd..e99d06b0f 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 6bb27a1dd..e99d06b0f 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 6bb27a1dd..e99d06b0f 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index e29f3efc3..1878e345b 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-gauges": "17.2.0-beta.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-gauges": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index d7a94c322..959bb3a53 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0-beta.0", - "igniteui-angular-core": "17.2.0-beta.0", - "igniteui-angular-maps": "17.2.0-beta.0", + "igniteui-angular-charts": "17.2.0", + "igniteui-angular-core": "17.2.0", + "igniteui-angular-maps": "17.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", From 27e7a47f46026ebc5e8b5ad69fa1bbb4f14d9d40 Mon Sep 17 00:00:00 2001 From: Andrew Goldenbaum Date: Tue, 9 Jan 2024 14:27:49 -0500 Subject: [PATCH 035/154] Update web components package (#108) --- browser/package.json | 2 +- samples/charts/category-chart/annotations-all/package.json | 2 +- samples/charts/category-chart/annotations-callouts/package.json | 2 +- .../charts/category-chart/annotations-crosshairs/package.json | 2 +- samples/charts/category-chart/annotations-custom/package.json | 2 +- .../charts/category-chart/annotations-final-value/package.json | 2 +- .../charts/category-chart/annotations-highlighting/package.json | 2 +- samples/charts/category-chart/axis-gap/package.json | 2 +- samples/charts/category-chart/axis-gridlines/package.json | 2 +- samples/charts/category-chart/axis-inverted/package.json | 2 +- samples/charts/category-chart/axis-labels/package.json | 2 +- samples/charts/category-chart/axis-locations/package.json | 2 +- samples/charts/category-chart/axis-overlap/package.json | 2 +- samples/charts/category-chart/axis-range/package.json | 2 +- samples/charts/category-chart/axis-tickmarks/package.json | 2 +- .../charts/category-chart/chart-highlight-filter/package.json | 2 +- .../category-chart/column-chart-with-tooltips/package.json | 2 +- samples/charts/category-chart/data-aggregations/package.json | 2 +- .../charts/category-chart/data-tooltip-positioning/package.json | 2 +- samples/charts/category-chart/marker-options/package.json | 2 +- samples/charts/category-chart/value-lines/package.json | 2 +- samples/charts/data-chart/axis-label-rotation/package.json | 2 +- .../data-chart/chart-highlight-filter-datasource/package.json | 2 +- .../chart-highlight-filter-multiple-series/package.json | 2 +- samples/charts/data-chart/chart-highlight-filter/package.json | 2 +- samples/charts/data-chart/transition-event/package.json | 2 +- samples/charts/sparkline/markers/package.json | 2 +- samples/charts/sparkline/normal-range/package.json | 2 +- samples/charts/sparkline/trendlines/package.json | 2 +- samples/charts/sparkline/unknown-values/package.json | 2 +- samples/charts/toolbar/theming/package.json | 2 +- samples/charts/tree-map/layout/package.json | 2 +- 32 files changed, 32 insertions(+), 32 deletions(-) diff --git a/browser/package.json b/browser/package.json index 358cb4770..182aeaa3a 100644 --- a/browser/package.json +++ b/browser/package.json @@ -49,7 +49,7 @@ "igniteui-angular-spreadsheet": "17.2.0", "igniteui-angular-spreadsheet-chart-adapter": "17.2.0", "igniteui-theming": "3.3.1", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "immediate": "3.2.3", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index b575b10ae..cb59b7ad2 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.2.0", "igniteui-angular-inputs": "17.2.0", "igniteui-angular-layouts": "17.2.0", - "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", From 1c1155dbd87b65bfb277657e712c332af80f9ad1 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 12:37:47 -0500 Subject: [PATCH 036/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.1.11.1 (#109) Co-authored-by: tfsbuild --- .../src/TemperatureAnnotatedData.ts | 178 +- .../src/TemperatureAnnotatedData.ts | 178 +- .../src/TemperatureAnnotatedData.ts | 178 +- .../src/TemperatureAnnotatedData.ts | 178 +- .../src/TemperatureAnnotatedData.ts | 178 +- .../src/TemperatureAnnotatedData.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/OlympicMedalsTopCountries.ts | 94 +- .../axis-overlap/src/HighestGrossingMovies.ts | 82 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/HighestGrossingMovies.ts | 82 +- .../src/TemperatureAverageData.ts | 130 +- .../src/EnergyRenewableConsumption.ts | 100 +- .../src/HighestGrossingMovies.ts | 82 +- .../custom-selection/src/SelectableData.ts | 202 +- .../src/HighestGrossingMovies.ts | 82 +- .../data-legend/src/HighestGrossingMovies.ts | 82 +- .../src/HighestGrossingMovies.ts | 82 +- .../src/HighestGrossingMovies.ts | 82 +- .../data-tooltip/src/HighestGrossingMovies.ts | 82 +- .../src/HighestGrossingMovies.ts | 82 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableCallouts.ts | 154 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/TemperatureAverageDataLongLabels.ts | 130 +- .../src/TemperatureAverageData.ts | 130 +- .../src/HighestGrossingMovies.ts | 82 +- .../src/RoadblocksToSuccess.ts | 100 +- .../src/OnlineShoppingSearches.ts | 138 +- .../src/OnlineShoppingSearches.ts | 138 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/OnlineTrafficHighlightDesktopOnly.ts | 55 + .../src/OnlineTrafficHighlightTotals.ts | 80 +- .../src/app.component.html | 4 +- .../src/app.component.ts | 10 + .../src/CountryRenewableElectricity.ts | 178 +- .../CountryRenewableElectricityFiltered.ts | 106 + .../src/app.component.html | 12 +- .../src/app.component.ts | 10 + .../OlympicMedalsTopCountriesWithTotals.ts | 106 +- .../src/app.component.html | 4 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../dash-array-trendline/src/Stock2Years.ts | 442 +- .../src/CountryDemographicAfrican.ts | 766 +- .../src/CountryDemographicEurope.ts | 640 +- .../src/CountryDemographicAfrican.ts | 766 +- .../src/CountryDemographicEurope.ts | 640 +- .../financial-price-series/src/Stock2Years.ts | 442 +- .../src/HighestGrossingMovies.ts | 82 +- .../src/BoatSailingData.ts | 118 +- .../polar-area-chart/src/BoatSailingData.ts | 118 +- .../polar-line-chart/src/BoatSailingData.ts | 118 +- .../src/BoatSailingData.ts | 118 +- .../src/BoatSailingData.ts | 118 +- .../polar-spline-chart/src/BoatSailingData.ts | 118 +- .../src/FootballPlayerStats.ts | 106 +- .../src/FootballPlayerStats.ts | 106 +- .../src/FootballPlayerStats.ts | 106 +- .../src/FootballPlayerStats.ts | 106 +- .../src/FootballPlayerStats.ts | 106 +- .../src/TemperatureRangeData.ts | 202 +- .../src/TemperatureRangeData.ts | 202 +- .../src/HealthDataForFrance.ts | 444 +- .../src/HealthDataForGermany.ts | 430 +- .../src/CountryDemographicAfrican.ts | 766 +- .../src/CountryDemographicEurope.ts | 640 +- .../src/HealthDataForFrance.ts | 444 +- .../src/HealthDataForGermany.ts | 430 +- .../src/ContinentsBirthRate.ts | 170 +- .../src/EnergyRenewableConsumption.ts | 100 +- .../src/OnlineTrafficByDevice.ts | 108 +- .../src/ContinentsBirthRate.ts | 170 +- .../src/ContinentsBirthRate.ts | 170 +- .../src/ContinentsBirthRate.ts | 170 +- .../src/ContinentsBirthRate.ts | 170 +- .../src/EnergyRenewableConsumption.ts | 100 +- .../src/ContinentsBirthRate.ts | 170 +- .../src/ContinentsBirthRate.ts | 170 +- .../src/ContinentsBirthRate.ts | 170 +- .../src/ContinentsBirthRate.ts | 170 +- .../transition-event/src/CompanyIncomeData.ts | 94 +- .../waterfall-chart/src/CompanyIncomeData.ts | 94 +- .../legend/src/EnergyGlobalDemand.ts | 70 +- .../overview/src/CompanyMarketShares.ts | 70 +- .../rings/src/CalendarMonths.ts | 130 +- .../rings/src/CalendarSeasons.ts | 50 +- .../src/StockGoogle.ts | 17416 ++++++++-------- .../src/StockGoogle.ts | 17416 ++++++++-------- .../legend/src/EnergyGlobalDemand.ts | 70 +- .../others/src/EnergyGlobalDemand.ts | 70 +- .../overview/src/EnergyGlobalDemand.ts | 70 +- .../styling/src/EnergyGlobalDemand.ts | 70 +- .../display-area/src/SparklineMixedData.ts | 90 +- .../display-column/src/SparklineMixedData.ts | 90 +- .../display-lines/src/SparklineMixedData.ts | 90 +- .../display-winloss/src/SparklineMixedData.ts | 90 +- .../markers/src/SparklineProfitData.ts | 90 +- .../normal-range/src/SparklineMixedData.ts | 90 +- .../trendlines/src/SparklineMixedData.ts | 90 +- .../src/SparklineUnknownData.ts | 110 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../toolbar/custom-tool/src/app.component.ts | 2 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../src/CountryRenewableElectricity.ts | 178 +- .../layout/src/CountyHierarchicalData.ts | 3118 +-- .../overview/src/CountyHierarchicalData.ts | 3118 +-- .../styling/src/CountyHierarchicalData.ts | 3118 +-- 141 files changed, 34269 insertions(+), 33282 deletions(-) create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/OnlineTrafficHighlightDesktopOnly.ts create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/CountryRenewableElectricityFiltered.ts diff --git a/samples/charts/category-chart/annotations-all/src/TemperatureAnnotatedData.ts b/samples/charts/category-chart/annotations-all/src/TemperatureAnnotatedData.ts index 593935daf..8524db1df 100644 --- a/samples/charts/category-chart/annotations-all/src/TemperatureAnnotatedData.ts +++ b/samples/charts/category-chart/annotations-all/src/TemperatureAnnotatedData.ts @@ -10,91 +10,97 @@ export class TemperatureAnnotatedDataItem { } export class TemperatureAnnotatedData extends Array { - public constructor() { - super(); - this.push(new TemperatureAnnotatedDataItem( - { - index: 0, - tempInfo: `27°C`, - temperature: 27, - month: `Jan` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 1, - tempInfo: `25°C`, - temperature: 25, - month: `Feb` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 2, - tempInfo: `21°C`, - temperature: 21, - month: `Mar` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 3, - tempInfo: `19°C`, - temperature: 19, - month: `Apr` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 4, - tempInfo: `16°C`, - temperature: 16, - month: `May` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 5, - tempInfo: `13°C`, - temperature: 13, - month: `Jun` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 6, - tempInfo: `14°C`, - temperature: 14, - month: `Jul` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 7, - tempInfo: `15°C`, - temperature: 15, - month: `Aug` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 8, - tempInfo: `19°C`, - temperature: 19, - month: `Sep` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 9, - tempInfo: `22°C`, - temperature: 22, - month: `Oct` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 10, - tempInfo: `26°C`, - temperature: 26, - month: `Nov` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 11, - tempInfo: `30°C`, - temperature: 30, - month: `Dec` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new TemperatureAnnotatedDataItem( + { + index: 0, + tempInfo: `27°C`, + temperature: 27, + month: `Jan` + }), + new TemperatureAnnotatedDataItem( + { + index: 1, + tempInfo: `25°C`, + temperature: 25, + month: `Feb` + }), + new TemperatureAnnotatedDataItem( + { + index: 2, + tempInfo: `21°C`, + temperature: 21, + month: `Mar` + }), + new TemperatureAnnotatedDataItem( + { + index: 3, + tempInfo: `19°C`, + temperature: 19, + month: `Apr` + }), + new TemperatureAnnotatedDataItem( + { + index: 4, + tempInfo: `16°C`, + temperature: 16, + month: `May` + }), + new TemperatureAnnotatedDataItem( + { + index: 5, + tempInfo: `13°C`, + temperature: 13, + month: `Jun` + }), + new TemperatureAnnotatedDataItem( + { + index: 6, + tempInfo: `14°C`, + temperature: 14, + month: `Jul` + }), + new TemperatureAnnotatedDataItem( + { + index: 7, + tempInfo: `15°C`, + temperature: 15, + month: `Aug` + }), + new TemperatureAnnotatedDataItem( + { + index: 8, + tempInfo: `19°C`, + temperature: 19, + month: `Sep` + }), + new TemperatureAnnotatedDataItem( + { + index: 9, + tempInfo: `22°C`, + temperature: 22, + month: `Oct` + }), + new TemperatureAnnotatedDataItem( + { + index: 10, + tempInfo: `26°C`, + temperature: 26, + month: `Nov` + }), + new TemperatureAnnotatedDataItem( + { + index: 11, + tempInfo: `30°C`, + temperature: 30, + month: `Dec` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/annotations-callouts/src/TemperatureAnnotatedData.ts b/samples/charts/category-chart/annotations-callouts/src/TemperatureAnnotatedData.ts index 593935daf..8524db1df 100644 --- a/samples/charts/category-chart/annotations-callouts/src/TemperatureAnnotatedData.ts +++ b/samples/charts/category-chart/annotations-callouts/src/TemperatureAnnotatedData.ts @@ -10,91 +10,97 @@ export class TemperatureAnnotatedDataItem { } export class TemperatureAnnotatedData extends Array { - public constructor() { - super(); - this.push(new TemperatureAnnotatedDataItem( - { - index: 0, - tempInfo: `27°C`, - temperature: 27, - month: `Jan` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 1, - tempInfo: `25°C`, - temperature: 25, - month: `Feb` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 2, - tempInfo: `21°C`, - temperature: 21, - month: `Mar` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 3, - tempInfo: `19°C`, - temperature: 19, - month: `Apr` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 4, - tempInfo: `16°C`, - temperature: 16, - month: `May` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 5, - tempInfo: `13°C`, - temperature: 13, - month: `Jun` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 6, - tempInfo: `14°C`, - temperature: 14, - month: `Jul` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 7, - tempInfo: `15°C`, - temperature: 15, - month: `Aug` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 8, - tempInfo: `19°C`, - temperature: 19, - month: `Sep` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 9, - tempInfo: `22°C`, - temperature: 22, - month: `Oct` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 10, - tempInfo: `26°C`, - temperature: 26, - month: `Nov` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 11, - tempInfo: `30°C`, - temperature: 30, - month: `Dec` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new TemperatureAnnotatedDataItem( + { + index: 0, + tempInfo: `27°C`, + temperature: 27, + month: `Jan` + }), + new TemperatureAnnotatedDataItem( + { + index: 1, + tempInfo: `25°C`, + temperature: 25, + month: `Feb` + }), + new TemperatureAnnotatedDataItem( + { + index: 2, + tempInfo: `21°C`, + temperature: 21, + month: `Mar` + }), + new TemperatureAnnotatedDataItem( + { + index: 3, + tempInfo: `19°C`, + temperature: 19, + month: `Apr` + }), + new TemperatureAnnotatedDataItem( + { + index: 4, + tempInfo: `16°C`, + temperature: 16, + month: `May` + }), + new TemperatureAnnotatedDataItem( + { + index: 5, + tempInfo: `13°C`, + temperature: 13, + month: `Jun` + }), + new TemperatureAnnotatedDataItem( + { + index: 6, + tempInfo: `14°C`, + temperature: 14, + month: `Jul` + }), + new TemperatureAnnotatedDataItem( + { + index: 7, + tempInfo: `15°C`, + temperature: 15, + month: `Aug` + }), + new TemperatureAnnotatedDataItem( + { + index: 8, + tempInfo: `19°C`, + temperature: 19, + month: `Sep` + }), + new TemperatureAnnotatedDataItem( + { + index: 9, + tempInfo: `22°C`, + temperature: 22, + month: `Oct` + }), + new TemperatureAnnotatedDataItem( + { + index: 10, + tempInfo: `26°C`, + temperature: 26, + month: `Nov` + }), + new TemperatureAnnotatedDataItem( + { + index: 11, + tempInfo: `30°C`, + temperature: 30, + month: `Dec` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/annotations-crosshairs/src/TemperatureAnnotatedData.ts b/samples/charts/category-chart/annotations-crosshairs/src/TemperatureAnnotatedData.ts index 593935daf..8524db1df 100644 --- a/samples/charts/category-chart/annotations-crosshairs/src/TemperatureAnnotatedData.ts +++ b/samples/charts/category-chart/annotations-crosshairs/src/TemperatureAnnotatedData.ts @@ -10,91 +10,97 @@ export class TemperatureAnnotatedDataItem { } export class TemperatureAnnotatedData extends Array { - public constructor() { - super(); - this.push(new TemperatureAnnotatedDataItem( - { - index: 0, - tempInfo: `27°C`, - temperature: 27, - month: `Jan` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 1, - tempInfo: `25°C`, - temperature: 25, - month: `Feb` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 2, - tempInfo: `21°C`, - temperature: 21, - month: `Mar` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 3, - tempInfo: `19°C`, - temperature: 19, - month: `Apr` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 4, - tempInfo: `16°C`, - temperature: 16, - month: `May` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 5, - tempInfo: `13°C`, - temperature: 13, - month: `Jun` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 6, - tempInfo: `14°C`, - temperature: 14, - month: `Jul` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 7, - tempInfo: `15°C`, - temperature: 15, - month: `Aug` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 8, - tempInfo: `19°C`, - temperature: 19, - month: `Sep` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 9, - tempInfo: `22°C`, - temperature: 22, - month: `Oct` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 10, - tempInfo: `26°C`, - temperature: 26, - month: `Nov` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 11, - tempInfo: `30°C`, - temperature: 30, - month: `Dec` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new TemperatureAnnotatedDataItem( + { + index: 0, + tempInfo: `27°C`, + temperature: 27, + month: `Jan` + }), + new TemperatureAnnotatedDataItem( + { + index: 1, + tempInfo: `25°C`, + temperature: 25, + month: `Feb` + }), + new TemperatureAnnotatedDataItem( + { + index: 2, + tempInfo: `21°C`, + temperature: 21, + month: `Mar` + }), + new TemperatureAnnotatedDataItem( + { + index: 3, + tempInfo: `19°C`, + temperature: 19, + month: `Apr` + }), + new TemperatureAnnotatedDataItem( + { + index: 4, + tempInfo: `16°C`, + temperature: 16, + month: `May` + }), + new TemperatureAnnotatedDataItem( + { + index: 5, + tempInfo: `13°C`, + temperature: 13, + month: `Jun` + }), + new TemperatureAnnotatedDataItem( + { + index: 6, + tempInfo: `14°C`, + temperature: 14, + month: `Jul` + }), + new TemperatureAnnotatedDataItem( + { + index: 7, + tempInfo: `15°C`, + temperature: 15, + month: `Aug` + }), + new TemperatureAnnotatedDataItem( + { + index: 8, + tempInfo: `19°C`, + temperature: 19, + month: `Sep` + }), + new TemperatureAnnotatedDataItem( + { + index: 9, + tempInfo: `22°C`, + temperature: 22, + month: `Oct` + }), + new TemperatureAnnotatedDataItem( + { + index: 10, + tempInfo: `26°C`, + temperature: 26, + month: `Nov` + }), + new TemperatureAnnotatedDataItem( + { + index: 11, + tempInfo: `30°C`, + temperature: 30, + month: `Dec` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/annotations-custom/src/TemperatureAnnotatedData.ts b/samples/charts/category-chart/annotations-custom/src/TemperatureAnnotatedData.ts index 593935daf..8524db1df 100644 --- a/samples/charts/category-chart/annotations-custom/src/TemperatureAnnotatedData.ts +++ b/samples/charts/category-chart/annotations-custom/src/TemperatureAnnotatedData.ts @@ -10,91 +10,97 @@ export class TemperatureAnnotatedDataItem { } export class TemperatureAnnotatedData extends Array { - public constructor() { - super(); - this.push(new TemperatureAnnotatedDataItem( - { - index: 0, - tempInfo: `27°C`, - temperature: 27, - month: `Jan` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 1, - tempInfo: `25°C`, - temperature: 25, - month: `Feb` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 2, - tempInfo: `21°C`, - temperature: 21, - month: `Mar` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 3, - tempInfo: `19°C`, - temperature: 19, - month: `Apr` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 4, - tempInfo: `16°C`, - temperature: 16, - month: `May` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 5, - tempInfo: `13°C`, - temperature: 13, - month: `Jun` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 6, - tempInfo: `14°C`, - temperature: 14, - month: `Jul` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 7, - tempInfo: `15°C`, - temperature: 15, - month: `Aug` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 8, - tempInfo: `19°C`, - temperature: 19, - month: `Sep` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 9, - tempInfo: `22°C`, - temperature: 22, - month: `Oct` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 10, - tempInfo: `26°C`, - temperature: 26, - month: `Nov` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 11, - tempInfo: `30°C`, - temperature: 30, - month: `Dec` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new TemperatureAnnotatedDataItem( + { + index: 0, + tempInfo: `27°C`, + temperature: 27, + month: `Jan` + }), + new TemperatureAnnotatedDataItem( + { + index: 1, + tempInfo: `25°C`, + temperature: 25, + month: `Feb` + }), + new TemperatureAnnotatedDataItem( + { + index: 2, + tempInfo: `21°C`, + temperature: 21, + month: `Mar` + }), + new TemperatureAnnotatedDataItem( + { + index: 3, + tempInfo: `19°C`, + temperature: 19, + month: `Apr` + }), + new TemperatureAnnotatedDataItem( + { + index: 4, + tempInfo: `16°C`, + temperature: 16, + month: `May` + }), + new TemperatureAnnotatedDataItem( + { + index: 5, + tempInfo: `13°C`, + temperature: 13, + month: `Jun` + }), + new TemperatureAnnotatedDataItem( + { + index: 6, + tempInfo: `14°C`, + temperature: 14, + month: `Jul` + }), + new TemperatureAnnotatedDataItem( + { + index: 7, + tempInfo: `15°C`, + temperature: 15, + month: `Aug` + }), + new TemperatureAnnotatedDataItem( + { + index: 8, + tempInfo: `19°C`, + temperature: 19, + month: `Sep` + }), + new TemperatureAnnotatedDataItem( + { + index: 9, + tempInfo: `22°C`, + temperature: 22, + month: `Oct` + }), + new TemperatureAnnotatedDataItem( + { + index: 10, + tempInfo: `26°C`, + temperature: 26, + month: `Nov` + }), + new TemperatureAnnotatedDataItem( + { + index: 11, + tempInfo: `30°C`, + temperature: 30, + month: `Dec` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/annotations-final-value/src/TemperatureAnnotatedData.ts b/samples/charts/category-chart/annotations-final-value/src/TemperatureAnnotatedData.ts index 593935daf..8524db1df 100644 --- a/samples/charts/category-chart/annotations-final-value/src/TemperatureAnnotatedData.ts +++ b/samples/charts/category-chart/annotations-final-value/src/TemperatureAnnotatedData.ts @@ -10,91 +10,97 @@ export class TemperatureAnnotatedDataItem { } export class TemperatureAnnotatedData extends Array { - public constructor() { - super(); - this.push(new TemperatureAnnotatedDataItem( - { - index: 0, - tempInfo: `27°C`, - temperature: 27, - month: `Jan` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 1, - tempInfo: `25°C`, - temperature: 25, - month: `Feb` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 2, - tempInfo: `21°C`, - temperature: 21, - month: `Mar` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 3, - tempInfo: `19°C`, - temperature: 19, - month: `Apr` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 4, - tempInfo: `16°C`, - temperature: 16, - month: `May` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 5, - tempInfo: `13°C`, - temperature: 13, - month: `Jun` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 6, - tempInfo: `14°C`, - temperature: 14, - month: `Jul` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 7, - tempInfo: `15°C`, - temperature: 15, - month: `Aug` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 8, - tempInfo: `19°C`, - temperature: 19, - month: `Sep` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 9, - tempInfo: `22°C`, - temperature: 22, - month: `Oct` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 10, - tempInfo: `26°C`, - temperature: 26, - month: `Nov` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 11, - tempInfo: `30°C`, - temperature: 30, - month: `Dec` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new TemperatureAnnotatedDataItem( + { + index: 0, + tempInfo: `27°C`, + temperature: 27, + month: `Jan` + }), + new TemperatureAnnotatedDataItem( + { + index: 1, + tempInfo: `25°C`, + temperature: 25, + month: `Feb` + }), + new TemperatureAnnotatedDataItem( + { + index: 2, + tempInfo: `21°C`, + temperature: 21, + month: `Mar` + }), + new TemperatureAnnotatedDataItem( + { + index: 3, + tempInfo: `19°C`, + temperature: 19, + month: `Apr` + }), + new TemperatureAnnotatedDataItem( + { + index: 4, + tempInfo: `16°C`, + temperature: 16, + month: `May` + }), + new TemperatureAnnotatedDataItem( + { + index: 5, + tempInfo: `13°C`, + temperature: 13, + month: `Jun` + }), + new TemperatureAnnotatedDataItem( + { + index: 6, + tempInfo: `14°C`, + temperature: 14, + month: `Jul` + }), + new TemperatureAnnotatedDataItem( + { + index: 7, + tempInfo: `15°C`, + temperature: 15, + month: `Aug` + }), + new TemperatureAnnotatedDataItem( + { + index: 8, + tempInfo: `19°C`, + temperature: 19, + month: `Sep` + }), + new TemperatureAnnotatedDataItem( + { + index: 9, + tempInfo: `22°C`, + temperature: 22, + month: `Oct` + }), + new TemperatureAnnotatedDataItem( + { + index: 10, + tempInfo: `26°C`, + temperature: 26, + month: `Nov` + }), + new TemperatureAnnotatedDataItem( + { + index: 11, + tempInfo: `30°C`, + temperature: 30, + month: `Dec` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/annotations-highlighting/src/TemperatureAnnotatedData.ts b/samples/charts/category-chart/annotations-highlighting/src/TemperatureAnnotatedData.ts index 593935daf..8524db1df 100644 --- a/samples/charts/category-chart/annotations-highlighting/src/TemperatureAnnotatedData.ts +++ b/samples/charts/category-chart/annotations-highlighting/src/TemperatureAnnotatedData.ts @@ -10,91 +10,97 @@ export class TemperatureAnnotatedDataItem { } export class TemperatureAnnotatedData extends Array { - public constructor() { - super(); - this.push(new TemperatureAnnotatedDataItem( - { - index: 0, - tempInfo: `27°C`, - temperature: 27, - month: `Jan` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 1, - tempInfo: `25°C`, - temperature: 25, - month: `Feb` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 2, - tempInfo: `21°C`, - temperature: 21, - month: `Mar` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 3, - tempInfo: `19°C`, - temperature: 19, - month: `Apr` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 4, - tempInfo: `16°C`, - temperature: 16, - month: `May` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 5, - tempInfo: `13°C`, - temperature: 13, - month: `Jun` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 6, - tempInfo: `14°C`, - temperature: 14, - month: `Jul` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 7, - tempInfo: `15°C`, - temperature: 15, - month: `Aug` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 8, - tempInfo: `19°C`, - temperature: 19, - month: `Sep` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 9, - tempInfo: `22°C`, - temperature: 22, - month: `Oct` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 10, - tempInfo: `26°C`, - temperature: 26, - month: `Nov` - })); - this.push(new TemperatureAnnotatedDataItem( - { - index: 11, - tempInfo: `30°C`, - temperature: 30, - month: `Dec` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new TemperatureAnnotatedDataItem( + { + index: 0, + tempInfo: `27°C`, + temperature: 27, + month: `Jan` + }), + new TemperatureAnnotatedDataItem( + { + index: 1, + tempInfo: `25°C`, + temperature: 25, + month: `Feb` + }), + new TemperatureAnnotatedDataItem( + { + index: 2, + tempInfo: `21°C`, + temperature: 21, + month: `Mar` + }), + new TemperatureAnnotatedDataItem( + { + index: 3, + tempInfo: `19°C`, + temperature: 19, + month: `Apr` + }), + new TemperatureAnnotatedDataItem( + { + index: 4, + tempInfo: `16°C`, + temperature: 16, + month: `May` + }), + new TemperatureAnnotatedDataItem( + { + index: 5, + tempInfo: `13°C`, + temperature: 13, + month: `Jun` + }), + new TemperatureAnnotatedDataItem( + { + index: 6, + tempInfo: `14°C`, + temperature: 14, + month: `Jul` + }), + new TemperatureAnnotatedDataItem( + { + index: 7, + tempInfo: `15°C`, + temperature: 15, + month: `Aug` + }), + new TemperatureAnnotatedDataItem( + { + index: 8, + tempInfo: `19°C`, + temperature: 19, + month: `Sep` + }), + new TemperatureAnnotatedDataItem( + { + index: 9, + tempInfo: `22°C`, + temperature: 22, + month: `Oct` + }), + new TemperatureAnnotatedDataItem( + { + index: 10, + tempInfo: `26°C`, + temperature: 26, + month: `Nov` + }), + new TemperatureAnnotatedDataItem( + { + index: 11, + tempInfo: `30°C`, + temperature: 30, + month: `Dec` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/area-chart-multiple-sources/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/area-chart-multiple-sources/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/area-chart-multiple-sources/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/area-chart-single-source/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/area-chart-single-source/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/area-chart-single-source/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/area-chart-single-source/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/area-chart-styling/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/area-chart-styling/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/area-chart-styling/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/area-chart-styling/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/axis-gap/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/axis-gap/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/axis-gap/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/axis-gap/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/axis-gridlines/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/axis-gridlines/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/axis-gridlines/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/axis-gridlines/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/axis-inverted/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/axis-inverted/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/axis-inverted/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/axis-inverted/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/axis-labels/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/axis-labels/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/axis-labels/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/axis-labels/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/axis-locations/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/axis-locations/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/axis-locations/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/axis-locations/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/axis-options/src/OlympicMedalsTopCountries.ts b/samples/charts/category-chart/axis-options/src/OlympicMedalsTopCountries.ts index 45d151ca4..cc2f85cf7 100644 --- a/samples/charts/category-chart/axis-options/src/OlympicMedalsTopCountries.ts +++ b/samples/charts/category-chart/axis-options/src/OlympicMedalsTopCountries.ts @@ -10,49 +10,55 @@ export class OlympicMedalsTopCountriesItem { } export class OlympicMedalsTopCountries extends Array { - public constructor() { - super(); - this.push(new OlympicMedalsTopCountriesItem( - { - year: `1996`, - america: 148, - china: 110, - russia: 95 - })); - this.push(new OlympicMedalsTopCountriesItem( - { - year: `2000`, - america: 142, - china: 115, - russia: 91 - })); - this.push(new OlympicMedalsTopCountriesItem( - { - year: `2004`, - america: 134, - china: 121, - russia: 86 - })); - this.push(new OlympicMedalsTopCountriesItem( - { - year: `2008`, - america: 131, - china: 129, - russia: 65 - })); - this.push(new OlympicMedalsTopCountriesItem( - { - year: `2012`, - america: 135, - china: 115, - russia: 77 - })); - this.push(new OlympicMedalsTopCountriesItem( - { - year: `2016`, - america: 146, - china: 112, - russia: 88 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OlympicMedalsTopCountriesItem( + { + year: `1996`, + america: 148, + china: 110, + russia: 95 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2000`, + america: 142, + china: 115, + russia: 91 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2004`, + america: 134, + china: 121, + russia: 86 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2008`, + america: 131, + china: 129, + russia: 65 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2012`, + america: 135, + china: 115, + russia: 77 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2016`, + america: 146, + china: 112, + russia: 88 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/axis-overlap/src/HighestGrossingMovies.ts b/samples/charts/category-chart/axis-overlap/src/HighestGrossingMovies.ts index 1d92f1541..dea3e62a4 100644 --- a/samples/charts/category-chart/axis-overlap/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/axis-overlap/src/HighestGrossingMovies.ts @@ -9,43 +9,49 @@ export class HighestGrossingMoviesItem { } export class HighestGrossingMovies extends Array { - public constructor() { - super(); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Marvel Universe`, - totalRevenue: 22.55, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Star Wars`, - totalRevenue: 10.32, - highestGrossing: 2.07 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Harry Potter`, - totalRevenue: 9.19, - highestGrossing: 1.34 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Avengers`, - totalRevenue: 7.76, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Spider Man`, - totalRevenue: 7.22, - highestGrossing: 1.28 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `James Bond`, - totalRevenue: 7.12, - highestGrossing: 1.11 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new HighestGrossingMoviesItem( + { + franchise: `Marvel Universe`, + totalRevenue: 22.55, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Star Wars`, + totalRevenue: 10.32, + highestGrossing: 2.07 + }), + new HighestGrossingMoviesItem( + { + franchise: `Harry Potter`, + totalRevenue: 9.19, + highestGrossing: 1.34 + }), + new HighestGrossingMoviesItem( + { + franchise: `Avengers`, + totalRevenue: 7.76, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Spider Man`, + totalRevenue: 7.22, + highestGrossing: 1.28 + }), + new HighestGrossingMoviesItem( + { + franchise: `James Bond`, + totalRevenue: 7.12, + highestGrossing: 1.11 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/axis-range/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/axis-range/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/axis-range/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/axis-range/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/axis-tickmarks/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/axis-tickmarks/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/axis-tickmarks/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/axis-tickmarks/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/axis-titles/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/axis-titles/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/axis-titles/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/axis-titles/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/HighestGrossingMovies.ts b/samples/charts/category-chart/column-chart-multiple-sources/src/HighestGrossingMovies.ts index 1d92f1541..dea3e62a4 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/column-chart-multiple-sources/src/HighestGrossingMovies.ts @@ -9,43 +9,49 @@ export class HighestGrossingMoviesItem { } export class HighestGrossingMovies extends Array { - public constructor() { - super(); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Marvel Universe`, - totalRevenue: 22.55, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Star Wars`, - totalRevenue: 10.32, - highestGrossing: 2.07 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Harry Potter`, - totalRevenue: 9.19, - highestGrossing: 1.34 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Avengers`, - totalRevenue: 7.76, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Spider Man`, - totalRevenue: 7.22, - highestGrossing: 1.28 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `James Bond`, - totalRevenue: 7.12, - highestGrossing: 1.11 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new HighestGrossingMoviesItem( + { + franchise: `Marvel Universe`, + totalRevenue: 22.55, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Star Wars`, + totalRevenue: 10.32, + highestGrossing: 2.07 + }), + new HighestGrossingMoviesItem( + { + franchise: `Harry Potter`, + totalRevenue: 9.19, + highestGrossing: 1.34 + }), + new HighestGrossingMoviesItem( + { + franchise: `Avengers`, + totalRevenue: 7.76, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Spider Man`, + totalRevenue: 7.22, + highestGrossing: 1.28 + }), + new HighestGrossingMoviesItem( + { + franchise: `James Bond`, + totalRevenue: 7.12, + highestGrossing: 1.11 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/column-chart-single-source/src/TemperatureAverageData.ts b/samples/charts/category-chart/column-chart-single-source/src/TemperatureAverageData.ts index d7440b746..8b7b074b7 100644 --- a/samples/charts/category-chart/column-chart-single-source/src/TemperatureAverageData.ts +++ b/samples/charts/category-chart/column-chart-single-source/src/TemperatureAverageData.ts @@ -8,67 +8,73 @@ export class TemperatureAverageDataItem { } export class TemperatureAverageData extends Array { - public constructor() { - super(); - this.push(new TemperatureAverageDataItem( - { - month: `Jan`, - temperature: 3 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Feb`, - temperature: 4 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Mar`, - temperature: 9 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Apr`, - temperature: 15 - })); - this.push(new TemperatureAverageDataItem( - { - month: `May`, - temperature: 21 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Jun`, - temperature: 26 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Jul`, - temperature: 29 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Aug`, - temperature: 28 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Sep`, - temperature: 24 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Oct`, - temperature: 18 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Nov`, - temperature: 11 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Dec`, - temperature: 5 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new TemperatureAverageDataItem( + { + month: `Jan`, + temperature: 3 + }), + new TemperatureAverageDataItem( + { + month: `Feb`, + temperature: 4 + }), + new TemperatureAverageDataItem( + { + month: `Mar`, + temperature: 9 + }), + new TemperatureAverageDataItem( + { + month: `Apr`, + temperature: 15 + }), + new TemperatureAverageDataItem( + { + month: `May`, + temperature: 21 + }), + new TemperatureAverageDataItem( + { + month: `Jun`, + temperature: 26 + }), + new TemperatureAverageDataItem( + { + month: `Jul`, + temperature: 29 + }), + new TemperatureAverageDataItem( + { + month: `Aug`, + temperature: 28 + }), + new TemperatureAverageDataItem( + { + month: `Sep`, + temperature: 24 + }), + new TemperatureAverageDataItem( + { + month: `Oct`, + temperature: 18 + }), + new TemperatureAverageDataItem( + { + month: `Nov`, + temperature: 11 + }), + new TemperatureAverageDataItem( + { + month: `Dec`, + temperature: 5 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/column-chart-styling/src/EnergyRenewableConsumption.ts b/samples/charts/category-chart/column-chart-styling/src/EnergyRenewableConsumption.ts index 014e9c455..03270b7b3 100644 --- a/samples/charts/category-chart/column-chart-styling/src/EnergyRenewableConsumption.ts +++ b/samples/charts/category-chart/column-chart-styling/src/EnergyRenewableConsumption.ts @@ -12,52 +12,58 @@ export class EnergyRenewableConsumptionItem { } export class EnergyRenewableConsumption extends Array { - public constructor() { - super(); - this.push(new EnergyRenewableConsumptionItem( - { - location: `China`, - year: 2019, - hydro: 1269.5, - solar: 223, - wind: 405.2, - other: 102.8 - })); - this.push(new EnergyRenewableConsumptionItem( - { - location: `Europe`, - year: 2019, - hydro: 632.54, - solar: 154, - wind: 461.3, - other: 220.3 - })); - this.push(new EnergyRenewableConsumptionItem( - { - location: `USA`, - year: 2019, - hydro: 271.16, - solar: 108, - wind: 303.4, - other: 78.34 - })); - this.push(new EnergyRenewableConsumptionItem( - { - location: `Brazil`, - year: 2019, - hydro: 399.3, - solar: 5.5, - wind: 55.83, - other: 56.25 - })); - this.push(new EnergyRenewableConsumptionItem( - { - location: `Canada`, - year: 2019, - hydro: 381.98, - solar: 4.3, - wind: 34.17, - other: 10.81 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyRenewableConsumptionItem( + { + location: `China`, + year: 2019, + hydro: 1269.5, + solar: 223, + wind: 405.2, + other: 102.8 + }), + new EnergyRenewableConsumptionItem( + { + location: `Europe`, + year: 2019, + hydro: 632.54, + solar: 154, + wind: 461.3, + other: 220.3 + }), + new EnergyRenewableConsumptionItem( + { + location: `USA`, + year: 2019, + hydro: 271.16, + solar: 108, + wind: 303.4, + other: 78.34 + }), + new EnergyRenewableConsumptionItem( + { + location: `Brazil`, + year: 2019, + hydro: 399.3, + solar: 5.5, + wind: 55.83, + other: 56.25 + }), + new EnergyRenewableConsumptionItem( + { + location: `Canada`, + year: 2019, + hydro: 381.98, + solar: 4.3, + wind: 34.17, + other: 10.81 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/src/HighestGrossingMovies.ts b/samples/charts/category-chart/column-chart-with-tooltips/src/HighestGrossingMovies.ts index 1d92f1541..dea3e62a4 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/column-chart-with-tooltips/src/HighestGrossingMovies.ts @@ -9,43 +9,49 @@ export class HighestGrossingMoviesItem { } export class HighestGrossingMovies extends Array { - public constructor() { - super(); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Marvel Universe`, - totalRevenue: 22.55, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Star Wars`, - totalRevenue: 10.32, - highestGrossing: 2.07 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Harry Potter`, - totalRevenue: 9.19, - highestGrossing: 1.34 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Avengers`, - totalRevenue: 7.76, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Spider Man`, - totalRevenue: 7.22, - highestGrossing: 1.28 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `James Bond`, - totalRevenue: 7.12, - highestGrossing: 1.11 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new HighestGrossingMoviesItem( + { + franchise: `Marvel Universe`, + totalRevenue: 22.55, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Star Wars`, + totalRevenue: 10.32, + highestGrossing: 2.07 + }), + new HighestGrossingMoviesItem( + { + franchise: `Harry Potter`, + totalRevenue: 9.19, + highestGrossing: 1.34 + }), + new HighestGrossingMoviesItem( + { + franchise: `Avengers`, + totalRevenue: 7.76, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Spider Man`, + totalRevenue: 7.22, + highestGrossing: 1.28 + }), + new HighestGrossingMoviesItem( + { + franchise: `James Bond`, + totalRevenue: 7.12, + highestGrossing: 1.11 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/custom-selection/src/SelectableData.ts b/samples/charts/category-chart/custom-selection/src/SelectableData.ts index cf0b49e67..609dc985b 100644 --- a/samples/charts/category-chart/custom-selection/src/SelectableData.ts +++ b/samples/charts/category-chart/custom-selection/src/SelectableData.ts @@ -9,103 +9,109 @@ export class SelectableDataItem { } export class SelectableData extends Array { - public constructor() { - super(); - this.push(new SelectableDataItem( - { - category: `2010`, - dataValue: 20, - selectedValue: 20 - })); - this.push(new SelectableDataItem( - { - category: `2011`, - dataValue: 40, - selectedValue: null - })); - this.push(new SelectableDataItem( - { - category: `2012`, - dataValue: 35, - selectedValue: null - })); - this.push(new SelectableDataItem( - { - category: `2013`, - dataValue: 50, - selectedValue: 50 - })); - this.push(new SelectableDataItem( - { - category: `2014`, - dataValue: 45, - selectedValue: null - })); - this.push(new SelectableDataItem( - { - category: `2015`, - dataValue: 60, - selectedValue: 60 - })); - this.push(new SelectableDataItem( - { - category: `2016`, - dataValue: 35, - selectedValue: null - })); - this.push(new SelectableDataItem( - { - category: `2017`, - dataValue: 40, - selectedValue: null - })); - this.push(new SelectableDataItem( - { - category: `2018`, - dataValue: 50, - selectedValue: 50 - })); - this.push(new SelectableDataItem( - { - category: `2019`, - dataValue: 75, - selectedValue: 75 - })); - this.push(new SelectableDataItem( - { - category: `2020`, - dataValue: 65, - selectedValue: null - })); - this.push(new SelectableDataItem( - { - category: `2021`, - dataValue: 40, - selectedValue: null - })); - this.push(new SelectableDataItem( - { - category: `2022`, - dataValue: 50, - selectedValue: null - })); - this.push(new SelectableDataItem( - { - category: `2023`, - dataValue: 65, - selectedValue: 65 - })); - this.push(new SelectableDataItem( - { - category: `2024`, - dataValue: 70, - selectedValue: 70 - })); - this.push(new SelectableDataItem( - { - category: `2025`, - dataValue: 85, - selectedValue: null - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new SelectableDataItem( + { + category: `2010`, + dataValue: 20, + selectedValue: 20 + }), + new SelectableDataItem( + { + category: `2011`, + dataValue: 40, + selectedValue: null + }), + new SelectableDataItem( + { + category: `2012`, + dataValue: 35, + selectedValue: null + }), + new SelectableDataItem( + { + category: `2013`, + dataValue: 50, + selectedValue: 50 + }), + new SelectableDataItem( + { + category: `2014`, + dataValue: 45, + selectedValue: null + }), + new SelectableDataItem( + { + category: `2015`, + dataValue: 60, + selectedValue: 60 + }), + new SelectableDataItem( + { + category: `2016`, + dataValue: 35, + selectedValue: null + }), + new SelectableDataItem( + { + category: `2017`, + dataValue: 40, + selectedValue: null + }), + new SelectableDataItem( + { + category: `2018`, + dataValue: 50, + selectedValue: 50 + }), + new SelectableDataItem( + { + category: `2019`, + dataValue: 75, + selectedValue: 75 + }), + new SelectableDataItem( + { + category: `2020`, + dataValue: 65, + selectedValue: null + }), + new SelectableDataItem( + { + category: `2021`, + dataValue: 40, + selectedValue: null + }), + new SelectableDataItem( + { + category: `2022`, + dataValue: 50, + selectedValue: null + }), + new SelectableDataItem( + { + category: `2023`, + dataValue: 65, + selectedValue: 65 + }), + new SelectableDataItem( + { + category: `2024`, + dataValue: 70, + selectedValue: 70 + }), + new SelectableDataItem( + { + category: `2025`, + dataValue: 85, + selectedValue: null + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/HighestGrossingMovies.ts b/samples/charts/category-chart/data-legend-formatting-decimals/src/HighestGrossingMovies.ts index 1d92f1541..dea3e62a4 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/data-legend-formatting-decimals/src/HighestGrossingMovies.ts @@ -9,43 +9,49 @@ export class HighestGrossingMoviesItem { } export class HighestGrossingMovies extends Array { - public constructor() { - super(); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Marvel Universe`, - totalRevenue: 22.55, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Star Wars`, - totalRevenue: 10.32, - highestGrossing: 2.07 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Harry Potter`, - totalRevenue: 9.19, - highestGrossing: 1.34 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Avengers`, - totalRevenue: 7.76, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Spider Man`, - totalRevenue: 7.22, - highestGrossing: 1.28 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `James Bond`, - totalRevenue: 7.12, - highestGrossing: 1.11 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new HighestGrossingMoviesItem( + { + franchise: `Marvel Universe`, + totalRevenue: 22.55, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Star Wars`, + totalRevenue: 10.32, + highestGrossing: 2.07 + }), + new HighestGrossingMoviesItem( + { + franchise: `Harry Potter`, + totalRevenue: 9.19, + highestGrossing: 1.34 + }), + new HighestGrossingMoviesItem( + { + franchise: `Avengers`, + totalRevenue: 7.76, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Spider Man`, + totalRevenue: 7.22, + highestGrossing: 1.28 + }), + new HighestGrossingMoviesItem( + { + franchise: `James Bond`, + totalRevenue: 7.12, + highestGrossing: 1.11 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/data-legend/src/HighestGrossingMovies.ts b/samples/charts/category-chart/data-legend/src/HighestGrossingMovies.ts index 1d92f1541..dea3e62a4 100644 --- a/samples/charts/category-chart/data-legend/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/data-legend/src/HighestGrossingMovies.ts @@ -9,43 +9,49 @@ export class HighestGrossingMoviesItem { } export class HighestGrossingMovies extends Array { - public constructor() { - super(); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Marvel Universe`, - totalRevenue: 22.55, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Star Wars`, - totalRevenue: 10.32, - highestGrossing: 2.07 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Harry Potter`, - totalRevenue: 9.19, - highestGrossing: 1.34 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Avengers`, - totalRevenue: 7.76, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Spider Man`, - totalRevenue: 7.22, - highestGrossing: 1.28 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `James Bond`, - totalRevenue: 7.12, - highestGrossing: 1.11 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new HighestGrossingMoviesItem( + { + franchise: `Marvel Universe`, + totalRevenue: 22.55, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Star Wars`, + totalRevenue: 10.32, + highestGrossing: 2.07 + }), + new HighestGrossingMoviesItem( + { + franchise: `Harry Potter`, + totalRevenue: 9.19, + highestGrossing: 1.34 + }), + new HighestGrossingMoviesItem( + { + franchise: `Avengers`, + totalRevenue: 7.76, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Spider Man`, + totalRevenue: 7.22, + highestGrossing: 1.28 + }), + new HighestGrossingMoviesItem( + { + franchise: `James Bond`, + totalRevenue: 7.12, + highestGrossing: 1.11 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/HighestGrossingMovies.ts b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/HighestGrossingMovies.ts index 1d92f1541..dea3e62a4 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/HighestGrossingMovies.ts @@ -9,43 +9,49 @@ export class HighestGrossingMoviesItem { } export class HighestGrossingMovies extends Array { - public constructor() { - super(); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Marvel Universe`, - totalRevenue: 22.55, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Star Wars`, - totalRevenue: 10.32, - highestGrossing: 2.07 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Harry Potter`, - totalRevenue: 9.19, - highestGrossing: 1.34 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Avengers`, - totalRevenue: 7.76, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Spider Man`, - totalRevenue: 7.22, - highestGrossing: 1.28 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `James Bond`, - totalRevenue: 7.12, - highestGrossing: 1.11 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new HighestGrossingMoviesItem( + { + franchise: `Marvel Universe`, + totalRevenue: 22.55, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Star Wars`, + totalRevenue: 10.32, + highestGrossing: 2.07 + }), + new HighestGrossingMoviesItem( + { + franchise: `Harry Potter`, + totalRevenue: 9.19, + highestGrossing: 1.34 + }), + new HighestGrossingMoviesItem( + { + franchise: `Avengers`, + totalRevenue: 7.76, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Spider Man`, + totalRevenue: 7.22, + highestGrossing: 1.28 + }), + new HighestGrossingMoviesItem( + { + franchise: `James Bond`, + totalRevenue: 7.12, + highestGrossing: 1.11 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/src/HighestGrossingMovies.ts b/samples/charts/category-chart/data-tooltip-positioning/src/HighestGrossingMovies.ts index 1d92f1541..dea3e62a4 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/data-tooltip-positioning/src/HighestGrossingMovies.ts @@ -9,43 +9,49 @@ export class HighestGrossingMoviesItem { } export class HighestGrossingMovies extends Array { - public constructor() { - super(); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Marvel Universe`, - totalRevenue: 22.55, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Star Wars`, - totalRevenue: 10.32, - highestGrossing: 2.07 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Harry Potter`, - totalRevenue: 9.19, - highestGrossing: 1.34 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Avengers`, - totalRevenue: 7.76, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Spider Man`, - totalRevenue: 7.22, - highestGrossing: 1.28 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `James Bond`, - totalRevenue: 7.12, - highestGrossing: 1.11 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new HighestGrossingMoviesItem( + { + franchise: `Marvel Universe`, + totalRevenue: 22.55, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Star Wars`, + totalRevenue: 10.32, + highestGrossing: 2.07 + }), + new HighestGrossingMoviesItem( + { + franchise: `Harry Potter`, + totalRevenue: 9.19, + highestGrossing: 1.34 + }), + new HighestGrossingMoviesItem( + { + franchise: `Avengers`, + totalRevenue: 7.76, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Spider Man`, + totalRevenue: 7.22, + highestGrossing: 1.28 + }), + new HighestGrossingMoviesItem( + { + franchise: `James Bond`, + totalRevenue: 7.12, + highestGrossing: 1.11 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/data-tooltip/src/HighestGrossingMovies.ts b/samples/charts/category-chart/data-tooltip/src/HighestGrossingMovies.ts index 1d92f1541..dea3e62a4 100644 --- a/samples/charts/category-chart/data-tooltip/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/data-tooltip/src/HighestGrossingMovies.ts @@ -9,43 +9,49 @@ export class HighestGrossingMoviesItem { } export class HighestGrossingMovies extends Array { - public constructor() { - super(); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Marvel Universe`, - totalRevenue: 22.55, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Star Wars`, - totalRevenue: 10.32, - highestGrossing: 2.07 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Harry Potter`, - totalRevenue: 9.19, - highestGrossing: 1.34 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Avengers`, - totalRevenue: 7.76, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Spider Man`, - totalRevenue: 7.22, - highestGrossing: 1.28 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `James Bond`, - totalRevenue: 7.12, - highestGrossing: 1.11 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new HighestGrossingMoviesItem( + { + franchise: `Marvel Universe`, + totalRevenue: 22.55, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Star Wars`, + totalRevenue: 10.32, + highestGrossing: 2.07 + }), + new HighestGrossingMoviesItem( + { + franchise: `Harry Potter`, + totalRevenue: 9.19, + highestGrossing: 1.34 + }), + new HighestGrossingMoviesItem( + { + franchise: `Avengers`, + totalRevenue: 7.76, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Spider Man`, + totalRevenue: 7.22, + highestGrossing: 1.28 + }), + new HighestGrossingMoviesItem( + { + franchise: `James Bond`, + totalRevenue: 7.12, + highestGrossing: 1.11 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/format-specifiers/src/HighestGrossingMovies.ts b/samples/charts/category-chart/format-specifiers/src/HighestGrossingMovies.ts index 1d92f1541..dea3e62a4 100644 --- a/samples/charts/category-chart/format-specifiers/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/format-specifiers/src/HighestGrossingMovies.ts @@ -9,43 +9,49 @@ export class HighestGrossingMoviesItem { } export class HighestGrossingMovies extends Array { - public constructor() { - super(); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Marvel Universe`, - totalRevenue: 22.55, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Star Wars`, - totalRevenue: 10.32, - highestGrossing: 2.07 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Harry Potter`, - totalRevenue: 9.19, - highestGrossing: 1.34 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Avengers`, - totalRevenue: 7.76, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Spider Man`, - totalRevenue: 7.22, - highestGrossing: 1.28 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `James Bond`, - totalRevenue: 7.12, - highestGrossing: 1.11 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new HighestGrossingMoviesItem( + { + franchise: `Marvel Universe`, + totalRevenue: 22.55, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Star Wars`, + totalRevenue: 10.32, + highestGrossing: 2.07 + }), + new HighestGrossingMoviesItem( + { + franchise: `Harry Potter`, + totalRevenue: 9.19, + highestGrossing: 1.34 + }), + new HighestGrossingMoviesItem( + { + franchise: `Avengers`, + totalRevenue: 7.76, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Spider Man`, + totalRevenue: 7.22, + highestGrossing: 1.28 + }), + new HighestGrossingMoviesItem( + { + franchise: `James Bond`, + totalRevenue: 7.12, + highestGrossing: 1.11 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/line-chart-multiple-sources/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/line-chart-multiple-sources/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/line-chart-single-source/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/line-chart-single-source/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/line-chart-single-source/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/line-chart-single-source/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/line-chart-styling/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/line-chart-styling/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/line-chart-styling/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/line-chart-styling/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/marker-options/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/marker-options/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/marker-options/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/marker-options/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/overview/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/overview/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/overview/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/overview/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/point-chart-multiple-sources/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/point-chart-multiple-sources/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/point-chart-single-source/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/point-chart-single-source/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/point-chart-single-source/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/point-chart-single-source/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/point-chart-styling/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/point-chart-styling/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/point-chart-styling/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/point-chart-styling/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/spline-area-multiple-sources/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/spline-area-multiple-sources/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/spline-area-single-source/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/spline-area-single-source/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/spline-area-single-source/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/spline-area-single-source/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/spline-area-styling/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/spline-area-styling/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/spline-area-styling/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/spline-area-styling/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/spline-multiple-sources/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/spline-multiple-sources/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/spline-multiple-sources/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/spline-multiple-sources/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/spline-single-source/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/spline-single-source/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/spline-single-source/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/spline-single-source/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/spline-styling/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/spline-styling/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/spline-styling/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/spline-styling/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/step-area-multiple-sources/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/step-area-multiple-sources/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/step-area-multiple-sources/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/step-area-single-source/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/step-area-single-source/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/step-area-single-source/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/step-area-single-source/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/step-area-styling/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/step-area-styling/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/step-area-styling/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/step-area-styling/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/step-line-multiple-sources/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/step-line-multiple-sources/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/step-line-multiple-sources/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/step-line-single-source/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/step-line-single-source/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/step-line-single-source/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/step-line-single-source/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/step-line-styling/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/step-line-styling/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/step-line-styling/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/step-line-styling/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/category-chart/value-lines/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/value-lines/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/category-chart/value-lines/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/value-lines/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/annotations-custom/src/CountryRenewableCallouts.ts b/samples/charts/data-chart/annotations-custom/src/CountryRenewableCallouts.ts index dc570aea9..6005bb7c2 100644 --- a/samples/charts/data-chart/annotations-custom/src/CountryRenewableCallouts.ts +++ b/samples/charts/data-chart/annotations-custom/src/CountryRenewableCallouts.ts @@ -9,79 +9,85 @@ export class CountryRenewableCalloutsItem { } export class CountryRenewableCallouts extends Array { - public constructor() { - super(); - this.push(new CountryRenewableCalloutsItem( - { - index: 0, - label: `19 TWh`, - value: 19 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 1, - label: `24 TWh`, - value: 24 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 2, - label: `28 TWh`, - value: 28 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 3, - label: `26 TWh`, - value: 26 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 4, - label: `38 TWh`, - value: 38 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 5, - label: `31 TWh`, - value: 31 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 6, - label: `19 TWh`, - value: 19 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 7, - label: `52 TWh`, - value: 52 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 8, - label: `50 TWh`, - value: 50 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 9, - label: `34 TWh`, - value: 34 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 10, - label: `38 TWh`, - value: 34 - })); - this.push(new CountryRenewableCalloutsItem( - { - index: 11, - label: `38 TWh`, - value: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableCalloutsItem( + { + index: 0, + label: `19 TWh`, + value: 19 + }), + new CountryRenewableCalloutsItem( + { + index: 1, + label: `24 TWh`, + value: 24 + }), + new CountryRenewableCalloutsItem( + { + index: 2, + label: `28 TWh`, + value: 28 + }), + new CountryRenewableCalloutsItem( + { + index: 3, + label: `26 TWh`, + value: 26 + }), + new CountryRenewableCalloutsItem( + { + index: 4, + label: `38 TWh`, + value: 38 + }), + new CountryRenewableCalloutsItem( + { + index: 5, + label: `31 TWh`, + value: 31 + }), + new CountryRenewableCalloutsItem( + { + index: 6, + label: `19 TWh`, + value: 19 + }), + new CountryRenewableCalloutsItem( + { + index: 7, + label: `52 TWh`, + value: 52 + }), + new CountryRenewableCalloutsItem( + { + index: 8, + label: `50 TWh`, + value: 50 + }), + new CountryRenewableCalloutsItem( + { + index: 9, + label: `34 TWh`, + value: 34 + }), + new CountryRenewableCalloutsItem( + { + index: 10, + label: `38 TWh`, + value: 34 + }), + new CountryRenewableCalloutsItem( + { + index: 11, + label: `38 TWh`, + value: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/annotations-custom/src/CountryRenewableElectricity.ts b/samples/charts/data-chart/annotations-custom/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/data-chart/annotations-custom/src/CountryRenewableElectricity.ts +++ b/samples/charts/data-chart/annotations-custom/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/src/CountryRenewableElectricity.ts b/samples/charts/data-chart/axis-annotations-corner-radius/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/src/CountryRenewableElectricity.ts +++ b/samples/charts/data-chart/axis-annotations-corner-radius/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/axis-label-rotation/src/TemperatureAverageDataLongLabels.ts b/samples/charts/data-chart/axis-label-rotation/src/TemperatureAverageDataLongLabels.ts index fa254150a..3d1a82d1d 100644 --- a/samples/charts/data-chart/axis-label-rotation/src/TemperatureAverageDataLongLabels.ts +++ b/samples/charts/data-chart/axis-label-rotation/src/TemperatureAverageDataLongLabels.ts @@ -8,67 +8,73 @@ export class TemperatureAverageDataLongLabelsItem { } export class TemperatureAverageDataLongLabels extends Array { - public constructor() { - super(); - this.push(new TemperatureAverageDataLongLabelsItem( - { - month: `January`, - temperature: 3 - })); - this.push(new TemperatureAverageDataLongLabelsItem( - { - month: `February`, - temperature: 4 - })); - this.push(new TemperatureAverageDataLongLabelsItem( - { - month: `March`, - temperature: 9 - })); - this.push(new TemperatureAverageDataLongLabelsItem( - { - month: `April`, - temperature: 15 - })); - this.push(new TemperatureAverageDataLongLabelsItem( - { - month: `May`, - temperature: 21 - })); - this.push(new TemperatureAverageDataLongLabelsItem( - { - month: `Jun`, - temperature: 26 - })); - this.push(new TemperatureAverageDataLongLabelsItem( - { - month: `July`, - temperature: 29 - })); - this.push(new TemperatureAverageDataLongLabelsItem( - { - month: `August`, - temperature: 28 - })); - this.push(new TemperatureAverageDataLongLabelsItem( - { - month: `September`, - temperature: 24 - })); - this.push(new TemperatureAverageDataLongLabelsItem( - { - month: `October`, - temperature: 18 - })); - this.push(new TemperatureAverageDataLongLabelsItem( - { - month: `November`, - temperature: 11 - })); - this.push(new TemperatureAverageDataLongLabelsItem( - { - month: `December`, - temperature: 5 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new TemperatureAverageDataLongLabelsItem( + { + month: `January`, + temperature: 3 + }), + new TemperatureAverageDataLongLabelsItem( + { + month: `February`, + temperature: 4 + }), + new TemperatureAverageDataLongLabelsItem( + { + month: `March`, + temperature: 9 + }), + new TemperatureAverageDataLongLabelsItem( + { + month: `April`, + temperature: 15 + }), + new TemperatureAverageDataLongLabelsItem( + { + month: `May`, + temperature: 21 + }), + new TemperatureAverageDataLongLabelsItem( + { + month: `Jun`, + temperature: 26 + }), + new TemperatureAverageDataLongLabelsItem( + { + month: `July`, + temperature: 29 + }), + new TemperatureAverageDataLongLabelsItem( + { + month: `August`, + temperature: 28 + }), + new TemperatureAverageDataLongLabelsItem( + { + month: `September`, + temperature: 24 + }), + new TemperatureAverageDataLongLabelsItem( + { + month: `October`, + temperature: 18 + }), + new TemperatureAverageDataLongLabelsItem( + { + month: `November`, + temperature: 11 + }), + new TemperatureAverageDataLongLabelsItem( + { + month: `December`, + temperature: 5 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/axis-min-max-gap/src/TemperatureAverageData.ts b/samples/charts/data-chart/axis-min-max-gap/src/TemperatureAverageData.ts index d7440b746..8b7b074b7 100644 --- a/samples/charts/data-chart/axis-min-max-gap/src/TemperatureAverageData.ts +++ b/samples/charts/data-chart/axis-min-max-gap/src/TemperatureAverageData.ts @@ -8,67 +8,73 @@ export class TemperatureAverageDataItem { } export class TemperatureAverageData extends Array { - public constructor() { - super(); - this.push(new TemperatureAverageDataItem( - { - month: `Jan`, - temperature: 3 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Feb`, - temperature: 4 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Mar`, - temperature: 9 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Apr`, - temperature: 15 - })); - this.push(new TemperatureAverageDataItem( - { - month: `May`, - temperature: 21 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Jun`, - temperature: 26 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Jul`, - temperature: 29 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Aug`, - temperature: 28 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Sep`, - temperature: 24 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Oct`, - temperature: 18 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Nov`, - temperature: 11 - })); - this.push(new TemperatureAverageDataItem( - { - month: `Dec`, - temperature: 5 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new TemperatureAverageDataItem( + { + month: `Jan`, + temperature: 3 + }), + new TemperatureAverageDataItem( + { + month: `Feb`, + temperature: 4 + }), + new TemperatureAverageDataItem( + { + month: `Mar`, + temperature: 9 + }), + new TemperatureAverageDataItem( + { + month: `Apr`, + temperature: 15 + }), + new TemperatureAverageDataItem( + { + month: `May`, + temperature: 21 + }), + new TemperatureAverageDataItem( + { + month: `Jun`, + temperature: 26 + }), + new TemperatureAverageDataItem( + { + month: `Jul`, + temperature: 29 + }), + new TemperatureAverageDataItem( + { + month: `Aug`, + temperature: 28 + }), + new TemperatureAverageDataItem( + { + month: `Sep`, + temperature: 24 + }), + new TemperatureAverageDataItem( + { + month: `Oct`, + temperature: 18 + }), + new TemperatureAverageDataItem( + { + month: `Nov`, + temperature: 11 + }), + new TemperatureAverageDataItem( + { + month: `Dec`, + temperature: 5 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/src/HighestGrossingMovies.ts b/samples/charts/data-chart/bar-chart-multiple-sources/src/HighestGrossingMovies.ts index 1d92f1541..dea3e62a4 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/src/HighestGrossingMovies.ts +++ b/samples/charts/data-chart/bar-chart-multiple-sources/src/HighestGrossingMovies.ts @@ -9,43 +9,49 @@ export class HighestGrossingMoviesItem { } export class HighestGrossingMovies extends Array { - public constructor() { - super(); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Marvel Universe`, - totalRevenue: 22.55, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Star Wars`, - totalRevenue: 10.32, - highestGrossing: 2.07 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Harry Potter`, - totalRevenue: 9.19, - highestGrossing: 1.34 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Avengers`, - totalRevenue: 7.76, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Spider Man`, - totalRevenue: 7.22, - highestGrossing: 1.28 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `James Bond`, - totalRevenue: 7.12, - highestGrossing: 1.11 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new HighestGrossingMoviesItem( + { + franchise: `Marvel Universe`, + totalRevenue: 22.55, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Star Wars`, + totalRevenue: 10.32, + highestGrossing: 2.07 + }), + new HighestGrossingMoviesItem( + { + franchise: `Harry Potter`, + totalRevenue: 9.19, + highestGrossing: 1.34 + }), + new HighestGrossingMoviesItem( + { + franchise: `Avengers`, + totalRevenue: 7.76, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Spider Man`, + totalRevenue: 7.22, + highestGrossing: 1.28 + }), + new HighestGrossingMoviesItem( + { + franchise: `James Bond`, + totalRevenue: 7.12, + highestGrossing: 1.11 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/src/RoadblocksToSuccess.ts b/samples/charts/data-chart/bar-chart-overlapping/src/RoadblocksToSuccess.ts index 2be099211..8d1456cc7 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/src/RoadblocksToSuccess.ts +++ b/samples/charts/data-chart/bar-chart-overlapping/src/RoadblocksToSuccess.ts @@ -12,52 +12,58 @@ export class RoadblocksToSuccessItem { } export class RoadblocksToSuccess extends Array { - public constructor() { - super(); - this.push(new RoadblocksToSuccessItem( - { - index: 0, - firstChoice: 6, - topChoices: 22, - firstChoiceLabel: `6%`, - topChoicesLabel: `22%`, - category: `Poor Prioritization of Tasks` - })); - this.push(new RoadblocksToSuccessItem( - { - index: 1, - firstChoice: 8, - topChoices: 25, - firstChoiceLabel: `8%`, - topChoicesLabel: `25%`, - category: `Poor Data Literacy` - })); - this.push(new RoadblocksToSuccessItem( - { - index: 2, - firstChoice: 10, - topChoices: 35, - firstChoiceLabel: `10%`, - topChoicesLabel: `35%`, - category: `Lack of Relevant Skills` - })); - this.push(new RoadblocksToSuccessItem( - { - index: 3, - firstChoice: 14, - topChoices: 37, - firstChoiceLabel: `14%`, - topChoicesLabel: `37%`, - category: `Lack of Resources` - })); - this.push(new RoadblocksToSuccessItem( - { - index: 4, - firstChoice: 20, - topChoices: 46, - firstChoiceLabel: `20%`, - topChoicesLabel: `46%`, - category: `Cultural Challenges` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new RoadblocksToSuccessItem( + { + index: 0, + firstChoice: 6, + topChoices: 22, + firstChoiceLabel: `6%`, + topChoicesLabel: `22%`, + category: `Poor Prioritization of Tasks` + }), + new RoadblocksToSuccessItem( + { + index: 1, + firstChoice: 8, + topChoices: 25, + firstChoiceLabel: `8%`, + topChoicesLabel: `25%`, + category: `Poor Data Literacy` + }), + new RoadblocksToSuccessItem( + { + index: 2, + firstChoice: 10, + topChoices: 35, + firstChoiceLabel: `10%`, + topChoicesLabel: `35%`, + category: `Lack of Relevant Skills` + }), + new RoadblocksToSuccessItem( + { + index: 3, + firstChoice: 14, + topChoices: 37, + firstChoiceLabel: `14%`, + topChoicesLabel: `37%`, + category: `Lack of Resources` + }), + new RoadblocksToSuccessItem( + { + index: 4, + firstChoice: 20, + topChoices: 46, + firstChoiceLabel: `20%`, + topChoicesLabel: `46%`, + category: `Cultural Challenges` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/bar-chart-single-source/src/OnlineShoppingSearches.ts b/samples/charts/data-chart/bar-chart-single-source/src/OnlineShoppingSearches.ts index a3879e82f..6ce4bb0b0 100644 --- a/samples/charts/data-chart/bar-chart-single-source/src/OnlineShoppingSearches.ts +++ b/samples/charts/data-chart/bar-chart-single-source/src/OnlineShoppingSearches.ts @@ -11,71 +11,77 @@ export class OnlineShoppingSearchesItem { } export class OnlineShoppingSearches extends Array { - public constructor() { - super(); - this.push(new OnlineShoppingSearchesItem( - { - x: 63, - y: 0, - label: `63%`, - percent: 63, - shop: `Amazon` - })); - this.push(new OnlineShoppingSearchesItem( - { - x: 48, - y: 1, - label: `48%`, - percent: 48, - shop: `Search Engines` - })); - this.push(new OnlineShoppingSearchesItem( - { - x: 33, - y: 2, - label: `33%`, - percent: 33, - shop: `Retailer Sites` - })); - this.push(new OnlineShoppingSearchesItem( - { - x: 25, - y: 3, - label: `25%`, - percent: 25, - shop: `Marketplaces` - })); - this.push(new OnlineShoppingSearchesItem( - { - x: 21, - y: 4, - label: `21%`, - percent: 21, - shop: `Brand Website` - })); - this.push(new OnlineShoppingSearchesItem( - { - x: 10, - y: 5, - label: `10%`, - percent: 10, - shop: `Comparison Sites` - })); - this.push(new OnlineShoppingSearchesItem( - { - x: 8, - y: 6, - label: `8%`, - percent: 8, - shop: `Social Media` - })); - this.push(new OnlineShoppingSearchesItem( - { - x: 2, - y: 7, - label: `2%`, - percent: 2, - shop: `Other` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OnlineShoppingSearchesItem( + { + x: 63, + y: 0, + label: `63%`, + percent: 63, + shop: `Amazon` + }), + new OnlineShoppingSearchesItem( + { + x: 48, + y: 1, + label: `48%`, + percent: 48, + shop: `Search Engines` + }), + new OnlineShoppingSearchesItem( + { + x: 33, + y: 2, + label: `33%`, + percent: 33, + shop: `Retailer Sites` + }), + new OnlineShoppingSearchesItem( + { + x: 25, + y: 3, + label: `25%`, + percent: 25, + shop: `Marketplaces` + }), + new OnlineShoppingSearchesItem( + { + x: 21, + y: 4, + label: `21%`, + percent: 21, + shop: `Brand Website` + }), + new OnlineShoppingSearchesItem( + { + x: 10, + y: 5, + label: `10%`, + percent: 10, + shop: `Comparison Sites` + }), + new OnlineShoppingSearchesItem( + { + x: 8, + y: 6, + label: `8%`, + percent: 8, + shop: `Social Media` + }), + new OnlineShoppingSearchesItem( + { + x: 2, + y: 7, + label: `2%`, + percent: 2, + shop: `Other` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/bar-chart-styling/src/OnlineShoppingSearches.ts b/samples/charts/data-chart/bar-chart-styling/src/OnlineShoppingSearches.ts index a3879e82f..6ce4bb0b0 100644 --- a/samples/charts/data-chart/bar-chart-styling/src/OnlineShoppingSearches.ts +++ b/samples/charts/data-chart/bar-chart-styling/src/OnlineShoppingSearches.ts @@ -11,71 +11,77 @@ export class OnlineShoppingSearchesItem { } export class OnlineShoppingSearches extends Array { - public constructor() { - super(); - this.push(new OnlineShoppingSearchesItem( - { - x: 63, - y: 0, - label: `63%`, - percent: 63, - shop: `Amazon` - })); - this.push(new OnlineShoppingSearchesItem( - { - x: 48, - y: 1, - label: `48%`, - percent: 48, - shop: `Search Engines` - })); - this.push(new OnlineShoppingSearchesItem( - { - x: 33, - y: 2, - label: `33%`, - percent: 33, - shop: `Retailer Sites` - })); - this.push(new OnlineShoppingSearchesItem( - { - x: 25, - y: 3, - label: `25%`, - percent: 25, - shop: `Marketplaces` - })); - this.push(new OnlineShoppingSearchesItem( - { - x: 21, - y: 4, - label: `21%`, - percent: 21, - shop: `Brand Website` - })); - this.push(new OnlineShoppingSearchesItem( - { - x: 10, - y: 5, - label: `10%`, - percent: 10, - shop: `Comparison Sites` - })); - this.push(new OnlineShoppingSearchesItem( - { - x: 8, - y: 6, - label: `8%`, - percent: 8, - shop: `Social Media` - })); - this.push(new OnlineShoppingSearchesItem( - { - x: 2, - y: 7, - label: `2%`, - percent: 2, - shop: `Other` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OnlineShoppingSearchesItem( + { + x: 63, + y: 0, + label: `63%`, + percent: 63, + shop: `Amazon` + }), + new OnlineShoppingSearchesItem( + { + x: 48, + y: 1, + label: `48%`, + percent: 48, + shop: `Search Engines` + }), + new OnlineShoppingSearchesItem( + { + x: 33, + y: 2, + label: `33%`, + percent: 33, + shop: `Retailer Sites` + }), + new OnlineShoppingSearchesItem( + { + x: 25, + y: 3, + label: `25%`, + percent: 25, + shop: `Marketplaces` + }), + new OnlineShoppingSearchesItem( + { + x: 21, + y: 4, + label: `21%`, + percent: 21, + shop: `Brand Website` + }), + new OnlineShoppingSearchesItem( + { + x: 10, + y: 5, + label: `10%`, + percent: 10, + shop: `Comparison Sites` + }), + new OnlineShoppingSearchesItem( + { + x: 8, + y: 6, + label: `8%`, + percent: 8, + shop: `Social Media` + }), + new OnlineShoppingSearchesItem( + { + x: 2, + y: 7, + label: `2%`, + percent: 2, + shop: `Other` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/callout-layer-styling/src/CountryRenewableElectricity.ts b/samples/charts/data-chart/callout-layer-styling/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/data-chart/callout-layer-styling/src/CountryRenewableElectricity.ts +++ b/samples/charts/data-chart/callout-layer-styling/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/OnlineTrafficHighlightDesktopOnly.ts b/samples/charts/data-chart/chart-highlight-filter-datasource/src/OnlineTrafficHighlightDesktopOnly.ts new file mode 100644 index 000000000..158c5a23d --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/OnlineTrafficHighlightDesktopOnly.ts @@ -0,0 +1,55 @@ +export class OnlineTrafficHighlightDesktopOnlyItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public category: string; + public value: number; + +} +export class OnlineTrafficHighlightDesktopOnly extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OnlineTrafficHighlightDesktopOnlyItem( + { + category: `Apparel`, + value: 27 + }), + new OnlineTrafficHighlightDesktopOnlyItem( + { + category: `Beauty`, + value: 29 + }), + new OnlineTrafficHighlightDesktopOnlyItem( + { + category: `Travel`, + value: 41 + }), + new OnlineTrafficHighlightDesktopOnlyItem( + { + category: `Grocery`, + value: 37 + }), + new OnlineTrafficHighlightDesktopOnlyItem( + { + category: `Energy`, + value: 58 + }), + new OnlineTrafficHighlightDesktopOnlyItem( + { + category: `Home Supply`, + value: 35 + }), + new OnlineTrafficHighlightDesktopOnlyItem( + { + category: `Financial`, + value: 58 + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/OnlineTrafficHighlightTotals.ts b/samples/charts/data-chart/chart-highlight-filter-datasource/src/OnlineTrafficHighlightTotals.ts index 39a92585e..9df339f10 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/src/OnlineTrafficHighlightTotals.ts +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/OnlineTrafficHighlightTotals.ts @@ -8,42 +8,48 @@ export class OnlineTrafficHighlightTotalsItem { } export class OnlineTrafficHighlightTotals extends Array { - public constructor() { - super(); - this.push(new OnlineTrafficHighlightTotalsItem( - { - category: `Apparel`, - value: 100 - })); - this.push(new OnlineTrafficHighlightTotalsItem( - { - category: `Beauty`, - value: 100 - })); - this.push(new OnlineTrafficHighlightTotalsItem( - { - category: `Travel`, - value: 100 - })); - this.push(new OnlineTrafficHighlightTotalsItem( - { - category: `Grocery`, - value: 100 - })); - this.push(new OnlineTrafficHighlightTotalsItem( - { - category: `Energy`, - value: 100 - })); - this.push(new OnlineTrafficHighlightTotalsItem( - { - category: `Home Supply`, - value: 100 - })); - this.push(new OnlineTrafficHighlightTotalsItem( - { - category: `Financial`, - value: 100 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OnlineTrafficHighlightTotalsItem( + { + category: `Apparel`, + value: 100 + }), + new OnlineTrafficHighlightTotalsItem( + { + category: `Beauty`, + value: 100 + }), + new OnlineTrafficHighlightTotalsItem( + { + category: `Travel`, + value: 100 + }), + new OnlineTrafficHighlightTotalsItem( + { + category: `Grocery`, + value: 100 + }), + new OnlineTrafficHighlightTotalsItem( + { + category: `Energy`, + value: 100 + }), + new OnlineTrafficHighlightTotalsItem( + { + category: `Home Supply`, + value: 100 + }), + new OnlineTrafficHighlightTotalsItem( + { + category: `Financial`, + value: 100 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.html b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.html index a2d31534a..7faafa2af 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.html +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.html @@ -21,6 +21,7 @@ + valueMemberPath="value" + [highlightedDataSource]="onlineTrafficHighlightDesktopOnly"> diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.ts b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.ts index 43b68d47b..4c1234e3d 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.ts +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.ts @@ -1,6 +1,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataChartCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule } from 'igniteui-angular-core'; import { OnlineTrafficHighlightTotalsItem, OnlineTrafficHighlightTotals } from './OnlineTrafficHighlightTotals'; +import { OnlineTrafficHighlightDesktopOnlyItem, OnlineTrafficHighlightDesktopOnly } from './OnlineTrafficHighlightDesktopOnly'; import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent } from 'igniteui-angular-charts'; @@ -39,6 +40,15 @@ export class AppComponent implements AfterViewInit return this._onlineTrafficHighlightTotals; } + private _onlineTrafficHighlightDesktopOnly: OnlineTrafficHighlightDesktopOnly = null; + public get onlineTrafficHighlightDesktopOnly(): OnlineTrafficHighlightDesktopOnly { + if (this._onlineTrafficHighlightDesktopOnly == null) + { + this._onlineTrafficHighlightDesktopOnly = new OnlineTrafficHighlightDesktopOnly(); + } + return this._onlineTrafficHighlightDesktopOnly; + } + private _componentRenderer: ComponentRenderer = null; public get renderer(): ComponentRenderer { if (this._componentRenderer == null) { diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/CountryRenewableElectricity.ts b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/CountryRenewableElectricity.ts +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/CountryRenewableElectricityFiltered.ts b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/CountryRenewableElectricityFiltered.ts new file mode 100644 index 000000000..2700376ac --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/CountryRenewableElectricityFiltered.ts @@ -0,0 +1,106 @@ +export class CountryRenewableElectricityFilteredItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public europe: number; + public china: number; + public america: number; + +} +export class CountryRenewableElectricityFiltered extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityFilteredItem( + { + year: `2009`, + europe: 26, + china: 14, + america: 12 + }), + new CountryRenewableElectricityFilteredItem( + { + year: `2010`, + europe: 29, + china: 17, + america: 18 + }), + new CountryRenewableElectricityFilteredItem( + { + year: `2011`, + europe: 50, + china: 21, + america: 22 + }), + new CountryRenewableElectricityFilteredItem( + { + year: `2012`, + europe: 48, + china: 20, + america: 20 + }), + new CountryRenewableElectricityFilteredItem( + { + year: `2013`, + europe: 37, + china: 23, + america: 26 + }), + new CountryRenewableElectricityFilteredItem( + { + year: `2014`, + europe: 26, + china: 34, + america: 21 + }), + new CountryRenewableElectricityFilteredItem( + { + year: `2015`, + europe: 55, + china: 38, + america: 12 + }), + new CountryRenewableElectricityFilteredItem( + { + year: `2016`, + europe: 7, + china: 55, + america: 38 + }), + new CountryRenewableElectricityFilteredItem( + { + year: `2017`, + europe: 57, + china: 101, + america: 32 + }), + new CountryRenewableElectricityFilteredItem( + { + year: `2018`, + europe: 23, + china: 112, + america: 19 + }), + new CountryRenewableElectricityFilteredItem( + { + year: `2018`, + europe: 18, + china: 118, + america: 22 + }), + new CountryRenewableElectricityFilteredItem( + { + year: `2019`, + europe: 40, + china: 70, + america: 26 + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.html b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.html index 94fd047a3..1ff9832ac 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.html +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.html @@ -22,7 +22,8 @@ shouldAutoExpandMarginForInitialLabels="true" computedPlotAreaMarginMode="Series" name="chart" - #chart> + #chart + highlightedValuesDisplayMode="Hidden"> + valueMemberPath="europe" + [highlightedDataSource]="countryRenewableElectricityFiltered"> + valueMemberPath="china" + [highlightedDataSource]="countryRenewableElectricityFiltered"> + valueMemberPath="america" + [highlightedDataSource]="countryRenewableElectricityFiltered"> diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.ts b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.ts index 50efed436..d5454b630 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.ts +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.ts @@ -1,6 +1,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataChartCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule } from 'igniteui-angular-core'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; +import { CountryRenewableElectricityFilteredItem, CountryRenewableElectricityFiltered } from './CountryRenewableElectricityFiltered'; import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent } from 'igniteui-angular-charts'; @@ -43,6 +44,15 @@ export class AppComponent implements AfterViewInit return this._countryRenewableElectricity; } + private _countryRenewableElectricityFiltered: CountryRenewableElectricityFiltered = null; + public get countryRenewableElectricityFiltered(): CountryRenewableElectricityFiltered { + if (this._countryRenewableElectricityFiltered == null) + { + this._countryRenewableElectricityFiltered = new CountryRenewableElectricityFiltered(); + } + return this._countryRenewableElectricityFiltered; + } + private _componentRenderer: ComponentRenderer = null; public get renderer(): ComponentRenderer { if (this._componentRenderer == null) { diff --git a/samples/charts/data-chart/chart-highlight-filter/src/OlympicMedalsTopCountriesWithTotals.ts b/samples/charts/data-chart/chart-highlight-filter/src/OlympicMedalsTopCountriesWithTotals.ts index dab1898aa..9dbc1eada 100644 --- a/samples/charts/data-chart/chart-highlight-filter/src/OlympicMedalsTopCountriesWithTotals.ts +++ b/samples/charts/data-chart/chart-highlight-filter/src/OlympicMedalsTopCountriesWithTotals.ts @@ -11,55 +11,61 @@ export class OlympicMedalsTopCountriesWithTotalsItem { } export class OlympicMedalsTopCountriesWithTotals extends Array { - public constructor() { - super(); - this.push(new OlympicMedalsTopCountriesWithTotalsItem( - { - year: `1996`, - america: 148, - china: 110, - russia: 95, - total: 353 - })); - this.push(new OlympicMedalsTopCountriesWithTotalsItem( - { - year: `2000`, - america: 142, - china: 115, - russia: 91, - total: 348 - })); - this.push(new OlympicMedalsTopCountriesWithTotalsItem( - { - year: `2004`, - america: 134, - china: 121, - russia: 86, - total: 341 - })); - this.push(new OlympicMedalsTopCountriesWithTotalsItem( - { - year: `2008`, - america: 131, - china: 129, - russia: 65, - total: 325 - })); - this.push(new OlympicMedalsTopCountriesWithTotalsItem( - { - year: `2012`, - america: 135, - china: 115, - russia: 77, - total: 327 - })); - this.push(new OlympicMedalsTopCountriesWithTotalsItem( - { - year: `2016`, - america: 146, - china: 112, - russia: 88, - total: 346 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `1996`, + america: 148, + china: 110, + russia: 95, + total: 353 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2000`, + america: 142, + china: 115, + russia: 91, + total: 348 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2004`, + america: 134, + china: 121, + russia: 86, + total: 341 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2008`, + america: 131, + china: 129, + russia: 65, + total: 325 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2012`, + america: 135, + china: 115, + russia: 77, + total: 327 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2016`, + america: 146, + china: 112, + russia: 88, + total: 346 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/chart-highlight-filter/src/app.component.html b/samples/charts/data-chart/chart-highlight-filter/src/app.component.html index 62627ec8e..316c6e3fa 100644 --- a/samples/charts/data-chart/chart-highlight-filter/src/app.component.html +++ b/samples/charts/data-chart/chart-highlight-filter/src/app.component.html @@ -21,6 +21,7 @@ + valueMemberPath="total" + highlightedValueMemberPath="america"> diff --git a/samples/charts/data-chart/dash-array-axes/src/CountryRenewableElectricity.ts b/samples/charts/data-chart/dash-array-axes/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/data-chart/dash-array-axes/src/CountryRenewableElectricity.ts +++ b/samples/charts/data-chart/dash-array-axes/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/dash-array-series/src/CountryRenewableElectricity.ts b/samples/charts/data-chart/dash-array-series/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/data-chart/dash-array-series/src/CountryRenewableElectricity.ts +++ b/samples/charts/data-chart/dash-array-series/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/dash-array-tickmarks/src/CountryRenewableElectricity.ts b/samples/charts/data-chart/dash-array-tickmarks/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/src/CountryRenewableElectricity.ts +++ b/samples/charts/data-chart/dash-array-tickmarks/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/dash-array-trendline/src/Stock2Years.ts b/samples/charts/data-chart/dash-array-trendline/src/Stock2Years.ts index 781631592..ffc4d7580 100644 --- a/samples/charts/data-chart/dash-array-trendline/src/Stock2Years.ts +++ b/samples/charts/data-chart/dash-array-trendline/src/Stock2Years.ts @@ -12,223 +12,229 @@ export class Stock2YearsItem { } export class Stock2Years extends Array { - public constructor() { - super(); - this.push(new Stock2YearsItem( - { - month: `2020`, - open: 41.1, - high: 41.6, - low: 41.1, - close: 41.4, - volume: 32610 - })); - this.push(new Stock2YearsItem( - { - month: `FEB`, - open: 41.4, - high: 41.7, - low: 41.2, - close: 41.4, - volume: 28666 - })); - this.push(new Stock2YearsItem( - { - month: `MAR`, - open: 41.3, - high: 41.3, - low: 40.7, - close: 41, - volume: 30139 - })); - this.push(new Stock2YearsItem( - { - month: `APR`, - open: 41.3, - high: 41.4, - low: 39.6, - close: 39.9, - volume: 51409 - })); - this.push(new Stock2YearsItem( - { - month: `MAY`, - open: 40, - high: 40.3, - low: 39.7, - close: 39.8, - volume: 37559 - })); - this.push(new Stock2YearsItem( - { - month: `JUN`, - open: 39.8, - high: 39.9, - low: 39.2, - close: 39.8, - volume: 35919 - })); - this.push(new Stock2YearsItem( - { - month: `JUL`, - open: 39.9, - high: 40.5, - low: 39.9, - close: 40.5, - volume: 27398 - })); - this.push(new Stock2YearsItem( - { - month: `AUG`, - open: 40.4, - high: 40.7, - low: 39.1, - close: 39.4, - volume: 45960 - })); - this.push(new Stock2YearsItem( - { - month: `SEP`, - open: 39, - high: 39.8, - low: 39, - close: 39.2, - volume: 34333 - })); - this.push(new Stock2YearsItem( - { - month: `OCT`, - open: 39.1, - high: 39.4, - low: 38.9, - close: 39.2, - volume: 32006 - })); - this.push(new Stock2YearsItem( - { - month: `NOV`, - open: 39.3, - high: 40, - low: 39, - close: 39.8, - volume: 33978 - })); - this.push(new Stock2YearsItem( - { - month: `DEC`, - open: 40.1, - high: 40.4, - low: 39.9, - close: 40.4, - volume: 30616 - })); - this.push(new Stock2YearsItem( - { - month: `2021`, - open: 40, - high: 40.2, - low: 39.5, - close: 40, - volume: 36689 - })); - this.push(new Stock2YearsItem( - { - month: `FEB`, - open: 40.1, - high: 40.1, - low: 39.8, - close: 39.9, - volume: 22222 - })); - this.push(new Stock2YearsItem( - { - month: `MAR`, - open: 40, - high: 40.1, - low: 39.8, - close: 40, - volume: 27057 - })); - this.push(new Stock2YearsItem( - { - month: `APR`, - open: 40, - high: 40, - low: 39.5, - close: 39.7, - volume: 24602 - })); - this.push(new Stock2YearsItem( - { - month: `MAY`, - open: 39.7, - high: 40, - low: 39.3, - close: 39.9, - volume: 42381 - })); - this.push(new Stock2YearsItem( - { - month: `JUN`, - open: 40.3, - high: 40.7, - low: 39.8, - close: 39.9, - volume: 56883 - })); - this.push(new Stock2YearsItem( - { - month: `JUL`, - open: 40.1, - high: 41.3, - low: 40.1, - close: 40.9, - volume: 50610 - })); - this.push(new Stock2YearsItem( - { - month: `AUG`, - open: 41.1, - high: 41.2, - low: 40.4, - close: 40.5, - volume: 29637 - })); - this.push(new Stock2YearsItem( - { - month: `SEP`, - open: 39, - high: 39.8, - low: 39, - close: 39.2, - volume: 34333 - })); - this.push(new Stock2YearsItem( - { - month: `OCT`, - open: 39.1, - high: 39.4, - low: 38.9, - close: 39.2, - volume: 32006 - })); - this.push(new Stock2YearsItem( - { - month: `NOV`, - open: 39.3, - high: 40, - low: 39, - close: 39.8, - volume: 33978 - })); - this.push(new Stock2YearsItem( - { - month: `DEC`, - open: 40.1, - high: 40.4, - low: 39.9, - close: 40.4, - volume: 30616 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new Stock2YearsItem( + { + month: `2020`, + open: 41.1, + high: 41.6, + low: 41.1, + close: 41.4, + volume: 32610 + }), + new Stock2YearsItem( + { + month: `FEB`, + open: 41.4, + high: 41.7, + low: 41.2, + close: 41.4, + volume: 28666 + }), + new Stock2YearsItem( + { + month: `MAR`, + open: 41.3, + high: 41.3, + low: 40.7, + close: 41, + volume: 30139 + }), + new Stock2YearsItem( + { + month: `APR`, + open: 41.3, + high: 41.4, + low: 39.6, + close: 39.9, + volume: 51409 + }), + new Stock2YearsItem( + { + month: `MAY`, + open: 40, + high: 40.3, + low: 39.7, + close: 39.8, + volume: 37559 + }), + new Stock2YearsItem( + { + month: `JUN`, + open: 39.8, + high: 39.9, + low: 39.2, + close: 39.8, + volume: 35919 + }), + new Stock2YearsItem( + { + month: `JUL`, + open: 39.9, + high: 40.5, + low: 39.9, + close: 40.5, + volume: 27398 + }), + new Stock2YearsItem( + { + month: `AUG`, + open: 40.4, + high: 40.7, + low: 39.1, + close: 39.4, + volume: 45960 + }), + new Stock2YearsItem( + { + month: `SEP`, + open: 39, + high: 39.8, + low: 39, + close: 39.2, + volume: 34333 + }), + new Stock2YearsItem( + { + month: `OCT`, + open: 39.1, + high: 39.4, + low: 38.9, + close: 39.2, + volume: 32006 + }), + new Stock2YearsItem( + { + month: `NOV`, + open: 39.3, + high: 40, + low: 39, + close: 39.8, + volume: 33978 + }), + new Stock2YearsItem( + { + month: `DEC`, + open: 40.1, + high: 40.4, + low: 39.9, + close: 40.4, + volume: 30616 + }), + new Stock2YearsItem( + { + month: `2021`, + open: 40, + high: 40.2, + low: 39.5, + close: 40, + volume: 36689 + }), + new Stock2YearsItem( + { + month: `FEB`, + open: 40.1, + high: 40.1, + low: 39.8, + close: 39.9, + volume: 22222 + }), + new Stock2YearsItem( + { + month: `MAR`, + open: 40, + high: 40.1, + low: 39.8, + close: 40, + volume: 27057 + }), + new Stock2YearsItem( + { + month: `APR`, + open: 40, + high: 40, + low: 39.5, + close: 39.7, + volume: 24602 + }), + new Stock2YearsItem( + { + month: `MAY`, + open: 39.7, + high: 40, + low: 39.3, + close: 39.9, + volume: 42381 + }), + new Stock2YearsItem( + { + month: `JUN`, + open: 40.3, + high: 40.7, + low: 39.8, + close: 39.9, + volume: 56883 + }), + new Stock2YearsItem( + { + month: `JUL`, + open: 40.1, + high: 41.3, + low: 40.1, + close: 40.9, + volume: 50610 + }), + new Stock2YearsItem( + { + month: `AUG`, + open: 41.1, + high: 41.2, + low: 40.4, + close: 40.5, + volume: 29637 + }), + new Stock2YearsItem( + { + month: `SEP`, + open: 39, + high: 39.8, + low: 39, + close: 39.2, + volume: 34333 + }), + new Stock2YearsItem( + { + month: `OCT`, + open: 39.1, + high: 39.4, + low: 38.9, + close: 39.2, + volume: 32006 + }), + new Stock2YearsItem( + { + month: `NOV`, + open: 39.3, + high: 40, + low: 39, + close: 39.8, + volume: 33978 + }), + new Stock2YearsItem( + { + month: `DEC`, + open: 40.1, + high: 40.4, + low: 39.9, + close: 40.4, + volume: 30616 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/data-legend/src/CountryDemographicAfrican.ts b/samples/charts/data-chart/data-legend/src/CountryDemographicAfrican.ts index 384341557..70452bea7 100644 --- a/samples/charts/data-chart/data-legend/src/CountryDemographicAfrican.ts +++ b/samples/charts/data-chart/data-legend/src/CountryDemographicAfrican.ts @@ -10,385 +10,391 @@ export class CountryDemographicAfricanItem { } export class CountryDemographicAfrican extends Array { - public constructor() { - super(); - this.push(new CountryDemographicAfricanItem( - { - population: 39728000, - birthRate: 23.9, - deathRate: 4.77, - name: `Algeria` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 27884000, - birthRate: 42.32, - deathRate: 8.68, - name: `Angola` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 10576000, - birthRate: 37.43, - deathRate: 9.32, - name: `Benin` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 2121000, - birthRate: 24.14, - deathRate: 7.02, - name: `Botswana` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 18111000, - birthRate: 39.44, - deathRate: 8.82, - name: `Burkina Faso` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 10160000, - birthRate: 42.66, - deathRate: 11.03, - name: `Burundi` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 23298000, - birthRate: 36.84, - deathRate: 10.35, - name: `Cameroon` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 525000, - birthRate: 21.14, - deathRate: 5.61, - name: `Cape Verde` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 4493000, - birthRate: 36.11, - deathRate: 14.01, - name: `C.A.R.` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 14111000, - birthRate: 43.86, - deathRate: 13.22, - name: `Chad` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 777000, - birthRate: 33.33, - deathRate: 7.49, - name: `Comoros` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 4856000, - birthRate: 35.23, - deathRate: 7.56, - name: `Congo` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 23226000, - birthRate: 37.1, - deathRate: 12.54, - name: `Cote Ivoire` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 76245000, - birthRate: 42.81, - deathRate: 10.19, - name: `DCongo` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 914000, - birthRate: 23.35, - deathRate: 8.37, - name: `Djibouti` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 92443000, - birthRate: 27.2, - deathRate: 5.96, - name: `Egypt` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 1169000, - birthRate: 34.64, - deathRate: 10.34, - name: `Equatorial Guinea` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 3343000, - birthRate: 32.83, - deathRate: 7.07, - name: `Eritrea` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 100835000, - birthRate: 32.3, - deathRate: 7, - name: `Ethiopia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 1948000, - birthRate: 30.09, - deathRate: 7.82, - name: `Gabon` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 2086000, - birthRate: 39.99, - deathRate: 8.2, - name: `Gambia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 27849000, - birthRate: 31.56, - deathRate: 8.31, - name: `Ghana` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 11432000, - birthRate: 36.36, - deathRate: 9.58, - name: `Guinea` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 1737000, - birthRate: 37.15, - deathRate: 10.78, - name: `Guinea-Bissau` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 47878000, - birthRate: 31.78, - deathRate: 5.84, - name: `Kenya` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 2059000, - birthRate: 28.16, - deathRate: 12.92, - name: `Lesotho` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 4472000, - birthRate: 34.72, - deathRate: 8.12, - name: `Liberia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 6418000, - birthRate: 20.19, - deathRate: 5.2, - name: `Libya` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 24234000, - birthRate: 33.4, - deathRate: 6.48, - name: `Madagascar` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 16745000, - birthRate: 37.05, - deathRate: 7.5, - name: `Malawi` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 17439000, - birthRate: 43.22, - deathRate: 10.67, - name: `Mali` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 4046000, - birthRate: 34.57, - deathRate: 7.96, - name: `Mauritania` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 1259000, - birthRate: 10.1, - deathRate: 7.7, - name: `Mauritius` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 34664000, - birthRate: 20.4, - deathRate: 5.15, - name: `Morocco` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 27042000, - birthRate: 39.36, - deathRate: 10.38, - name: `Mozambique` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 2315000, - birthRate: 29.59, - deathRate: 7.46, - name: `Namibia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 20002000, - birthRate: 48.44, - deathRate: 9.94, - name: `Niger` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 181136992, - birthRate: 39.37, - deathRate: 12.77, - name: `Nigeria` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 11369000, - birthRate: 31.79, - deathRate: 6.13, - name: `Rwanda` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 199000, - birthRate: 34.33, - deathRate: 6.81, - name: `Sao Tome and Principe` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 14578000, - birthRate: 36.21, - deathRate: 6.07, - name: `Senegal` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 95000, - birthRate: 17, - deathRate: 7.5, - name: `Seychelles` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 7172000, - birthRate: 35.61, - deathRate: 13.03, - name: `Sierra Leone` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 13797000, - birthRate: 43.66, - deathRate: 11.63, - name: `Somalia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 55386000, - birthRate: 21.3, - deathRate: 10.1, - name: `South Africa` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 10716000, - birthRate: 36.32, - deathRate: 11.24, - name: `South Sudan` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 38903000, - birthRate: 33.32, - deathRate: 7.52, - name: `Sudan` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 1104000, - birthRate: 29.27, - deathRate: 9.86, - name: `Swaziland` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 51483000, - birthRate: 38.64, - deathRate: 7.02, - name: `Tanzania` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 7323000, - birthRate: 34.53, - deathRate: 8.83, - name: `Togo` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 11180000, - birthRate: 18.65, - deathRate: 6.36, - name: `Tunisia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 38225000, - birthRate: 42.63, - deathRate: 8.87, - name: `Uganda` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 15879000, - birthRate: 38.44, - deathRate: 8, - name: `Zambia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 13815000, - birthRate: 33.94, - deathRate: 8.4, - name: `Zimbabwe` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryDemographicAfricanItem( + { + population: 39728000, + birthRate: 23.9, + deathRate: 4.77, + name: `Algeria` + }), + new CountryDemographicAfricanItem( + { + population: 27884000, + birthRate: 42.32, + deathRate: 8.68, + name: `Angola` + }), + new CountryDemographicAfricanItem( + { + population: 10576000, + birthRate: 37.43, + deathRate: 9.32, + name: `Benin` + }), + new CountryDemographicAfricanItem( + { + population: 2121000, + birthRate: 24.14, + deathRate: 7.02, + name: `Botswana` + }), + new CountryDemographicAfricanItem( + { + population: 18111000, + birthRate: 39.44, + deathRate: 8.82, + name: `Burkina Faso` + }), + new CountryDemographicAfricanItem( + { + population: 10160000, + birthRate: 42.66, + deathRate: 11.03, + name: `Burundi` + }), + new CountryDemographicAfricanItem( + { + population: 23298000, + birthRate: 36.84, + deathRate: 10.35, + name: `Cameroon` + }), + new CountryDemographicAfricanItem( + { + population: 525000, + birthRate: 21.14, + deathRate: 5.61, + name: `Cape Verde` + }), + new CountryDemographicAfricanItem( + { + population: 4493000, + birthRate: 36.11, + deathRate: 14.01, + name: `C.A.R.` + }), + new CountryDemographicAfricanItem( + { + population: 14111000, + birthRate: 43.86, + deathRate: 13.22, + name: `Chad` + }), + new CountryDemographicAfricanItem( + { + population: 777000, + birthRate: 33.33, + deathRate: 7.49, + name: `Comoros` + }), + new CountryDemographicAfricanItem( + { + population: 4856000, + birthRate: 35.23, + deathRate: 7.56, + name: `Congo` + }), + new CountryDemographicAfricanItem( + { + population: 23226000, + birthRate: 37.1, + deathRate: 12.54, + name: `Cote Ivoire` + }), + new CountryDemographicAfricanItem( + { + population: 76245000, + birthRate: 42.81, + deathRate: 10.19, + name: `DCongo` + }), + new CountryDemographicAfricanItem( + { + population: 914000, + birthRate: 23.35, + deathRate: 8.37, + name: `Djibouti` + }), + new CountryDemographicAfricanItem( + { + population: 92443000, + birthRate: 27.2, + deathRate: 5.96, + name: `Egypt` + }), + new CountryDemographicAfricanItem( + { + population: 1169000, + birthRate: 34.64, + deathRate: 10.34, + name: `Equatorial Guinea` + }), + new CountryDemographicAfricanItem( + { + population: 3343000, + birthRate: 32.83, + deathRate: 7.07, + name: `Eritrea` + }), + new CountryDemographicAfricanItem( + { + population: 100835000, + birthRate: 32.3, + deathRate: 7, + name: `Ethiopia` + }), + new CountryDemographicAfricanItem( + { + population: 1948000, + birthRate: 30.09, + deathRate: 7.82, + name: `Gabon` + }), + new CountryDemographicAfricanItem( + { + population: 2086000, + birthRate: 39.99, + deathRate: 8.2, + name: `Gambia` + }), + new CountryDemographicAfricanItem( + { + population: 27849000, + birthRate: 31.56, + deathRate: 8.31, + name: `Ghana` + }), + new CountryDemographicAfricanItem( + { + population: 11432000, + birthRate: 36.36, + deathRate: 9.58, + name: `Guinea` + }), + new CountryDemographicAfricanItem( + { + population: 1737000, + birthRate: 37.15, + deathRate: 10.78, + name: `Guinea-Bissau` + }), + new CountryDemographicAfricanItem( + { + population: 47878000, + birthRate: 31.78, + deathRate: 5.84, + name: `Kenya` + }), + new CountryDemographicAfricanItem( + { + population: 2059000, + birthRate: 28.16, + deathRate: 12.92, + name: `Lesotho` + }), + new CountryDemographicAfricanItem( + { + population: 4472000, + birthRate: 34.72, + deathRate: 8.12, + name: `Liberia` + }), + new CountryDemographicAfricanItem( + { + population: 6418000, + birthRate: 20.19, + deathRate: 5.2, + name: `Libya` + }), + new CountryDemographicAfricanItem( + { + population: 24234000, + birthRate: 33.4, + deathRate: 6.48, + name: `Madagascar` + }), + new CountryDemographicAfricanItem( + { + population: 16745000, + birthRate: 37.05, + deathRate: 7.5, + name: `Malawi` + }), + new CountryDemographicAfricanItem( + { + population: 17439000, + birthRate: 43.22, + deathRate: 10.67, + name: `Mali` + }), + new CountryDemographicAfricanItem( + { + population: 4046000, + birthRate: 34.57, + deathRate: 7.96, + name: `Mauritania` + }), + new CountryDemographicAfricanItem( + { + population: 1259000, + birthRate: 10.1, + deathRate: 7.7, + name: `Mauritius` + }), + new CountryDemographicAfricanItem( + { + population: 34664000, + birthRate: 20.4, + deathRate: 5.15, + name: `Morocco` + }), + new CountryDemographicAfricanItem( + { + population: 27042000, + birthRate: 39.36, + deathRate: 10.38, + name: `Mozambique` + }), + new CountryDemographicAfricanItem( + { + population: 2315000, + birthRate: 29.59, + deathRate: 7.46, + name: `Namibia` + }), + new CountryDemographicAfricanItem( + { + population: 20002000, + birthRate: 48.44, + deathRate: 9.94, + name: `Niger` + }), + new CountryDemographicAfricanItem( + { + population: 181136992, + birthRate: 39.37, + deathRate: 12.77, + name: `Nigeria` + }), + new CountryDemographicAfricanItem( + { + population: 11369000, + birthRate: 31.79, + deathRate: 6.13, + name: `Rwanda` + }), + new CountryDemographicAfricanItem( + { + population: 199000, + birthRate: 34.33, + deathRate: 6.81, + name: `Sao Tome and Principe` + }), + new CountryDemographicAfricanItem( + { + population: 14578000, + birthRate: 36.21, + deathRate: 6.07, + name: `Senegal` + }), + new CountryDemographicAfricanItem( + { + population: 95000, + birthRate: 17, + deathRate: 7.5, + name: `Seychelles` + }), + new CountryDemographicAfricanItem( + { + population: 7172000, + birthRate: 35.61, + deathRate: 13.03, + name: `Sierra Leone` + }), + new CountryDemographicAfricanItem( + { + population: 13797000, + birthRate: 43.66, + deathRate: 11.63, + name: `Somalia` + }), + new CountryDemographicAfricanItem( + { + population: 55386000, + birthRate: 21.3, + deathRate: 10.1, + name: `South Africa` + }), + new CountryDemographicAfricanItem( + { + population: 10716000, + birthRate: 36.32, + deathRate: 11.24, + name: `South Sudan` + }), + new CountryDemographicAfricanItem( + { + population: 38903000, + birthRate: 33.32, + deathRate: 7.52, + name: `Sudan` + }), + new CountryDemographicAfricanItem( + { + population: 1104000, + birthRate: 29.27, + deathRate: 9.86, + name: `Swaziland` + }), + new CountryDemographicAfricanItem( + { + population: 51483000, + birthRate: 38.64, + deathRate: 7.02, + name: `Tanzania` + }), + new CountryDemographicAfricanItem( + { + population: 7323000, + birthRate: 34.53, + deathRate: 8.83, + name: `Togo` + }), + new CountryDemographicAfricanItem( + { + population: 11180000, + birthRate: 18.65, + deathRate: 6.36, + name: `Tunisia` + }), + new CountryDemographicAfricanItem( + { + population: 38225000, + birthRate: 42.63, + deathRate: 8.87, + name: `Uganda` + }), + new CountryDemographicAfricanItem( + { + population: 15879000, + birthRate: 38.44, + deathRate: 8, + name: `Zambia` + }), + new CountryDemographicAfricanItem( + { + population: 13815000, + birthRate: 33.94, + deathRate: 8.4, + name: `Zimbabwe` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/data-legend/src/CountryDemographicEurope.ts b/samples/charts/data-chart/data-legend/src/CountryDemographicEurope.ts index ab97566c2..28a586e0f 100644 --- a/samples/charts/data-chart/data-legend/src/CountryDemographicEurope.ts +++ b/samples/charts/data-chart/data-legend/src/CountryDemographicEurope.ts @@ -10,322 +10,328 @@ export class CountryDemographicEuropeItem { } export class CountryDemographicEurope extends Array { - public constructor() { - super(); - this.push(new CountryDemographicEuropeItem( - { - population: 2891000, - birthRate: 11.88, - deathRate: 7.22, - name: `Albania` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 8679000, - birthRate: 9.8, - deathRate: 9.6, - name: `Austria` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 9439000, - birthRate: 12.5, - deathRate: 12.6, - name: `Belarus` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 11288000, - birthRate: 10.8, - deathRate: 9.8, - name: `Belgium` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 3429000, - birthRate: 9.12, - deathRate: 10.89, - name: `Bosnia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 7200000, - birthRate: 9.2, - deathRate: 15.3, - name: `Bulgaria` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 165000, - birthRate: 9.39, - deathRate: 8.97, - name: `Channel Islands` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 4233000, - birthRate: 8.9, - deathRate: 12.9, - name: `Croatia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 1161000, - birthRate: 10.98, - deathRate: 6.84, - name: `Cyprus` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 10601000, - birthRate: 10.5, - deathRate: 10.5, - name: `Czech Republic` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 5689000, - birthRate: 10.2, - deathRate: 9.2, - name: `Denmark` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 1315000, - birthRate: 10.6, - deathRate: 11.6, - name: `Estonia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 48000, - birthRate: 12.4, - deathRate: 7.7, - name: `Faeroe Islands` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 5481000, - birthRate: 10.1, - deathRate: 9.6, - name: `Finland` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 64453000, - birthRate: 12, - deathRate: 8.9, - name: `France` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 81787000, - birthRate: 9, - deathRate: 11.3, - name: `Germany` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 10660000, - birthRate: 8.5, - deathRate: 11.2, - name: `Greece` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 9778000, - birthRate: 9.4, - deathRate: 13.4, - name: `Hungary` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 330000, - birthRate: 12.5, - deathRate: 6.6, - name: `Iceland` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 4652000, - birthRate: 14.1, - deathRate: 6.5, - name: `Ireland` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 60578000, - birthRate: 8, - deathRate: 10.7, - name: `Italy` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 1998000, - birthRate: 11.1, - deathRate: 14.4, - name: `Latvia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 37000, - birthRate: 8.7, - deathRate: 6.7, - name: `Liechtenstein` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 2932000, - birthRate: 10.8, - deathRate: 14.4, - name: `Lithuania` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 567000, - birthRate: 10.7, - deathRate: 7, - name: `Luxembourg` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 2079000, - birthRate: 11.3, - deathRate: 9.75, - name: `Macedonia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 434000, - birthRate: 10, - deathRate: 8, - name: `Malta` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 4071000, - birthRate: 10.52, - deathRate: 11.42, - name: `Moldova` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 38000, - birthRate: 8.1, - deathRate: 7.6, - name: `Monaco` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 627000, - birthRate: 11.52, - deathRate: 9.8, - name: `Montenegro` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 16938000, - birthRate: 10.1, - deathRate: 8.7, - name: `Netherlands` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 5200000, - birthRate: 11.3, - deathRate: 7.8, - name: `Norway` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 38034000, - birthRate: 9.7, - deathRate: 10.4, - name: `Poland` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 10368000, - birthRate: 8.3, - deathRate: 10.5, - name: `Portugal` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 19925000, - birthRate: 10, - deathRate: 13.2, - name: `Romania` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 144984992, - birthRate: 13.3, - deathRate: 13, - name: `Russia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 33000, - birthRate: 8.2, - deathRate: 7.1, - name: `San Marino` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 8877000, - birthRate: 9.3, - deathRate: 14.6, - name: `Serbia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 5436000, - birthRate: 10.3, - deathRate: 9.9, - name: `Slovakia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 2071000, - birthRate: 10, - deathRate: 9.6, - name: `Slovenia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 46672000, - birthRate: 9, - deathRate: 9.1, - name: `Spain` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 9765000, - birthRate: 11.7, - deathRate: 9.3, - name: `Sweden` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 8297000, - birthRate: 10.5, - deathRate: 8.2, - name: `Switzerland` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 44922000, - birthRate: 10.7, - deathRate: 14.9, - name: `Ukraine` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 65860000, - birthRate: 11.9, - deathRate: 9.2, - name: `United Kingdom` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryDemographicEuropeItem( + { + population: 2891000, + birthRate: 11.88, + deathRate: 7.22, + name: `Albania` + }), + new CountryDemographicEuropeItem( + { + population: 8679000, + birthRate: 9.8, + deathRate: 9.6, + name: `Austria` + }), + new CountryDemographicEuropeItem( + { + population: 9439000, + birthRate: 12.5, + deathRate: 12.6, + name: `Belarus` + }), + new CountryDemographicEuropeItem( + { + population: 11288000, + birthRate: 10.8, + deathRate: 9.8, + name: `Belgium` + }), + new CountryDemographicEuropeItem( + { + population: 3429000, + birthRate: 9.12, + deathRate: 10.89, + name: `Bosnia` + }), + new CountryDemographicEuropeItem( + { + population: 7200000, + birthRate: 9.2, + deathRate: 15.3, + name: `Bulgaria` + }), + new CountryDemographicEuropeItem( + { + population: 165000, + birthRate: 9.39, + deathRate: 8.97, + name: `Channel Islands` + }), + new CountryDemographicEuropeItem( + { + population: 4233000, + birthRate: 8.9, + deathRate: 12.9, + name: `Croatia` + }), + new CountryDemographicEuropeItem( + { + population: 1161000, + birthRate: 10.98, + deathRate: 6.84, + name: `Cyprus` + }), + new CountryDemographicEuropeItem( + { + population: 10601000, + birthRate: 10.5, + deathRate: 10.5, + name: `Czech Republic` + }), + new CountryDemographicEuropeItem( + { + population: 5689000, + birthRate: 10.2, + deathRate: 9.2, + name: `Denmark` + }), + new CountryDemographicEuropeItem( + { + population: 1315000, + birthRate: 10.6, + deathRate: 11.6, + name: `Estonia` + }), + new CountryDemographicEuropeItem( + { + population: 48000, + birthRate: 12.4, + deathRate: 7.7, + name: `Faeroe Islands` + }), + new CountryDemographicEuropeItem( + { + population: 5481000, + birthRate: 10.1, + deathRate: 9.6, + name: `Finland` + }), + new CountryDemographicEuropeItem( + { + population: 64453000, + birthRate: 12, + deathRate: 8.9, + name: `France` + }), + new CountryDemographicEuropeItem( + { + population: 81787000, + birthRate: 9, + deathRate: 11.3, + name: `Germany` + }), + new CountryDemographicEuropeItem( + { + population: 10660000, + birthRate: 8.5, + deathRate: 11.2, + name: `Greece` + }), + new CountryDemographicEuropeItem( + { + population: 9778000, + birthRate: 9.4, + deathRate: 13.4, + name: `Hungary` + }), + new CountryDemographicEuropeItem( + { + population: 330000, + birthRate: 12.5, + deathRate: 6.6, + name: `Iceland` + }), + new CountryDemographicEuropeItem( + { + population: 4652000, + birthRate: 14.1, + deathRate: 6.5, + name: `Ireland` + }), + new CountryDemographicEuropeItem( + { + population: 60578000, + birthRate: 8, + deathRate: 10.7, + name: `Italy` + }), + new CountryDemographicEuropeItem( + { + population: 1998000, + birthRate: 11.1, + deathRate: 14.4, + name: `Latvia` + }), + new CountryDemographicEuropeItem( + { + population: 37000, + birthRate: 8.7, + deathRate: 6.7, + name: `Liechtenstein` + }), + new CountryDemographicEuropeItem( + { + population: 2932000, + birthRate: 10.8, + deathRate: 14.4, + name: `Lithuania` + }), + new CountryDemographicEuropeItem( + { + population: 567000, + birthRate: 10.7, + deathRate: 7, + name: `Luxembourg` + }), + new CountryDemographicEuropeItem( + { + population: 2079000, + birthRate: 11.3, + deathRate: 9.75, + name: `Macedonia` + }), + new CountryDemographicEuropeItem( + { + population: 434000, + birthRate: 10, + deathRate: 8, + name: `Malta` + }), + new CountryDemographicEuropeItem( + { + population: 4071000, + birthRate: 10.52, + deathRate: 11.42, + name: `Moldova` + }), + new CountryDemographicEuropeItem( + { + population: 38000, + birthRate: 8.1, + deathRate: 7.6, + name: `Monaco` + }), + new CountryDemographicEuropeItem( + { + population: 627000, + birthRate: 11.52, + deathRate: 9.8, + name: `Montenegro` + }), + new CountryDemographicEuropeItem( + { + population: 16938000, + birthRate: 10.1, + deathRate: 8.7, + name: `Netherlands` + }), + new CountryDemographicEuropeItem( + { + population: 5200000, + birthRate: 11.3, + deathRate: 7.8, + name: `Norway` + }), + new CountryDemographicEuropeItem( + { + population: 38034000, + birthRate: 9.7, + deathRate: 10.4, + name: `Poland` + }), + new CountryDemographicEuropeItem( + { + population: 10368000, + birthRate: 8.3, + deathRate: 10.5, + name: `Portugal` + }), + new CountryDemographicEuropeItem( + { + population: 19925000, + birthRate: 10, + deathRate: 13.2, + name: `Romania` + }), + new CountryDemographicEuropeItem( + { + population: 144984992, + birthRate: 13.3, + deathRate: 13, + name: `Russia` + }), + new CountryDemographicEuropeItem( + { + population: 33000, + birthRate: 8.2, + deathRate: 7.1, + name: `San Marino` + }), + new CountryDemographicEuropeItem( + { + population: 8877000, + birthRate: 9.3, + deathRate: 14.6, + name: `Serbia` + }), + new CountryDemographicEuropeItem( + { + population: 5436000, + birthRate: 10.3, + deathRate: 9.9, + name: `Slovakia` + }), + new CountryDemographicEuropeItem( + { + population: 2071000, + birthRate: 10, + deathRate: 9.6, + name: `Slovenia` + }), + new CountryDemographicEuropeItem( + { + population: 46672000, + birthRate: 9, + deathRate: 9.1, + name: `Spain` + }), + new CountryDemographicEuropeItem( + { + population: 9765000, + birthRate: 11.7, + deathRate: 9.3, + name: `Sweden` + }), + new CountryDemographicEuropeItem( + { + population: 8297000, + birthRate: 10.5, + deathRate: 8.2, + name: `Switzerland` + }), + new CountryDemographicEuropeItem( + { + population: 44922000, + birthRate: 10.7, + deathRate: 14.9, + name: `Ukraine` + }), + new CountryDemographicEuropeItem( + { + population: 65860000, + birthRate: 11.9, + deathRate: 9.2, + name: `United Kingdom` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/data-tooltip/src/CountryDemographicAfrican.ts b/samples/charts/data-chart/data-tooltip/src/CountryDemographicAfrican.ts index 384341557..70452bea7 100644 --- a/samples/charts/data-chart/data-tooltip/src/CountryDemographicAfrican.ts +++ b/samples/charts/data-chart/data-tooltip/src/CountryDemographicAfrican.ts @@ -10,385 +10,391 @@ export class CountryDemographicAfricanItem { } export class CountryDemographicAfrican extends Array { - public constructor() { - super(); - this.push(new CountryDemographicAfricanItem( - { - population: 39728000, - birthRate: 23.9, - deathRate: 4.77, - name: `Algeria` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 27884000, - birthRate: 42.32, - deathRate: 8.68, - name: `Angola` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 10576000, - birthRate: 37.43, - deathRate: 9.32, - name: `Benin` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 2121000, - birthRate: 24.14, - deathRate: 7.02, - name: `Botswana` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 18111000, - birthRate: 39.44, - deathRate: 8.82, - name: `Burkina Faso` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 10160000, - birthRate: 42.66, - deathRate: 11.03, - name: `Burundi` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 23298000, - birthRate: 36.84, - deathRate: 10.35, - name: `Cameroon` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 525000, - birthRate: 21.14, - deathRate: 5.61, - name: `Cape Verde` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 4493000, - birthRate: 36.11, - deathRate: 14.01, - name: `C.A.R.` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 14111000, - birthRate: 43.86, - deathRate: 13.22, - name: `Chad` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 777000, - birthRate: 33.33, - deathRate: 7.49, - name: `Comoros` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 4856000, - birthRate: 35.23, - deathRate: 7.56, - name: `Congo` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 23226000, - birthRate: 37.1, - deathRate: 12.54, - name: `Cote Ivoire` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 76245000, - birthRate: 42.81, - deathRate: 10.19, - name: `DCongo` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 914000, - birthRate: 23.35, - deathRate: 8.37, - name: `Djibouti` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 92443000, - birthRate: 27.2, - deathRate: 5.96, - name: `Egypt` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 1169000, - birthRate: 34.64, - deathRate: 10.34, - name: `Equatorial Guinea` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 3343000, - birthRate: 32.83, - deathRate: 7.07, - name: `Eritrea` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 100835000, - birthRate: 32.3, - deathRate: 7, - name: `Ethiopia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 1948000, - birthRate: 30.09, - deathRate: 7.82, - name: `Gabon` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 2086000, - birthRate: 39.99, - deathRate: 8.2, - name: `Gambia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 27849000, - birthRate: 31.56, - deathRate: 8.31, - name: `Ghana` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 11432000, - birthRate: 36.36, - deathRate: 9.58, - name: `Guinea` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 1737000, - birthRate: 37.15, - deathRate: 10.78, - name: `Guinea-Bissau` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 47878000, - birthRate: 31.78, - deathRate: 5.84, - name: `Kenya` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 2059000, - birthRate: 28.16, - deathRate: 12.92, - name: `Lesotho` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 4472000, - birthRate: 34.72, - deathRate: 8.12, - name: `Liberia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 6418000, - birthRate: 20.19, - deathRate: 5.2, - name: `Libya` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 24234000, - birthRate: 33.4, - deathRate: 6.48, - name: `Madagascar` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 16745000, - birthRate: 37.05, - deathRate: 7.5, - name: `Malawi` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 17439000, - birthRate: 43.22, - deathRate: 10.67, - name: `Mali` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 4046000, - birthRate: 34.57, - deathRate: 7.96, - name: `Mauritania` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 1259000, - birthRate: 10.1, - deathRate: 7.7, - name: `Mauritius` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 34664000, - birthRate: 20.4, - deathRate: 5.15, - name: `Morocco` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 27042000, - birthRate: 39.36, - deathRate: 10.38, - name: `Mozambique` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 2315000, - birthRate: 29.59, - deathRate: 7.46, - name: `Namibia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 20002000, - birthRate: 48.44, - deathRate: 9.94, - name: `Niger` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 181136992, - birthRate: 39.37, - deathRate: 12.77, - name: `Nigeria` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 11369000, - birthRate: 31.79, - deathRate: 6.13, - name: `Rwanda` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 199000, - birthRate: 34.33, - deathRate: 6.81, - name: `Sao Tome and Principe` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 14578000, - birthRate: 36.21, - deathRate: 6.07, - name: `Senegal` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 95000, - birthRate: 17, - deathRate: 7.5, - name: `Seychelles` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 7172000, - birthRate: 35.61, - deathRate: 13.03, - name: `Sierra Leone` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 13797000, - birthRate: 43.66, - deathRate: 11.63, - name: `Somalia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 55386000, - birthRate: 21.3, - deathRate: 10.1, - name: `South Africa` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 10716000, - birthRate: 36.32, - deathRate: 11.24, - name: `South Sudan` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 38903000, - birthRate: 33.32, - deathRate: 7.52, - name: `Sudan` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 1104000, - birthRate: 29.27, - deathRate: 9.86, - name: `Swaziland` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 51483000, - birthRate: 38.64, - deathRate: 7.02, - name: `Tanzania` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 7323000, - birthRate: 34.53, - deathRate: 8.83, - name: `Togo` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 11180000, - birthRate: 18.65, - deathRate: 6.36, - name: `Tunisia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 38225000, - birthRate: 42.63, - deathRate: 8.87, - name: `Uganda` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 15879000, - birthRate: 38.44, - deathRate: 8, - name: `Zambia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 13815000, - birthRate: 33.94, - deathRate: 8.4, - name: `Zimbabwe` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryDemographicAfricanItem( + { + population: 39728000, + birthRate: 23.9, + deathRate: 4.77, + name: `Algeria` + }), + new CountryDemographicAfricanItem( + { + population: 27884000, + birthRate: 42.32, + deathRate: 8.68, + name: `Angola` + }), + new CountryDemographicAfricanItem( + { + population: 10576000, + birthRate: 37.43, + deathRate: 9.32, + name: `Benin` + }), + new CountryDemographicAfricanItem( + { + population: 2121000, + birthRate: 24.14, + deathRate: 7.02, + name: `Botswana` + }), + new CountryDemographicAfricanItem( + { + population: 18111000, + birthRate: 39.44, + deathRate: 8.82, + name: `Burkina Faso` + }), + new CountryDemographicAfricanItem( + { + population: 10160000, + birthRate: 42.66, + deathRate: 11.03, + name: `Burundi` + }), + new CountryDemographicAfricanItem( + { + population: 23298000, + birthRate: 36.84, + deathRate: 10.35, + name: `Cameroon` + }), + new CountryDemographicAfricanItem( + { + population: 525000, + birthRate: 21.14, + deathRate: 5.61, + name: `Cape Verde` + }), + new CountryDemographicAfricanItem( + { + population: 4493000, + birthRate: 36.11, + deathRate: 14.01, + name: `C.A.R.` + }), + new CountryDemographicAfricanItem( + { + population: 14111000, + birthRate: 43.86, + deathRate: 13.22, + name: `Chad` + }), + new CountryDemographicAfricanItem( + { + population: 777000, + birthRate: 33.33, + deathRate: 7.49, + name: `Comoros` + }), + new CountryDemographicAfricanItem( + { + population: 4856000, + birthRate: 35.23, + deathRate: 7.56, + name: `Congo` + }), + new CountryDemographicAfricanItem( + { + population: 23226000, + birthRate: 37.1, + deathRate: 12.54, + name: `Cote Ivoire` + }), + new CountryDemographicAfricanItem( + { + population: 76245000, + birthRate: 42.81, + deathRate: 10.19, + name: `DCongo` + }), + new CountryDemographicAfricanItem( + { + population: 914000, + birthRate: 23.35, + deathRate: 8.37, + name: `Djibouti` + }), + new CountryDemographicAfricanItem( + { + population: 92443000, + birthRate: 27.2, + deathRate: 5.96, + name: `Egypt` + }), + new CountryDemographicAfricanItem( + { + population: 1169000, + birthRate: 34.64, + deathRate: 10.34, + name: `Equatorial Guinea` + }), + new CountryDemographicAfricanItem( + { + population: 3343000, + birthRate: 32.83, + deathRate: 7.07, + name: `Eritrea` + }), + new CountryDemographicAfricanItem( + { + population: 100835000, + birthRate: 32.3, + deathRate: 7, + name: `Ethiopia` + }), + new CountryDemographicAfricanItem( + { + population: 1948000, + birthRate: 30.09, + deathRate: 7.82, + name: `Gabon` + }), + new CountryDemographicAfricanItem( + { + population: 2086000, + birthRate: 39.99, + deathRate: 8.2, + name: `Gambia` + }), + new CountryDemographicAfricanItem( + { + population: 27849000, + birthRate: 31.56, + deathRate: 8.31, + name: `Ghana` + }), + new CountryDemographicAfricanItem( + { + population: 11432000, + birthRate: 36.36, + deathRate: 9.58, + name: `Guinea` + }), + new CountryDemographicAfricanItem( + { + population: 1737000, + birthRate: 37.15, + deathRate: 10.78, + name: `Guinea-Bissau` + }), + new CountryDemographicAfricanItem( + { + population: 47878000, + birthRate: 31.78, + deathRate: 5.84, + name: `Kenya` + }), + new CountryDemographicAfricanItem( + { + population: 2059000, + birthRate: 28.16, + deathRate: 12.92, + name: `Lesotho` + }), + new CountryDemographicAfricanItem( + { + population: 4472000, + birthRate: 34.72, + deathRate: 8.12, + name: `Liberia` + }), + new CountryDemographicAfricanItem( + { + population: 6418000, + birthRate: 20.19, + deathRate: 5.2, + name: `Libya` + }), + new CountryDemographicAfricanItem( + { + population: 24234000, + birthRate: 33.4, + deathRate: 6.48, + name: `Madagascar` + }), + new CountryDemographicAfricanItem( + { + population: 16745000, + birthRate: 37.05, + deathRate: 7.5, + name: `Malawi` + }), + new CountryDemographicAfricanItem( + { + population: 17439000, + birthRate: 43.22, + deathRate: 10.67, + name: `Mali` + }), + new CountryDemographicAfricanItem( + { + population: 4046000, + birthRate: 34.57, + deathRate: 7.96, + name: `Mauritania` + }), + new CountryDemographicAfricanItem( + { + population: 1259000, + birthRate: 10.1, + deathRate: 7.7, + name: `Mauritius` + }), + new CountryDemographicAfricanItem( + { + population: 34664000, + birthRate: 20.4, + deathRate: 5.15, + name: `Morocco` + }), + new CountryDemographicAfricanItem( + { + population: 27042000, + birthRate: 39.36, + deathRate: 10.38, + name: `Mozambique` + }), + new CountryDemographicAfricanItem( + { + population: 2315000, + birthRate: 29.59, + deathRate: 7.46, + name: `Namibia` + }), + new CountryDemographicAfricanItem( + { + population: 20002000, + birthRate: 48.44, + deathRate: 9.94, + name: `Niger` + }), + new CountryDemographicAfricanItem( + { + population: 181136992, + birthRate: 39.37, + deathRate: 12.77, + name: `Nigeria` + }), + new CountryDemographicAfricanItem( + { + population: 11369000, + birthRate: 31.79, + deathRate: 6.13, + name: `Rwanda` + }), + new CountryDemographicAfricanItem( + { + population: 199000, + birthRate: 34.33, + deathRate: 6.81, + name: `Sao Tome and Principe` + }), + new CountryDemographicAfricanItem( + { + population: 14578000, + birthRate: 36.21, + deathRate: 6.07, + name: `Senegal` + }), + new CountryDemographicAfricanItem( + { + population: 95000, + birthRate: 17, + deathRate: 7.5, + name: `Seychelles` + }), + new CountryDemographicAfricanItem( + { + population: 7172000, + birthRate: 35.61, + deathRate: 13.03, + name: `Sierra Leone` + }), + new CountryDemographicAfricanItem( + { + population: 13797000, + birthRate: 43.66, + deathRate: 11.63, + name: `Somalia` + }), + new CountryDemographicAfricanItem( + { + population: 55386000, + birthRate: 21.3, + deathRate: 10.1, + name: `South Africa` + }), + new CountryDemographicAfricanItem( + { + population: 10716000, + birthRate: 36.32, + deathRate: 11.24, + name: `South Sudan` + }), + new CountryDemographicAfricanItem( + { + population: 38903000, + birthRate: 33.32, + deathRate: 7.52, + name: `Sudan` + }), + new CountryDemographicAfricanItem( + { + population: 1104000, + birthRate: 29.27, + deathRate: 9.86, + name: `Swaziland` + }), + new CountryDemographicAfricanItem( + { + population: 51483000, + birthRate: 38.64, + deathRate: 7.02, + name: `Tanzania` + }), + new CountryDemographicAfricanItem( + { + population: 7323000, + birthRate: 34.53, + deathRate: 8.83, + name: `Togo` + }), + new CountryDemographicAfricanItem( + { + population: 11180000, + birthRate: 18.65, + deathRate: 6.36, + name: `Tunisia` + }), + new CountryDemographicAfricanItem( + { + population: 38225000, + birthRate: 42.63, + deathRate: 8.87, + name: `Uganda` + }), + new CountryDemographicAfricanItem( + { + population: 15879000, + birthRate: 38.44, + deathRate: 8, + name: `Zambia` + }), + new CountryDemographicAfricanItem( + { + population: 13815000, + birthRate: 33.94, + deathRate: 8.4, + name: `Zimbabwe` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/data-tooltip/src/CountryDemographicEurope.ts b/samples/charts/data-chart/data-tooltip/src/CountryDemographicEurope.ts index ab97566c2..28a586e0f 100644 --- a/samples/charts/data-chart/data-tooltip/src/CountryDemographicEurope.ts +++ b/samples/charts/data-chart/data-tooltip/src/CountryDemographicEurope.ts @@ -10,322 +10,328 @@ export class CountryDemographicEuropeItem { } export class CountryDemographicEurope extends Array { - public constructor() { - super(); - this.push(new CountryDemographicEuropeItem( - { - population: 2891000, - birthRate: 11.88, - deathRate: 7.22, - name: `Albania` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 8679000, - birthRate: 9.8, - deathRate: 9.6, - name: `Austria` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 9439000, - birthRate: 12.5, - deathRate: 12.6, - name: `Belarus` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 11288000, - birthRate: 10.8, - deathRate: 9.8, - name: `Belgium` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 3429000, - birthRate: 9.12, - deathRate: 10.89, - name: `Bosnia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 7200000, - birthRate: 9.2, - deathRate: 15.3, - name: `Bulgaria` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 165000, - birthRate: 9.39, - deathRate: 8.97, - name: `Channel Islands` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 4233000, - birthRate: 8.9, - deathRate: 12.9, - name: `Croatia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 1161000, - birthRate: 10.98, - deathRate: 6.84, - name: `Cyprus` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 10601000, - birthRate: 10.5, - deathRate: 10.5, - name: `Czech Republic` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 5689000, - birthRate: 10.2, - deathRate: 9.2, - name: `Denmark` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 1315000, - birthRate: 10.6, - deathRate: 11.6, - name: `Estonia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 48000, - birthRate: 12.4, - deathRate: 7.7, - name: `Faeroe Islands` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 5481000, - birthRate: 10.1, - deathRate: 9.6, - name: `Finland` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 64453000, - birthRate: 12, - deathRate: 8.9, - name: `France` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 81787000, - birthRate: 9, - deathRate: 11.3, - name: `Germany` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 10660000, - birthRate: 8.5, - deathRate: 11.2, - name: `Greece` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 9778000, - birthRate: 9.4, - deathRate: 13.4, - name: `Hungary` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 330000, - birthRate: 12.5, - deathRate: 6.6, - name: `Iceland` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 4652000, - birthRate: 14.1, - deathRate: 6.5, - name: `Ireland` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 60578000, - birthRate: 8, - deathRate: 10.7, - name: `Italy` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 1998000, - birthRate: 11.1, - deathRate: 14.4, - name: `Latvia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 37000, - birthRate: 8.7, - deathRate: 6.7, - name: `Liechtenstein` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 2932000, - birthRate: 10.8, - deathRate: 14.4, - name: `Lithuania` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 567000, - birthRate: 10.7, - deathRate: 7, - name: `Luxembourg` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 2079000, - birthRate: 11.3, - deathRate: 9.75, - name: `Macedonia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 434000, - birthRate: 10, - deathRate: 8, - name: `Malta` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 4071000, - birthRate: 10.52, - deathRate: 11.42, - name: `Moldova` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 38000, - birthRate: 8.1, - deathRate: 7.6, - name: `Monaco` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 627000, - birthRate: 11.52, - deathRate: 9.8, - name: `Montenegro` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 16938000, - birthRate: 10.1, - deathRate: 8.7, - name: `Netherlands` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 5200000, - birthRate: 11.3, - deathRate: 7.8, - name: `Norway` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 38034000, - birthRate: 9.7, - deathRate: 10.4, - name: `Poland` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 10368000, - birthRate: 8.3, - deathRate: 10.5, - name: `Portugal` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 19925000, - birthRate: 10, - deathRate: 13.2, - name: `Romania` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 144984992, - birthRate: 13.3, - deathRate: 13, - name: `Russia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 33000, - birthRate: 8.2, - deathRate: 7.1, - name: `San Marino` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 8877000, - birthRate: 9.3, - deathRate: 14.6, - name: `Serbia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 5436000, - birthRate: 10.3, - deathRate: 9.9, - name: `Slovakia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 2071000, - birthRate: 10, - deathRate: 9.6, - name: `Slovenia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 46672000, - birthRate: 9, - deathRate: 9.1, - name: `Spain` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 9765000, - birthRate: 11.7, - deathRate: 9.3, - name: `Sweden` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 8297000, - birthRate: 10.5, - deathRate: 8.2, - name: `Switzerland` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 44922000, - birthRate: 10.7, - deathRate: 14.9, - name: `Ukraine` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 65860000, - birthRate: 11.9, - deathRate: 9.2, - name: `United Kingdom` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryDemographicEuropeItem( + { + population: 2891000, + birthRate: 11.88, + deathRate: 7.22, + name: `Albania` + }), + new CountryDemographicEuropeItem( + { + population: 8679000, + birthRate: 9.8, + deathRate: 9.6, + name: `Austria` + }), + new CountryDemographicEuropeItem( + { + population: 9439000, + birthRate: 12.5, + deathRate: 12.6, + name: `Belarus` + }), + new CountryDemographicEuropeItem( + { + population: 11288000, + birthRate: 10.8, + deathRate: 9.8, + name: `Belgium` + }), + new CountryDemographicEuropeItem( + { + population: 3429000, + birthRate: 9.12, + deathRate: 10.89, + name: `Bosnia` + }), + new CountryDemographicEuropeItem( + { + population: 7200000, + birthRate: 9.2, + deathRate: 15.3, + name: `Bulgaria` + }), + new CountryDemographicEuropeItem( + { + population: 165000, + birthRate: 9.39, + deathRate: 8.97, + name: `Channel Islands` + }), + new CountryDemographicEuropeItem( + { + population: 4233000, + birthRate: 8.9, + deathRate: 12.9, + name: `Croatia` + }), + new CountryDemographicEuropeItem( + { + population: 1161000, + birthRate: 10.98, + deathRate: 6.84, + name: `Cyprus` + }), + new CountryDemographicEuropeItem( + { + population: 10601000, + birthRate: 10.5, + deathRate: 10.5, + name: `Czech Republic` + }), + new CountryDemographicEuropeItem( + { + population: 5689000, + birthRate: 10.2, + deathRate: 9.2, + name: `Denmark` + }), + new CountryDemographicEuropeItem( + { + population: 1315000, + birthRate: 10.6, + deathRate: 11.6, + name: `Estonia` + }), + new CountryDemographicEuropeItem( + { + population: 48000, + birthRate: 12.4, + deathRate: 7.7, + name: `Faeroe Islands` + }), + new CountryDemographicEuropeItem( + { + population: 5481000, + birthRate: 10.1, + deathRate: 9.6, + name: `Finland` + }), + new CountryDemographicEuropeItem( + { + population: 64453000, + birthRate: 12, + deathRate: 8.9, + name: `France` + }), + new CountryDemographicEuropeItem( + { + population: 81787000, + birthRate: 9, + deathRate: 11.3, + name: `Germany` + }), + new CountryDemographicEuropeItem( + { + population: 10660000, + birthRate: 8.5, + deathRate: 11.2, + name: `Greece` + }), + new CountryDemographicEuropeItem( + { + population: 9778000, + birthRate: 9.4, + deathRate: 13.4, + name: `Hungary` + }), + new CountryDemographicEuropeItem( + { + population: 330000, + birthRate: 12.5, + deathRate: 6.6, + name: `Iceland` + }), + new CountryDemographicEuropeItem( + { + population: 4652000, + birthRate: 14.1, + deathRate: 6.5, + name: `Ireland` + }), + new CountryDemographicEuropeItem( + { + population: 60578000, + birthRate: 8, + deathRate: 10.7, + name: `Italy` + }), + new CountryDemographicEuropeItem( + { + population: 1998000, + birthRate: 11.1, + deathRate: 14.4, + name: `Latvia` + }), + new CountryDemographicEuropeItem( + { + population: 37000, + birthRate: 8.7, + deathRate: 6.7, + name: `Liechtenstein` + }), + new CountryDemographicEuropeItem( + { + population: 2932000, + birthRate: 10.8, + deathRate: 14.4, + name: `Lithuania` + }), + new CountryDemographicEuropeItem( + { + population: 567000, + birthRate: 10.7, + deathRate: 7, + name: `Luxembourg` + }), + new CountryDemographicEuropeItem( + { + population: 2079000, + birthRate: 11.3, + deathRate: 9.75, + name: `Macedonia` + }), + new CountryDemographicEuropeItem( + { + population: 434000, + birthRate: 10, + deathRate: 8, + name: `Malta` + }), + new CountryDemographicEuropeItem( + { + population: 4071000, + birthRate: 10.52, + deathRate: 11.42, + name: `Moldova` + }), + new CountryDemographicEuropeItem( + { + population: 38000, + birthRate: 8.1, + deathRate: 7.6, + name: `Monaco` + }), + new CountryDemographicEuropeItem( + { + population: 627000, + birthRate: 11.52, + deathRate: 9.8, + name: `Montenegro` + }), + new CountryDemographicEuropeItem( + { + population: 16938000, + birthRate: 10.1, + deathRate: 8.7, + name: `Netherlands` + }), + new CountryDemographicEuropeItem( + { + population: 5200000, + birthRate: 11.3, + deathRate: 7.8, + name: `Norway` + }), + new CountryDemographicEuropeItem( + { + population: 38034000, + birthRate: 9.7, + deathRate: 10.4, + name: `Poland` + }), + new CountryDemographicEuropeItem( + { + population: 10368000, + birthRate: 8.3, + deathRate: 10.5, + name: `Portugal` + }), + new CountryDemographicEuropeItem( + { + population: 19925000, + birthRate: 10, + deathRate: 13.2, + name: `Romania` + }), + new CountryDemographicEuropeItem( + { + population: 144984992, + birthRate: 13.3, + deathRate: 13, + name: `Russia` + }), + new CountryDemographicEuropeItem( + { + population: 33000, + birthRate: 8.2, + deathRate: 7.1, + name: `San Marino` + }), + new CountryDemographicEuropeItem( + { + population: 8877000, + birthRate: 9.3, + deathRate: 14.6, + name: `Serbia` + }), + new CountryDemographicEuropeItem( + { + population: 5436000, + birthRate: 10.3, + deathRate: 9.9, + name: `Slovakia` + }), + new CountryDemographicEuropeItem( + { + population: 2071000, + birthRate: 10, + deathRate: 9.6, + name: `Slovenia` + }), + new CountryDemographicEuropeItem( + { + population: 46672000, + birthRate: 9, + deathRate: 9.1, + name: `Spain` + }), + new CountryDemographicEuropeItem( + { + population: 9765000, + birthRate: 11.7, + deathRate: 9.3, + name: `Sweden` + }), + new CountryDemographicEuropeItem( + { + population: 8297000, + birthRate: 10.5, + deathRate: 8.2, + name: `Switzerland` + }), + new CountryDemographicEuropeItem( + { + population: 44922000, + birthRate: 10.7, + deathRate: 14.9, + name: `Ukraine` + }), + new CountryDemographicEuropeItem( + { + population: 65860000, + birthRate: 11.9, + deathRate: 9.2, + name: `United Kingdom` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/financial-price-series/src/Stock2Years.ts b/samples/charts/data-chart/financial-price-series/src/Stock2Years.ts index 781631592..ffc4d7580 100644 --- a/samples/charts/data-chart/financial-price-series/src/Stock2Years.ts +++ b/samples/charts/data-chart/financial-price-series/src/Stock2Years.ts @@ -12,223 +12,229 @@ export class Stock2YearsItem { } export class Stock2Years extends Array { - public constructor() { - super(); - this.push(new Stock2YearsItem( - { - month: `2020`, - open: 41.1, - high: 41.6, - low: 41.1, - close: 41.4, - volume: 32610 - })); - this.push(new Stock2YearsItem( - { - month: `FEB`, - open: 41.4, - high: 41.7, - low: 41.2, - close: 41.4, - volume: 28666 - })); - this.push(new Stock2YearsItem( - { - month: `MAR`, - open: 41.3, - high: 41.3, - low: 40.7, - close: 41, - volume: 30139 - })); - this.push(new Stock2YearsItem( - { - month: `APR`, - open: 41.3, - high: 41.4, - low: 39.6, - close: 39.9, - volume: 51409 - })); - this.push(new Stock2YearsItem( - { - month: `MAY`, - open: 40, - high: 40.3, - low: 39.7, - close: 39.8, - volume: 37559 - })); - this.push(new Stock2YearsItem( - { - month: `JUN`, - open: 39.8, - high: 39.9, - low: 39.2, - close: 39.8, - volume: 35919 - })); - this.push(new Stock2YearsItem( - { - month: `JUL`, - open: 39.9, - high: 40.5, - low: 39.9, - close: 40.5, - volume: 27398 - })); - this.push(new Stock2YearsItem( - { - month: `AUG`, - open: 40.4, - high: 40.7, - low: 39.1, - close: 39.4, - volume: 45960 - })); - this.push(new Stock2YearsItem( - { - month: `SEP`, - open: 39, - high: 39.8, - low: 39, - close: 39.2, - volume: 34333 - })); - this.push(new Stock2YearsItem( - { - month: `OCT`, - open: 39.1, - high: 39.4, - low: 38.9, - close: 39.2, - volume: 32006 - })); - this.push(new Stock2YearsItem( - { - month: `NOV`, - open: 39.3, - high: 40, - low: 39, - close: 39.8, - volume: 33978 - })); - this.push(new Stock2YearsItem( - { - month: `DEC`, - open: 40.1, - high: 40.4, - low: 39.9, - close: 40.4, - volume: 30616 - })); - this.push(new Stock2YearsItem( - { - month: `2021`, - open: 40, - high: 40.2, - low: 39.5, - close: 40, - volume: 36689 - })); - this.push(new Stock2YearsItem( - { - month: `FEB`, - open: 40.1, - high: 40.1, - low: 39.8, - close: 39.9, - volume: 22222 - })); - this.push(new Stock2YearsItem( - { - month: `MAR`, - open: 40, - high: 40.1, - low: 39.8, - close: 40, - volume: 27057 - })); - this.push(new Stock2YearsItem( - { - month: `APR`, - open: 40, - high: 40, - low: 39.5, - close: 39.7, - volume: 24602 - })); - this.push(new Stock2YearsItem( - { - month: `MAY`, - open: 39.7, - high: 40, - low: 39.3, - close: 39.9, - volume: 42381 - })); - this.push(new Stock2YearsItem( - { - month: `JUN`, - open: 40.3, - high: 40.7, - low: 39.8, - close: 39.9, - volume: 56883 - })); - this.push(new Stock2YearsItem( - { - month: `JUL`, - open: 40.1, - high: 41.3, - low: 40.1, - close: 40.9, - volume: 50610 - })); - this.push(new Stock2YearsItem( - { - month: `AUG`, - open: 41.1, - high: 41.2, - low: 40.4, - close: 40.5, - volume: 29637 - })); - this.push(new Stock2YearsItem( - { - month: `SEP`, - open: 39, - high: 39.8, - low: 39, - close: 39.2, - volume: 34333 - })); - this.push(new Stock2YearsItem( - { - month: `OCT`, - open: 39.1, - high: 39.4, - low: 38.9, - close: 39.2, - volume: 32006 - })); - this.push(new Stock2YearsItem( - { - month: `NOV`, - open: 39.3, - high: 40, - low: 39, - close: 39.8, - volume: 33978 - })); - this.push(new Stock2YearsItem( - { - month: `DEC`, - open: 40.1, - high: 40.4, - low: 39.9, - close: 40.4, - volume: 30616 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new Stock2YearsItem( + { + month: `2020`, + open: 41.1, + high: 41.6, + low: 41.1, + close: 41.4, + volume: 32610 + }), + new Stock2YearsItem( + { + month: `FEB`, + open: 41.4, + high: 41.7, + low: 41.2, + close: 41.4, + volume: 28666 + }), + new Stock2YearsItem( + { + month: `MAR`, + open: 41.3, + high: 41.3, + low: 40.7, + close: 41, + volume: 30139 + }), + new Stock2YearsItem( + { + month: `APR`, + open: 41.3, + high: 41.4, + low: 39.6, + close: 39.9, + volume: 51409 + }), + new Stock2YearsItem( + { + month: `MAY`, + open: 40, + high: 40.3, + low: 39.7, + close: 39.8, + volume: 37559 + }), + new Stock2YearsItem( + { + month: `JUN`, + open: 39.8, + high: 39.9, + low: 39.2, + close: 39.8, + volume: 35919 + }), + new Stock2YearsItem( + { + month: `JUL`, + open: 39.9, + high: 40.5, + low: 39.9, + close: 40.5, + volume: 27398 + }), + new Stock2YearsItem( + { + month: `AUG`, + open: 40.4, + high: 40.7, + low: 39.1, + close: 39.4, + volume: 45960 + }), + new Stock2YearsItem( + { + month: `SEP`, + open: 39, + high: 39.8, + low: 39, + close: 39.2, + volume: 34333 + }), + new Stock2YearsItem( + { + month: `OCT`, + open: 39.1, + high: 39.4, + low: 38.9, + close: 39.2, + volume: 32006 + }), + new Stock2YearsItem( + { + month: `NOV`, + open: 39.3, + high: 40, + low: 39, + close: 39.8, + volume: 33978 + }), + new Stock2YearsItem( + { + month: `DEC`, + open: 40.1, + high: 40.4, + low: 39.9, + close: 40.4, + volume: 30616 + }), + new Stock2YearsItem( + { + month: `2021`, + open: 40, + high: 40.2, + low: 39.5, + close: 40, + volume: 36689 + }), + new Stock2YearsItem( + { + month: `FEB`, + open: 40.1, + high: 40.1, + low: 39.8, + close: 39.9, + volume: 22222 + }), + new Stock2YearsItem( + { + month: `MAR`, + open: 40, + high: 40.1, + low: 39.8, + close: 40, + volume: 27057 + }), + new Stock2YearsItem( + { + month: `APR`, + open: 40, + high: 40, + low: 39.5, + close: 39.7, + volume: 24602 + }), + new Stock2YearsItem( + { + month: `MAY`, + open: 39.7, + high: 40, + low: 39.3, + close: 39.9, + volume: 42381 + }), + new Stock2YearsItem( + { + month: `JUN`, + open: 40.3, + high: 40.7, + low: 39.8, + close: 39.9, + volume: 56883 + }), + new Stock2YearsItem( + { + month: `JUL`, + open: 40.1, + high: 41.3, + low: 40.1, + close: 40.9, + volume: 50610 + }), + new Stock2YearsItem( + { + month: `AUG`, + open: 41.1, + high: 41.2, + low: 40.4, + close: 40.5, + volume: 29637 + }), + new Stock2YearsItem( + { + month: `SEP`, + open: 39, + high: 39.8, + low: 39, + close: 39.2, + volume: 34333 + }), + new Stock2YearsItem( + { + month: `OCT`, + open: 39.1, + high: 39.4, + low: 38.9, + close: 39.2, + volume: 32006 + }), + new Stock2YearsItem( + { + month: `NOV`, + open: 39.3, + high: 40, + low: 39, + close: 39.8, + volume: 33978 + }), + new Stock2YearsItem( + { + month: `DEC`, + open: 40.1, + high: 40.4, + low: 39.9, + close: 40.4, + volume: 30616 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/format-specifiers/src/HighestGrossingMovies.ts b/samples/charts/data-chart/format-specifiers/src/HighestGrossingMovies.ts index 1d92f1541..dea3e62a4 100644 --- a/samples/charts/data-chart/format-specifiers/src/HighestGrossingMovies.ts +++ b/samples/charts/data-chart/format-specifiers/src/HighestGrossingMovies.ts @@ -9,43 +9,49 @@ export class HighestGrossingMoviesItem { } export class HighestGrossingMovies extends Array { - public constructor() { - super(); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Marvel Universe`, - totalRevenue: 22.55, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Star Wars`, - totalRevenue: 10.32, - highestGrossing: 2.07 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Harry Potter`, - totalRevenue: 9.19, - highestGrossing: 1.34 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Avengers`, - totalRevenue: 7.76, - highestGrossing: 2.8 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `Spider Man`, - totalRevenue: 7.22, - highestGrossing: 1.28 - })); - this.push(new HighestGrossingMoviesItem( - { - franchise: `James Bond`, - totalRevenue: 7.12, - highestGrossing: 1.11 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new HighestGrossingMoviesItem( + { + franchise: `Marvel Universe`, + totalRevenue: 22.55, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Star Wars`, + totalRevenue: 10.32, + highestGrossing: 2.07 + }), + new HighestGrossingMoviesItem( + { + franchise: `Harry Potter`, + totalRevenue: 9.19, + highestGrossing: 1.34 + }), + new HighestGrossingMoviesItem( + { + franchise: `Avengers`, + totalRevenue: 7.76, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Spider Man`, + totalRevenue: 7.22, + highestGrossing: 1.28 + }), + new HighestGrossingMoviesItem( + { + franchise: `James Bond`, + totalRevenue: 7.12, + highestGrossing: 1.11 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/polar-area-chart-styling/src/BoatSailingData.ts b/samples/charts/data-chart/polar-area-chart-styling/src/BoatSailingData.ts index 450792534..f15482a99 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/src/BoatSailingData.ts +++ b/samples/charts/data-chart/polar-area-chart-styling/src/BoatSailingData.ts @@ -9,61 +9,67 @@ export class BoatSailingDataItem { } export class BoatSailingData extends Array { - public constructor() { - super(); - this.push(new BoatSailingDataItem( - { - direction: 0, - boatSpeed: 70, - windSpeed: 90 - })); - this.push(new BoatSailingDataItem( - { - direction: 45, - boatSpeed: 35, - windSpeed: 65 - })); - this.push(new BoatSailingDataItem( - { - direction: 90, - boatSpeed: 25, - windSpeed: 45 - })); - this.push(new BoatSailingDataItem( - { - direction: 135, - boatSpeed: 15, - windSpeed: 25 - })); - this.push(new BoatSailingDataItem( - { - direction: 180, - boatSpeed: 0, - windSpeed: 0 - })); - this.push(new BoatSailingDataItem( - { - direction: 225, - boatSpeed: 15, - windSpeed: 25 - })); - this.push(new BoatSailingDataItem( - { - direction: 270, - boatSpeed: 25, - windSpeed: 45 - })); - this.push(new BoatSailingDataItem( - { - direction: 315, - boatSpeed: 35, - windSpeed: 65 - })); - this.push(new BoatSailingDataItem( - { - direction: 360, - boatSpeed: 70, - windSpeed: 90 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new BoatSailingDataItem( + { + direction: 0, + boatSpeed: 70, + windSpeed: 90 + }), + new BoatSailingDataItem( + { + direction: 45, + boatSpeed: 35, + windSpeed: 65 + }), + new BoatSailingDataItem( + { + direction: 90, + boatSpeed: 25, + windSpeed: 45 + }), + new BoatSailingDataItem( + { + direction: 135, + boatSpeed: 15, + windSpeed: 25 + }), + new BoatSailingDataItem( + { + direction: 180, + boatSpeed: 0, + windSpeed: 0 + }), + new BoatSailingDataItem( + { + direction: 225, + boatSpeed: 15, + windSpeed: 25 + }), + new BoatSailingDataItem( + { + direction: 270, + boatSpeed: 25, + windSpeed: 45 + }), + new BoatSailingDataItem( + { + direction: 315, + boatSpeed: 35, + windSpeed: 65 + }), + new BoatSailingDataItem( + { + direction: 360, + boatSpeed: 70, + windSpeed: 90 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/polar-area-chart/src/BoatSailingData.ts b/samples/charts/data-chart/polar-area-chart/src/BoatSailingData.ts index 450792534..f15482a99 100644 --- a/samples/charts/data-chart/polar-area-chart/src/BoatSailingData.ts +++ b/samples/charts/data-chart/polar-area-chart/src/BoatSailingData.ts @@ -9,61 +9,67 @@ export class BoatSailingDataItem { } export class BoatSailingData extends Array { - public constructor() { - super(); - this.push(new BoatSailingDataItem( - { - direction: 0, - boatSpeed: 70, - windSpeed: 90 - })); - this.push(new BoatSailingDataItem( - { - direction: 45, - boatSpeed: 35, - windSpeed: 65 - })); - this.push(new BoatSailingDataItem( - { - direction: 90, - boatSpeed: 25, - windSpeed: 45 - })); - this.push(new BoatSailingDataItem( - { - direction: 135, - boatSpeed: 15, - windSpeed: 25 - })); - this.push(new BoatSailingDataItem( - { - direction: 180, - boatSpeed: 0, - windSpeed: 0 - })); - this.push(new BoatSailingDataItem( - { - direction: 225, - boatSpeed: 15, - windSpeed: 25 - })); - this.push(new BoatSailingDataItem( - { - direction: 270, - boatSpeed: 25, - windSpeed: 45 - })); - this.push(new BoatSailingDataItem( - { - direction: 315, - boatSpeed: 35, - windSpeed: 65 - })); - this.push(new BoatSailingDataItem( - { - direction: 360, - boatSpeed: 70, - windSpeed: 90 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new BoatSailingDataItem( + { + direction: 0, + boatSpeed: 70, + windSpeed: 90 + }), + new BoatSailingDataItem( + { + direction: 45, + boatSpeed: 35, + windSpeed: 65 + }), + new BoatSailingDataItem( + { + direction: 90, + boatSpeed: 25, + windSpeed: 45 + }), + new BoatSailingDataItem( + { + direction: 135, + boatSpeed: 15, + windSpeed: 25 + }), + new BoatSailingDataItem( + { + direction: 180, + boatSpeed: 0, + windSpeed: 0 + }), + new BoatSailingDataItem( + { + direction: 225, + boatSpeed: 15, + windSpeed: 25 + }), + new BoatSailingDataItem( + { + direction: 270, + boatSpeed: 25, + windSpeed: 45 + }), + new BoatSailingDataItem( + { + direction: 315, + boatSpeed: 35, + windSpeed: 65 + }), + new BoatSailingDataItem( + { + direction: 360, + boatSpeed: 70, + windSpeed: 90 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/polar-line-chart/src/BoatSailingData.ts b/samples/charts/data-chart/polar-line-chart/src/BoatSailingData.ts index 450792534..f15482a99 100644 --- a/samples/charts/data-chart/polar-line-chart/src/BoatSailingData.ts +++ b/samples/charts/data-chart/polar-line-chart/src/BoatSailingData.ts @@ -9,61 +9,67 @@ export class BoatSailingDataItem { } export class BoatSailingData extends Array { - public constructor() { - super(); - this.push(new BoatSailingDataItem( - { - direction: 0, - boatSpeed: 70, - windSpeed: 90 - })); - this.push(new BoatSailingDataItem( - { - direction: 45, - boatSpeed: 35, - windSpeed: 65 - })); - this.push(new BoatSailingDataItem( - { - direction: 90, - boatSpeed: 25, - windSpeed: 45 - })); - this.push(new BoatSailingDataItem( - { - direction: 135, - boatSpeed: 15, - windSpeed: 25 - })); - this.push(new BoatSailingDataItem( - { - direction: 180, - boatSpeed: 0, - windSpeed: 0 - })); - this.push(new BoatSailingDataItem( - { - direction: 225, - boatSpeed: 15, - windSpeed: 25 - })); - this.push(new BoatSailingDataItem( - { - direction: 270, - boatSpeed: 25, - windSpeed: 45 - })); - this.push(new BoatSailingDataItem( - { - direction: 315, - boatSpeed: 35, - windSpeed: 65 - })); - this.push(new BoatSailingDataItem( - { - direction: 360, - boatSpeed: 70, - windSpeed: 90 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new BoatSailingDataItem( + { + direction: 0, + boatSpeed: 70, + windSpeed: 90 + }), + new BoatSailingDataItem( + { + direction: 45, + boatSpeed: 35, + windSpeed: 65 + }), + new BoatSailingDataItem( + { + direction: 90, + boatSpeed: 25, + windSpeed: 45 + }), + new BoatSailingDataItem( + { + direction: 135, + boatSpeed: 15, + windSpeed: 25 + }), + new BoatSailingDataItem( + { + direction: 180, + boatSpeed: 0, + windSpeed: 0 + }), + new BoatSailingDataItem( + { + direction: 225, + boatSpeed: 15, + windSpeed: 25 + }), + new BoatSailingDataItem( + { + direction: 270, + boatSpeed: 25, + windSpeed: 45 + }), + new BoatSailingDataItem( + { + direction: 315, + boatSpeed: 35, + windSpeed: 65 + }), + new BoatSailingDataItem( + { + direction: 360, + boatSpeed: 70, + windSpeed: 90 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/polar-scatter-chart/src/BoatSailingData.ts b/samples/charts/data-chart/polar-scatter-chart/src/BoatSailingData.ts index 450792534..f15482a99 100644 --- a/samples/charts/data-chart/polar-scatter-chart/src/BoatSailingData.ts +++ b/samples/charts/data-chart/polar-scatter-chart/src/BoatSailingData.ts @@ -9,61 +9,67 @@ export class BoatSailingDataItem { } export class BoatSailingData extends Array { - public constructor() { - super(); - this.push(new BoatSailingDataItem( - { - direction: 0, - boatSpeed: 70, - windSpeed: 90 - })); - this.push(new BoatSailingDataItem( - { - direction: 45, - boatSpeed: 35, - windSpeed: 65 - })); - this.push(new BoatSailingDataItem( - { - direction: 90, - boatSpeed: 25, - windSpeed: 45 - })); - this.push(new BoatSailingDataItem( - { - direction: 135, - boatSpeed: 15, - windSpeed: 25 - })); - this.push(new BoatSailingDataItem( - { - direction: 180, - boatSpeed: 0, - windSpeed: 0 - })); - this.push(new BoatSailingDataItem( - { - direction: 225, - boatSpeed: 15, - windSpeed: 25 - })); - this.push(new BoatSailingDataItem( - { - direction: 270, - boatSpeed: 25, - windSpeed: 45 - })); - this.push(new BoatSailingDataItem( - { - direction: 315, - boatSpeed: 35, - windSpeed: 65 - })); - this.push(new BoatSailingDataItem( - { - direction: 360, - boatSpeed: 70, - windSpeed: 90 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new BoatSailingDataItem( + { + direction: 0, + boatSpeed: 70, + windSpeed: 90 + }), + new BoatSailingDataItem( + { + direction: 45, + boatSpeed: 35, + windSpeed: 65 + }), + new BoatSailingDataItem( + { + direction: 90, + boatSpeed: 25, + windSpeed: 45 + }), + new BoatSailingDataItem( + { + direction: 135, + boatSpeed: 15, + windSpeed: 25 + }), + new BoatSailingDataItem( + { + direction: 180, + boatSpeed: 0, + windSpeed: 0 + }), + new BoatSailingDataItem( + { + direction: 225, + boatSpeed: 15, + windSpeed: 25 + }), + new BoatSailingDataItem( + { + direction: 270, + boatSpeed: 25, + windSpeed: 45 + }), + new BoatSailingDataItem( + { + direction: 315, + boatSpeed: 35, + windSpeed: 65 + }), + new BoatSailingDataItem( + { + direction: 360, + boatSpeed: 70, + windSpeed: 90 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/polar-spline-area-chart/src/BoatSailingData.ts b/samples/charts/data-chart/polar-spline-area-chart/src/BoatSailingData.ts index 450792534..f15482a99 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/src/BoatSailingData.ts +++ b/samples/charts/data-chart/polar-spline-area-chart/src/BoatSailingData.ts @@ -9,61 +9,67 @@ export class BoatSailingDataItem { } export class BoatSailingData extends Array { - public constructor() { - super(); - this.push(new BoatSailingDataItem( - { - direction: 0, - boatSpeed: 70, - windSpeed: 90 - })); - this.push(new BoatSailingDataItem( - { - direction: 45, - boatSpeed: 35, - windSpeed: 65 - })); - this.push(new BoatSailingDataItem( - { - direction: 90, - boatSpeed: 25, - windSpeed: 45 - })); - this.push(new BoatSailingDataItem( - { - direction: 135, - boatSpeed: 15, - windSpeed: 25 - })); - this.push(new BoatSailingDataItem( - { - direction: 180, - boatSpeed: 0, - windSpeed: 0 - })); - this.push(new BoatSailingDataItem( - { - direction: 225, - boatSpeed: 15, - windSpeed: 25 - })); - this.push(new BoatSailingDataItem( - { - direction: 270, - boatSpeed: 25, - windSpeed: 45 - })); - this.push(new BoatSailingDataItem( - { - direction: 315, - boatSpeed: 35, - windSpeed: 65 - })); - this.push(new BoatSailingDataItem( - { - direction: 360, - boatSpeed: 70, - windSpeed: 90 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new BoatSailingDataItem( + { + direction: 0, + boatSpeed: 70, + windSpeed: 90 + }), + new BoatSailingDataItem( + { + direction: 45, + boatSpeed: 35, + windSpeed: 65 + }), + new BoatSailingDataItem( + { + direction: 90, + boatSpeed: 25, + windSpeed: 45 + }), + new BoatSailingDataItem( + { + direction: 135, + boatSpeed: 15, + windSpeed: 25 + }), + new BoatSailingDataItem( + { + direction: 180, + boatSpeed: 0, + windSpeed: 0 + }), + new BoatSailingDataItem( + { + direction: 225, + boatSpeed: 15, + windSpeed: 25 + }), + new BoatSailingDataItem( + { + direction: 270, + boatSpeed: 25, + windSpeed: 45 + }), + new BoatSailingDataItem( + { + direction: 315, + boatSpeed: 35, + windSpeed: 65 + }), + new BoatSailingDataItem( + { + direction: 360, + boatSpeed: 70, + windSpeed: 90 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/polar-spline-chart/src/BoatSailingData.ts b/samples/charts/data-chart/polar-spline-chart/src/BoatSailingData.ts index 450792534..f15482a99 100644 --- a/samples/charts/data-chart/polar-spline-chart/src/BoatSailingData.ts +++ b/samples/charts/data-chart/polar-spline-chart/src/BoatSailingData.ts @@ -9,61 +9,67 @@ export class BoatSailingDataItem { } export class BoatSailingData extends Array { - public constructor() { - super(); - this.push(new BoatSailingDataItem( - { - direction: 0, - boatSpeed: 70, - windSpeed: 90 - })); - this.push(new BoatSailingDataItem( - { - direction: 45, - boatSpeed: 35, - windSpeed: 65 - })); - this.push(new BoatSailingDataItem( - { - direction: 90, - boatSpeed: 25, - windSpeed: 45 - })); - this.push(new BoatSailingDataItem( - { - direction: 135, - boatSpeed: 15, - windSpeed: 25 - })); - this.push(new BoatSailingDataItem( - { - direction: 180, - boatSpeed: 0, - windSpeed: 0 - })); - this.push(new BoatSailingDataItem( - { - direction: 225, - boatSpeed: 15, - windSpeed: 25 - })); - this.push(new BoatSailingDataItem( - { - direction: 270, - boatSpeed: 25, - windSpeed: 45 - })); - this.push(new BoatSailingDataItem( - { - direction: 315, - boatSpeed: 35, - windSpeed: 65 - })); - this.push(new BoatSailingDataItem( - { - direction: 360, - boatSpeed: 70, - windSpeed: 90 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new BoatSailingDataItem( + { + direction: 0, + boatSpeed: 70, + windSpeed: 90 + }), + new BoatSailingDataItem( + { + direction: 45, + boatSpeed: 35, + windSpeed: 65 + }), + new BoatSailingDataItem( + { + direction: 90, + boatSpeed: 25, + windSpeed: 45 + }), + new BoatSailingDataItem( + { + direction: 135, + boatSpeed: 15, + windSpeed: 25 + }), + new BoatSailingDataItem( + { + direction: 180, + boatSpeed: 0, + windSpeed: 0 + }), + new BoatSailingDataItem( + { + direction: 225, + boatSpeed: 15, + windSpeed: 25 + }), + new BoatSailingDataItem( + { + direction: 270, + boatSpeed: 25, + windSpeed: 45 + }), + new BoatSailingDataItem( + { + direction: 315, + boatSpeed: 35, + windSpeed: 65 + }), + new BoatSailingDataItem( + { + direction: 360, + boatSpeed: 70, + windSpeed: 90 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/radial-area-chart-styling/src/FootballPlayerStats.ts b/samples/charts/data-chart/radial-area-chart-styling/src/FootballPlayerStats.ts index b00f7f3b4..7d9359d52 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/src/FootballPlayerStats.ts +++ b/samples/charts/data-chart/radial-area-chart-styling/src/FootballPlayerStats.ts @@ -9,55 +9,61 @@ export class FootballPlayerStatsItem { } export class FootballPlayerStats extends Array { - public constructor() { - super(); - this.push(new FootballPlayerStatsItem( - { - attribute: `Dribbling`, - ronaldo: 8, - messi: 10 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Passing`, - ronaldo: 8, - messi: 10 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Finishing`, - ronaldo: 10, - messi: 10 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Free Kicks`, - ronaldo: 8, - messi: 9 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Penalties`, - ronaldo: 9, - messi: 7 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Physical`, - ronaldo: 10, - messi: 7 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Team Play`, - ronaldo: 7, - messi: 9 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Heading`, - ronaldo: 9, - messi: 6 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new FootballPlayerStatsItem( + { + attribute: `Dribbling`, + ronaldo: 8, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Passing`, + ronaldo: 8, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Finishing`, + ronaldo: 10, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Free Kicks`, + ronaldo: 8, + messi: 9 + }), + new FootballPlayerStatsItem( + { + attribute: `Penalties`, + ronaldo: 9, + messi: 7 + }), + new FootballPlayerStatsItem( + { + attribute: `Physical`, + ronaldo: 10, + messi: 7 + }), + new FootballPlayerStatsItem( + { + attribute: `Team Play`, + ronaldo: 7, + messi: 9 + }), + new FootballPlayerStatsItem( + { + attribute: `Heading`, + ronaldo: 9, + messi: 6 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/radial-area-chart/src/FootballPlayerStats.ts b/samples/charts/data-chart/radial-area-chart/src/FootballPlayerStats.ts index b00f7f3b4..7d9359d52 100644 --- a/samples/charts/data-chart/radial-area-chart/src/FootballPlayerStats.ts +++ b/samples/charts/data-chart/radial-area-chart/src/FootballPlayerStats.ts @@ -9,55 +9,61 @@ export class FootballPlayerStatsItem { } export class FootballPlayerStats extends Array { - public constructor() { - super(); - this.push(new FootballPlayerStatsItem( - { - attribute: `Dribbling`, - ronaldo: 8, - messi: 10 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Passing`, - ronaldo: 8, - messi: 10 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Finishing`, - ronaldo: 10, - messi: 10 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Free Kicks`, - ronaldo: 8, - messi: 9 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Penalties`, - ronaldo: 9, - messi: 7 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Physical`, - ronaldo: 10, - messi: 7 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Team Play`, - ronaldo: 7, - messi: 9 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Heading`, - ronaldo: 9, - messi: 6 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new FootballPlayerStatsItem( + { + attribute: `Dribbling`, + ronaldo: 8, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Passing`, + ronaldo: 8, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Finishing`, + ronaldo: 10, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Free Kicks`, + ronaldo: 8, + messi: 9 + }), + new FootballPlayerStatsItem( + { + attribute: `Penalties`, + ronaldo: 9, + messi: 7 + }), + new FootballPlayerStatsItem( + { + attribute: `Physical`, + ronaldo: 10, + messi: 7 + }), + new FootballPlayerStatsItem( + { + attribute: `Team Play`, + ronaldo: 7, + messi: 9 + }), + new FootballPlayerStatsItem( + { + attribute: `Heading`, + ronaldo: 9, + messi: 6 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/radial-column-chart/src/FootballPlayerStats.ts b/samples/charts/data-chart/radial-column-chart/src/FootballPlayerStats.ts index b00f7f3b4..7d9359d52 100644 --- a/samples/charts/data-chart/radial-column-chart/src/FootballPlayerStats.ts +++ b/samples/charts/data-chart/radial-column-chart/src/FootballPlayerStats.ts @@ -9,55 +9,61 @@ export class FootballPlayerStatsItem { } export class FootballPlayerStats extends Array { - public constructor() { - super(); - this.push(new FootballPlayerStatsItem( - { - attribute: `Dribbling`, - ronaldo: 8, - messi: 10 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Passing`, - ronaldo: 8, - messi: 10 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Finishing`, - ronaldo: 10, - messi: 10 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Free Kicks`, - ronaldo: 8, - messi: 9 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Penalties`, - ronaldo: 9, - messi: 7 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Physical`, - ronaldo: 10, - messi: 7 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Team Play`, - ronaldo: 7, - messi: 9 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Heading`, - ronaldo: 9, - messi: 6 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new FootballPlayerStatsItem( + { + attribute: `Dribbling`, + ronaldo: 8, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Passing`, + ronaldo: 8, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Finishing`, + ronaldo: 10, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Free Kicks`, + ronaldo: 8, + messi: 9 + }), + new FootballPlayerStatsItem( + { + attribute: `Penalties`, + ronaldo: 9, + messi: 7 + }), + new FootballPlayerStatsItem( + { + attribute: `Physical`, + ronaldo: 10, + messi: 7 + }), + new FootballPlayerStatsItem( + { + attribute: `Team Play`, + ronaldo: 7, + messi: 9 + }), + new FootballPlayerStatsItem( + { + attribute: `Heading`, + ronaldo: 9, + messi: 6 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/radial-line-chart/src/FootballPlayerStats.ts b/samples/charts/data-chart/radial-line-chart/src/FootballPlayerStats.ts index b00f7f3b4..7d9359d52 100644 --- a/samples/charts/data-chart/radial-line-chart/src/FootballPlayerStats.ts +++ b/samples/charts/data-chart/radial-line-chart/src/FootballPlayerStats.ts @@ -9,55 +9,61 @@ export class FootballPlayerStatsItem { } export class FootballPlayerStats extends Array { - public constructor() { - super(); - this.push(new FootballPlayerStatsItem( - { - attribute: `Dribbling`, - ronaldo: 8, - messi: 10 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Passing`, - ronaldo: 8, - messi: 10 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Finishing`, - ronaldo: 10, - messi: 10 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Free Kicks`, - ronaldo: 8, - messi: 9 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Penalties`, - ronaldo: 9, - messi: 7 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Physical`, - ronaldo: 10, - messi: 7 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Team Play`, - ronaldo: 7, - messi: 9 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Heading`, - ronaldo: 9, - messi: 6 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new FootballPlayerStatsItem( + { + attribute: `Dribbling`, + ronaldo: 8, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Passing`, + ronaldo: 8, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Finishing`, + ronaldo: 10, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Free Kicks`, + ronaldo: 8, + messi: 9 + }), + new FootballPlayerStatsItem( + { + attribute: `Penalties`, + ronaldo: 9, + messi: 7 + }), + new FootballPlayerStatsItem( + { + attribute: `Physical`, + ronaldo: 10, + messi: 7 + }), + new FootballPlayerStatsItem( + { + attribute: `Team Play`, + ronaldo: 7, + messi: 9 + }), + new FootballPlayerStatsItem( + { + attribute: `Heading`, + ronaldo: 9, + messi: 6 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/radial-pie-chart/src/FootballPlayerStats.ts b/samples/charts/data-chart/radial-pie-chart/src/FootballPlayerStats.ts index b00f7f3b4..7d9359d52 100644 --- a/samples/charts/data-chart/radial-pie-chart/src/FootballPlayerStats.ts +++ b/samples/charts/data-chart/radial-pie-chart/src/FootballPlayerStats.ts @@ -9,55 +9,61 @@ export class FootballPlayerStatsItem { } export class FootballPlayerStats extends Array { - public constructor() { - super(); - this.push(new FootballPlayerStatsItem( - { - attribute: `Dribbling`, - ronaldo: 8, - messi: 10 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Passing`, - ronaldo: 8, - messi: 10 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Finishing`, - ronaldo: 10, - messi: 10 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Free Kicks`, - ronaldo: 8, - messi: 9 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Penalties`, - ronaldo: 9, - messi: 7 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Physical`, - ronaldo: 10, - messi: 7 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Team Play`, - ronaldo: 7, - messi: 9 - })); - this.push(new FootballPlayerStatsItem( - { - attribute: `Heading`, - ronaldo: 9, - messi: 6 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new FootballPlayerStatsItem( + { + attribute: `Dribbling`, + ronaldo: 8, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Passing`, + ronaldo: 8, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Finishing`, + ronaldo: 10, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Free Kicks`, + ronaldo: 8, + messi: 9 + }), + new FootballPlayerStatsItem( + { + attribute: `Penalties`, + ronaldo: 9, + messi: 7 + }), + new FootballPlayerStatsItem( + { + attribute: `Physical`, + ronaldo: 10, + messi: 7 + }), + new FootballPlayerStatsItem( + { + attribute: `Team Play`, + ronaldo: 7, + messi: 9 + }), + new FootballPlayerStatsItem( + { + attribute: `Heading`, + ronaldo: 9, + messi: 6 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/range-area-chart/src/TemperatureRangeData.ts b/samples/charts/data-chart/range-area-chart/src/TemperatureRangeData.ts index 4c8fe6ebe..13c31ef6d 100644 --- a/samples/charts/data-chart/range-area-chart/src/TemperatureRangeData.ts +++ b/samples/charts/data-chart/range-area-chart/src/TemperatureRangeData.ts @@ -11,103 +11,109 @@ export class TemperatureRangeDataItem { } export class TemperatureRangeData extends Array { - public constructor() { - super(); - this.push(new TemperatureRangeDataItem( - { - month: `Jan`, - highNY: 10.6, - lowNY: -6.6, - highLA: 28.3, - lowLA: 7.8 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Feb`, - highNY: 7.8, - lowNY: -9.9, - highLA: 31.1, - lowLA: 5.6 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Mar`, - highNY: 12.2, - lowNY: -3.8, - highLA: 27.8, - lowLA: 8.3 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Apr`, - highNY: 11.7, - lowNY: 2.2, - highLA: 33.9, - lowLA: 10.6 - })); - this.push(new TemperatureRangeDataItem( - { - month: `May`, - highNY: 19.4, - lowNY: 1.1, - highLA: 35, - lowLA: 13.9 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Jun`, - highNY: 23.3, - lowNY: 10.6, - highLA: 36.7, - lowLA: 16.1 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Jul`, - highNY: 27.2, - lowNY: 19.4, - highLA: 33.3, - lowLA: 15.6 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Aug`, - highNY: 25.6, - lowNY: 16.7, - highLA: 36.7, - lowLA: 15.6 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Sep`, - highNY: 22.8, - lowNY: 8.9, - highLA: 43.9, - lowLA: 16.1 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Oct`, - highNY: 17.8, - lowNY: 0, - highLA: 38.3, - lowLA: 11.1 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Nov`, - highNY: 17.8, - lowNY: -1, - highLA: 32.8, - lowLA: 6.7 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Dec`, - highNY: 8.3, - lowNY: -6.6, - highLA: 28.9, - lowLA: 5.6 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new TemperatureRangeDataItem( + { + month: `Jan`, + highNY: 10.6, + lowNY: -6.6, + highLA: 28.3, + lowLA: 7.8 + }), + new TemperatureRangeDataItem( + { + month: `Feb`, + highNY: 7.8, + lowNY: -9.9, + highLA: 31.1, + lowLA: 5.6 + }), + new TemperatureRangeDataItem( + { + month: `Mar`, + highNY: 12.2, + lowNY: -3.8, + highLA: 27.8, + lowLA: 8.3 + }), + new TemperatureRangeDataItem( + { + month: `Apr`, + highNY: 11.7, + lowNY: 2.2, + highLA: 33.9, + lowLA: 10.6 + }), + new TemperatureRangeDataItem( + { + month: `May`, + highNY: 19.4, + lowNY: 1.1, + highLA: 35, + lowLA: 13.9 + }), + new TemperatureRangeDataItem( + { + month: `Jun`, + highNY: 23.3, + lowNY: 10.6, + highLA: 36.7, + lowLA: 16.1 + }), + new TemperatureRangeDataItem( + { + month: `Jul`, + highNY: 27.2, + lowNY: 19.4, + highLA: 33.3, + lowLA: 15.6 + }), + new TemperatureRangeDataItem( + { + month: `Aug`, + highNY: 25.6, + lowNY: 16.7, + highLA: 36.7, + lowLA: 15.6 + }), + new TemperatureRangeDataItem( + { + month: `Sep`, + highNY: 22.8, + lowNY: 8.9, + highLA: 43.9, + lowLA: 16.1 + }), + new TemperatureRangeDataItem( + { + month: `Oct`, + highNY: 17.8, + lowNY: 0, + highLA: 38.3, + lowLA: 11.1 + }), + new TemperatureRangeDataItem( + { + month: `Nov`, + highNY: 17.8, + lowNY: -1, + highLA: 32.8, + lowLA: 6.7 + }), + new TemperatureRangeDataItem( + { + month: `Dec`, + highNY: 8.3, + lowNY: -6.6, + highLA: 28.9, + lowLA: 5.6 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/range-column-chart/src/TemperatureRangeData.ts b/samples/charts/data-chart/range-column-chart/src/TemperatureRangeData.ts index 4c8fe6ebe..13c31ef6d 100644 --- a/samples/charts/data-chart/range-column-chart/src/TemperatureRangeData.ts +++ b/samples/charts/data-chart/range-column-chart/src/TemperatureRangeData.ts @@ -11,103 +11,109 @@ export class TemperatureRangeDataItem { } export class TemperatureRangeData extends Array { - public constructor() { - super(); - this.push(new TemperatureRangeDataItem( - { - month: `Jan`, - highNY: 10.6, - lowNY: -6.6, - highLA: 28.3, - lowLA: 7.8 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Feb`, - highNY: 7.8, - lowNY: -9.9, - highLA: 31.1, - lowLA: 5.6 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Mar`, - highNY: 12.2, - lowNY: -3.8, - highLA: 27.8, - lowLA: 8.3 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Apr`, - highNY: 11.7, - lowNY: 2.2, - highLA: 33.9, - lowLA: 10.6 - })); - this.push(new TemperatureRangeDataItem( - { - month: `May`, - highNY: 19.4, - lowNY: 1.1, - highLA: 35, - lowLA: 13.9 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Jun`, - highNY: 23.3, - lowNY: 10.6, - highLA: 36.7, - lowLA: 16.1 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Jul`, - highNY: 27.2, - lowNY: 19.4, - highLA: 33.3, - lowLA: 15.6 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Aug`, - highNY: 25.6, - lowNY: 16.7, - highLA: 36.7, - lowLA: 15.6 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Sep`, - highNY: 22.8, - lowNY: 8.9, - highLA: 43.9, - lowLA: 16.1 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Oct`, - highNY: 17.8, - lowNY: 0, - highLA: 38.3, - lowLA: 11.1 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Nov`, - highNY: 17.8, - lowNY: -1, - highLA: 32.8, - lowLA: 6.7 - })); - this.push(new TemperatureRangeDataItem( - { - month: `Dec`, - highNY: 8.3, - lowNY: -6.6, - highLA: 28.9, - lowLA: 5.6 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new TemperatureRangeDataItem( + { + month: `Jan`, + highNY: 10.6, + lowNY: -6.6, + highLA: 28.3, + lowLA: 7.8 + }), + new TemperatureRangeDataItem( + { + month: `Feb`, + highNY: 7.8, + lowNY: -9.9, + highLA: 31.1, + lowLA: 5.6 + }), + new TemperatureRangeDataItem( + { + month: `Mar`, + highNY: 12.2, + lowNY: -3.8, + highLA: 27.8, + lowLA: 8.3 + }), + new TemperatureRangeDataItem( + { + month: `Apr`, + highNY: 11.7, + lowNY: 2.2, + highLA: 33.9, + lowLA: 10.6 + }), + new TemperatureRangeDataItem( + { + month: `May`, + highNY: 19.4, + lowNY: 1.1, + highLA: 35, + lowLA: 13.9 + }), + new TemperatureRangeDataItem( + { + month: `Jun`, + highNY: 23.3, + lowNY: 10.6, + highLA: 36.7, + lowLA: 16.1 + }), + new TemperatureRangeDataItem( + { + month: `Jul`, + highNY: 27.2, + lowNY: 19.4, + highLA: 33.3, + lowLA: 15.6 + }), + new TemperatureRangeDataItem( + { + month: `Aug`, + highNY: 25.6, + lowNY: 16.7, + highLA: 36.7, + lowLA: 15.6 + }), + new TemperatureRangeDataItem( + { + month: `Sep`, + highNY: 22.8, + lowNY: 8.9, + highLA: 43.9, + lowLA: 16.1 + }), + new TemperatureRangeDataItem( + { + month: `Oct`, + highNY: 17.8, + lowNY: 0, + highLA: 38.3, + lowLA: 11.1 + }), + new TemperatureRangeDataItem( + { + month: `Nov`, + highNY: 17.8, + lowNY: -1, + highLA: 32.8, + lowLA: 6.7 + }), + new TemperatureRangeDataItem( + { + month: `Dec`, + highNY: 8.3, + lowNY: -6.6, + highLA: 28.9, + lowLA: 5.6 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/scatter-line-chart/src/HealthDataForFrance.ts b/samples/charts/data-chart/scatter-line-chart/src/HealthDataForFrance.ts index fd9ec1ef6..af6e0ccf8 100644 --- a/samples/charts/data-chart/scatter-line-chart/src/HealthDataForFrance.ts +++ b/samples/charts/data-chart/scatter-line-chart/src/HealthDataForFrance.ts @@ -10,224 +10,230 @@ export class HealthDataForFranceItem { } export class HealthDataForFrance extends Array { - public constructor() { - super(); - this.push(new HealthDataForFranceItem( - { - year: 1985, - healthExpense: 2025.98, - lifeExpectancy: 75.92, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1986, - healthExpense: 2075.21, - lifeExpectancy: 76.24, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1987, - healthExpense: 2140.51, - lifeExpectancy: 76.08, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1988, - healthExpense: 2119.07, - lifeExpectancy: 76.22, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1989, - healthExpense: 2112.67, - lifeExpectancy: 76.5, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1990, - healthExpense: 2519.81, - lifeExpectancy: 76.54, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1991, - healthExpense: 2660.33, - lifeExpectancy: 76.98, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1992, - healthExpense: 2737.93, - lifeExpectancy: 77.18, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1993, - healthExpense: 2761.36, - lifeExpectancy: 77.15, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1994, - healthExpense: 2800.17, - lifeExpectancy: 77.69, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1995, - healthExpense: 2863.39, - lifeExpectancy: 77.74, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1996, - healthExpense: 3034.79, - lifeExpectancy: 78.15, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1997, - healthExpense: 3426.25, - lifeExpectancy: 78.14, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1998, - healthExpense: 3639.47, - lifeExpectancy: 78.33, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1999, - healthExpense: 3826.04, - lifeExpectancy: 78.28, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2000, - healthExpense: 4003.97, - lifeExpectancy: 78.63, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2001, - healthExpense: 4139.3, - lifeExpectancy: 78.79, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2002, - healthExpense: 4504.06, - lifeExpectancy: 78.99, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2003, - healthExpense: 4633.59, - lifeExpectancy: 79.39, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2004, - healthExpense: 4734.15, - lifeExpectancy: 79.84, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2005, - healthExpense: 4822.75, - lifeExpectancy: 80.04, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2006, - healthExpense: 4846.36, - lifeExpectancy: 80.34, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2007, - healthExpense: 4965.14, - lifeExpectancy: 80.4, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2008, - healthExpense: 5149.6, - lifeExpectancy: 80.59, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2009, - healthExpense: 5254.08, - lifeExpectancy: 80.8, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2010, - healthExpense: 5240.42, - lifeExpectancy: 81, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2011, - healthExpense: 5387.98, - lifeExpectancy: 81.3, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2012, - healthExpense: 5499.09, - lifeExpectancy: 81.45, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2013, - healthExpense: 5557.2, - lifeExpectancy: 81.75, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2014, - healthExpense: 5730.16, - lifeExpectancy: 82.1, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2015, - healthExpense: 5926.44, - lifeExpectancy: 82.3, - name: `Norway` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new HealthDataForFranceItem( + { + year: 1985, + healthExpense: 2025.98, + lifeExpectancy: 75.92, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1986, + healthExpense: 2075.21, + lifeExpectancy: 76.24, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1987, + healthExpense: 2140.51, + lifeExpectancy: 76.08, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1988, + healthExpense: 2119.07, + lifeExpectancy: 76.22, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1989, + healthExpense: 2112.67, + lifeExpectancy: 76.5, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1990, + healthExpense: 2519.81, + lifeExpectancy: 76.54, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1991, + healthExpense: 2660.33, + lifeExpectancy: 76.98, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1992, + healthExpense: 2737.93, + lifeExpectancy: 77.18, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1993, + healthExpense: 2761.36, + lifeExpectancy: 77.15, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1994, + healthExpense: 2800.17, + lifeExpectancy: 77.69, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1995, + healthExpense: 2863.39, + lifeExpectancy: 77.74, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1996, + healthExpense: 3034.79, + lifeExpectancy: 78.15, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1997, + healthExpense: 3426.25, + lifeExpectancy: 78.14, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1998, + healthExpense: 3639.47, + lifeExpectancy: 78.33, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1999, + healthExpense: 3826.04, + lifeExpectancy: 78.28, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2000, + healthExpense: 4003.97, + lifeExpectancy: 78.63, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2001, + healthExpense: 4139.3, + lifeExpectancy: 78.79, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2002, + healthExpense: 4504.06, + lifeExpectancy: 78.99, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2003, + healthExpense: 4633.59, + lifeExpectancy: 79.39, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2004, + healthExpense: 4734.15, + lifeExpectancy: 79.84, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2005, + healthExpense: 4822.75, + lifeExpectancy: 80.04, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2006, + healthExpense: 4846.36, + lifeExpectancy: 80.34, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2007, + healthExpense: 4965.14, + lifeExpectancy: 80.4, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2008, + healthExpense: 5149.6, + lifeExpectancy: 80.59, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2009, + healthExpense: 5254.08, + lifeExpectancy: 80.8, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2010, + healthExpense: 5240.42, + lifeExpectancy: 81, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2011, + healthExpense: 5387.98, + lifeExpectancy: 81.3, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2012, + healthExpense: 5499.09, + lifeExpectancy: 81.45, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2013, + healthExpense: 5557.2, + lifeExpectancy: 81.75, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2014, + healthExpense: 5730.16, + lifeExpectancy: 82.1, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2015, + healthExpense: 5926.44, + lifeExpectancy: 82.3, + name: `Norway` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/scatter-line-chart/src/HealthDataForGermany.ts b/samples/charts/data-chart/scatter-line-chart/src/HealthDataForGermany.ts index 72e4fbc9d..c472954b8 100644 --- a/samples/charts/data-chart/scatter-line-chart/src/HealthDataForGermany.ts +++ b/samples/charts/data-chart/scatter-line-chart/src/HealthDataForGermany.ts @@ -10,217 +10,223 @@ export class HealthDataForGermanyItem { } export class HealthDataForGermany extends Array { - public constructor() { - super(); - this.push(new HealthDataForGermanyItem( - { - year: 1985, - healthExpense: 2579.64, - lifeExpectancy: 74.05, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1986, - healthExpense: 2603.94, - lifeExpectancy: 74.31, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1987, - healthExpense: 2668.49, - lifeExpectancy: 74.56, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1988, - healthExpense: 2812.94, - lifeExpectancy: 74.79, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1989, - healthExpense: 2689.51, - lifeExpectancy: 75.01, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1990, - healthExpense: 2774.68, - lifeExpectancy: 75.23, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1992, - healthExpense: 2909.85, - lifeExpectancy: 75.82, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1993, - healthExpense: 2853.09, - lifeExpectancy: 75.87, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1994, - healthExpense: 2989.64, - lifeExpectancy: 76.27, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1995, - healthExpense: 3122.13, - lifeExpectancy: 76.42, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1996, - healthExpense: 3241.89, - lifeExpectancy: 76.67, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1997, - healthExpense: 3257.29, - lifeExpectancy: 77.07, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1998, - healthExpense: 3327.26, - lifeExpectancy: 77.48, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1999, - healthExpense: 3414.57, - lifeExpectancy: 77.73, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2000, - healthExpense: 3536.35, - lifeExpectancy: 77.93, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2001, - healthExpense: 3603.77, - lifeExpectancy: 78.33, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2002, - healthExpense: 3687.38, - lifeExpectancy: 78.23, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2003, - healthExpense: 3745.14, - lifeExpectancy: 78.38, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2004, - healthExpense: 3704.96, - lifeExpectancy: 78.68, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2005, - healthExpense: 3787.13, - lifeExpectancy: 78.93, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2006, - healthExpense: 3875.14, - lifeExpectancy: 79.13, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2007, - healthExpense: 3950.17, - lifeExpectancy: 79.53, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2008, - healthExpense: 4079.09, - lifeExpectancy: 79.74, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2009, - healthExpense: 4232.58, - lifeExpectancy: 79.84, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2010, - healthExpense: 4358.61, - lifeExpectancy: 79.99, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2011, - healthExpense: 4396.44, - lifeExpectancy: 80.44, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2012, - healthExpense: 4516.99, - lifeExpectancy: 80.54, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2013, - healthExpense: 4589.37, - lifeExpectancy: 80.49, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2014, - healthExpense: 4684.49, - lifeExpectancy: 81.09, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2015, - healthExpense: 4772.33, - lifeExpectancy: 80.64, - name: `Germany` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new HealthDataForGermanyItem( + { + year: 1985, + healthExpense: 2579.64, + lifeExpectancy: 74.05, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1986, + healthExpense: 2603.94, + lifeExpectancy: 74.31, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1987, + healthExpense: 2668.49, + lifeExpectancy: 74.56, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1988, + healthExpense: 2812.94, + lifeExpectancy: 74.79, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1989, + healthExpense: 2689.51, + lifeExpectancy: 75.01, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1990, + healthExpense: 2774.68, + lifeExpectancy: 75.23, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1992, + healthExpense: 2909.85, + lifeExpectancy: 75.82, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1993, + healthExpense: 2853.09, + lifeExpectancy: 75.87, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1994, + healthExpense: 2989.64, + lifeExpectancy: 76.27, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1995, + healthExpense: 3122.13, + lifeExpectancy: 76.42, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1996, + healthExpense: 3241.89, + lifeExpectancy: 76.67, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1997, + healthExpense: 3257.29, + lifeExpectancy: 77.07, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1998, + healthExpense: 3327.26, + lifeExpectancy: 77.48, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1999, + healthExpense: 3414.57, + lifeExpectancy: 77.73, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2000, + healthExpense: 3536.35, + lifeExpectancy: 77.93, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2001, + healthExpense: 3603.77, + lifeExpectancy: 78.33, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2002, + healthExpense: 3687.38, + lifeExpectancy: 78.23, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2003, + healthExpense: 3745.14, + lifeExpectancy: 78.38, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2004, + healthExpense: 3704.96, + lifeExpectancy: 78.68, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2005, + healthExpense: 3787.13, + lifeExpectancy: 78.93, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2006, + healthExpense: 3875.14, + lifeExpectancy: 79.13, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2007, + healthExpense: 3950.17, + lifeExpectancy: 79.53, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2008, + healthExpense: 4079.09, + lifeExpectancy: 79.74, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2009, + healthExpense: 4232.58, + lifeExpectancy: 79.84, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2010, + healthExpense: 4358.61, + lifeExpectancy: 79.99, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2011, + healthExpense: 4396.44, + lifeExpectancy: 80.44, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2012, + healthExpense: 4516.99, + lifeExpectancy: 80.54, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2013, + healthExpense: 4589.37, + lifeExpectancy: 80.49, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2014, + healthExpense: 4684.49, + lifeExpectancy: 81.09, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2015, + healthExpense: 4772.33, + lifeExpectancy: 80.64, + name: `Germany` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicAfrican.ts b/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicAfrican.ts index 384341557..70452bea7 100644 --- a/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicAfrican.ts +++ b/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicAfrican.ts @@ -10,385 +10,391 @@ export class CountryDemographicAfricanItem { } export class CountryDemographicAfrican extends Array { - public constructor() { - super(); - this.push(new CountryDemographicAfricanItem( - { - population: 39728000, - birthRate: 23.9, - deathRate: 4.77, - name: `Algeria` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 27884000, - birthRate: 42.32, - deathRate: 8.68, - name: `Angola` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 10576000, - birthRate: 37.43, - deathRate: 9.32, - name: `Benin` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 2121000, - birthRate: 24.14, - deathRate: 7.02, - name: `Botswana` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 18111000, - birthRate: 39.44, - deathRate: 8.82, - name: `Burkina Faso` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 10160000, - birthRate: 42.66, - deathRate: 11.03, - name: `Burundi` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 23298000, - birthRate: 36.84, - deathRate: 10.35, - name: `Cameroon` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 525000, - birthRate: 21.14, - deathRate: 5.61, - name: `Cape Verde` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 4493000, - birthRate: 36.11, - deathRate: 14.01, - name: `C.A.R.` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 14111000, - birthRate: 43.86, - deathRate: 13.22, - name: `Chad` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 777000, - birthRate: 33.33, - deathRate: 7.49, - name: `Comoros` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 4856000, - birthRate: 35.23, - deathRate: 7.56, - name: `Congo` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 23226000, - birthRate: 37.1, - deathRate: 12.54, - name: `Cote Ivoire` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 76245000, - birthRate: 42.81, - deathRate: 10.19, - name: `DCongo` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 914000, - birthRate: 23.35, - deathRate: 8.37, - name: `Djibouti` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 92443000, - birthRate: 27.2, - deathRate: 5.96, - name: `Egypt` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 1169000, - birthRate: 34.64, - deathRate: 10.34, - name: `Equatorial Guinea` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 3343000, - birthRate: 32.83, - deathRate: 7.07, - name: `Eritrea` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 100835000, - birthRate: 32.3, - deathRate: 7, - name: `Ethiopia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 1948000, - birthRate: 30.09, - deathRate: 7.82, - name: `Gabon` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 2086000, - birthRate: 39.99, - deathRate: 8.2, - name: `Gambia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 27849000, - birthRate: 31.56, - deathRate: 8.31, - name: `Ghana` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 11432000, - birthRate: 36.36, - deathRate: 9.58, - name: `Guinea` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 1737000, - birthRate: 37.15, - deathRate: 10.78, - name: `Guinea-Bissau` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 47878000, - birthRate: 31.78, - deathRate: 5.84, - name: `Kenya` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 2059000, - birthRate: 28.16, - deathRate: 12.92, - name: `Lesotho` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 4472000, - birthRate: 34.72, - deathRate: 8.12, - name: `Liberia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 6418000, - birthRate: 20.19, - deathRate: 5.2, - name: `Libya` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 24234000, - birthRate: 33.4, - deathRate: 6.48, - name: `Madagascar` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 16745000, - birthRate: 37.05, - deathRate: 7.5, - name: `Malawi` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 17439000, - birthRate: 43.22, - deathRate: 10.67, - name: `Mali` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 4046000, - birthRate: 34.57, - deathRate: 7.96, - name: `Mauritania` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 1259000, - birthRate: 10.1, - deathRate: 7.7, - name: `Mauritius` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 34664000, - birthRate: 20.4, - deathRate: 5.15, - name: `Morocco` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 27042000, - birthRate: 39.36, - deathRate: 10.38, - name: `Mozambique` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 2315000, - birthRate: 29.59, - deathRate: 7.46, - name: `Namibia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 20002000, - birthRate: 48.44, - deathRate: 9.94, - name: `Niger` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 181136992, - birthRate: 39.37, - deathRate: 12.77, - name: `Nigeria` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 11369000, - birthRate: 31.79, - deathRate: 6.13, - name: `Rwanda` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 199000, - birthRate: 34.33, - deathRate: 6.81, - name: `Sao Tome and Principe` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 14578000, - birthRate: 36.21, - deathRate: 6.07, - name: `Senegal` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 95000, - birthRate: 17, - deathRate: 7.5, - name: `Seychelles` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 7172000, - birthRate: 35.61, - deathRate: 13.03, - name: `Sierra Leone` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 13797000, - birthRate: 43.66, - deathRate: 11.63, - name: `Somalia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 55386000, - birthRate: 21.3, - deathRate: 10.1, - name: `South Africa` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 10716000, - birthRate: 36.32, - deathRate: 11.24, - name: `South Sudan` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 38903000, - birthRate: 33.32, - deathRate: 7.52, - name: `Sudan` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 1104000, - birthRate: 29.27, - deathRate: 9.86, - name: `Swaziland` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 51483000, - birthRate: 38.64, - deathRate: 7.02, - name: `Tanzania` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 7323000, - birthRate: 34.53, - deathRate: 8.83, - name: `Togo` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 11180000, - birthRate: 18.65, - deathRate: 6.36, - name: `Tunisia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 38225000, - birthRate: 42.63, - deathRate: 8.87, - name: `Uganda` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 15879000, - birthRate: 38.44, - deathRate: 8, - name: `Zambia` - })); - this.push(new CountryDemographicAfricanItem( - { - population: 13815000, - birthRate: 33.94, - deathRate: 8.4, - name: `Zimbabwe` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryDemographicAfricanItem( + { + population: 39728000, + birthRate: 23.9, + deathRate: 4.77, + name: `Algeria` + }), + new CountryDemographicAfricanItem( + { + population: 27884000, + birthRate: 42.32, + deathRate: 8.68, + name: `Angola` + }), + new CountryDemographicAfricanItem( + { + population: 10576000, + birthRate: 37.43, + deathRate: 9.32, + name: `Benin` + }), + new CountryDemographicAfricanItem( + { + population: 2121000, + birthRate: 24.14, + deathRate: 7.02, + name: `Botswana` + }), + new CountryDemographicAfricanItem( + { + population: 18111000, + birthRate: 39.44, + deathRate: 8.82, + name: `Burkina Faso` + }), + new CountryDemographicAfricanItem( + { + population: 10160000, + birthRate: 42.66, + deathRate: 11.03, + name: `Burundi` + }), + new CountryDemographicAfricanItem( + { + population: 23298000, + birthRate: 36.84, + deathRate: 10.35, + name: `Cameroon` + }), + new CountryDemographicAfricanItem( + { + population: 525000, + birthRate: 21.14, + deathRate: 5.61, + name: `Cape Verde` + }), + new CountryDemographicAfricanItem( + { + population: 4493000, + birthRate: 36.11, + deathRate: 14.01, + name: `C.A.R.` + }), + new CountryDemographicAfricanItem( + { + population: 14111000, + birthRate: 43.86, + deathRate: 13.22, + name: `Chad` + }), + new CountryDemographicAfricanItem( + { + population: 777000, + birthRate: 33.33, + deathRate: 7.49, + name: `Comoros` + }), + new CountryDemographicAfricanItem( + { + population: 4856000, + birthRate: 35.23, + deathRate: 7.56, + name: `Congo` + }), + new CountryDemographicAfricanItem( + { + population: 23226000, + birthRate: 37.1, + deathRate: 12.54, + name: `Cote Ivoire` + }), + new CountryDemographicAfricanItem( + { + population: 76245000, + birthRate: 42.81, + deathRate: 10.19, + name: `DCongo` + }), + new CountryDemographicAfricanItem( + { + population: 914000, + birthRate: 23.35, + deathRate: 8.37, + name: `Djibouti` + }), + new CountryDemographicAfricanItem( + { + population: 92443000, + birthRate: 27.2, + deathRate: 5.96, + name: `Egypt` + }), + new CountryDemographicAfricanItem( + { + population: 1169000, + birthRate: 34.64, + deathRate: 10.34, + name: `Equatorial Guinea` + }), + new CountryDemographicAfricanItem( + { + population: 3343000, + birthRate: 32.83, + deathRate: 7.07, + name: `Eritrea` + }), + new CountryDemographicAfricanItem( + { + population: 100835000, + birthRate: 32.3, + deathRate: 7, + name: `Ethiopia` + }), + new CountryDemographicAfricanItem( + { + population: 1948000, + birthRate: 30.09, + deathRate: 7.82, + name: `Gabon` + }), + new CountryDemographicAfricanItem( + { + population: 2086000, + birthRate: 39.99, + deathRate: 8.2, + name: `Gambia` + }), + new CountryDemographicAfricanItem( + { + population: 27849000, + birthRate: 31.56, + deathRate: 8.31, + name: `Ghana` + }), + new CountryDemographicAfricanItem( + { + population: 11432000, + birthRate: 36.36, + deathRate: 9.58, + name: `Guinea` + }), + new CountryDemographicAfricanItem( + { + population: 1737000, + birthRate: 37.15, + deathRate: 10.78, + name: `Guinea-Bissau` + }), + new CountryDemographicAfricanItem( + { + population: 47878000, + birthRate: 31.78, + deathRate: 5.84, + name: `Kenya` + }), + new CountryDemographicAfricanItem( + { + population: 2059000, + birthRate: 28.16, + deathRate: 12.92, + name: `Lesotho` + }), + new CountryDemographicAfricanItem( + { + population: 4472000, + birthRate: 34.72, + deathRate: 8.12, + name: `Liberia` + }), + new CountryDemographicAfricanItem( + { + population: 6418000, + birthRate: 20.19, + deathRate: 5.2, + name: `Libya` + }), + new CountryDemographicAfricanItem( + { + population: 24234000, + birthRate: 33.4, + deathRate: 6.48, + name: `Madagascar` + }), + new CountryDemographicAfricanItem( + { + population: 16745000, + birthRate: 37.05, + deathRate: 7.5, + name: `Malawi` + }), + new CountryDemographicAfricanItem( + { + population: 17439000, + birthRate: 43.22, + deathRate: 10.67, + name: `Mali` + }), + new CountryDemographicAfricanItem( + { + population: 4046000, + birthRate: 34.57, + deathRate: 7.96, + name: `Mauritania` + }), + new CountryDemographicAfricanItem( + { + population: 1259000, + birthRate: 10.1, + deathRate: 7.7, + name: `Mauritius` + }), + new CountryDemographicAfricanItem( + { + population: 34664000, + birthRate: 20.4, + deathRate: 5.15, + name: `Morocco` + }), + new CountryDemographicAfricanItem( + { + population: 27042000, + birthRate: 39.36, + deathRate: 10.38, + name: `Mozambique` + }), + new CountryDemographicAfricanItem( + { + population: 2315000, + birthRate: 29.59, + deathRate: 7.46, + name: `Namibia` + }), + new CountryDemographicAfricanItem( + { + population: 20002000, + birthRate: 48.44, + deathRate: 9.94, + name: `Niger` + }), + new CountryDemographicAfricanItem( + { + population: 181136992, + birthRate: 39.37, + deathRate: 12.77, + name: `Nigeria` + }), + new CountryDemographicAfricanItem( + { + population: 11369000, + birthRate: 31.79, + deathRate: 6.13, + name: `Rwanda` + }), + new CountryDemographicAfricanItem( + { + population: 199000, + birthRate: 34.33, + deathRate: 6.81, + name: `Sao Tome and Principe` + }), + new CountryDemographicAfricanItem( + { + population: 14578000, + birthRate: 36.21, + deathRate: 6.07, + name: `Senegal` + }), + new CountryDemographicAfricanItem( + { + population: 95000, + birthRate: 17, + deathRate: 7.5, + name: `Seychelles` + }), + new CountryDemographicAfricanItem( + { + population: 7172000, + birthRate: 35.61, + deathRate: 13.03, + name: `Sierra Leone` + }), + new CountryDemographicAfricanItem( + { + population: 13797000, + birthRate: 43.66, + deathRate: 11.63, + name: `Somalia` + }), + new CountryDemographicAfricanItem( + { + population: 55386000, + birthRate: 21.3, + deathRate: 10.1, + name: `South Africa` + }), + new CountryDemographicAfricanItem( + { + population: 10716000, + birthRate: 36.32, + deathRate: 11.24, + name: `South Sudan` + }), + new CountryDemographicAfricanItem( + { + population: 38903000, + birthRate: 33.32, + deathRate: 7.52, + name: `Sudan` + }), + new CountryDemographicAfricanItem( + { + population: 1104000, + birthRate: 29.27, + deathRate: 9.86, + name: `Swaziland` + }), + new CountryDemographicAfricanItem( + { + population: 51483000, + birthRate: 38.64, + deathRate: 7.02, + name: `Tanzania` + }), + new CountryDemographicAfricanItem( + { + population: 7323000, + birthRate: 34.53, + deathRate: 8.83, + name: `Togo` + }), + new CountryDemographicAfricanItem( + { + population: 11180000, + birthRate: 18.65, + deathRate: 6.36, + name: `Tunisia` + }), + new CountryDemographicAfricanItem( + { + population: 38225000, + birthRate: 42.63, + deathRate: 8.87, + name: `Uganda` + }), + new CountryDemographicAfricanItem( + { + population: 15879000, + birthRate: 38.44, + deathRate: 8, + name: `Zambia` + }), + new CountryDemographicAfricanItem( + { + population: 13815000, + birthRate: 33.94, + deathRate: 8.4, + name: `Zimbabwe` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicEurope.ts b/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicEurope.ts index ab97566c2..28a586e0f 100644 --- a/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicEurope.ts +++ b/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicEurope.ts @@ -10,322 +10,328 @@ export class CountryDemographicEuropeItem { } export class CountryDemographicEurope extends Array { - public constructor() { - super(); - this.push(new CountryDemographicEuropeItem( - { - population: 2891000, - birthRate: 11.88, - deathRate: 7.22, - name: `Albania` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 8679000, - birthRate: 9.8, - deathRate: 9.6, - name: `Austria` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 9439000, - birthRate: 12.5, - deathRate: 12.6, - name: `Belarus` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 11288000, - birthRate: 10.8, - deathRate: 9.8, - name: `Belgium` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 3429000, - birthRate: 9.12, - deathRate: 10.89, - name: `Bosnia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 7200000, - birthRate: 9.2, - deathRate: 15.3, - name: `Bulgaria` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 165000, - birthRate: 9.39, - deathRate: 8.97, - name: `Channel Islands` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 4233000, - birthRate: 8.9, - deathRate: 12.9, - name: `Croatia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 1161000, - birthRate: 10.98, - deathRate: 6.84, - name: `Cyprus` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 10601000, - birthRate: 10.5, - deathRate: 10.5, - name: `Czech Republic` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 5689000, - birthRate: 10.2, - deathRate: 9.2, - name: `Denmark` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 1315000, - birthRate: 10.6, - deathRate: 11.6, - name: `Estonia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 48000, - birthRate: 12.4, - deathRate: 7.7, - name: `Faeroe Islands` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 5481000, - birthRate: 10.1, - deathRate: 9.6, - name: `Finland` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 64453000, - birthRate: 12, - deathRate: 8.9, - name: `France` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 81787000, - birthRate: 9, - deathRate: 11.3, - name: `Germany` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 10660000, - birthRate: 8.5, - deathRate: 11.2, - name: `Greece` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 9778000, - birthRate: 9.4, - deathRate: 13.4, - name: `Hungary` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 330000, - birthRate: 12.5, - deathRate: 6.6, - name: `Iceland` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 4652000, - birthRate: 14.1, - deathRate: 6.5, - name: `Ireland` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 60578000, - birthRate: 8, - deathRate: 10.7, - name: `Italy` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 1998000, - birthRate: 11.1, - deathRate: 14.4, - name: `Latvia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 37000, - birthRate: 8.7, - deathRate: 6.7, - name: `Liechtenstein` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 2932000, - birthRate: 10.8, - deathRate: 14.4, - name: `Lithuania` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 567000, - birthRate: 10.7, - deathRate: 7, - name: `Luxembourg` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 2079000, - birthRate: 11.3, - deathRate: 9.75, - name: `Macedonia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 434000, - birthRate: 10, - deathRate: 8, - name: `Malta` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 4071000, - birthRate: 10.52, - deathRate: 11.42, - name: `Moldova` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 38000, - birthRate: 8.1, - deathRate: 7.6, - name: `Monaco` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 627000, - birthRate: 11.52, - deathRate: 9.8, - name: `Montenegro` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 16938000, - birthRate: 10.1, - deathRate: 8.7, - name: `Netherlands` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 5200000, - birthRate: 11.3, - deathRate: 7.8, - name: `Norway` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 38034000, - birthRate: 9.7, - deathRate: 10.4, - name: `Poland` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 10368000, - birthRate: 8.3, - deathRate: 10.5, - name: `Portugal` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 19925000, - birthRate: 10, - deathRate: 13.2, - name: `Romania` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 144984992, - birthRate: 13.3, - deathRate: 13, - name: `Russia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 33000, - birthRate: 8.2, - deathRate: 7.1, - name: `San Marino` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 8877000, - birthRate: 9.3, - deathRate: 14.6, - name: `Serbia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 5436000, - birthRate: 10.3, - deathRate: 9.9, - name: `Slovakia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 2071000, - birthRate: 10, - deathRate: 9.6, - name: `Slovenia` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 46672000, - birthRate: 9, - deathRate: 9.1, - name: `Spain` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 9765000, - birthRate: 11.7, - deathRate: 9.3, - name: `Sweden` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 8297000, - birthRate: 10.5, - deathRate: 8.2, - name: `Switzerland` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 44922000, - birthRate: 10.7, - deathRate: 14.9, - name: `Ukraine` - })); - this.push(new CountryDemographicEuropeItem( - { - population: 65860000, - birthRate: 11.9, - deathRate: 9.2, - name: `United Kingdom` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryDemographicEuropeItem( + { + population: 2891000, + birthRate: 11.88, + deathRate: 7.22, + name: `Albania` + }), + new CountryDemographicEuropeItem( + { + population: 8679000, + birthRate: 9.8, + deathRate: 9.6, + name: `Austria` + }), + new CountryDemographicEuropeItem( + { + population: 9439000, + birthRate: 12.5, + deathRate: 12.6, + name: `Belarus` + }), + new CountryDemographicEuropeItem( + { + population: 11288000, + birthRate: 10.8, + deathRate: 9.8, + name: `Belgium` + }), + new CountryDemographicEuropeItem( + { + population: 3429000, + birthRate: 9.12, + deathRate: 10.89, + name: `Bosnia` + }), + new CountryDemographicEuropeItem( + { + population: 7200000, + birthRate: 9.2, + deathRate: 15.3, + name: `Bulgaria` + }), + new CountryDemographicEuropeItem( + { + population: 165000, + birthRate: 9.39, + deathRate: 8.97, + name: `Channel Islands` + }), + new CountryDemographicEuropeItem( + { + population: 4233000, + birthRate: 8.9, + deathRate: 12.9, + name: `Croatia` + }), + new CountryDemographicEuropeItem( + { + population: 1161000, + birthRate: 10.98, + deathRate: 6.84, + name: `Cyprus` + }), + new CountryDemographicEuropeItem( + { + population: 10601000, + birthRate: 10.5, + deathRate: 10.5, + name: `Czech Republic` + }), + new CountryDemographicEuropeItem( + { + population: 5689000, + birthRate: 10.2, + deathRate: 9.2, + name: `Denmark` + }), + new CountryDemographicEuropeItem( + { + population: 1315000, + birthRate: 10.6, + deathRate: 11.6, + name: `Estonia` + }), + new CountryDemographicEuropeItem( + { + population: 48000, + birthRate: 12.4, + deathRate: 7.7, + name: `Faeroe Islands` + }), + new CountryDemographicEuropeItem( + { + population: 5481000, + birthRate: 10.1, + deathRate: 9.6, + name: `Finland` + }), + new CountryDemographicEuropeItem( + { + population: 64453000, + birthRate: 12, + deathRate: 8.9, + name: `France` + }), + new CountryDemographicEuropeItem( + { + population: 81787000, + birthRate: 9, + deathRate: 11.3, + name: `Germany` + }), + new CountryDemographicEuropeItem( + { + population: 10660000, + birthRate: 8.5, + deathRate: 11.2, + name: `Greece` + }), + new CountryDemographicEuropeItem( + { + population: 9778000, + birthRate: 9.4, + deathRate: 13.4, + name: `Hungary` + }), + new CountryDemographicEuropeItem( + { + population: 330000, + birthRate: 12.5, + deathRate: 6.6, + name: `Iceland` + }), + new CountryDemographicEuropeItem( + { + population: 4652000, + birthRate: 14.1, + deathRate: 6.5, + name: `Ireland` + }), + new CountryDemographicEuropeItem( + { + population: 60578000, + birthRate: 8, + deathRate: 10.7, + name: `Italy` + }), + new CountryDemographicEuropeItem( + { + population: 1998000, + birthRate: 11.1, + deathRate: 14.4, + name: `Latvia` + }), + new CountryDemographicEuropeItem( + { + population: 37000, + birthRate: 8.7, + deathRate: 6.7, + name: `Liechtenstein` + }), + new CountryDemographicEuropeItem( + { + population: 2932000, + birthRate: 10.8, + deathRate: 14.4, + name: `Lithuania` + }), + new CountryDemographicEuropeItem( + { + population: 567000, + birthRate: 10.7, + deathRate: 7, + name: `Luxembourg` + }), + new CountryDemographicEuropeItem( + { + population: 2079000, + birthRate: 11.3, + deathRate: 9.75, + name: `Macedonia` + }), + new CountryDemographicEuropeItem( + { + population: 434000, + birthRate: 10, + deathRate: 8, + name: `Malta` + }), + new CountryDemographicEuropeItem( + { + population: 4071000, + birthRate: 10.52, + deathRate: 11.42, + name: `Moldova` + }), + new CountryDemographicEuropeItem( + { + population: 38000, + birthRate: 8.1, + deathRate: 7.6, + name: `Monaco` + }), + new CountryDemographicEuropeItem( + { + population: 627000, + birthRate: 11.52, + deathRate: 9.8, + name: `Montenegro` + }), + new CountryDemographicEuropeItem( + { + population: 16938000, + birthRate: 10.1, + deathRate: 8.7, + name: `Netherlands` + }), + new CountryDemographicEuropeItem( + { + population: 5200000, + birthRate: 11.3, + deathRate: 7.8, + name: `Norway` + }), + new CountryDemographicEuropeItem( + { + population: 38034000, + birthRate: 9.7, + deathRate: 10.4, + name: `Poland` + }), + new CountryDemographicEuropeItem( + { + population: 10368000, + birthRate: 8.3, + deathRate: 10.5, + name: `Portugal` + }), + new CountryDemographicEuropeItem( + { + population: 19925000, + birthRate: 10, + deathRate: 13.2, + name: `Romania` + }), + new CountryDemographicEuropeItem( + { + population: 144984992, + birthRate: 13.3, + deathRate: 13, + name: `Russia` + }), + new CountryDemographicEuropeItem( + { + population: 33000, + birthRate: 8.2, + deathRate: 7.1, + name: `San Marino` + }), + new CountryDemographicEuropeItem( + { + population: 8877000, + birthRate: 9.3, + deathRate: 14.6, + name: `Serbia` + }), + new CountryDemographicEuropeItem( + { + population: 5436000, + birthRate: 10.3, + deathRate: 9.9, + name: `Slovakia` + }), + new CountryDemographicEuropeItem( + { + population: 2071000, + birthRate: 10, + deathRate: 9.6, + name: `Slovenia` + }), + new CountryDemographicEuropeItem( + { + population: 46672000, + birthRate: 9, + deathRate: 9.1, + name: `Spain` + }), + new CountryDemographicEuropeItem( + { + population: 9765000, + birthRate: 11.7, + deathRate: 9.3, + name: `Sweden` + }), + new CountryDemographicEuropeItem( + { + population: 8297000, + birthRate: 10.5, + deathRate: 8.2, + name: `Switzerland` + }), + new CountryDemographicEuropeItem( + { + population: 44922000, + birthRate: 10.7, + deathRate: 14.9, + name: `Ukraine` + }), + new CountryDemographicEuropeItem( + { + population: 65860000, + birthRate: 11.9, + deathRate: 9.2, + name: `United Kingdom` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/scatter-spline-chart/src/HealthDataForFrance.ts b/samples/charts/data-chart/scatter-spline-chart/src/HealthDataForFrance.ts index fd9ec1ef6..af6e0ccf8 100644 --- a/samples/charts/data-chart/scatter-spline-chart/src/HealthDataForFrance.ts +++ b/samples/charts/data-chart/scatter-spline-chart/src/HealthDataForFrance.ts @@ -10,224 +10,230 @@ export class HealthDataForFranceItem { } export class HealthDataForFrance extends Array { - public constructor() { - super(); - this.push(new HealthDataForFranceItem( - { - year: 1985, - healthExpense: 2025.98, - lifeExpectancy: 75.92, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1986, - healthExpense: 2075.21, - lifeExpectancy: 76.24, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1987, - healthExpense: 2140.51, - lifeExpectancy: 76.08, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1988, - healthExpense: 2119.07, - lifeExpectancy: 76.22, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1989, - healthExpense: 2112.67, - lifeExpectancy: 76.5, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1990, - healthExpense: 2519.81, - lifeExpectancy: 76.54, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1991, - healthExpense: 2660.33, - lifeExpectancy: 76.98, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1992, - healthExpense: 2737.93, - lifeExpectancy: 77.18, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1993, - healthExpense: 2761.36, - lifeExpectancy: 77.15, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1994, - healthExpense: 2800.17, - lifeExpectancy: 77.69, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1995, - healthExpense: 2863.39, - lifeExpectancy: 77.74, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1996, - healthExpense: 3034.79, - lifeExpectancy: 78.15, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1997, - healthExpense: 3426.25, - lifeExpectancy: 78.14, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1998, - healthExpense: 3639.47, - lifeExpectancy: 78.33, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 1999, - healthExpense: 3826.04, - lifeExpectancy: 78.28, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2000, - healthExpense: 4003.97, - lifeExpectancy: 78.63, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2001, - healthExpense: 4139.3, - lifeExpectancy: 78.79, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2002, - healthExpense: 4504.06, - lifeExpectancy: 78.99, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2003, - healthExpense: 4633.59, - lifeExpectancy: 79.39, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2004, - healthExpense: 4734.15, - lifeExpectancy: 79.84, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2005, - healthExpense: 4822.75, - lifeExpectancy: 80.04, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2006, - healthExpense: 4846.36, - lifeExpectancy: 80.34, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2007, - healthExpense: 4965.14, - lifeExpectancy: 80.4, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2008, - healthExpense: 5149.6, - lifeExpectancy: 80.59, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2009, - healthExpense: 5254.08, - lifeExpectancy: 80.8, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2010, - healthExpense: 5240.42, - lifeExpectancy: 81, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2011, - healthExpense: 5387.98, - lifeExpectancy: 81.3, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2012, - healthExpense: 5499.09, - lifeExpectancy: 81.45, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2013, - healthExpense: 5557.2, - lifeExpectancy: 81.75, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2014, - healthExpense: 5730.16, - lifeExpectancy: 82.1, - name: `Norway` - })); - this.push(new HealthDataForFranceItem( - { - year: 2015, - healthExpense: 5926.44, - lifeExpectancy: 82.3, - name: `Norway` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new HealthDataForFranceItem( + { + year: 1985, + healthExpense: 2025.98, + lifeExpectancy: 75.92, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1986, + healthExpense: 2075.21, + lifeExpectancy: 76.24, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1987, + healthExpense: 2140.51, + lifeExpectancy: 76.08, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1988, + healthExpense: 2119.07, + lifeExpectancy: 76.22, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1989, + healthExpense: 2112.67, + lifeExpectancy: 76.5, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1990, + healthExpense: 2519.81, + lifeExpectancy: 76.54, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1991, + healthExpense: 2660.33, + lifeExpectancy: 76.98, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1992, + healthExpense: 2737.93, + lifeExpectancy: 77.18, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1993, + healthExpense: 2761.36, + lifeExpectancy: 77.15, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1994, + healthExpense: 2800.17, + lifeExpectancy: 77.69, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1995, + healthExpense: 2863.39, + lifeExpectancy: 77.74, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1996, + healthExpense: 3034.79, + lifeExpectancy: 78.15, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1997, + healthExpense: 3426.25, + lifeExpectancy: 78.14, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1998, + healthExpense: 3639.47, + lifeExpectancy: 78.33, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 1999, + healthExpense: 3826.04, + lifeExpectancy: 78.28, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2000, + healthExpense: 4003.97, + lifeExpectancy: 78.63, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2001, + healthExpense: 4139.3, + lifeExpectancy: 78.79, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2002, + healthExpense: 4504.06, + lifeExpectancy: 78.99, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2003, + healthExpense: 4633.59, + lifeExpectancy: 79.39, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2004, + healthExpense: 4734.15, + lifeExpectancy: 79.84, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2005, + healthExpense: 4822.75, + lifeExpectancy: 80.04, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2006, + healthExpense: 4846.36, + lifeExpectancy: 80.34, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2007, + healthExpense: 4965.14, + lifeExpectancy: 80.4, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2008, + healthExpense: 5149.6, + lifeExpectancy: 80.59, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2009, + healthExpense: 5254.08, + lifeExpectancy: 80.8, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2010, + healthExpense: 5240.42, + lifeExpectancy: 81, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2011, + healthExpense: 5387.98, + lifeExpectancy: 81.3, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2012, + healthExpense: 5499.09, + lifeExpectancy: 81.45, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2013, + healthExpense: 5557.2, + lifeExpectancy: 81.75, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2014, + healthExpense: 5730.16, + lifeExpectancy: 82.1, + name: `Norway` + }), + new HealthDataForFranceItem( + { + year: 2015, + healthExpense: 5926.44, + lifeExpectancy: 82.3, + name: `Norway` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/scatter-spline-chart/src/HealthDataForGermany.ts b/samples/charts/data-chart/scatter-spline-chart/src/HealthDataForGermany.ts index 72e4fbc9d..c472954b8 100644 --- a/samples/charts/data-chart/scatter-spline-chart/src/HealthDataForGermany.ts +++ b/samples/charts/data-chart/scatter-spline-chart/src/HealthDataForGermany.ts @@ -10,217 +10,223 @@ export class HealthDataForGermanyItem { } export class HealthDataForGermany extends Array { - public constructor() { - super(); - this.push(new HealthDataForGermanyItem( - { - year: 1985, - healthExpense: 2579.64, - lifeExpectancy: 74.05, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1986, - healthExpense: 2603.94, - lifeExpectancy: 74.31, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1987, - healthExpense: 2668.49, - lifeExpectancy: 74.56, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1988, - healthExpense: 2812.94, - lifeExpectancy: 74.79, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1989, - healthExpense: 2689.51, - lifeExpectancy: 75.01, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1990, - healthExpense: 2774.68, - lifeExpectancy: 75.23, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1992, - healthExpense: 2909.85, - lifeExpectancy: 75.82, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1993, - healthExpense: 2853.09, - lifeExpectancy: 75.87, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1994, - healthExpense: 2989.64, - lifeExpectancy: 76.27, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1995, - healthExpense: 3122.13, - lifeExpectancy: 76.42, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1996, - healthExpense: 3241.89, - lifeExpectancy: 76.67, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1997, - healthExpense: 3257.29, - lifeExpectancy: 77.07, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1998, - healthExpense: 3327.26, - lifeExpectancy: 77.48, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 1999, - healthExpense: 3414.57, - lifeExpectancy: 77.73, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2000, - healthExpense: 3536.35, - lifeExpectancy: 77.93, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2001, - healthExpense: 3603.77, - lifeExpectancy: 78.33, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2002, - healthExpense: 3687.38, - lifeExpectancy: 78.23, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2003, - healthExpense: 3745.14, - lifeExpectancy: 78.38, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2004, - healthExpense: 3704.96, - lifeExpectancy: 78.68, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2005, - healthExpense: 3787.13, - lifeExpectancy: 78.93, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2006, - healthExpense: 3875.14, - lifeExpectancy: 79.13, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2007, - healthExpense: 3950.17, - lifeExpectancy: 79.53, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2008, - healthExpense: 4079.09, - lifeExpectancy: 79.74, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2009, - healthExpense: 4232.58, - lifeExpectancy: 79.84, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2010, - healthExpense: 4358.61, - lifeExpectancy: 79.99, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2011, - healthExpense: 4396.44, - lifeExpectancy: 80.44, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2012, - healthExpense: 4516.99, - lifeExpectancy: 80.54, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2013, - healthExpense: 4589.37, - lifeExpectancy: 80.49, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2014, - healthExpense: 4684.49, - lifeExpectancy: 81.09, - name: `Germany` - })); - this.push(new HealthDataForGermanyItem( - { - year: 2015, - healthExpense: 4772.33, - lifeExpectancy: 80.64, - name: `Germany` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new HealthDataForGermanyItem( + { + year: 1985, + healthExpense: 2579.64, + lifeExpectancy: 74.05, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1986, + healthExpense: 2603.94, + lifeExpectancy: 74.31, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1987, + healthExpense: 2668.49, + lifeExpectancy: 74.56, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1988, + healthExpense: 2812.94, + lifeExpectancy: 74.79, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1989, + healthExpense: 2689.51, + lifeExpectancy: 75.01, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1990, + healthExpense: 2774.68, + lifeExpectancy: 75.23, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1992, + healthExpense: 2909.85, + lifeExpectancy: 75.82, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1993, + healthExpense: 2853.09, + lifeExpectancy: 75.87, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1994, + healthExpense: 2989.64, + lifeExpectancy: 76.27, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1995, + healthExpense: 3122.13, + lifeExpectancy: 76.42, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1996, + healthExpense: 3241.89, + lifeExpectancy: 76.67, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1997, + healthExpense: 3257.29, + lifeExpectancy: 77.07, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1998, + healthExpense: 3327.26, + lifeExpectancy: 77.48, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 1999, + healthExpense: 3414.57, + lifeExpectancy: 77.73, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2000, + healthExpense: 3536.35, + lifeExpectancy: 77.93, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2001, + healthExpense: 3603.77, + lifeExpectancy: 78.33, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2002, + healthExpense: 3687.38, + lifeExpectancy: 78.23, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2003, + healthExpense: 3745.14, + lifeExpectancy: 78.38, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2004, + healthExpense: 3704.96, + lifeExpectancy: 78.68, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2005, + healthExpense: 3787.13, + lifeExpectancy: 78.93, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2006, + healthExpense: 3875.14, + lifeExpectancy: 79.13, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2007, + healthExpense: 3950.17, + lifeExpectancy: 79.53, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2008, + healthExpense: 4079.09, + lifeExpectancy: 79.74, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2009, + healthExpense: 4232.58, + lifeExpectancy: 79.84, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2010, + healthExpense: 4358.61, + lifeExpectancy: 79.99, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2011, + healthExpense: 4396.44, + lifeExpectancy: 80.44, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2012, + healthExpense: 4516.99, + lifeExpectancy: 80.54, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2013, + healthExpense: 4589.37, + lifeExpectancy: 80.49, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2014, + healthExpense: 4684.49, + lifeExpectancy: 81.09, + name: `Germany` + }), + new HealthDataForGermanyItem( + { + year: 2015, + healthExpense: 4772.33, + lifeExpectancy: 80.64, + name: `Germany` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/stacked-100-area-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-100-area-chart/src/ContinentsBirthRate.ts index 10c1d10d1..3341e056c 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-100-area-chart/src/ContinentsBirthRate.ts @@ -13,87 +13,93 @@ export class ContinentsBirthRateItem { } export class ContinentsBirthRate extends Array { - public constructor() { - super(); - this.push(new ContinentsBirthRateItem( - { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new ContinentsBirthRateItem( + { + year: `1950`, + asia: 62, + africa: 13, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1960`, + asia: 68, + africa: 12, + europe: 15, + northAmerica: 4, + southAmerica: 9, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1970`, + asia: 80, + africa: 17, + europe: 11, + northAmerica: 3, + southAmerica: 9, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1980`, + asia: 77, + africa: 21, + europe: 12, + northAmerica: 3, + southAmerica: 10, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1990`, + asia: 87, + africa: 24, + europe: 9, + northAmerica: 3, + southAmerica: 10, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `2000`, + asia: 79, + africa: 28, + europe: 8, + northAmerica: 4, + southAmerica: 9, + oceania: 3 + }), + new ContinentsBirthRateItem( + { + year: `2010`, + asia: 78, + africa: 35, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `2020`, + asia: 75, + africa: 43, + europe: 7, + northAmerica: 4, + southAmerica: 7, + oceania: 4 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/src/EnergyRenewableConsumption.ts b/samples/charts/data-chart/stacked-100-bar-chart/src/EnergyRenewableConsumption.ts index 014e9c455..03270b7b3 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/src/EnergyRenewableConsumption.ts +++ b/samples/charts/data-chart/stacked-100-bar-chart/src/EnergyRenewableConsumption.ts @@ -12,52 +12,58 @@ export class EnergyRenewableConsumptionItem { } export class EnergyRenewableConsumption extends Array { - public constructor() { - super(); - this.push(new EnergyRenewableConsumptionItem( - { - location: `China`, - year: 2019, - hydro: 1269.5, - solar: 223, - wind: 405.2, - other: 102.8 - })); - this.push(new EnergyRenewableConsumptionItem( - { - location: `Europe`, - year: 2019, - hydro: 632.54, - solar: 154, - wind: 461.3, - other: 220.3 - })); - this.push(new EnergyRenewableConsumptionItem( - { - location: `USA`, - year: 2019, - hydro: 271.16, - solar: 108, - wind: 303.4, - other: 78.34 - })); - this.push(new EnergyRenewableConsumptionItem( - { - location: `Brazil`, - year: 2019, - hydro: 399.3, - solar: 5.5, - wind: 55.83, - other: 56.25 - })); - this.push(new EnergyRenewableConsumptionItem( - { - location: `Canada`, - year: 2019, - hydro: 381.98, - solar: 4.3, - wind: 34.17, - other: 10.81 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyRenewableConsumptionItem( + { + location: `China`, + year: 2019, + hydro: 1269.5, + solar: 223, + wind: 405.2, + other: 102.8 + }), + new EnergyRenewableConsumptionItem( + { + location: `Europe`, + year: 2019, + hydro: 632.54, + solar: 154, + wind: 461.3, + other: 220.3 + }), + new EnergyRenewableConsumptionItem( + { + location: `USA`, + year: 2019, + hydro: 271.16, + solar: 108, + wind: 303.4, + other: 78.34 + }), + new EnergyRenewableConsumptionItem( + { + location: `Brazil`, + year: 2019, + hydro: 399.3, + solar: 5.5, + wind: 55.83, + other: 56.25 + }), + new EnergyRenewableConsumptionItem( + { + location: `Canada`, + year: 2019, + hydro: 381.98, + solar: 4.3, + wind: 34.17, + other: 10.81 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/stacked-100-column-chart/src/OnlineTrafficByDevice.ts b/samples/charts/data-chart/stacked-100-column-chart/src/OnlineTrafficByDevice.ts index 678b1bf2e..c8a2c760b 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/src/OnlineTrafficByDevice.ts +++ b/samples/charts/data-chart/stacked-100-column-chart/src/OnlineTrafficByDevice.ts @@ -10,56 +10,62 @@ export class OnlineTrafficByDeviceItem { } export class OnlineTrafficByDevice extends Array { - public constructor() { - super(); - this.push(new OnlineTrafficByDeviceItem( - { - category: `Apparel`, - desktop: 27, - mobile: 66, - tablet: 7 - })); - this.push(new OnlineTrafficByDeviceItem( - { - category: `Beauty`, - desktop: 29, - mobile: 66, - tablet: 5 - })); - this.push(new OnlineTrafficByDeviceItem( - { - category: `Travel`, - desktop: 41, - mobile: 51, - tablet: 8 - })); - this.push(new OnlineTrafficByDeviceItem( - { - category: `Grocery`, - desktop: 37, - mobile: 57, - tablet: 6 - })); - this.push(new OnlineTrafficByDeviceItem( - { - category: `Energy`, - desktop: 58, - mobile: 39, - tablet: 3 - })); - this.push(new OnlineTrafficByDeviceItem( - { - category: `Home Supply`, - desktop: 35, - mobile: 56, - tablet: 8 - })); - this.push(new OnlineTrafficByDeviceItem( - { - category: `Financial`, - desktop: 58, - mobile: 39, - tablet: 3 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OnlineTrafficByDeviceItem( + { + category: `Apparel`, + desktop: 27, + mobile: 66, + tablet: 7 + }), + new OnlineTrafficByDeviceItem( + { + category: `Beauty`, + desktop: 29, + mobile: 66, + tablet: 5 + }), + new OnlineTrafficByDeviceItem( + { + category: `Travel`, + desktop: 41, + mobile: 51, + tablet: 8 + }), + new OnlineTrafficByDeviceItem( + { + category: `Grocery`, + desktop: 37, + mobile: 57, + tablet: 6 + }), + new OnlineTrafficByDeviceItem( + { + category: `Energy`, + desktop: 58, + mobile: 39, + tablet: 3 + }), + new OnlineTrafficByDeviceItem( + { + category: `Home Supply`, + desktop: 35, + mobile: 56, + tablet: 8 + }), + new OnlineTrafficByDeviceItem( + { + category: `Financial`, + desktop: 58, + mobile: 39, + tablet: 3 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/stacked-100-line-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-100-line-chart/src/ContinentsBirthRate.ts index 10c1d10d1..3341e056c 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-100-line-chart/src/ContinentsBirthRate.ts @@ -13,87 +13,93 @@ export class ContinentsBirthRateItem { } export class ContinentsBirthRate extends Array { - public constructor() { - super(); - this.push(new ContinentsBirthRateItem( - { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new ContinentsBirthRateItem( + { + year: `1950`, + asia: 62, + africa: 13, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1960`, + asia: 68, + africa: 12, + europe: 15, + northAmerica: 4, + southAmerica: 9, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1970`, + asia: 80, + africa: 17, + europe: 11, + northAmerica: 3, + southAmerica: 9, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1980`, + asia: 77, + africa: 21, + europe: 12, + northAmerica: 3, + southAmerica: 10, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1990`, + asia: 87, + africa: 24, + europe: 9, + northAmerica: 3, + southAmerica: 10, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `2000`, + asia: 79, + africa: 28, + europe: 8, + northAmerica: 4, + southAmerica: 9, + oceania: 3 + }), + new ContinentsBirthRateItem( + { + year: `2010`, + asia: 78, + africa: 35, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `2020`, + asia: 75, + africa: 43, + europe: 7, + northAmerica: 4, + southAmerica: 7, + oceania: 4 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-100-spline-area-chart/src/ContinentsBirthRate.ts index 10c1d10d1..3341e056c 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/src/ContinentsBirthRate.ts @@ -13,87 +13,93 @@ export class ContinentsBirthRateItem { } export class ContinentsBirthRate extends Array { - public constructor() { - super(); - this.push(new ContinentsBirthRateItem( - { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new ContinentsBirthRateItem( + { + year: `1950`, + asia: 62, + africa: 13, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1960`, + asia: 68, + africa: 12, + europe: 15, + northAmerica: 4, + southAmerica: 9, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1970`, + asia: 80, + africa: 17, + europe: 11, + northAmerica: 3, + southAmerica: 9, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1980`, + asia: 77, + africa: 21, + europe: 12, + northAmerica: 3, + southAmerica: 10, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1990`, + asia: 87, + africa: 24, + europe: 9, + northAmerica: 3, + southAmerica: 10, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `2000`, + asia: 79, + africa: 28, + europe: 8, + northAmerica: 4, + southAmerica: 9, + oceania: 3 + }), + new ContinentsBirthRateItem( + { + year: `2010`, + asia: 78, + africa: 35, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `2020`, + asia: 75, + africa: 43, + europe: 7, + northAmerica: 4, + southAmerica: 7, + oceania: 4 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-100-spline-chart/src/ContinentsBirthRate.ts index 10c1d10d1..3341e056c 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-100-spline-chart/src/ContinentsBirthRate.ts @@ -13,87 +13,93 @@ export class ContinentsBirthRateItem { } export class ContinentsBirthRate extends Array { - public constructor() { - super(); - this.push(new ContinentsBirthRateItem( - { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new ContinentsBirthRateItem( + { + year: `1950`, + asia: 62, + africa: 13, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1960`, + asia: 68, + africa: 12, + europe: 15, + northAmerica: 4, + southAmerica: 9, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1970`, + asia: 80, + africa: 17, + europe: 11, + northAmerica: 3, + southAmerica: 9, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1980`, + asia: 77, + africa: 21, + europe: 12, + northAmerica: 3, + southAmerica: 10, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1990`, + asia: 87, + africa: 24, + europe: 9, + northAmerica: 3, + southAmerica: 10, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `2000`, + asia: 79, + africa: 28, + europe: 8, + northAmerica: 4, + southAmerica: 9, + oceania: 3 + }), + new ContinentsBirthRateItem( + { + year: `2010`, + asia: 78, + africa: 35, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `2020`, + asia: 75, + africa: 43, + europe: 7, + northAmerica: 4, + southAmerica: 7, + oceania: 4 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts index 10c1d10d1..3341e056c 100644 --- a/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts @@ -13,87 +13,93 @@ export class ContinentsBirthRateItem { } export class ContinentsBirthRate extends Array { - public constructor() { - super(); - this.push(new ContinentsBirthRateItem( - { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new ContinentsBirthRateItem( + { + year: `1950`, + asia: 62, + africa: 13, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1960`, + asia: 68, + africa: 12, + europe: 15, + northAmerica: 4, + southAmerica: 9, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1970`, + asia: 80, + africa: 17, + europe: 11, + northAmerica: 3, + southAmerica: 9, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1980`, + asia: 77, + africa: 21, + europe: 12, + northAmerica: 3, + southAmerica: 10, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1990`, + asia: 87, + africa: 24, + europe: 9, + northAmerica: 3, + southAmerica: 10, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `2000`, + asia: 79, + africa: 28, + europe: 8, + northAmerica: 4, + southAmerica: 9, + oceania: 3 + }), + new ContinentsBirthRateItem( + { + year: `2010`, + asia: 78, + africa: 35, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `2020`, + asia: 75, + africa: 43, + europe: 7, + northAmerica: 4, + southAmerica: 7, + oceania: 4 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/stacked-bar-chart/src/EnergyRenewableConsumption.ts b/samples/charts/data-chart/stacked-bar-chart/src/EnergyRenewableConsumption.ts index 014e9c455..03270b7b3 100644 --- a/samples/charts/data-chart/stacked-bar-chart/src/EnergyRenewableConsumption.ts +++ b/samples/charts/data-chart/stacked-bar-chart/src/EnergyRenewableConsumption.ts @@ -12,52 +12,58 @@ export class EnergyRenewableConsumptionItem { } export class EnergyRenewableConsumption extends Array { - public constructor() { - super(); - this.push(new EnergyRenewableConsumptionItem( - { - location: `China`, - year: 2019, - hydro: 1269.5, - solar: 223, - wind: 405.2, - other: 102.8 - })); - this.push(new EnergyRenewableConsumptionItem( - { - location: `Europe`, - year: 2019, - hydro: 632.54, - solar: 154, - wind: 461.3, - other: 220.3 - })); - this.push(new EnergyRenewableConsumptionItem( - { - location: `USA`, - year: 2019, - hydro: 271.16, - solar: 108, - wind: 303.4, - other: 78.34 - })); - this.push(new EnergyRenewableConsumptionItem( - { - location: `Brazil`, - year: 2019, - hydro: 399.3, - solar: 5.5, - wind: 55.83, - other: 56.25 - })); - this.push(new EnergyRenewableConsumptionItem( - { - location: `Canada`, - year: 2019, - hydro: 381.98, - solar: 4.3, - wind: 34.17, - other: 10.81 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyRenewableConsumptionItem( + { + location: `China`, + year: 2019, + hydro: 1269.5, + solar: 223, + wind: 405.2, + other: 102.8 + }), + new EnergyRenewableConsumptionItem( + { + location: `Europe`, + year: 2019, + hydro: 632.54, + solar: 154, + wind: 461.3, + other: 220.3 + }), + new EnergyRenewableConsumptionItem( + { + location: `USA`, + year: 2019, + hydro: 271.16, + solar: 108, + wind: 303.4, + other: 78.34 + }), + new EnergyRenewableConsumptionItem( + { + location: `Brazil`, + year: 2019, + hydro: 399.3, + solar: 5.5, + wind: 55.83, + other: 56.25 + }), + new EnergyRenewableConsumptionItem( + { + location: `Canada`, + year: 2019, + hydro: 381.98, + solar: 4.3, + wind: 34.17, + other: 10.81 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/stacked-column-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-column-chart/src/ContinentsBirthRate.ts index 10c1d10d1..3341e056c 100644 --- a/samples/charts/data-chart/stacked-column-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-column-chart/src/ContinentsBirthRate.ts @@ -13,87 +13,93 @@ export class ContinentsBirthRateItem { } export class ContinentsBirthRate extends Array { - public constructor() { - super(); - this.push(new ContinentsBirthRateItem( - { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new ContinentsBirthRateItem( + { + year: `1950`, + asia: 62, + africa: 13, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1960`, + asia: 68, + africa: 12, + europe: 15, + northAmerica: 4, + southAmerica: 9, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1970`, + asia: 80, + africa: 17, + europe: 11, + northAmerica: 3, + southAmerica: 9, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1980`, + asia: 77, + africa: 21, + europe: 12, + northAmerica: 3, + southAmerica: 10, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1990`, + asia: 87, + africa: 24, + europe: 9, + northAmerica: 3, + southAmerica: 10, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `2000`, + asia: 79, + africa: 28, + europe: 8, + northAmerica: 4, + southAmerica: 9, + oceania: 3 + }), + new ContinentsBirthRateItem( + { + year: `2010`, + asia: 78, + africa: 35, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `2020`, + asia: 75, + africa: 43, + europe: 7, + northAmerica: 4, + southAmerica: 7, + oceania: 4 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts index 10c1d10d1..3341e056c 100644 --- a/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts @@ -13,87 +13,93 @@ export class ContinentsBirthRateItem { } export class ContinentsBirthRate extends Array { - public constructor() { - super(); - this.push(new ContinentsBirthRateItem( - { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new ContinentsBirthRateItem( + { + year: `1950`, + asia: 62, + africa: 13, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1960`, + asia: 68, + africa: 12, + europe: 15, + northAmerica: 4, + southAmerica: 9, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1970`, + asia: 80, + africa: 17, + europe: 11, + northAmerica: 3, + southAmerica: 9, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1980`, + asia: 77, + africa: 21, + europe: 12, + northAmerica: 3, + southAmerica: 10, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1990`, + asia: 87, + africa: 24, + europe: 9, + northAmerica: 3, + southAmerica: 10, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `2000`, + asia: 79, + africa: 28, + europe: 8, + northAmerica: 4, + southAmerica: 9, + oceania: 3 + }), + new ContinentsBirthRateItem( + { + year: `2010`, + asia: 78, + africa: 35, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `2020`, + asia: 75, + africa: 43, + europe: 7, + northAmerica: 4, + southAmerica: 7, + oceania: 4 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/stacked-spline-area-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-spline-area-chart/src/ContinentsBirthRate.ts index 10c1d10d1..3341e056c 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-spline-area-chart/src/ContinentsBirthRate.ts @@ -13,87 +13,93 @@ export class ContinentsBirthRateItem { } export class ContinentsBirthRate extends Array { - public constructor() { - super(); - this.push(new ContinentsBirthRateItem( - { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new ContinentsBirthRateItem( + { + year: `1950`, + asia: 62, + africa: 13, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1960`, + asia: 68, + africa: 12, + europe: 15, + northAmerica: 4, + southAmerica: 9, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1970`, + asia: 80, + africa: 17, + europe: 11, + northAmerica: 3, + southAmerica: 9, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1980`, + asia: 77, + africa: 21, + europe: 12, + northAmerica: 3, + southAmerica: 10, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1990`, + asia: 87, + africa: 24, + europe: 9, + northAmerica: 3, + southAmerica: 10, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `2000`, + asia: 79, + africa: 28, + europe: 8, + northAmerica: 4, + southAmerica: 9, + oceania: 3 + }), + new ContinentsBirthRateItem( + { + year: `2010`, + asia: 78, + africa: 35, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `2020`, + asia: 75, + africa: 43, + europe: 7, + northAmerica: 4, + southAmerica: 7, + oceania: 4 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts index 10c1d10d1..3341e056c 100644 --- a/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts @@ -13,87 +13,93 @@ export class ContinentsBirthRateItem { } export class ContinentsBirthRate extends Array { - public constructor() { - super(); - this.push(new ContinentsBirthRateItem( - { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 - })); - this.push(new ContinentsBirthRateItem( - { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new ContinentsBirthRateItem( + { + year: `1950`, + asia: 62, + africa: 13, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1960`, + asia: 68, + africa: 12, + europe: 15, + northAmerica: 4, + southAmerica: 9, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1970`, + asia: 80, + africa: 17, + europe: 11, + northAmerica: 3, + southAmerica: 9, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `1980`, + asia: 77, + africa: 21, + europe: 12, + northAmerica: 3, + southAmerica: 10, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `1990`, + asia: 87, + africa: 24, + europe: 9, + northAmerica: 3, + southAmerica: 10, + oceania: 1 + }), + new ContinentsBirthRateItem( + { + year: `2000`, + asia: 79, + africa: 28, + europe: 8, + northAmerica: 4, + southAmerica: 9, + oceania: 3 + }), + new ContinentsBirthRateItem( + { + year: `2010`, + asia: 78, + africa: 35, + europe: 10, + northAmerica: 4, + southAmerica: 8, + oceania: 2 + }), + new ContinentsBirthRateItem( + { + year: `2020`, + asia: 75, + africa: 43, + europe: 7, + northAmerica: 4, + southAmerica: 7, + oceania: 4 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/transition-event/src/CompanyIncomeData.ts b/samples/charts/data-chart/transition-event/src/CompanyIncomeData.ts index 996eede8a..7fa95bb74 100644 --- a/samples/charts/data-chart/transition-event/src/CompanyIncomeData.ts +++ b/samples/charts/data-chart/transition-event/src/CompanyIncomeData.ts @@ -9,49 +9,55 @@ export class CompanyIncomeDataItem { } export class CompanyIncomeData extends Array { - public constructor() { - super(); - this.push(new CompanyIncomeDataItem( - { - costs: 55, - netIncome: null, - category: `Revenue` - })); - this.push(new CompanyIncomeDataItem( - { - costs: 45, - netIncome: null, - category: `Expenses` - })); - this.push(new CompanyIncomeDataItem( - { - costs: 35, - netIncome: null, - category: `Research` - })); - this.push(new CompanyIncomeDataItem( - { - costs: 28, - netIncome: null, - category: `Marketing` - })); - this.push(new CompanyIncomeDataItem( - { - costs: 25, - netIncome: null, - category: `Administration` - })); - this.push(new CompanyIncomeDataItem( - { - costs: 55, - netIncome: null, - category: `Total Costs` - })); - this.push(new CompanyIncomeDataItem( - { - costs: 0, - netIncome: 25, - category: `Net Income` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CompanyIncomeDataItem( + { + costs: 55, + netIncome: null, + category: `Revenue` + }), + new CompanyIncomeDataItem( + { + costs: 45, + netIncome: null, + category: `Expenses` + }), + new CompanyIncomeDataItem( + { + costs: 35, + netIncome: null, + category: `Research` + }), + new CompanyIncomeDataItem( + { + costs: 28, + netIncome: null, + category: `Marketing` + }), + new CompanyIncomeDataItem( + { + costs: 25, + netIncome: null, + category: `Administration` + }), + new CompanyIncomeDataItem( + { + costs: 55, + netIncome: null, + category: `Total Costs` + }), + new CompanyIncomeDataItem( + { + costs: 0, + netIncome: 25, + category: `Net Income` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/waterfall-chart/src/CompanyIncomeData.ts b/samples/charts/data-chart/waterfall-chart/src/CompanyIncomeData.ts index 996eede8a..7fa95bb74 100644 --- a/samples/charts/data-chart/waterfall-chart/src/CompanyIncomeData.ts +++ b/samples/charts/data-chart/waterfall-chart/src/CompanyIncomeData.ts @@ -9,49 +9,55 @@ export class CompanyIncomeDataItem { } export class CompanyIncomeData extends Array { - public constructor() { - super(); - this.push(new CompanyIncomeDataItem( - { - costs: 55, - netIncome: null, - category: `Revenue` - })); - this.push(new CompanyIncomeDataItem( - { - costs: 45, - netIncome: null, - category: `Expenses` - })); - this.push(new CompanyIncomeDataItem( - { - costs: 35, - netIncome: null, - category: `Research` - })); - this.push(new CompanyIncomeDataItem( - { - costs: 28, - netIncome: null, - category: `Marketing` - })); - this.push(new CompanyIncomeDataItem( - { - costs: 25, - netIncome: null, - category: `Administration` - })); - this.push(new CompanyIncomeDataItem( - { - costs: 55, - netIncome: null, - category: `Total Costs` - })); - this.push(new CompanyIncomeDataItem( - { - costs: 0, - netIncome: 25, - category: `Net Income` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CompanyIncomeDataItem( + { + costs: 55, + netIncome: null, + category: `Revenue` + }), + new CompanyIncomeDataItem( + { + costs: 45, + netIncome: null, + category: `Expenses` + }), + new CompanyIncomeDataItem( + { + costs: 35, + netIncome: null, + category: `Research` + }), + new CompanyIncomeDataItem( + { + costs: 28, + netIncome: null, + category: `Marketing` + }), + new CompanyIncomeDataItem( + { + costs: 25, + netIncome: null, + category: `Administration` + }), + new CompanyIncomeDataItem( + { + costs: 55, + netIncome: null, + category: `Total Costs` + }), + new CompanyIncomeDataItem( + { + costs: 0, + netIncome: 25, + category: `Net Income` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/doughnut-chart/legend/src/EnergyGlobalDemand.ts b/samples/charts/doughnut-chart/legend/src/EnergyGlobalDemand.ts index f1f49bfb1..922fcf7a9 100644 --- a/samples/charts/doughnut-chart/legend/src/EnergyGlobalDemand.ts +++ b/samples/charts/doughnut-chart/legend/src/EnergyGlobalDemand.ts @@ -9,37 +9,43 @@ export class EnergyGlobalDemandItem { } export class EnergyGlobalDemand extends Array { - public constructor() { - super(); - this.push(new EnergyGlobalDemandItem( - { - value: 37, - category: `Cooling`, - summary: `Cooling 37%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 25, - category: `Residential`, - summary: `Residential 25%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 12, - category: `Heating`, - summary: `Heating 12%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 11, - category: `Lighting`, - summary: `Lighting 11%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 15, - category: `Other`, - summary: `Other 15%` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/doughnut-chart/overview/src/CompanyMarketShares.ts b/samples/charts/doughnut-chart/overview/src/CompanyMarketShares.ts index 91b9c7d32..b02bf58a7 100644 --- a/samples/charts/doughnut-chart/overview/src/CompanyMarketShares.ts +++ b/samples/charts/doughnut-chart/overview/src/CompanyMarketShares.ts @@ -9,37 +9,43 @@ export class CompanyMarketSharesItem { } export class CompanyMarketShares extends Array { - public constructor() { - super(); - this.push(new CompanyMarketSharesItem( - { - value: 30, - category: `Google`, - summary: `Google 30%` - })); - this.push(new CompanyMarketSharesItem( - { - value: 25, - category: `Apple`, - summary: `Apple 25%` - })); - this.push(new CompanyMarketSharesItem( - { - value: 20, - category: `Microsoft`, - summary: `Microsoft 20%` - })); - this.push(new CompanyMarketSharesItem( - { - value: 15, - category: `Samsung`, - summary: `Samsung 15%` - })); - this.push(new CompanyMarketSharesItem( - { - value: 10, - category: `Other`, - summary: `Other 10%` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CompanyMarketSharesItem( + { + value: 30, + category: `Google`, + summary: `Google 30%` + }), + new CompanyMarketSharesItem( + { + value: 25, + category: `Apple`, + summary: `Apple 25%` + }), + new CompanyMarketSharesItem( + { + value: 20, + category: `Microsoft`, + summary: `Microsoft 20%` + }), + new CompanyMarketSharesItem( + { + value: 15, + category: `Samsung`, + summary: `Samsung 15%` + }), + new CompanyMarketSharesItem( + { + value: 10, + category: `Other`, + summary: `Other 10%` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/doughnut-chart/rings/src/CalendarMonths.ts b/samples/charts/doughnut-chart/rings/src/CalendarMonths.ts index 728bf47f2..6387ea750 100644 --- a/samples/charts/doughnut-chart/rings/src/CalendarMonths.ts +++ b/samples/charts/doughnut-chart/rings/src/CalendarMonths.ts @@ -8,67 +8,73 @@ export class CalendarMonthsItem { } export class CalendarMonths extends Array { - public constructor() { - super(); - this.push(new CalendarMonthsItem( - { - value: 1, - label: `December` - })); - this.push(new CalendarMonthsItem( - { - value: 1, - label: `January` - })); - this.push(new CalendarMonthsItem( - { - value: 1, - label: `February` - })); - this.push(new CalendarMonthsItem( - { - value: 1, - label: `March` - })); - this.push(new CalendarMonthsItem( - { - value: 1, - label: `April` - })); - this.push(new CalendarMonthsItem( - { - value: 1, - label: `May` - })); - this.push(new CalendarMonthsItem( - { - value: 1, - label: `June` - })); - this.push(new CalendarMonthsItem( - { - value: 1, - label: `July` - })); - this.push(new CalendarMonthsItem( - { - value: 1, - label: `August` - })); - this.push(new CalendarMonthsItem( - { - value: 1, - label: `September` - })); - this.push(new CalendarMonthsItem( - { - value: 1, - label: `October` - })); - this.push(new CalendarMonthsItem( - { - value: 1, - label: `November` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CalendarMonthsItem( + { + value: 1, + label: `December` + }), + new CalendarMonthsItem( + { + value: 1, + label: `January` + }), + new CalendarMonthsItem( + { + value: 1, + label: `February` + }), + new CalendarMonthsItem( + { + value: 1, + label: `March` + }), + new CalendarMonthsItem( + { + value: 1, + label: `April` + }), + new CalendarMonthsItem( + { + value: 1, + label: `May` + }), + new CalendarMonthsItem( + { + value: 1, + label: `June` + }), + new CalendarMonthsItem( + { + value: 1, + label: `July` + }), + new CalendarMonthsItem( + { + value: 1, + label: `August` + }), + new CalendarMonthsItem( + { + value: 1, + label: `September` + }), + new CalendarMonthsItem( + { + value: 1, + label: `October` + }), + new CalendarMonthsItem( + { + value: 1, + label: `November` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/doughnut-chart/rings/src/CalendarSeasons.ts b/samples/charts/doughnut-chart/rings/src/CalendarSeasons.ts index cbad20f55..b4abfde9c 100644 --- a/samples/charts/doughnut-chart/rings/src/CalendarSeasons.ts +++ b/samples/charts/doughnut-chart/rings/src/CalendarSeasons.ts @@ -8,27 +8,33 @@ export class CalendarSeasonsItem { } export class CalendarSeasons extends Array { - public constructor() { - super(); - this.push(new CalendarSeasonsItem( - { - value: 4, - label: `Winter` - })); - this.push(new CalendarSeasonsItem( - { - value: 4, - label: `Spring` - })); - this.push(new CalendarSeasonsItem( - { - value: 4, - label: `Summer` - })); - this.push(new CalendarSeasonsItem( - { - value: 4, - label: `Fall` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CalendarSeasonsItem( + { + value: 4, + label: `Winter` + }), + new CalendarSeasonsItem( + { + value: 4, + label: `Spring` + }), + new CalendarSeasonsItem( + { + value: 4, + label: `Summer` + }), + new CalendarSeasonsItem( + { + value: 4, + label: `Fall` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/StockGoogle.ts b/samples/charts/financial-chart/data-legend-styling-props/src/StockGoogle.ts index 5e8578def..5236d32cb 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/src/StockGoogle.ts +++ b/samples/charts/financial-chart/data-legend-styling-props/src/StockGoogle.ts @@ -12,8710 +12,8716 @@ export class StockGoogleItem { } export class StockGoogle extends Array { - public constructor() { - super(); - this.push(new StockGoogleItem( - { - date: `2014-03-01`, - open: 559.6, - high: 568.2, - low: 558.4, - close: 566.9, - volume: 2182626 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-02`, - open: 562.4, - high: 571.8, - low: 561.4, - close: 567, - volume: 2088804 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-03`, - open: 569.9, - high: 587.3, - low: 564.1, - close: 569.7, - volume: 5087530 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-04`, - open: 574.6, - high: 577.8, - low: 543, - close: 543.1, - volume: 6377658 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-07`, - open: 540.7, - high: 548.5, - low: 527.1, - close: 538.1, - volume: 4389569 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-08`, - open: 542.6, - high: 555, - low: 541.6, - close: 554.9, - volume: 3152406 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-09`, - open: 559.6, - high: 565.4, - low: 553, - close: 564.1, - volume: 3324742 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-10`, - open: 565, - high: 565, - low: 539.9, - close: 541, - volume: 4027743 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-11`, - open: 532.5, - high: 540, - low: 526.5, - close: 530.6, - volume: 3916171 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-14`, - open: 538.3, - high: 544.1, - low: 529.6, - close: 532.5, - volume: 2568020 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-15`, - open: 536.8, - high: 538.5, - low: 518.5, - close: 536.4, - volume: 3847453 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-16`, - open: 543, - high: 557, - low: 540, - close: 556.5, - volume: 4879889 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-17`, - open: 548.8, - high: 549.5, - low: 531.1, - close: 536.1, - volume: 6795393 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-21`, - open: 536.1, - high: 536.7, - low: 525.6, - close: 528.6, - volume: 2561214 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-22`, - open: 528.6, - high: 537.2, - low: 527.5, - close: 534.8, - volume: 2359421 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-23`, - open: 533.8, - high: 533.9, - low: 526.3, - close: 526.9, - volume: 2051066 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-24`, - open: 530.1, - high: 531.6, - low: 522.1, - close: 525.2, - volume: 1881965 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-25`, - open: 522.5, - high: 524.7, - low: 515.4, - close: 516.2, - volume: 2097264 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-28`, - open: 517.2, - high: 518.6, - low: 502.8, - close: 517.1, - volume: 3326429 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-29`, - open: 516.9, - high: 529.5, - low: 516.3, - close: 527.7, - volume: 2692489 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-30`, - open: 527.6, - high: 528, - low: 522.5, - close: 526.7, - volume: 1746904 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-01`, - open: 527.1, - high: 532.9, - low: 523.9, - close: 531.4, - volume: 1900432 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-02`, - open: 533.8, - high: 534, - low: 525.6, - close: 527.9, - volume: 1685042 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-05`, - open: 524.8, - high: 528.9, - low: 521.3, - close: 527.8, - volume: 1021408 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-06`, - open: 525.2, - high: 526.8, - low: 515.1, - close: 515.1, - volume: 1684381 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-07`, - open: 515.8, - high: 516.7, - low: 503.3, - close: 510, - volume: 3216077 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-08`, - open: 508.5, - high: 517.2, - low: 506.4, - close: 511, - volume: 2016131 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-09`, - open: 510.8, - high: 519.9, - low: 504.2, - close: 518.7, - volume: 2432783 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-12`, - open: 523.5, - high: 530.2, - low: 519, - close: 529.9, - volume: 1908392 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-13`, - open: 530.9, - high: 536.1, - low: 529.5, - close: 533.1, - volume: 1648907 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-14`, - open: 533, - high: 533, - low: 525.3, - close: 526.6, - volume: 1191863 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-15`, - open: 525.7, - high: 525.9, - low: 517.4, - close: 520, - volume: 1703758 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-16`, - open: 521.4, - high: 521.8, - low: 515.4, - close: 520.6, - volume: 1481688 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-19`, - open: 519.7, - high: 529.8, - low: 517.6, - close: 528.9, - volume: 1276362 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-20`, - open: 529.7, - high: 536.2, - low: 526.3, - close: 529.8, - volume: 1780113 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-21`, - open: 532.9, - high: 539.2, - low: 531.9, - close: 538.9, - volume: 1193389 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-22`, - open: 541.1, - high: 547.6, - low: 540.8, - close: 545.1, - volume: 1611837 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-23`, - open: 547.3, - high: 553.6, - low: 543.7, - close: 552.7, - volume: 1929632 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-27`, - open: 556, - high: 566, - low: 554.4, - close: 566, - volume: 2100298 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-28`, - open: 564.6, - high: 567.8, - low: 561, - close: 561.7, - volume: 1647717 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-29`, - open: 563.4, - high: 564, - low: 558.7, - close: 560.1, - volume: 1350657 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-30`, - open: 560.8, - high: 561.4, - low: 555.9, - close: 559.9, - volume: 1766794 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-02`, - open: 560.7, - high: 560.9, - low: 545.7, - close: 553.9, - volume: 1434989 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-03`, - open: 551, - high: 552.3, - low: 542.5, - close: 544.9, - volume: 1861921 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-04`, - open: 541.5, - high: 548.6, - low: 538.8, - close: 544.7, - volume: 1812084 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-05`, - open: 546.4, - high: 555, - low: 544.5, - close: 553.9, - volume: 1684886 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-06`, - open: 558.1, - high: 558.1, - low: 548.9, - close: 556.3, - volume: 1732592 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-09`, - open: 557.1, - high: 562.9, - low: 556, - close: 562.1, - volume: 1463676 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-10`, - open: 560.5, - high: 563.6, - low: 557.9, - close: 560.5, - volume: 1349444 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-11`, - open: 558, - high: 559.9, - low: 555, - close: 558.8, - volume: 1097380 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-12`, - open: 557.3, - high: 558, - low: 548.5, - close: 551.4, - volume: 1457104 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-13`, - open: 552.3, - high: 552.3, - low: 545.6, - close: 551.8, - volume: 1217176 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-16`, - open: 549.3, - high: 549.6, - low: 541.5, - close: 544.3, - volume: 1704027 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-17`, - open: 544.2, - high: 545.3, - low: 539.3, - close: 543, - volume: 1445878 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-18`, - open: 544.9, - high: 553.6, - low: 544, - close: 553.4, - volume: 1737343 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-19`, - open: 554.2, - high: 555, - low: 548.5, - close: 554.9, - volume: 2451341 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-20`, - open: 556.9, - high: 557.6, - low: 550.4, - close: 556.4, - volume: 4496962 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-23`, - open: 555.1, - high: 565, - low: 554.3, - close: 565, - volume: 1534659 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-24`, - open: 565.2, - high: 572.6, - low: 561, - close: 564.6, - volume: 2201789 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-25`, - open: 565.3, - high: 580, - low: 565.2, - close: 578.6, - volume: 1964447 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-26`, - open: 581, - high: 582.5, - low: 571.9, - close: 576, - volume: 1737210 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-27`, - open: 577.2, - high: 579.9, - low: 573.8, - close: 577.2, - volume: 2231174 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-30`, - open: 578.7, - high: 579.6, - low: 574.8, - close: 575.3, - volume: 1310909 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-01`, - open: 578.3, - high: 584.4, - low: 576.6, - close: 582.7, - volume: 1446309 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-02`, - open: 583.4, - high: 585.4, - low: 580.4, - close: 582.3, - volume: 1054936 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-03`, - open: 583.4, - high: 585, - low: 580.9, - close: 584.7, - volume: 712210 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-07`, - open: 583.8, - high: 586.4, - low: 579.6, - close: 582.3, - volume: 1061833 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-08`, - open: 577.7, - high: 579.5, - low: 566.1, - close: 571.1, - volume: 1908647 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-09`, - open: 571.6, - high: 576.7, - low: 569.4, - close: 576.1, - volume: 1113907 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-10`, - open: 565.9, - high: 576.6, - low: 565, - close: 571.1, - volume: 1353317 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-11`, - open: 571.9, - high: 580.9, - low: 571.4, - close: 579.2, - volume: 1617569 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-14`, - open: 582.6, - high: 585.2, - low: 578, - close: 584.9, - volume: 1852290 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-15`, - open: 585.7, - high: 585.8, - low: 576.6, - close: 584.8, - volume: 1618815 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-16`, - open: 588, - high: 588.4, - low: 582.2, - close: 582.7, - volume: 1394560 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-17`, - open: 579.5, - high: 581, - low: 568.6, - close: 573.7, - volume: 3015475 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-18`, - open: 593, - high: 596.8, - low: 582, - close: 595.1, - volume: 4006389 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-21`, - open: 591.8, - high: 594.4, - low: 585.2, - close: 589.5, - volume: 2060334 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-22`, - open: 590.7, - high: 599.6, - low: 590.6, - close: 594.7, - volume: 1694787 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-23`, - open: 593.2, - high: 597.9, - low: 592.5, - close: 596, - volume: 1229846 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-24`, - open: 596.5, - high: 599.5, - low: 591.8, - close: 593.4, - volume: 1033341 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-25`, - open: 590.4, - high: 591.9, - low: 587, - close: 589, - volume: 932724 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-28`, - open: 588.1, - high: 592.5, - low: 584.8, - close: 590.6, - volume: 984161 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-29`, - open: 588.8, - high: 589.7, - low: 583.5, - close: 585.6, - volume: 1346647 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-30`, - open: 586.5, - high: 589.5, - low: 584, - close: 587.4, - volume: 1013932 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-31`, - open: 580.6, - high: 583.6, - low: 570, - close: 571.6, - volume: 2099516 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-01`, - open: 570.4, - high: 576, - low: 562.9, - close: 566.1, - volume: 1950171 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-04`, - open: 569, - high: 575.4, - low: 564.1, - close: 573.1, - volume: 1427169 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-05`, - open: 570, - high: 572, - low: 562.6, - close: 565.1, - volume: 1556685 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-06`, - open: 561.8, - high: 570.7, - low: 560, - close: 566.4, - volume: 1330877 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-07`, - open: 568, - high: 569.9, - low: 561.1, - close: 563.4, - volume: 1108900 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-08`, - open: 563.6, - high: 570.3, - low: 560.4, - close: 568.8, - volume: 1492491 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-11`, - open: 570, - high: 570.5, - low: 566, - close: 567.9, - volume: 1215968 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-12`, - open: 564.5, - high: 565.9, - low: 560.9, - close: 562.7, - volume: 1537758 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-13`, - open: 567.3, - high: 575, - low: 565.8, - close: 574.8, - volume: 1437922 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-14`, - open: 576.2, - high: 577.9, - low: 570.9, - close: 574.6, - volume: 982926 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-15`, - open: 577.9, - high: 579.4, - low: 570.5, - close: 573.5, - volume: 1517056 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-18`, - open: 576.1, - high: 584.5, - low: 576, - close: 582.2, - volume: 1282531 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-19`, - open: 585, - high: 587.3, - low: 584, - close: 586.9, - volume: 979298 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-20`, - open: 585.9, - high: 586.7, - low: 582.6, - close: 584.5, - volume: 1034779 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-21`, - open: 583.8, - high: 584.5, - low: 581.1, - close: 583.4, - volume: 912854 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-22`, - open: 583.6, - high: 585.2, - low: 580.6, - close: 582.6, - volume: 789484 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-25`, - open: 584.7, - high: 585, - low: 579, - close: 580.2, - volume: 1358810 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-26`, - open: 581.3, - high: 581.8, - low: 576.6, - close: 577.9, - volume: 1635465 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-27`, - open: 577.3, - high: 578.5, - low: 570.1, - close: 571, - volume: 1700161 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-28`, - open: 569.6, - high: 573.3, - low: 567.1, - close: 569.2, - volume: 1295963 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-29`, - open: 571.3, - high: 572, - low: 567.1, - close: 571.6, - volume: 1081231 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-02`, - open: 571.9, - high: 577.8, - low: 571.2, - close: 577.3, - volume: 1576830 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-03`, - open: 580, - high: 583, - low: 575, - close: 577.9, - volume: 1214586 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-04`, - open: 580, - high: 586, - low: 579.2, - close: 582, - volume: 1459956 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-05`, - open: 584, - high: 586.5, - low: 582, - close: 586.1, - volume: 1629477 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-08`, - open: 586.6, - high: 591.8, - low: 586.3, - close: 589.7, - volume: 1429101 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-09`, - open: 588.9, - high: 589, - low: 580, - close: 581, - volume: 1286722 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-10`, - open: 581.5, - high: 583.5, - low: 576.9, - close: 583.1, - volume: 975145 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-11`, - open: 580.4, - high: 581.8, - low: 576.3, - close: 581.4, - volume: 1217721 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-12`, - open: 581, - high: 581.6, - low: 574.5, - close: 575.6, - volume: 1597677 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-15`, - open: 572.9, - high: 575, - low: 568.2, - close: 573.1, - volume: 1596224 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-16`, - open: 572.8, - high: 581.5, - low: 572.7, - close: 580, - volume: 1478306 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-17`, - open: 580, - high: 587.5, - low: 578.8, - close: 584.8, - volume: 1690994 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-18`, - open: 587, - high: 589.5, - low: 585, - close: 589.3, - volume: 1442012 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-19`, - open: 591.5, - high: 596.5, - low: 589.5, - close: 596.1, - volume: 3727045 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-22`, - open: 593.8, - high: 594, - low: 583.5, - close: 587.4, - volume: 1687710 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-23`, - open: 586.9, - high: 586.9, - low: 581, - close: 581.1, - volume: 1467703 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-24`, - open: 581.5, - high: 589.6, - low: 580.5, - close: 588, - volume: 1724537 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-25`, - open: 587.5, - high: 588, - low: 574.2, - close: 575.1, - volume: 1925350 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-26`, - open: 576.1, - high: 579.3, - low: 574.7, - close: 577.1, - volume: 1439807 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-29`, - open: 571.8, - high: 578.2, - low: 571.2, - close: 576.4, - volume: 1281204 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-30`, - open: 576.9, - high: 579.9, - low: 572.9, - close: 577.4, - volume: 1618437 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-01`, - open: 576, - high: 577.6, - low: 567, - close: 568.3, - volume: 1445027 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-02`, - open: 567.3, - high: 571.9, - low: 563.3, - close: 570.1, - volume: 1175307 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-03`, - open: 573, - high: 577.2, - low: 572.5, - close: 575.3, - volume: 1138636 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-06`, - open: 578.8, - high: 581, - low: 574.4, - close: 577.4, - volume: 1211320 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-07`, - open: 574.4, - high: 575.3, - low: 563.7, - close: 563.7, - volume: 1906427 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-08`, - open: 565.6, - high: 573.9, - low: 557.5, - close: 572.5, - volume: 1987888 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-09`, - open: 571.2, - high: 571.5, - low: 559.1, - close: 560.9, - volume: 2519693 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-10`, - open: 557.7, - high: 565.1, - low: 544, - close: 544.5, - volume: 3078634 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-13`, - open: 545, - high: 549.5, - low: 533.1, - close: 533.2, - volume: 2578676 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-14`, - open: 538.9, - high: 547.2, - low: 533.2, - close: 537.9, - volume: 2217230 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-15`, - open: 531, - high: 532.8, - low: 518.3, - close: 530, - volume: 3712536 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-16`, - open: 519, - high: 529.4, - low: 515, - close: 524.5, - volume: 3698423 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-17`, - open: 527.3, - high: 531, - low: 508.5, - close: 511.2, - volume: 5530674 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-20`, - open: 509.4, - high: 521.8, - low: 508.1, - close: 520.8, - volume: 2605505 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-21`, - open: 525.2, - high: 526.8, - low: 519.1, - close: 526.5, - volume: 2332531 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-22`, - open: 529.9, - high: 539.8, - low: 528.8, - close: 532.7, - volume: 2917183 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-23`, - open: 539.3, - high: 547.2, - low: 535.9, - close: 544, - volume: 2345296 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-24`, - open: 544.4, - high: 544.9, - low: 535.8, - close: 539.8, - volume: 1972047 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-27`, - open: 537, - high: 544.4, - low: 537, - close: 540.8, - volume: 1184973 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-28`, - open: 543, - high: 549, - low: 541.6, - close: 548.9, - volume: 1273372 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-29`, - open: 550, - high: 554.2, - low: 547, - close: 549.3, - volume: 1767107 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-30`, - open: 549, - high: 552.8, - low: 543.5, - close: 550.3, - volume: 1451667 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-31`, - open: 559.4, - high: 559.6, - low: 554.8, - close: 559.1, - volume: 2032887 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-03`, - open: 555.5, - high: 557.9, - low: 553.2, - close: 555.2, - volume: 1378511 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-04`, - open: 553, - high: 555.5, - low: 549.3, - close: 554.1, - volume: 1240761 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-05`, - open: 556.8, - high: 556.8, - low: 544, - close: 545.9, - volume: 2026740 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-06`, - open: 545.5, - high: 546.9, - low: 541, - close: 542, - volume: 1329604 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-07`, - open: 546.2, - high: 546.2, - low: 538.7, - close: 541, - volume: 1629259 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-10`, - open: 541.5, - high: 549.6, - low: 541, - close: 547.5, - volume: 1131546 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-11`, - open: 548.5, - high: 551.9, - low: 546.3, - close: 550.3, - volume: 964866 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-12`, - open: 550.4, - high: 550.5, - low: 545.2, - close: 547.3, - volume: 1126594 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-13`, - open: 549.8, - high: 549.8, - low: 543.5, - close: 545.4, - volume: 1335719 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-14`, - open: 546.7, - high: 546.7, - low: 542.1, - close: 544.4, - volume: 1285991 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-17`, - open: 543.6, - high: 543.8, - low: 534.1, - close: 536.5, - volume: 1721282 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-18`, - open: 537.5, - high: 541.9, - low: 534.2, - close: 535, - volume: 1957664 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-19`, - open: 535, - high: 538.2, - low: 530.1, - close: 537, - volume: 1388440 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-20`, - open: 531.3, - high: 535.1, - low: 531.1, - close: 534.8, - volume: 1559131 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-21`, - open: 541.6, - high: 542.1, - low: 536.6, - close: 537.5, - volume: 2218249 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-24`, - open: 537.6, - high: 542.7, - low: 535.6, - close: 539.3, - volume: 1701682 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-25`, - open: 539, - high: 544, - low: 538.6, - close: 541.1, - volume: 1784967 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-26`, - open: 540.9, - high: 541.5, - low: 537, - close: 540.4, - volume: 1519503 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-28`, - open: 540.6, - high: 542, - low: 536.6, - close: 541.8, - volume: 1145231 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-01`, - open: 538.9, - high: 541.4, - low: 531.9, - close: 533.8, - volume: 2109599 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-02`, - open: 533.5, - high: 535.5, - low: 529.8, - close: 533.8, - volume: 1522481 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-03`, - open: 531.4, - high: 536, - low: 529.3, - close: 531.3, - volume: 1279288 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-04`, - open: 531.2, - high: 537.3, - low: 528.6, - close: 537.3, - volume: 1392208 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-05`, - open: 531, - high: 532.9, - low: 524.3, - close: 525.3, - volume: 2558649 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-08`, - open: 527.1, - high: 531, - low: 523.8, - close: 527, - volume: 2327127 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-09`, - open: 522.1, - high: 534.2, - low: 520.5, - close: 533.4, - volume: 1871268 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-10`, - open: 533.1, - high: 536.3, - low: 525.6, - close: 526.1, - volume: 1716835 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-11`, - open: 527.8, - high: 533.9, - low: 527.1, - close: 528.3, - volume: 1610964 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-12`, - open: 523.5, - high: 528.5, - low: 518.7, - close: 518.7, - volume: 1989117 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-15`, - open: 522.7, - high: 523.1, - low: 513.3, - close: 513.8, - volume: 2812786 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-16`, - open: 511.6, - high: 513, - low: 489, - close: 495.4, - volume: 3953371 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-17`, - open: 497, - high: 507, - low: 496.8, - close: 504.9, - volume: 2875281 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-18`, - open: 513, - high: 513.9, - low: 504.7, - close: 511.1, - volume: 2918730 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-19`, - open: 511.5, - high: 517.7, - low: 506.9, - close: 516.4, - volume: 3680148 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-22`, - open: 516.1, - high: 526.5, - low: 516.1, - close: 524.9, - volume: 2723599 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-23`, - open: 527, - high: 534.6, - low: 526.3, - close: 530.6, - volume: 2191567 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-24`, - open: 530.5, - high: 531.8, - low: 527, - close: 528.8, - volume: 704035 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-26`, - open: 528.8, - high: 534.3, - low: 527.3, - close: 534, - volume: 1037727 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-29`, - open: 532.2, - high: 535.5, - low: 530, - close: 530.3, - volume: 2276104 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-30`, - open: 528.1, - high: 531.1, - low: 527.1, - close: 530.4, - volume: 873923 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-31`, - open: 531.3, - high: 532.6, - low: 525.8, - close: 526.4, - volume: 1371819 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-02`, - open: 529, - high: 531.3, - low: 524.1, - close: 524.8, - volume: 1446662 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-05`, - open: 523.3, - high: 524.3, - low: 513.1, - close: 513.9, - volume: 2054238 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-06`, - open: 515, - high: 516.2, - low: 501.1, - close: 502, - volume: 2891950 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-07`, - open: 507, - high: 507.2, - low: 499.6, - close: 501.1, - volume: 2059366 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-08`, - open: 498, - high: 503.5, - low: 491, - close: 502.7, - volume: 3344395 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-09`, - open: 504.8, - high: 504.9, - low: 494.8, - close: 496.2, - volume: 2065715 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-12`, - open: 494.9, - high: 496, - low: 487.6, - close: 492.6, - volume: 2320446 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-13`, - open: 498.8, - high: 503, - low: 492.4, - close: 496.2, - volume: 2365687 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-14`, - open: 494.6, - high: 503.2, - low: 493, - close: 500.9, - volume: 2229638 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-15`, - open: 505.6, - high: 505.7, - low: 497.8, - close: 501.8, - volume: 2711355 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-16`, - open: 500, - high: 508.2, - low: 500, - close: 508.1, - volume: 2292043 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-20`, - open: 511, - high: 512.5, - low: 506, - close: 506.9, - volume: 2225922 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-21`, - open: 507.3, - high: 519.3, - low: 506.2, - close: 518, - volume: 2262455 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-22`, - open: 521.5, - high: 536.3, - low: 519.7, - close: 534.4, - volume: 2669558 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-23`, - open: 535.6, - high: 542.2, - low: 533, - close: 540, - volume: 2275485 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-26`, - open: 538.5, - high: 539, - low: 529.7, - close: 535.2, - volume: 1539524 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-27`, - open: 530, - high: 530.7, - low: 518.2, - close: 518.6, - volume: 1898844 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-28`, - open: 522.8, - high: 523, - low: 510, - close: 510, - volume: 1679230 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-29`, - open: 511, - high: 511.1, - low: 501.2, - close: 510.7, - volume: 4174924 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-30`, - open: 515.9, - high: 539.9, - low: 515.5, - close: 534.5, - volume: 5590977 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-02`, - open: 531.7, - high: 533, - low: 518.5, - close: 528.5, - volume: 2841976 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-03`, - open: 528, - high: 533.4, - low: 523.3, - close: 529.2, - volume: 2033085 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-04`, - open: 529.2, - high: 532.7, - low: 521.3, - close: 522.8, - volume: 1659125 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-05`, - open: 523.8, - high: 528.5, - low: 522.1, - close: 527.6, - volume: 1844687 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-06`, - open: 527.6, - high: 537.2, - low: 526.4, - close: 531, - volume: 1758650 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-09`, - open: 528, - high: 532, - low: 526, - close: 527.8, - volume: 1264276 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-10`, - open: 529.3, - high: 537.7, - low: 526.9, - close: 536.9, - volume: 1745076 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-11`, - open: 535.3, - high: 538.5, - low: 533.4, - close: 536, - volume: 1373970 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-12`, - open: 537.3, - high: 544.8, - low: 534.7, - close: 542.9, - volume: 1615824 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-13`, - open: 543.4, - high: 549.9, - low: 543.1, - close: 549, - volume: 1895126 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-17`, - open: 546.8, - high: 550, - low: 541.1, - close: 542.8, - volume: 1612439 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-18`, - open: 541.4, - high: 545.5, - low: 537.5, - close: 539.7, - volume: 1449089 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-19`, - open: 538, - high: 543.1, - low: 538, - close: 542.9, - volume: 987478 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-20`, - open: 543.1, - high: 543.8, - low: 535.8, - close: 539, - volume: 1441212 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-23`, - open: 536, - high: 536.4, - low: 529.4, - close: 531.9, - volume: 1453907 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-24`, - open: 530, - high: 536.8, - low: 528.3, - close: 536.1, - volume: 1002393 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-25`, - open: 535.9, - high: 546.2, - low: 535.4, - close: 543.9, - volume: 1821041 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-26`, - open: 543.2, - high: 556.1, - low: 541.5, - close: 555.5, - volume: 2305219 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-27`, - open: 554.2, - high: 564.7, - low: 552.9, - close: 558.4, - volume: 2403553 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-02`, - open: 560.5, - high: 572.1, - low: 558.8, - close: 571.3, - volume: 2123796 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-03`, - open: 570.5, - high: 575.4, - low: 566.5, - close: 573.6, - volume: 1700084 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-04`, - open: 571.9, - high: 577.1, - low: 568, - close: 573.4, - volume: 1871694 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-05`, - open: 575, - high: 577.9, - low: 573.4, - close: 575.3, - volume: 1385818 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-06`, - open: 574.9, - high: 576.7, - low: 566.8, - close: 567.7, - volume: 1654561 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-09`, - open: 566.9, - high: 570.3, - low: 563.5, - close: 568.9, - volume: 1059336 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-10`, - open: 564.3, - high: 564.9, - low: 554.7, - close: 555, - volume: 1787357 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-11`, - open: 555.1, - high: 558.1, - low: 550.7, - close: 551.2, - volume: 1815763 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-12`, - open: 553.5, - high: 556.4, - low: 550.5, - close: 555.5, - volume: 1385772 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-13`, - open: 553.5, - high: 558.4, - low: 544.2, - close: 547.3, - volume: 1698872 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-16`, - open: 551, - high: 556.9, - low: 546, - close: 554.5, - volume: 1636493 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-17`, - open: 551.7, - high: 553.8, - low: 548, - close: 550.8, - volume: 1800570 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-18`, - open: 552.5, - high: 559.8, - low: 547, - close: 559.5, - volume: 2128714 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-19`, - open: 559.4, - high: 560.8, - low: 556.1, - close: 558, - volume: 1194049 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-20`, - open: 561.6, - high: 561.7, - low: 559, - close: 560.4, - volume: 2609690 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-23`, - open: 560.4, - high: 562.4, - low: 555.8, - close: 558.8, - volume: 1639306 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-24`, - open: 562.6, - high: 574.6, - low: 561.2, - close: 570.2, - volume: 2576234 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-25`, - open: 570.5, - high: 572.3, - low: 558.7, - close: 558.8, - volume: 2146384 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-26`, - open: 557.6, - high: 558.9, - low: 550.6, - close: 555.2, - volume: 1568331 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-27`, - open: 553, - high: 555.3, - low: 548.1, - close: 548.3, - volume: 1892323 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-30`, - open: 551.6, - high: 553.5, - low: 548.2, - close: 552, - volume: 1283958 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-31`, - open: 550, - high: 554.7, - low: 546.7, - close: 548, - volume: 1583677 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-01`, - open: 548.6, - high: 551.1, - low: 539.5, - close: 542.6, - volume: 1957718 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-02`, - open: 540.9, - high: 540.9, - low: 533.9, - close: 535.5, - volume: 1711737 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-06`, - open: 532.2, - high: 538.4, - low: 529.6, - close: 536.8, - volume: 1320767 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-07`, - open: 538.1, - high: 542.7, - low: 536, - close: 537, - volume: 1299298 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-08`, - open: 538.4, - high: 543.9, - low: 538.4, - close: 541.6, - volume: 1175332 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-09`, - open: 541, - high: 542, - low: 535.5, - close: 540.8, - volume: 1553586 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-10`, - open: 542.3, - high: 542.3, - low: 537.3, - close: 540, - volume: 1405574 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-13`, - open: 538.4, - high: 544.1, - low: 537.3, - close: 539.2, - volume: 1640809 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-14`, - open: 536.3, - high: 537.6, - low: 528.1, - close: 530.4, - volume: 2597043 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-15`, - open: 528.7, - high: 534.7, - low: 523.2, - close: 532.5, - volume: 2312512 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-16`, - open: 529.9, - high: 535.6, - low: 529.6, - close: 533.8, - volume: 1296304 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-17`, - open: 528.7, - high: 529.8, - low: 521, - close: 524, - volume: 2145955 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-20`, - open: 525.6, - high: 536.1, - low: 524.5, - close: 535.4, - volume: 1675487 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-21`, - open: 537.5, - high: 539.4, - low: 533.7, - close: 534, - volume: 1839668 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-22`, - open: 534.4, - high: 541.1, - low: 531.8, - close: 539.4, - volume: 1589248 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-23`, - open: 541, - high: 551, - low: 540.2, - close: 547, - volume: 4173376 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-24`, - open: 566.1, - high: 571.1, - low: 557.3, - close: 565.1, - volume: 4919031 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-27`, - open: 563.4, - high: 566, - low: 553.2, - close: 555.4, - volume: 2398039 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-28`, - open: 554.6, - high: 556, - low: 550.4, - close: 553.7, - volume: 1490983 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-29`, - open: 550.5, - high: 553.7, - low: 546.9, - close: 549.1, - volume: 1698761 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-30`, - open: 547.9, - high: 548.6, - low: 535, - close: 537.3, - volume: 2082214 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-01`, - open: 538.4, - high: 539.5, - low: 532.1, - close: 537.9, - volume: 1768181 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-04`, - open: 538.5, - high: 544.1, - low: 535.1, - close: 540.8, - volume: 1307960 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-05`, - open: 538.2, - high: 539.7, - low: 530.4, - close: 530.8, - volume: 1383068 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-06`, - open: 531.2, - high: 532.4, - low: 521.1, - close: 524.2, - volume: 1566987 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-07`, - open: 524, - high: 533.5, - low: 521.8, - close: 530.7, - volume: 1546278 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-08`, - open: 536.6, - high: 541.1, - low: 536, - close: 538.2, - volume: 1527615 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-11`, - open: 538.4, - high: 542, - low: 535.4, - close: 535.7, - volume: 905285 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-12`, - open: 531.6, - high: 533.2, - low: 525.3, - close: 529, - volume: 1634174 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-13`, - open: 530.6, - high: 534.3, - low: 528.7, - close: 529.6, - volume: 1253063 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-14`, - open: 533.8, - high: 539, - low: 532.4, - close: 538.4, - volume: 1403935 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-15`, - open: 539.2, - high: 539.3, - low: 530.4, - close: 533.9, - volume: 1971343 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-18`, - open: 532, - high: 534.8, - low: 528.9, - close: 532.3, - volume: 2003421 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-19`, - open: 534, - high: 540.7, - low: 533, - close: 537.4, - volume: 1966947 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-20`, - open: 538.5, - high: 542.9, - low: 533, - close: 539.3, - volume: 1430826 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-21`, - open: 538, - high: 543.8, - low: 536, - close: 542.5, - volume: 1462695 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-22`, - open: 540.1, - high: 544.2, - low: 539.5, - close: 540.1, - volume: 1176214 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-26`, - open: 538.1, - high: 539, - low: 529.9, - close: 532.3, - volume: 2406512 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-27`, - open: 532.8, - high: 540.5, - low: 531.7, - close: 539.8, - volume: 1525019 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-28`, - open: 538, - high: 540.6, - low: 536.3, - close: 539.8, - volume: 1029849 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-29`, - open: 537.4, - high: 538.6, - low: 531.5, - close: 532.1, - volume: 2597407 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-01`, - open: 536.8, - high: 536.8, - low: 529.8, - close: 534, - volume: 1904332 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-02`, - open: 532.9, - high: 543, - low: 531.3, - close: 539.2, - volume: 1938989 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-03`, - open: 539.9, - high: 543.5, - low: 537.1, - close: 540.3, - volume: 1717036 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-04`, - open: 537.8, - high: 540.6, - low: 534.3, - close: 536.7, - volume: 1348337 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-05`, - open: 536.4, - high: 537.2, - low: 532.5, - close: 533.3, - volume: 1388220 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-08`, - open: 533.3, - high: 534.1, - low: 526.2, - close: 526.8, - volume: 1524139 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-09`, - open: 527.6, - high: 529.2, - low: 523, - close: 526.7, - volume: 1455266 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-10`, - open: 529.4, - high: 538.4, - low: 529.4, - close: 536.7, - volume: 1814958 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-11`, - open: 538.4, - high: 539, - low: 533, - close: 534.6, - volume: 1217536 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-12`, - open: 531.6, - high: 533.1, - low: 530.2, - close: 532.3, - volume: 955789 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-15`, - open: 528, - high: 528.3, - low: 524, - close: 527.2, - volume: 1632702 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-16`, - open: 528.4, - high: 529.6, - low: 525.6, - close: 528.1, - volume: 1071814 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-17`, - open: 529.4, - high: 531, - low: 525.1, - close: 529.3, - volume: 1294216 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-18`, - open: 531, - high: 538.1, - low: 530.8, - close: 536.7, - volume: 1833109 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-19`, - open: 537.2, - high: 538.3, - low: 533, - close: 536.7, - volume: 1893497 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-22`, - open: 539.6, - high: 543.7, - low: 537.5, - close: 538.2, - volume: 1250282 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-23`, - open: 539.6, - high: 541.5, - low: 535.3, - close: 540.5, - volume: 1197450 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-24`, - open: 540, - high: 540, - low: 535.7, - close: 537.8, - volume: 1286608 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-25`, - open: 538.9, - high: 540.9, - low: 535.2, - close: 535.2, - volume: 1335697 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-26`, - open: 537.3, - high: 537.8, - low: 531.4, - close: 531.7, - volume: 2109130 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-29`, - open: 525, - high: 528.6, - low: 520.5, - close: 521.5, - volume: 1937821 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-30`, - open: 526, - high: 526.3, - low: 520.5, - close: 520.5, - volume: 2235595 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-01`, - open: 524.7, - high: 525.7, - low: 518.2, - close: 521.8, - volume: 1961354 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-02`, - open: 521.1, - high: 524.6, - low: 521.1, - close: 523.4, - volume: 1235903 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-06`, - open: 519.5, - high: 525.3, - low: 519, - close: 522.9, - volume: 1280525 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-07`, - open: 523.1, - high: 526.2, - low: 515.2, - close: 525, - volume: 1597229 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-08`, - open: 521, - high: 522.7, - low: 516.1, - close: 516.8, - volume: 1296699 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-09`, - open: 523.1, - high: 523.8, - low: 520.4, - close: 520.7, - volume: 1842347 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-10`, - open: 526.3, - high: 532.6, - low: 525.5, - close: 530.1, - volume: 1956682 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-13`, - open: 532.9, - high: 547.1, - low: 532.4, - close: 546.5, - volume: 2206475 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-14`, - open: 546.8, - high: 565.9, - low: 546.7, - close: 561.1, - volume: 3244066 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-15`, - open: 560.1, - high: 566.5, - low: 556.8, - close: 560.2, - volume: 1784554 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-16`, - open: 565.1, - high: 580.7, - low: 565, - close: 579.9, - volume: 4768318 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-17`, - open: 649, - high: 674.5, - low: 645, - close: 672.9, - volume: 11164943 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-20`, - open: 659.2, - high: 668.9, - low: 653, - close: 663, - volume: 5860872 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-21`, - open: 655.2, - high: 673, - low: 654.3, - close: 662.3, - volume: 3377196 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-22`, - open: 660.9, - high: 678.6, - low: 659, - close: 662.1, - volume: 3929309 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-23`, - open: 661.3, - high: 663.6, - low: 641, - close: 644.3, - volume: 3029109 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-24`, - open: 647, - high: 648.2, - low: 622.5, - close: 623.6, - volume: 3625747 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-27`, - open: 621, - high: 634.3, - low: 620.5, - close: 627.3, - volume: 2675381 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-28`, - open: 632.8, - high: 632.8, - low: 623.3, - close: 628, - volume: 1727327 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-29`, - open: 628.8, - high: 633.4, - low: 622.6, - close: 631.9, - volume: 1575069 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-30`, - open: 630, - high: 635.2, - low: 622, - close: 632.6, - volume: 1474203 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-31`, - open: 631.4, - high: 632.9, - low: 625.5, - close: 625.6, - volume: 1706149 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-03`, - open: 625.3, - high: 633.1, - low: 625.3, - close: 631.2, - volume: 1304511 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-04`, - open: 628.4, - high: 634.8, - low: 627.2, - close: 629.3, - volume: 1490881 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-05`, - open: 634.3, - high: 647.9, - low: 633.2, - close: 643.8, - volume: 2334266 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-06`, - open: 645, - high: 645.4, - low: 632.3, - close: 642.7, - volume: 1572600 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-07`, - open: 640.2, - high: 642.7, - low: 629.7, - close: 635.3, - volume: 1403865 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-10`, - open: 639.5, - high: 643.4, - low: 631.3, - close: 633.7, - volume: 1809205 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-11`, - open: 669.2, - high: 674.9, - low: 654.3, - close: 660.8, - volume: 5029203 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-12`, - open: 663.1, - high: 665, - low: 652.3, - close: 659.6, - volume: 2940803 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-13`, - open: 659.3, - high: 664.5, - low: 651.7, - close: 656.5, - volume: 1810749 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-14`, - open: 655, - high: 659.9, - low: 652.7, - close: 657.1, - volume: 1072061 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-17`, - open: 656.8, - high: 661.4, - low: 651.2, - close: 660.9, - volume: 1051699 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-18`, - open: 661.9, - high: 664, - low: 653.5, - close: 656.1, - volume: 1456059 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-19`, - open: 656.6, - high: 667, - low: 654.2, - close: 660.9, - volume: 2134098 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-20`, - open: 655.5, - high: 663, - low: 642.9, - close: 646.8, - volume: 2855299 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-21`, - open: 639.8, - high: 640, - low: 612.3, - close: 612.5, - volume: 4265183 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-24`, - open: 573, - high: 614, - low: 565, - close: 589.6, - volume: 5770302 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-25`, - open: 614.9, - high: 617.5, - low: 581.1, - close: 582.1, - volume: 3537966 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-26`, - open: 610.4, - high: 631.7, - low: 599, - close: 628.6, - volume: 4235891 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-27`, - open: 639.4, - high: 643.6, - low: 622, - close: 637.6, - volume: 3491336 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-28`, - open: 632.8, - high: 636.9, - low: 624.6, - close: 630.4, - volume: 1978733 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-31`, - open: 627.5, - high: 635.8, - low: 617.7, - close: 618.3, - volume: 2176737 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-01`, - open: 602.4, - high: 612.9, - low: 594.1, - close: 597.8, - volume: 3702105 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-02`, - open: 605.6, - high: 614.3, - low: 599.7, - close: 614.3, - volume: 2575620 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-03`, - open: 617, - high: 619.7, - low: 602.8, - close: 606.3, - volume: 1759572 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-04`, - open: 600, - high: 603.5, - low: 595.3, - close: 600.7, - volume: 2089453 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-08`, - open: 612.5, - high: 616.3, - low: 604.1, - close: 614.7, - volume: 2279538 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-09`, - open: 621.2, - high: 626.5, - low: 609.6, - close: 612.7, - volume: 1702094 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-10`, - open: 613.1, - high: 624.2, - low: 611.4, - close: 621.4, - volume: 1900526 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-11`, - open: 619.8, - high: 625.8, - low: 617.4, - close: 625.8, - volume: 1373545 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-14`, - open: 625.7, - high: 625.9, - low: 619.4, - close: 623.2, - volume: 1702271 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-15`, - open: 626.7, - high: 638.7, - low: 623.8, - close: 635.1, - volume: 2084397 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-16`, - open: 635.5, - high: 638, - low: 632.3, - close: 636, - volume: 1286454 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-17`, - open: 637.8, - high: 650.9, - low: 635, - close: 642.9, - volume: 2274690 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-18`, - open: 636.8, - high: 640, - low: 627, - close: 629.3, - volume: 5133386 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-21`, - open: 634.4, - high: 636.5, - low: 625.9, - close: 635.4, - volume: 1788506 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-22`, - open: 627, - high: 627.5, - low: 615.4, - close: 622.7, - volume: 2562869 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-23`, - open: 622, - high: 628.9, - low: 620, - close: 622.4, - volume: 1470949 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-24`, - open: 616.6, - high: 627.3, - low: 612.4, - close: 625.8, - volume: 2240098 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-25`, - open: 629.8, - high: 629.8, - low: 611, - close: 612, - volume: 2174009 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-28`, - open: 610.3, - high: 614.6, - low: 589.4, - close: 594.9, - volume: 3127667 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-29`, - open: 597.3, - high: 605, - low: 590.2, - close: 595, - volume: 2310284 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-30`, - open: 603.3, - high: 608.8, - low: 600.7, - close: 608.4, - volume: 2413441 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-01`, - open: 608.4, - high: 612.1, - low: 599.9, - close: 611.3, - volume: 1867601 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-02`, - open: 607.2, - high: 627.3, - low: 603.1, - close: 626.9, - volume: 2684805 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-05`, - open: 632, - high: 643, - low: 627, - close: 641.5, - volume: 1787880 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-06`, - open: 638.8, - high: 649.3, - low: 636.5, - close: 645.4, - volume: 2166264 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-07`, - open: 649.2, - high: 650.6, - low: 632.1, - close: 642.4, - volume: 2089776 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-08`, - open: 641.4, - high: 644.5, - low: 625.6, - close: 639.2, - volume: 2180441 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-09`, - open: 640, - high: 646, - low: 635.3, - close: 643.6, - volume: 1645844 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-12`, - open: 642.1, - high: 648.5, - low: 639, - close: 646.7, - volume: 1275206 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-13`, - open: 643.1, - high: 657.8, - low: 643.1, - close: 652.3, - volume: 1790704 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-14`, - open: 653.2, - high: 659.4, - low: 648.9, - close: 651.2, - volume: 1412040 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-15`, - open: 654.7, - high: 663.1, - low: 654.5, - close: 661.7, - volume: 1830524 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-16`, - open: 664.1, - high: 665, - low: 657.2, - close: 662.2, - volume: 1606138 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-19`, - open: 661.2, - high: 666.8, - low: 659.6, - close: 666.1, - volume: 1465339 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-20`, - open: 664, - high: 664.7, - low: 644.2, - close: 650.3, - volume: 2490016 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-21`, - open: 654.1, - high: 655.9, - low: 641.7, - close: 642.6, - volume: 1791099 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-22`, - open: 646.7, - high: 657.8, - low: 644, - close: 651.8, - volume: 3782103 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-23`, - open: 727.5, - high: 730, - low: 701.5, - close: 702, - volume: 6642504 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-26`, - open: 701.5, - high: 719.1, - low: 701.3, - close: 712.8, - volume: 2701629 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-27`, - open: 707.4, - high: 713.6, - low: 704.5, - close: 708.5, - volume: 2224309 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-28`, - open: 707.3, - high: 713, - low: 703.1, - close: 713, - volume: 2176623 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-29`, - open: 710.5, - high: 718.3, - low: 710, - close: 716.9, - volume: 1454128 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-30`, - open: 715.7, - high: 718, - low: 710, - close: 710.8, - volume: 1903980 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-02`, - open: 711.1, - high: 721.6, - low: 705.9, - close: 721.1, - volume: 1871073 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-03`, - open: 718.9, - high: 724.6, - low: 714.7, - close: 722.2, - volume: 1560770 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-04`, - open: 722, - high: 733.1, - low: 721.9, - close: 728.1, - volume: 1704575 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-05`, - open: 729.5, - high: 739.5, - low: 729.5, - close: 731.3, - volume: 1860367 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-06`, - open: 731.5, - high: 735.4, - low: 727, - close: 733.8, - volume: 1509656 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-09`, - open: 730.2, - high: 734.7, - low: 719.4, - close: 724.9, - volume: 2065619 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-10`, - open: 724.4, - high: 730.6, - low: 718.5, - close: 728.3, - volume: 1603937 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-11`, - open: 732.5, - high: 741, - low: 730.2, - close: 735.4, - volume: 1366375 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-12`, - open: 731, - high: 737.8, - low: 728.6, - close: 731.2, - volume: 1668048 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-13`, - open: 729.2, - high: 731.1, - low: 716.7, - close: 717, - volume: 2062982 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-16`, - open: 715.6, - high: 729.5, - low: 711.3, - close: 729, - volume: 1891074 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-17`, - open: 729.3, - high: 731.8, - low: 723, - close: 725.3, - volume: 1491709 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-18`, - open: 727.6, - high: 741.4, - low: 727, - close: 740, - volume: 1671588 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-19`, - open: 738.7, - high: 742, - low: 737.4, - close: 738.4, - volume: 1327109 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-20`, - open: 746.5, - high: 757.9, - low: 743, - close: 756.6, - volume: 2212302 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-23`, - open: 757.5, - high: 762.7, - low: 751.8, - close: 756, - volume: 1414487 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-24`, - open: 752, - high: 755.3, - low: 737.6, - close: 748.3, - volume: 2333130 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-25`, - open: 748.1, - high: 752, - low: 746.1, - close: 748.1, - volume: 1122224 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-27`, - open: 748.5, - high: 753.4, - low: 747.5, - close: 750.3, - volume: 838518 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-30`, - open: 748.8, - high: 754.9, - low: 741.3, - close: 742.6, - volume: 2035261 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-01`, - open: 747.1, - high: 769, - low: 746.7, - close: 767, - volume: 2129940 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-02`, - open: 768.9, - high: 776, - low: 759, - close: 762.4, - volume: 2195686 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-03`, - open: 766, - high: 769, - low: 745.6, - close: 752.5, - volume: 2590641 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-04`, - open: 753.1, - high: 768.5, - low: 750, - close: 766.8, - volume: 2757283 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-07`, - open: 767.8, - high: 768.7, - low: 755.1, - close: 763.3, - volume: 1812314 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-08`, - open: 757.9, - high: 764.8, - low: 754.2, - close: 762.4, - volume: 1829475 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-09`, - open: 759.2, - high: 764.2, - low: 737, - close: 751.6, - volume: 2699990 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-10`, - open: 752.9, - high: 755.9, - low: 743.8, - close: 749.5, - volume: 1988380 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-11`, - open: 741.2, - high: 745.7, - low: 736.8, - close: 738.9, - volume: 2224410 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-14`, - open: 741.8, - high: 748.7, - low: 724.2, - close: 747.8, - volume: 2412497 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-15`, - open: 753, - high: 758.1, - low: 743, - close: 743.4, - volume: 2666229 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-16`, - open: 750, - high: 760.6, - low: 739.4, - close: 758.1, - volume: 1993251 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-17`, - open: 762.4, - high: 762.7, - low: 749, - close: 749.4, - volume: 1553418 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-18`, - open: 746.5, - high: 754.1, - low: 738.1, - close: 739.3, - volume: 3148743 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-21`, - open: 746.1, - high: 750, - low: 740, - close: 747.8, - volume: 1525703 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-22`, - open: 751.6, - high: 754.9, - low: 745.5, - close: 750, - volume: 1365520 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-23`, - open: 753.5, - high: 754.2, - low: 744, - close: 750.3, - volume: 1566726 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-24`, - open: 749.5, - high: 751.4, - low: 746.6, - close: 748.4, - volume: 527223 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-28`, - open: 752.9, - high: 763, - low: 749.5, - close: 762.5, - volume: 1515716 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-29`, - open: 766.7, - high: 780, - low: 766.4, - close: 776.6, - volume: 1765012 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-30`, - open: 776.6, - high: 777.6, - low: 766.9, - close: 771, - volume: 1293521 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-31`, - open: 769.5, - high: 769.5, - low: 758.3, - close: 758.9, - volume: 1500923 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-04`, - open: 743, - high: 744.1, - low: 731.3, - close: 741.8, - volume: 3258199 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-05`, - open: 746.5, - high: 752, - low: 738.6, - close: 742.6, - volume: 1950691 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-06`, - open: 730, - high: 747.2, - low: 728.9, - close: 743.6, - volume: 1947034 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-07`, - open: 730.3, - high: 738.5, - low: 719.1, - close: 726.4, - volume: 2963741 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-08`, - open: 731.5, - high: 733.2, - low: 713, - close: 714.5, - volume: 2450857 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-11`, - open: 716.6, - high: 718.9, - low: 703.5, - close: 716, - volume: 2090621 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-12`, - open: 721.7, - high: 728.8, - low: 717.3, - close: 726.1, - volume: 2024509 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-13`, - open: 730.9, - high: 734.7, - low: 698.6, - close: 700.6, - volume: 2468295 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-14`, - open: 705.4, - high: 721.9, - low: 689.1, - close: 714.7, - volume: 2211853 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-15`, - open: 692.3, - high: 706.7, - low: 685.4, - close: 694.5, - volume: 3592449 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-19`, - open: 703.3, - high: 710, - low: 693.4, - close: 701.8, - volume: 2258479 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-20`, - open: 688.6, - high: 706.9, - low: 673.3, - close: 698.5, - volume: 3439386 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-21`, - open: 702.2, - high: 719.2, - low: 694.5, - close: 706.6, - volume: 2410263 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-22`, - open: 723.6, - high: 728.1, - low: 720.1, - close: 725.3, - volume: 2006528 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-25`, - open: 723.6, - high: 729.7, - low: 710, - close: 711.7, - volume: 1704641 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-26`, - open: 713.9, - high: 718.3, - low: 706.5, - close: 713, - volume: 1324300 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-27`, - open: 713.7, - high: 718.2, - low: 694.4, - close: 700, - volume: 2139970 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-28`, - open: 722.2, - high: 733.7, - low: 712.4, - close: 731, - volume: 2658016 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-29`, - open: 731.5, - high: 745, - low: 726.8, - close: 743, - volume: 3394935 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-01`, - open: 750.5, - high: 757.9, - low: 743.3, - close: 752, - volume: 4801816 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-02`, - open: 784.5, - high: 789.9, - low: 764.6, - close: 764.6, - volume: 6332431 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-03`, - open: 770.2, - high: 774.5, - low: 720.5, - close: 727, - volume: 6162333 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-04`, - open: 722.8, - high: 727, - low: 701.9, - close: 708, - volume: 5145855 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-05`, - open: 703.9, - high: 704, - low: 680.1, - close: 683.6, - volume: 5069985 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-08`, - open: 667.9, - high: 684, - low: 663.1, - close: 682.7, - volume: 4212541 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-09`, - open: 672.3, - high: 699.9, - low: 668.8, - close: 678.1, - volume: 3604335 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-10`, - open: 686.9, - high: 701.3, - low: 682.1, - close: 684.1, - volume: 2627379 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-11`, - open: 675, - high: 689.4, - low: 668.9, - close: 683.1, - volume: 3007223 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-12`, - open: 690.3, - high: 693.8, - low: 678.6, - close: 682.4, - volume: 2129831 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-16`, - open: 693, - high: 698, - low: 685, - close: 691, - volume: 2497024 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-17`, - open: 699, - high: 709.8, - low: 691.4, - close: 708.4, - volume: 2466808 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-18`, - open: 710, - high: 712.4, - low: 696, - close: 697.4, - volume: 1859130 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-19`, - open: 695, - high: 703.1, - low: 694, - close: 700.9, - volume: 1582260 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-22`, - open: 707.5, - high: 713.2, - low: 702.5, - close: 706.5, - volume: 1946067 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-23`, - open: 701.5, - high: 708.4, - low: 693.6, - close: 695.9, - volume: 1999699 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-24`, - open: 688.9, - high: 700, - low: 680.8, - close: 699.6, - volume: 1958611 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-25`, - open: 700, - high: 706, - low: 690.6, - close: 705.8, - volume: 1631855 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-26`, - open: 708.6, - high: 713.4, - low: 700.9, - close: 705.1, - volume: 2239978 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-29`, - open: 700.3, - high: 710.9, - low: 697.7, - close: 697.8, - volume: 2280280 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-01`, - open: 703.6, - high: 718.8, - low: 699.8, - close: 718.8, - volume: 2147442 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-02`, - open: 719, - high: 720, - low: 712, - close: 718.9, - volume: 1627753 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-03`, - open: 718.7, - high: 719.5, - low: 706, - close: 712.4, - volume: 1956761 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-04`, - open: 715, - high: 716.5, - low: 706, - close: 710.9, - volume: 1967873 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-07`, - open: 706.9, - high: 708.1, - low: 686.9, - close: 695.2, - volume: 2985094 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-08`, - open: 688.6, - high: 703.8, - low: 685.3, - close: 694, - volume: 2063357 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-09`, - open: 698.5, - high: 705.7, - low: 694, - close: 705.2, - volume: 1418704 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-10`, - open: 708.1, - high: 716.4, - low: 703.4, - close: 712.8, - volume: 2829412 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-11`, - open: 720, - high: 726.9, - low: 717.1, - close: 726.8, - volume: 1963907 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-14`, - open: 726.8, - high: 735.5, - low: 725.1, - close: 730.5, - volume: 1716910 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-15`, - open: 726.9, - high: 732.3, - low: 724.8, - close: 728.3, - volume: 1720965 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-16`, - open: 726.4, - high: 737.5, - low: 724.5, - close: 736.1, - volume: 1572329 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-17`, - open: 736.5, - high: 743.1, - low: 736, - close: 737.8, - volume: 1856800 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-18`, - open: 741.9, - high: 742, - low: 731.8, - close: 737.6, - volume: 2796376 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-21`, - open: 736.5, - high: 742.5, - low: 733.5, - close: 742.1, - volume: 1831839 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-22`, - open: 737.5, - high: 745, - low: 737.5, - close: 740.8, - volume: 1264396 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-23`, - open: 742.4, - high: 745.7, - low: 736.1, - close: 738.1, - volume: 1421861 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-24`, - open: 732, - high: 737.8, - low: 731, - close: 735.3, - volume: 1564782 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-28`, - open: 736.8, - high: 739, - low: 732.5, - close: 733.5, - volume: 1299812 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-29`, - open: 734.6, - high: 747.3, - low: 728.8, - close: 744.8, - volume: 1902128 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-30`, - open: 750.1, - high: 757.9, - low: 748.7, - close: 750.5, - volume: 1780998 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-31`, - open: 749.3, - high: 750.9, - low: 740.9, - close: 745, - volume: 1712375 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-01`, - open: 738.6, - high: 750.3, - low: 737, - close: 749.9, - volume: 1574870 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-04`, - open: 750.1, - high: 752.8, - low: 742.4, - close: 745.3, - volume: 1131843 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-05`, - open: 738, - high: 742.8, - low: 735.4, - close: 737.8, - volume: 1129829 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-06`, - open: 735.8, - high: 746.2, - low: 735.6, - close: 745.7, - volume: 1050193 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-07`, - open: 745.4, - high: 747, - low: 736.3, - close: 740.3, - volume: 1429504 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-08`, - open: 744, - high: 745.5, - low: 735.5, - close: 739.1, - volume: 1285755 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-11`, - open: 743, - high: 745, - low: 736, - close: 736.1, - volume: 1211762 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-12`, - open: 738, - high: 743.8, - low: 731, - close: 743.1, - volume: 1349734 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-13`, - open: 749.2, - high: 754.4, - low: 744.3, - close: 751.7, - volume: 1707095 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-14`, - open: 754, - high: 757.3, - low: 752.7, - close: 753.2, - volume: 1130971 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-15`, - open: 754, - high: 761, - low: 752.7, - close: 759, - volume: 1800413 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-18`, - open: 760.5, - high: 768, - low: 757.3, - close: 766.6, - volume: 1555953 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-19`, - open: 769.5, - high: 769.9, - low: 749.3, - close: 753.9, - volume: 2027642 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-20`, - open: 758, - high: 758.1, - low: 750, - close: 752.7, - volume: 1525591 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-21`, - open: 755.4, - high: 760.5, - low: 749.5, - close: 759.1, - volume: 2743620 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-22`, - open: 726.3, - high: 736.1, - low: 713.6, - close: 718.8, - volume: 5939199 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-25`, - open: 716.1, - high: 723.9, - low: 715.6, - close: 723.1, - volume: 1955567 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-26`, - open: 725.4, - high: 725.8, - low: 703, - close: 708.1, - volume: 2727185 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-27`, - open: 707.3, - high: 709, - low: 692.4, - close: 705.8, - volume: 3086722 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-28`, - open: 708.3, - high: 714.2, - low: 689.5, - close: 691, - volume: 2851108 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-29`, - open: 690.7, - high: 697.6, - low: 689, - close: 693, - volume: 2484273 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-02`, - open: 697.6, - high: 700.6, - low: 691, - close: 698.2, - volume: 1644126 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-03`, - open: 696.9, - high: 697.8, - low: 692, - close: 692.4, - volume: 1530993 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-04`, - open: 690.5, - high: 699.8, - low: 689, - close: 695.7, - volume: 1688569 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-05`, - open: 697.7, - high: 702.3, - low: 695.7, - close: 701.4, - volume: 1677405 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-06`, - open: 698.4, - high: 711.9, - low: 698.1, - close: 711.1, - volume: 1826146 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-09`, - open: 712, - high: 718.7, - low: 710, - close: 712.9, - volume: 1508423 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-10`, - open: 716.8, - high: 723.5, - low: 715.7, - close: 723.2, - volume: 1563105 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-11`, - open: 723.4, - high: 724.5, - low: 712.8, - close: 715.3, - volume: 1686823 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-12`, - open: 717.1, - high: 719.3, - low: 709, - close: 713.3, - volume: 1360732 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-13`, - open: 711.9, - high: 716.7, - low: 709.3, - close: 710.8, - volume: 1307338 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-16`, - open: 709.1, - high: 718.5, - low: 705.6, - close: 716.5, - volume: 1316177 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-17`, - open: 716, - high: 721.5, - low: 704.1, - close: 706.2, - volume: 1999456 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-18`, - open: 703.7, - high: 711.6, - low: 700.6, - close: 706.6, - volume: 1763394 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-19`, - open: 702.4, - high: 706, - low: 696.8, - close: 700.3, - volume: 1656321 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-20`, - open: 701.6, - high: 714.6, - low: 700.5, - close: 709.7, - volume: 1816027 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-23`, - open: 706.5, - high: 711.5, - low: 704.2, - close: 704.2, - volume: 1320927 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-24`, - open: 706.9, - high: 721, - low: 706.9, - close: 720.1, - volume: 1920411 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-25`, - open: 720.8, - high: 727.5, - low: 719.7, - close: 725.3, - volume: 1629198 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-26`, - open: 722.9, - high: 728.3, - low: 720.3, - close: 724.1, - volume: 1542866 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-27`, - open: 724, - high: 733.9, - low: 724, - close: 732.7, - volume: 1974026 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-31`, - open: 731.7, - high: 739.7, - low: 731.3, - close: 735.7, - volume: 2129545 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-01`, - open: 734.5, - high: 737.2, - low: 730.7, - close: 734.1, - volume: 1253593 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-02`, - open: 732.5, - high: 733, - low: 724.2, - close: 730.4, - volume: 1341807 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-03`, - open: 729.3, - high: 729.5, - low: 720.6, - close: 722.3, - volume: 1226253 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-06`, - open: 724.9, - high: 724.9, - low: 714.6, - close: 716.5, - volume: 1566059 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-07`, - open: 719.8, - high: 722, - low: 716.5, - close: 716.6, - volume: 1336754 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-08`, - open: 724, - high: 728.6, - low: 720.6, - close: 728.3, - volume: 1583701 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-09`, - open: 722.9, - high: 729.5, - low: 722.3, - close: 728.6, - volume: 988914 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-10`, - open: 719.5, - high: 725.9, - low: 716.4, - close: 719.4, - volume: 1216443 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-13`, - open: 716.5, - high: 725.4, - low: 716.5, - close: 718.4, - volume: 1258930 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-14`, - open: 716.5, - high: 722.5, - low: 713.1, - close: 718.3, - volume: 1306065 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-15`, - open: 719, - high: 723, - low: 717.3, - close: 718.9, - volume: 1214517 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-16`, - open: 714.9, - high: 716.6, - low: 703.3, - close: 710.4, - volume: 1982471 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-17`, - open: 708.6, - high: 708.8, - low: 688.5, - close: 691.7, - volume: 3402357 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-20`, - open: 698.8, - high: 702.5, - low: 693.4, - close: 693.7, - volume: 2082538 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-21`, - open: 698.4, - high: 702.8, - low: 692, - close: 695.9, - volume: 1465634 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-22`, - open: 699.1, - high: 700.9, - low: 693.1, - close: 697.5, - volume: 1184318 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-23`, - open: 697.5, - high: 702, - low: 687, - close: 701.9, - volume: 2171415 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-24`, - open: 675.2, - high: 689.4, - low: 673.5, - close: 675.2, - volume: 4449022 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-27`, - open: 671, - high: 672.3, - low: 663.3, - close: 668.3, - volume: 2641085 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-28`, - open: 679, - high: 680.3, - low: 673, - close: 680, - volume: 2173762 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-29`, - open: 683, - high: 687.4, - low: 681.4, - close: 684.1, - volume: 1932561 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-30`, - open: 685.5, - high: 692.3, - low: 683.6, - close: 692.1, - volume: 1597714 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-01`, - open: 692.2, - high: 700.6, - low: 692.1, - close: 699.2, - volume: 1344710 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-05`, - open: 696.1, - high: 696.9, - low: 688.9, - close: 694.5, - volume: 1462616 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-06`, - open: 690, - high: 701.7, - low: 689.1, - close: 697.8, - volume: 1411925 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-07`, - open: 698.1, - high: 698.2, - low: 688.2, - close: 695.4, - volume: 1304200 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-08`, - open: 699.5, - high: 705.7, - low: 696.4, - close: 705.6, - volume: 1575166 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-11`, - open: 708, - high: 716.5, - low: 707.2, - close: 715.1, - volume: 1111762 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-12`, - open: 719.1, - high: 722.9, - low: 715.9, - close: 720.6, - volume: 1336921 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-13`, - open: 723.6, - high: 724, - low: 716.9, - close: 717, - volume: 935876 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-14`, - open: 721.6, - high: 722.2, - low: 718, - close: 721, - volume: 950193 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-15`, - open: 725.7, - high: 725.7, - low: 719.1, - close: 719.9, - volume: 1279339 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-18`, - open: 722.7, - high: 736.1, - low: 721.2, - close: 733.8, - volume: 1295476 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-19`, - open: 729.9, - high: 737, - low: 729, - close: 737, - volume: 1227486 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-20`, - open: 737.3, - high: 742.1, - low: 737.1, - close: 741.2, - volume: 1289671 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-21`, - open: 740.4, - high: 741.7, - low: 735.8, - close: 738.6, - volume: 1026306 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-22`, - open: 741.9, - high: 743.2, - low: 736.6, - close: 742.7, - volume: 1259823 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-25`, - open: 740.7, - high: 742.6, - low: 737.5, - close: 739.8, - volume: 1032432 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-26`, - open: 739, - high: 741.7, - low: 734.3, - close: 738.4, - volume: 1186738 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-27`, - open: 738.3, - high: 744.5, - low: 737, - close: 741.8, - volume: 1512517 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-28`, - open: 747, - high: 748.6, - low: 739.3, - close: 745.9, - volume: 3530169 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-29`, - open: 772.7, - high: 778.5, - low: 766.8, - close: 768.8, - volume: 3841482 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-01`, - open: 761.1, - high: 780.4, - low: 761.1, - close: 772.9, - volume: 2700470 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-02`, - open: 768.7, - high: 775.8, - low: 767.9, - close: 771.1, - volume: 1784525 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-03`, - open: 767.2, - high: 773.2, - low: 766.8, - close: 773.2, - volume: 1287421 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-04`, - open: 772.2, - high: 774.1, - low: 768.8, - close: 771.6, - volume: 1140254 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-05`, - open: 773.8, - high: 783, - low: 772.3, - close: 782.2, - volume: 1801205 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-08`, - open: 782, - high: 782.6, - low: 778.1, - close: 781.8, - volume: 1107857 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-09`, - open: 781.1, - high: 788.9, - low: 780.6, - close: 784.3, - volume: 1318894 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-10`, - open: 783.8, - high: 786.8, - low: 782.8, - close: 784.7, - volume: 786363 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-11`, - open: 785, - high: 789.8, - low: 783, - close: 784.9, - volume: 975113 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-12`, - open: 781.5, - high: 783.4, - low: 780.4, - close: 783.2, - volume: 740498 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-15`, - open: 783.8, - high: 787.5, - low: 780.1, - close: 782.4, - volume: 938186 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-16`, - open: 780.3, - high: 781, - low: 773.4, - close: 777.1, - volume: 1028047 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-17`, - open: 777.3, - high: 780.8, - low: 773.5, - close: 779.9, - volume: 924226 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-18`, - open: 780, - high: 782.9, - low: 777, - close: 777.5, - volume: 719429 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-19`, - open: 775, - high: 777.1, - low: 773.1, - close: 775.4, - volume: 861546 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-22`, - open: 773.3, - high: 774.5, - low: 770, - close: 772.1, - volume: 951362 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-23`, - open: 775.5, - high: 776.4, - low: 771.8, - close: 772.1, - volume: 928232 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-24`, - open: 770.6, - high: 774.5, - low: 767.1, - close: 769.6, - volume: 1071999 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-25`, - open: 767, - high: 771.9, - low: 763.2, - close: 769.4, - volume: 926883 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-26`, - open: 769, - high: 776.1, - low: 765.9, - close: 769.5, - volume: 1166681 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-29`, - open: 768.7, - high: 775, - low: 766.6, - close: 772.1, - volume: 847565 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-30`, - open: 769.3, - high: 774.5, - low: 766.8, - close: 769.1, - volume: 1130029 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-31`, - open: 767, - high: 769.1, - low: 765.4, - close: 767, - volume: 1248556 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-01`, - open: 769.3, - high: 771, - low: 764.3, - close: 768.8, - volume: 925131 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-02`, - open: 773, - high: 773.9, - low: 768.4, - close: 771.5, - volume: 1072658 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-06`, - open: 773.5, - high: 782, - low: 771, - close: 780.1, - volume: 1442822 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-07`, - open: 780, - high: 782.7, - low: 776.2, - close: 780.4, - volume: 894021 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-08`, - open: 778.6, - high: 780.4, - low: 773.6, - close: 775.3, - volume: 1270264 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-09`, - open: 770.1, - high: 773.2, - low: 759.7, - close: 759.7, - volume: 1885496 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-12`, - open: 755.1, - high: 770.3, - low: 754, - close: 769, - volume: 1310986 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-13`, - open: 764.5, - high: 766.2, - low: 755.8, - close: 759.7, - volume: 1395046 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-14`, - open: 759.6, - high: 767.7, - low: 759.1, - close: 762.5, - volume: 1094490 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-15`, - open: 762.9, - high: 773.8, - low: 760, - close: 771.8, - volume: 1346751 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-16`, - open: 769.8, - high: 769.8, - low: 764.7, - close: 768.9, - volume: 2049338 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-19`, - open: 772.4, - high: 774, - low: 764.4, - close: 765.7, - volume: 1172824 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-20`, - open: 769, - high: 773.3, - low: 768.5, - close: 771.4, - volume: 978631 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-21`, - open: 772.7, - high: 777.2, - low: 768.3, - close: 776.2, - volume: 1167810 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-22`, - open: 780, - high: 789.9, - low: 778.4, - close: 787.2, - volume: 1486223 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-23`, - open: 786.6, - high: 788.9, - low: 784.1, - close: 786.9, - volume: 1411937 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-26`, - open: 782.7, - high: 782.7, - low: 773.1, - close: 774.2, - volume: 1533206 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-27`, - open: 775.5, - high: 786, - low: 774.3, - close: 783, - volume: 1153247 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-28`, - open: 777.9, - high: 781.8, - low: 775, - close: 781.6, - volume: 1109834 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-29`, - open: 781.4, - high: 785.8, - low: 774.2, - close: 775, - volume: 1314746 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-30`, - open: 776.3, - high: 780.9, - low: 774.1, - close: 777.3, - volume: 1585333 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-03`, - open: 774.3, - high: 776.1, - low: 769.5, - close: 772.6, - volume: 1278821 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-04`, - open: 776, - high: 778.7, - low: 772.9, - close: 776.4, - volume: 1201350 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-05`, - open: 779.3, - high: 782.1, - low: 775.6, - close: 776.5, - volume: 1461151 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-06`, - open: 779, - high: 780.5, - low: 775.5, - close: 776.9, - volume: 1070692 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-07`, - open: 779.7, - high: 779.7, - low: 770.8, - close: 775.1, - volume: 933158 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-10`, - open: 777.7, - high: 789.4, - low: 775.9, - close: 785.9, - volume: 1174923 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-11`, - open: 786.7, - high: 792.3, - low: 780.6, - close: 783.1, - volume: 1372461 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-12`, - open: 783.8, - high: 788.1, - low: 782.1, - close: 786.1, - volume: 937435 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-13`, - open: 781.2, - high: 781.2, - low: 773, - close: 778.2, - volume: 1365277 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-14`, - open: 781.6, - high: 784, - low: 776, - close: 778.5, - volume: 852487 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-17`, - open: 779.8, - high: 785.9, - low: 777.5, - close: 780, - volume: 1092973 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-18`, - open: 787.9, - high: 801.6, - low: 785.6, - close: 795.3, - volume: 2056903 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-19`, - open: 798.9, - high: 804.6, - low: 797.6, - close: 801.6, - volume: 1766798 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-20`, - open: 803.3, - high: 804, - low: 796, - close: 797, - volume: 1757528 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-21`, - open: 795, - high: 799.5, - low: 794, - close: 799.4, - volume: 1266181 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-24`, - open: 804.9, - high: 815.2, - low: 804.8, - close: 813.1, - volume: 1697514 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-25`, - open: 816.7, - high: 816.7, - low: 805.1, - close: 807.7, - volume: 1576404 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-26`, - open: 806.3, - high: 807, - low: 796.3, - close: 799.1, - volume: 1647733 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-27`, - open: 801, - high: 803.5, - low: 791.5, - close: 795.4, - volume: 2749221 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-28`, - open: 808.4, - high: 815.5, - low: 793.6, - close: 795.4, - volume: 4269902 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-31`, - open: 795.5, - high: 796.9, - low: 784, - close: 784.5, - volume: 2427284 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-01`, - open: 782.9, - high: 789.5, - low: 775.5, - close: 783.6, - volume: 2406356 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-02`, - open: 778.2, - high: 781.6, - low: 763.5, - close: 768.7, - volume: 1918414 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-03`, - open: 767.3, - high: 770, - low: 759, - close: 762.1, - volume: 1943175 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-04`, - open: 750.7, - high: 770.4, - low: 750.6, - close: 762, - volume: 2134812 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-07`, - open: 774.5, - high: 785.2, - low: 772.5, - close: 782.5, - volume: 1585070 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-08`, - open: 783.4, - high: 795.6, - low: 780.2, - close: 790.5, - volume: 1366873 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-09`, - open: 779.9, - high: 791.2, - low: 771.7, - close: 785.3, - volume: 2607121 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-10`, - open: 791.2, - high: 791.2, - low: 752.2, - close: 762.6, - volume: 4745183 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-11`, - open: 756.5, - high: 760.8, - low: 750.4, - close: 754, - volume: 2431815 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-14`, - open: 755.6, - high: 757.9, - low: 727.5, - close: 736.1, - volume: 3654385 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-15`, - open: 747, - high: 764.4, - low: 747, - close: 758.5, - volume: 2384001 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-16`, - open: 755.2, - high: 766.4, - low: 750.5, - close: 764.5, - volume: 1472594 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-17`, - open: 766.9, - high: 772.7, - low: 764.2, - close: 771.2, - volume: 1286961 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-18`, - open: 771.4, - high: 775, - low: 760, - close: 760.5, - volume: 1547145 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-21`, - open: 762.6, - high: 769.7, - low: 760.6, - close: 769.2, - volume: 1330639 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-22`, - open: 772.6, - high: 777, - low: 767, - close: 768.3, - volume: 1593108 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-23`, - open: 767.7, - high: 768.3, - low: 755.3, - close: 761, - volume: 1478417 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-25`, - open: 764.3, - high: 765, - low: 760.5, - close: 761.7, - volume: 587421 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-28`, - open: 760, - high: 779.5, - low: 759.8, - close: 768.2, - volume: 2188151 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-29`, - open: 771.5, - high: 778.5, - low: 768.2, - close: 770.8, - volume: 1616618 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-30`, - open: 770.1, - high: 773, - low: 754.8, - close: 758, - volume: 2392890 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-01`, - open: 757.4, - high: 759.9, - low: 737, - close: 747.9, - volume: 3017947 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-02`, - open: 744.6, - high: 754, - low: 743.1, - close: 750.5, - volume: 1452484 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-05`, - open: 757.7, - high: 763.9, - low: 752.9, - close: 762.5, - volume: 1394223 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-06`, - open: 764.7, - high: 768.8, - low: 757.3, - close: 759.1, - volume: 1690689 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-07`, - open: 761, - high: 771.4, - low: 755.8, - close: 771.2, - volume: 1760966 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-08`, - open: 772.5, - high: 778.2, - low: 767.2, - close: 776.4, - volume: 1488059 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-09`, - open: 780, - high: 789.4, - low: 779, - close: 789.3, - volume: 1821914 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-12`, - open: 785, - high: 791.3, - low: 784.4, - close: 789.3, - volume: 2104117 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-13`, - open: 793.9, - high: 804.4, - low: 793.3, - close: 796.1, - volume: 2145209 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-14`, - open: 797.4, - high: 804, - low: 794, - close: 797.1, - volume: 1704150 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-15`, - open: 797.3, - high: 803, - low: 792.9, - close: 797.9, - volume: 1626499 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-16`, - open: 800.4, - high: 800.9, - low: 790.3, - close: 790.8, - volume: 2443796 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-19`, - open: 790.2, - high: 797.7, - low: 786.3, - close: 794.2, - volume: 1232087 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-20`, - open: 796.8, - high: 798.6, - low: 793.3, - close: 796.4, - volume: 951014 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-21`, - open: 795.8, - high: 796.7, - low: 787.1, - close: 794.6, - volume: 1211346 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-22`, - open: 792.4, - high: 793.3, - low: 788.6, - close: 791.3, - volume: 972169 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-23`, - open: 790.9, - high: 792.7, - low: 787.3, - close: 789.9, - volume: 623944 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-27`, - open: 790.7, - high: 797.9, - low: 787.7, - close: 791.5, - volume: 789321 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-28`, - open: 793.7, - high: 794.2, - low: 783.2, - close: 785, - volume: 1153824 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-29`, - open: 783.3, - high: 785.9, - low: 778.9, - close: 782.8, - volume: 744272 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-30`, - open: 782.8, - high: 782.8, - low: 770.4, - close: 771.8, - volume: 1769950 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-03`, - open: 778.8, - high: 789.6, - low: 775.8, - close: 786.1, - volume: 1657268 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-04`, - open: 788.4, - high: 791.3, - low: 783.2, - close: 786.9, - volume: 1072958 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-05`, - open: 786.1, - high: 794.5, - low: 785, - close: 794, - volume: 1335167 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-06`, - open: 795.3, - high: 807.9, - low: 792.2, - close: 806.1, - volume: 1640170 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-09`, - open: 806.4, - high: 810, - low: 802.8, - close: 806.6, - volume: 1274645 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-10`, - open: 807.9, - high: 809.1, - low: 803.5, - close: 804.8, - volume: 1176780 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-11`, - open: 805, - high: 808.1, - low: 801.4, - close: 807.9, - volume: 1065936 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-12`, - open: 807.1, - high: 807.4, - low: 799.2, - close: 806.4, - volume: 1353057 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-13`, - open: 807.5, - high: 811.2, - low: 806.7, - close: 807.9, - volume: 1099215 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-17`, - open: 807.1, - high: 807.1, - low: 800.4, - close: 804.6, - volume: 1362115 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-18`, - open: 805.8, - high: 806.2, - low: 801, - close: 806.1, - volume: 1294407 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-19`, - open: 805.1, - high: 809.5, - low: 801.8, - close: 802.2, - volume: 919325 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-20`, - open: 806.9, - high: 806.9, - low: 801.7, - close: 805, - volume: 1670045 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-23`, - open: 807.3, - high: 820.9, - low: 803.7, - close: 819.3, - volume: 1963628 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-24`, - open: 822.3, - high: 825.9, - low: 817.8, - close: 823.9, - volume: 1474010 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-25`, - open: 829.6, - high: 835.8, - low: 825.1, - close: 835.7, - volume: 1627304 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-26`, - open: 837.8, - high: 838, - low: 827, - close: 832.1, - volume: 2973891 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-27`, - open: 834.7, - high: 842, - low: 820.4, - close: 823.3, - volume: 2965771 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-30`, - open: 814.7, - high: 815.8, - low: 799.8, - close: 802.3, - volume: 3246573 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-31`, - open: 796.9, - high: 801.3, - low: 790.5, - close: 796.8, - volume: 2160556 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-01`, - open: 799.7, - high: 801.2, - low: 791.2, - close: 795.7, - volume: 2029744 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-02`, - open: 793.8, - high: 802.7, - low: 792, - close: 798.5, - volume: 1532138 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-03`, - open: 803, - high: 806, - low: 800.4, - close: 801.5, - volume: 1463448 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-06`, - open: 799.7, - high: 801.7, - low: 795.3, - close: 801.3, - volume: 1184483 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-07`, - open: 804, - high: 810.5, - low: 801.8, - close: 807, - volume: 1241221 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-08`, - open: 807, - high: 811.8, - low: 803.2, - close: 808.4, - volume: 1155990 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-09`, - open: 809.5, - high: 810.7, - low: 804.5, - close: 809.6, - volume: 990391 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-10`, - open: 811.7, - high: 815.3, - low: 809.8, - close: 813.7, - volume: 1134976 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-13`, - open: 816, - high: 821, - low: 815.5, - close: 819.2, - volume: 1213324 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-14`, - open: 819, - high: 823, - low: 816, - close: 820.5, - volume: 1054732 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-15`, - open: 819.4, - high: 823, - low: 818.5, - close: 819, - volume: 1313617 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-16`, - open: 819.9, - high: 824.4, - low: 819, - close: 824.2, - volume: 1287626 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-17`, - open: 823, - high: 828.1, - low: 821.7, - close: 828.1, - volume: 1611039 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-21`, - open: 828.7, - high: 833.5, - low: 828.4, - close: 831.7, - volume: 1262337 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-22`, - open: 828.7, - high: 833.3, - low: 828.6, - close: 830.8, - volume: 987248 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-23`, - open: 830.1, - high: 832.5, - low: 822.9, - close: 831.3, - volume: 1472771 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-24`, - open: 827.7, - high: 829, - low: 824.2, - close: 828.6, - volume: 1392202 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-27`, - open: 824.5, - high: 830.5, - low: 824, - close: 829.3, - volume: 1101466 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-28`, - open: 825.6, - high: 828.5, - low: 820.2, - close: 823.2, - volume: 2260769 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-01`, - open: 828.9, - high: 836.3, - low: 827.3, - close: 835.2, - volume: 1496540 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-02`, - open: 833.9, - high: 834.5, - low: 829.6, - close: 830.6, - volume: 942476 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-03`, - open: 830.6, - high: 831.4, - low: 825.8, - close: 829.1, - volume: 896378 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-06`, - open: 827, - high: 828.9, - low: 822.4, - close: 827.8, - volume: 1109037 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-07`, - open: 827.4, - high: 833.4, - low: 826.5, - close: 831.9, - volume: 1037630 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-08`, - open: 833.5, - high: 838.1, - low: 831.8, - close: 835.4, - volume: 989773 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-09`, - open: 836, - high: 842, - low: 834.2, - close: 838.7, - volume: 1261517 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-10`, - open: 843.3, - high: 844.9, - low: 839.5, - close: 843.3, - volume: 1704024 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-13`, - open: 844, - high: 848.7, - low: 843.3, - close: 845.5, - volume: 1223647 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-14`, - open: 843.6, - high: 847.2, - low: 840.8, - close: 845.6, - volume: 780198 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-15`, - open: 847.6, - high: 848.6, - low: 840.8, - close: 847.2, - volume: 1381474 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-16`, - open: 849, - high: 850.9, - low: 846.1, - close: 848.8, - volume: 977560 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-17`, - open: 851.6, - high: 853.4, - low: 847.1, - close: 852.1, - volume: 1716471 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-20`, - open: 850, - high: 850.2, - low: 845.1, - close: 848.4, - volume: 1231521 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-21`, - open: 851.4, - high: 853.5, - low: 829, - close: 830.5, - volume: 2463484 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-22`, - open: 831.9, - high: 835.5, - low: 827.2, - close: 829.6, - volume: 1401465 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-23`, - open: 821, - high: 822.6, - low: 812.3, - close: 817.6, - volume: 3487056 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-24`, - open: 820.1, - high: 821.9, - low: 808.9, - close: 814.4, - volume: 1981006 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-27`, - open: 807, - high: 821.6, - low: 803.4, - close: 819.5, - volume: 1894990 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-28`, - open: 820.4, - high: 826, - low: 814, - close: 820.9, - volume: 1620542 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-29`, - open: 825, - high: 832.8, - low: 822.4, - close: 831.4, - volume: 1786321 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-30`, - open: 833.5, - high: 833.7, - low: 829, - close: 831.5, - volume: 1055339 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-31`, - open: 829, - high: 831.6, - low: 827.4, - close: 829.6, - volume: 1401893 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-03`, - open: 829.2, - high: 840.9, - low: 829.2, - close: 838.5, - volume: 1671503 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-04`, - open: 831.4, - high: 835.2, - low: 829, - close: 834.6, - volume: 1045363 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-05`, - open: 835.5, - high: 842.5, - low: 830.7, - close: 831.4, - volume: 1555328 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-06`, - open: 832.4, - high: 836.4, - low: 826.5, - close: 827.9, - volume: 1254433 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-07`, - open: 828, - high: 828.5, - low: 820.5, - close: 824.7, - volume: 1057253 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-10`, - open: 825.4, - high: 829.4, - low: 823.8, - close: 824.7, - volume: 978905 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-11`, - open: 824.7, - high: 827.4, - low: 817, - close: 823.4, - volume: 1079732 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-12`, - open: 821.9, - high: 826.7, - low: 821, - close: 824.3, - volume: 900480 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-13`, - open: 822.1, - high: 826.4, - low: 821.4, - close: 823.6, - volume: 1122362 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-17`, - open: 825, - high: 837.8, - low: 824.5, - close: 837.2, - volume: 895015 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-18`, - open: 834.2, - high: 838.9, - low: 832.7, - close: 836.8, - volume: 836722 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-19`, - open: 839.8, - high: 842.2, - low: 836.3, - close: 838.2, - volume: 954330 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-20`, - open: 841.4, - high: 845.2, - low: 839.3, - close: 841.6, - volume: 959031 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-21`, - open: 842.9, - high: 843.9, - low: 840.6, - close: 843.2, - volume: 1323583 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-24`, - open: 851.2, - high: 863.5, - low: 849.9, - close: 862.8, - volume: 1372541 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-25`, - open: 865, - high: 875, - low: 862.8, - close: 872.3, - volume: 1671972 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-26`, - open: 874.2, - high: 876, - low: 867.8, - close: 871.7, - volume: 1237167 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-27`, - open: 873.6, - high: 875.4, - low: 870.4, - close: 874.3, - volume: 2026816 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-28`, - open: 910.7, - high: 916.9, - low: 905.8, - close: 906, - volume: 3276255 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-01`, - open: 901.9, - high: 915.7, - low: 901.5, - close: 912.6, - volume: 2115993 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-02`, - open: 909.6, - high: 920.8, - low: 909.5, - close: 916.4, - volume: 1587219 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-03`, - open: 914.9, - high: 928.1, - low: 912.5, - close: 927, - volume: 1499532 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-04`, - open: 926.1, - high: 935.9, - low: 924.6, - close: 931.7, - volume: 1422144 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-05`, - open: 933.5, - high: 934.9, - low: 925.2, - close: 927.1, - volume: 1911275 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-08`, - open: 926.1, - high: 936.9, - low: 925.3, - close: 934.3, - volume: 1329825 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-09`, - open: 937, - high: 937.5, - low: 929.5, - close: 932.2, - volume: 1581809 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-10`, - open: 932, - high: 932, - low: 925.2, - close: 928.8, - volume: 1173925 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-11`, - open: 925.3, - high: 932.5, - low: 923, - close: 930.6, - volume: 835386 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-12`, - open: 931.5, - high: 933.4, - low: 927.9, - close: 932.2, - volume: 1050601 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-15`, - open: 933, - high: 938.3, - low: 929.3, - close: 937.1, - volume: 1108496 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-16`, - open: 940, - high: 943.1, - low: 937.6, - close: 943, - volume: 969479 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-17`, - open: 935.7, - high: 939.3, - low: 918.1, - close: 919.6, - volume: 2362072 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-18`, - open: 921, - high: 933.2, - low: 918.8, - close: 930.2, - volume: 1596897 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-19`, - open: 931.5, - high: 937.8, - low: 931, - close: 934, - volume: 1393024 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-22`, - open: 935, - high: 941.9, - low: 935, - close: 941.9, - volume: 1120385 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-23`, - open: 947.9, - high: 951.5, - low: 942.6, - close: 948.8, - volume: 1270817 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-24`, - open: 953, - high: 955.1, - low: 949.5, - close: 955, - volume: 1034199 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-25`, - open: 957.3, - high: 972.6, - low: 955.5, - close: 969.5, - volume: 1660474 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-26`, - open: 969.7, - high: 975, - low: 965, - close: 971.5, - volume: 1252010 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-30`, - open: 970.3, - high: 976.2, - low: 969.5, - close: 975.9, - volume: 1466654 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-31`, - open: 975, - high: 979.3, - low: 960.2, - close: 964.9, - volume: 2448067 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-01`, - open: 969, - high: 971.5, - low: 960, - close: 967, - volume: 1410458 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-02`, - open: 969.5, - high: 975.9, - low: 966, - close: 975.6, - volume: 1750955 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-05`, - open: 976.5, - high: 986.9, - low: 975.1, - close: 983.7, - volume: 1252106 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-06`, - open: 983.2, - high: 988.3, - low: 975.1, - close: 976.6, - volume: 1814624 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-07`, - open: 979.6, - high: 984.1, - low: 975.8, - close: 981.1, - volume: 1453874 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-08`, - open: 982.4, - high: 984.6, - low: 977.2, - close: 983.4, - volume: 1481916 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-09`, - open: 984.5, - high: 984.5, - low: 935.6, - close: 949.8, - volume: 3309389 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-12`, - open: 939.6, - high: 949.4, - low: 915.2, - close: 942.9, - volume: 3763529 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-13`, - open: 951.9, - high: 960, - low: 944.1, - close: 953.4, - volume: 2013337 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-14`, - open: 959.9, - high: 961.1, - low: 942.3, - close: 950.8, - volume: 1489715 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-15`, - open: 934, - high: 943.3, - low: 924.4, - close: 942.3, - volume: 2133050 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-16`, - open: 940, - high: 942, - low: 931.6, - close: 939.8, - volume: 3094711 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-19`, - open: 950, - high: 960, - low: 949, - close: 957.4, - volume: 1533336 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-20`, - open: 957.5, - high: 961.6, - low: 950, - close: 950.6, - volume: 1125990 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-21`, - open: 953.6, - high: 960.1, - low: 950.8, - close: 959.5, - volume: 1202233 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-22`, - open: 958.7, - high: 960.7, - low: 954.5, - close: 957.1, - volume: 941958 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-23`, - open: 956.8, - high: 966, - low: 954.2, - close: 965.6, - volume: 1527856 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-26`, - open: 969.9, - high: 973.3, - low: 950.8, - close: 952.3, - volume: 1598355 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-27`, - open: 942.5, - high: 948.3, - low: 926.9, - close: 927.3, - volume: 2579930 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-28`, - open: 929, - high: 942.8, - low: 916, - close: 940.5, - volume: 2721406 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-29`, - open: 929.9, - high: 931.3, - low: 910.6, - close: 917.8, - volume: 3299176 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-30`, - open: 926, - high: 926, - low: 908.3, - close: 908.7, - volume: 2090226 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-03`, - open: 912.2, - high: 913.9, - low: 894.8, - close: 898.7, - volume: 1710373 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-05`, - open: 901.8, - high: 914.5, - low: 898.5, - close: 911.7, - volume: 1813884 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-06`, - open: 904.1, - high: 914.9, - low: 899.7, - close: 906.7, - volume: 1424503 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-07`, - open: 908.9, - high: 921.5, - low: 908.9, - close: 918.6, - volume: 1637785 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-10`, - open: 921.8, - high: 930.4, - low: 919.6, - close: 928.8, - volume: 1192825 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-11`, - open: 929.5, - high: 931.4, - low: 922, - close: 930.1, - volume: 1113235 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-12`, - open: 938.7, - high: 946.3, - low: 934.5, - close: 943.8, - volume: 1532144 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-13`, - open: 946.3, - high: 954.5, - low: 943, - close: 947.2, - volume: 1294687 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-14`, - open: 952, - high: 956.9, - low: 948, - close: 956, - volume: 1053774 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-17`, - open: 957, - high: 960.7, - low: 949.2, - close: 953.4, - volume: 1165537 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-18`, - open: 953, - high: 968, - low: 950.6, - close: 965.4, - volume: 1153964 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-19`, - open: 967.8, - high: 973, - low: 964, - close: 970.9, - volume: 1224540 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-20`, - open: 975, - high: 975.9, - low: 961.5, - close: 968.1, - volume: 1624463 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-21`, - open: 962.3, - high: 973.2, - low: 960.1, - close: 972.9, - volume: 1711000 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-24`, - open: 972.2, - high: 986.2, - low: 970.8, - close: 980.3, - volume: 3248347 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-25`, - open: 953.8, - high: 959.7, - low: 945.4, - close: 950.7, - volume: 4660979 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-26`, - open: 954.7, - high: 955, - low: 942.3, - close: 947.8, - volume: 2088256 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-27`, - open: 951.8, - high: 951.8, - low: 920, - close: 934.1, - volume: 3212996 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-28`, - open: 929.4, - high: 943.8, - low: 927.5, - close: 941.5, - volume: 1846351 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-31`, - open: 941.9, - high: 943.6, - low: 926, - close: 930.5, - volume: 1970095 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-01`, - open: 932.4, - high: 937.5, - low: 929.3, - close: 930.8, - volume: 1277734 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-02`, - open: 928.6, - high: 932.6, - low: 916.7, - close: 930.4, - volume: 1824448 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-03`, - open: 930.3, - high: 932.2, - low: 922.2, - close: 923.6, - volume: 1202512 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-04`, - open: 926.8, - high: 930.3, - low: 923, - close: 928, - volume: 1082267 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-07`, - open: 929.1, - high: 931.7, - low: 926.5, - close: 929.4, - volume: 1032239 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-08`, - open: 927.1, - high: 935.8, - low: 925.6, - close: 926.8, - volume: 1061579 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-09`, - open: 920.6, - high: 926, - low: 917.3, - close: 922.9, - volume: 1192081 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-10`, - open: 917.5, - high: 919.3, - low: 906.1, - close: 907.2, - volume: 1823967 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-11`, - open: 908, - high: 917.8, - low: 905.6, - close: 914.4, - volume: 1206782 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-14`, - open: 922.5, - high: 924.7, - low: 918.2, - close: 922.7, - volume: 1064530 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-15`, - open: 924.2, - high: 926.5, - low: 919.8, - close: 922.2, - volume: 883369 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-16`, - open: 925.3, - high: 932.7, - low: 923.4, - close: 927, - volume: 1006711 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-17`, - open: 925.8, - high: 926.9, - low: 911, - close: 911, - volume: 1277238 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-18`, - open: 910.3, - high: 915.3, - low: 907.1, - close: 910.7, - volume: 1342689 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-21`, - open: 910, - high: 913, - low: 903.4, - close: 906.7, - volume: 943441 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-22`, - open: 912.7, - high: 925.9, - low: 911.5, - close: 924.7, - volume: 1166737 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-23`, - open: 921.9, - high: 929.9, - low: 919.4, - close: 927, - volume: 1090248 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-24`, - open: 928.7, - high: 930.8, - low: 915.5, - close: 921.3, - volume: 1270306 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-25`, - open: 923.5, - high: 925.6, - low: 915.5, - close: 915.9, - volume: 1053376 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-28`, - open: 916, - high: 919.2, - low: 911.9, - close: 913.8, - volume: 1086484 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-29`, - open: 905.1, - high: 923.3, - low: 905, - close: 921.3, - volume: 1185564 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-30`, - open: 920, - high: 930.8, - low: 919.6, - close: 929.6, - volume: 1301225 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-31`, - open: 931.8, - high: 942, - low: 931.8, - close: 939.3, - volume: 1582579 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-01`, - open: 941.1, - high: 942.5, - low: 935.1, - close: 937.3, - volume: 947374 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-05`, - open: 933.1, - high: 937, - low: 922, - close: 928.5, - volume: 1348292 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-06`, - open: 930.1, - high: 930.9, - low: 919.3, - close: 927.8, - volume: 1527650 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-07`, - open: 931.7, - high: 936.4, - low: 923.6, - close: 936, - volume: 1212743 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-08`, - open: 936.5, - high: 937, - low: 924.9, - close: 926.5, - volume: 1011538 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-11`, - open: 934.3, - high: 938.4, - low: 926.9, - close: 929.1, - volume: 1266991 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-12`, - open: 932.6, - high: 933.5, - low: 923.9, - close: 932.1, - volume: 1134397 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-13`, - open: 930.7, - high: 937.3, - low: 929.9, - close: 935.1, - volume: 1102631 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-14`, - open: 931.3, - high: 932.8, - low: 924, - close: 925.1, - volume: 1397644 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-15`, - open: 924.7, - high: 926.5, - low: 916.4, - close: 920.3, - volume: 2505430 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-18`, - open: 920, - high: 922.1, - low: 910.6, - close: 915, - volume: 1306922 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-19`, - open: 917.4, - high: 922.4, - low: 912.5, - close: 921.8, - volume: 936654 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-20`, - open: 923, - high: 933.9, - low: 922, - close: 931.6, - volume: 1669763 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-21`, - open: 933, - high: 936.5, - low: 923.8, - close: 932.5, - volume: 1290607 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-22`, - open: 927.8, - high: 934.7, - low: 926.5, - close: 928.5, - volume: 1052704 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-25`, - open: 925.5, - high: 926.4, - low: 909.7, - close: 921, - volume: 1856822 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-26`, - open: 923.7, - high: 930.8, - low: 921.1, - close: 924.9, - volume: 1666861 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-27`, - open: 927.7, - high: 949.9, - low: 927.7, - close: 944.5, - volume: 2212600 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-28`, - open: 941.4, - high: 950.7, - low: 940.5, - close: 949.5, - volume: 1020312 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-29`, - open: 952, - high: 959.8, - low: 951.5, - close: 959.1, - volume: 1580994 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-02`, - open: 960, - high: 962.5, - low: 947.8, - close: 953.3, - volume: 1283444 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-03`, - open: 954, - high: 958, - low: 949.1, - close: 957.8, - volume: 888346 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-04`, - open: 957, - high: 960.4, - low: 950.7, - close: 951.7, - volume: 952391 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-05`, - open: 955.5, - high: 970.9, - low: 955.2, - close: 970, - volume: 1213816 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-06`, - open: 966.7, - high: 979.5, - low: 963.4, - close: 978.9, - volume: 1173882 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-09`, - open: 980, - high: 985.4, - low: 976.1, - close: 977, - volume: 891355 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-10`, - open: 980, - high: 981.6, - low: 966.1, - close: 972.6, - volume: 968362 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-11`, - open: 973.7, - high: 990.7, - low: 972.3, - close: 989.3, - volume: 1693274 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-12`, - open: 987.5, - high: 994.1, - low: 985, - close: 987.8, - volume: 1262793 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-13`, - open: 992, - high: 997.2, - low: 989, - close: 989.7, - volume: 1169777 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-16`, - open: 992.1, - high: 993.9, - low: 984, - close: 992, - volume: 910543 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-17`, - open: 990.3, - high: 996.4, - low: 988.6, - close: 992.2, - volume: 1290186 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-18`, - open: 991.8, - high: 996.7, - low: 987, - close: 992.8, - volume: 1057581 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-19`, - open: 986, - high: 988.9, - low: 978.4, - close: 984.5, - volume: 1313575 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-20`, - open: 989.4, - high: 991, - low: 984.6, - close: 988.2, - volume: 1183186 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-23`, - open: 989.5, - high: 989.5, - low: 966.1, - close: 968.5, - volume: 1478448 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-24`, - open: 970, - high: 972.2, - low: 961, - close: 970.5, - volume: 1212153 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-25`, - open: 968.4, - high: 976.1, - low: 960.5, - close: 973.3, - volume: 1211262 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-26`, - open: 980, - high: 987.6, - low: 972.2, - close: 972.6, - volume: 2042149 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-27`, - open: 1009.2, - high: 1048.4, - low: 1008.2, - close: 1019.3, - volume: 5167689 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-30`, - open: 1014, - high: 1025, - low: 1007.5, - close: 1017.1, - volume: 2085062 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-31`, - open: 1015.2, - high: 1024, - low: 1010.4, - close: 1016.6, - volume: 1331391 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-01`, - open: 1017.2, - high: 1029.7, - low: 1017, - close: 1025.5, - volume: 1373444 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-02`, - open: 1021.8, - high: 1028.1, - low: 1013, - close: 1025.6, - volume: 1048970 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-03`, - open: 1022.1, - high: 1032.7, - low: 1020.3, - close: 1032.5, - volume: 1076350 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-06`, - open: 1029, - high: 1034.9, - low: 1025, - close: 1025.9, - volume: 1125185 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-07`, - open: 1027.3, - high: 1034, - low: 1025.1, - close: 1033.3, - volume: 1112331 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-08`, - open: 1030.5, - high: 1043.5, - low: 1028.5, - close: 1039.8, - volume: 1088716 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-09`, - open: 1034, - high: 1034, - low: 1019.7, - close: 1031.3, - volume: 1245246 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-10`, - open: 1026.5, - high: 1030.8, - low: 1025.3, - close: 1028.1, - volume: 720676 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-13`, - open: 1023.4, - high: 1031.6, - low: 1022.6, - close: 1025.8, - volume: 885779 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-14`, - open: 1022.6, - high: 1026.8, - low: 1014.1, - close: 1026, - volume: 959222 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-15`, - open: 1019.2, - high: 1024.1, - low: 1015.4, - close: 1020.9, - volume: 853992 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-16`, - open: 1022.5, - high: 1035.9, - low: 1022.5, - close: 1032.5, - volume: 1129688 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-17`, - open: 1034, - high: 1034.4, - low: 1017.8, - close: 1019.1, - volume: 1397064 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-20`, - open: 1020.3, - high: 1022.6, - low: 1017.5, - close: 1018.4, - volume: 953470 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-21`, - open: 1023.3, - high: 1035.1, - low: 1022.7, - close: 1034.5, - volume: 1096999 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-22`, - open: 1035, - high: 1039.7, - low: 1031.4, - close: 1036, - volume: 746878 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-24`, - open: 1035.9, - high: 1043.2, - low: 1035, - close: 1040.6, - volume: 536996 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-27`, - open: 1040, - high: 1055.5, - low: 1038.4, - close: 1054.2, - volume: 1307881 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-28`, - open: 1055.1, - high: 1062.4, - low: 1040, - close: 1047.4, - volume: 1424394 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-29`, - open: 1042.7, - high: 1044.1, - low: 1015.6, - close: 1021.7, - volume: 2459426 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-30`, - open: 1022.4, - high: 1028.5, - low: 1015, - close: 1021.4, - volume: 1724031 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-01`, - open: 1015.8, - high: 1022.5, - low: 1002, - close: 1010.2, - volume: 1909566 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-04`, - open: 1012.7, - high: 1016.1, - low: 995.6, - close: 998.7, - volume: 1906439 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-05`, - open: 995.9, - high: 1020.6, - low: 988.3, - close: 1005.1, - volume: 2067318 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-06`, - open: 1001.5, - high: 1025, - low: 1001.1, - close: 1018.4, - volume: 1271964 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-07`, - open: 1020.4, - high: 1034.2, - low: 1018.1, - close: 1030.9, - volume: 1458242 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-08`, - open: 1037.5, - high: 1042, - low: 1032.5, - close: 1037, - volume: 1290774 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-11`, - open: 1035.5, - high: 1043.8, - low: 1032, - close: 1041.1, - volume: 1192838 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-12`, - open: 1039.6, - high: 1050.3, - low: 1033.7, - close: 1040.5, - volume: 1279659 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-13`, - open: 1046.1, - high: 1046.7, - low: 1038.4, - close: 1040.6, - volume: 1282677 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-14`, - open: 1045, - high: 1058.5, - low: 1043.1, - close: 1049.2, - volume: 1558835 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-15`, - open: 1054.6, - high: 1067.6, - low: 1049.5, - close: 1064.2, - volume: 3275931 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-18`, - open: 1066.1, - high: 1078.5, - low: 1062, - close: 1077.1, - volume: 1554552 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-19`, - open: 1075.2, - high: 1076.8, - low: 1063.5, - close: 1070.7, - volume: 1338725 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-20`, - open: 1071.8, - high: 1073.4, - low: 1061.5, - close: 1065, - volume: 1268582 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-21`, - open: 1065, - high: 1069.3, - low: 1061.8, - close: 1063.6, - volume: 995703 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-22`, - open: 1061.1, - high: 1064.2, - low: 1059.4, - close: 1060.1, - volume: 755095 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-26`, - open: 1058.1, - high: 1060.1, - low: 1050.2, - close: 1056.7, - volume: 761237 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-27`, - open: 1057.4, - high: 1058.4, - low: 1048, - close: 1049.4, - volume: 1271911 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-28`, - open: 1051.6, - high: 1054.8, - low: 1044.8, - close: 1048.1, - volume: 837121 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-29`, - open: 1046.7, - high: 1049.7, - low: 1044.9, - close: 1046.4, - volume: 887511 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-02`, - open: 1048.3, - high: 1066.9, - low: 1045.2, - close: 1065, - volume: 1237564 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-03`, - open: 1064.3, - high: 1086.3, - low: 1063.2, - close: 1082.5, - volume: 1430170 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-04`, - open: 1088, - high: 1093.6, - low: 1084, - close: 1086.4, - volume: 1004605 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-05`, - open: 1094, - high: 1104.3, - low: 1092, - close: 1102.2, - volume: 1279123 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-08`, - open: 1102.2, - high: 1111.3, - low: 1101.6, - close: 1106.9, - volume: 1047603 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-09`, - open: 1109.4, - high: 1110.6, - low: 1101.2, - close: 1106.3, - volume: 902541 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-10`, - open: 1097.1, - high: 1104.6, - low: 1096.1, - close: 1102.6, - volume: 1042793 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-11`, - open: 1106.3, - high: 1106.5, - low: 1099.6, - close: 1105.5, - volume: 978292 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-12`, - open: 1102.4, - high: 1124.3, - low: 1101.2, - close: 1122.3, - volume: 1720533 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-16`, - open: 1132.5, - high: 1139.9, - low: 1117.8, - close: 1121.8, - volume: 1575261 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-17`, - open: 1126.2, - high: 1132.6, - low: 1117, - close: 1132, - volume: 1202639 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-18`, - open: 1131.4, - high: 1132.5, - low: 1117.5, - close: 1129.8, - volume: 1198234 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-19`, - open: 1131.8, - high: 1137.9, - low: 1128.3, - close: 1137.5, - volume: 1778229 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-22`, - open: 1137.5, - high: 1159.9, - low: 1135.1, - close: 1155.8, - volume: 1617975 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-23`, - open: 1159.8, - high: 1171.6, - low: 1158.8, - close: 1170, - volume: 1333056 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-24`, - open: 1177.3, - high: 1179.9, - low: 1161, - close: 1164.2, - volume: 1416625 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-25`, - open: 1172.5, - high: 1175.9, - low: 1162.8, - close: 1170.4, - volume: 1480540 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-26`, - open: 1175.1, - high: 1175.8, - low: 1158.1, - close: 1175.8, - volume: 2018755 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-29`, - open: 1176.5, - high: 1186.9, - low: 1172, - close: 1175.6, - volume: 1378913 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-30`, - open: 1167.8, - high: 1176.5, - low: 1163.5, - close: 1163.7, - volume: 1556346 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-31`, - open: 1170.6, - high: 1173, - low: 1159.1, - close: 1169.9, - volume: 1538688 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new StockGoogleItem( + { + date: `2014-03-01`, + open: 559.6, + high: 568.2, + low: 558.4, + close: 566.9, + volume: 2182626 + }), + new StockGoogleItem( + { + date: `2014-03-02`, + open: 562.4, + high: 571.8, + low: 561.4, + close: 567, + volume: 2088804 + }), + new StockGoogleItem( + { + date: `2014-03-03`, + open: 569.9, + high: 587.3, + low: 564.1, + close: 569.7, + volume: 5087530 + }), + new StockGoogleItem( + { + date: `2014-03-04`, + open: 574.6, + high: 577.8, + low: 543, + close: 543.1, + volume: 6377658 + }), + new StockGoogleItem( + { + date: `2014-03-07`, + open: 540.7, + high: 548.5, + low: 527.1, + close: 538.1, + volume: 4389569 + }), + new StockGoogleItem( + { + date: `2014-03-08`, + open: 542.6, + high: 555, + low: 541.6, + close: 554.9, + volume: 3152406 + }), + new StockGoogleItem( + { + date: `2014-03-09`, + open: 559.6, + high: 565.4, + low: 553, + close: 564.1, + volume: 3324742 + }), + new StockGoogleItem( + { + date: `2014-03-10`, + open: 565, + high: 565, + low: 539.9, + close: 541, + volume: 4027743 + }), + new StockGoogleItem( + { + date: `2014-03-11`, + open: 532.5, + high: 540, + low: 526.5, + close: 530.6, + volume: 3916171 + }), + new StockGoogleItem( + { + date: `2014-03-14`, + open: 538.3, + high: 544.1, + low: 529.6, + close: 532.5, + volume: 2568020 + }), + new StockGoogleItem( + { + date: `2014-03-15`, + open: 536.8, + high: 538.5, + low: 518.5, + close: 536.4, + volume: 3847453 + }), + new StockGoogleItem( + { + date: `2014-03-16`, + open: 543, + high: 557, + low: 540, + close: 556.5, + volume: 4879889 + }), + new StockGoogleItem( + { + date: `2014-03-17`, + open: 548.8, + high: 549.5, + low: 531.1, + close: 536.1, + volume: 6795393 + }), + new StockGoogleItem( + { + date: `2014-03-21`, + open: 536.1, + high: 536.7, + low: 525.6, + close: 528.6, + volume: 2561214 + }), + new StockGoogleItem( + { + date: `2014-03-22`, + open: 528.6, + high: 537.2, + low: 527.5, + close: 534.8, + volume: 2359421 + }), + new StockGoogleItem( + { + date: `2014-03-23`, + open: 533.8, + high: 533.9, + low: 526.3, + close: 526.9, + volume: 2051066 + }), + new StockGoogleItem( + { + date: `2014-03-24`, + open: 530.1, + high: 531.6, + low: 522.1, + close: 525.2, + volume: 1881965 + }), + new StockGoogleItem( + { + date: `2014-03-25`, + open: 522.5, + high: 524.7, + low: 515.4, + close: 516.2, + volume: 2097264 + }), + new StockGoogleItem( + { + date: `2014-03-28`, + open: 517.2, + high: 518.6, + low: 502.8, + close: 517.1, + volume: 3326429 + }), + new StockGoogleItem( + { + date: `2014-03-29`, + open: 516.9, + high: 529.5, + low: 516.3, + close: 527.7, + volume: 2692489 + }), + new StockGoogleItem( + { + date: `2014-03-30`, + open: 527.6, + high: 528, + low: 522.5, + close: 526.7, + volume: 1746904 + }), + new StockGoogleItem( + { + date: `2014-04-01`, + open: 527.1, + high: 532.9, + low: 523.9, + close: 531.4, + volume: 1900432 + }), + new StockGoogleItem( + { + date: `2014-04-02`, + open: 533.8, + high: 534, + low: 525.6, + close: 527.9, + volume: 1685042 + }), + new StockGoogleItem( + { + date: `2014-04-05`, + open: 524.8, + high: 528.9, + low: 521.3, + close: 527.8, + volume: 1021408 + }), + new StockGoogleItem( + { + date: `2014-04-06`, + open: 525.2, + high: 526.8, + low: 515.1, + close: 515.1, + volume: 1684381 + }), + new StockGoogleItem( + { + date: `2014-04-07`, + open: 515.8, + high: 516.7, + low: 503.3, + close: 510, + volume: 3216077 + }), + new StockGoogleItem( + { + date: `2014-04-08`, + open: 508.5, + high: 517.2, + low: 506.4, + close: 511, + volume: 2016131 + }), + new StockGoogleItem( + { + date: `2014-04-09`, + open: 510.8, + high: 519.9, + low: 504.2, + close: 518.7, + volume: 2432783 + }), + new StockGoogleItem( + { + date: `2014-04-12`, + open: 523.5, + high: 530.2, + low: 519, + close: 529.9, + volume: 1908392 + }), + new StockGoogleItem( + { + date: `2014-04-13`, + open: 530.9, + high: 536.1, + low: 529.5, + close: 533.1, + volume: 1648907 + }), + new StockGoogleItem( + { + date: `2014-04-14`, + open: 533, + high: 533, + low: 525.3, + close: 526.6, + volume: 1191863 + }), + new StockGoogleItem( + { + date: `2014-04-15`, + open: 525.7, + high: 525.9, + low: 517.4, + close: 520, + volume: 1703758 + }), + new StockGoogleItem( + { + date: `2014-04-16`, + open: 521.4, + high: 521.8, + low: 515.4, + close: 520.6, + volume: 1481688 + }), + new StockGoogleItem( + { + date: `2014-04-19`, + open: 519.7, + high: 529.8, + low: 517.6, + close: 528.9, + volume: 1276362 + }), + new StockGoogleItem( + { + date: `2014-04-20`, + open: 529.7, + high: 536.2, + low: 526.3, + close: 529.8, + volume: 1780113 + }), + new StockGoogleItem( + { + date: `2014-04-21`, + open: 532.9, + high: 539.2, + low: 531.9, + close: 538.9, + volume: 1193389 + }), + new StockGoogleItem( + { + date: `2014-04-22`, + open: 541.1, + high: 547.6, + low: 540.8, + close: 545.1, + volume: 1611837 + }), + new StockGoogleItem( + { + date: `2014-04-23`, + open: 547.3, + high: 553.6, + low: 543.7, + close: 552.7, + volume: 1929632 + }), + new StockGoogleItem( + { + date: `2014-04-27`, + open: 556, + high: 566, + low: 554.4, + close: 566, + volume: 2100298 + }), + new StockGoogleItem( + { + date: `2014-04-28`, + open: 564.6, + high: 567.8, + low: 561, + close: 561.7, + volume: 1647717 + }), + new StockGoogleItem( + { + date: `2014-04-29`, + open: 563.4, + high: 564, + low: 558.7, + close: 560.1, + volume: 1350657 + }), + new StockGoogleItem( + { + date: `2014-04-30`, + open: 560.8, + high: 561.4, + low: 555.9, + close: 559.9, + volume: 1766794 + }), + new StockGoogleItem( + { + date: `2014-05-02`, + open: 560.7, + high: 560.9, + low: 545.7, + close: 553.9, + volume: 1434989 + }), + new StockGoogleItem( + { + date: `2014-05-03`, + open: 551, + high: 552.3, + low: 542.5, + close: 544.9, + volume: 1861921 + }), + new StockGoogleItem( + { + date: `2014-05-04`, + open: 541.5, + high: 548.6, + low: 538.8, + close: 544.7, + volume: 1812084 + }), + new StockGoogleItem( + { + date: `2014-05-05`, + open: 546.4, + high: 555, + low: 544.5, + close: 553.9, + volume: 1684886 + }), + new StockGoogleItem( + { + date: `2014-05-06`, + open: 558.1, + high: 558.1, + low: 548.9, + close: 556.3, + volume: 1732592 + }), + new StockGoogleItem( + { + date: `2014-05-09`, + open: 557.1, + high: 562.9, + low: 556, + close: 562.1, + volume: 1463676 + }), + new StockGoogleItem( + { + date: `2014-05-10`, + open: 560.5, + high: 563.6, + low: 557.9, + close: 560.5, + volume: 1349444 + }), + new StockGoogleItem( + { + date: `2014-05-11`, + open: 558, + high: 559.9, + low: 555, + close: 558.8, + volume: 1097380 + }), + new StockGoogleItem( + { + date: `2014-05-12`, + open: 557.3, + high: 558, + low: 548.5, + close: 551.4, + volume: 1457104 + }), + new StockGoogleItem( + { + date: `2014-05-13`, + open: 552.3, + high: 552.3, + low: 545.6, + close: 551.8, + volume: 1217176 + }), + new StockGoogleItem( + { + date: `2014-05-16`, + open: 549.3, + high: 549.6, + low: 541.5, + close: 544.3, + volume: 1704027 + }), + new StockGoogleItem( + { + date: `2014-05-17`, + open: 544.2, + high: 545.3, + low: 539.3, + close: 543, + volume: 1445878 + }), + new StockGoogleItem( + { + date: `2014-05-18`, + open: 544.9, + high: 553.6, + low: 544, + close: 553.4, + volume: 1737343 + }), + new StockGoogleItem( + { + date: `2014-05-19`, + open: 554.2, + high: 555, + low: 548.5, + close: 554.9, + volume: 2451341 + }), + new StockGoogleItem( + { + date: `2014-05-20`, + open: 556.9, + high: 557.6, + low: 550.4, + close: 556.4, + volume: 4496962 + }), + new StockGoogleItem( + { + date: `2014-05-23`, + open: 555.1, + high: 565, + low: 554.3, + close: 565, + volume: 1534659 + }), + new StockGoogleItem( + { + date: `2014-05-24`, + open: 565.2, + high: 572.6, + low: 561, + close: 564.6, + volume: 2201789 + }), + new StockGoogleItem( + { + date: `2014-05-25`, + open: 565.3, + high: 580, + low: 565.2, + close: 578.6, + volume: 1964447 + }), + new StockGoogleItem( + { + date: `2014-05-26`, + open: 581, + high: 582.5, + low: 571.9, + close: 576, + volume: 1737210 + }), + new StockGoogleItem( + { + date: `2014-05-27`, + open: 577.2, + high: 579.9, + low: 573.8, + close: 577.2, + volume: 2231174 + }), + new StockGoogleItem( + { + date: `2014-05-30`, + open: 578.7, + high: 579.6, + low: 574.8, + close: 575.3, + volume: 1310909 + }), + new StockGoogleItem( + { + date: `2014-06-01`, + open: 578.3, + high: 584.4, + low: 576.6, + close: 582.7, + volume: 1446309 + }), + new StockGoogleItem( + { + date: `2014-06-02`, + open: 583.4, + high: 585.4, + low: 580.4, + close: 582.3, + volume: 1054936 + }), + new StockGoogleItem( + { + date: `2014-06-03`, + open: 583.4, + high: 585, + low: 580.9, + close: 584.7, + volume: 712210 + }), + new StockGoogleItem( + { + date: `2014-06-07`, + open: 583.8, + high: 586.4, + low: 579.6, + close: 582.3, + volume: 1061833 + }), + new StockGoogleItem( + { + date: `2014-06-08`, + open: 577.7, + high: 579.5, + low: 566.1, + close: 571.1, + volume: 1908647 + }), + new StockGoogleItem( + { + date: `2014-06-09`, + open: 571.6, + high: 576.7, + low: 569.4, + close: 576.1, + volume: 1113907 + }), + new StockGoogleItem( + { + date: `2014-06-10`, + open: 565.9, + high: 576.6, + low: 565, + close: 571.1, + volume: 1353317 + }), + new StockGoogleItem( + { + date: `2014-06-11`, + open: 571.9, + high: 580.9, + low: 571.4, + close: 579.2, + volume: 1617569 + }), + new StockGoogleItem( + { + date: `2014-06-14`, + open: 582.6, + high: 585.2, + low: 578, + close: 584.9, + volume: 1852290 + }), + new StockGoogleItem( + { + date: `2014-06-15`, + open: 585.7, + high: 585.8, + low: 576.6, + close: 584.8, + volume: 1618815 + }), + new StockGoogleItem( + { + date: `2014-06-16`, + open: 588, + high: 588.4, + low: 582.2, + close: 582.7, + volume: 1394560 + }), + new StockGoogleItem( + { + date: `2014-06-17`, + open: 579.5, + high: 581, + low: 568.6, + close: 573.7, + volume: 3015475 + }), + new StockGoogleItem( + { + date: `2014-06-18`, + open: 593, + high: 596.8, + low: 582, + close: 595.1, + volume: 4006389 + }), + new StockGoogleItem( + { + date: `2014-06-21`, + open: 591.8, + high: 594.4, + low: 585.2, + close: 589.5, + volume: 2060334 + }), + new StockGoogleItem( + { + date: `2014-06-22`, + open: 590.7, + high: 599.6, + low: 590.6, + close: 594.7, + volume: 1694787 + }), + new StockGoogleItem( + { + date: `2014-06-23`, + open: 593.2, + high: 597.9, + low: 592.5, + close: 596, + volume: 1229846 + }), + new StockGoogleItem( + { + date: `2014-06-24`, + open: 596.5, + high: 599.5, + low: 591.8, + close: 593.4, + volume: 1033341 + }), + new StockGoogleItem( + { + date: `2014-06-25`, + open: 590.4, + high: 591.9, + low: 587, + close: 589, + volume: 932724 + }), + new StockGoogleItem( + { + date: `2014-06-28`, + open: 588.1, + high: 592.5, + low: 584.8, + close: 590.6, + volume: 984161 + }), + new StockGoogleItem( + { + date: `2014-06-29`, + open: 588.8, + high: 589.7, + low: 583.5, + close: 585.6, + volume: 1346647 + }), + new StockGoogleItem( + { + date: `2014-06-30`, + open: 586.5, + high: 589.5, + low: 584, + close: 587.4, + volume: 1013932 + }), + new StockGoogleItem( + { + date: `2014-06-31`, + open: 580.6, + high: 583.6, + low: 570, + close: 571.6, + volume: 2099516 + }), + new StockGoogleItem( + { + date: `2014-07-01`, + open: 570.4, + high: 576, + low: 562.9, + close: 566.1, + volume: 1950171 + }), + new StockGoogleItem( + { + date: `2014-07-04`, + open: 569, + high: 575.4, + low: 564.1, + close: 573.1, + volume: 1427169 + }), + new StockGoogleItem( + { + date: `2014-07-05`, + open: 570, + high: 572, + low: 562.6, + close: 565.1, + volume: 1556685 + }), + new StockGoogleItem( + { + date: `2014-07-06`, + open: 561.8, + high: 570.7, + low: 560, + close: 566.4, + volume: 1330877 + }), + new StockGoogleItem( + { + date: `2014-07-07`, + open: 568, + high: 569.9, + low: 561.1, + close: 563.4, + volume: 1108900 + }), + new StockGoogleItem( + { + date: `2014-07-08`, + open: 563.6, + high: 570.3, + low: 560.4, + close: 568.8, + volume: 1492491 + }), + new StockGoogleItem( + { + date: `2014-07-11`, + open: 570, + high: 570.5, + low: 566, + close: 567.9, + volume: 1215968 + }), + new StockGoogleItem( + { + date: `2014-07-12`, + open: 564.5, + high: 565.9, + low: 560.9, + close: 562.7, + volume: 1537758 + }), + new StockGoogleItem( + { + date: `2014-07-13`, + open: 567.3, + high: 575, + low: 565.8, + close: 574.8, + volume: 1437922 + }), + new StockGoogleItem( + { + date: `2014-07-14`, + open: 576.2, + high: 577.9, + low: 570.9, + close: 574.6, + volume: 982926 + }), + new StockGoogleItem( + { + date: `2014-07-15`, + open: 577.9, + high: 579.4, + low: 570.5, + close: 573.5, + volume: 1517056 + }), + new StockGoogleItem( + { + date: `2014-07-18`, + open: 576.1, + high: 584.5, + low: 576, + close: 582.2, + volume: 1282531 + }), + new StockGoogleItem( + { + date: `2014-07-19`, + open: 585, + high: 587.3, + low: 584, + close: 586.9, + volume: 979298 + }), + new StockGoogleItem( + { + date: `2014-07-20`, + open: 585.9, + high: 586.7, + low: 582.6, + close: 584.5, + volume: 1034779 + }), + new StockGoogleItem( + { + date: `2014-07-21`, + open: 583.8, + high: 584.5, + low: 581.1, + close: 583.4, + volume: 912854 + }), + new StockGoogleItem( + { + date: `2014-07-22`, + open: 583.6, + high: 585.2, + low: 580.6, + close: 582.6, + volume: 789484 + }), + new StockGoogleItem( + { + date: `2014-07-25`, + open: 584.7, + high: 585, + low: 579, + close: 580.2, + volume: 1358810 + }), + new StockGoogleItem( + { + date: `2014-07-26`, + open: 581.3, + high: 581.8, + low: 576.6, + close: 577.9, + volume: 1635465 + }), + new StockGoogleItem( + { + date: `2014-07-27`, + open: 577.3, + high: 578.5, + low: 570.1, + close: 571, + volume: 1700161 + }), + new StockGoogleItem( + { + date: `2014-07-28`, + open: 569.6, + high: 573.3, + low: 567.1, + close: 569.2, + volume: 1295963 + }), + new StockGoogleItem( + { + date: `2014-07-29`, + open: 571.3, + high: 572, + low: 567.1, + close: 571.6, + volume: 1081231 + }), + new StockGoogleItem( + { + date: `2014-08-02`, + open: 571.9, + high: 577.8, + low: 571.2, + close: 577.3, + volume: 1576830 + }), + new StockGoogleItem( + { + date: `2014-08-03`, + open: 580, + high: 583, + low: 575, + close: 577.9, + volume: 1214586 + }), + new StockGoogleItem( + { + date: `2014-08-04`, + open: 580, + high: 586, + low: 579.2, + close: 582, + volume: 1459956 + }), + new StockGoogleItem( + { + date: `2014-08-05`, + open: 584, + high: 586.5, + low: 582, + close: 586.1, + volume: 1629477 + }), + new StockGoogleItem( + { + date: `2014-08-08`, + open: 586.6, + high: 591.8, + low: 586.3, + close: 589.7, + volume: 1429101 + }), + new StockGoogleItem( + { + date: `2014-08-09`, + open: 588.9, + high: 589, + low: 580, + close: 581, + volume: 1286722 + }), + new StockGoogleItem( + { + date: `2014-08-10`, + open: 581.5, + high: 583.5, + low: 576.9, + close: 583.1, + volume: 975145 + }), + new StockGoogleItem( + { + date: `2014-08-11`, + open: 580.4, + high: 581.8, + low: 576.3, + close: 581.4, + volume: 1217721 + }), + new StockGoogleItem( + { + date: `2014-08-12`, + open: 581, + high: 581.6, + low: 574.5, + close: 575.6, + volume: 1597677 + }), + new StockGoogleItem( + { + date: `2014-08-15`, + open: 572.9, + high: 575, + low: 568.2, + close: 573.1, + volume: 1596224 + }), + new StockGoogleItem( + { + date: `2014-08-16`, + open: 572.8, + high: 581.5, + low: 572.7, + close: 580, + volume: 1478306 + }), + new StockGoogleItem( + { + date: `2014-08-17`, + open: 580, + high: 587.5, + low: 578.8, + close: 584.8, + volume: 1690994 + }), + new StockGoogleItem( + { + date: `2014-08-18`, + open: 587, + high: 589.5, + low: 585, + close: 589.3, + volume: 1442012 + }), + new StockGoogleItem( + { + date: `2014-08-19`, + open: 591.5, + high: 596.5, + low: 589.5, + close: 596.1, + volume: 3727045 + }), + new StockGoogleItem( + { + date: `2014-08-22`, + open: 593.8, + high: 594, + low: 583.5, + close: 587.4, + volume: 1687710 + }), + new StockGoogleItem( + { + date: `2014-08-23`, + open: 586.9, + high: 586.9, + low: 581, + close: 581.1, + volume: 1467703 + }), + new StockGoogleItem( + { + date: `2014-08-24`, + open: 581.5, + high: 589.6, + low: 580.5, + close: 588, + volume: 1724537 + }), + new StockGoogleItem( + { + date: `2014-08-25`, + open: 587.5, + high: 588, + low: 574.2, + close: 575.1, + volume: 1925350 + }), + new StockGoogleItem( + { + date: `2014-08-26`, + open: 576.1, + high: 579.3, + low: 574.7, + close: 577.1, + volume: 1439807 + }), + new StockGoogleItem( + { + date: `2014-08-29`, + open: 571.8, + high: 578.2, + low: 571.2, + close: 576.4, + volume: 1281204 + }), + new StockGoogleItem( + { + date: `2014-08-30`, + open: 576.9, + high: 579.9, + low: 572.9, + close: 577.4, + volume: 1618437 + }), + new StockGoogleItem( + { + date: `2014-09-01`, + open: 576, + high: 577.6, + low: 567, + close: 568.3, + volume: 1445027 + }), + new StockGoogleItem( + { + date: `2014-09-02`, + open: 567.3, + high: 571.9, + low: 563.3, + close: 570.1, + volume: 1175307 + }), + new StockGoogleItem( + { + date: `2014-09-03`, + open: 573, + high: 577.2, + low: 572.5, + close: 575.3, + volume: 1138636 + }), + new StockGoogleItem( + { + date: `2014-09-06`, + open: 578.8, + high: 581, + low: 574.4, + close: 577.4, + volume: 1211320 + }), + new StockGoogleItem( + { + date: `2014-09-07`, + open: 574.4, + high: 575.3, + low: 563.7, + close: 563.7, + volume: 1906427 + }), + new StockGoogleItem( + { + date: `2014-09-08`, + open: 565.6, + high: 573.9, + low: 557.5, + close: 572.5, + volume: 1987888 + }), + new StockGoogleItem( + { + date: `2014-09-09`, + open: 571.2, + high: 571.5, + low: 559.1, + close: 560.9, + volume: 2519693 + }), + new StockGoogleItem( + { + date: `2014-09-10`, + open: 557.7, + high: 565.1, + low: 544, + close: 544.5, + volume: 3078634 + }), + new StockGoogleItem( + { + date: `2014-09-13`, + open: 545, + high: 549.5, + low: 533.1, + close: 533.2, + volume: 2578676 + }), + new StockGoogleItem( + { + date: `2014-09-14`, + open: 538.9, + high: 547.2, + low: 533.2, + close: 537.9, + volume: 2217230 + }), + new StockGoogleItem( + { + date: `2014-09-15`, + open: 531, + high: 532.8, + low: 518.3, + close: 530, + volume: 3712536 + }), + new StockGoogleItem( + { + date: `2014-09-16`, + open: 519, + high: 529.4, + low: 515, + close: 524.5, + volume: 3698423 + }), + new StockGoogleItem( + { + date: `2014-09-17`, + open: 527.3, + high: 531, + low: 508.5, + close: 511.2, + volume: 5530674 + }), + new StockGoogleItem( + { + date: `2014-09-20`, + open: 509.4, + high: 521.8, + low: 508.1, + close: 520.8, + volume: 2605505 + }), + new StockGoogleItem( + { + date: `2014-09-21`, + open: 525.2, + high: 526.8, + low: 519.1, + close: 526.5, + volume: 2332531 + }), + new StockGoogleItem( + { + date: `2014-09-22`, + open: 529.9, + high: 539.8, + low: 528.8, + close: 532.7, + volume: 2917183 + }), + new StockGoogleItem( + { + date: `2014-09-23`, + open: 539.3, + high: 547.2, + low: 535.9, + close: 544, + volume: 2345296 + }), + new StockGoogleItem( + { + date: `2014-09-24`, + open: 544.4, + high: 544.9, + low: 535.8, + close: 539.8, + volume: 1972047 + }), + new StockGoogleItem( + { + date: `2014-09-27`, + open: 537, + high: 544.4, + low: 537, + close: 540.8, + volume: 1184973 + }), + new StockGoogleItem( + { + date: `2014-09-28`, + open: 543, + high: 549, + low: 541.6, + close: 548.9, + volume: 1273372 + }), + new StockGoogleItem( + { + date: `2014-09-29`, + open: 550, + high: 554.2, + low: 547, + close: 549.3, + volume: 1767107 + }), + new StockGoogleItem( + { + date: `2014-09-30`, + open: 549, + high: 552.8, + low: 543.5, + close: 550.3, + volume: 1451667 + }), + new StockGoogleItem( + { + date: `2014-09-31`, + open: 559.4, + high: 559.6, + low: 554.8, + close: 559.1, + volume: 2032887 + }), + new StockGoogleItem( + { + date: `2014-10-03`, + open: 555.5, + high: 557.9, + low: 553.2, + close: 555.2, + volume: 1378511 + }), + new StockGoogleItem( + { + date: `2014-10-04`, + open: 553, + high: 555.5, + low: 549.3, + close: 554.1, + volume: 1240761 + }), + new StockGoogleItem( + { + date: `2014-10-05`, + open: 556.8, + high: 556.8, + low: 544, + close: 545.9, + volume: 2026740 + }), + new StockGoogleItem( + { + date: `2014-10-06`, + open: 545.5, + high: 546.9, + low: 541, + close: 542, + volume: 1329604 + }), + new StockGoogleItem( + { + date: `2014-10-07`, + open: 546.2, + high: 546.2, + low: 538.7, + close: 541, + volume: 1629259 + }), + new StockGoogleItem( + { + date: `2014-10-10`, + open: 541.5, + high: 549.6, + low: 541, + close: 547.5, + volume: 1131546 + }), + new StockGoogleItem( + { + date: `2014-10-11`, + open: 548.5, + high: 551.9, + low: 546.3, + close: 550.3, + volume: 964866 + }), + new StockGoogleItem( + { + date: `2014-10-12`, + open: 550.4, + high: 550.5, + low: 545.2, + close: 547.3, + volume: 1126594 + }), + new StockGoogleItem( + { + date: `2014-10-13`, + open: 549.8, + high: 549.8, + low: 543.5, + close: 545.4, + volume: 1335719 + }), + new StockGoogleItem( + { + date: `2014-10-14`, + open: 546.7, + high: 546.7, + low: 542.1, + close: 544.4, + volume: 1285991 + }), + new StockGoogleItem( + { + date: `2014-10-17`, + open: 543.6, + high: 543.8, + low: 534.1, + close: 536.5, + volume: 1721282 + }), + new StockGoogleItem( + { + date: `2014-10-18`, + open: 537.5, + high: 541.9, + low: 534.2, + close: 535, + volume: 1957664 + }), + new StockGoogleItem( + { + date: `2014-10-19`, + open: 535, + high: 538.2, + low: 530.1, + close: 537, + volume: 1388440 + }), + new StockGoogleItem( + { + date: `2014-10-20`, + open: 531.3, + high: 535.1, + low: 531.1, + close: 534.8, + volume: 1559131 + }), + new StockGoogleItem( + { + date: `2014-10-21`, + open: 541.6, + high: 542.1, + low: 536.6, + close: 537.5, + volume: 2218249 + }), + new StockGoogleItem( + { + date: `2014-10-24`, + open: 537.6, + high: 542.7, + low: 535.6, + close: 539.3, + volume: 1701682 + }), + new StockGoogleItem( + { + date: `2014-10-25`, + open: 539, + high: 544, + low: 538.6, + close: 541.1, + volume: 1784967 + }), + new StockGoogleItem( + { + date: `2014-10-26`, + open: 540.9, + high: 541.5, + low: 537, + close: 540.4, + volume: 1519503 + }), + new StockGoogleItem( + { + date: `2014-10-28`, + open: 540.6, + high: 542, + low: 536.6, + close: 541.8, + volume: 1145231 + }), + new StockGoogleItem( + { + date: `2014-11-01`, + open: 538.9, + high: 541.4, + low: 531.9, + close: 533.8, + volume: 2109599 + }), + new StockGoogleItem( + { + date: `2014-11-02`, + open: 533.5, + high: 535.5, + low: 529.8, + close: 533.8, + volume: 1522481 + }), + new StockGoogleItem( + { + date: `2014-11-03`, + open: 531.4, + high: 536, + low: 529.3, + close: 531.3, + volume: 1279288 + }), + new StockGoogleItem( + { + date: `2014-11-04`, + open: 531.2, + high: 537.3, + low: 528.6, + close: 537.3, + volume: 1392208 + }), + new StockGoogleItem( + { + date: `2014-11-05`, + open: 531, + high: 532.9, + low: 524.3, + close: 525.3, + volume: 2558649 + }), + new StockGoogleItem( + { + date: `2014-11-08`, + open: 527.1, + high: 531, + low: 523.8, + close: 527, + volume: 2327127 + }), + new StockGoogleItem( + { + date: `2014-11-09`, + open: 522.1, + high: 534.2, + low: 520.5, + close: 533.4, + volume: 1871268 + }), + new StockGoogleItem( + { + date: `2014-11-10`, + open: 533.1, + high: 536.3, + low: 525.6, + close: 526.1, + volume: 1716835 + }), + new StockGoogleItem( + { + date: `2014-11-11`, + open: 527.8, + high: 533.9, + low: 527.1, + close: 528.3, + volume: 1610964 + }), + new StockGoogleItem( + { + date: `2014-11-12`, + open: 523.5, + high: 528.5, + low: 518.7, + close: 518.7, + volume: 1989117 + }), + new StockGoogleItem( + { + date: `2014-11-15`, + open: 522.7, + high: 523.1, + low: 513.3, + close: 513.8, + volume: 2812786 + }), + new StockGoogleItem( + { + date: `2014-11-16`, + open: 511.6, + high: 513, + low: 489, + close: 495.4, + volume: 3953371 + }), + new StockGoogleItem( + { + date: `2014-11-17`, + open: 497, + high: 507, + low: 496.8, + close: 504.9, + volume: 2875281 + }), + new StockGoogleItem( + { + date: `2014-11-18`, + open: 513, + high: 513.9, + low: 504.7, + close: 511.1, + volume: 2918730 + }), + new StockGoogleItem( + { + date: `2014-11-19`, + open: 511.5, + high: 517.7, + low: 506.9, + close: 516.4, + volume: 3680148 + }), + new StockGoogleItem( + { + date: `2014-11-22`, + open: 516.1, + high: 526.5, + low: 516.1, + close: 524.9, + volume: 2723599 + }), + new StockGoogleItem( + { + date: `2014-11-23`, + open: 527, + high: 534.6, + low: 526.3, + close: 530.6, + volume: 2191567 + }), + new StockGoogleItem( + { + date: `2014-11-24`, + open: 530.5, + high: 531.8, + low: 527, + close: 528.8, + volume: 704035 + }), + new StockGoogleItem( + { + date: `2014-11-26`, + open: 528.8, + high: 534.3, + low: 527.3, + close: 534, + volume: 1037727 + }), + new StockGoogleItem( + { + date: `2014-11-29`, + open: 532.2, + high: 535.5, + low: 530, + close: 530.3, + volume: 2276104 + }), + new StockGoogleItem( + { + date: `2014-11-30`, + open: 528.1, + high: 531.1, + low: 527.1, + close: 530.4, + volume: 873923 + }), + new StockGoogleItem( + { + date: `2014-11-31`, + open: 531.3, + high: 532.6, + low: 525.8, + close: 526.4, + volume: 1371819 + }), + new StockGoogleItem( + { + date: `2015-00-02`, + open: 529, + high: 531.3, + low: 524.1, + close: 524.8, + volume: 1446662 + }), + new StockGoogleItem( + { + date: `2015-00-05`, + open: 523.3, + high: 524.3, + low: 513.1, + close: 513.9, + volume: 2054238 + }), + new StockGoogleItem( + { + date: `2015-00-06`, + open: 515, + high: 516.2, + low: 501.1, + close: 502, + volume: 2891950 + }), + new StockGoogleItem( + { + date: `2015-00-07`, + open: 507, + high: 507.2, + low: 499.6, + close: 501.1, + volume: 2059366 + }), + new StockGoogleItem( + { + date: `2015-00-08`, + open: 498, + high: 503.5, + low: 491, + close: 502.7, + volume: 3344395 + }), + new StockGoogleItem( + { + date: `2015-00-09`, + open: 504.8, + high: 504.9, + low: 494.8, + close: 496.2, + volume: 2065715 + }), + new StockGoogleItem( + { + date: `2015-00-12`, + open: 494.9, + high: 496, + low: 487.6, + close: 492.6, + volume: 2320446 + }), + new StockGoogleItem( + { + date: `2015-00-13`, + open: 498.8, + high: 503, + low: 492.4, + close: 496.2, + volume: 2365687 + }), + new StockGoogleItem( + { + date: `2015-00-14`, + open: 494.6, + high: 503.2, + low: 493, + close: 500.9, + volume: 2229638 + }), + new StockGoogleItem( + { + date: `2015-00-15`, + open: 505.6, + high: 505.7, + low: 497.8, + close: 501.8, + volume: 2711355 + }), + new StockGoogleItem( + { + date: `2015-00-16`, + open: 500, + high: 508.2, + low: 500, + close: 508.1, + volume: 2292043 + }), + new StockGoogleItem( + { + date: `2015-00-20`, + open: 511, + high: 512.5, + low: 506, + close: 506.9, + volume: 2225922 + }), + new StockGoogleItem( + { + date: `2015-00-21`, + open: 507.3, + high: 519.3, + low: 506.2, + close: 518, + volume: 2262455 + }), + new StockGoogleItem( + { + date: `2015-00-22`, + open: 521.5, + high: 536.3, + low: 519.7, + close: 534.4, + volume: 2669558 + }), + new StockGoogleItem( + { + date: `2015-00-23`, + open: 535.6, + high: 542.2, + low: 533, + close: 540, + volume: 2275485 + }), + new StockGoogleItem( + { + date: `2015-00-26`, + open: 538.5, + high: 539, + low: 529.7, + close: 535.2, + volume: 1539524 + }), + new StockGoogleItem( + { + date: `2015-00-27`, + open: 530, + high: 530.7, + low: 518.2, + close: 518.6, + volume: 1898844 + }), + new StockGoogleItem( + { + date: `2015-00-28`, + open: 522.8, + high: 523, + low: 510, + close: 510, + volume: 1679230 + }), + new StockGoogleItem( + { + date: `2015-00-29`, + open: 511, + high: 511.1, + low: 501.2, + close: 510.7, + volume: 4174924 + }), + new StockGoogleItem( + { + date: `2015-00-30`, + open: 515.9, + high: 539.9, + low: 515.5, + close: 534.5, + volume: 5590977 + }), + new StockGoogleItem( + { + date: `2015-01-02`, + open: 531.7, + high: 533, + low: 518.5, + close: 528.5, + volume: 2841976 + }), + new StockGoogleItem( + { + date: `2015-01-03`, + open: 528, + high: 533.4, + low: 523.3, + close: 529.2, + volume: 2033085 + }), + new StockGoogleItem( + { + date: `2015-01-04`, + open: 529.2, + high: 532.7, + low: 521.3, + close: 522.8, + volume: 1659125 + }), + new StockGoogleItem( + { + date: `2015-01-05`, + open: 523.8, + high: 528.5, + low: 522.1, + close: 527.6, + volume: 1844687 + }), + new StockGoogleItem( + { + date: `2015-01-06`, + open: 527.6, + high: 537.2, + low: 526.4, + close: 531, + volume: 1758650 + }), + new StockGoogleItem( + { + date: `2015-01-09`, + open: 528, + high: 532, + low: 526, + close: 527.8, + volume: 1264276 + }), + new StockGoogleItem( + { + date: `2015-01-10`, + open: 529.3, + high: 537.7, + low: 526.9, + close: 536.9, + volume: 1745076 + }), + new StockGoogleItem( + { + date: `2015-01-11`, + open: 535.3, + high: 538.5, + low: 533.4, + close: 536, + volume: 1373970 + }), + new StockGoogleItem( + { + date: `2015-01-12`, + open: 537.3, + high: 544.8, + low: 534.7, + close: 542.9, + volume: 1615824 + }), + new StockGoogleItem( + { + date: `2015-01-13`, + open: 543.4, + high: 549.9, + low: 543.1, + close: 549, + volume: 1895126 + }), + new StockGoogleItem( + { + date: `2015-01-17`, + open: 546.8, + high: 550, + low: 541.1, + close: 542.8, + volume: 1612439 + }), + new StockGoogleItem( + { + date: `2015-01-18`, + open: 541.4, + high: 545.5, + low: 537.5, + close: 539.7, + volume: 1449089 + }), + new StockGoogleItem( + { + date: `2015-01-19`, + open: 538, + high: 543.1, + low: 538, + close: 542.9, + volume: 987478 + }), + new StockGoogleItem( + { + date: `2015-01-20`, + open: 543.1, + high: 543.8, + low: 535.8, + close: 539, + volume: 1441212 + }), + new StockGoogleItem( + { + date: `2015-01-23`, + open: 536, + high: 536.4, + low: 529.4, + close: 531.9, + volume: 1453907 + }), + new StockGoogleItem( + { + date: `2015-01-24`, + open: 530, + high: 536.8, + low: 528.3, + close: 536.1, + volume: 1002393 + }), + new StockGoogleItem( + { + date: `2015-01-25`, + open: 535.9, + high: 546.2, + low: 535.4, + close: 543.9, + volume: 1821041 + }), + new StockGoogleItem( + { + date: `2015-01-26`, + open: 543.2, + high: 556.1, + low: 541.5, + close: 555.5, + volume: 2305219 + }), + new StockGoogleItem( + { + date: `2015-01-27`, + open: 554.2, + high: 564.7, + low: 552.9, + close: 558.4, + volume: 2403553 + }), + new StockGoogleItem( + { + date: `2015-02-02`, + open: 560.5, + high: 572.1, + low: 558.8, + close: 571.3, + volume: 2123796 + }), + new StockGoogleItem( + { + date: `2015-02-03`, + open: 570.5, + high: 575.4, + low: 566.5, + close: 573.6, + volume: 1700084 + }), + new StockGoogleItem( + { + date: `2015-02-04`, + open: 571.9, + high: 577.1, + low: 568, + close: 573.4, + volume: 1871694 + }), + new StockGoogleItem( + { + date: `2015-02-05`, + open: 575, + high: 577.9, + low: 573.4, + close: 575.3, + volume: 1385818 + }), + new StockGoogleItem( + { + date: `2015-02-06`, + open: 574.9, + high: 576.7, + low: 566.8, + close: 567.7, + volume: 1654561 + }), + new StockGoogleItem( + { + date: `2015-02-09`, + open: 566.9, + high: 570.3, + low: 563.5, + close: 568.9, + volume: 1059336 + }), + new StockGoogleItem( + { + date: `2015-02-10`, + open: 564.3, + high: 564.9, + low: 554.7, + close: 555, + volume: 1787357 + }), + new StockGoogleItem( + { + date: `2015-02-11`, + open: 555.1, + high: 558.1, + low: 550.7, + close: 551.2, + volume: 1815763 + }), + new StockGoogleItem( + { + date: `2015-02-12`, + open: 553.5, + high: 556.4, + low: 550.5, + close: 555.5, + volume: 1385772 + }), + new StockGoogleItem( + { + date: `2015-02-13`, + open: 553.5, + high: 558.4, + low: 544.2, + close: 547.3, + volume: 1698872 + }), + new StockGoogleItem( + { + date: `2015-02-16`, + open: 551, + high: 556.9, + low: 546, + close: 554.5, + volume: 1636493 + }), + new StockGoogleItem( + { + date: `2015-02-17`, + open: 551.7, + high: 553.8, + low: 548, + close: 550.8, + volume: 1800570 + }), + new StockGoogleItem( + { + date: `2015-02-18`, + open: 552.5, + high: 559.8, + low: 547, + close: 559.5, + volume: 2128714 + }), + new StockGoogleItem( + { + date: `2015-02-19`, + open: 559.4, + high: 560.8, + low: 556.1, + close: 558, + volume: 1194049 + }), + new StockGoogleItem( + { + date: `2015-02-20`, + open: 561.6, + high: 561.7, + low: 559, + close: 560.4, + volume: 2609690 + }), + new StockGoogleItem( + { + date: `2015-02-23`, + open: 560.4, + high: 562.4, + low: 555.8, + close: 558.8, + volume: 1639306 + }), + new StockGoogleItem( + { + date: `2015-02-24`, + open: 562.6, + high: 574.6, + low: 561.2, + close: 570.2, + volume: 2576234 + }), + new StockGoogleItem( + { + date: `2015-02-25`, + open: 570.5, + high: 572.3, + low: 558.7, + close: 558.8, + volume: 2146384 + }), + new StockGoogleItem( + { + date: `2015-02-26`, + open: 557.6, + high: 558.9, + low: 550.6, + close: 555.2, + volume: 1568331 + }), + new StockGoogleItem( + { + date: `2015-02-27`, + open: 553, + high: 555.3, + low: 548.1, + close: 548.3, + volume: 1892323 + }), + new StockGoogleItem( + { + date: `2015-02-30`, + open: 551.6, + high: 553.5, + low: 548.2, + close: 552, + volume: 1283958 + }), + new StockGoogleItem( + { + date: `2015-02-31`, + open: 550, + high: 554.7, + low: 546.7, + close: 548, + volume: 1583677 + }), + new StockGoogleItem( + { + date: `2015-03-01`, + open: 548.6, + high: 551.1, + low: 539.5, + close: 542.6, + volume: 1957718 + }), + new StockGoogleItem( + { + date: `2015-03-02`, + open: 540.9, + high: 540.9, + low: 533.9, + close: 535.5, + volume: 1711737 + }), + new StockGoogleItem( + { + date: `2015-03-06`, + open: 532.2, + high: 538.4, + low: 529.6, + close: 536.8, + volume: 1320767 + }), + new StockGoogleItem( + { + date: `2015-03-07`, + open: 538.1, + high: 542.7, + low: 536, + close: 537, + volume: 1299298 + }), + new StockGoogleItem( + { + date: `2015-03-08`, + open: 538.4, + high: 543.9, + low: 538.4, + close: 541.6, + volume: 1175332 + }), + new StockGoogleItem( + { + date: `2015-03-09`, + open: 541, + high: 542, + low: 535.5, + close: 540.8, + volume: 1553586 + }), + new StockGoogleItem( + { + date: `2015-03-10`, + open: 542.3, + high: 542.3, + low: 537.3, + close: 540, + volume: 1405574 + }), + new StockGoogleItem( + { + date: `2015-03-13`, + open: 538.4, + high: 544.1, + low: 537.3, + close: 539.2, + volume: 1640809 + }), + new StockGoogleItem( + { + date: `2015-03-14`, + open: 536.3, + high: 537.6, + low: 528.1, + close: 530.4, + volume: 2597043 + }), + new StockGoogleItem( + { + date: `2015-03-15`, + open: 528.7, + high: 534.7, + low: 523.2, + close: 532.5, + volume: 2312512 + }), + new StockGoogleItem( + { + date: `2015-03-16`, + open: 529.9, + high: 535.6, + low: 529.6, + close: 533.8, + volume: 1296304 + }), + new StockGoogleItem( + { + date: `2015-03-17`, + open: 528.7, + high: 529.8, + low: 521, + close: 524, + volume: 2145955 + }), + new StockGoogleItem( + { + date: `2015-03-20`, + open: 525.6, + high: 536.1, + low: 524.5, + close: 535.4, + volume: 1675487 + }), + new StockGoogleItem( + { + date: `2015-03-21`, + open: 537.5, + high: 539.4, + low: 533.7, + close: 534, + volume: 1839668 + }), + new StockGoogleItem( + { + date: `2015-03-22`, + open: 534.4, + high: 541.1, + low: 531.8, + close: 539.4, + volume: 1589248 + }), + new StockGoogleItem( + { + date: `2015-03-23`, + open: 541, + high: 551, + low: 540.2, + close: 547, + volume: 4173376 + }), + new StockGoogleItem( + { + date: `2015-03-24`, + open: 566.1, + high: 571.1, + low: 557.3, + close: 565.1, + volume: 4919031 + }), + new StockGoogleItem( + { + date: `2015-03-27`, + open: 563.4, + high: 566, + low: 553.2, + close: 555.4, + volume: 2398039 + }), + new StockGoogleItem( + { + date: `2015-03-28`, + open: 554.6, + high: 556, + low: 550.4, + close: 553.7, + volume: 1490983 + }), + new StockGoogleItem( + { + date: `2015-03-29`, + open: 550.5, + high: 553.7, + low: 546.9, + close: 549.1, + volume: 1698761 + }), + new StockGoogleItem( + { + date: `2015-03-30`, + open: 547.9, + high: 548.6, + low: 535, + close: 537.3, + volume: 2082214 + }), + new StockGoogleItem( + { + date: `2015-04-01`, + open: 538.4, + high: 539.5, + low: 532.1, + close: 537.9, + volume: 1768181 + }), + new StockGoogleItem( + { + date: `2015-04-04`, + open: 538.5, + high: 544.1, + low: 535.1, + close: 540.8, + volume: 1307960 + }), + new StockGoogleItem( + { + date: `2015-04-05`, + open: 538.2, + high: 539.7, + low: 530.4, + close: 530.8, + volume: 1383068 + }), + new StockGoogleItem( + { + date: `2015-04-06`, + open: 531.2, + high: 532.4, + low: 521.1, + close: 524.2, + volume: 1566987 + }), + new StockGoogleItem( + { + date: `2015-04-07`, + open: 524, + high: 533.5, + low: 521.8, + close: 530.7, + volume: 1546278 + }), + new StockGoogleItem( + { + date: `2015-04-08`, + open: 536.6, + high: 541.1, + low: 536, + close: 538.2, + volume: 1527615 + }), + new StockGoogleItem( + { + date: `2015-04-11`, + open: 538.4, + high: 542, + low: 535.4, + close: 535.7, + volume: 905285 + }), + new StockGoogleItem( + { + date: `2015-04-12`, + open: 531.6, + high: 533.2, + low: 525.3, + close: 529, + volume: 1634174 + }), + new StockGoogleItem( + { + date: `2015-04-13`, + open: 530.6, + high: 534.3, + low: 528.7, + close: 529.6, + volume: 1253063 + }), + new StockGoogleItem( + { + date: `2015-04-14`, + open: 533.8, + high: 539, + low: 532.4, + close: 538.4, + volume: 1403935 + }), + new StockGoogleItem( + { + date: `2015-04-15`, + open: 539.2, + high: 539.3, + low: 530.4, + close: 533.9, + volume: 1971343 + }), + new StockGoogleItem( + { + date: `2015-04-18`, + open: 532, + high: 534.8, + low: 528.9, + close: 532.3, + volume: 2003421 + }), + new StockGoogleItem( + { + date: `2015-04-19`, + open: 534, + high: 540.7, + low: 533, + close: 537.4, + volume: 1966947 + }), + new StockGoogleItem( + { + date: `2015-04-20`, + open: 538.5, + high: 542.9, + low: 533, + close: 539.3, + volume: 1430826 + }), + new StockGoogleItem( + { + date: `2015-04-21`, + open: 538, + high: 543.8, + low: 536, + close: 542.5, + volume: 1462695 + }), + new StockGoogleItem( + { + date: `2015-04-22`, + open: 540.1, + high: 544.2, + low: 539.5, + close: 540.1, + volume: 1176214 + }), + new StockGoogleItem( + { + date: `2015-04-26`, + open: 538.1, + high: 539, + low: 529.9, + close: 532.3, + volume: 2406512 + }), + new StockGoogleItem( + { + date: `2015-04-27`, + open: 532.8, + high: 540.5, + low: 531.7, + close: 539.8, + volume: 1525019 + }), + new StockGoogleItem( + { + date: `2015-04-28`, + open: 538, + high: 540.6, + low: 536.3, + close: 539.8, + volume: 1029849 + }), + new StockGoogleItem( + { + date: `2015-04-29`, + open: 537.4, + high: 538.6, + low: 531.5, + close: 532.1, + volume: 2597407 + }), + new StockGoogleItem( + { + date: `2015-05-01`, + open: 536.8, + high: 536.8, + low: 529.8, + close: 534, + volume: 1904332 + }), + new StockGoogleItem( + { + date: `2015-05-02`, + open: 532.9, + high: 543, + low: 531.3, + close: 539.2, + volume: 1938989 + }), + new StockGoogleItem( + { + date: `2015-05-03`, + open: 539.9, + high: 543.5, + low: 537.1, + close: 540.3, + volume: 1717036 + }), + new StockGoogleItem( + { + date: `2015-05-04`, + open: 537.8, + high: 540.6, + low: 534.3, + close: 536.7, + volume: 1348337 + }), + new StockGoogleItem( + { + date: `2015-05-05`, + open: 536.4, + high: 537.2, + low: 532.5, + close: 533.3, + volume: 1388220 + }), + new StockGoogleItem( + { + date: `2015-05-08`, + open: 533.3, + high: 534.1, + low: 526.2, + close: 526.8, + volume: 1524139 + }), + new StockGoogleItem( + { + date: `2015-05-09`, + open: 527.6, + high: 529.2, + low: 523, + close: 526.7, + volume: 1455266 + }), + new StockGoogleItem( + { + date: `2015-05-10`, + open: 529.4, + high: 538.4, + low: 529.4, + close: 536.7, + volume: 1814958 + }), + new StockGoogleItem( + { + date: `2015-05-11`, + open: 538.4, + high: 539, + low: 533, + close: 534.6, + volume: 1217536 + }), + new StockGoogleItem( + { + date: `2015-05-12`, + open: 531.6, + high: 533.1, + low: 530.2, + close: 532.3, + volume: 955789 + }), + new StockGoogleItem( + { + date: `2015-05-15`, + open: 528, + high: 528.3, + low: 524, + close: 527.2, + volume: 1632702 + }), + new StockGoogleItem( + { + date: `2015-05-16`, + open: 528.4, + high: 529.6, + low: 525.6, + close: 528.1, + volume: 1071814 + }), + new StockGoogleItem( + { + date: `2015-05-17`, + open: 529.4, + high: 531, + low: 525.1, + close: 529.3, + volume: 1294216 + }), + new StockGoogleItem( + { + date: `2015-05-18`, + open: 531, + high: 538.1, + low: 530.8, + close: 536.7, + volume: 1833109 + }), + new StockGoogleItem( + { + date: `2015-05-19`, + open: 537.2, + high: 538.3, + low: 533, + close: 536.7, + volume: 1893497 + }), + new StockGoogleItem( + { + date: `2015-05-22`, + open: 539.6, + high: 543.7, + low: 537.5, + close: 538.2, + volume: 1250282 + }), + new StockGoogleItem( + { + date: `2015-05-23`, + open: 539.6, + high: 541.5, + low: 535.3, + close: 540.5, + volume: 1197450 + }), + new StockGoogleItem( + { + date: `2015-05-24`, + open: 540, + high: 540, + low: 535.7, + close: 537.8, + volume: 1286608 + }), + new StockGoogleItem( + { + date: `2015-05-25`, + open: 538.9, + high: 540.9, + low: 535.2, + close: 535.2, + volume: 1335697 + }), + new StockGoogleItem( + { + date: `2015-05-26`, + open: 537.3, + high: 537.8, + low: 531.4, + close: 531.7, + volume: 2109130 + }), + new StockGoogleItem( + { + date: `2015-05-29`, + open: 525, + high: 528.6, + low: 520.5, + close: 521.5, + volume: 1937821 + }), + new StockGoogleItem( + { + date: `2015-05-30`, + open: 526, + high: 526.3, + low: 520.5, + close: 520.5, + volume: 2235595 + }), + new StockGoogleItem( + { + date: `2015-06-01`, + open: 524.7, + high: 525.7, + low: 518.2, + close: 521.8, + volume: 1961354 + }), + new StockGoogleItem( + { + date: `2015-06-02`, + open: 521.1, + high: 524.6, + low: 521.1, + close: 523.4, + volume: 1235903 + }), + new StockGoogleItem( + { + date: `2015-06-06`, + open: 519.5, + high: 525.3, + low: 519, + close: 522.9, + volume: 1280525 + }), + new StockGoogleItem( + { + date: `2015-06-07`, + open: 523.1, + high: 526.2, + low: 515.2, + close: 525, + volume: 1597229 + }), + new StockGoogleItem( + { + date: `2015-06-08`, + open: 521, + high: 522.7, + low: 516.1, + close: 516.8, + volume: 1296699 + }), + new StockGoogleItem( + { + date: `2015-06-09`, + open: 523.1, + high: 523.8, + low: 520.4, + close: 520.7, + volume: 1842347 + }), + new StockGoogleItem( + { + date: `2015-06-10`, + open: 526.3, + high: 532.6, + low: 525.5, + close: 530.1, + volume: 1956682 + }), + new StockGoogleItem( + { + date: `2015-06-13`, + open: 532.9, + high: 547.1, + low: 532.4, + close: 546.5, + volume: 2206475 + }), + new StockGoogleItem( + { + date: `2015-06-14`, + open: 546.8, + high: 565.9, + low: 546.7, + close: 561.1, + volume: 3244066 + }), + new StockGoogleItem( + { + date: `2015-06-15`, + open: 560.1, + high: 566.5, + low: 556.8, + close: 560.2, + volume: 1784554 + }), + new StockGoogleItem( + { + date: `2015-06-16`, + open: 565.1, + high: 580.7, + low: 565, + close: 579.9, + volume: 4768318 + }), + new StockGoogleItem( + { + date: `2015-06-17`, + open: 649, + high: 674.5, + low: 645, + close: 672.9, + volume: 11164943 + }), + new StockGoogleItem( + { + date: `2015-06-20`, + open: 659.2, + high: 668.9, + low: 653, + close: 663, + volume: 5860872 + }), + new StockGoogleItem( + { + date: `2015-06-21`, + open: 655.2, + high: 673, + low: 654.3, + close: 662.3, + volume: 3377196 + }), + new StockGoogleItem( + { + date: `2015-06-22`, + open: 660.9, + high: 678.6, + low: 659, + close: 662.1, + volume: 3929309 + }), + new StockGoogleItem( + { + date: `2015-06-23`, + open: 661.3, + high: 663.6, + low: 641, + close: 644.3, + volume: 3029109 + }), + new StockGoogleItem( + { + date: `2015-06-24`, + open: 647, + high: 648.2, + low: 622.5, + close: 623.6, + volume: 3625747 + }), + new StockGoogleItem( + { + date: `2015-06-27`, + open: 621, + high: 634.3, + low: 620.5, + close: 627.3, + volume: 2675381 + }), + new StockGoogleItem( + { + date: `2015-06-28`, + open: 632.8, + high: 632.8, + low: 623.3, + close: 628, + volume: 1727327 + }), + new StockGoogleItem( + { + date: `2015-06-29`, + open: 628.8, + high: 633.4, + low: 622.6, + close: 631.9, + volume: 1575069 + }), + new StockGoogleItem( + { + date: `2015-06-30`, + open: 630, + high: 635.2, + low: 622, + close: 632.6, + volume: 1474203 + }), + new StockGoogleItem( + { + date: `2015-06-31`, + open: 631.4, + high: 632.9, + low: 625.5, + close: 625.6, + volume: 1706149 + }), + new StockGoogleItem( + { + date: `2015-07-03`, + open: 625.3, + high: 633.1, + low: 625.3, + close: 631.2, + volume: 1304511 + }), + new StockGoogleItem( + { + date: `2015-07-04`, + open: 628.4, + high: 634.8, + low: 627.2, + close: 629.3, + volume: 1490881 + }), + new StockGoogleItem( + { + date: `2015-07-05`, + open: 634.3, + high: 647.9, + low: 633.2, + close: 643.8, + volume: 2334266 + }), + new StockGoogleItem( + { + date: `2015-07-06`, + open: 645, + high: 645.4, + low: 632.3, + close: 642.7, + volume: 1572600 + }), + new StockGoogleItem( + { + date: `2015-07-07`, + open: 640.2, + high: 642.7, + low: 629.7, + close: 635.3, + volume: 1403865 + }), + new StockGoogleItem( + { + date: `2015-07-10`, + open: 639.5, + high: 643.4, + low: 631.3, + close: 633.7, + volume: 1809205 + }), + new StockGoogleItem( + { + date: `2015-07-11`, + open: 669.2, + high: 674.9, + low: 654.3, + close: 660.8, + volume: 5029203 + }), + new StockGoogleItem( + { + date: `2015-07-12`, + open: 663.1, + high: 665, + low: 652.3, + close: 659.6, + volume: 2940803 + }), + new StockGoogleItem( + { + date: `2015-07-13`, + open: 659.3, + high: 664.5, + low: 651.7, + close: 656.5, + volume: 1810749 + }), + new StockGoogleItem( + { + date: `2015-07-14`, + open: 655, + high: 659.9, + low: 652.7, + close: 657.1, + volume: 1072061 + }), + new StockGoogleItem( + { + date: `2015-07-17`, + open: 656.8, + high: 661.4, + low: 651.2, + close: 660.9, + volume: 1051699 + }), + new StockGoogleItem( + { + date: `2015-07-18`, + open: 661.9, + high: 664, + low: 653.5, + close: 656.1, + volume: 1456059 + }), + new StockGoogleItem( + { + date: `2015-07-19`, + open: 656.6, + high: 667, + low: 654.2, + close: 660.9, + volume: 2134098 + }), + new StockGoogleItem( + { + date: `2015-07-20`, + open: 655.5, + high: 663, + low: 642.9, + close: 646.8, + volume: 2855299 + }), + new StockGoogleItem( + { + date: `2015-07-21`, + open: 639.8, + high: 640, + low: 612.3, + close: 612.5, + volume: 4265183 + }), + new StockGoogleItem( + { + date: `2015-07-24`, + open: 573, + high: 614, + low: 565, + close: 589.6, + volume: 5770302 + }), + new StockGoogleItem( + { + date: `2015-07-25`, + open: 614.9, + high: 617.5, + low: 581.1, + close: 582.1, + volume: 3537966 + }), + new StockGoogleItem( + { + date: `2015-07-26`, + open: 610.4, + high: 631.7, + low: 599, + close: 628.6, + volume: 4235891 + }), + new StockGoogleItem( + { + date: `2015-07-27`, + open: 639.4, + high: 643.6, + low: 622, + close: 637.6, + volume: 3491336 + }), + new StockGoogleItem( + { + date: `2015-07-28`, + open: 632.8, + high: 636.9, + low: 624.6, + close: 630.4, + volume: 1978733 + }), + new StockGoogleItem( + { + date: `2015-07-31`, + open: 627.5, + high: 635.8, + low: 617.7, + close: 618.3, + volume: 2176737 + }), + new StockGoogleItem( + { + date: `2015-08-01`, + open: 602.4, + high: 612.9, + low: 594.1, + close: 597.8, + volume: 3702105 + }), + new StockGoogleItem( + { + date: `2015-08-02`, + open: 605.6, + high: 614.3, + low: 599.7, + close: 614.3, + volume: 2575620 + }), + new StockGoogleItem( + { + date: `2015-08-03`, + open: 617, + high: 619.7, + low: 602.8, + close: 606.3, + volume: 1759572 + }), + new StockGoogleItem( + { + date: `2015-08-04`, + open: 600, + high: 603.5, + low: 595.3, + close: 600.7, + volume: 2089453 + }), + new StockGoogleItem( + { + date: `2015-08-08`, + open: 612.5, + high: 616.3, + low: 604.1, + close: 614.7, + volume: 2279538 + }), + new StockGoogleItem( + { + date: `2015-08-09`, + open: 621.2, + high: 626.5, + low: 609.6, + close: 612.7, + volume: 1702094 + }), + new StockGoogleItem( + { + date: `2015-08-10`, + open: 613.1, + high: 624.2, + low: 611.4, + close: 621.4, + volume: 1900526 + }), + new StockGoogleItem( + { + date: `2015-08-11`, + open: 619.8, + high: 625.8, + low: 617.4, + close: 625.8, + volume: 1373545 + }), + new StockGoogleItem( + { + date: `2015-08-14`, + open: 625.7, + high: 625.9, + low: 619.4, + close: 623.2, + volume: 1702271 + }), + new StockGoogleItem( + { + date: `2015-08-15`, + open: 626.7, + high: 638.7, + low: 623.8, + close: 635.1, + volume: 2084397 + }), + new StockGoogleItem( + { + date: `2015-08-16`, + open: 635.5, + high: 638, + low: 632.3, + close: 636, + volume: 1286454 + }), + new StockGoogleItem( + { + date: `2015-08-17`, + open: 637.8, + high: 650.9, + low: 635, + close: 642.9, + volume: 2274690 + }), + new StockGoogleItem( + { + date: `2015-08-18`, + open: 636.8, + high: 640, + low: 627, + close: 629.3, + volume: 5133386 + }), + new StockGoogleItem( + { + date: `2015-08-21`, + open: 634.4, + high: 636.5, + low: 625.9, + close: 635.4, + volume: 1788506 + }), + new StockGoogleItem( + { + date: `2015-08-22`, + open: 627, + high: 627.5, + low: 615.4, + close: 622.7, + volume: 2562869 + }), + new StockGoogleItem( + { + date: `2015-08-23`, + open: 622, + high: 628.9, + low: 620, + close: 622.4, + volume: 1470949 + }), + new StockGoogleItem( + { + date: `2015-08-24`, + open: 616.6, + high: 627.3, + low: 612.4, + close: 625.8, + volume: 2240098 + }), + new StockGoogleItem( + { + date: `2015-08-25`, + open: 629.8, + high: 629.8, + low: 611, + close: 612, + volume: 2174009 + }), + new StockGoogleItem( + { + date: `2015-08-28`, + open: 610.3, + high: 614.6, + low: 589.4, + close: 594.9, + volume: 3127667 + }), + new StockGoogleItem( + { + date: `2015-08-29`, + open: 597.3, + high: 605, + low: 590.2, + close: 595, + volume: 2310284 + }), + new StockGoogleItem( + { + date: `2015-08-30`, + open: 603.3, + high: 608.8, + low: 600.7, + close: 608.4, + volume: 2413441 + }), + new StockGoogleItem( + { + date: `2015-09-01`, + open: 608.4, + high: 612.1, + low: 599.9, + close: 611.3, + volume: 1867601 + }), + new StockGoogleItem( + { + date: `2015-09-02`, + open: 607.2, + high: 627.3, + low: 603.1, + close: 626.9, + volume: 2684805 + }), + new StockGoogleItem( + { + date: `2015-09-05`, + open: 632, + high: 643, + low: 627, + close: 641.5, + volume: 1787880 + }), + new StockGoogleItem( + { + date: `2015-09-06`, + open: 638.8, + high: 649.3, + low: 636.5, + close: 645.4, + volume: 2166264 + }), + new StockGoogleItem( + { + date: `2015-09-07`, + open: 649.2, + high: 650.6, + low: 632.1, + close: 642.4, + volume: 2089776 + }), + new StockGoogleItem( + { + date: `2015-09-08`, + open: 641.4, + high: 644.5, + low: 625.6, + close: 639.2, + volume: 2180441 + }), + new StockGoogleItem( + { + date: `2015-09-09`, + open: 640, + high: 646, + low: 635.3, + close: 643.6, + volume: 1645844 + }), + new StockGoogleItem( + { + date: `2015-09-12`, + open: 642.1, + high: 648.5, + low: 639, + close: 646.7, + volume: 1275206 + }), + new StockGoogleItem( + { + date: `2015-09-13`, + open: 643.1, + high: 657.8, + low: 643.1, + close: 652.3, + volume: 1790704 + }), + new StockGoogleItem( + { + date: `2015-09-14`, + open: 653.2, + high: 659.4, + low: 648.9, + close: 651.2, + volume: 1412040 + }), + new StockGoogleItem( + { + date: `2015-09-15`, + open: 654.7, + high: 663.1, + low: 654.5, + close: 661.7, + volume: 1830524 + }), + new StockGoogleItem( + { + date: `2015-09-16`, + open: 664.1, + high: 665, + low: 657.2, + close: 662.2, + volume: 1606138 + }), + new StockGoogleItem( + { + date: `2015-09-19`, + open: 661.2, + high: 666.8, + low: 659.6, + close: 666.1, + volume: 1465339 + }), + new StockGoogleItem( + { + date: `2015-09-20`, + open: 664, + high: 664.7, + low: 644.2, + close: 650.3, + volume: 2490016 + }), + new StockGoogleItem( + { + date: `2015-09-21`, + open: 654.1, + high: 655.9, + low: 641.7, + close: 642.6, + volume: 1791099 + }), + new StockGoogleItem( + { + date: `2015-09-22`, + open: 646.7, + high: 657.8, + low: 644, + close: 651.8, + volume: 3782103 + }), + new StockGoogleItem( + { + date: `2015-09-23`, + open: 727.5, + high: 730, + low: 701.5, + close: 702, + volume: 6642504 + }), + new StockGoogleItem( + { + date: `2015-09-26`, + open: 701.5, + high: 719.1, + low: 701.3, + close: 712.8, + volume: 2701629 + }), + new StockGoogleItem( + { + date: `2015-09-27`, + open: 707.4, + high: 713.6, + low: 704.5, + close: 708.5, + volume: 2224309 + }), + new StockGoogleItem( + { + date: `2015-09-28`, + open: 707.3, + high: 713, + low: 703.1, + close: 713, + volume: 2176623 + }), + new StockGoogleItem( + { + date: `2015-09-29`, + open: 710.5, + high: 718.3, + low: 710, + close: 716.9, + volume: 1454128 + }), + new StockGoogleItem( + { + date: `2015-09-30`, + open: 715.7, + high: 718, + low: 710, + close: 710.8, + volume: 1903980 + }), + new StockGoogleItem( + { + date: `2015-10-02`, + open: 711.1, + high: 721.6, + low: 705.9, + close: 721.1, + volume: 1871073 + }), + new StockGoogleItem( + { + date: `2015-10-03`, + open: 718.9, + high: 724.6, + low: 714.7, + close: 722.2, + volume: 1560770 + }), + new StockGoogleItem( + { + date: `2015-10-04`, + open: 722, + high: 733.1, + low: 721.9, + close: 728.1, + volume: 1704575 + }), + new StockGoogleItem( + { + date: `2015-10-05`, + open: 729.5, + high: 739.5, + low: 729.5, + close: 731.3, + volume: 1860367 + }), + new StockGoogleItem( + { + date: `2015-10-06`, + open: 731.5, + high: 735.4, + low: 727, + close: 733.8, + volume: 1509656 + }), + new StockGoogleItem( + { + date: `2015-10-09`, + open: 730.2, + high: 734.7, + low: 719.4, + close: 724.9, + volume: 2065619 + }), + new StockGoogleItem( + { + date: `2015-10-10`, + open: 724.4, + high: 730.6, + low: 718.5, + close: 728.3, + volume: 1603937 + }), + new StockGoogleItem( + { + date: `2015-10-11`, + open: 732.5, + high: 741, + low: 730.2, + close: 735.4, + volume: 1366375 + }), + new StockGoogleItem( + { + date: `2015-10-12`, + open: 731, + high: 737.8, + low: 728.6, + close: 731.2, + volume: 1668048 + }), + new StockGoogleItem( + { + date: `2015-10-13`, + open: 729.2, + high: 731.1, + low: 716.7, + close: 717, + volume: 2062982 + }), + new StockGoogleItem( + { + date: `2015-10-16`, + open: 715.6, + high: 729.5, + low: 711.3, + close: 729, + volume: 1891074 + }), + new StockGoogleItem( + { + date: `2015-10-17`, + open: 729.3, + high: 731.8, + low: 723, + close: 725.3, + volume: 1491709 + }), + new StockGoogleItem( + { + date: `2015-10-18`, + open: 727.6, + high: 741.4, + low: 727, + close: 740, + volume: 1671588 + }), + new StockGoogleItem( + { + date: `2015-10-19`, + open: 738.7, + high: 742, + low: 737.4, + close: 738.4, + volume: 1327109 + }), + new StockGoogleItem( + { + date: `2015-10-20`, + open: 746.5, + high: 757.9, + low: 743, + close: 756.6, + volume: 2212302 + }), + new StockGoogleItem( + { + date: `2015-10-23`, + open: 757.5, + high: 762.7, + low: 751.8, + close: 756, + volume: 1414487 + }), + new StockGoogleItem( + { + date: `2015-10-24`, + open: 752, + high: 755.3, + low: 737.6, + close: 748.3, + volume: 2333130 + }), + new StockGoogleItem( + { + date: `2015-10-25`, + open: 748.1, + high: 752, + low: 746.1, + close: 748.1, + volume: 1122224 + }), + new StockGoogleItem( + { + date: `2015-10-27`, + open: 748.5, + high: 753.4, + low: 747.5, + close: 750.3, + volume: 838518 + }), + new StockGoogleItem( + { + date: `2015-10-30`, + open: 748.8, + high: 754.9, + low: 741.3, + close: 742.6, + volume: 2035261 + }), + new StockGoogleItem( + { + date: `2015-11-01`, + open: 747.1, + high: 769, + low: 746.7, + close: 767, + volume: 2129940 + }), + new StockGoogleItem( + { + date: `2015-11-02`, + open: 768.9, + high: 776, + low: 759, + close: 762.4, + volume: 2195686 + }), + new StockGoogleItem( + { + date: `2015-11-03`, + open: 766, + high: 769, + low: 745.6, + close: 752.5, + volume: 2590641 + }), + new StockGoogleItem( + { + date: `2015-11-04`, + open: 753.1, + high: 768.5, + low: 750, + close: 766.8, + volume: 2757283 + }), + new StockGoogleItem( + { + date: `2015-11-07`, + open: 767.8, + high: 768.7, + low: 755.1, + close: 763.3, + volume: 1812314 + }), + new StockGoogleItem( + { + date: `2015-11-08`, + open: 757.9, + high: 764.8, + low: 754.2, + close: 762.4, + volume: 1829475 + }), + new StockGoogleItem( + { + date: `2015-11-09`, + open: 759.2, + high: 764.2, + low: 737, + close: 751.6, + volume: 2699990 + }), + new StockGoogleItem( + { + date: `2015-11-10`, + open: 752.9, + high: 755.9, + low: 743.8, + close: 749.5, + volume: 1988380 + }), + new StockGoogleItem( + { + date: `2015-11-11`, + open: 741.2, + high: 745.7, + low: 736.8, + close: 738.9, + volume: 2224410 + }), + new StockGoogleItem( + { + date: `2015-11-14`, + open: 741.8, + high: 748.7, + low: 724.2, + close: 747.8, + volume: 2412497 + }), + new StockGoogleItem( + { + date: `2015-11-15`, + open: 753, + high: 758.1, + low: 743, + close: 743.4, + volume: 2666229 + }), + new StockGoogleItem( + { + date: `2015-11-16`, + open: 750, + high: 760.6, + low: 739.4, + close: 758.1, + volume: 1993251 + }), + new StockGoogleItem( + { + date: `2015-11-17`, + open: 762.4, + high: 762.7, + low: 749, + close: 749.4, + volume: 1553418 + }), + new StockGoogleItem( + { + date: `2015-11-18`, + open: 746.5, + high: 754.1, + low: 738.1, + close: 739.3, + volume: 3148743 + }), + new StockGoogleItem( + { + date: `2015-11-21`, + open: 746.1, + high: 750, + low: 740, + close: 747.8, + volume: 1525703 + }), + new StockGoogleItem( + { + date: `2015-11-22`, + open: 751.6, + high: 754.9, + low: 745.5, + close: 750, + volume: 1365520 + }), + new StockGoogleItem( + { + date: `2015-11-23`, + open: 753.5, + high: 754.2, + low: 744, + close: 750.3, + volume: 1566726 + }), + new StockGoogleItem( + { + date: `2015-11-24`, + open: 749.5, + high: 751.4, + low: 746.6, + close: 748.4, + volume: 527223 + }), + new StockGoogleItem( + { + date: `2015-11-28`, + open: 752.9, + high: 763, + low: 749.5, + close: 762.5, + volume: 1515716 + }), + new StockGoogleItem( + { + date: `2015-11-29`, + open: 766.7, + high: 780, + low: 766.4, + close: 776.6, + volume: 1765012 + }), + new StockGoogleItem( + { + date: `2015-11-30`, + open: 776.6, + high: 777.6, + low: 766.9, + close: 771, + volume: 1293521 + }), + new StockGoogleItem( + { + date: `2015-11-31`, + open: 769.5, + high: 769.5, + low: 758.3, + close: 758.9, + volume: 1500923 + }), + new StockGoogleItem( + { + date: `2016-00-04`, + open: 743, + high: 744.1, + low: 731.3, + close: 741.8, + volume: 3258199 + }), + new StockGoogleItem( + { + date: `2016-00-05`, + open: 746.5, + high: 752, + low: 738.6, + close: 742.6, + volume: 1950691 + }), + new StockGoogleItem( + { + date: `2016-00-06`, + open: 730, + high: 747.2, + low: 728.9, + close: 743.6, + volume: 1947034 + }), + new StockGoogleItem( + { + date: `2016-00-07`, + open: 730.3, + high: 738.5, + low: 719.1, + close: 726.4, + volume: 2963741 + }), + new StockGoogleItem( + { + date: `2016-00-08`, + open: 731.5, + high: 733.2, + low: 713, + close: 714.5, + volume: 2450857 + }), + new StockGoogleItem( + { + date: `2016-00-11`, + open: 716.6, + high: 718.9, + low: 703.5, + close: 716, + volume: 2090621 + }), + new StockGoogleItem( + { + date: `2016-00-12`, + open: 721.7, + high: 728.8, + low: 717.3, + close: 726.1, + volume: 2024509 + }), + new StockGoogleItem( + { + date: `2016-00-13`, + open: 730.9, + high: 734.7, + low: 698.6, + close: 700.6, + volume: 2468295 + }), + new StockGoogleItem( + { + date: `2016-00-14`, + open: 705.4, + high: 721.9, + low: 689.1, + close: 714.7, + volume: 2211853 + }), + new StockGoogleItem( + { + date: `2016-00-15`, + open: 692.3, + high: 706.7, + low: 685.4, + close: 694.5, + volume: 3592449 + }), + new StockGoogleItem( + { + date: `2016-00-19`, + open: 703.3, + high: 710, + low: 693.4, + close: 701.8, + volume: 2258479 + }), + new StockGoogleItem( + { + date: `2016-00-20`, + open: 688.6, + high: 706.9, + low: 673.3, + close: 698.5, + volume: 3439386 + }), + new StockGoogleItem( + { + date: `2016-00-21`, + open: 702.2, + high: 719.2, + low: 694.5, + close: 706.6, + volume: 2410263 + }), + new StockGoogleItem( + { + date: `2016-00-22`, + open: 723.6, + high: 728.1, + low: 720.1, + close: 725.3, + volume: 2006528 + }), + new StockGoogleItem( + { + date: `2016-00-25`, + open: 723.6, + high: 729.7, + low: 710, + close: 711.7, + volume: 1704641 + }), + new StockGoogleItem( + { + date: `2016-00-26`, + open: 713.9, + high: 718.3, + low: 706.5, + close: 713, + volume: 1324300 + }), + new StockGoogleItem( + { + date: `2016-00-27`, + open: 713.7, + high: 718.2, + low: 694.4, + close: 700, + volume: 2139970 + }), + new StockGoogleItem( + { + date: `2016-00-28`, + open: 722.2, + high: 733.7, + low: 712.4, + close: 731, + volume: 2658016 + }), + new StockGoogleItem( + { + date: `2016-00-29`, + open: 731.5, + high: 745, + low: 726.8, + close: 743, + volume: 3394935 + }), + new StockGoogleItem( + { + date: `2016-01-01`, + open: 750.5, + high: 757.9, + low: 743.3, + close: 752, + volume: 4801816 + }), + new StockGoogleItem( + { + date: `2016-01-02`, + open: 784.5, + high: 789.9, + low: 764.6, + close: 764.6, + volume: 6332431 + }), + new StockGoogleItem( + { + date: `2016-01-03`, + open: 770.2, + high: 774.5, + low: 720.5, + close: 727, + volume: 6162333 + }), + new StockGoogleItem( + { + date: `2016-01-04`, + open: 722.8, + high: 727, + low: 701.9, + close: 708, + volume: 5145855 + }), + new StockGoogleItem( + { + date: `2016-01-05`, + open: 703.9, + high: 704, + low: 680.1, + close: 683.6, + volume: 5069985 + }), + new StockGoogleItem( + { + date: `2016-01-08`, + open: 667.9, + high: 684, + low: 663.1, + close: 682.7, + volume: 4212541 + }), + new StockGoogleItem( + { + date: `2016-01-09`, + open: 672.3, + high: 699.9, + low: 668.8, + close: 678.1, + volume: 3604335 + }), + new StockGoogleItem( + { + date: `2016-01-10`, + open: 686.9, + high: 701.3, + low: 682.1, + close: 684.1, + volume: 2627379 + }), + new StockGoogleItem( + { + date: `2016-01-11`, + open: 675, + high: 689.4, + low: 668.9, + close: 683.1, + volume: 3007223 + }), + new StockGoogleItem( + { + date: `2016-01-12`, + open: 690.3, + high: 693.8, + low: 678.6, + close: 682.4, + volume: 2129831 + }), + new StockGoogleItem( + { + date: `2016-01-16`, + open: 693, + high: 698, + low: 685, + close: 691, + volume: 2497024 + }), + new StockGoogleItem( + { + date: `2016-01-17`, + open: 699, + high: 709.8, + low: 691.4, + close: 708.4, + volume: 2466808 + }), + new StockGoogleItem( + { + date: `2016-01-18`, + open: 710, + high: 712.4, + low: 696, + close: 697.4, + volume: 1859130 + }), + new StockGoogleItem( + { + date: `2016-01-19`, + open: 695, + high: 703.1, + low: 694, + close: 700.9, + volume: 1582260 + }), + new StockGoogleItem( + { + date: `2016-01-22`, + open: 707.5, + high: 713.2, + low: 702.5, + close: 706.5, + volume: 1946067 + }), + new StockGoogleItem( + { + date: `2016-01-23`, + open: 701.5, + high: 708.4, + low: 693.6, + close: 695.9, + volume: 1999699 + }), + new StockGoogleItem( + { + date: `2016-01-24`, + open: 688.9, + high: 700, + low: 680.8, + close: 699.6, + volume: 1958611 + }), + new StockGoogleItem( + { + date: `2016-01-25`, + open: 700, + high: 706, + low: 690.6, + close: 705.8, + volume: 1631855 + }), + new StockGoogleItem( + { + date: `2016-01-26`, + open: 708.6, + high: 713.4, + low: 700.9, + close: 705.1, + volume: 2239978 + }), + new StockGoogleItem( + { + date: `2016-01-29`, + open: 700.3, + high: 710.9, + low: 697.7, + close: 697.8, + volume: 2280280 + }), + new StockGoogleItem( + { + date: `2016-02-01`, + open: 703.6, + high: 718.8, + low: 699.8, + close: 718.8, + volume: 2147442 + }), + new StockGoogleItem( + { + date: `2016-02-02`, + open: 719, + high: 720, + low: 712, + close: 718.9, + volume: 1627753 + }), + new StockGoogleItem( + { + date: `2016-02-03`, + open: 718.7, + high: 719.5, + low: 706, + close: 712.4, + volume: 1956761 + }), + new StockGoogleItem( + { + date: `2016-02-04`, + open: 715, + high: 716.5, + low: 706, + close: 710.9, + volume: 1967873 + }), + new StockGoogleItem( + { + date: `2016-02-07`, + open: 706.9, + high: 708.1, + low: 686.9, + close: 695.2, + volume: 2985094 + }), + new StockGoogleItem( + { + date: `2016-02-08`, + open: 688.6, + high: 703.8, + low: 685.3, + close: 694, + volume: 2063357 + }), + new StockGoogleItem( + { + date: `2016-02-09`, + open: 698.5, + high: 705.7, + low: 694, + close: 705.2, + volume: 1418704 + }), + new StockGoogleItem( + { + date: `2016-02-10`, + open: 708.1, + high: 716.4, + low: 703.4, + close: 712.8, + volume: 2829412 + }), + new StockGoogleItem( + { + date: `2016-02-11`, + open: 720, + high: 726.9, + low: 717.1, + close: 726.8, + volume: 1963907 + }), + new StockGoogleItem( + { + date: `2016-02-14`, + open: 726.8, + high: 735.5, + low: 725.1, + close: 730.5, + volume: 1716910 + }), + new StockGoogleItem( + { + date: `2016-02-15`, + open: 726.9, + high: 732.3, + low: 724.8, + close: 728.3, + volume: 1720965 + }), + new StockGoogleItem( + { + date: `2016-02-16`, + open: 726.4, + high: 737.5, + low: 724.5, + close: 736.1, + volume: 1572329 + }), + new StockGoogleItem( + { + date: `2016-02-17`, + open: 736.5, + high: 743.1, + low: 736, + close: 737.8, + volume: 1856800 + }), + new StockGoogleItem( + { + date: `2016-02-18`, + open: 741.9, + high: 742, + low: 731.8, + close: 737.6, + volume: 2796376 + }), + new StockGoogleItem( + { + date: `2016-02-21`, + open: 736.5, + high: 742.5, + low: 733.5, + close: 742.1, + volume: 1831839 + }), + new StockGoogleItem( + { + date: `2016-02-22`, + open: 737.5, + high: 745, + low: 737.5, + close: 740.8, + volume: 1264396 + }), + new StockGoogleItem( + { + date: `2016-02-23`, + open: 742.4, + high: 745.7, + low: 736.1, + close: 738.1, + volume: 1421861 + }), + new StockGoogleItem( + { + date: `2016-02-24`, + open: 732, + high: 737.8, + low: 731, + close: 735.3, + volume: 1564782 + }), + new StockGoogleItem( + { + date: `2016-02-28`, + open: 736.8, + high: 739, + low: 732.5, + close: 733.5, + volume: 1299812 + }), + new StockGoogleItem( + { + date: `2016-02-29`, + open: 734.6, + high: 747.3, + low: 728.8, + close: 744.8, + volume: 1902128 + }), + new StockGoogleItem( + { + date: `2016-02-30`, + open: 750.1, + high: 757.9, + low: 748.7, + close: 750.5, + volume: 1780998 + }), + new StockGoogleItem( + { + date: `2016-02-31`, + open: 749.3, + high: 750.9, + low: 740.9, + close: 745, + volume: 1712375 + }), + new StockGoogleItem( + { + date: `2016-03-01`, + open: 738.6, + high: 750.3, + low: 737, + close: 749.9, + volume: 1574870 + }), + new StockGoogleItem( + { + date: `2016-03-04`, + open: 750.1, + high: 752.8, + low: 742.4, + close: 745.3, + volume: 1131843 + }), + new StockGoogleItem( + { + date: `2016-03-05`, + open: 738, + high: 742.8, + low: 735.4, + close: 737.8, + volume: 1129829 + }), + new StockGoogleItem( + { + date: `2016-03-06`, + open: 735.8, + high: 746.2, + low: 735.6, + close: 745.7, + volume: 1050193 + }), + new StockGoogleItem( + { + date: `2016-03-07`, + open: 745.4, + high: 747, + low: 736.3, + close: 740.3, + volume: 1429504 + }), + new StockGoogleItem( + { + date: `2016-03-08`, + open: 744, + high: 745.5, + low: 735.5, + close: 739.1, + volume: 1285755 + }), + new StockGoogleItem( + { + date: `2016-03-11`, + open: 743, + high: 745, + low: 736, + close: 736.1, + volume: 1211762 + }), + new StockGoogleItem( + { + date: `2016-03-12`, + open: 738, + high: 743.8, + low: 731, + close: 743.1, + volume: 1349734 + }), + new StockGoogleItem( + { + date: `2016-03-13`, + open: 749.2, + high: 754.4, + low: 744.3, + close: 751.7, + volume: 1707095 + }), + new StockGoogleItem( + { + date: `2016-03-14`, + open: 754, + high: 757.3, + low: 752.7, + close: 753.2, + volume: 1130971 + }), + new StockGoogleItem( + { + date: `2016-03-15`, + open: 754, + high: 761, + low: 752.7, + close: 759, + volume: 1800413 + }), + new StockGoogleItem( + { + date: `2016-03-18`, + open: 760.5, + high: 768, + low: 757.3, + close: 766.6, + volume: 1555953 + }), + new StockGoogleItem( + { + date: `2016-03-19`, + open: 769.5, + high: 769.9, + low: 749.3, + close: 753.9, + volume: 2027642 + }), + new StockGoogleItem( + { + date: `2016-03-20`, + open: 758, + high: 758.1, + low: 750, + close: 752.7, + volume: 1525591 + }), + new StockGoogleItem( + { + date: `2016-03-21`, + open: 755.4, + high: 760.5, + low: 749.5, + close: 759.1, + volume: 2743620 + }), + new StockGoogleItem( + { + date: `2016-03-22`, + open: 726.3, + high: 736.1, + low: 713.6, + close: 718.8, + volume: 5939199 + }), + new StockGoogleItem( + { + date: `2016-03-25`, + open: 716.1, + high: 723.9, + low: 715.6, + close: 723.1, + volume: 1955567 + }), + new StockGoogleItem( + { + date: `2016-03-26`, + open: 725.4, + high: 725.8, + low: 703, + close: 708.1, + volume: 2727185 + }), + new StockGoogleItem( + { + date: `2016-03-27`, + open: 707.3, + high: 709, + low: 692.4, + close: 705.8, + volume: 3086722 + }), + new StockGoogleItem( + { + date: `2016-03-28`, + open: 708.3, + high: 714.2, + low: 689.5, + close: 691, + volume: 2851108 + }), + new StockGoogleItem( + { + date: `2016-03-29`, + open: 690.7, + high: 697.6, + low: 689, + close: 693, + volume: 2484273 + }), + new StockGoogleItem( + { + date: `2016-04-02`, + open: 697.6, + high: 700.6, + low: 691, + close: 698.2, + volume: 1644126 + }), + new StockGoogleItem( + { + date: `2016-04-03`, + open: 696.9, + high: 697.8, + low: 692, + close: 692.4, + volume: 1530993 + }), + new StockGoogleItem( + { + date: `2016-04-04`, + open: 690.5, + high: 699.8, + low: 689, + close: 695.7, + volume: 1688569 + }), + new StockGoogleItem( + { + date: `2016-04-05`, + open: 697.7, + high: 702.3, + low: 695.7, + close: 701.4, + volume: 1677405 + }), + new StockGoogleItem( + { + date: `2016-04-06`, + open: 698.4, + high: 711.9, + low: 698.1, + close: 711.1, + volume: 1826146 + }), + new StockGoogleItem( + { + date: `2016-04-09`, + open: 712, + high: 718.7, + low: 710, + close: 712.9, + volume: 1508423 + }), + new StockGoogleItem( + { + date: `2016-04-10`, + open: 716.8, + high: 723.5, + low: 715.7, + close: 723.2, + volume: 1563105 + }), + new StockGoogleItem( + { + date: `2016-04-11`, + open: 723.4, + high: 724.5, + low: 712.8, + close: 715.3, + volume: 1686823 + }), + new StockGoogleItem( + { + date: `2016-04-12`, + open: 717.1, + high: 719.3, + low: 709, + close: 713.3, + volume: 1360732 + }), + new StockGoogleItem( + { + date: `2016-04-13`, + open: 711.9, + high: 716.7, + low: 709.3, + close: 710.8, + volume: 1307338 + }), + new StockGoogleItem( + { + date: `2016-04-16`, + open: 709.1, + high: 718.5, + low: 705.6, + close: 716.5, + volume: 1316177 + }), + new StockGoogleItem( + { + date: `2016-04-17`, + open: 716, + high: 721.5, + low: 704.1, + close: 706.2, + volume: 1999456 + }), + new StockGoogleItem( + { + date: `2016-04-18`, + open: 703.7, + high: 711.6, + low: 700.6, + close: 706.6, + volume: 1763394 + }), + new StockGoogleItem( + { + date: `2016-04-19`, + open: 702.4, + high: 706, + low: 696.8, + close: 700.3, + volume: 1656321 + }), + new StockGoogleItem( + { + date: `2016-04-20`, + open: 701.6, + high: 714.6, + low: 700.5, + close: 709.7, + volume: 1816027 + }), + new StockGoogleItem( + { + date: `2016-04-23`, + open: 706.5, + high: 711.5, + low: 704.2, + close: 704.2, + volume: 1320927 + }), + new StockGoogleItem( + { + date: `2016-04-24`, + open: 706.9, + high: 721, + low: 706.9, + close: 720.1, + volume: 1920411 + }), + new StockGoogleItem( + { + date: `2016-04-25`, + open: 720.8, + high: 727.5, + low: 719.7, + close: 725.3, + volume: 1629198 + }), + new StockGoogleItem( + { + date: `2016-04-26`, + open: 722.9, + high: 728.3, + low: 720.3, + close: 724.1, + volume: 1542866 + }), + new StockGoogleItem( + { + date: `2016-04-27`, + open: 724, + high: 733.9, + low: 724, + close: 732.7, + volume: 1974026 + }), + new StockGoogleItem( + { + date: `2016-04-31`, + open: 731.7, + high: 739.7, + low: 731.3, + close: 735.7, + volume: 2129545 + }), + new StockGoogleItem( + { + date: `2016-05-01`, + open: 734.5, + high: 737.2, + low: 730.7, + close: 734.1, + volume: 1253593 + }), + new StockGoogleItem( + { + date: `2016-05-02`, + open: 732.5, + high: 733, + low: 724.2, + close: 730.4, + volume: 1341807 + }), + new StockGoogleItem( + { + date: `2016-05-03`, + open: 729.3, + high: 729.5, + low: 720.6, + close: 722.3, + volume: 1226253 + }), + new StockGoogleItem( + { + date: `2016-05-06`, + open: 724.9, + high: 724.9, + low: 714.6, + close: 716.5, + volume: 1566059 + }), + new StockGoogleItem( + { + date: `2016-05-07`, + open: 719.8, + high: 722, + low: 716.5, + close: 716.6, + volume: 1336754 + }), + new StockGoogleItem( + { + date: `2016-05-08`, + open: 724, + high: 728.6, + low: 720.6, + close: 728.3, + volume: 1583701 + }), + new StockGoogleItem( + { + date: `2016-05-09`, + open: 722.9, + high: 729.5, + low: 722.3, + close: 728.6, + volume: 988914 + }), + new StockGoogleItem( + { + date: `2016-05-10`, + open: 719.5, + high: 725.9, + low: 716.4, + close: 719.4, + volume: 1216443 + }), + new StockGoogleItem( + { + date: `2016-05-13`, + open: 716.5, + high: 725.4, + low: 716.5, + close: 718.4, + volume: 1258930 + }), + new StockGoogleItem( + { + date: `2016-05-14`, + open: 716.5, + high: 722.5, + low: 713.1, + close: 718.3, + volume: 1306065 + }), + new StockGoogleItem( + { + date: `2016-05-15`, + open: 719, + high: 723, + low: 717.3, + close: 718.9, + volume: 1214517 + }), + new StockGoogleItem( + { + date: `2016-05-16`, + open: 714.9, + high: 716.6, + low: 703.3, + close: 710.4, + volume: 1982471 + }), + new StockGoogleItem( + { + date: `2016-05-17`, + open: 708.6, + high: 708.8, + low: 688.5, + close: 691.7, + volume: 3402357 + }), + new StockGoogleItem( + { + date: `2016-05-20`, + open: 698.8, + high: 702.5, + low: 693.4, + close: 693.7, + volume: 2082538 + }), + new StockGoogleItem( + { + date: `2016-05-21`, + open: 698.4, + high: 702.8, + low: 692, + close: 695.9, + volume: 1465634 + }), + new StockGoogleItem( + { + date: `2016-05-22`, + open: 699.1, + high: 700.9, + low: 693.1, + close: 697.5, + volume: 1184318 + }), + new StockGoogleItem( + { + date: `2016-05-23`, + open: 697.5, + high: 702, + low: 687, + close: 701.9, + volume: 2171415 + }), + new StockGoogleItem( + { + date: `2016-05-24`, + open: 675.2, + high: 689.4, + low: 673.5, + close: 675.2, + volume: 4449022 + }), + new StockGoogleItem( + { + date: `2016-05-27`, + open: 671, + high: 672.3, + low: 663.3, + close: 668.3, + volume: 2641085 + }), + new StockGoogleItem( + { + date: `2016-05-28`, + open: 679, + high: 680.3, + low: 673, + close: 680, + volume: 2173762 + }), + new StockGoogleItem( + { + date: `2016-05-29`, + open: 683, + high: 687.4, + low: 681.4, + close: 684.1, + volume: 1932561 + }), + new StockGoogleItem( + { + date: `2016-05-30`, + open: 685.5, + high: 692.3, + low: 683.6, + close: 692.1, + volume: 1597714 + }), + new StockGoogleItem( + { + date: `2016-06-01`, + open: 692.2, + high: 700.6, + low: 692.1, + close: 699.2, + volume: 1344710 + }), + new StockGoogleItem( + { + date: `2016-06-05`, + open: 696.1, + high: 696.9, + low: 688.9, + close: 694.5, + volume: 1462616 + }), + new StockGoogleItem( + { + date: `2016-06-06`, + open: 690, + high: 701.7, + low: 689.1, + close: 697.8, + volume: 1411925 + }), + new StockGoogleItem( + { + date: `2016-06-07`, + open: 698.1, + high: 698.2, + low: 688.2, + close: 695.4, + volume: 1304200 + }), + new StockGoogleItem( + { + date: `2016-06-08`, + open: 699.5, + high: 705.7, + low: 696.4, + close: 705.6, + volume: 1575166 + }), + new StockGoogleItem( + { + date: `2016-06-11`, + open: 708, + high: 716.5, + low: 707.2, + close: 715.1, + volume: 1111762 + }), + new StockGoogleItem( + { + date: `2016-06-12`, + open: 719.1, + high: 722.9, + low: 715.9, + close: 720.6, + volume: 1336921 + }), + new StockGoogleItem( + { + date: `2016-06-13`, + open: 723.6, + high: 724, + low: 716.9, + close: 717, + volume: 935876 + }), + new StockGoogleItem( + { + date: `2016-06-14`, + open: 721.6, + high: 722.2, + low: 718, + close: 721, + volume: 950193 + }), + new StockGoogleItem( + { + date: `2016-06-15`, + open: 725.7, + high: 725.7, + low: 719.1, + close: 719.9, + volume: 1279339 + }), + new StockGoogleItem( + { + date: `2016-06-18`, + open: 722.7, + high: 736.1, + low: 721.2, + close: 733.8, + volume: 1295476 + }), + new StockGoogleItem( + { + date: `2016-06-19`, + open: 729.9, + high: 737, + low: 729, + close: 737, + volume: 1227486 + }), + new StockGoogleItem( + { + date: `2016-06-20`, + open: 737.3, + high: 742.1, + low: 737.1, + close: 741.2, + volume: 1289671 + }), + new StockGoogleItem( + { + date: `2016-06-21`, + open: 740.4, + high: 741.7, + low: 735.8, + close: 738.6, + volume: 1026306 + }), + new StockGoogleItem( + { + date: `2016-06-22`, + open: 741.9, + high: 743.2, + low: 736.6, + close: 742.7, + volume: 1259823 + }), + new StockGoogleItem( + { + date: `2016-06-25`, + open: 740.7, + high: 742.6, + low: 737.5, + close: 739.8, + volume: 1032432 + }), + new StockGoogleItem( + { + date: `2016-06-26`, + open: 739, + high: 741.7, + low: 734.3, + close: 738.4, + volume: 1186738 + }), + new StockGoogleItem( + { + date: `2016-06-27`, + open: 738.3, + high: 744.5, + low: 737, + close: 741.8, + volume: 1512517 + }), + new StockGoogleItem( + { + date: `2016-06-28`, + open: 747, + high: 748.6, + low: 739.3, + close: 745.9, + volume: 3530169 + }), + new StockGoogleItem( + { + date: `2016-06-29`, + open: 772.7, + high: 778.5, + low: 766.8, + close: 768.8, + volume: 3841482 + }), + new StockGoogleItem( + { + date: `2016-07-01`, + open: 761.1, + high: 780.4, + low: 761.1, + close: 772.9, + volume: 2700470 + }), + new StockGoogleItem( + { + date: `2016-07-02`, + open: 768.7, + high: 775.8, + low: 767.9, + close: 771.1, + volume: 1784525 + }), + new StockGoogleItem( + { + date: `2016-07-03`, + open: 767.2, + high: 773.2, + low: 766.8, + close: 773.2, + volume: 1287421 + }), + new StockGoogleItem( + { + date: `2016-07-04`, + open: 772.2, + high: 774.1, + low: 768.8, + close: 771.6, + volume: 1140254 + }), + new StockGoogleItem( + { + date: `2016-07-05`, + open: 773.8, + high: 783, + low: 772.3, + close: 782.2, + volume: 1801205 + }), + new StockGoogleItem( + { + date: `2016-07-08`, + open: 782, + high: 782.6, + low: 778.1, + close: 781.8, + volume: 1107857 + }), + new StockGoogleItem( + { + date: `2016-07-09`, + open: 781.1, + high: 788.9, + low: 780.6, + close: 784.3, + volume: 1318894 + }), + new StockGoogleItem( + { + date: `2016-07-10`, + open: 783.8, + high: 786.8, + low: 782.8, + close: 784.7, + volume: 786363 + }), + new StockGoogleItem( + { + date: `2016-07-11`, + open: 785, + high: 789.8, + low: 783, + close: 784.9, + volume: 975113 + }), + new StockGoogleItem( + { + date: `2016-07-12`, + open: 781.5, + high: 783.4, + low: 780.4, + close: 783.2, + volume: 740498 + }), + new StockGoogleItem( + { + date: `2016-07-15`, + open: 783.8, + high: 787.5, + low: 780.1, + close: 782.4, + volume: 938186 + }), + new StockGoogleItem( + { + date: `2016-07-16`, + open: 780.3, + high: 781, + low: 773.4, + close: 777.1, + volume: 1028047 + }), + new StockGoogleItem( + { + date: `2016-07-17`, + open: 777.3, + high: 780.8, + low: 773.5, + close: 779.9, + volume: 924226 + }), + new StockGoogleItem( + { + date: `2016-07-18`, + open: 780, + high: 782.9, + low: 777, + close: 777.5, + volume: 719429 + }), + new StockGoogleItem( + { + date: `2016-07-19`, + open: 775, + high: 777.1, + low: 773.1, + close: 775.4, + volume: 861546 + }), + new StockGoogleItem( + { + date: `2016-07-22`, + open: 773.3, + high: 774.5, + low: 770, + close: 772.1, + volume: 951362 + }), + new StockGoogleItem( + { + date: `2016-07-23`, + open: 775.5, + high: 776.4, + low: 771.8, + close: 772.1, + volume: 928232 + }), + new StockGoogleItem( + { + date: `2016-07-24`, + open: 770.6, + high: 774.5, + low: 767.1, + close: 769.6, + volume: 1071999 + }), + new StockGoogleItem( + { + date: `2016-07-25`, + open: 767, + high: 771.9, + low: 763.2, + close: 769.4, + volume: 926883 + }), + new StockGoogleItem( + { + date: `2016-07-26`, + open: 769, + high: 776.1, + low: 765.9, + close: 769.5, + volume: 1166681 + }), + new StockGoogleItem( + { + date: `2016-07-29`, + open: 768.7, + high: 775, + low: 766.6, + close: 772.1, + volume: 847565 + }), + new StockGoogleItem( + { + date: `2016-07-30`, + open: 769.3, + high: 774.5, + low: 766.8, + close: 769.1, + volume: 1130029 + }), + new StockGoogleItem( + { + date: `2016-07-31`, + open: 767, + high: 769.1, + low: 765.4, + close: 767, + volume: 1248556 + }), + new StockGoogleItem( + { + date: `2016-08-01`, + open: 769.3, + high: 771, + low: 764.3, + close: 768.8, + volume: 925131 + }), + new StockGoogleItem( + { + date: `2016-08-02`, + open: 773, + high: 773.9, + low: 768.4, + close: 771.5, + volume: 1072658 + }), + new StockGoogleItem( + { + date: `2016-08-06`, + open: 773.5, + high: 782, + low: 771, + close: 780.1, + volume: 1442822 + }), + new StockGoogleItem( + { + date: `2016-08-07`, + open: 780, + high: 782.7, + low: 776.2, + close: 780.4, + volume: 894021 + }), + new StockGoogleItem( + { + date: `2016-08-08`, + open: 778.6, + high: 780.4, + low: 773.6, + close: 775.3, + volume: 1270264 + }), + new StockGoogleItem( + { + date: `2016-08-09`, + open: 770.1, + high: 773.2, + low: 759.7, + close: 759.7, + volume: 1885496 + }), + new StockGoogleItem( + { + date: `2016-08-12`, + open: 755.1, + high: 770.3, + low: 754, + close: 769, + volume: 1310986 + }), + new StockGoogleItem( + { + date: `2016-08-13`, + open: 764.5, + high: 766.2, + low: 755.8, + close: 759.7, + volume: 1395046 + }), + new StockGoogleItem( + { + date: `2016-08-14`, + open: 759.6, + high: 767.7, + low: 759.1, + close: 762.5, + volume: 1094490 + }), + new StockGoogleItem( + { + date: `2016-08-15`, + open: 762.9, + high: 773.8, + low: 760, + close: 771.8, + volume: 1346751 + }), + new StockGoogleItem( + { + date: `2016-08-16`, + open: 769.8, + high: 769.8, + low: 764.7, + close: 768.9, + volume: 2049338 + }), + new StockGoogleItem( + { + date: `2016-08-19`, + open: 772.4, + high: 774, + low: 764.4, + close: 765.7, + volume: 1172824 + }), + new StockGoogleItem( + { + date: `2016-08-20`, + open: 769, + high: 773.3, + low: 768.5, + close: 771.4, + volume: 978631 + }), + new StockGoogleItem( + { + date: `2016-08-21`, + open: 772.7, + high: 777.2, + low: 768.3, + close: 776.2, + volume: 1167810 + }), + new StockGoogleItem( + { + date: `2016-08-22`, + open: 780, + high: 789.9, + low: 778.4, + close: 787.2, + volume: 1486223 + }), + new StockGoogleItem( + { + date: `2016-08-23`, + open: 786.6, + high: 788.9, + low: 784.1, + close: 786.9, + volume: 1411937 + }), + new StockGoogleItem( + { + date: `2016-08-26`, + open: 782.7, + high: 782.7, + low: 773.1, + close: 774.2, + volume: 1533206 + }), + new StockGoogleItem( + { + date: `2016-08-27`, + open: 775.5, + high: 786, + low: 774.3, + close: 783, + volume: 1153247 + }), + new StockGoogleItem( + { + date: `2016-08-28`, + open: 777.9, + high: 781.8, + low: 775, + close: 781.6, + volume: 1109834 + }), + new StockGoogleItem( + { + date: `2016-08-29`, + open: 781.4, + high: 785.8, + low: 774.2, + close: 775, + volume: 1314746 + }), + new StockGoogleItem( + { + date: `2016-08-30`, + open: 776.3, + high: 780.9, + low: 774.1, + close: 777.3, + volume: 1585333 + }), + new StockGoogleItem( + { + date: `2016-09-03`, + open: 774.3, + high: 776.1, + low: 769.5, + close: 772.6, + volume: 1278821 + }), + new StockGoogleItem( + { + date: `2016-09-04`, + open: 776, + high: 778.7, + low: 772.9, + close: 776.4, + volume: 1201350 + }), + new StockGoogleItem( + { + date: `2016-09-05`, + open: 779.3, + high: 782.1, + low: 775.6, + close: 776.5, + volume: 1461151 + }), + new StockGoogleItem( + { + date: `2016-09-06`, + open: 779, + high: 780.5, + low: 775.5, + close: 776.9, + volume: 1070692 + }), + new StockGoogleItem( + { + date: `2016-09-07`, + open: 779.7, + high: 779.7, + low: 770.8, + close: 775.1, + volume: 933158 + }), + new StockGoogleItem( + { + date: `2016-09-10`, + open: 777.7, + high: 789.4, + low: 775.9, + close: 785.9, + volume: 1174923 + }), + new StockGoogleItem( + { + date: `2016-09-11`, + open: 786.7, + high: 792.3, + low: 780.6, + close: 783.1, + volume: 1372461 + }), + new StockGoogleItem( + { + date: `2016-09-12`, + open: 783.8, + high: 788.1, + low: 782.1, + close: 786.1, + volume: 937435 + }), + new StockGoogleItem( + { + date: `2016-09-13`, + open: 781.2, + high: 781.2, + low: 773, + close: 778.2, + volume: 1365277 + }), + new StockGoogleItem( + { + date: `2016-09-14`, + open: 781.6, + high: 784, + low: 776, + close: 778.5, + volume: 852487 + }), + new StockGoogleItem( + { + date: `2016-09-17`, + open: 779.8, + high: 785.9, + low: 777.5, + close: 780, + volume: 1092973 + }), + new StockGoogleItem( + { + date: `2016-09-18`, + open: 787.9, + high: 801.6, + low: 785.6, + close: 795.3, + volume: 2056903 + }), + new StockGoogleItem( + { + date: `2016-09-19`, + open: 798.9, + high: 804.6, + low: 797.6, + close: 801.6, + volume: 1766798 + }), + new StockGoogleItem( + { + date: `2016-09-20`, + open: 803.3, + high: 804, + low: 796, + close: 797, + volume: 1757528 + }), + new StockGoogleItem( + { + date: `2016-09-21`, + open: 795, + high: 799.5, + low: 794, + close: 799.4, + volume: 1266181 + }), + new StockGoogleItem( + { + date: `2016-09-24`, + open: 804.9, + high: 815.2, + low: 804.8, + close: 813.1, + volume: 1697514 + }), + new StockGoogleItem( + { + date: `2016-09-25`, + open: 816.7, + high: 816.7, + low: 805.1, + close: 807.7, + volume: 1576404 + }), + new StockGoogleItem( + { + date: `2016-09-26`, + open: 806.3, + high: 807, + low: 796.3, + close: 799.1, + volume: 1647733 + }), + new StockGoogleItem( + { + date: `2016-09-27`, + open: 801, + high: 803.5, + low: 791.5, + close: 795.4, + volume: 2749221 + }), + new StockGoogleItem( + { + date: `2016-09-28`, + open: 808.4, + high: 815.5, + low: 793.6, + close: 795.4, + volume: 4269902 + }), + new StockGoogleItem( + { + date: `2016-09-31`, + open: 795.5, + high: 796.9, + low: 784, + close: 784.5, + volume: 2427284 + }), + new StockGoogleItem( + { + date: `2016-10-01`, + open: 782.9, + high: 789.5, + low: 775.5, + close: 783.6, + volume: 2406356 + }), + new StockGoogleItem( + { + date: `2016-10-02`, + open: 778.2, + high: 781.6, + low: 763.5, + close: 768.7, + volume: 1918414 + }), + new StockGoogleItem( + { + date: `2016-10-03`, + open: 767.3, + high: 770, + low: 759, + close: 762.1, + volume: 1943175 + }), + new StockGoogleItem( + { + date: `2016-10-04`, + open: 750.7, + high: 770.4, + low: 750.6, + close: 762, + volume: 2134812 + }), + new StockGoogleItem( + { + date: `2016-10-07`, + open: 774.5, + high: 785.2, + low: 772.5, + close: 782.5, + volume: 1585070 + }), + new StockGoogleItem( + { + date: `2016-10-08`, + open: 783.4, + high: 795.6, + low: 780.2, + close: 790.5, + volume: 1366873 + }), + new StockGoogleItem( + { + date: `2016-10-09`, + open: 779.9, + high: 791.2, + low: 771.7, + close: 785.3, + volume: 2607121 + }), + new StockGoogleItem( + { + date: `2016-10-10`, + open: 791.2, + high: 791.2, + low: 752.2, + close: 762.6, + volume: 4745183 + }), + new StockGoogleItem( + { + date: `2016-10-11`, + open: 756.5, + high: 760.8, + low: 750.4, + close: 754, + volume: 2431815 + }), + new StockGoogleItem( + { + date: `2016-10-14`, + open: 755.6, + high: 757.9, + low: 727.5, + close: 736.1, + volume: 3654385 + }), + new StockGoogleItem( + { + date: `2016-10-15`, + open: 747, + high: 764.4, + low: 747, + close: 758.5, + volume: 2384001 + }), + new StockGoogleItem( + { + date: `2016-10-16`, + open: 755.2, + high: 766.4, + low: 750.5, + close: 764.5, + volume: 1472594 + }), + new StockGoogleItem( + { + date: `2016-10-17`, + open: 766.9, + high: 772.7, + low: 764.2, + close: 771.2, + volume: 1286961 + }), + new StockGoogleItem( + { + date: `2016-10-18`, + open: 771.4, + high: 775, + low: 760, + close: 760.5, + volume: 1547145 + }), + new StockGoogleItem( + { + date: `2016-10-21`, + open: 762.6, + high: 769.7, + low: 760.6, + close: 769.2, + volume: 1330639 + }), + new StockGoogleItem( + { + date: `2016-10-22`, + open: 772.6, + high: 777, + low: 767, + close: 768.3, + volume: 1593108 + }), + new StockGoogleItem( + { + date: `2016-10-23`, + open: 767.7, + high: 768.3, + low: 755.3, + close: 761, + volume: 1478417 + }), + new StockGoogleItem( + { + date: `2016-10-25`, + open: 764.3, + high: 765, + low: 760.5, + close: 761.7, + volume: 587421 + }), + new StockGoogleItem( + { + date: `2016-10-28`, + open: 760, + high: 779.5, + low: 759.8, + close: 768.2, + volume: 2188151 + }), + new StockGoogleItem( + { + date: `2016-10-29`, + open: 771.5, + high: 778.5, + low: 768.2, + close: 770.8, + volume: 1616618 + }), + new StockGoogleItem( + { + date: `2016-10-30`, + open: 770.1, + high: 773, + low: 754.8, + close: 758, + volume: 2392890 + }), + new StockGoogleItem( + { + date: `2016-11-01`, + open: 757.4, + high: 759.9, + low: 737, + close: 747.9, + volume: 3017947 + }), + new StockGoogleItem( + { + date: `2016-11-02`, + open: 744.6, + high: 754, + low: 743.1, + close: 750.5, + volume: 1452484 + }), + new StockGoogleItem( + { + date: `2016-11-05`, + open: 757.7, + high: 763.9, + low: 752.9, + close: 762.5, + volume: 1394223 + }), + new StockGoogleItem( + { + date: `2016-11-06`, + open: 764.7, + high: 768.8, + low: 757.3, + close: 759.1, + volume: 1690689 + }), + new StockGoogleItem( + { + date: `2016-11-07`, + open: 761, + high: 771.4, + low: 755.8, + close: 771.2, + volume: 1760966 + }), + new StockGoogleItem( + { + date: `2016-11-08`, + open: 772.5, + high: 778.2, + low: 767.2, + close: 776.4, + volume: 1488059 + }), + new StockGoogleItem( + { + date: `2016-11-09`, + open: 780, + high: 789.4, + low: 779, + close: 789.3, + volume: 1821914 + }), + new StockGoogleItem( + { + date: `2016-11-12`, + open: 785, + high: 791.3, + low: 784.4, + close: 789.3, + volume: 2104117 + }), + new StockGoogleItem( + { + date: `2016-11-13`, + open: 793.9, + high: 804.4, + low: 793.3, + close: 796.1, + volume: 2145209 + }), + new StockGoogleItem( + { + date: `2016-11-14`, + open: 797.4, + high: 804, + low: 794, + close: 797.1, + volume: 1704150 + }), + new StockGoogleItem( + { + date: `2016-11-15`, + open: 797.3, + high: 803, + low: 792.9, + close: 797.9, + volume: 1626499 + }), + new StockGoogleItem( + { + date: `2016-11-16`, + open: 800.4, + high: 800.9, + low: 790.3, + close: 790.8, + volume: 2443796 + }), + new StockGoogleItem( + { + date: `2016-11-19`, + open: 790.2, + high: 797.7, + low: 786.3, + close: 794.2, + volume: 1232087 + }), + new StockGoogleItem( + { + date: `2016-11-20`, + open: 796.8, + high: 798.6, + low: 793.3, + close: 796.4, + volume: 951014 + }), + new StockGoogleItem( + { + date: `2016-11-21`, + open: 795.8, + high: 796.7, + low: 787.1, + close: 794.6, + volume: 1211346 + }), + new StockGoogleItem( + { + date: `2016-11-22`, + open: 792.4, + high: 793.3, + low: 788.6, + close: 791.3, + volume: 972169 + }), + new StockGoogleItem( + { + date: `2016-11-23`, + open: 790.9, + high: 792.7, + low: 787.3, + close: 789.9, + volume: 623944 + }), + new StockGoogleItem( + { + date: `2016-11-27`, + open: 790.7, + high: 797.9, + low: 787.7, + close: 791.5, + volume: 789321 + }), + new StockGoogleItem( + { + date: `2016-11-28`, + open: 793.7, + high: 794.2, + low: 783.2, + close: 785, + volume: 1153824 + }), + new StockGoogleItem( + { + date: `2016-11-29`, + open: 783.3, + high: 785.9, + low: 778.9, + close: 782.8, + volume: 744272 + }), + new StockGoogleItem( + { + date: `2016-11-30`, + open: 782.8, + high: 782.8, + low: 770.4, + close: 771.8, + volume: 1769950 + }), + new StockGoogleItem( + { + date: `2017-00-03`, + open: 778.8, + high: 789.6, + low: 775.8, + close: 786.1, + volume: 1657268 + }), + new StockGoogleItem( + { + date: `2017-00-04`, + open: 788.4, + high: 791.3, + low: 783.2, + close: 786.9, + volume: 1072958 + }), + new StockGoogleItem( + { + date: `2017-00-05`, + open: 786.1, + high: 794.5, + low: 785, + close: 794, + volume: 1335167 + }), + new StockGoogleItem( + { + date: `2017-00-06`, + open: 795.3, + high: 807.9, + low: 792.2, + close: 806.1, + volume: 1640170 + }), + new StockGoogleItem( + { + date: `2017-00-09`, + open: 806.4, + high: 810, + low: 802.8, + close: 806.6, + volume: 1274645 + }), + new StockGoogleItem( + { + date: `2017-00-10`, + open: 807.9, + high: 809.1, + low: 803.5, + close: 804.8, + volume: 1176780 + }), + new StockGoogleItem( + { + date: `2017-00-11`, + open: 805, + high: 808.1, + low: 801.4, + close: 807.9, + volume: 1065936 + }), + new StockGoogleItem( + { + date: `2017-00-12`, + open: 807.1, + high: 807.4, + low: 799.2, + close: 806.4, + volume: 1353057 + }), + new StockGoogleItem( + { + date: `2017-00-13`, + open: 807.5, + high: 811.2, + low: 806.7, + close: 807.9, + volume: 1099215 + }), + new StockGoogleItem( + { + date: `2017-00-17`, + open: 807.1, + high: 807.1, + low: 800.4, + close: 804.6, + volume: 1362115 + }), + new StockGoogleItem( + { + date: `2017-00-18`, + open: 805.8, + high: 806.2, + low: 801, + close: 806.1, + volume: 1294407 + }), + new StockGoogleItem( + { + date: `2017-00-19`, + open: 805.1, + high: 809.5, + low: 801.8, + close: 802.2, + volume: 919325 + }), + new StockGoogleItem( + { + date: `2017-00-20`, + open: 806.9, + high: 806.9, + low: 801.7, + close: 805, + volume: 1670045 + }), + new StockGoogleItem( + { + date: `2017-00-23`, + open: 807.3, + high: 820.9, + low: 803.7, + close: 819.3, + volume: 1963628 + }), + new StockGoogleItem( + { + date: `2017-00-24`, + open: 822.3, + high: 825.9, + low: 817.8, + close: 823.9, + volume: 1474010 + }), + new StockGoogleItem( + { + date: `2017-00-25`, + open: 829.6, + high: 835.8, + low: 825.1, + close: 835.7, + volume: 1627304 + }), + new StockGoogleItem( + { + date: `2017-00-26`, + open: 837.8, + high: 838, + low: 827, + close: 832.1, + volume: 2973891 + }), + new StockGoogleItem( + { + date: `2017-00-27`, + open: 834.7, + high: 842, + low: 820.4, + close: 823.3, + volume: 2965771 + }), + new StockGoogleItem( + { + date: `2017-00-30`, + open: 814.7, + high: 815.8, + low: 799.8, + close: 802.3, + volume: 3246573 + }), + new StockGoogleItem( + { + date: `2017-00-31`, + open: 796.9, + high: 801.3, + low: 790.5, + close: 796.8, + volume: 2160556 + }), + new StockGoogleItem( + { + date: `2017-01-01`, + open: 799.7, + high: 801.2, + low: 791.2, + close: 795.7, + volume: 2029744 + }), + new StockGoogleItem( + { + date: `2017-01-02`, + open: 793.8, + high: 802.7, + low: 792, + close: 798.5, + volume: 1532138 + }), + new StockGoogleItem( + { + date: `2017-01-03`, + open: 803, + high: 806, + low: 800.4, + close: 801.5, + volume: 1463448 + }), + new StockGoogleItem( + { + date: `2017-01-06`, + open: 799.7, + high: 801.7, + low: 795.3, + close: 801.3, + volume: 1184483 + }), + new StockGoogleItem( + { + date: `2017-01-07`, + open: 804, + high: 810.5, + low: 801.8, + close: 807, + volume: 1241221 + }), + new StockGoogleItem( + { + date: `2017-01-08`, + open: 807, + high: 811.8, + low: 803.2, + close: 808.4, + volume: 1155990 + }), + new StockGoogleItem( + { + date: `2017-01-09`, + open: 809.5, + high: 810.7, + low: 804.5, + close: 809.6, + volume: 990391 + }), + new StockGoogleItem( + { + date: `2017-01-10`, + open: 811.7, + high: 815.3, + low: 809.8, + close: 813.7, + volume: 1134976 + }), + new StockGoogleItem( + { + date: `2017-01-13`, + open: 816, + high: 821, + low: 815.5, + close: 819.2, + volume: 1213324 + }), + new StockGoogleItem( + { + date: `2017-01-14`, + open: 819, + high: 823, + low: 816, + close: 820.5, + volume: 1054732 + }), + new StockGoogleItem( + { + date: `2017-01-15`, + open: 819.4, + high: 823, + low: 818.5, + close: 819, + volume: 1313617 + }), + new StockGoogleItem( + { + date: `2017-01-16`, + open: 819.9, + high: 824.4, + low: 819, + close: 824.2, + volume: 1287626 + }), + new StockGoogleItem( + { + date: `2017-01-17`, + open: 823, + high: 828.1, + low: 821.7, + close: 828.1, + volume: 1611039 + }), + new StockGoogleItem( + { + date: `2017-01-21`, + open: 828.7, + high: 833.5, + low: 828.4, + close: 831.7, + volume: 1262337 + }), + new StockGoogleItem( + { + date: `2017-01-22`, + open: 828.7, + high: 833.3, + low: 828.6, + close: 830.8, + volume: 987248 + }), + new StockGoogleItem( + { + date: `2017-01-23`, + open: 830.1, + high: 832.5, + low: 822.9, + close: 831.3, + volume: 1472771 + }), + new StockGoogleItem( + { + date: `2017-01-24`, + open: 827.7, + high: 829, + low: 824.2, + close: 828.6, + volume: 1392202 + }), + new StockGoogleItem( + { + date: `2017-01-27`, + open: 824.5, + high: 830.5, + low: 824, + close: 829.3, + volume: 1101466 + }), + new StockGoogleItem( + { + date: `2017-01-28`, + open: 825.6, + high: 828.5, + low: 820.2, + close: 823.2, + volume: 2260769 + }), + new StockGoogleItem( + { + date: `2017-02-01`, + open: 828.9, + high: 836.3, + low: 827.3, + close: 835.2, + volume: 1496540 + }), + new StockGoogleItem( + { + date: `2017-02-02`, + open: 833.9, + high: 834.5, + low: 829.6, + close: 830.6, + volume: 942476 + }), + new StockGoogleItem( + { + date: `2017-02-03`, + open: 830.6, + high: 831.4, + low: 825.8, + close: 829.1, + volume: 896378 + }), + new StockGoogleItem( + { + date: `2017-02-06`, + open: 827, + high: 828.9, + low: 822.4, + close: 827.8, + volume: 1109037 + }), + new StockGoogleItem( + { + date: `2017-02-07`, + open: 827.4, + high: 833.4, + low: 826.5, + close: 831.9, + volume: 1037630 + }), + new StockGoogleItem( + { + date: `2017-02-08`, + open: 833.5, + high: 838.1, + low: 831.8, + close: 835.4, + volume: 989773 + }), + new StockGoogleItem( + { + date: `2017-02-09`, + open: 836, + high: 842, + low: 834.2, + close: 838.7, + volume: 1261517 + }), + new StockGoogleItem( + { + date: `2017-02-10`, + open: 843.3, + high: 844.9, + low: 839.5, + close: 843.3, + volume: 1704024 + }), + new StockGoogleItem( + { + date: `2017-02-13`, + open: 844, + high: 848.7, + low: 843.3, + close: 845.5, + volume: 1223647 + }), + new StockGoogleItem( + { + date: `2017-02-14`, + open: 843.6, + high: 847.2, + low: 840.8, + close: 845.6, + volume: 780198 + }), + new StockGoogleItem( + { + date: `2017-02-15`, + open: 847.6, + high: 848.6, + low: 840.8, + close: 847.2, + volume: 1381474 + }), + new StockGoogleItem( + { + date: `2017-02-16`, + open: 849, + high: 850.9, + low: 846.1, + close: 848.8, + volume: 977560 + }), + new StockGoogleItem( + { + date: `2017-02-17`, + open: 851.6, + high: 853.4, + low: 847.1, + close: 852.1, + volume: 1716471 + }), + new StockGoogleItem( + { + date: `2017-02-20`, + open: 850, + high: 850.2, + low: 845.1, + close: 848.4, + volume: 1231521 + }), + new StockGoogleItem( + { + date: `2017-02-21`, + open: 851.4, + high: 853.5, + low: 829, + close: 830.5, + volume: 2463484 + }), + new StockGoogleItem( + { + date: `2017-02-22`, + open: 831.9, + high: 835.5, + low: 827.2, + close: 829.6, + volume: 1401465 + }), + new StockGoogleItem( + { + date: `2017-02-23`, + open: 821, + high: 822.6, + low: 812.3, + close: 817.6, + volume: 3487056 + }), + new StockGoogleItem( + { + date: `2017-02-24`, + open: 820.1, + high: 821.9, + low: 808.9, + close: 814.4, + volume: 1981006 + }), + new StockGoogleItem( + { + date: `2017-02-27`, + open: 807, + high: 821.6, + low: 803.4, + close: 819.5, + volume: 1894990 + }), + new StockGoogleItem( + { + date: `2017-02-28`, + open: 820.4, + high: 826, + low: 814, + close: 820.9, + volume: 1620542 + }), + new StockGoogleItem( + { + date: `2017-02-29`, + open: 825, + high: 832.8, + low: 822.4, + close: 831.4, + volume: 1786321 + }), + new StockGoogleItem( + { + date: `2017-02-30`, + open: 833.5, + high: 833.7, + low: 829, + close: 831.5, + volume: 1055339 + }), + new StockGoogleItem( + { + date: `2017-02-31`, + open: 829, + high: 831.6, + low: 827.4, + close: 829.6, + volume: 1401893 + }), + new StockGoogleItem( + { + date: `2017-03-03`, + open: 829.2, + high: 840.9, + low: 829.2, + close: 838.5, + volume: 1671503 + }), + new StockGoogleItem( + { + date: `2017-03-04`, + open: 831.4, + high: 835.2, + low: 829, + close: 834.6, + volume: 1045363 + }), + new StockGoogleItem( + { + date: `2017-03-05`, + open: 835.5, + high: 842.5, + low: 830.7, + close: 831.4, + volume: 1555328 + }), + new StockGoogleItem( + { + date: `2017-03-06`, + open: 832.4, + high: 836.4, + low: 826.5, + close: 827.9, + volume: 1254433 + }), + new StockGoogleItem( + { + date: `2017-03-07`, + open: 828, + high: 828.5, + low: 820.5, + close: 824.7, + volume: 1057253 + }), + new StockGoogleItem( + { + date: `2017-03-10`, + open: 825.4, + high: 829.4, + low: 823.8, + close: 824.7, + volume: 978905 + }), + new StockGoogleItem( + { + date: `2017-03-11`, + open: 824.7, + high: 827.4, + low: 817, + close: 823.4, + volume: 1079732 + }), + new StockGoogleItem( + { + date: `2017-03-12`, + open: 821.9, + high: 826.7, + low: 821, + close: 824.3, + volume: 900480 + }), + new StockGoogleItem( + { + date: `2017-03-13`, + open: 822.1, + high: 826.4, + low: 821.4, + close: 823.6, + volume: 1122362 + }), + new StockGoogleItem( + { + date: `2017-03-17`, + open: 825, + high: 837.8, + low: 824.5, + close: 837.2, + volume: 895015 + }), + new StockGoogleItem( + { + date: `2017-03-18`, + open: 834.2, + high: 838.9, + low: 832.7, + close: 836.8, + volume: 836722 + }), + new StockGoogleItem( + { + date: `2017-03-19`, + open: 839.8, + high: 842.2, + low: 836.3, + close: 838.2, + volume: 954330 + }), + new StockGoogleItem( + { + date: `2017-03-20`, + open: 841.4, + high: 845.2, + low: 839.3, + close: 841.6, + volume: 959031 + }), + new StockGoogleItem( + { + date: `2017-03-21`, + open: 842.9, + high: 843.9, + low: 840.6, + close: 843.2, + volume: 1323583 + }), + new StockGoogleItem( + { + date: `2017-03-24`, + open: 851.2, + high: 863.5, + low: 849.9, + close: 862.8, + volume: 1372541 + }), + new StockGoogleItem( + { + date: `2017-03-25`, + open: 865, + high: 875, + low: 862.8, + close: 872.3, + volume: 1671972 + }), + new StockGoogleItem( + { + date: `2017-03-26`, + open: 874.2, + high: 876, + low: 867.8, + close: 871.7, + volume: 1237167 + }), + new StockGoogleItem( + { + date: `2017-03-27`, + open: 873.6, + high: 875.4, + low: 870.4, + close: 874.3, + volume: 2026816 + }), + new StockGoogleItem( + { + date: `2017-03-28`, + open: 910.7, + high: 916.9, + low: 905.8, + close: 906, + volume: 3276255 + }), + new StockGoogleItem( + { + date: `2017-04-01`, + open: 901.9, + high: 915.7, + low: 901.5, + close: 912.6, + volume: 2115993 + }), + new StockGoogleItem( + { + date: `2017-04-02`, + open: 909.6, + high: 920.8, + low: 909.5, + close: 916.4, + volume: 1587219 + }), + new StockGoogleItem( + { + date: `2017-04-03`, + open: 914.9, + high: 928.1, + low: 912.5, + close: 927, + volume: 1499532 + }), + new StockGoogleItem( + { + date: `2017-04-04`, + open: 926.1, + high: 935.9, + low: 924.6, + close: 931.7, + volume: 1422144 + }), + new StockGoogleItem( + { + date: `2017-04-05`, + open: 933.5, + high: 934.9, + low: 925.2, + close: 927.1, + volume: 1911275 + }), + new StockGoogleItem( + { + date: `2017-04-08`, + open: 926.1, + high: 936.9, + low: 925.3, + close: 934.3, + volume: 1329825 + }), + new StockGoogleItem( + { + date: `2017-04-09`, + open: 937, + high: 937.5, + low: 929.5, + close: 932.2, + volume: 1581809 + }), + new StockGoogleItem( + { + date: `2017-04-10`, + open: 932, + high: 932, + low: 925.2, + close: 928.8, + volume: 1173925 + }), + new StockGoogleItem( + { + date: `2017-04-11`, + open: 925.3, + high: 932.5, + low: 923, + close: 930.6, + volume: 835386 + }), + new StockGoogleItem( + { + date: `2017-04-12`, + open: 931.5, + high: 933.4, + low: 927.9, + close: 932.2, + volume: 1050601 + }), + new StockGoogleItem( + { + date: `2017-04-15`, + open: 933, + high: 938.3, + low: 929.3, + close: 937.1, + volume: 1108496 + }), + new StockGoogleItem( + { + date: `2017-04-16`, + open: 940, + high: 943.1, + low: 937.6, + close: 943, + volume: 969479 + }), + new StockGoogleItem( + { + date: `2017-04-17`, + open: 935.7, + high: 939.3, + low: 918.1, + close: 919.6, + volume: 2362072 + }), + new StockGoogleItem( + { + date: `2017-04-18`, + open: 921, + high: 933.2, + low: 918.8, + close: 930.2, + volume: 1596897 + }), + new StockGoogleItem( + { + date: `2017-04-19`, + open: 931.5, + high: 937.8, + low: 931, + close: 934, + volume: 1393024 + }), + new StockGoogleItem( + { + date: `2017-04-22`, + open: 935, + high: 941.9, + low: 935, + close: 941.9, + volume: 1120385 + }), + new StockGoogleItem( + { + date: `2017-04-23`, + open: 947.9, + high: 951.5, + low: 942.6, + close: 948.8, + volume: 1270817 + }), + new StockGoogleItem( + { + date: `2017-04-24`, + open: 953, + high: 955.1, + low: 949.5, + close: 955, + volume: 1034199 + }), + new StockGoogleItem( + { + date: `2017-04-25`, + open: 957.3, + high: 972.6, + low: 955.5, + close: 969.5, + volume: 1660474 + }), + new StockGoogleItem( + { + date: `2017-04-26`, + open: 969.7, + high: 975, + low: 965, + close: 971.5, + volume: 1252010 + }), + new StockGoogleItem( + { + date: `2017-04-30`, + open: 970.3, + high: 976.2, + low: 969.5, + close: 975.9, + volume: 1466654 + }), + new StockGoogleItem( + { + date: `2017-04-31`, + open: 975, + high: 979.3, + low: 960.2, + close: 964.9, + volume: 2448067 + }), + new StockGoogleItem( + { + date: `2017-05-01`, + open: 969, + high: 971.5, + low: 960, + close: 967, + volume: 1410458 + }), + new StockGoogleItem( + { + date: `2017-05-02`, + open: 969.5, + high: 975.9, + low: 966, + close: 975.6, + volume: 1750955 + }), + new StockGoogleItem( + { + date: `2017-05-05`, + open: 976.5, + high: 986.9, + low: 975.1, + close: 983.7, + volume: 1252106 + }), + new StockGoogleItem( + { + date: `2017-05-06`, + open: 983.2, + high: 988.3, + low: 975.1, + close: 976.6, + volume: 1814624 + }), + new StockGoogleItem( + { + date: `2017-05-07`, + open: 979.6, + high: 984.1, + low: 975.8, + close: 981.1, + volume: 1453874 + }), + new StockGoogleItem( + { + date: `2017-05-08`, + open: 982.4, + high: 984.6, + low: 977.2, + close: 983.4, + volume: 1481916 + }), + new StockGoogleItem( + { + date: `2017-05-09`, + open: 984.5, + high: 984.5, + low: 935.6, + close: 949.8, + volume: 3309389 + }), + new StockGoogleItem( + { + date: `2017-05-12`, + open: 939.6, + high: 949.4, + low: 915.2, + close: 942.9, + volume: 3763529 + }), + new StockGoogleItem( + { + date: `2017-05-13`, + open: 951.9, + high: 960, + low: 944.1, + close: 953.4, + volume: 2013337 + }), + new StockGoogleItem( + { + date: `2017-05-14`, + open: 959.9, + high: 961.1, + low: 942.3, + close: 950.8, + volume: 1489715 + }), + new StockGoogleItem( + { + date: `2017-05-15`, + open: 934, + high: 943.3, + low: 924.4, + close: 942.3, + volume: 2133050 + }), + new StockGoogleItem( + { + date: `2017-05-16`, + open: 940, + high: 942, + low: 931.6, + close: 939.8, + volume: 3094711 + }), + new StockGoogleItem( + { + date: `2017-05-19`, + open: 950, + high: 960, + low: 949, + close: 957.4, + volume: 1533336 + }), + new StockGoogleItem( + { + date: `2017-05-20`, + open: 957.5, + high: 961.6, + low: 950, + close: 950.6, + volume: 1125990 + }), + new StockGoogleItem( + { + date: `2017-05-21`, + open: 953.6, + high: 960.1, + low: 950.8, + close: 959.5, + volume: 1202233 + }), + new StockGoogleItem( + { + date: `2017-05-22`, + open: 958.7, + high: 960.7, + low: 954.5, + close: 957.1, + volume: 941958 + }), + new StockGoogleItem( + { + date: `2017-05-23`, + open: 956.8, + high: 966, + low: 954.2, + close: 965.6, + volume: 1527856 + }), + new StockGoogleItem( + { + date: `2017-05-26`, + open: 969.9, + high: 973.3, + low: 950.8, + close: 952.3, + volume: 1598355 + }), + new StockGoogleItem( + { + date: `2017-05-27`, + open: 942.5, + high: 948.3, + low: 926.9, + close: 927.3, + volume: 2579930 + }), + new StockGoogleItem( + { + date: `2017-05-28`, + open: 929, + high: 942.8, + low: 916, + close: 940.5, + volume: 2721406 + }), + new StockGoogleItem( + { + date: `2017-05-29`, + open: 929.9, + high: 931.3, + low: 910.6, + close: 917.8, + volume: 3299176 + }), + new StockGoogleItem( + { + date: `2017-05-30`, + open: 926, + high: 926, + low: 908.3, + close: 908.7, + volume: 2090226 + }), + new StockGoogleItem( + { + date: `2017-06-03`, + open: 912.2, + high: 913.9, + low: 894.8, + close: 898.7, + volume: 1710373 + }), + new StockGoogleItem( + { + date: `2017-06-05`, + open: 901.8, + high: 914.5, + low: 898.5, + close: 911.7, + volume: 1813884 + }), + new StockGoogleItem( + { + date: `2017-06-06`, + open: 904.1, + high: 914.9, + low: 899.7, + close: 906.7, + volume: 1424503 + }), + new StockGoogleItem( + { + date: `2017-06-07`, + open: 908.9, + high: 921.5, + low: 908.9, + close: 918.6, + volume: 1637785 + }), + new StockGoogleItem( + { + date: `2017-06-10`, + open: 921.8, + high: 930.4, + low: 919.6, + close: 928.8, + volume: 1192825 + }), + new StockGoogleItem( + { + date: `2017-06-11`, + open: 929.5, + high: 931.4, + low: 922, + close: 930.1, + volume: 1113235 + }), + new StockGoogleItem( + { + date: `2017-06-12`, + open: 938.7, + high: 946.3, + low: 934.5, + close: 943.8, + volume: 1532144 + }), + new StockGoogleItem( + { + date: `2017-06-13`, + open: 946.3, + high: 954.5, + low: 943, + close: 947.2, + volume: 1294687 + }), + new StockGoogleItem( + { + date: `2017-06-14`, + open: 952, + high: 956.9, + low: 948, + close: 956, + volume: 1053774 + }), + new StockGoogleItem( + { + date: `2017-06-17`, + open: 957, + high: 960.7, + low: 949.2, + close: 953.4, + volume: 1165537 + }), + new StockGoogleItem( + { + date: `2017-06-18`, + open: 953, + high: 968, + low: 950.6, + close: 965.4, + volume: 1153964 + }), + new StockGoogleItem( + { + date: `2017-06-19`, + open: 967.8, + high: 973, + low: 964, + close: 970.9, + volume: 1224540 + }), + new StockGoogleItem( + { + date: `2017-06-20`, + open: 975, + high: 975.9, + low: 961.5, + close: 968.1, + volume: 1624463 + }), + new StockGoogleItem( + { + date: `2017-06-21`, + open: 962.3, + high: 973.2, + low: 960.1, + close: 972.9, + volume: 1711000 + }), + new StockGoogleItem( + { + date: `2017-06-24`, + open: 972.2, + high: 986.2, + low: 970.8, + close: 980.3, + volume: 3248347 + }), + new StockGoogleItem( + { + date: `2017-06-25`, + open: 953.8, + high: 959.7, + low: 945.4, + close: 950.7, + volume: 4660979 + }), + new StockGoogleItem( + { + date: `2017-06-26`, + open: 954.7, + high: 955, + low: 942.3, + close: 947.8, + volume: 2088256 + }), + new StockGoogleItem( + { + date: `2017-06-27`, + open: 951.8, + high: 951.8, + low: 920, + close: 934.1, + volume: 3212996 + }), + new StockGoogleItem( + { + date: `2017-06-28`, + open: 929.4, + high: 943.8, + low: 927.5, + close: 941.5, + volume: 1846351 + }), + new StockGoogleItem( + { + date: `2017-06-31`, + open: 941.9, + high: 943.6, + low: 926, + close: 930.5, + volume: 1970095 + }), + new StockGoogleItem( + { + date: `2017-07-01`, + open: 932.4, + high: 937.5, + low: 929.3, + close: 930.8, + volume: 1277734 + }), + new StockGoogleItem( + { + date: `2017-07-02`, + open: 928.6, + high: 932.6, + low: 916.7, + close: 930.4, + volume: 1824448 + }), + new StockGoogleItem( + { + date: `2017-07-03`, + open: 930.3, + high: 932.2, + low: 922.2, + close: 923.6, + volume: 1202512 + }), + new StockGoogleItem( + { + date: `2017-07-04`, + open: 926.8, + high: 930.3, + low: 923, + close: 928, + volume: 1082267 + }), + new StockGoogleItem( + { + date: `2017-07-07`, + open: 929.1, + high: 931.7, + low: 926.5, + close: 929.4, + volume: 1032239 + }), + new StockGoogleItem( + { + date: `2017-07-08`, + open: 927.1, + high: 935.8, + low: 925.6, + close: 926.8, + volume: 1061579 + }), + new StockGoogleItem( + { + date: `2017-07-09`, + open: 920.6, + high: 926, + low: 917.3, + close: 922.9, + volume: 1192081 + }), + new StockGoogleItem( + { + date: `2017-07-10`, + open: 917.5, + high: 919.3, + low: 906.1, + close: 907.2, + volume: 1823967 + }), + new StockGoogleItem( + { + date: `2017-07-11`, + open: 908, + high: 917.8, + low: 905.6, + close: 914.4, + volume: 1206782 + }), + new StockGoogleItem( + { + date: `2017-07-14`, + open: 922.5, + high: 924.7, + low: 918.2, + close: 922.7, + volume: 1064530 + }), + new StockGoogleItem( + { + date: `2017-07-15`, + open: 924.2, + high: 926.5, + low: 919.8, + close: 922.2, + volume: 883369 + }), + new StockGoogleItem( + { + date: `2017-07-16`, + open: 925.3, + high: 932.7, + low: 923.4, + close: 927, + volume: 1006711 + }), + new StockGoogleItem( + { + date: `2017-07-17`, + open: 925.8, + high: 926.9, + low: 911, + close: 911, + volume: 1277238 + }), + new StockGoogleItem( + { + date: `2017-07-18`, + open: 910.3, + high: 915.3, + low: 907.1, + close: 910.7, + volume: 1342689 + }), + new StockGoogleItem( + { + date: `2017-07-21`, + open: 910, + high: 913, + low: 903.4, + close: 906.7, + volume: 943441 + }), + new StockGoogleItem( + { + date: `2017-07-22`, + open: 912.7, + high: 925.9, + low: 911.5, + close: 924.7, + volume: 1166737 + }), + new StockGoogleItem( + { + date: `2017-07-23`, + open: 921.9, + high: 929.9, + low: 919.4, + close: 927, + volume: 1090248 + }), + new StockGoogleItem( + { + date: `2017-07-24`, + open: 928.7, + high: 930.8, + low: 915.5, + close: 921.3, + volume: 1270306 + }), + new StockGoogleItem( + { + date: `2017-07-25`, + open: 923.5, + high: 925.6, + low: 915.5, + close: 915.9, + volume: 1053376 + }), + new StockGoogleItem( + { + date: `2017-07-28`, + open: 916, + high: 919.2, + low: 911.9, + close: 913.8, + volume: 1086484 + }), + new StockGoogleItem( + { + date: `2017-07-29`, + open: 905.1, + high: 923.3, + low: 905, + close: 921.3, + volume: 1185564 + }), + new StockGoogleItem( + { + date: `2017-07-30`, + open: 920, + high: 930.8, + low: 919.6, + close: 929.6, + volume: 1301225 + }), + new StockGoogleItem( + { + date: `2017-07-31`, + open: 931.8, + high: 942, + low: 931.8, + close: 939.3, + volume: 1582579 + }), + new StockGoogleItem( + { + date: `2017-08-01`, + open: 941.1, + high: 942.5, + low: 935.1, + close: 937.3, + volume: 947374 + }), + new StockGoogleItem( + { + date: `2017-08-05`, + open: 933.1, + high: 937, + low: 922, + close: 928.5, + volume: 1348292 + }), + new StockGoogleItem( + { + date: `2017-08-06`, + open: 930.1, + high: 930.9, + low: 919.3, + close: 927.8, + volume: 1527650 + }), + new StockGoogleItem( + { + date: `2017-08-07`, + open: 931.7, + high: 936.4, + low: 923.6, + close: 936, + volume: 1212743 + }), + new StockGoogleItem( + { + date: `2017-08-08`, + open: 936.5, + high: 937, + low: 924.9, + close: 926.5, + volume: 1011538 + }), + new StockGoogleItem( + { + date: `2017-08-11`, + open: 934.3, + high: 938.4, + low: 926.9, + close: 929.1, + volume: 1266991 + }), + new StockGoogleItem( + { + date: `2017-08-12`, + open: 932.6, + high: 933.5, + low: 923.9, + close: 932.1, + volume: 1134397 + }), + new StockGoogleItem( + { + date: `2017-08-13`, + open: 930.7, + high: 937.3, + low: 929.9, + close: 935.1, + volume: 1102631 + }), + new StockGoogleItem( + { + date: `2017-08-14`, + open: 931.3, + high: 932.8, + low: 924, + close: 925.1, + volume: 1397644 + }), + new StockGoogleItem( + { + date: `2017-08-15`, + open: 924.7, + high: 926.5, + low: 916.4, + close: 920.3, + volume: 2505430 + }), + new StockGoogleItem( + { + date: `2017-08-18`, + open: 920, + high: 922.1, + low: 910.6, + close: 915, + volume: 1306922 + }), + new StockGoogleItem( + { + date: `2017-08-19`, + open: 917.4, + high: 922.4, + low: 912.5, + close: 921.8, + volume: 936654 + }), + new StockGoogleItem( + { + date: `2017-08-20`, + open: 923, + high: 933.9, + low: 922, + close: 931.6, + volume: 1669763 + }), + new StockGoogleItem( + { + date: `2017-08-21`, + open: 933, + high: 936.5, + low: 923.8, + close: 932.5, + volume: 1290607 + }), + new StockGoogleItem( + { + date: `2017-08-22`, + open: 927.8, + high: 934.7, + low: 926.5, + close: 928.5, + volume: 1052704 + }), + new StockGoogleItem( + { + date: `2017-08-25`, + open: 925.5, + high: 926.4, + low: 909.7, + close: 921, + volume: 1856822 + }), + new StockGoogleItem( + { + date: `2017-08-26`, + open: 923.7, + high: 930.8, + low: 921.1, + close: 924.9, + volume: 1666861 + }), + new StockGoogleItem( + { + date: `2017-08-27`, + open: 927.7, + high: 949.9, + low: 927.7, + close: 944.5, + volume: 2212600 + }), + new StockGoogleItem( + { + date: `2017-08-28`, + open: 941.4, + high: 950.7, + low: 940.5, + close: 949.5, + volume: 1020312 + }), + new StockGoogleItem( + { + date: `2017-08-29`, + open: 952, + high: 959.8, + low: 951.5, + close: 959.1, + volume: 1580994 + }), + new StockGoogleItem( + { + date: `2017-09-02`, + open: 960, + high: 962.5, + low: 947.8, + close: 953.3, + volume: 1283444 + }), + new StockGoogleItem( + { + date: `2017-09-03`, + open: 954, + high: 958, + low: 949.1, + close: 957.8, + volume: 888346 + }), + new StockGoogleItem( + { + date: `2017-09-04`, + open: 957, + high: 960.4, + low: 950.7, + close: 951.7, + volume: 952391 + }), + new StockGoogleItem( + { + date: `2017-09-05`, + open: 955.5, + high: 970.9, + low: 955.2, + close: 970, + volume: 1213816 + }), + new StockGoogleItem( + { + date: `2017-09-06`, + open: 966.7, + high: 979.5, + low: 963.4, + close: 978.9, + volume: 1173882 + }), + new StockGoogleItem( + { + date: `2017-09-09`, + open: 980, + high: 985.4, + low: 976.1, + close: 977, + volume: 891355 + }), + new StockGoogleItem( + { + date: `2017-09-10`, + open: 980, + high: 981.6, + low: 966.1, + close: 972.6, + volume: 968362 + }), + new StockGoogleItem( + { + date: `2017-09-11`, + open: 973.7, + high: 990.7, + low: 972.3, + close: 989.3, + volume: 1693274 + }), + new StockGoogleItem( + { + date: `2017-09-12`, + open: 987.5, + high: 994.1, + low: 985, + close: 987.8, + volume: 1262793 + }), + new StockGoogleItem( + { + date: `2017-09-13`, + open: 992, + high: 997.2, + low: 989, + close: 989.7, + volume: 1169777 + }), + new StockGoogleItem( + { + date: `2017-09-16`, + open: 992.1, + high: 993.9, + low: 984, + close: 992, + volume: 910543 + }), + new StockGoogleItem( + { + date: `2017-09-17`, + open: 990.3, + high: 996.4, + low: 988.6, + close: 992.2, + volume: 1290186 + }), + new StockGoogleItem( + { + date: `2017-09-18`, + open: 991.8, + high: 996.7, + low: 987, + close: 992.8, + volume: 1057581 + }), + new StockGoogleItem( + { + date: `2017-09-19`, + open: 986, + high: 988.9, + low: 978.4, + close: 984.5, + volume: 1313575 + }), + new StockGoogleItem( + { + date: `2017-09-20`, + open: 989.4, + high: 991, + low: 984.6, + close: 988.2, + volume: 1183186 + }), + new StockGoogleItem( + { + date: `2017-09-23`, + open: 989.5, + high: 989.5, + low: 966.1, + close: 968.5, + volume: 1478448 + }), + new StockGoogleItem( + { + date: `2017-09-24`, + open: 970, + high: 972.2, + low: 961, + close: 970.5, + volume: 1212153 + }), + new StockGoogleItem( + { + date: `2017-09-25`, + open: 968.4, + high: 976.1, + low: 960.5, + close: 973.3, + volume: 1211262 + }), + new StockGoogleItem( + { + date: `2017-09-26`, + open: 980, + high: 987.6, + low: 972.2, + close: 972.6, + volume: 2042149 + }), + new StockGoogleItem( + { + date: `2017-09-27`, + open: 1009.2, + high: 1048.4, + low: 1008.2, + close: 1019.3, + volume: 5167689 + }), + new StockGoogleItem( + { + date: `2017-09-30`, + open: 1014, + high: 1025, + low: 1007.5, + close: 1017.1, + volume: 2085062 + }), + new StockGoogleItem( + { + date: `2017-09-31`, + open: 1015.2, + high: 1024, + low: 1010.4, + close: 1016.6, + volume: 1331391 + }), + new StockGoogleItem( + { + date: `2017-10-01`, + open: 1017.2, + high: 1029.7, + low: 1017, + close: 1025.5, + volume: 1373444 + }), + new StockGoogleItem( + { + date: `2017-10-02`, + open: 1021.8, + high: 1028.1, + low: 1013, + close: 1025.6, + volume: 1048970 + }), + new StockGoogleItem( + { + date: `2017-10-03`, + open: 1022.1, + high: 1032.7, + low: 1020.3, + close: 1032.5, + volume: 1076350 + }), + new StockGoogleItem( + { + date: `2017-10-06`, + open: 1029, + high: 1034.9, + low: 1025, + close: 1025.9, + volume: 1125185 + }), + new StockGoogleItem( + { + date: `2017-10-07`, + open: 1027.3, + high: 1034, + low: 1025.1, + close: 1033.3, + volume: 1112331 + }), + new StockGoogleItem( + { + date: `2017-10-08`, + open: 1030.5, + high: 1043.5, + low: 1028.5, + close: 1039.8, + volume: 1088716 + }), + new StockGoogleItem( + { + date: `2017-10-09`, + open: 1034, + high: 1034, + low: 1019.7, + close: 1031.3, + volume: 1245246 + }), + new StockGoogleItem( + { + date: `2017-10-10`, + open: 1026.5, + high: 1030.8, + low: 1025.3, + close: 1028.1, + volume: 720676 + }), + new StockGoogleItem( + { + date: `2017-10-13`, + open: 1023.4, + high: 1031.6, + low: 1022.6, + close: 1025.8, + volume: 885779 + }), + new StockGoogleItem( + { + date: `2017-10-14`, + open: 1022.6, + high: 1026.8, + low: 1014.1, + close: 1026, + volume: 959222 + }), + new StockGoogleItem( + { + date: `2017-10-15`, + open: 1019.2, + high: 1024.1, + low: 1015.4, + close: 1020.9, + volume: 853992 + }), + new StockGoogleItem( + { + date: `2017-10-16`, + open: 1022.5, + high: 1035.9, + low: 1022.5, + close: 1032.5, + volume: 1129688 + }), + new StockGoogleItem( + { + date: `2017-10-17`, + open: 1034, + high: 1034.4, + low: 1017.8, + close: 1019.1, + volume: 1397064 + }), + new StockGoogleItem( + { + date: `2017-10-20`, + open: 1020.3, + high: 1022.6, + low: 1017.5, + close: 1018.4, + volume: 953470 + }), + new StockGoogleItem( + { + date: `2017-10-21`, + open: 1023.3, + high: 1035.1, + low: 1022.7, + close: 1034.5, + volume: 1096999 + }), + new StockGoogleItem( + { + date: `2017-10-22`, + open: 1035, + high: 1039.7, + low: 1031.4, + close: 1036, + volume: 746878 + }), + new StockGoogleItem( + { + date: `2017-10-24`, + open: 1035.9, + high: 1043.2, + low: 1035, + close: 1040.6, + volume: 536996 + }), + new StockGoogleItem( + { + date: `2017-10-27`, + open: 1040, + high: 1055.5, + low: 1038.4, + close: 1054.2, + volume: 1307881 + }), + new StockGoogleItem( + { + date: `2017-10-28`, + open: 1055.1, + high: 1062.4, + low: 1040, + close: 1047.4, + volume: 1424394 + }), + new StockGoogleItem( + { + date: `2017-10-29`, + open: 1042.7, + high: 1044.1, + low: 1015.6, + close: 1021.7, + volume: 2459426 + }), + new StockGoogleItem( + { + date: `2017-10-30`, + open: 1022.4, + high: 1028.5, + low: 1015, + close: 1021.4, + volume: 1724031 + }), + new StockGoogleItem( + { + date: `2017-11-01`, + open: 1015.8, + high: 1022.5, + low: 1002, + close: 1010.2, + volume: 1909566 + }), + new StockGoogleItem( + { + date: `2017-11-04`, + open: 1012.7, + high: 1016.1, + low: 995.6, + close: 998.7, + volume: 1906439 + }), + new StockGoogleItem( + { + date: `2017-11-05`, + open: 995.9, + high: 1020.6, + low: 988.3, + close: 1005.1, + volume: 2067318 + }), + new StockGoogleItem( + { + date: `2017-11-06`, + open: 1001.5, + high: 1025, + low: 1001.1, + close: 1018.4, + volume: 1271964 + }), + new StockGoogleItem( + { + date: `2017-11-07`, + open: 1020.4, + high: 1034.2, + low: 1018.1, + close: 1030.9, + volume: 1458242 + }), + new StockGoogleItem( + { + date: `2017-11-08`, + open: 1037.5, + high: 1042, + low: 1032.5, + close: 1037, + volume: 1290774 + }), + new StockGoogleItem( + { + date: `2017-11-11`, + open: 1035.5, + high: 1043.8, + low: 1032, + close: 1041.1, + volume: 1192838 + }), + new StockGoogleItem( + { + date: `2017-11-12`, + open: 1039.6, + high: 1050.3, + low: 1033.7, + close: 1040.5, + volume: 1279659 + }), + new StockGoogleItem( + { + date: `2017-11-13`, + open: 1046.1, + high: 1046.7, + low: 1038.4, + close: 1040.6, + volume: 1282677 + }), + new StockGoogleItem( + { + date: `2017-11-14`, + open: 1045, + high: 1058.5, + low: 1043.1, + close: 1049.2, + volume: 1558835 + }), + new StockGoogleItem( + { + date: `2017-11-15`, + open: 1054.6, + high: 1067.6, + low: 1049.5, + close: 1064.2, + volume: 3275931 + }), + new StockGoogleItem( + { + date: `2017-11-18`, + open: 1066.1, + high: 1078.5, + low: 1062, + close: 1077.1, + volume: 1554552 + }), + new StockGoogleItem( + { + date: `2017-11-19`, + open: 1075.2, + high: 1076.8, + low: 1063.5, + close: 1070.7, + volume: 1338725 + }), + new StockGoogleItem( + { + date: `2017-11-20`, + open: 1071.8, + high: 1073.4, + low: 1061.5, + close: 1065, + volume: 1268582 + }), + new StockGoogleItem( + { + date: `2017-11-21`, + open: 1065, + high: 1069.3, + low: 1061.8, + close: 1063.6, + volume: 995703 + }), + new StockGoogleItem( + { + date: `2017-11-22`, + open: 1061.1, + high: 1064.2, + low: 1059.4, + close: 1060.1, + volume: 755095 + }), + new StockGoogleItem( + { + date: `2017-11-26`, + open: 1058.1, + high: 1060.1, + low: 1050.2, + close: 1056.7, + volume: 761237 + }), + new StockGoogleItem( + { + date: `2017-11-27`, + open: 1057.4, + high: 1058.4, + low: 1048, + close: 1049.4, + volume: 1271911 + }), + new StockGoogleItem( + { + date: `2017-11-28`, + open: 1051.6, + high: 1054.8, + low: 1044.8, + close: 1048.1, + volume: 837121 + }), + new StockGoogleItem( + { + date: `2017-11-29`, + open: 1046.7, + high: 1049.7, + low: 1044.9, + close: 1046.4, + volume: 887511 + }), + new StockGoogleItem( + { + date: `2018-00-02`, + open: 1048.3, + high: 1066.9, + low: 1045.2, + close: 1065, + volume: 1237564 + }), + new StockGoogleItem( + { + date: `2018-00-03`, + open: 1064.3, + high: 1086.3, + low: 1063.2, + close: 1082.5, + volume: 1430170 + }), + new StockGoogleItem( + { + date: `2018-00-04`, + open: 1088, + high: 1093.6, + low: 1084, + close: 1086.4, + volume: 1004605 + }), + new StockGoogleItem( + { + date: `2018-00-05`, + open: 1094, + high: 1104.3, + low: 1092, + close: 1102.2, + volume: 1279123 + }), + new StockGoogleItem( + { + date: `2018-00-08`, + open: 1102.2, + high: 1111.3, + low: 1101.6, + close: 1106.9, + volume: 1047603 + }), + new StockGoogleItem( + { + date: `2018-00-09`, + open: 1109.4, + high: 1110.6, + low: 1101.2, + close: 1106.3, + volume: 902541 + }), + new StockGoogleItem( + { + date: `2018-00-10`, + open: 1097.1, + high: 1104.6, + low: 1096.1, + close: 1102.6, + volume: 1042793 + }), + new StockGoogleItem( + { + date: `2018-00-11`, + open: 1106.3, + high: 1106.5, + low: 1099.6, + close: 1105.5, + volume: 978292 + }), + new StockGoogleItem( + { + date: `2018-00-12`, + open: 1102.4, + high: 1124.3, + low: 1101.2, + close: 1122.3, + volume: 1720533 + }), + new StockGoogleItem( + { + date: `2018-00-16`, + open: 1132.5, + high: 1139.9, + low: 1117.8, + close: 1121.8, + volume: 1575261 + }), + new StockGoogleItem( + { + date: `2018-00-17`, + open: 1126.2, + high: 1132.6, + low: 1117, + close: 1132, + volume: 1202639 + }), + new StockGoogleItem( + { + date: `2018-00-18`, + open: 1131.4, + high: 1132.5, + low: 1117.5, + close: 1129.8, + volume: 1198234 + }), + new StockGoogleItem( + { + date: `2018-00-19`, + open: 1131.8, + high: 1137.9, + low: 1128.3, + close: 1137.5, + volume: 1778229 + }), + new StockGoogleItem( + { + date: `2018-00-22`, + open: 1137.5, + high: 1159.9, + low: 1135.1, + close: 1155.8, + volume: 1617975 + }), + new StockGoogleItem( + { + date: `2018-00-23`, + open: 1159.8, + high: 1171.6, + low: 1158.8, + close: 1170, + volume: 1333056 + }), + new StockGoogleItem( + { + date: `2018-00-24`, + open: 1177.3, + high: 1179.9, + low: 1161, + close: 1164.2, + volume: 1416625 + }), + new StockGoogleItem( + { + date: `2018-00-25`, + open: 1172.5, + high: 1175.9, + low: 1162.8, + close: 1170.4, + volume: 1480540 + }), + new StockGoogleItem( + { + date: `2018-00-26`, + open: 1175.1, + high: 1175.8, + low: 1158.1, + close: 1175.8, + volume: 2018755 + }), + new StockGoogleItem( + { + date: `2018-00-29`, + open: 1176.5, + high: 1186.9, + low: 1172, + close: 1175.6, + volume: 1378913 + }), + new StockGoogleItem( + { + date: `2018-00-30`, + open: 1167.8, + high: 1176.5, + low: 1163.5, + close: 1163.7, + volume: 1556346 + }), + new StockGoogleItem( + { + date: `2018-00-31`, + open: 1170.6, + high: 1173, + low: 1159.1, + close: 1169.9, + volume: 1538688 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/src/StockGoogle.ts b/samples/charts/financial-chart/data-tooltip-styling-props/src/StockGoogle.ts index 5e8578def..5236d32cb 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/src/StockGoogle.ts +++ b/samples/charts/financial-chart/data-tooltip-styling-props/src/StockGoogle.ts @@ -12,8710 +12,8716 @@ export class StockGoogleItem { } export class StockGoogle extends Array { - public constructor() { - super(); - this.push(new StockGoogleItem( - { - date: `2014-03-01`, - open: 559.6, - high: 568.2, - low: 558.4, - close: 566.9, - volume: 2182626 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-02`, - open: 562.4, - high: 571.8, - low: 561.4, - close: 567, - volume: 2088804 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-03`, - open: 569.9, - high: 587.3, - low: 564.1, - close: 569.7, - volume: 5087530 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-04`, - open: 574.6, - high: 577.8, - low: 543, - close: 543.1, - volume: 6377658 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-07`, - open: 540.7, - high: 548.5, - low: 527.1, - close: 538.1, - volume: 4389569 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-08`, - open: 542.6, - high: 555, - low: 541.6, - close: 554.9, - volume: 3152406 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-09`, - open: 559.6, - high: 565.4, - low: 553, - close: 564.1, - volume: 3324742 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-10`, - open: 565, - high: 565, - low: 539.9, - close: 541, - volume: 4027743 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-11`, - open: 532.5, - high: 540, - low: 526.5, - close: 530.6, - volume: 3916171 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-14`, - open: 538.3, - high: 544.1, - low: 529.6, - close: 532.5, - volume: 2568020 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-15`, - open: 536.8, - high: 538.5, - low: 518.5, - close: 536.4, - volume: 3847453 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-16`, - open: 543, - high: 557, - low: 540, - close: 556.5, - volume: 4879889 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-17`, - open: 548.8, - high: 549.5, - low: 531.1, - close: 536.1, - volume: 6795393 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-21`, - open: 536.1, - high: 536.7, - low: 525.6, - close: 528.6, - volume: 2561214 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-22`, - open: 528.6, - high: 537.2, - low: 527.5, - close: 534.8, - volume: 2359421 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-23`, - open: 533.8, - high: 533.9, - low: 526.3, - close: 526.9, - volume: 2051066 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-24`, - open: 530.1, - high: 531.6, - low: 522.1, - close: 525.2, - volume: 1881965 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-25`, - open: 522.5, - high: 524.7, - low: 515.4, - close: 516.2, - volume: 2097264 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-28`, - open: 517.2, - high: 518.6, - low: 502.8, - close: 517.1, - volume: 3326429 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-29`, - open: 516.9, - high: 529.5, - low: 516.3, - close: 527.7, - volume: 2692489 - })); - this.push(new StockGoogleItem( - { - date: `2014-03-30`, - open: 527.6, - high: 528, - low: 522.5, - close: 526.7, - volume: 1746904 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-01`, - open: 527.1, - high: 532.9, - low: 523.9, - close: 531.4, - volume: 1900432 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-02`, - open: 533.8, - high: 534, - low: 525.6, - close: 527.9, - volume: 1685042 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-05`, - open: 524.8, - high: 528.9, - low: 521.3, - close: 527.8, - volume: 1021408 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-06`, - open: 525.2, - high: 526.8, - low: 515.1, - close: 515.1, - volume: 1684381 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-07`, - open: 515.8, - high: 516.7, - low: 503.3, - close: 510, - volume: 3216077 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-08`, - open: 508.5, - high: 517.2, - low: 506.4, - close: 511, - volume: 2016131 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-09`, - open: 510.8, - high: 519.9, - low: 504.2, - close: 518.7, - volume: 2432783 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-12`, - open: 523.5, - high: 530.2, - low: 519, - close: 529.9, - volume: 1908392 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-13`, - open: 530.9, - high: 536.1, - low: 529.5, - close: 533.1, - volume: 1648907 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-14`, - open: 533, - high: 533, - low: 525.3, - close: 526.6, - volume: 1191863 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-15`, - open: 525.7, - high: 525.9, - low: 517.4, - close: 520, - volume: 1703758 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-16`, - open: 521.4, - high: 521.8, - low: 515.4, - close: 520.6, - volume: 1481688 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-19`, - open: 519.7, - high: 529.8, - low: 517.6, - close: 528.9, - volume: 1276362 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-20`, - open: 529.7, - high: 536.2, - low: 526.3, - close: 529.8, - volume: 1780113 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-21`, - open: 532.9, - high: 539.2, - low: 531.9, - close: 538.9, - volume: 1193389 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-22`, - open: 541.1, - high: 547.6, - low: 540.8, - close: 545.1, - volume: 1611837 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-23`, - open: 547.3, - high: 553.6, - low: 543.7, - close: 552.7, - volume: 1929632 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-27`, - open: 556, - high: 566, - low: 554.4, - close: 566, - volume: 2100298 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-28`, - open: 564.6, - high: 567.8, - low: 561, - close: 561.7, - volume: 1647717 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-29`, - open: 563.4, - high: 564, - low: 558.7, - close: 560.1, - volume: 1350657 - })); - this.push(new StockGoogleItem( - { - date: `2014-04-30`, - open: 560.8, - high: 561.4, - low: 555.9, - close: 559.9, - volume: 1766794 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-02`, - open: 560.7, - high: 560.9, - low: 545.7, - close: 553.9, - volume: 1434989 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-03`, - open: 551, - high: 552.3, - low: 542.5, - close: 544.9, - volume: 1861921 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-04`, - open: 541.5, - high: 548.6, - low: 538.8, - close: 544.7, - volume: 1812084 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-05`, - open: 546.4, - high: 555, - low: 544.5, - close: 553.9, - volume: 1684886 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-06`, - open: 558.1, - high: 558.1, - low: 548.9, - close: 556.3, - volume: 1732592 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-09`, - open: 557.1, - high: 562.9, - low: 556, - close: 562.1, - volume: 1463676 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-10`, - open: 560.5, - high: 563.6, - low: 557.9, - close: 560.5, - volume: 1349444 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-11`, - open: 558, - high: 559.9, - low: 555, - close: 558.8, - volume: 1097380 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-12`, - open: 557.3, - high: 558, - low: 548.5, - close: 551.4, - volume: 1457104 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-13`, - open: 552.3, - high: 552.3, - low: 545.6, - close: 551.8, - volume: 1217176 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-16`, - open: 549.3, - high: 549.6, - low: 541.5, - close: 544.3, - volume: 1704027 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-17`, - open: 544.2, - high: 545.3, - low: 539.3, - close: 543, - volume: 1445878 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-18`, - open: 544.9, - high: 553.6, - low: 544, - close: 553.4, - volume: 1737343 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-19`, - open: 554.2, - high: 555, - low: 548.5, - close: 554.9, - volume: 2451341 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-20`, - open: 556.9, - high: 557.6, - low: 550.4, - close: 556.4, - volume: 4496962 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-23`, - open: 555.1, - high: 565, - low: 554.3, - close: 565, - volume: 1534659 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-24`, - open: 565.2, - high: 572.6, - low: 561, - close: 564.6, - volume: 2201789 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-25`, - open: 565.3, - high: 580, - low: 565.2, - close: 578.6, - volume: 1964447 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-26`, - open: 581, - high: 582.5, - low: 571.9, - close: 576, - volume: 1737210 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-27`, - open: 577.2, - high: 579.9, - low: 573.8, - close: 577.2, - volume: 2231174 - })); - this.push(new StockGoogleItem( - { - date: `2014-05-30`, - open: 578.7, - high: 579.6, - low: 574.8, - close: 575.3, - volume: 1310909 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-01`, - open: 578.3, - high: 584.4, - low: 576.6, - close: 582.7, - volume: 1446309 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-02`, - open: 583.4, - high: 585.4, - low: 580.4, - close: 582.3, - volume: 1054936 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-03`, - open: 583.4, - high: 585, - low: 580.9, - close: 584.7, - volume: 712210 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-07`, - open: 583.8, - high: 586.4, - low: 579.6, - close: 582.3, - volume: 1061833 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-08`, - open: 577.7, - high: 579.5, - low: 566.1, - close: 571.1, - volume: 1908647 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-09`, - open: 571.6, - high: 576.7, - low: 569.4, - close: 576.1, - volume: 1113907 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-10`, - open: 565.9, - high: 576.6, - low: 565, - close: 571.1, - volume: 1353317 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-11`, - open: 571.9, - high: 580.9, - low: 571.4, - close: 579.2, - volume: 1617569 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-14`, - open: 582.6, - high: 585.2, - low: 578, - close: 584.9, - volume: 1852290 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-15`, - open: 585.7, - high: 585.8, - low: 576.6, - close: 584.8, - volume: 1618815 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-16`, - open: 588, - high: 588.4, - low: 582.2, - close: 582.7, - volume: 1394560 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-17`, - open: 579.5, - high: 581, - low: 568.6, - close: 573.7, - volume: 3015475 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-18`, - open: 593, - high: 596.8, - low: 582, - close: 595.1, - volume: 4006389 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-21`, - open: 591.8, - high: 594.4, - low: 585.2, - close: 589.5, - volume: 2060334 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-22`, - open: 590.7, - high: 599.6, - low: 590.6, - close: 594.7, - volume: 1694787 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-23`, - open: 593.2, - high: 597.9, - low: 592.5, - close: 596, - volume: 1229846 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-24`, - open: 596.5, - high: 599.5, - low: 591.8, - close: 593.4, - volume: 1033341 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-25`, - open: 590.4, - high: 591.9, - low: 587, - close: 589, - volume: 932724 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-28`, - open: 588.1, - high: 592.5, - low: 584.8, - close: 590.6, - volume: 984161 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-29`, - open: 588.8, - high: 589.7, - low: 583.5, - close: 585.6, - volume: 1346647 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-30`, - open: 586.5, - high: 589.5, - low: 584, - close: 587.4, - volume: 1013932 - })); - this.push(new StockGoogleItem( - { - date: `2014-06-31`, - open: 580.6, - high: 583.6, - low: 570, - close: 571.6, - volume: 2099516 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-01`, - open: 570.4, - high: 576, - low: 562.9, - close: 566.1, - volume: 1950171 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-04`, - open: 569, - high: 575.4, - low: 564.1, - close: 573.1, - volume: 1427169 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-05`, - open: 570, - high: 572, - low: 562.6, - close: 565.1, - volume: 1556685 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-06`, - open: 561.8, - high: 570.7, - low: 560, - close: 566.4, - volume: 1330877 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-07`, - open: 568, - high: 569.9, - low: 561.1, - close: 563.4, - volume: 1108900 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-08`, - open: 563.6, - high: 570.3, - low: 560.4, - close: 568.8, - volume: 1492491 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-11`, - open: 570, - high: 570.5, - low: 566, - close: 567.9, - volume: 1215968 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-12`, - open: 564.5, - high: 565.9, - low: 560.9, - close: 562.7, - volume: 1537758 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-13`, - open: 567.3, - high: 575, - low: 565.8, - close: 574.8, - volume: 1437922 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-14`, - open: 576.2, - high: 577.9, - low: 570.9, - close: 574.6, - volume: 982926 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-15`, - open: 577.9, - high: 579.4, - low: 570.5, - close: 573.5, - volume: 1517056 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-18`, - open: 576.1, - high: 584.5, - low: 576, - close: 582.2, - volume: 1282531 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-19`, - open: 585, - high: 587.3, - low: 584, - close: 586.9, - volume: 979298 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-20`, - open: 585.9, - high: 586.7, - low: 582.6, - close: 584.5, - volume: 1034779 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-21`, - open: 583.8, - high: 584.5, - low: 581.1, - close: 583.4, - volume: 912854 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-22`, - open: 583.6, - high: 585.2, - low: 580.6, - close: 582.6, - volume: 789484 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-25`, - open: 584.7, - high: 585, - low: 579, - close: 580.2, - volume: 1358810 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-26`, - open: 581.3, - high: 581.8, - low: 576.6, - close: 577.9, - volume: 1635465 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-27`, - open: 577.3, - high: 578.5, - low: 570.1, - close: 571, - volume: 1700161 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-28`, - open: 569.6, - high: 573.3, - low: 567.1, - close: 569.2, - volume: 1295963 - })); - this.push(new StockGoogleItem( - { - date: `2014-07-29`, - open: 571.3, - high: 572, - low: 567.1, - close: 571.6, - volume: 1081231 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-02`, - open: 571.9, - high: 577.8, - low: 571.2, - close: 577.3, - volume: 1576830 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-03`, - open: 580, - high: 583, - low: 575, - close: 577.9, - volume: 1214586 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-04`, - open: 580, - high: 586, - low: 579.2, - close: 582, - volume: 1459956 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-05`, - open: 584, - high: 586.5, - low: 582, - close: 586.1, - volume: 1629477 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-08`, - open: 586.6, - high: 591.8, - low: 586.3, - close: 589.7, - volume: 1429101 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-09`, - open: 588.9, - high: 589, - low: 580, - close: 581, - volume: 1286722 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-10`, - open: 581.5, - high: 583.5, - low: 576.9, - close: 583.1, - volume: 975145 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-11`, - open: 580.4, - high: 581.8, - low: 576.3, - close: 581.4, - volume: 1217721 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-12`, - open: 581, - high: 581.6, - low: 574.5, - close: 575.6, - volume: 1597677 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-15`, - open: 572.9, - high: 575, - low: 568.2, - close: 573.1, - volume: 1596224 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-16`, - open: 572.8, - high: 581.5, - low: 572.7, - close: 580, - volume: 1478306 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-17`, - open: 580, - high: 587.5, - low: 578.8, - close: 584.8, - volume: 1690994 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-18`, - open: 587, - high: 589.5, - low: 585, - close: 589.3, - volume: 1442012 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-19`, - open: 591.5, - high: 596.5, - low: 589.5, - close: 596.1, - volume: 3727045 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-22`, - open: 593.8, - high: 594, - low: 583.5, - close: 587.4, - volume: 1687710 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-23`, - open: 586.9, - high: 586.9, - low: 581, - close: 581.1, - volume: 1467703 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-24`, - open: 581.5, - high: 589.6, - low: 580.5, - close: 588, - volume: 1724537 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-25`, - open: 587.5, - high: 588, - low: 574.2, - close: 575.1, - volume: 1925350 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-26`, - open: 576.1, - high: 579.3, - low: 574.7, - close: 577.1, - volume: 1439807 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-29`, - open: 571.8, - high: 578.2, - low: 571.2, - close: 576.4, - volume: 1281204 - })); - this.push(new StockGoogleItem( - { - date: `2014-08-30`, - open: 576.9, - high: 579.9, - low: 572.9, - close: 577.4, - volume: 1618437 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-01`, - open: 576, - high: 577.6, - low: 567, - close: 568.3, - volume: 1445027 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-02`, - open: 567.3, - high: 571.9, - low: 563.3, - close: 570.1, - volume: 1175307 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-03`, - open: 573, - high: 577.2, - low: 572.5, - close: 575.3, - volume: 1138636 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-06`, - open: 578.8, - high: 581, - low: 574.4, - close: 577.4, - volume: 1211320 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-07`, - open: 574.4, - high: 575.3, - low: 563.7, - close: 563.7, - volume: 1906427 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-08`, - open: 565.6, - high: 573.9, - low: 557.5, - close: 572.5, - volume: 1987888 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-09`, - open: 571.2, - high: 571.5, - low: 559.1, - close: 560.9, - volume: 2519693 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-10`, - open: 557.7, - high: 565.1, - low: 544, - close: 544.5, - volume: 3078634 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-13`, - open: 545, - high: 549.5, - low: 533.1, - close: 533.2, - volume: 2578676 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-14`, - open: 538.9, - high: 547.2, - low: 533.2, - close: 537.9, - volume: 2217230 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-15`, - open: 531, - high: 532.8, - low: 518.3, - close: 530, - volume: 3712536 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-16`, - open: 519, - high: 529.4, - low: 515, - close: 524.5, - volume: 3698423 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-17`, - open: 527.3, - high: 531, - low: 508.5, - close: 511.2, - volume: 5530674 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-20`, - open: 509.4, - high: 521.8, - low: 508.1, - close: 520.8, - volume: 2605505 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-21`, - open: 525.2, - high: 526.8, - low: 519.1, - close: 526.5, - volume: 2332531 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-22`, - open: 529.9, - high: 539.8, - low: 528.8, - close: 532.7, - volume: 2917183 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-23`, - open: 539.3, - high: 547.2, - low: 535.9, - close: 544, - volume: 2345296 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-24`, - open: 544.4, - high: 544.9, - low: 535.8, - close: 539.8, - volume: 1972047 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-27`, - open: 537, - high: 544.4, - low: 537, - close: 540.8, - volume: 1184973 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-28`, - open: 543, - high: 549, - low: 541.6, - close: 548.9, - volume: 1273372 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-29`, - open: 550, - high: 554.2, - low: 547, - close: 549.3, - volume: 1767107 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-30`, - open: 549, - high: 552.8, - low: 543.5, - close: 550.3, - volume: 1451667 - })); - this.push(new StockGoogleItem( - { - date: `2014-09-31`, - open: 559.4, - high: 559.6, - low: 554.8, - close: 559.1, - volume: 2032887 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-03`, - open: 555.5, - high: 557.9, - low: 553.2, - close: 555.2, - volume: 1378511 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-04`, - open: 553, - high: 555.5, - low: 549.3, - close: 554.1, - volume: 1240761 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-05`, - open: 556.8, - high: 556.8, - low: 544, - close: 545.9, - volume: 2026740 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-06`, - open: 545.5, - high: 546.9, - low: 541, - close: 542, - volume: 1329604 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-07`, - open: 546.2, - high: 546.2, - low: 538.7, - close: 541, - volume: 1629259 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-10`, - open: 541.5, - high: 549.6, - low: 541, - close: 547.5, - volume: 1131546 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-11`, - open: 548.5, - high: 551.9, - low: 546.3, - close: 550.3, - volume: 964866 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-12`, - open: 550.4, - high: 550.5, - low: 545.2, - close: 547.3, - volume: 1126594 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-13`, - open: 549.8, - high: 549.8, - low: 543.5, - close: 545.4, - volume: 1335719 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-14`, - open: 546.7, - high: 546.7, - low: 542.1, - close: 544.4, - volume: 1285991 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-17`, - open: 543.6, - high: 543.8, - low: 534.1, - close: 536.5, - volume: 1721282 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-18`, - open: 537.5, - high: 541.9, - low: 534.2, - close: 535, - volume: 1957664 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-19`, - open: 535, - high: 538.2, - low: 530.1, - close: 537, - volume: 1388440 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-20`, - open: 531.3, - high: 535.1, - low: 531.1, - close: 534.8, - volume: 1559131 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-21`, - open: 541.6, - high: 542.1, - low: 536.6, - close: 537.5, - volume: 2218249 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-24`, - open: 537.6, - high: 542.7, - low: 535.6, - close: 539.3, - volume: 1701682 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-25`, - open: 539, - high: 544, - low: 538.6, - close: 541.1, - volume: 1784967 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-26`, - open: 540.9, - high: 541.5, - low: 537, - close: 540.4, - volume: 1519503 - })); - this.push(new StockGoogleItem( - { - date: `2014-10-28`, - open: 540.6, - high: 542, - low: 536.6, - close: 541.8, - volume: 1145231 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-01`, - open: 538.9, - high: 541.4, - low: 531.9, - close: 533.8, - volume: 2109599 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-02`, - open: 533.5, - high: 535.5, - low: 529.8, - close: 533.8, - volume: 1522481 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-03`, - open: 531.4, - high: 536, - low: 529.3, - close: 531.3, - volume: 1279288 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-04`, - open: 531.2, - high: 537.3, - low: 528.6, - close: 537.3, - volume: 1392208 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-05`, - open: 531, - high: 532.9, - low: 524.3, - close: 525.3, - volume: 2558649 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-08`, - open: 527.1, - high: 531, - low: 523.8, - close: 527, - volume: 2327127 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-09`, - open: 522.1, - high: 534.2, - low: 520.5, - close: 533.4, - volume: 1871268 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-10`, - open: 533.1, - high: 536.3, - low: 525.6, - close: 526.1, - volume: 1716835 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-11`, - open: 527.8, - high: 533.9, - low: 527.1, - close: 528.3, - volume: 1610964 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-12`, - open: 523.5, - high: 528.5, - low: 518.7, - close: 518.7, - volume: 1989117 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-15`, - open: 522.7, - high: 523.1, - low: 513.3, - close: 513.8, - volume: 2812786 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-16`, - open: 511.6, - high: 513, - low: 489, - close: 495.4, - volume: 3953371 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-17`, - open: 497, - high: 507, - low: 496.8, - close: 504.9, - volume: 2875281 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-18`, - open: 513, - high: 513.9, - low: 504.7, - close: 511.1, - volume: 2918730 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-19`, - open: 511.5, - high: 517.7, - low: 506.9, - close: 516.4, - volume: 3680148 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-22`, - open: 516.1, - high: 526.5, - low: 516.1, - close: 524.9, - volume: 2723599 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-23`, - open: 527, - high: 534.6, - low: 526.3, - close: 530.6, - volume: 2191567 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-24`, - open: 530.5, - high: 531.8, - low: 527, - close: 528.8, - volume: 704035 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-26`, - open: 528.8, - high: 534.3, - low: 527.3, - close: 534, - volume: 1037727 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-29`, - open: 532.2, - high: 535.5, - low: 530, - close: 530.3, - volume: 2276104 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-30`, - open: 528.1, - high: 531.1, - low: 527.1, - close: 530.4, - volume: 873923 - })); - this.push(new StockGoogleItem( - { - date: `2014-11-31`, - open: 531.3, - high: 532.6, - low: 525.8, - close: 526.4, - volume: 1371819 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-02`, - open: 529, - high: 531.3, - low: 524.1, - close: 524.8, - volume: 1446662 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-05`, - open: 523.3, - high: 524.3, - low: 513.1, - close: 513.9, - volume: 2054238 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-06`, - open: 515, - high: 516.2, - low: 501.1, - close: 502, - volume: 2891950 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-07`, - open: 507, - high: 507.2, - low: 499.6, - close: 501.1, - volume: 2059366 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-08`, - open: 498, - high: 503.5, - low: 491, - close: 502.7, - volume: 3344395 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-09`, - open: 504.8, - high: 504.9, - low: 494.8, - close: 496.2, - volume: 2065715 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-12`, - open: 494.9, - high: 496, - low: 487.6, - close: 492.6, - volume: 2320446 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-13`, - open: 498.8, - high: 503, - low: 492.4, - close: 496.2, - volume: 2365687 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-14`, - open: 494.6, - high: 503.2, - low: 493, - close: 500.9, - volume: 2229638 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-15`, - open: 505.6, - high: 505.7, - low: 497.8, - close: 501.8, - volume: 2711355 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-16`, - open: 500, - high: 508.2, - low: 500, - close: 508.1, - volume: 2292043 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-20`, - open: 511, - high: 512.5, - low: 506, - close: 506.9, - volume: 2225922 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-21`, - open: 507.3, - high: 519.3, - low: 506.2, - close: 518, - volume: 2262455 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-22`, - open: 521.5, - high: 536.3, - low: 519.7, - close: 534.4, - volume: 2669558 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-23`, - open: 535.6, - high: 542.2, - low: 533, - close: 540, - volume: 2275485 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-26`, - open: 538.5, - high: 539, - low: 529.7, - close: 535.2, - volume: 1539524 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-27`, - open: 530, - high: 530.7, - low: 518.2, - close: 518.6, - volume: 1898844 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-28`, - open: 522.8, - high: 523, - low: 510, - close: 510, - volume: 1679230 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-29`, - open: 511, - high: 511.1, - low: 501.2, - close: 510.7, - volume: 4174924 - })); - this.push(new StockGoogleItem( - { - date: `2015-00-30`, - open: 515.9, - high: 539.9, - low: 515.5, - close: 534.5, - volume: 5590977 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-02`, - open: 531.7, - high: 533, - low: 518.5, - close: 528.5, - volume: 2841976 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-03`, - open: 528, - high: 533.4, - low: 523.3, - close: 529.2, - volume: 2033085 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-04`, - open: 529.2, - high: 532.7, - low: 521.3, - close: 522.8, - volume: 1659125 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-05`, - open: 523.8, - high: 528.5, - low: 522.1, - close: 527.6, - volume: 1844687 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-06`, - open: 527.6, - high: 537.2, - low: 526.4, - close: 531, - volume: 1758650 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-09`, - open: 528, - high: 532, - low: 526, - close: 527.8, - volume: 1264276 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-10`, - open: 529.3, - high: 537.7, - low: 526.9, - close: 536.9, - volume: 1745076 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-11`, - open: 535.3, - high: 538.5, - low: 533.4, - close: 536, - volume: 1373970 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-12`, - open: 537.3, - high: 544.8, - low: 534.7, - close: 542.9, - volume: 1615824 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-13`, - open: 543.4, - high: 549.9, - low: 543.1, - close: 549, - volume: 1895126 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-17`, - open: 546.8, - high: 550, - low: 541.1, - close: 542.8, - volume: 1612439 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-18`, - open: 541.4, - high: 545.5, - low: 537.5, - close: 539.7, - volume: 1449089 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-19`, - open: 538, - high: 543.1, - low: 538, - close: 542.9, - volume: 987478 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-20`, - open: 543.1, - high: 543.8, - low: 535.8, - close: 539, - volume: 1441212 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-23`, - open: 536, - high: 536.4, - low: 529.4, - close: 531.9, - volume: 1453907 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-24`, - open: 530, - high: 536.8, - low: 528.3, - close: 536.1, - volume: 1002393 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-25`, - open: 535.9, - high: 546.2, - low: 535.4, - close: 543.9, - volume: 1821041 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-26`, - open: 543.2, - high: 556.1, - low: 541.5, - close: 555.5, - volume: 2305219 - })); - this.push(new StockGoogleItem( - { - date: `2015-01-27`, - open: 554.2, - high: 564.7, - low: 552.9, - close: 558.4, - volume: 2403553 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-02`, - open: 560.5, - high: 572.1, - low: 558.8, - close: 571.3, - volume: 2123796 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-03`, - open: 570.5, - high: 575.4, - low: 566.5, - close: 573.6, - volume: 1700084 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-04`, - open: 571.9, - high: 577.1, - low: 568, - close: 573.4, - volume: 1871694 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-05`, - open: 575, - high: 577.9, - low: 573.4, - close: 575.3, - volume: 1385818 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-06`, - open: 574.9, - high: 576.7, - low: 566.8, - close: 567.7, - volume: 1654561 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-09`, - open: 566.9, - high: 570.3, - low: 563.5, - close: 568.9, - volume: 1059336 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-10`, - open: 564.3, - high: 564.9, - low: 554.7, - close: 555, - volume: 1787357 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-11`, - open: 555.1, - high: 558.1, - low: 550.7, - close: 551.2, - volume: 1815763 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-12`, - open: 553.5, - high: 556.4, - low: 550.5, - close: 555.5, - volume: 1385772 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-13`, - open: 553.5, - high: 558.4, - low: 544.2, - close: 547.3, - volume: 1698872 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-16`, - open: 551, - high: 556.9, - low: 546, - close: 554.5, - volume: 1636493 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-17`, - open: 551.7, - high: 553.8, - low: 548, - close: 550.8, - volume: 1800570 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-18`, - open: 552.5, - high: 559.8, - low: 547, - close: 559.5, - volume: 2128714 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-19`, - open: 559.4, - high: 560.8, - low: 556.1, - close: 558, - volume: 1194049 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-20`, - open: 561.6, - high: 561.7, - low: 559, - close: 560.4, - volume: 2609690 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-23`, - open: 560.4, - high: 562.4, - low: 555.8, - close: 558.8, - volume: 1639306 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-24`, - open: 562.6, - high: 574.6, - low: 561.2, - close: 570.2, - volume: 2576234 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-25`, - open: 570.5, - high: 572.3, - low: 558.7, - close: 558.8, - volume: 2146384 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-26`, - open: 557.6, - high: 558.9, - low: 550.6, - close: 555.2, - volume: 1568331 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-27`, - open: 553, - high: 555.3, - low: 548.1, - close: 548.3, - volume: 1892323 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-30`, - open: 551.6, - high: 553.5, - low: 548.2, - close: 552, - volume: 1283958 - })); - this.push(new StockGoogleItem( - { - date: `2015-02-31`, - open: 550, - high: 554.7, - low: 546.7, - close: 548, - volume: 1583677 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-01`, - open: 548.6, - high: 551.1, - low: 539.5, - close: 542.6, - volume: 1957718 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-02`, - open: 540.9, - high: 540.9, - low: 533.9, - close: 535.5, - volume: 1711737 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-06`, - open: 532.2, - high: 538.4, - low: 529.6, - close: 536.8, - volume: 1320767 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-07`, - open: 538.1, - high: 542.7, - low: 536, - close: 537, - volume: 1299298 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-08`, - open: 538.4, - high: 543.9, - low: 538.4, - close: 541.6, - volume: 1175332 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-09`, - open: 541, - high: 542, - low: 535.5, - close: 540.8, - volume: 1553586 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-10`, - open: 542.3, - high: 542.3, - low: 537.3, - close: 540, - volume: 1405574 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-13`, - open: 538.4, - high: 544.1, - low: 537.3, - close: 539.2, - volume: 1640809 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-14`, - open: 536.3, - high: 537.6, - low: 528.1, - close: 530.4, - volume: 2597043 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-15`, - open: 528.7, - high: 534.7, - low: 523.2, - close: 532.5, - volume: 2312512 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-16`, - open: 529.9, - high: 535.6, - low: 529.6, - close: 533.8, - volume: 1296304 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-17`, - open: 528.7, - high: 529.8, - low: 521, - close: 524, - volume: 2145955 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-20`, - open: 525.6, - high: 536.1, - low: 524.5, - close: 535.4, - volume: 1675487 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-21`, - open: 537.5, - high: 539.4, - low: 533.7, - close: 534, - volume: 1839668 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-22`, - open: 534.4, - high: 541.1, - low: 531.8, - close: 539.4, - volume: 1589248 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-23`, - open: 541, - high: 551, - low: 540.2, - close: 547, - volume: 4173376 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-24`, - open: 566.1, - high: 571.1, - low: 557.3, - close: 565.1, - volume: 4919031 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-27`, - open: 563.4, - high: 566, - low: 553.2, - close: 555.4, - volume: 2398039 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-28`, - open: 554.6, - high: 556, - low: 550.4, - close: 553.7, - volume: 1490983 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-29`, - open: 550.5, - high: 553.7, - low: 546.9, - close: 549.1, - volume: 1698761 - })); - this.push(new StockGoogleItem( - { - date: `2015-03-30`, - open: 547.9, - high: 548.6, - low: 535, - close: 537.3, - volume: 2082214 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-01`, - open: 538.4, - high: 539.5, - low: 532.1, - close: 537.9, - volume: 1768181 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-04`, - open: 538.5, - high: 544.1, - low: 535.1, - close: 540.8, - volume: 1307960 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-05`, - open: 538.2, - high: 539.7, - low: 530.4, - close: 530.8, - volume: 1383068 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-06`, - open: 531.2, - high: 532.4, - low: 521.1, - close: 524.2, - volume: 1566987 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-07`, - open: 524, - high: 533.5, - low: 521.8, - close: 530.7, - volume: 1546278 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-08`, - open: 536.6, - high: 541.1, - low: 536, - close: 538.2, - volume: 1527615 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-11`, - open: 538.4, - high: 542, - low: 535.4, - close: 535.7, - volume: 905285 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-12`, - open: 531.6, - high: 533.2, - low: 525.3, - close: 529, - volume: 1634174 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-13`, - open: 530.6, - high: 534.3, - low: 528.7, - close: 529.6, - volume: 1253063 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-14`, - open: 533.8, - high: 539, - low: 532.4, - close: 538.4, - volume: 1403935 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-15`, - open: 539.2, - high: 539.3, - low: 530.4, - close: 533.9, - volume: 1971343 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-18`, - open: 532, - high: 534.8, - low: 528.9, - close: 532.3, - volume: 2003421 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-19`, - open: 534, - high: 540.7, - low: 533, - close: 537.4, - volume: 1966947 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-20`, - open: 538.5, - high: 542.9, - low: 533, - close: 539.3, - volume: 1430826 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-21`, - open: 538, - high: 543.8, - low: 536, - close: 542.5, - volume: 1462695 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-22`, - open: 540.1, - high: 544.2, - low: 539.5, - close: 540.1, - volume: 1176214 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-26`, - open: 538.1, - high: 539, - low: 529.9, - close: 532.3, - volume: 2406512 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-27`, - open: 532.8, - high: 540.5, - low: 531.7, - close: 539.8, - volume: 1525019 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-28`, - open: 538, - high: 540.6, - low: 536.3, - close: 539.8, - volume: 1029849 - })); - this.push(new StockGoogleItem( - { - date: `2015-04-29`, - open: 537.4, - high: 538.6, - low: 531.5, - close: 532.1, - volume: 2597407 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-01`, - open: 536.8, - high: 536.8, - low: 529.8, - close: 534, - volume: 1904332 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-02`, - open: 532.9, - high: 543, - low: 531.3, - close: 539.2, - volume: 1938989 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-03`, - open: 539.9, - high: 543.5, - low: 537.1, - close: 540.3, - volume: 1717036 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-04`, - open: 537.8, - high: 540.6, - low: 534.3, - close: 536.7, - volume: 1348337 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-05`, - open: 536.4, - high: 537.2, - low: 532.5, - close: 533.3, - volume: 1388220 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-08`, - open: 533.3, - high: 534.1, - low: 526.2, - close: 526.8, - volume: 1524139 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-09`, - open: 527.6, - high: 529.2, - low: 523, - close: 526.7, - volume: 1455266 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-10`, - open: 529.4, - high: 538.4, - low: 529.4, - close: 536.7, - volume: 1814958 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-11`, - open: 538.4, - high: 539, - low: 533, - close: 534.6, - volume: 1217536 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-12`, - open: 531.6, - high: 533.1, - low: 530.2, - close: 532.3, - volume: 955789 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-15`, - open: 528, - high: 528.3, - low: 524, - close: 527.2, - volume: 1632702 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-16`, - open: 528.4, - high: 529.6, - low: 525.6, - close: 528.1, - volume: 1071814 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-17`, - open: 529.4, - high: 531, - low: 525.1, - close: 529.3, - volume: 1294216 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-18`, - open: 531, - high: 538.1, - low: 530.8, - close: 536.7, - volume: 1833109 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-19`, - open: 537.2, - high: 538.3, - low: 533, - close: 536.7, - volume: 1893497 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-22`, - open: 539.6, - high: 543.7, - low: 537.5, - close: 538.2, - volume: 1250282 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-23`, - open: 539.6, - high: 541.5, - low: 535.3, - close: 540.5, - volume: 1197450 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-24`, - open: 540, - high: 540, - low: 535.7, - close: 537.8, - volume: 1286608 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-25`, - open: 538.9, - high: 540.9, - low: 535.2, - close: 535.2, - volume: 1335697 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-26`, - open: 537.3, - high: 537.8, - low: 531.4, - close: 531.7, - volume: 2109130 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-29`, - open: 525, - high: 528.6, - low: 520.5, - close: 521.5, - volume: 1937821 - })); - this.push(new StockGoogleItem( - { - date: `2015-05-30`, - open: 526, - high: 526.3, - low: 520.5, - close: 520.5, - volume: 2235595 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-01`, - open: 524.7, - high: 525.7, - low: 518.2, - close: 521.8, - volume: 1961354 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-02`, - open: 521.1, - high: 524.6, - low: 521.1, - close: 523.4, - volume: 1235903 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-06`, - open: 519.5, - high: 525.3, - low: 519, - close: 522.9, - volume: 1280525 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-07`, - open: 523.1, - high: 526.2, - low: 515.2, - close: 525, - volume: 1597229 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-08`, - open: 521, - high: 522.7, - low: 516.1, - close: 516.8, - volume: 1296699 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-09`, - open: 523.1, - high: 523.8, - low: 520.4, - close: 520.7, - volume: 1842347 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-10`, - open: 526.3, - high: 532.6, - low: 525.5, - close: 530.1, - volume: 1956682 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-13`, - open: 532.9, - high: 547.1, - low: 532.4, - close: 546.5, - volume: 2206475 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-14`, - open: 546.8, - high: 565.9, - low: 546.7, - close: 561.1, - volume: 3244066 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-15`, - open: 560.1, - high: 566.5, - low: 556.8, - close: 560.2, - volume: 1784554 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-16`, - open: 565.1, - high: 580.7, - low: 565, - close: 579.9, - volume: 4768318 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-17`, - open: 649, - high: 674.5, - low: 645, - close: 672.9, - volume: 11164943 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-20`, - open: 659.2, - high: 668.9, - low: 653, - close: 663, - volume: 5860872 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-21`, - open: 655.2, - high: 673, - low: 654.3, - close: 662.3, - volume: 3377196 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-22`, - open: 660.9, - high: 678.6, - low: 659, - close: 662.1, - volume: 3929309 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-23`, - open: 661.3, - high: 663.6, - low: 641, - close: 644.3, - volume: 3029109 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-24`, - open: 647, - high: 648.2, - low: 622.5, - close: 623.6, - volume: 3625747 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-27`, - open: 621, - high: 634.3, - low: 620.5, - close: 627.3, - volume: 2675381 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-28`, - open: 632.8, - high: 632.8, - low: 623.3, - close: 628, - volume: 1727327 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-29`, - open: 628.8, - high: 633.4, - low: 622.6, - close: 631.9, - volume: 1575069 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-30`, - open: 630, - high: 635.2, - low: 622, - close: 632.6, - volume: 1474203 - })); - this.push(new StockGoogleItem( - { - date: `2015-06-31`, - open: 631.4, - high: 632.9, - low: 625.5, - close: 625.6, - volume: 1706149 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-03`, - open: 625.3, - high: 633.1, - low: 625.3, - close: 631.2, - volume: 1304511 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-04`, - open: 628.4, - high: 634.8, - low: 627.2, - close: 629.3, - volume: 1490881 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-05`, - open: 634.3, - high: 647.9, - low: 633.2, - close: 643.8, - volume: 2334266 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-06`, - open: 645, - high: 645.4, - low: 632.3, - close: 642.7, - volume: 1572600 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-07`, - open: 640.2, - high: 642.7, - low: 629.7, - close: 635.3, - volume: 1403865 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-10`, - open: 639.5, - high: 643.4, - low: 631.3, - close: 633.7, - volume: 1809205 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-11`, - open: 669.2, - high: 674.9, - low: 654.3, - close: 660.8, - volume: 5029203 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-12`, - open: 663.1, - high: 665, - low: 652.3, - close: 659.6, - volume: 2940803 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-13`, - open: 659.3, - high: 664.5, - low: 651.7, - close: 656.5, - volume: 1810749 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-14`, - open: 655, - high: 659.9, - low: 652.7, - close: 657.1, - volume: 1072061 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-17`, - open: 656.8, - high: 661.4, - low: 651.2, - close: 660.9, - volume: 1051699 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-18`, - open: 661.9, - high: 664, - low: 653.5, - close: 656.1, - volume: 1456059 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-19`, - open: 656.6, - high: 667, - low: 654.2, - close: 660.9, - volume: 2134098 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-20`, - open: 655.5, - high: 663, - low: 642.9, - close: 646.8, - volume: 2855299 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-21`, - open: 639.8, - high: 640, - low: 612.3, - close: 612.5, - volume: 4265183 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-24`, - open: 573, - high: 614, - low: 565, - close: 589.6, - volume: 5770302 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-25`, - open: 614.9, - high: 617.5, - low: 581.1, - close: 582.1, - volume: 3537966 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-26`, - open: 610.4, - high: 631.7, - low: 599, - close: 628.6, - volume: 4235891 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-27`, - open: 639.4, - high: 643.6, - low: 622, - close: 637.6, - volume: 3491336 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-28`, - open: 632.8, - high: 636.9, - low: 624.6, - close: 630.4, - volume: 1978733 - })); - this.push(new StockGoogleItem( - { - date: `2015-07-31`, - open: 627.5, - high: 635.8, - low: 617.7, - close: 618.3, - volume: 2176737 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-01`, - open: 602.4, - high: 612.9, - low: 594.1, - close: 597.8, - volume: 3702105 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-02`, - open: 605.6, - high: 614.3, - low: 599.7, - close: 614.3, - volume: 2575620 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-03`, - open: 617, - high: 619.7, - low: 602.8, - close: 606.3, - volume: 1759572 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-04`, - open: 600, - high: 603.5, - low: 595.3, - close: 600.7, - volume: 2089453 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-08`, - open: 612.5, - high: 616.3, - low: 604.1, - close: 614.7, - volume: 2279538 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-09`, - open: 621.2, - high: 626.5, - low: 609.6, - close: 612.7, - volume: 1702094 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-10`, - open: 613.1, - high: 624.2, - low: 611.4, - close: 621.4, - volume: 1900526 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-11`, - open: 619.8, - high: 625.8, - low: 617.4, - close: 625.8, - volume: 1373545 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-14`, - open: 625.7, - high: 625.9, - low: 619.4, - close: 623.2, - volume: 1702271 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-15`, - open: 626.7, - high: 638.7, - low: 623.8, - close: 635.1, - volume: 2084397 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-16`, - open: 635.5, - high: 638, - low: 632.3, - close: 636, - volume: 1286454 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-17`, - open: 637.8, - high: 650.9, - low: 635, - close: 642.9, - volume: 2274690 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-18`, - open: 636.8, - high: 640, - low: 627, - close: 629.3, - volume: 5133386 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-21`, - open: 634.4, - high: 636.5, - low: 625.9, - close: 635.4, - volume: 1788506 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-22`, - open: 627, - high: 627.5, - low: 615.4, - close: 622.7, - volume: 2562869 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-23`, - open: 622, - high: 628.9, - low: 620, - close: 622.4, - volume: 1470949 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-24`, - open: 616.6, - high: 627.3, - low: 612.4, - close: 625.8, - volume: 2240098 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-25`, - open: 629.8, - high: 629.8, - low: 611, - close: 612, - volume: 2174009 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-28`, - open: 610.3, - high: 614.6, - low: 589.4, - close: 594.9, - volume: 3127667 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-29`, - open: 597.3, - high: 605, - low: 590.2, - close: 595, - volume: 2310284 - })); - this.push(new StockGoogleItem( - { - date: `2015-08-30`, - open: 603.3, - high: 608.8, - low: 600.7, - close: 608.4, - volume: 2413441 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-01`, - open: 608.4, - high: 612.1, - low: 599.9, - close: 611.3, - volume: 1867601 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-02`, - open: 607.2, - high: 627.3, - low: 603.1, - close: 626.9, - volume: 2684805 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-05`, - open: 632, - high: 643, - low: 627, - close: 641.5, - volume: 1787880 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-06`, - open: 638.8, - high: 649.3, - low: 636.5, - close: 645.4, - volume: 2166264 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-07`, - open: 649.2, - high: 650.6, - low: 632.1, - close: 642.4, - volume: 2089776 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-08`, - open: 641.4, - high: 644.5, - low: 625.6, - close: 639.2, - volume: 2180441 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-09`, - open: 640, - high: 646, - low: 635.3, - close: 643.6, - volume: 1645844 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-12`, - open: 642.1, - high: 648.5, - low: 639, - close: 646.7, - volume: 1275206 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-13`, - open: 643.1, - high: 657.8, - low: 643.1, - close: 652.3, - volume: 1790704 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-14`, - open: 653.2, - high: 659.4, - low: 648.9, - close: 651.2, - volume: 1412040 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-15`, - open: 654.7, - high: 663.1, - low: 654.5, - close: 661.7, - volume: 1830524 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-16`, - open: 664.1, - high: 665, - low: 657.2, - close: 662.2, - volume: 1606138 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-19`, - open: 661.2, - high: 666.8, - low: 659.6, - close: 666.1, - volume: 1465339 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-20`, - open: 664, - high: 664.7, - low: 644.2, - close: 650.3, - volume: 2490016 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-21`, - open: 654.1, - high: 655.9, - low: 641.7, - close: 642.6, - volume: 1791099 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-22`, - open: 646.7, - high: 657.8, - low: 644, - close: 651.8, - volume: 3782103 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-23`, - open: 727.5, - high: 730, - low: 701.5, - close: 702, - volume: 6642504 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-26`, - open: 701.5, - high: 719.1, - low: 701.3, - close: 712.8, - volume: 2701629 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-27`, - open: 707.4, - high: 713.6, - low: 704.5, - close: 708.5, - volume: 2224309 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-28`, - open: 707.3, - high: 713, - low: 703.1, - close: 713, - volume: 2176623 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-29`, - open: 710.5, - high: 718.3, - low: 710, - close: 716.9, - volume: 1454128 - })); - this.push(new StockGoogleItem( - { - date: `2015-09-30`, - open: 715.7, - high: 718, - low: 710, - close: 710.8, - volume: 1903980 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-02`, - open: 711.1, - high: 721.6, - low: 705.9, - close: 721.1, - volume: 1871073 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-03`, - open: 718.9, - high: 724.6, - low: 714.7, - close: 722.2, - volume: 1560770 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-04`, - open: 722, - high: 733.1, - low: 721.9, - close: 728.1, - volume: 1704575 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-05`, - open: 729.5, - high: 739.5, - low: 729.5, - close: 731.3, - volume: 1860367 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-06`, - open: 731.5, - high: 735.4, - low: 727, - close: 733.8, - volume: 1509656 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-09`, - open: 730.2, - high: 734.7, - low: 719.4, - close: 724.9, - volume: 2065619 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-10`, - open: 724.4, - high: 730.6, - low: 718.5, - close: 728.3, - volume: 1603937 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-11`, - open: 732.5, - high: 741, - low: 730.2, - close: 735.4, - volume: 1366375 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-12`, - open: 731, - high: 737.8, - low: 728.6, - close: 731.2, - volume: 1668048 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-13`, - open: 729.2, - high: 731.1, - low: 716.7, - close: 717, - volume: 2062982 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-16`, - open: 715.6, - high: 729.5, - low: 711.3, - close: 729, - volume: 1891074 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-17`, - open: 729.3, - high: 731.8, - low: 723, - close: 725.3, - volume: 1491709 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-18`, - open: 727.6, - high: 741.4, - low: 727, - close: 740, - volume: 1671588 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-19`, - open: 738.7, - high: 742, - low: 737.4, - close: 738.4, - volume: 1327109 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-20`, - open: 746.5, - high: 757.9, - low: 743, - close: 756.6, - volume: 2212302 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-23`, - open: 757.5, - high: 762.7, - low: 751.8, - close: 756, - volume: 1414487 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-24`, - open: 752, - high: 755.3, - low: 737.6, - close: 748.3, - volume: 2333130 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-25`, - open: 748.1, - high: 752, - low: 746.1, - close: 748.1, - volume: 1122224 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-27`, - open: 748.5, - high: 753.4, - low: 747.5, - close: 750.3, - volume: 838518 - })); - this.push(new StockGoogleItem( - { - date: `2015-10-30`, - open: 748.8, - high: 754.9, - low: 741.3, - close: 742.6, - volume: 2035261 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-01`, - open: 747.1, - high: 769, - low: 746.7, - close: 767, - volume: 2129940 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-02`, - open: 768.9, - high: 776, - low: 759, - close: 762.4, - volume: 2195686 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-03`, - open: 766, - high: 769, - low: 745.6, - close: 752.5, - volume: 2590641 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-04`, - open: 753.1, - high: 768.5, - low: 750, - close: 766.8, - volume: 2757283 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-07`, - open: 767.8, - high: 768.7, - low: 755.1, - close: 763.3, - volume: 1812314 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-08`, - open: 757.9, - high: 764.8, - low: 754.2, - close: 762.4, - volume: 1829475 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-09`, - open: 759.2, - high: 764.2, - low: 737, - close: 751.6, - volume: 2699990 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-10`, - open: 752.9, - high: 755.9, - low: 743.8, - close: 749.5, - volume: 1988380 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-11`, - open: 741.2, - high: 745.7, - low: 736.8, - close: 738.9, - volume: 2224410 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-14`, - open: 741.8, - high: 748.7, - low: 724.2, - close: 747.8, - volume: 2412497 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-15`, - open: 753, - high: 758.1, - low: 743, - close: 743.4, - volume: 2666229 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-16`, - open: 750, - high: 760.6, - low: 739.4, - close: 758.1, - volume: 1993251 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-17`, - open: 762.4, - high: 762.7, - low: 749, - close: 749.4, - volume: 1553418 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-18`, - open: 746.5, - high: 754.1, - low: 738.1, - close: 739.3, - volume: 3148743 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-21`, - open: 746.1, - high: 750, - low: 740, - close: 747.8, - volume: 1525703 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-22`, - open: 751.6, - high: 754.9, - low: 745.5, - close: 750, - volume: 1365520 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-23`, - open: 753.5, - high: 754.2, - low: 744, - close: 750.3, - volume: 1566726 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-24`, - open: 749.5, - high: 751.4, - low: 746.6, - close: 748.4, - volume: 527223 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-28`, - open: 752.9, - high: 763, - low: 749.5, - close: 762.5, - volume: 1515716 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-29`, - open: 766.7, - high: 780, - low: 766.4, - close: 776.6, - volume: 1765012 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-30`, - open: 776.6, - high: 777.6, - low: 766.9, - close: 771, - volume: 1293521 - })); - this.push(new StockGoogleItem( - { - date: `2015-11-31`, - open: 769.5, - high: 769.5, - low: 758.3, - close: 758.9, - volume: 1500923 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-04`, - open: 743, - high: 744.1, - low: 731.3, - close: 741.8, - volume: 3258199 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-05`, - open: 746.5, - high: 752, - low: 738.6, - close: 742.6, - volume: 1950691 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-06`, - open: 730, - high: 747.2, - low: 728.9, - close: 743.6, - volume: 1947034 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-07`, - open: 730.3, - high: 738.5, - low: 719.1, - close: 726.4, - volume: 2963741 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-08`, - open: 731.5, - high: 733.2, - low: 713, - close: 714.5, - volume: 2450857 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-11`, - open: 716.6, - high: 718.9, - low: 703.5, - close: 716, - volume: 2090621 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-12`, - open: 721.7, - high: 728.8, - low: 717.3, - close: 726.1, - volume: 2024509 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-13`, - open: 730.9, - high: 734.7, - low: 698.6, - close: 700.6, - volume: 2468295 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-14`, - open: 705.4, - high: 721.9, - low: 689.1, - close: 714.7, - volume: 2211853 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-15`, - open: 692.3, - high: 706.7, - low: 685.4, - close: 694.5, - volume: 3592449 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-19`, - open: 703.3, - high: 710, - low: 693.4, - close: 701.8, - volume: 2258479 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-20`, - open: 688.6, - high: 706.9, - low: 673.3, - close: 698.5, - volume: 3439386 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-21`, - open: 702.2, - high: 719.2, - low: 694.5, - close: 706.6, - volume: 2410263 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-22`, - open: 723.6, - high: 728.1, - low: 720.1, - close: 725.3, - volume: 2006528 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-25`, - open: 723.6, - high: 729.7, - low: 710, - close: 711.7, - volume: 1704641 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-26`, - open: 713.9, - high: 718.3, - low: 706.5, - close: 713, - volume: 1324300 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-27`, - open: 713.7, - high: 718.2, - low: 694.4, - close: 700, - volume: 2139970 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-28`, - open: 722.2, - high: 733.7, - low: 712.4, - close: 731, - volume: 2658016 - })); - this.push(new StockGoogleItem( - { - date: `2016-00-29`, - open: 731.5, - high: 745, - low: 726.8, - close: 743, - volume: 3394935 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-01`, - open: 750.5, - high: 757.9, - low: 743.3, - close: 752, - volume: 4801816 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-02`, - open: 784.5, - high: 789.9, - low: 764.6, - close: 764.6, - volume: 6332431 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-03`, - open: 770.2, - high: 774.5, - low: 720.5, - close: 727, - volume: 6162333 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-04`, - open: 722.8, - high: 727, - low: 701.9, - close: 708, - volume: 5145855 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-05`, - open: 703.9, - high: 704, - low: 680.1, - close: 683.6, - volume: 5069985 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-08`, - open: 667.9, - high: 684, - low: 663.1, - close: 682.7, - volume: 4212541 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-09`, - open: 672.3, - high: 699.9, - low: 668.8, - close: 678.1, - volume: 3604335 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-10`, - open: 686.9, - high: 701.3, - low: 682.1, - close: 684.1, - volume: 2627379 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-11`, - open: 675, - high: 689.4, - low: 668.9, - close: 683.1, - volume: 3007223 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-12`, - open: 690.3, - high: 693.8, - low: 678.6, - close: 682.4, - volume: 2129831 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-16`, - open: 693, - high: 698, - low: 685, - close: 691, - volume: 2497024 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-17`, - open: 699, - high: 709.8, - low: 691.4, - close: 708.4, - volume: 2466808 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-18`, - open: 710, - high: 712.4, - low: 696, - close: 697.4, - volume: 1859130 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-19`, - open: 695, - high: 703.1, - low: 694, - close: 700.9, - volume: 1582260 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-22`, - open: 707.5, - high: 713.2, - low: 702.5, - close: 706.5, - volume: 1946067 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-23`, - open: 701.5, - high: 708.4, - low: 693.6, - close: 695.9, - volume: 1999699 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-24`, - open: 688.9, - high: 700, - low: 680.8, - close: 699.6, - volume: 1958611 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-25`, - open: 700, - high: 706, - low: 690.6, - close: 705.8, - volume: 1631855 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-26`, - open: 708.6, - high: 713.4, - low: 700.9, - close: 705.1, - volume: 2239978 - })); - this.push(new StockGoogleItem( - { - date: `2016-01-29`, - open: 700.3, - high: 710.9, - low: 697.7, - close: 697.8, - volume: 2280280 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-01`, - open: 703.6, - high: 718.8, - low: 699.8, - close: 718.8, - volume: 2147442 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-02`, - open: 719, - high: 720, - low: 712, - close: 718.9, - volume: 1627753 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-03`, - open: 718.7, - high: 719.5, - low: 706, - close: 712.4, - volume: 1956761 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-04`, - open: 715, - high: 716.5, - low: 706, - close: 710.9, - volume: 1967873 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-07`, - open: 706.9, - high: 708.1, - low: 686.9, - close: 695.2, - volume: 2985094 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-08`, - open: 688.6, - high: 703.8, - low: 685.3, - close: 694, - volume: 2063357 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-09`, - open: 698.5, - high: 705.7, - low: 694, - close: 705.2, - volume: 1418704 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-10`, - open: 708.1, - high: 716.4, - low: 703.4, - close: 712.8, - volume: 2829412 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-11`, - open: 720, - high: 726.9, - low: 717.1, - close: 726.8, - volume: 1963907 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-14`, - open: 726.8, - high: 735.5, - low: 725.1, - close: 730.5, - volume: 1716910 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-15`, - open: 726.9, - high: 732.3, - low: 724.8, - close: 728.3, - volume: 1720965 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-16`, - open: 726.4, - high: 737.5, - low: 724.5, - close: 736.1, - volume: 1572329 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-17`, - open: 736.5, - high: 743.1, - low: 736, - close: 737.8, - volume: 1856800 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-18`, - open: 741.9, - high: 742, - low: 731.8, - close: 737.6, - volume: 2796376 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-21`, - open: 736.5, - high: 742.5, - low: 733.5, - close: 742.1, - volume: 1831839 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-22`, - open: 737.5, - high: 745, - low: 737.5, - close: 740.8, - volume: 1264396 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-23`, - open: 742.4, - high: 745.7, - low: 736.1, - close: 738.1, - volume: 1421861 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-24`, - open: 732, - high: 737.8, - low: 731, - close: 735.3, - volume: 1564782 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-28`, - open: 736.8, - high: 739, - low: 732.5, - close: 733.5, - volume: 1299812 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-29`, - open: 734.6, - high: 747.3, - low: 728.8, - close: 744.8, - volume: 1902128 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-30`, - open: 750.1, - high: 757.9, - low: 748.7, - close: 750.5, - volume: 1780998 - })); - this.push(new StockGoogleItem( - { - date: `2016-02-31`, - open: 749.3, - high: 750.9, - low: 740.9, - close: 745, - volume: 1712375 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-01`, - open: 738.6, - high: 750.3, - low: 737, - close: 749.9, - volume: 1574870 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-04`, - open: 750.1, - high: 752.8, - low: 742.4, - close: 745.3, - volume: 1131843 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-05`, - open: 738, - high: 742.8, - low: 735.4, - close: 737.8, - volume: 1129829 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-06`, - open: 735.8, - high: 746.2, - low: 735.6, - close: 745.7, - volume: 1050193 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-07`, - open: 745.4, - high: 747, - low: 736.3, - close: 740.3, - volume: 1429504 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-08`, - open: 744, - high: 745.5, - low: 735.5, - close: 739.1, - volume: 1285755 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-11`, - open: 743, - high: 745, - low: 736, - close: 736.1, - volume: 1211762 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-12`, - open: 738, - high: 743.8, - low: 731, - close: 743.1, - volume: 1349734 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-13`, - open: 749.2, - high: 754.4, - low: 744.3, - close: 751.7, - volume: 1707095 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-14`, - open: 754, - high: 757.3, - low: 752.7, - close: 753.2, - volume: 1130971 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-15`, - open: 754, - high: 761, - low: 752.7, - close: 759, - volume: 1800413 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-18`, - open: 760.5, - high: 768, - low: 757.3, - close: 766.6, - volume: 1555953 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-19`, - open: 769.5, - high: 769.9, - low: 749.3, - close: 753.9, - volume: 2027642 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-20`, - open: 758, - high: 758.1, - low: 750, - close: 752.7, - volume: 1525591 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-21`, - open: 755.4, - high: 760.5, - low: 749.5, - close: 759.1, - volume: 2743620 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-22`, - open: 726.3, - high: 736.1, - low: 713.6, - close: 718.8, - volume: 5939199 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-25`, - open: 716.1, - high: 723.9, - low: 715.6, - close: 723.1, - volume: 1955567 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-26`, - open: 725.4, - high: 725.8, - low: 703, - close: 708.1, - volume: 2727185 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-27`, - open: 707.3, - high: 709, - low: 692.4, - close: 705.8, - volume: 3086722 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-28`, - open: 708.3, - high: 714.2, - low: 689.5, - close: 691, - volume: 2851108 - })); - this.push(new StockGoogleItem( - { - date: `2016-03-29`, - open: 690.7, - high: 697.6, - low: 689, - close: 693, - volume: 2484273 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-02`, - open: 697.6, - high: 700.6, - low: 691, - close: 698.2, - volume: 1644126 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-03`, - open: 696.9, - high: 697.8, - low: 692, - close: 692.4, - volume: 1530993 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-04`, - open: 690.5, - high: 699.8, - low: 689, - close: 695.7, - volume: 1688569 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-05`, - open: 697.7, - high: 702.3, - low: 695.7, - close: 701.4, - volume: 1677405 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-06`, - open: 698.4, - high: 711.9, - low: 698.1, - close: 711.1, - volume: 1826146 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-09`, - open: 712, - high: 718.7, - low: 710, - close: 712.9, - volume: 1508423 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-10`, - open: 716.8, - high: 723.5, - low: 715.7, - close: 723.2, - volume: 1563105 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-11`, - open: 723.4, - high: 724.5, - low: 712.8, - close: 715.3, - volume: 1686823 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-12`, - open: 717.1, - high: 719.3, - low: 709, - close: 713.3, - volume: 1360732 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-13`, - open: 711.9, - high: 716.7, - low: 709.3, - close: 710.8, - volume: 1307338 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-16`, - open: 709.1, - high: 718.5, - low: 705.6, - close: 716.5, - volume: 1316177 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-17`, - open: 716, - high: 721.5, - low: 704.1, - close: 706.2, - volume: 1999456 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-18`, - open: 703.7, - high: 711.6, - low: 700.6, - close: 706.6, - volume: 1763394 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-19`, - open: 702.4, - high: 706, - low: 696.8, - close: 700.3, - volume: 1656321 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-20`, - open: 701.6, - high: 714.6, - low: 700.5, - close: 709.7, - volume: 1816027 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-23`, - open: 706.5, - high: 711.5, - low: 704.2, - close: 704.2, - volume: 1320927 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-24`, - open: 706.9, - high: 721, - low: 706.9, - close: 720.1, - volume: 1920411 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-25`, - open: 720.8, - high: 727.5, - low: 719.7, - close: 725.3, - volume: 1629198 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-26`, - open: 722.9, - high: 728.3, - low: 720.3, - close: 724.1, - volume: 1542866 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-27`, - open: 724, - high: 733.9, - low: 724, - close: 732.7, - volume: 1974026 - })); - this.push(new StockGoogleItem( - { - date: `2016-04-31`, - open: 731.7, - high: 739.7, - low: 731.3, - close: 735.7, - volume: 2129545 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-01`, - open: 734.5, - high: 737.2, - low: 730.7, - close: 734.1, - volume: 1253593 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-02`, - open: 732.5, - high: 733, - low: 724.2, - close: 730.4, - volume: 1341807 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-03`, - open: 729.3, - high: 729.5, - low: 720.6, - close: 722.3, - volume: 1226253 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-06`, - open: 724.9, - high: 724.9, - low: 714.6, - close: 716.5, - volume: 1566059 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-07`, - open: 719.8, - high: 722, - low: 716.5, - close: 716.6, - volume: 1336754 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-08`, - open: 724, - high: 728.6, - low: 720.6, - close: 728.3, - volume: 1583701 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-09`, - open: 722.9, - high: 729.5, - low: 722.3, - close: 728.6, - volume: 988914 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-10`, - open: 719.5, - high: 725.9, - low: 716.4, - close: 719.4, - volume: 1216443 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-13`, - open: 716.5, - high: 725.4, - low: 716.5, - close: 718.4, - volume: 1258930 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-14`, - open: 716.5, - high: 722.5, - low: 713.1, - close: 718.3, - volume: 1306065 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-15`, - open: 719, - high: 723, - low: 717.3, - close: 718.9, - volume: 1214517 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-16`, - open: 714.9, - high: 716.6, - low: 703.3, - close: 710.4, - volume: 1982471 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-17`, - open: 708.6, - high: 708.8, - low: 688.5, - close: 691.7, - volume: 3402357 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-20`, - open: 698.8, - high: 702.5, - low: 693.4, - close: 693.7, - volume: 2082538 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-21`, - open: 698.4, - high: 702.8, - low: 692, - close: 695.9, - volume: 1465634 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-22`, - open: 699.1, - high: 700.9, - low: 693.1, - close: 697.5, - volume: 1184318 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-23`, - open: 697.5, - high: 702, - low: 687, - close: 701.9, - volume: 2171415 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-24`, - open: 675.2, - high: 689.4, - low: 673.5, - close: 675.2, - volume: 4449022 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-27`, - open: 671, - high: 672.3, - low: 663.3, - close: 668.3, - volume: 2641085 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-28`, - open: 679, - high: 680.3, - low: 673, - close: 680, - volume: 2173762 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-29`, - open: 683, - high: 687.4, - low: 681.4, - close: 684.1, - volume: 1932561 - })); - this.push(new StockGoogleItem( - { - date: `2016-05-30`, - open: 685.5, - high: 692.3, - low: 683.6, - close: 692.1, - volume: 1597714 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-01`, - open: 692.2, - high: 700.6, - low: 692.1, - close: 699.2, - volume: 1344710 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-05`, - open: 696.1, - high: 696.9, - low: 688.9, - close: 694.5, - volume: 1462616 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-06`, - open: 690, - high: 701.7, - low: 689.1, - close: 697.8, - volume: 1411925 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-07`, - open: 698.1, - high: 698.2, - low: 688.2, - close: 695.4, - volume: 1304200 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-08`, - open: 699.5, - high: 705.7, - low: 696.4, - close: 705.6, - volume: 1575166 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-11`, - open: 708, - high: 716.5, - low: 707.2, - close: 715.1, - volume: 1111762 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-12`, - open: 719.1, - high: 722.9, - low: 715.9, - close: 720.6, - volume: 1336921 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-13`, - open: 723.6, - high: 724, - low: 716.9, - close: 717, - volume: 935876 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-14`, - open: 721.6, - high: 722.2, - low: 718, - close: 721, - volume: 950193 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-15`, - open: 725.7, - high: 725.7, - low: 719.1, - close: 719.9, - volume: 1279339 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-18`, - open: 722.7, - high: 736.1, - low: 721.2, - close: 733.8, - volume: 1295476 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-19`, - open: 729.9, - high: 737, - low: 729, - close: 737, - volume: 1227486 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-20`, - open: 737.3, - high: 742.1, - low: 737.1, - close: 741.2, - volume: 1289671 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-21`, - open: 740.4, - high: 741.7, - low: 735.8, - close: 738.6, - volume: 1026306 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-22`, - open: 741.9, - high: 743.2, - low: 736.6, - close: 742.7, - volume: 1259823 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-25`, - open: 740.7, - high: 742.6, - low: 737.5, - close: 739.8, - volume: 1032432 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-26`, - open: 739, - high: 741.7, - low: 734.3, - close: 738.4, - volume: 1186738 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-27`, - open: 738.3, - high: 744.5, - low: 737, - close: 741.8, - volume: 1512517 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-28`, - open: 747, - high: 748.6, - low: 739.3, - close: 745.9, - volume: 3530169 - })); - this.push(new StockGoogleItem( - { - date: `2016-06-29`, - open: 772.7, - high: 778.5, - low: 766.8, - close: 768.8, - volume: 3841482 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-01`, - open: 761.1, - high: 780.4, - low: 761.1, - close: 772.9, - volume: 2700470 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-02`, - open: 768.7, - high: 775.8, - low: 767.9, - close: 771.1, - volume: 1784525 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-03`, - open: 767.2, - high: 773.2, - low: 766.8, - close: 773.2, - volume: 1287421 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-04`, - open: 772.2, - high: 774.1, - low: 768.8, - close: 771.6, - volume: 1140254 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-05`, - open: 773.8, - high: 783, - low: 772.3, - close: 782.2, - volume: 1801205 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-08`, - open: 782, - high: 782.6, - low: 778.1, - close: 781.8, - volume: 1107857 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-09`, - open: 781.1, - high: 788.9, - low: 780.6, - close: 784.3, - volume: 1318894 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-10`, - open: 783.8, - high: 786.8, - low: 782.8, - close: 784.7, - volume: 786363 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-11`, - open: 785, - high: 789.8, - low: 783, - close: 784.9, - volume: 975113 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-12`, - open: 781.5, - high: 783.4, - low: 780.4, - close: 783.2, - volume: 740498 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-15`, - open: 783.8, - high: 787.5, - low: 780.1, - close: 782.4, - volume: 938186 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-16`, - open: 780.3, - high: 781, - low: 773.4, - close: 777.1, - volume: 1028047 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-17`, - open: 777.3, - high: 780.8, - low: 773.5, - close: 779.9, - volume: 924226 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-18`, - open: 780, - high: 782.9, - low: 777, - close: 777.5, - volume: 719429 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-19`, - open: 775, - high: 777.1, - low: 773.1, - close: 775.4, - volume: 861546 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-22`, - open: 773.3, - high: 774.5, - low: 770, - close: 772.1, - volume: 951362 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-23`, - open: 775.5, - high: 776.4, - low: 771.8, - close: 772.1, - volume: 928232 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-24`, - open: 770.6, - high: 774.5, - low: 767.1, - close: 769.6, - volume: 1071999 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-25`, - open: 767, - high: 771.9, - low: 763.2, - close: 769.4, - volume: 926883 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-26`, - open: 769, - high: 776.1, - low: 765.9, - close: 769.5, - volume: 1166681 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-29`, - open: 768.7, - high: 775, - low: 766.6, - close: 772.1, - volume: 847565 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-30`, - open: 769.3, - high: 774.5, - low: 766.8, - close: 769.1, - volume: 1130029 - })); - this.push(new StockGoogleItem( - { - date: `2016-07-31`, - open: 767, - high: 769.1, - low: 765.4, - close: 767, - volume: 1248556 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-01`, - open: 769.3, - high: 771, - low: 764.3, - close: 768.8, - volume: 925131 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-02`, - open: 773, - high: 773.9, - low: 768.4, - close: 771.5, - volume: 1072658 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-06`, - open: 773.5, - high: 782, - low: 771, - close: 780.1, - volume: 1442822 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-07`, - open: 780, - high: 782.7, - low: 776.2, - close: 780.4, - volume: 894021 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-08`, - open: 778.6, - high: 780.4, - low: 773.6, - close: 775.3, - volume: 1270264 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-09`, - open: 770.1, - high: 773.2, - low: 759.7, - close: 759.7, - volume: 1885496 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-12`, - open: 755.1, - high: 770.3, - low: 754, - close: 769, - volume: 1310986 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-13`, - open: 764.5, - high: 766.2, - low: 755.8, - close: 759.7, - volume: 1395046 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-14`, - open: 759.6, - high: 767.7, - low: 759.1, - close: 762.5, - volume: 1094490 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-15`, - open: 762.9, - high: 773.8, - low: 760, - close: 771.8, - volume: 1346751 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-16`, - open: 769.8, - high: 769.8, - low: 764.7, - close: 768.9, - volume: 2049338 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-19`, - open: 772.4, - high: 774, - low: 764.4, - close: 765.7, - volume: 1172824 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-20`, - open: 769, - high: 773.3, - low: 768.5, - close: 771.4, - volume: 978631 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-21`, - open: 772.7, - high: 777.2, - low: 768.3, - close: 776.2, - volume: 1167810 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-22`, - open: 780, - high: 789.9, - low: 778.4, - close: 787.2, - volume: 1486223 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-23`, - open: 786.6, - high: 788.9, - low: 784.1, - close: 786.9, - volume: 1411937 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-26`, - open: 782.7, - high: 782.7, - low: 773.1, - close: 774.2, - volume: 1533206 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-27`, - open: 775.5, - high: 786, - low: 774.3, - close: 783, - volume: 1153247 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-28`, - open: 777.9, - high: 781.8, - low: 775, - close: 781.6, - volume: 1109834 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-29`, - open: 781.4, - high: 785.8, - low: 774.2, - close: 775, - volume: 1314746 - })); - this.push(new StockGoogleItem( - { - date: `2016-08-30`, - open: 776.3, - high: 780.9, - low: 774.1, - close: 777.3, - volume: 1585333 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-03`, - open: 774.3, - high: 776.1, - low: 769.5, - close: 772.6, - volume: 1278821 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-04`, - open: 776, - high: 778.7, - low: 772.9, - close: 776.4, - volume: 1201350 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-05`, - open: 779.3, - high: 782.1, - low: 775.6, - close: 776.5, - volume: 1461151 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-06`, - open: 779, - high: 780.5, - low: 775.5, - close: 776.9, - volume: 1070692 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-07`, - open: 779.7, - high: 779.7, - low: 770.8, - close: 775.1, - volume: 933158 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-10`, - open: 777.7, - high: 789.4, - low: 775.9, - close: 785.9, - volume: 1174923 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-11`, - open: 786.7, - high: 792.3, - low: 780.6, - close: 783.1, - volume: 1372461 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-12`, - open: 783.8, - high: 788.1, - low: 782.1, - close: 786.1, - volume: 937435 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-13`, - open: 781.2, - high: 781.2, - low: 773, - close: 778.2, - volume: 1365277 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-14`, - open: 781.6, - high: 784, - low: 776, - close: 778.5, - volume: 852487 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-17`, - open: 779.8, - high: 785.9, - low: 777.5, - close: 780, - volume: 1092973 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-18`, - open: 787.9, - high: 801.6, - low: 785.6, - close: 795.3, - volume: 2056903 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-19`, - open: 798.9, - high: 804.6, - low: 797.6, - close: 801.6, - volume: 1766798 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-20`, - open: 803.3, - high: 804, - low: 796, - close: 797, - volume: 1757528 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-21`, - open: 795, - high: 799.5, - low: 794, - close: 799.4, - volume: 1266181 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-24`, - open: 804.9, - high: 815.2, - low: 804.8, - close: 813.1, - volume: 1697514 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-25`, - open: 816.7, - high: 816.7, - low: 805.1, - close: 807.7, - volume: 1576404 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-26`, - open: 806.3, - high: 807, - low: 796.3, - close: 799.1, - volume: 1647733 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-27`, - open: 801, - high: 803.5, - low: 791.5, - close: 795.4, - volume: 2749221 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-28`, - open: 808.4, - high: 815.5, - low: 793.6, - close: 795.4, - volume: 4269902 - })); - this.push(new StockGoogleItem( - { - date: `2016-09-31`, - open: 795.5, - high: 796.9, - low: 784, - close: 784.5, - volume: 2427284 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-01`, - open: 782.9, - high: 789.5, - low: 775.5, - close: 783.6, - volume: 2406356 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-02`, - open: 778.2, - high: 781.6, - low: 763.5, - close: 768.7, - volume: 1918414 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-03`, - open: 767.3, - high: 770, - low: 759, - close: 762.1, - volume: 1943175 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-04`, - open: 750.7, - high: 770.4, - low: 750.6, - close: 762, - volume: 2134812 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-07`, - open: 774.5, - high: 785.2, - low: 772.5, - close: 782.5, - volume: 1585070 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-08`, - open: 783.4, - high: 795.6, - low: 780.2, - close: 790.5, - volume: 1366873 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-09`, - open: 779.9, - high: 791.2, - low: 771.7, - close: 785.3, - volume: 2607121 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-10`, - open: 791.2, - high: 791.2, - low: 752.2, - close: 762.6, - volume: 4745183 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-11`, - open: 756.5, - high: 760.8, - low: 750.4, - close: 754, - volume: 2431815 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-14`, - open: 755.6, - high: 757.9, - low: 727.5, - close: 736.1, - volume: 3654385 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-15`, - open: 747, - high: 764.4, - low: 747, - close: 758.5, - volume: 2384001 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-16`, - open: 755.2, - high: 766.4, - low: 750.5, - close: 764.5, - volume: 1472594 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-17`, - open: 766.9, - high: 772.7, - low: 764.2, - close: 771.2, - volume: 1286961 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-18`, - open: 771.4, - high: 775, - low: 760, - close: 760.5, - volume: 1547145 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-21`, - open: 762.6, - high: 769.7, - low: 760.6, - close: 769.2, - volume: 1330639 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-22`, - open: 772.6, - high: 777, - low: 767, - close: 768.3, - volume: 1593108 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-23`, - open: 767.7, - high: 768.3, - low: 755.3, - close: 761, - volume: 1478417 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-25`, - open: 764.3, - high: 765, - low: 760.5, - close: 761.7, - volume: 587421 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-28`, - open: 760, - high: 779.5, - low: 759.8, - close: 768.2, - volume: 2188151 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-29`, - open: 771.5, - high: 778.5, - low: 768.2, - close: 770.8, - volume: 1616618 - })); - this.push(new StockGoogleItem( - { - date: `2016-10-30`, - open: 770.1, - high: 773, - low: 754.8, - close: 758, - volume: 2392890 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-01`, - open: 757.4, - high: 759.9, - low: 737, - close: 747.9, - volume: 3017947 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-02`, - open: 744.6, - high: 754, - low: 743.1, - close: 750.5, - volume: 1452484 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-05`, - open: 757.7, - high: 763.9, - low: 752.9, - close: 762.5, - volume: 1394223 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-06`, - open: 764.7, - high: 768.8, - low: 757.3, - close: 759.1, - volume: 1690689 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-07`, - open: 761, - high: 771.4, - low: 755.8, - close: 771.2, - volume: 1760966 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-08`, - open: 772.5, - high: 778.2, - low: 767.2, - close: 776.4, - volume: 1488059 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-09`, - open: 780, - high: 789.4, - low: 779, - close: 789.3, - volume: 1821914 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-12`, - open: 785, - high: 791.3, - low: 784.4, - close: 789.3, - volume: 2104117 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-13`, - open: 793.9, - high: 804.4, - low: 793.3, - close: 796.1, - volume: 2145209 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-14`, - open: 797.4, - high: 804, - low: 794, - close: 797.1, - volume: 1704150 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-15`, - open: 797.3, - high: 803, - low: 792.9, - close: 797.9, - volume: 1626499 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-16`, - open: 800.4, - high: 800.9, - low: 790.3, - close: 790.8, - volume: 2443796 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-19`, - open: 790.2, - high: 797.7, - low: 786.3, - close: 794.2, - volume: 1232087 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-20`, - open: 796.8, - high: 798.6, - low: 793.3, - close: 796.4, - volume: 951014 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-21`, - open: 795.8, - high: 796.7, - low: 787.1, - close: 794.6, - volume: 1211346 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-22`, - open: 792.4, - high: 793.3, - low: 788.6, - close: 791.3, - volume: 972169 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-23`, - open: 790.9, - high: 792.7, - low: 787.3, - close: 789.9, - volume: 623944 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-27`, - open: 790.7, - high: 797.9, - low: 787.7, - close: 791.5, - volume: 789321 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-28`, - open: 793.7, - high: 794.2, - low: 783.2, - close: 785, - volume: 1153824 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-29`, - open: 783.3, - high: 785.9, - low: 778.9, - close: 782.8, - volume: 744272 - })); - this.push(new StockGoogleItem( - { - date: `2016-11-30`, - open: 782.8, - high: 782.8, - low: 770.4, - close: 771.8, - volume: 1769950 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-03`, - open: 778.8, - high: 789.6, - low: 775.8, - close: 786.1, - volume: 1657268 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-04`, - open: 788.4, - high: 791.3, - low: 783.2, - close: 786.9, - volume: 1072958 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-05`, - open: 786.1, - high: 794.5, - low: 785, - close: 794, - volume: 1335167 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-06`, - open: 795.3, - high: 807.9, - low: 792.2, - close: 806.1, - volume: 1640170 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-09`, - open: 806.4, - high: 810, - low: 802.8, - close: 806.6, - volume: 1274645 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-10`, - open: 807.9, - high: 809.1, - low: 803.5, - close: 804.8, - volume: 1176780 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-11`, - open: 805, - high: 808.1, - low: 801.4, - close: 807.9, - volume: 1065936 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-12`, - open: 807.1, - high: 807.4, - low: 799.2, - close: 806.4, - volume: 1353057 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-13`, - open: 807.5, - high: 811.2, - low: 806.7, - close: 807.9, - volume: 1099215 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-17`, - open: 807.1, - high: 807.1, - low: 800.4, - close: 804.6, - volume: 1362115 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-18`, - open: 805.8, - high: 806.2, - low: 801, - close: 806.1, - volume: 1294407 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-19`, - open: 805.1, - high: 809.5, - low: 801.8, - close: 802.2, - volume: 919325 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-20`, - open: 806.9, - high: 806.9, - low: 801.7, - close: 805, - volume: 1670045 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-23`, - open: 807.3, - high: 820.9, - low: 803.7, - close: 819.3, - volume: 1963628 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-24`, - open: 822.3, - high: 825.9, - low: 817.8, - close: 823.9, - volume: 1474010 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-25`, - open: 829.6, - high: 835.8, - low: 825.1, - close: 835.7, - volume: 1627304 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-26`, - open: 837.8, - high: 838, - low: 827, - close: 832.1, - volume: 2973891 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-27`, - open: 834.7, - high: 842, - low: 820.4, - close: 823.3, - volume: 2965771 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-30`, - open: 814.7, - high: 815.8, - low: 799.8, - close: 802.3, - volume: 3246573 - })); - this.push(new StockGoogleItem( - { - date: `2017-00-31`, - open: 796.9, - high: 801.3, - low: 790.5, - close: 796.8, - volume: 2160556 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-01`, - open: 799.7, - high: 801.2, - low: 791.2, - close: 795.7, - volume: 2029744 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-02`, - open: 793.8, - high: 802.7, - low: 792, - close: 798.5, - volume: 1532138 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-03`, - open: 803, - high: 806, - low: 800.4, - close: 801.5, - volume: 1463448 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-06`, - open: 799.7, - high: 801.7, - low: 795.3, - close: 801.3, - volume: 1184483 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-07`, - open: 804, - high: 810.5, - low: 801.8, - close: 807, - volume: 1241221 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-08`, - open: 807, - high: 811.8, - low: 803.2, - close: 808.4, - volume: 1155990 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-09`, - open: 809.5, - high: 810.7, - low: 804.5, - close: 809.6, - volume: 990391 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-10`, - open: 811.7, - high: 815.3, - low: 809.8, - close: 813.7, - volume: 1134976 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-13`, - open: 816, - high: 821, - low: 815.5, - close: 819.2, - volume: 1213324 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-14`, - open: 819, - high: 823, - low: 816, - close: 820.5, - volume: 1054732 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-15`, - open: 819.4, - high: 823, - low: 818.5, - close: 819, - volume: 1313617 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-16`, - open: 819.9, - high: 824.4, - low: 819, - close: 824.2, - volume: 1287626 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-17`, - open: 823, - high: 828.1, - low: 821.7, - close: 828.1, - volume: 1611039 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-21`, - open: 828.7, - high: 833.5, - low: 828.4, - close: 831.7, - volume: 1262337 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-22`, - open: 828.7, - high: 833.3, - low: 828.6, - close: 830.8, - volume: 987248 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-23`, - open: 830.1, - high: 832.5, - low: 822.9, - close: 831.3, - volume: 1472771 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-24`, - open: 827.7, - high: 829, - low: 824.2, - close: 828.6, - volume: 1392202 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-27`, - open: 824.5, - high: 830.5, - low: 824, - close: 829.3, - volume: 1101466 - })); - this.push(new StockGoogleItem( - { - date: `2017-01-28`, - open: 825.6, - high: 828.5, - low: 820.2, - close: 823.2, - volume: 2260769 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-01`, - open: 828.9, - high: 836.3, - low: 827.3, - close: 835.2, - volume: 1496540 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-02`, - open: 833.9, - high: 834.5, - low: 829.6, - close: 830.6, - volume: 942476 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-03`, - open: 830.6, - high: 831.4, - low: 825.8, - close: 829.1, - volume: 896378 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-06`, - open: 827, - high: 828.9, - low: 822.4, - close: 827.8, - volume: 1109037 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-07`, - open: 827.4, - high: 833.4, - low: 826.5, - close: 831.9, - volume: 1037630 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-08`, - open: 833.5, - high: 838.1, - low: 831.8, - close: 835.4, - volume: 989773 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-09`, - open: 836, - high: 842, - low: 834.2, - close: 838.7, - volume: 1261517 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-10`, - open: 843.3, - high: 844.9, - low: 839.5, - close: 843.3, - volume: 1704024 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-13`, - open: 844, - high: 848.7, - low: 843.3, - close: 845.5, - volume: 1223647 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-14`, - open: 843.6, - high: 847.2, - low: 840.8, - close: 845.6, - volume: 780198 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-15`, - open: 847.6, - high: 848.6, - low: 840.8, - close: 847.2, - volume: 1381474 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-16`, - open: 849, - high: 850.9, - low: 846.1, - close: 848.8, - volume: 977560 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-17`, - open: 851.6, - high: 853.4, - low: 847.1, - close: 852.1, - volume: 1716471 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-20`, - open: 850, - high: 850.2, - low: 845.1, - close: 848.4, - volume: 1231521 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-21`, - open: 851.4, - high: 853.5, - low: 829, - close: 830.5, - volume: 2463484 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-22`, - open: 831.9, - high: 835.5, - low: 827.2, - close: 829.6, - volume: 1401465 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-23`, - open: 821, - high: 822.6, - low: 812.3, - close: 817.6, - volume: 3487056 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-24`, - open: 820.1, - high: 821.9, - low: 808.9, - close: 814.4, - volume: 1981006 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-27`, - open: 807, - high: 821.6, - low: 803.4, - close: 819.5, - volume: 1894990 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-28`, - open: 820.4, - high: 826, - low: 814, - close: 820.9, - volume: 1620542 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-29`, - open: 825, - high: 832.8, - low: 822.4, - close: 831.4, - volume: 1786321 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-30`, - open: 833.5, - high: 833.7, - low: 829, - close: 831.5, - volume: 1055339 - })); - this.push(new StockGoogleItem( - { - date: `2017-02-31`, - open: 829, - high: 831.6, - low: 827.4, - close: 829.6, - volume: 1401893 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-03`, - open: 829.2, - high: 840.9, - low: 829.2, - close: 838.5, - volume: 1671503 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-04`, - open: 831.4, - high: 835.2, - low: 829, - close: 834.6, - volume: 1045363 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-05`, - open: 835.5, - high: 842.5, - low: 830.7, - close: 831.4, - volume: 1555328 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-06`, - open: 832.4, - high: 836.4, - low: 826.5, - close: 827.9, - volume: 1254433 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-07`, - open: 828, - high: 828.5, - low: 820.5, - close: 824.7, - volume: 1057253 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-10`, - open: 825.4, - high: 829.4, - low: 823.8, - close: 824.7, - volume: 978905 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-11`, - open: 824.7, - high: 827.4, - low: 817, - close: 823.4, - volume: 1079732 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-12`, - open: 821.9, - high: 826.7, - low: 821, - close: 824.3, - volume: 900480 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-13`, - open: 822.1, - high: 826.4, - low: 821.4, - close: 823.6, - volume: 1122362 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-17`, - open: 825, - high: 837.8, - low: 824.5, - close: 837.2, - volume: 895015 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-18`, - open: 834.2, - high: 838.9, - low: 832.7, - close: 836.8, - volume: 836722 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-19`, - open: 839.8, - high: 842.2, - low: 836.3, - close: 838.2, - volume: 954330 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-20`, - open: 841.4, - high: 845.2, - low: 839.3, - close: 841.6, - volume: 959031 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-21`, - open: 842.9, - high: 843.9, - low: 840.6, - close: 843.2, - volume: 1323583 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-24`, - open: 851.2, - high: 863.5, - low: 849.9, - close: 862.8, - volume: 1372541 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-25`, - open: 865, - high: 875, - low: 862.8, - close: 872.3, - volume: 1671972 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-26`, - open: 874.2, - high: 876, - low: 867.8, - close: 871.7, - volume: 1237167 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-27`, - open: 873.6, - high: 875.4, - low: 870.4, - close: 874.3, - volume: 2026816 - })); - this.push(new StockGoogleItem( - { - date: `2017-03-28`, - open: 910.7, - high: 916.9, - low: 905.8, - close: 906, - volume: 3276255 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-01`, - open: 901.9, - high: 915.7, - low: 901.5, - close: 912.6, - volume: 2115993 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-02`, - open: 909.6, - high: 920.8, - low: 909.5, - close: 916.4, - volume: 1587219 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-03`, - open: 914.9, - high: 928.1, - low: 912.5, - close: 927, - volume: 1499532 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-04`, - open: 926.1, - high: 935.9, - low: 924.6, - close: 931.7, - volume: 1422144 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-05`, - open: 933.5, - high: 934.9, - low: 925.2, - close: 927.1, - volume: 1911275 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-08`, - open: 926.1, - high: 936.9, - low: 925.3, - close: 934.3, - volume: 1329825 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-09`, - open: 937, - high: 937.5, - low: 929.5, - close: 932.2, - volume: 1581809 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-10`, - open: 932, - high: 932, - low: 925.2, - close: 928.8, - volume: 1173925 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-11`, - open: 925.3, - high: 932.5, - low: 923, - close: 930.6, - volume: 835386 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-12`, - open: 931.5, - high: 933.4, - low: 927.9, - close: 932.2, - volume: 1050601 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-15`, - open: 933, - high: 938.3, - low: 929.3, - close: 937.1, - volume: 1108496 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-16`, - open: 940, - high: 943.1, - low: 937.6, - close: 943, - volume: 969479 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-17`, - open: 935.7, - high: 939.3, - low: 918.1, - close: 919.6, - volume: 2362072 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-18`, - open: 921, - high: 933.2, - low: 918.8, - close: 930.2, - volume: 1596897 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-19`, - open: 931.5, - high: 937.8, - low: 931, - close: 934, - volume: 1393024 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-22`, - open: 935, - high: 941.9, - low: 935, - close: 941.9, - volume: 1120385 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-23`, - open: 947.9, - high: 951.5, - low: 942.6, - close: 948.8, - volume: 1270817 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-24`, - open: 953, - high: 955.1, - low: 949.5, - close: 955, - volume: 1034199 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-25`, - open: 957.3, - high: 972.6, - low: 955.5, - close: 969.5, - volume: 1660474 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-26`, - open: 969.7, - high: 975, - low: 965, - close: 971.5, - volume: 1252010 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-30`, - open: 970.3, - high: 976.2, - low: 969.5, - close: 975.9, - volume: 1466654 - })); - this.push(new StockGoogleItem( - { - date: `2017-04-31`, - open: 975, - high: 979.3, - low: 960.2, - close: 964.9, - volume: 2448067 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-01`, - open: 969, - high: 971.5, - low: 960, - close: 967, - volume: 1410458 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-02`, - open: 969.5, - high: 975.9, - low: 966, - close: 975.6, - volume: 1750955 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-05`, - open: 976.5, - high: 986.9, - low: 975.1, - close: 983.7, - volume: 1252106 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-06`, - open: 983.2, - high: 988.3, - low: 975.1, - close: 976.6, - volume: 1814624 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-07`, - open: 979.6, - high: 984.1, - low: 975.8, - close: 981.1, - volume: 1453874 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-08`, - open: 982.4, - high: 984.6, - low: 977.2, - close: 983.4, - volume: 1481916 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-09`, - open: 984.5, - high: 984.5, - low: 935.6, - close: 949.8, - volume: 3309389 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-12`, - open: 939.6, - high: 949.4, - low: 915.2, - close: 942.9, - volume: 3763529 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-13`, - open: 951.9, - high: 960, - low: 944.1, - close: 953.4, - volume: 2013337 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-14`, - open: 959.9, - high: 961.1, - low: 942.3, - close: 950.8, - volume: 1489715 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-15`, - open: 934, - high: 943.3, - low: 924.4, - close: 942.3, - volume: 2133050 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-16`, - open: 940, - high: 942, - low: 931.6, - close: 939.8, - volume: 3094711 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-19`, - open: 950, - high: 960, - low: 949, - close: 957.4, - volume: 1533336 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-20`, - open: 957.5, - high: 961.6, - low: 950, - close: 950.6, - volume: 1125990 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-21`, - open: 953.6, - high: 960.1, - low: 950.8, - close: 959.5, - volume: 1202233 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-22`, - open: 958.7, - high: 960.7, - low: 954.5, - close: 957.1, - volume: 941958 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-23`, - open: 956.8, - high: 966, - low: 954.2, - close: 965.6, - volume: 1527856 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-26`, - open: 969.9, - high: 973.3, - low: 950.8, - close: 952.3, - volume: 1598355 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-27`, - open: 942.5, - high: 948.3, - low: 926.9, - close: 927.3, - volume: 2579930 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-28`, - open: 929, - high: 942.8, - low: 916, - close: 940.5, - volume: 2721406 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-29`, - open: 929.9, - high: 931.3, - low: 910.6, - close: 917.8, - volume: 3299176 - })); - this.push(new StockGoogleItem( - { - date: `2017-05-30`, - open: 926, - high: 926, - low: 908.3, - close: 908.7, - volume: 2090226 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-03`, - open: 912.2, - high: 913.9, - low: 894.8, - close: 898.7, - volume: 1710373 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-05`, - open: 901.8, - high: 914.5, - low: 898.5, - close: 911.7, - volume: 1813884 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-06`, - open: 904.1, - high: 914.9, - low: 899.7, - close: 906.7, - volume: 1424503 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-07`, - open: 908.9, - high: 921.5, - low: 908.9, - close: 918.6, - volume: 1637785 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-10`, - open: 921.8, - high: 930.4, - low: 919.6, - close: 928.8, - volume: 1192825 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-11`, - open: 929.5, - high: 931.4, - low: 922, - close: 930.1, - volume: 1113235 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-12`, - open: 938.7, - high: 946.3, - low: 934.5, - close: 943.8, - volume: 1532144 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-13`, - open: 946.3, - high: 954.5, - low: 943, - close: 947.2, - volume: 1294687 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-14`, - open: 952, - high: 956.9, - low: 948, - close: 956, - volume: 1053774 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-17`, - open: 957, - high: 960.7, - low: 949.2, - close: 953.4, - volume: 1165537 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-18`, - open: 953, - high: 968, - low: 950.6, - close: 965.4, - volume: 1153964 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-19`, - open: 967.8, - high: 973, - low: 964, - close: 970.9, - volume: 1224540 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-20`, - open: 975, - high: 975.9, - low: 961.5, - close: 968.1, - volume: 1624463 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-21`, - open: 962.3, - high: 973.2, - low: 960.1, - close: 972.9, - volume: 1711000 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-24`, - open: 972.2, - high: 986.2, - low: 970.8, - close: 980.3, - volume: 3248347 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-25`, - open: 953.8, - high: 959.7, - low: 945.4, - close: 950.7, - volume: 4660979 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-26`, - open: 954.7, - high: 955, - low: 942.3, - close: 947.8, - volume: 2088256 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-27`, - open: 951.8, - high: 951.8, - low: 920, - close: 934.1, - volume: 3212996 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-28`, - open: 929.4, - high: 943.8, - low: 927.5, - close: 941.5, - volume: 1846351 - })); - this.push(new StockGoogleItem( - { - date: `2017-06-31`, - open: 941.9, - high: 943.6, - low: 926, - close: 930.5, - volume: 1970095 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-01`, - open: 932.4, - high: 937.5, - low: 929.3, - close: 930.8, - volume: 1277734 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-02`, - open: 928.6, - high: 932.6, - low: 916.7, - close: 930.4, - volume: 1824448 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-03`, - open: 930.3, - high: 932.2, - low: 922.2, - close: 923.6, - volume: 1202512 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-04`, - open: 926.8, - high: 930.3, - low: 923, - close: 928, - volume: 1082267 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-07`, - open: 929.1, - high: 931.7, - low: 926.5, - close: 929.4, - volume: 1032239 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-08`, - open: 927.1, - high: 935.8, - low: 925.6, - close: 926.8, - volume: 1061579 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-09`, - open: 920.6, - high: 926, - low: 917.3, - close: 922.9, - volume: 1192081 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-10`, - open: 917.5, - high: 919.3, - low: 906.1, - close: 907.2, - volume: 1823967 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-11`, - open: 908, - high: 917.8, - low: 905.6, - close: 914.4, - volume: 1206782 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-14`, - open: 922.5, - high: 924.7, - low: 918.2, - close: 922.7, - volume: 1064530 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-15`, - open: 924.2, - high: 926.5, - low: 919.8, - close: 922.2, - volume: 883369 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-16`, - open: 925.3, - high: 932.7, - low: 923.4, - close: 927, - volume: 1006711 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-17`, - open: 925.8, - high: 926.9, - low: 911, - close: 911, - volume: 1277238 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-18`, - open: 910.3, - high: 915.3, - low: 907.1, - close: 910.7, - volume: 1342689 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-21`, - open: 910, - high: 913, - low: 903.4, - close: 906.7, - volume: 943441 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-22`, - open: 912.7, - high: 925.9, - low: 911.5, - close: 924.7, - volume: 1166737 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-23`, - open: 921.9, - high: 929.9, - low: 919.4, - close: 927, - volume: 1090248 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-24`, - open: 928.7, - high: 930.8, - low: 915.5, - close: 921.3, - volume: 1270306 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-25`, - open: 923.5, - high: 925.6, - low: 915.5, - close: 915.9, - volume: 1053376 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-28`, - open: 916, - high: 919.2, - low: 911.9, - close: 913.8, - volume: 1086484 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-29`, - open: 905.1, - high: 923.3, - low: 905, - close: 921.3, - volume: 1185564 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-30`, - open: 920, - high: 930.8, - low: 919.6, - close: 929.6, - volume: 1301225 - })); - this.push(new StockGoogleItem( - { - date: `2017-07-31`, - open: 931.8, - high: 942, - low: 931.8, - close: 939.3, - volume: 1582579 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-01`, - open: 941.1, - high: 942.5, - low: 935.1, - close: 937.3, - volume: 947374 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-05`, - open: 933.1, - high: 937, - low: 922, - close: 928.5, - volume: 1348292 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-06`, - open: 930.1, - high: 930.9, - low: 919.3, - close: 927.8, - volume: 1527650 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-07`, - open: 931.7, - high: 936.4, - low: 923.6, - close: 936, - volume: 1212743 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-08`, - open: 936.5, - high: 937, - low: 924.9, - close: 926.5, - volume: 1011538 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-11`, - open: 934.3, - high: 938.4, - low: 926.9, - close: 929.1, - volume: 1266991 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-12`, - open: 932.6, - high: 933.5, - low: 923.9, - close: 932.1, - volume: 1134397 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-13`, - open: 930.7, - high: 937.3, - low: 929.9, - close: 935.1, - volume: 1102631 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-14`, - open: 931.3, - high: 932.8, - low: 924, - close: 925.1, - volume: 1397644 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-15`, - open: 924.7, - high: 926.5, - low: 916.4, - close: 920.3, - volume: 2505430 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-18`, - open: 920, - high: 922.1, - low: 910.6, - close: 915, - volume: 1306922 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-19`, - open: 917.4, - high: 922.4, - low: 912.5, - close: 921.8, - volume: 936654 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-20`, - open: 923, - high: 933.9, - low: 922, - close: 931.6, - volume: 1669763 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-21`, - open: 933, - high: 936.5, - low: 923.8, - close: 932.5, - volume: 1290607 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-22`, - open: 927.8, - high: 934.7, - low: 926.5, - close: 928.5, - volume: 1052704 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-25`, - open: 925.5, - high: 926.4, - low: 909.7, - close: 921, - volume: 1856822 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-26`, - open: 923.7, - high: 930.8, - low: 921.1, - close: 924.9, - volume: 1666861 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-27`, - open: 927.7, - high: 949.9, - low: 927.7, - close: 944.5, - volume: 2212600 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-28`, - open: 941.4, - high: 950.7, - low: 940.5, - close: 949.5, - volume: 1020312 - })); - this.push(new StockGoogleItem( - { - date: `2017-08-29`, - open: 952, - high: 959.8, - low: 951.5, - close: 959.1, - volume: 1580994 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-02`, - open: 960, - high: 962.5, - low: 947.8, - close: 953.3, - volume: 1283444 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-03`, - open: 954, - high: 958, - low: 949.1, - close: 957.8, - volume: 888346 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-04`, - open: 957, - high: 960.4, - low: 950.7, - close: 951.7, - volume: 952391 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-05`, - open: 955.5, - high: 970.9, - low: 955.2, - close: 970, - volume: 1213816 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-06`, - open: 966.7, - high: 979.5, - low: 963.4, - close: 978.9, - volume: 1173882 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-09`, - open: 980, - high: 985.4, - low: 976.1, - close: 977, - volume: 891355 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-10`, - open: 980, - high: 981.6, - low: 966.1, - close: 972.6, - volume: 968362 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-11`, - open: 973.7, - high: 990.7, - low: 972.3, - close: 989.3, - volume: 1693274 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-12`, - open: 987.5, - high: 994.1, - low: 985, - close: 987.8, - volume: 1262793 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-13`, - open: 992, - high: 997.2, - low: 989, - close: 989.7, - volume: 1169777 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-16`, - open: 992.1, - high: 993.9, - low: 984, - close: 992, - volume: 910543 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-17`, - open: 990.3, - high: 996.4, - low: 988.6, - close: 992.2, - volume: 1290186 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-18`, - open: 991.8, - high: 996.7, - low: 987, - close: 992.8, - volume: 1057581 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-19`, - open: 986, - high: 988.9, - low: 978.4, - close: 984.5, - volume: 1313575 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-20`, - open: 989.4, - high: 991, - low: 984.6, - close: 988.2, - volume: 1183186 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-23`, - open: 989.5, - high: 989.5, - low: 966.1, - close: 968.5, - volume: 1478448 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-24`, - open: 970, - high: 972.2, - low: 961, - close: 970.5, - volume: 1212153 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-25`, - open: 968.4, - high: 976.1, - low: 960.5, - close: 973.3, - volume: 1211262 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-26`, - open: 980, - high: 987.6, - low: 972.2, - close: 972.6, - volume: 2042149 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-27`, - open: 1009.2, - high: 1048.4, - low: 1008.2, - close: 1019.3, - volume: 5167689 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-30`, - open: 1014, - high: 1025, - low: 1007.5, - close: 1017.1, - volume: 2085062 - })); - this.push(new StockGoogleItem( - { - date: `2017-09-31`, - open: 1015.2, - high: 1024, - low: 1010.4, - close: 1016.6, - volume: 1331391 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-01`, - open: 1017.2, - high: 1029.7, - low: 1017, - close: 1025.5, - volume: 1373444 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-02`, - open: 1021.8, - high: 1028.1, - low: 1013, - close: 1025.6, - volume: 1048970 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-03`, - open: 1022.1, - high: 1032.7, - low: 1020.3, - close: 1032.5, - volume: 1076350 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-06`, - open: 1029, - high: 1034.9, - low: 1025, - close: 1025.9, - volume: 1125185 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-07`, - open: 1027.3, - high: 1034, - low: 1025.1, - close: 1033.3, - volume: 1112331 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-08`, - open: 1030.5, - high: 1043.5, - low: 1028.5, - close: 1039.8, - volume: 1088716 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-09`, - open: 1034, - high: 1034, - low: 1019.7, - close: 1031.3, - volume: 1245246 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-10`, - open: 1026.5, - high: 1030.8, - low: 1025.3, - close: 1028.1, - volume: 720676 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-13`, - open: 1023.4, - high: 1031.6, - low: 1022.6, - close: 1025.8, - volume: 885779 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-14`, - open: 1022.6, - high: 1026.8, - low: 1014.1, - close: 1026, - volume: 959222 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-15`, - open: 1019.2, - high: 1024.1, - low: 1015.4, - close: 1020.9, - volume: 853992 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-16`, - open: 1022.5, - high: 1035.9, - low: 1022.5, - close: 1032.5, - volume: 1129688 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-17`, - open: 1034, - high: 1034.4, - low: 1017.8, - close: 1019.1, - volume: 1397064 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-20`, - open: 1020.3, - high: 1022.6, - low: 1017.5, - close: 1018.4, - volume: 953470 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-21`, - open: 1023.3, - high: 1035.1, - low: 1022.7, - close: 1034.5, - volume: 1096999 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-22`, - open: 1035, - high: 1039.7, - low: 1031.4, - close: 1036, - volume: 746878 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-24`, - open: 1035.9, - high: 1043.2, - low: 1035, - close: 1040.6, - volume: 536996 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-27`, - open: 1040, - high: 1055.5, - low: 1038.4, - close: 1054.2, - volume: 1307881 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-28`, - open: 1055.1, - high: 1062.4, - low: 1040, - close: 1047.4, - volume: 1424394 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-29`, - open: 1042.7, - high: 1044.1, - low: 1015.6, - close: 1021.7, - volume: 2459426 - })); - this.push(new StockGoogleItem( - { - date: `2017-10-30`, - open: 1022.4, - high: 1028.5, - low: 1015, - close: 1021.4, - volume: 1724031 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-01`, - open: 1015.8, - high: 1022.5, - low: 1002, - close: 1010.2, - volume: 1909566 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-04`, - open: 1012.7, - high: 1016.1, - low: 995.6, - close: 998.7, - volume: 1906439 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-05`, - open: 995.9, - high: 1020.6, - low: 988.3, - close: 1005.1, - volume: 2067318 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-06`, - open: 1001.5, - high: 1025, - low: 1001.1, - close: 1018.4, - volume: 1271964 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-07`, - open: 1020.4, - high: 1034.2, - low: 1018.1, - close: 1030.9, - volume: 1458242 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-08`, - open: 1037.5, - high: 1042, - low: 1032.5, - close: 1037, - volume: 1290774 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-11`, - open: 1035.5, - high: 1043.8, - low: 1032, - close: 1041.1, - volume: 1192838 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-12`, - open: 1039.6, - high: 1050.3, - low: 1033.7, - close: 1040.5, - volume: 1279659 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-13`, - open: 1046.1, - high: 1046.7, - low: 1038.4, - close: 1040.6, - volume: 1282677 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-14`, - open: 1045, - high: 1058.5, - low: 1043.1, - close: 1049.2, - volume: 1558835 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-15`, - open: 1054.6, - high: 1067.6, - low: 1049.5, - close: 1064.2, - volume: 3275931 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-18`, - open: 1066.1, - high: 1078.5, - low: 1062, - close: 1077.1, - volume: 1554552 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-19`, - open: 1075.2, - high: 1076.8, - low: 1063.5, - close: 1070.7, - volume: 1338725 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-20`, - open: 1071.8, - high: 1073.4, - low: 1061.5, - close: 1065, - volume: 1268582 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-21`, - open: 1065, - high: 1069.3, - low: 1061.8, - close: 1063.6, - volume: 995703 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-22`, - open: 1061.1, - high: 1064.2, - low: 1059.4, - close: 1060.1, - volume: 755095 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-26`, - open: 1058.1, - high: 1060.1, - low: 1050.2, - close: 1056.7, - volume: 761237 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-27`, - open: 1057.4, - high: 1058.4, - low: 1048, - close: 1049.4, - volume: 1271911 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-28`, - open: 1051.6, - high: 1054.8, - low: 1044.8, - close: 1048.1, - volume: 837121 - })); - this.push(new StockGoogleItem( - { - date: `2017-11-29`, - open: 1046.7, - high: 1049.7, - low: 1044.9, - close: 1046.4, - volume: 887511 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-02`, - open: 1048.3, - high: 1066.9, - low: 1045.2, - close: 1065, - volume: 1237564 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-03`, - open: 1064.3, - high: 1086.3, - low: 1063.2, - close: 1082.5, - volume: 1430170 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-04`, - open: 1088, - high: 1093.6, - low: 1084, - close: 1086.4, - volume: 1004605 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-05`, - open: 1094, - high: 1104.3, - low: 1092, - close: 1102.2, - volume: 1279123 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-08`, - open: 1102.2, - high: 1111.3, - low: 1101.6, - close: 1106.9, - volume: 1047603 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-09`, - open: 1109.4, - high: 1110.6, - low: 1101.2, - close: 1106.3, - volume: 902541 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-10`, - open: 1097.1, - high: 1104.6, - low: 1096.1, - close: 1102.6, - volume: 1042793 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-11`, - open: 1106.3, - high: 1106.5, - low: 1099.6, - close: 1105.5, - volume: 978292 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-12`, - open: 1102.4, - high: 1124.3, - low: 1101.2, - close: 1122.3, - volume: 1720533 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-16`, - open: 1132.5, - high: 1139.9, - low: 1117.8, - close: 1121.8, - volume: 1575261 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-17`, - open: 1126.2, - high: 1132.6, - low: 1117, - close: 1132, - volume: 1202639 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-18`, - open: 1131.4, - high: 1132.5, - low: 1117.5, - close: 1129.8, - volume: 1198234 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-19`, - open: 1131.8, - high: 1137.9, - low: 1128.3, - close: 1137.5, - volume: 1778229 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-22`, - open: 1137.5, - high: 1159.9, - low: 1135.1, - close: 1155.8, - volume: 1617975 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-23`, - open: 1159.8, - high: 1171.6, - low: 1158.8, - close: 1170, - volume: 1333056 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-24`, - open: 1177.3, - high: 1179.9, - low: 1161, - close: 1164.2, - volume: 1416625 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-25`, - open: 1172.5, - high: 1175.9, - low: 1162.8, - close: 1170.4, - volume: 1480540 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-26`, - open: 1175.1, - high: 1175.8, - low: 1158.1, - close: 1175.8, - volume: 2018755 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-29`, - open: 1176.5, - high: 1186.9, - low: 1172, - close: 1175.6, - volume: 1378913 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-30`, - open: 1167.8, - high: 1176.5, - low: 1163.5, - close: 1163.7, - volume: 1556346 - })); - this.push(new StockGoogleItem( - { - date: `2018-00-31`, - open: 1170.6, - high: 1173, - low: 1159.1, - close: 1169.9, - volume: 1538688 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new StockGoogleItem( + { + date: `2014-03-01`, + open: 559.6, + high: 568.2, + low: 558.4, + close: 566.9, + volume: 2182626 + }), + new StockGoogleItem( + { + date: `2014-03-02`, + open: 562.4, + high: 571.8, + low: 561.4, + close: 567, + volume: 2088804 + }), + new StockGoogleItem( + { + date: `2014-03-03`, + open: 569.9, + high: 587.3, + low: 564.1, + close: 569.7, + volume: 5087530 + }), + new StockGoogleItem( + { + date: `2014-03-04`, + open: 574.6, + high: 577.8, + low: 543, + close: 543.1, + volume: 6377658 + }), + new StockGoogleItem( + { + date: `2014-03-07`, + open: 540.7, + high: 548.5, + low: 527.1, + close: 538.1, + volume: 4389569 + }), + new StockGoogleItem( + { + date: `2014-03-08`, + open: 542.6, + high: 555, + low: 541.6, + close: 554.9, + volume: 3152406 + }), + new StockGoogleItem( + { + date: `2014-03-09`, + open: 559.6, + high: 565.4, + low: 553, + close: 564.1, + volume: 3324742 + }), + new StockGoogleItem( + { + date: `2014-03-10`, + open: 565, + high: 565, + low: 539.9, + close: 541, + volume: 4027743 + }), + new StockGoogleItem( + { + date: `2014-03-11`, + open: 532.5, + high: 540, + low: 526.5, + close: 530.6, + volume: 3916171 + }), + new StockGoogleItem( + { + date: `2014-03-14`, + open: 538.3, + high: 544.1, + low: 529.6, + close: 532.5, + volume: 2568020 + }), + new StockGoogleItem( + { + date: `2014-03-15`, + open: 536.8, + high: 538.5, + low: 518.5, + close: 536.4, + volume: 3847453 + }), + new StockGoogleItem( + { + date: `2014-03-16`, + open: 543, + high: 557, + low: 540, + close: 556.5, + volume: 4879889 + }), + new StockGoogleItem( + { + date: `2014-03-17`, + open: 548.8, + high: 549.5, + low: 531.1, + close: 536.1, + volume: 6795393 + }), + new StockGoogleItem( + { + date: `2014-03-21`, + open: 536.1, + high: 536.7, + low: 525.6, + close: 528.6, + volume: 2561214 + }), + new StockGoogleItem( + { + date: `2014-03-22`, + open: 528.6, + high: 537.2, + low: 527.5, + close: 534.8, + volume: 2359421 + }), + new StockGoogleItem( + { + date: `2014-03-23`, + open: 533.8, + high: 533.9, + low: 526.3, + close: 526.9, + volume: 2051066 + }), + new StockGoogleItem( + { + date: `2014-03-24`, + open: 530.1, + high: 531.6, + low: 522.1, + close: 525.2, + volume: 1881965 + }), + new StockGoogleItem( + { + date: `2014-03-25`, + open: 522.5, + high: 524.7, + low: 515.4, + close: 516.2, + volume: 2097264 + }), + new StockGoogleItem( + { + date: `2014-03-28`, + open: 517.2, + high: 518.6, + low: 502.8, + close: 517.1, + volume: 3326429 + }), + new StockGoogleItem( + { + date: `2014-03-29`, + open: 516.9, + high: 529.5, + low: 516.3, + close: 527.7, + volume: 2692489 + }), + new StockGoogleItem( + { + date: `2014-03-30`, + open: 527.6, + high: 528, + low: 522.5, + close: 526.7, + volume: 1746904 + }), + new StockGoogleItem( + { + date: `2014-04-01`, + open: 527.1, + high: 532.9, + low: 523.9, + close: 531.4, + volume: 1900432 + }), + new StockGoogleItem( + { + date: `2014-04-02`, + open: 533.8, + high: 534, + low: 525.6, + close: 527.9, + volume: 1685042 + }), + new StockGoogleItem( + { + date: `2014-04-05`, + open: 524.8, + high: 528.9, + low: 521.3, + close: 527.8, + volume: 1021408 + }), + new StockGoogleItem( + { + date: `2014-04-06`, + open: 525.2, + high: 526.8, + low: 515.1, + close: 515.1, + volume: 1684381 + }), + new StockGoogleItem( + { + date: `2014-04-07`, + open: 515.8, + high: 516.7, + low: 503.3, + close: 510, + volume: 3216077 + }), + new StockGoogleItem( + { + date: `2014-04-08`, + open: 508.5, + high: 517.2, + low: 506.4, + close: 511, + volume: 2016131 + }), + new StockGoogleItem( + { + date: `2014-04-09`, + open: 510.8, + high: 519.9, + low: 504.2, + close: 518.7, + volume: 2432783 + }), + new StockGoogleItem( + { + date: `2014-04-12`, + open: 523.5, + high: 530.2, + low: 519, + close: 529.9, + volume: 1908392 + }), + new StockGoogleItem( + { + date: `2014-04-13`, + open: 530.9, + high: 536.1, + low: 529.5, + close: 533.1, + volume: 1648907 + }), + new StockGoogleItem( + { + date: `2014-04-14`, + open: 533, + high: 533, + low: 525.3, + close: 526.6, + volume: 1191863 + }), + new StockGoogleItem( + { + date: `2014-04-15`, + open: 525.7, + high: 525.9, + low: 517.4, + close: 520, + volume: 1703758 + }), + new StockGoogleItem( + { + date: `2014-04-16`, + open: 521.4, + high: 521.8, + low: 515.4, + close: 520.6, + volume: 1481688 + }), + new StockGoogleItem( + { + date: `2014-04-19`, + open: 519.7, + high: 529.8, + low: 517.6, + close: 528.9, + volume: 1276362 + }), + new StockGoogleItem( + { + date: `2014-04-20`, + open: 529.7, + high: 536.2, + low: 526.3, + close: 529.8, + volume: 1780113 + }), + new StockGoogleItem( + { + date: `2014-04-21`, + open: 532.9, + high: 539.2, + low: 531.9, + close: 538.9, + volume: 1193389 + }), + new StockGoogleItem( + { + date: `2014-04-22`, + open: 541.1, + high: 547.6, + low: 540.8, + close: 545.1, + volume: 1611837 + }), + new StockGoogleItem( + { + date: `2014-04-23`, + open: 547.3, + high: 553.6, + low: 543.7, + close: 552.7, + volume: 1929632 + }), + new StockGoogleItem( + { + date: `2014-04-27`, + open: 556, + high: 566, + low: 554.4, + close: 566, + volume: 2100298 + }), + new StockGoogleItem( + { + date: `2014-04-28`, + open: 564.6, + high: 567.8, + low: 561, + close: 561.7, + volume: 1647717 + }), + new StockGoogleItem( + { + date: `2014-04-29`, + open: 563.4, + high: 564, + low: 558.7, + close: 560.1, + volume: 1350657 + }), + new StockGoogleItem( + { + date: `2014-04-30`, + open: 560.8, + high: 561.4, + low: 555.9, + close: 559.9, + volume: 1766794 + }), + new StockGoogleItem( + { + date: `2014-05-02`, + open: 560.7, + high: 560.9, + low: 545.7, + close: 553.9, + volume: 1434989 + }), + new StockGoogleItem( + { + date: `2014-05-03`, + open: 551, + high: 552.3, + low: 542.5, + close: 544.9, + volume: 1861921 + }), + new StockGoogleItem( + { + date: `2014-05-04`, + open: 541.5, + high: 548.6, + low: 538.8, + close: 544.7, + volume: 1812084 + }), + new StockGoogleItem( + { + date: `2014-05-05`, + open: 546.4, + high: 555, + low: 544.5, + close: 553.9, + volume: 1684886 + }), + new StockGoogleItem( + { + date: `2014-05-06`, + open: 558.1, + high: 558.1, + low: 548.9, + close: 556.3, + volume: 1732592 + }), + new StockGoogleItem( + { + date: `2014-05-09`, + open: 557.1, + high: 562.9, + low: 556, + close: 562.1, + volume: 1463676 + }), + new StockGoogleItem( + { + date: `2014-05-10`, + open: 560.5, + high: 563.6, + low: 557.9, + close: 560.5, + volume: 1349444 + }), + new StockGoogleItem( + { + date: `2014-05-11`, + open: 558, + high: 559.9, + low: 555, + close: 558.8, + volume: 1097380 + }), + new StockGoogleItem( + { + date: `2014-05-12`, + open: 557.3, + high: 558, + low: 548.5, + close: 551.4, + volume: 1457104 + }), + new StockGoogleItem( + { + date: `2014-05-13`, + open: 552.3, + high: 552.3, + low: 545.6, + close: 551.8, + volume: 1217176 + }), + new StockGoogleItem( + { + date: `2014-05-16`, + open: 549.3, + high: 549.6, + low: 541.5, + close: 544.3, + volume: 1704027 + }), + new StockGoogleItem( + { + date: `2014-05-17`, + open: 544.2, + high: 545.3, + low: 539.3, + close: 543, + volume: 1445878 + }), + new StockGoogleItem( + { + date: `2014-05-18`, + open: 544.9, + high: 553.6, + low: 544, + close: 553.4, + volume: 1737343 + }), + new StockGoogleItem( + { + date: `2014-05-19`, + open: 554.2, + high: 555, + low: 548.5, + close: 554.9, + volume: 2451341 + }), + new StockGoogleItem( + { + date: `2014-05-20`, + open: 556.9, + high: 557.6, + low: 550.4, + close: 556.4, + volume: 4496962 + }), + new StockGoogleItem( + { + date: `2014-05-23`, + open: 555.1, + high: 565, + low: 554.3, + close: 565, + volume: 1534659 + }), + new StockGoogleItem( + { + date: `2014-05-24`, + open: 565.2, + high: 572.6, + low: 561, + close: 564.6, + volume: 2201789 + }), + new StockGoogleItem( + { + date: `2014-05-25`, + open: 565.3, + high: 580, + low: 565.2, + close: 578.6, + volume: 1964447 + }), + new StockGoogleItem( + { + date: `2014-05-26`, + open: 581, + high: 582.5, + low: 571.9, + close: 576, + volume: 1737210 + }), + new StockGoogleItem( + { + date: `2014-05-27`, + open: 577.2, + high: 579.9, + low: 573.8, + close: 577.2, + volume: 2231174 + }), + new StockGoogleItem( + { + date: `2014-05-30`, + open: 578.7, + high: 579.6, + low: 574.8, + close: 575.3, + volume: 1310909 + }), + new StockGoogleItem( + { + date: `2014-06-01`, + open: 578.3, + high: 584.4, + low: 576.6, + close: 582.7, + volume: 1446309 + }), + new StockGoogleItem( + { + date: `2014-06-02`, + open: 583.4, + high: 585.4, + low: 580.4, + close: 582.3, + volume: 1054936 + }), + new StockGoogleItem( + { + date: `2014-06-03`, + open: 583.4, + high: 585, + low: 580.9, + close: 584.7, + volume: 712210 + }), + new StockGoogleItem( + { + date: `2014-06-07`, + open: 583.8, + high: 586.4, + low: 579.6, + close: 582.3, + volume: 1061833 + }), + new StockGoogleItem( + { + date: `2014-06-08`, + open: 577.7, + high: 579.5, + low: 566.1, + close: 571.1, + volume: 1908647 + }), + new StockGoogleItem( + { + date: `2014-06-09`, + open: 571.6, + high: 576.7, + low: 569.4, + close: 576.1, + volume: 1113907 + }), + new StockGoogleItem( + { + date: `2014-06-10`, + open: 565.9, + high: 576.6, + low: 565, + close: 571.1, + volume: 1353317 + }), + new StockGoogleItem( + { + date: `2014-06-11`, + open: 571.9, + high: 580.9, + low: 571.4, + close: 579.2, + volume: 1617569 + }), + new StockGoogleItem( + { + date: `2014-06-14`, + open: 582.6, + high: 585.2, + low: 578, + close: 584.9, + volume: 1852290 + }), + new StockGoogleItem( + { + date: `2014-06-15`, + open: 585.7, + high: 585.8, + low: 576.6, + close: 584.8, + volume: 1618815 + }), + new StockGoogleItem( + { + date: `2014-06-16`, + open: 588, + high: 588.4, + low: 582.2, + close: 582.7, + volume: 1394560 + }), + new StockGoogleItem( + { + date: `2014-06-17`, + open: 579.5, + high: 581, + low: 568.6, + close: 573.7, + volume: 3015475 + }), + new StockGoogleItem( + { + date: `2014-06-18`, + open: 593, + high: 596.8, + low: 582, + close: 595.1, + volume: 4006389 + }), + new StockGoogleItem( + { + date: `2014-06-21`, + open: 591.8, + high: 594.4, + low: 585.2, + close: 589.5, + volume: 2060334 + }), + new StockGoogleItem( + { + date: `2014-06-22`, + open: 590.7, + high: 599.6, + low: 590.6, + close: 594.7, + volume: 1694787 + }), + new StockGoogleItem( + { + date: `2014-06-23`, + open: 593.2, + high: 597.9, + low: 592.5, + close: 596, + volume: 1229846 + }), + new StockGoogleItem( + { + date: `2014-06-24`, + open: 596.5, + high: 599.5, + low: 591.8, + close: 593.4, + volume: 1033341 + }), + new StockGoogleItem( + { + date: `2014-06-25`, + open: 590.4, + high: 591.9, + low: 587, + close: 589, + volume: 932724 + }), + new StockGoogleItem( + { + date: `2014-06-28`, + open: 588.1, + high: 592.5, + low: 584.8, + close: 590.6, + volume: 984161 + }), + new StockGoogleItem( + { + date: `2014-06-29`, + open: 588.8, + high: 589.7, + low: 583.5, + close: 585.6, + volume: 1346647 + }), + new StockGoogleItem( + { + date: `2014-06-30`, + open: 586.5, + high: 589.5, + low: 584, + close: 587.4, + volume: 1013932 + }), + new StockGoogleItem( + { + date: `2014-06-31`, + open: 580.6, + high: 583.6, + low: 570, + close: 571.6, + volume: 2099516 + }), + new StockGoogleItem( + { + date: `2014-07-01`, + open: 570.4, + high: 576, + low: 562.9, + close: 566.1, + volume: 1950171 + }), + new StockGoogleItem( + { + date: `2014-07-04`, + open: 569, + high: 575.4, + low: 564.1, + close: 573.1, + volume: 1427169 + }), + new StockGoogleItem( + { + date: `2014-07-05`, + open: 570, + high: 572, + low: 562.6, + close: 565.1, + volume: 1556685 + }), + new StockGoogleItem( + { + date: `2014-07-06`, + open: 561.8, + high: 570.7, + low: 560, + close: 566.4, + volume: 1330877 + }), + new StockGoogleItem( + { + date: `2014-07-07`, + open: 568, + high: 569.9, + low: 561.1, + close: 563.4, + volume: 1108900 + }), + new StockGoogleItem( + { + date: `2014-07-08`, + open: 563.6, + high: 570.3, + low: 560.4, + close: 568.8, + volume: 1492491 + }), + new StockGoogleItem( + { + date: `2014-07-11`, + open: 570, + high: 570.5, + low: 566, + close: 567.9, + volume: 1215968 + }), + new StockGoogleItem( + { + date: `2014-07-12`, + open: 564.5, + high: 565.9, + low: 560.9, + close: 562.7, + volume: 1537758 + }), + new StockGoogleItem( + { + date: `2014-07-13`, + open: 567.3, + high: 575, + low: 565.8, + close: 574.8, + volume: 1437922 + }), + new StockGoogleItem( + { + date: `2014-07-14`, + open: 576.2, + high: 577.9, + low: 570.9, + close: 574.6, + volume: 982926 + }), + new StockGoogleItem( + { + date: `2014-07-15`, + open: 577.9, + high: 579.4, + low: 570.5, + close: 573.5, + volume: 1517056 + }), + new StockGoogleItem( + { + date: `2014-07-18`, + open: 576.1, + high: 584.5, + low: 576, + close: 582.2, + volume: 1282531 + }), + new StockGoogleItem( + { + date: `2014-07-19`, + open: 585, + high: 587.3, + low: 584, + close: 586.9, + volume: 979298 + }), + new StockGoogleItem( + { + date: `2014-07-20`, + open: 585.9, + high: 586.7, + low: 582.6, + close: 584.5, + volume: 1034779 + }), + new StockGoogleItem( + { + date: `2014-07-21`, + open: 583.8, + high: 584.5, + low: 581.1, + close: 583.4, + volume: 912854 + }), + new StockGoogleItem( + { + date: `2014-07-22`, + open: 583.6, + high: 585.2, + low: 580.6, + close: 582.6, + volume: 789484 + }), + new StockGoogleItem( + { + date: `2014-07-25`, + open: 584.7, + high: 585, + low: 579, + close: 580.2, + volume: 1358810 + }), + new StockGoogleItem( + { + date: `2014-07-26`, + open: 581.3, + high: 581.8, + low: 576.6, + close: 577.9, + volume: 1635465 + }), + new StockGoogleItem( + { + date: `2014-07-27`, + open: 577.3, + high: 578.5, + low: 570.1, + close: 571, + volume: 1700161 + }), + new StockGoogleItem( + { + date: `2014-07-28`, + open: 569.6, + high: 573.3, + low: 567.1, + close: 569.2, + volume: 1295963 + }), + new StockGoogleItem( + { + date: `2014-07-29`, + open: 571.3, + high: 572, + low: 567.1, + close: 571.6, + volume: 1081231 + }), + new StockGoogleItem( + { + date: `2014-08-02`, + open: 571.9, + high: 577.8, + low: 571.2, + close: 577.3, + volume: 1576830 + }), + new StockGoogleItem( + { + date: `2014-08-03`, + open: 580, + high: 583, + low: 575, + close: 577.9, + volume: 1214586 + }), + new StockGoogleItem( + { + date: `2014-08-04`, + open: 580, + high: 586, + low: 579.2, + close: 582, + volume: 1459956 + }), + new StockGoogleItem( + { + date: `2014-08-05`, + open: 584, + high: 586.5, + low: 582, + close: 586.1, + volume: 1629477 + }), + new StockGoogleItem( + { + date: `2014-08-08`, + open: 586.6, + high: 591.8, + low: 586.3, + close: 589.7, + volume: 1429101 + }), + new StockGoogleItem( + { + date: `2014-08-09`, + open: 588.9, + high: 589, + low: 580, + close: 581, + volume: 1286722 + }), + new StockGoogleItem( + { + date: `2014-08-10`, + open: 581.5, + high: 583.5, + low: 576.9, + close: 583.1, + volume: 975145 + }), + new StockGoogleItem( + { + date: `2014-08-11`, + open: 580.4, + high: 581.8, + low: 576.3, + close: 581.4, + volume: 1217721 + }), + new StockGoogleItem( + { + date: `2014-08-12`, + open: 581, + high: 581.6, + low: 574.5, + close: 575.6, + volume: 1597677 + }), + new StockGoogleItem( + { + date: `2014-08-15`, + open: 572.9, + high: 575, + low: 568.2, + close: 573.1, + volume: 1596224 + }), + new StockGoogleItem( + { + date: `2014-08-16`, + open: 572.8, + high: 581.5, + low: 572.7, + close: 580, + volume: 1478306 + }), + new StockGoogleItem( + { + date: `2014-08-17`, + open: 580, + high: 587.5, + low: 578.8, + close: 584.8, + volume: 1690994 + }), + new StockGoogleItem( + { + date: `2014-08-18`, + open: 587, + high: 589.5, + low: 585, + close: 589.3, + volume: 1442012 + }), + new StockGoogleItem( + { + date: `2014-08-19`, + open: 591.5, + high: 596.5, + low: 589.5, + close: 596.1, + volume: 3727045 + }), + new StockGoogleItem( + { + date: `2014-08-22`, + open: 593.8, + high: 594, + low: 583.5, + close: 587.4, + volume: 1687710 + }), + new StockGoogleItem( + { + date: `2014-08-23`, + open: 586.9, + high: 586.9, + low: 581, + close: 581.1, + volume: 1467703 + }), + new StockGoogleItem( + { + date: `2014-08-24`, + open: 581.5, + high: 589.6, + low: 580.5, + close: 588, + volume: 1724537 + }), + new StockGoogleItem( + { + date: `2014-08-25`, + open: 587.5, + high: 588, + low: 574.2, + close: 575.1, + volume: 1925350 + }), + new StockGoogleItem( + { + date: `2014-08-26`, + open: 576.1, + high: 579.3, + low: 574.7, + close: 577.1, + volume: 1439807 + }), + new StockGoogleItem( + { + date: `2014-08-29`, + open: 571.8, + high: 578.2, + low: 571.2, + close: 576.4, + volume: 1281204 + }), + new StockGoogleItem( + { + date: `2014-08-30`, + open: 576.9, + high: 579.9, + low: 572.9, + close: 577.4, + volume: 1618437 + }), + new StockGoogleItem( + { + date: `2014-09-01`, + open: 576, + high: 577.6, + low: 567, + close: 568.3, + volume: 1445027 + }), + new StockGoogleItem( + { + date: `2014-09-02`, + open: 567.3, + high: 571.9, + low: 563.3, + close: 570.1, + volume: 1175307 + }), + new StockGoogleItem( + { + date: `2014-09-03`, + open: 573, + high: 577.2, + low: 572.5, + close: 575.3, + volume: 1138636 + }), + new StockGoogleItem( + { + date: `2014-09-06`, + open: 578.8, + high: 581, + low: 574.4, + close: 577.4, + volume: 1211320 + }), + new StockGoogleItem( + { + date: `2014-09-07`, + open: 574.4, + high: 575.3, + low: 563.7, + close: 563.7, + volume: 1906427 + }), + new StockGoogleItem( + { + date: `2014-09-08`, + open: 565.6, + high: 573.9, + low: 557.5, + close: 572.5, + volume: 1987888 + }), + new StockGoogleItem( + { + date: `2014-09-09`, + open: 571.2, + high: 571.5, + low: 559.1, + close: 560.9, + volume: 2519693 + }), + new StockGoogleItem( + { + date: `2014-09-10`, + open: 557.7, + high: 565.1, + low: 544, + close: 544.5, + volume: 3078634 + }), + new StockGoogleItem( + { + date: `2014-09-13`, + open: 545, + high: 549.5, + low: 533.1, + close: 533.2, + volume: 2578676 + }), + new StockGoogleItem( + { + date: `2014-09-14`, + open: 538.9, + high: 547.2, + low: 533.2, + close: 537.9, + volume: 2217230 + }), + new StockGoogleItem( + { + date: `2014-09-15`, + open: 531, + high: 532.8, + low: 518.3, + close: 530, + volume: 3712536 + }), + new StockGoogleItem( + { + date: `2014-09-16`, + open: 519, + high: 529.4, + low: 515, + close: 524.5, + volume: 3698423 + }), + new StockGoogleItem( + { + date: `2014-09-17`, + open: 527.3, + high: 531, + low: 508.5, + close: 511.2, + volume: 5530674 + }), + new StockGoogleItem( + { + date: `2014-09-20`, + open: 509.4, + high: 521.8, + low: 508.1, + close: 520.8, + volume: 2605505 + }), + new StockGoogleItem( + { + date: `2014-09-21`, + open: 525.2, + high: 526.8, + low: 519.1, + close: 526.5, + volume: 2332531 + }), + new StockGoogleItem( + { + date: `2014-09-22`, + open: 529.9, + high: 539.8, + low: 528.8, + close: 532.7, + volume: 2917183 + }), + new StockGoogleItem( + { + date: `2014-09-23`, + open: 539.3, + high: 547.2, + low: 535.9, + close: 544, + volume: 2345296 + }), + new StockGoogleItem( + { + date: `2014-09-24`, + open: 544.4, + high: 544.9, + low: 535.8, + close: 539.8, + volume: 1972047 + }), + new StockGoogleItem( + { + date: `2014-09-27`, + open: 537, + high: 544.4, + low: 537, + close: 540.8, + volume: 1184973 + }), + new StockGoogleItem( + { + date: `2014-09-28`, + open: 543, + high: 549, + low: 541.6, + close: 548.9, + volume: 1273372 + }), + new StockGoogleItem( + { + date: `2014-09-29`, + open: 550, + high: 554.2, + low: 547, + close: 549.3, + volume: 1767107 + }), + new StockGoogleItem( + { + date: `2014-09-30`, + open: 549, + high: 552.8, + low: 543.5, + close: 550.3, + volume: 1451667 + }), + new StockGoogleItem( + { + date: `2014-09-31`, + open: 559.4, + high: 559.6, + low: 554.8, + close: 559.1, + volume: 2032887 + }), + new StockGoogleItem( + { + date: `2014-10-03`, + open: 555.5, + high: 557.9, + low: 553.2, + close: 555.2, + volume: 1378511 + }), + new StockGoogleItem( + { + date: `2014-10-04`, + open: 553, + high: 555.5, + low: 549.3, + close: 554.1, + volume: 1240761 + }), + new StockGoogleItem( + { + date: `2014-10-05`, + open: 556.8, + high: 556.8, + low: 544, + close: 545.9, + volume: 2026740 + }), + new StockGoogleItem( + { + date: `2014-10-06`, + open: 545.5, + high: 546.9, + low: 541, + close: 542, + volume: 1329604 + }), + new StockGoogleItem( + { + date: `2014-10-07`, + open: 546.2, + high: 546.2, + low: 538.7, + close: 541, + volume: 1629259 + }), + new StockGoogleItem( + { + date: `2014-10-10`, + open: 541.5, + high: 549.6, + low: 541, + close: 547.5, + volume: 1131546 + }), + new StockGoogleItem( + { + date: `2014-10-11`, + open: 548.5, + high: 551.9, + low: 546.3, + close: 550.3, + volume: 964866 + }), + new StockGoogleItem( + { + date: `2014-10-12`, + open: 550.4, + high: 550.5, + low: 545.2, + close: 547.3, + volume: 1126594 + }), + new StockGoogleItem( + { + date: `2014-10-13`, + open: 549.8, + high: 549.8, + low: 543.5, + close: 545.4, + volume: 1335719 + }), + new StockGoogleItem( + { + date: `2014-10-14`, + open: 546.7, + high: 546.7, + low: 542.1, + close: 544.4, + volume: 1285991 + }), + new StockGoogleItem( + { + date: `2014-10-17`, + open: 543.6, + high: 543.8, + low: 534.1, + close: 536.5, + volume: 1721282 + }), + new StockGoogleItem( + { + date: `2014-10-18`, + open: 537.5, + high: 541.9, + low: 534.2, + close: 535, + volume: 1957664 + }), + new StockGoogleItem( + { + date: `2014-10-19`, + open: 535, + high: 538.2, + low: 530.1, + close: 537, + volume: 1388440 + }), + new StockGoogleItem( + { + date: `2014-10-20`, + open: 531.3, + high: 535.1, + low: 531.1, + close: 534.8, + volume: 1559131 + }), + new StockGoogleItem( + { + date: `2014-10-21`, + open: 541.6, + high: 542.1, + low: 536.6, + close: 537.5, + volume: 2218249 + }), + new StockGoogleItem( + { + date: `2014-10-24`, + open: 537.6, + high: 542.7, + low: 535.6, + close: 539.3, + volume: 1701682 + }), + new StockGoogleItem( + { + date: `2014-10-25`, + open: 539, + high: 544, + low: 538.6, + close: 541.1, + volume: 1784967 + }), + new StockGoogleItem( + { + date: `2014-10-26`, + open: 540.9, + high: 541.5, + low: 537, + close: 540.4, + volume: 1519503 + }), + new StockGoogleItem( + { + date: `2014-10-28`, + open: 540.6, + high: 542, + low: 536.6, + close: 541.8, + volume: 1145231 + }), + new StockGoogleItem( + { + date: `2014-11-01`, + open: 538.9, + high: 541.4, + low: 531.9, + close: 533.8, + volume: 2109599 + }), + new StockGoogleItem( + { + date: `2014-11-02`, + open: 533.5, + high: 535.5, + low: 529.8, + close: 533.8, + volume: 1522481 + }), + new StockGoogleItem( + { + date: `2014-11-03`, + open: 531.4, + high: 536, + low: 529.3, + close: 531.3, + volume: 1279288 + }), + new StockGoogleItem( + { + date: `2014-11-04`, + open: 531.2, + high: 537.3, + low: 528.6, + close: 537.3, + volume: 1392208 + }), + new StockGoogleItem( + { + date: `2014-11-05`, + open: 531, + high: 532.9, + low: 524.3, + close: 525.3, + volume: 2558649 + }), + new StockGoogleItem( + { + date: `2014-11-08`, + open: 527.1, + high: 531, + low: 523.8, + close: 527, + volume: 2327127 + }), + new StockGoogleItem( + { + date: `2014-11-09`, + open: 522.1, + high: 534.2, + low: 520.5, + close: 533.4, + volume: 1871268 + }), + new StockGoogleItem( + { + date: `2014-11-10`, + open: 533.1, + high: 536.3, + low: 525.6, + close: 526.1, + volume: 1716835 + }), + new StockGoogleItem( + { + date: `2014-11-11`, + open: 527.8, + high: 533.9, + low: 527.1, + close: 528.3, + volume: 1610964 + }), + new StockGoogleItem( + { + date: `2014-11-12`, + open: 523.5, + high: 528.5, + low: 518.7, + close: 518.7, + volume: 1989117 + }), + new StockGoogleItem( + { + date: `2014-11-15`, + open: 522.7, + high: 523.1, + low: 513.3, + close: 513.8, + volume: 2812786 + }), + new StockGoogleItem( + { + date: `2014-11-16`, + open: 511.6, + high: 513, + low: 489, + close: 495.4, + volume: 3953371 + }), + new StockGoogleItem( + { + date: `2014-11-17`, + open: 497, + high: 507, + low: 496.8, + close: 504.9, + volume: 2875281 + }), + new StockGoogleItem( + { + date: `2014-11-18`, + open: 513, + high: 513.9, + low: 504.7, + close: 511.1, + volume: 2918730 + }), + new StockGoogleItem( + { + date: `2014-11-19`, + open: 511.5, + high: 517.7, + low: 506.9, + close: 516.4, + volume: 3680148 + }), + new StockGoogleItem( + { + date: `2014-11-22`, + open: 516.1, + high: 526.5, + low: 516.1, + close: 524.9, + volume: 2723599 + }), + new StockGoogleItem( + { + date: `2014-11-23`, + open: 527, + high: 534.6, + low: 526.3, + close: 530.6, + volume: 2191567 + }), + new StockGoogleItem( + { + date: `2014-11-24`, + open: 530.5, + high: 531.8, + low: 527, + close: 528.8, + volume: 704035 + }), + new StockGoogleItem( + { + date: `2014-11-26`, + open: 528.8, + high: 534.3, + low: 527.3, + close: 534, + volume: 1037727 + }), + new StockGoogleItem( + { + date: `2014-11-29`, + open: 532.2, + high: 535.5, + low: 530, + close: 530.3, + volume: 2276104 + }), + new StockGoogleItem( + { + date: `2014-11-30`, + open: 528.1, + high: 531.1, + low: 527.1, + close: 530.4, + volume: 873923 + }), + new StockGoogleItem( + { + date: `2014-11-31`, + open: 531.3, + high: 532.6, + low: 525.8, + close: 526.4, + volume: 1371819 + }), + new StockGoogleItem( + { + date: `2015-00-02`, + open: 529, + high: 531.3, + low: 524.1, + close: 524.8, + volume: 1446662 + }), + new StockGoogleItem( + { + date: `2015-00-05`, + open: 523.3, + high: 524.3, + low: 513.1, + close: 513.9, + volume: 2054238 + }), + new StockGoogleItem( + { + date: `2015-00-06`, + open: 515, + high: 516.2, + low: 501.1, + close: 502, + volume: 2891950 + }), + new StockGoogleItem( + { + date: `2015-00-07`, + open: 507, + high: 507.2, + low: 499.6, + close: 501.1, + volume: 2059366 + }), + new StockGoogleItem( + { + date: `2015-00-08`, + open: 498, + high: 503.5, + low: 491, + close: 502.7, + volume: 3344395 + }), + new StockGoogleItem( + { + date: `2015-00-09`, + open: 504.8, + high: 504.9, + low: 494.8, + close: 496.2, + volume: 2065715 + }), + new StockGoogleItem( + { + date: `2015-00-12`, + open: 494.9, + high: 496, + low: 487.6, + close: 492.6, + volume: 2320446 + }), + new StockGoogleItem( + { + date: `2015-00-13`, + open: 498.8, + high: 503, + low: 492.4, + close: 496.2, + volume: 2365687 + }), + new StockGoogleItem( + { + date: `2015-00-14`, + open: 494.6, + high: 503.2, + low: 493, + close: 500.9, + volume: 2229638 + }), + new StockGoogleItem( + { + date: `2015-00-15`, + open: 505.6, + high: 505.7, + low: 497.8, + close: 501.8, + volume: 2711355 + }), + new StockGoogleItem( + { + date: `2015-00-16`, + open: 500, + high: 508.2, + low: 500, + close: 508.1, + volume: 2292043 + }), + new StockGoogleItem( + { + date: `2015-00-20`, + open: 511, + high: 512.5, + low: 506, + close: 506.9, + volume: 2225922 + }), + new StockGoogleItem( + { + date: `2015-00-21`, + open: 507.3, + high: 519.3, + low: 506.2, + close: 518, + volume: 2262455 + }), + new StockGoogleItem( + { + date: `2015-00-22`, + open: 521.5, + high: 536.3, + low: 519.7, + close: 534.4, + volume: 2669558 + }), + new StockGoogleItem( + { + date: `2015-00-23`, + open: 535.6, + high: 542.2, + low: 533, + close: 540, + volume: 2275485 + }), + new StockGoogleItem( + { + date: `2015-00-26`, + open: 538.5, + high: 539, + low: 529.7, + close: 535.2, + volume: 1539524 + }), + new StockGoogleItem( + { + date: `2015-00-27`, + open: 530, + high: 530.7, + low: 518.2, + close: 518.6, + volume: 1898844 + }), + new StockGoogleItem( + { + date: `2015-00-28`, + open: 522.8, + high: 523, + low: 510, + close: 510, + volume: 1679230 + }), + new StockGoogleItem( + { + date: `2015-00-29`, + open: 511, + high: 511.1, + low: 501.2, + close: 510.7, + volume: 4174924 + }), + new StockGoogleItem( + { + date: `2015-00-30`, + open: 515.9, + high: 539.9, + low: 515.5, + close: 534.5, + volume: 5590977 + }), + new StockGoogleItem( + { + date: `2015-01-02`, + open: 531.7, + high: 533, + low: 518.5, + close: 528.5, + volume: 2841976 + }), + new StockGoogleItem( + { + date: `2015-01-03`, + open: 528, + high: 533.4, + low: 523.3, + close: 529.2, + volume: 2033085 + }), + new StockGoogleItem( + { + date: `2015-01-04`, + open: 529.2, + high: 532.7, + low: 521.3, + close: 522.8, + volume: 1659125 + }), + new StockGoogleItem( + { + date: `2015-01-05`, + open: 523.8, + high: 528.5, + low: 522.1, + close: 527.6, + volume: 1844687 + }), + new StockGoogleItem( + { + date: `2015-01-06`, + open: 527.6, + high: 537.2, + low: 526.4, + close: 531, + volume: 1758650 + }), + new StockGoogleItem( + { + date: `2015-01-09`, + open: 528, + high: 532, + low: 526, + close: 527.8, + volume: 1264276 + }), + new StockGoogleItem( + { + date: `2015-01-10`, + open: 529.3, + high: 537.7, + low: 526.9, + close: 536.9, + volume: 1745076 + }), + new StockGoogleItem( + { + date: `2015-01-11`, + open: 535.3, + high: 538.5, + low: 533.4, + close: 536, + volume: 1373970 + }), + new StockGoogleItem( + { + date: `2015-01-12`, + open: 537.3, + high: 544.8, + low: 534.7, + close: 542.9, + volume: 1615824 + }), + new StockGoogleItem( + { + date: `2015-01-13`, + open: 543.4, + high: 549.9, + low: 543.1, + close: 549, + volume: 1895126 + }), + new StockGoogleItem( + { + date: `2015-01-17`, + open: 546.8, + high: 550, + low: 541.1, + close: 542.8, + volume: 1612439 + }), + new StockGoogleItem( + { + date: `2015-01-18`, + open: 541.4, + high: 545.5, + low: 537.5, + close: 539.7, + volume: 1449089 + }), + new StockGoogleItem( + { + date: `2015-01-19`, + open: 538, + high: 543.1, + low: 538, + close: 542.9, + volume: 987478 + }), + new StockGoogleItem( + { + date: `2015-01-20`, + open: 543.1, + high: 543.8, + low: 535.8, + close: 539, + volume: 1441212 + }), + new StockGoogleItem( + { + date: `2015-01-23`, + open: 536, + high: 536.4, + low: 529.4, + close: 531.9, + volume: 1453907 + }), + new StockGoogleItem( + { + date: `2015-01-24`, + open: 530, + high: 536.8, + low: 528.3, + close: 536.1, + volume: 1002393 + }), + new StockGoogleItem( + { + date: `2015-01-25`, + open: 535.9, + high: 546.2, + low: 535.4, + close: 543.9, + volume: 1821041 + }), + new StockGoogleItem( + { + date: `2015-01-26`, + open: 543.2, + high: 556.1, + low: 541.5, + close: 555.5, + volume: 2305219 + }), + new StockGoogleItem( + { + date: `2015-01-27`, + open: 554.2, + high: 564.7, + low: 552.9, + close: 558.4, + volume: 2403553 + }), + new StockGoogleItem( + { + date: `2015-02-02`, + open: 560.5, + high: 572.1, + low: 558.8, + close: 571.3, + volume: 2123796 + }), + new StockGoogleItem( + { + date: `2015-02-03`, + open: 570.5, + high: 575.4, + low: 566.5, + close: 573.6, + volume: 1700084 + }), + new StockGoogleItem( + { + date: `2015-02-04`, + open: 571.9, + high: 577.1, + low: 568, + close: 573.4, + volume: 1871694 + }), + new StockGoogleItem( + { + date: `2015-02-05`, + open: 575, + high: 577.9, + low: 573.4, + close: 575.3, + volume: 1385818 + }), + new StockGoogleItem( + { + date: `2015-02-06`, + open: 574.9, + high: 576.7, + low: 566.8, + close: 567.7, + volume: 1654561 + }), + new StockGoogleItem( + { + date: `2015-02-09`, + open: 566.9, + high: 570.3, + low: 563.5, + close: 568.9, + volume: 1059336 + }), + new StockGoogleItem( + { + date: `2015-02-10`, + open: 564.3, + high: 564.9, + low: 554.7, + close: 555, + volume: 1787357 + }), + new StockGoogleItem( + { + date: `2015-02-11`, + open: 555.1, + high: 558.1, + low: 550.7, + close: 551.2, + volume: 1815763 + }), + new StockGoogleItem( + { + date: `2015-02-12`, + open: 553.5, + high: 556.4, + low: 550.5, + close: 555.5, + volume: 1385772 + }), + new StockGoogleItem( + { + date: `2015-02-13`, + open: 553.5, + high: 558.4, + low: 544.2, + close: 547.3, + volume: 1698872 + }), + new StockGoogleItem( + { + date: `2015-02-16`, + open: 551, + high: 556.9, + low: 546, + close: 554.5, + volume: 1636493 + }), + new StockGoogleItem( + { + date: `2015-02-17`, + open: 551.7, + high: 553.8, + low: 548, + close: 550.8, + volume: 1800570 + }), + new StockGoogleItem( + { + date: `2015-02-18`, + open: 552.5, + high: 559.8, + low: 547, + close: 559.5, + volume: 2128714 + }), + new StockGoogleItem( + { + date: `2015-02-19`, + open: 559.4, + high: 560.8, + low: 556.1, + close: 558, + volume: 1194049 + }), + new StockGoogleItem( + { + date: `2015-02-20`, + open: 561.6, + high: 561.7, + low: 559, + close: 560.4, + volume: 2609690 + }), + new StockGoogleItem( + { + date: `2015-02-23`, + open: 560.4, + high: 562.4, + low: 555.8, + close: 558.8, + volume: 1639306 + }), + new StockGoogleItem( + { + date: `2015-02-24`, + open: 562.6, + high: 574.6, + low: 561.2, + close: 570.2, + volume: 2576234 + }), + new StockGoogleItem( + { + date: `2015-02-25`, + open: 570.5, + high: 572.3, + low: 558.7, + close: 558.8, + volume: 2146384 + }), + new StockGoogleItem( + { + date: `2015-02-26`, + open: 557.6, + high: 558.9, + low: 550.6, + close: 555.2, + volume: 1568331 + }), + new StockGoogleItem( + { + date: `2015-02-27`, + open: 553, + high: 555.3, + low: 548.1, + close: 548.3, + volume: 1892323 + }), + new StockGoogleItem( + { + date: `2015-02-30`, + open: 551.6, + high: 553.5, + low: 548.2, + close: 552, + volume: 1283958 + }), + new StockGoogleItem( + { + date: `2015-02-31`, + open: 550, + high: 554.7, + low: 546.7, + close: 548, + volume: 1583677 + }), + new StockGoogleItem( + { + date: `2015-03-01`, + open: 548.6, + high: 551.1, + low: 539.5, + close: 542.6, + volume: 1957718 + }), + new StockGoogleItem( + { + date: `2015-03-02`, + open: 540.9, + high: 540.9, + low: 533.9, + close: 535.5, + volume: 1711737 + }), + new StockGoogleItem( + { + date: `2015-03-06`, + open: 532.2, + high: 538.4, + low: 529.6, + close: 536.8, + volume: 1320767 + }), + new StockGoogleItem( + { + date: `2015-03-07`, + open: 538.1, + high: 542.7, + low: 536, + close: 537, + volume: 1299298 + }), + new StockGoogleItem( + { + date: `2015-03-08`, + open: 538.4, + high: 543.9, + low: 538.4, + close: 541.6, + volume: 1175332 + }), + new StockGoogleItem( + { + date: `2015-03-09`, + open: 541, + high: 542, + low: 535.5, + close: 540.8, + volume: 1553586 + }), + new StockGoogleItem( + { + date: `2015-03-10`, + open: 542.3, + high: 542.3, + low: 537.3, + close: 540, + volume: 1405574 + }), + new StockGoogleItem( + { + date: `2015-03-13`, + open: 538.4, + high: 544.1, + low: 537.3, + close: 539.2, + volume: 1640809 + }), + new StockGoogleItem( + { + date: `2015-03-14`, + open: 536.3, + high: 537.6, + low: 528.1, + close: 530.4, + volume: 2597043 + }), + new StockGoogleItem( + { + date: `2015-03-15`, + open: 528.7, + high: 534.7, + low: 523.2, + close: 532.5, + volume: 2312512 + }), + new StockGoogleItem( + { + date: `2015-03-16`, + open: 529.9, + high: 535.6, + low: 529.6, + close: 533.8, + volume: 1296304 + }), + new StockGoogleItem( + { + date: `2015-03-17`, + open: 528.7, + high: 529.8, + low: 521, + close: 524, + volume: 2145955 + }), + new StockGoogleItem( + { + date: `2015-03-20`, + open: 525.6, + high: 536.1, + low: 524.5, + close: 535.4, + volume: 1675487 + }), + new StockGoogleItem( + { + date: `2015-03-21`, + open: 537.5, + high: 539.4, + low: 533.7, + close: 534, + volume: 1839668 + }), + new StockGoogleItem( + { + date: `2015-03-22`, + open: 534.4, + high: 541.1, + low: 531.8, + close: 539.4, + volume: 1589248 + }), + new StockGoogleItem( + { + date: `2015-03-23`, + open: 541, + high: 551, + low: 540.2, + close: 547, + volume: 4173376 + }), + new StockGoogleItem( + { + date: `2015-03-24`, + open: 566.1, + high: 571.1, + low: 557.3, + close: 565.1, + volume: 4919031 + }), + new StockGoogleItem( + { + date: `2015-03-27`, + open: 563.4, + high: 566, + low: 553.2, + close: 555.4, + volume: 2398039 + }), + new StockGoogleItem( + { + date: `2015-03-28`, + open: 554.6, + high: 556, + low: 550.4, + close: 553.7, + volume: 1490983 + }), + new StockGoogleItem( + { + date: `2015-03-29`, + open: 550.5, + high: 553.7, + low: 546.9, + close: 549.1, + volume: 1698761 + }), + new StockGoogleItem( + { + date: `2015-03-30`, + open: 547.9, + high: 548.6, + low: 535, + close: 537.3, + volume: 2082214 + }), + new StockGoogleItem( + { + date: `2015-04-01`, + open: 538.4, + high: 539.5, + low: 532.1, + close: 537.9, + volume: 1768181 + }), + new StockGoogleItem( + { + date: `2015-04-04`, + open: 538.5, + high: 544.1, + low: 535.1, + close: 540.8, + volume: 1307960 + }), + new StockGoogleItem( + { + date: `2015-04-05`, + open: 538.2, + high: 539.7, + low: 530.4, + close: 530.8, + volume: 1383068 + }), + new StockGoogleItem( + { + date: `2015-04-06`, + open: 531.2, + high: 532.4, + low: 521.1, + close: 524.2, + volume: 1566987 + }), + new StockGoogleItem( + { + date: `2015-04-07`, + open: 524, + high: 533.5, + low: 521.8, + close: 530.7, + volume: 1546278 + }), + new StockGoogleItem( + { + date: `2015-04-08`, + open: 536.6, + high: 541.1, + low: 536, + close: 538.2, + volume: 1527615 + }), + new StockGoogleItem( + { + date: `2015-04-11`, + open: 538.4, + high: 542, + low: 535.4, + close: 535.7, + volume: 905285 + }), + new StockGoogleItem( + { + date: `2015-04-12`, + open: 531.6, + high: 533.2, + low: 525.3, + close: 529, + volume: 1634174 + }), + new StockGoogleItem( + { + date: `2015-04-13`, + open: 530.6, + high: 534.3, + low: 528.7, + close: 529.6, + volume: 1253063 + }), + new StockGoogleItem( + { + date: `2015-04-14`, + open: 533.8, + high: 539, + low: 532.4, + close: 538.4, + volume: 1403935 + }), + new StockGoogleItem( + { + date: `2015-04-15`, + open: 539.2, + high: 539.3, + low: 530.4, + close: 533.9, + volume: 1971343 + }), + new StockGoogleItem( + { + date: `2015-04-18`, + open: 532, + high: 534.8, + low: 528.9, + close: 532.3, + volume: 2003421 + }), + new StockGoogleItem( + { + date: `2015-04-19`, + open: 534, + high: 540.7, + low: 533, + close: 537.4, + volume: 1966947 + }), + new StockGoogleItem( + { + date: `2015-04-20`, + open: 538.5, + high: 542.9, + low: 533, + close: 539.3, + volume: 1430826 + }), + new StockGoogleItem( + { + date: `2015-04-21`, + open: 538, + high: 543.8, + low: 536, + close: 542.5, + volume: 1462695 + }), + new StockGoogleItem( + { + date: `2015-04-22`, + open: 540.1, + high: 544.2, + low: 539.5, + close: 540.1, + volume: 1176214 + }), + new StockGoogleItem( + { + date: `2015-04-26`, + open: 538.1, + high: 539, + low: 529.9, + close: 532.3, + volume: 2406512 + }), + new StockGoogleItem( + { + date: `2015-04-27`, + open: 532.8, + high: 540.5, + low: 531.7, + close: 539.8, + volume: 1525019 + }), + new StockGoogleItem( + { + date: `2015-04-28`, + open: 538, + high: 540.6, + low: 536.3, + close: 539.8, + volume: 1029849 + }), + new StockGoogleItem( + { + date: `2015-04-29`, + open: 537.4, + high: 538.6, + low: 531.5, + close: 532.1, + volume: 2597407 + }), + new StockGoogleItem( + { + date: `2015-05-01`, + open: 536.8, + high: 536.8, + low: 529.8, + close: 534, + volume: 1904332 + }), + new StockGoogleItem( + { + date: `2015-05-02`, + open: 532.9, + high: 543, + low: 531.3, + close: 539.2, + volume: 1938989 + }), + new StockGoogleItem( + { + date: `2015-05-03`, + open: 539.9, + high: 543.5, + low: 537.1, + close: 540.3, + volume: 1717036 + }), + new StockGoogleItem( + { + date: `2015-05-04`, + open: 537.8, + high: 540.6, + low: 534.3, + close: 536.7, + volume: 1348337 + }), + new StockGoogleItem( + { + date: `2015-05-05`, + open: 536.4, + high: 537.2, + low: 532.5, + close: 533.3, + volume: 1388220 + }), + new StockGoogleItem( + { + date: `2015-05-08`, + open: 533.3, + high: 534.1, + low: 526.2, + close: 526.8, + volume: 1524139 + }), + new StockGoogleItem( + { + date: `2015-05-09`, + open: 527.6, + high: 529.2, + low: 523, + close: 526.7, + volume: 1455266 + }), + new StockGoogleItem( + { + date: `2015-05-10`, + open: 529.4, + high: 538.4, + low: 529.4, + close: 536.7, + volume: 1814958 + }), + new StockGoogleItem( + { + date: `2015-05-11`, + open: 538.4, + high: 539, + low: 533, + close: 534.6, + volume: 1217536 + }), + new StockGoogleItem( + { + date: `2015-05-12`, + open: 531.6, + high: 533.1, + low: 530.2, + close: 532.3, + volume: 955789 + }), + new StockGoogleItem( + { + date: `2015-05-15`, + open: 528, + high: 528.3, + low: 524, + close: 527.2, + volume: 1632702 + }), + new StockGoogleItem( + { + date: `2015-05-16`, + open: 528.4, + high: 529.6, + low: 525.6, + close: 528.1, + volume: 1071814 + }), + new StockGoogleItem( + { + date: `2015-05-17`, + open: 529.4, + high: 531, + low: 525.1, + close: 529.3, + volume: 1294216 + }), + new StockGoogleItem( + { + date: `2015-05-18`, + open: 531, + high: 538.1, + low: 530.8, + close: 536.7, + volume: 1833109 + }), + new StockGoogleItem( + { + date: `2015-05-19`, + open: 537.2, + high: 538.3, + low: 533, + close: 536.7, + volume: 1893497 + }), + new StockGoogleItem( + { + date: `2015-05-22`, + open: 539.6, + high: 543.7, + low: 537.5, + close: 538.2, + volume: 1250282 + }), + new StockGoogleItem( + { + date: `2015-05-23`, + open: 539.6, + high: 541.5, + low: 535.3, + close: 540.5, + volume: 1197450 + }), + new StockGoogleItem( + { + date: `2015-05-24`, + open: 540, + high: 540, + low: 535.7, + close: 537.8, + volume: 1286608 + }), + new StockGoogleItem( + { + date: `2015-05-25`, + open: 538.9, + high: 540.9, + low: 535.2, + close: 535.2, + volume: 1335697 + }), + new StockGoogleItem( + { + date: `2015-05-26`, + open: 537.3, + high: 537.8, + low: 531.4, + close: 531.7, + volume: 2109130 + }), + new StockGoogleItem( + { + date: `2015-05-29`, + open: 525, + high: 528.6, + low: 520.5, + close: 521.5, + volume: 1937821 + }), + new StockGoogleItem( + { + date: `2015-05-30`, + open: 526, + high: 526.3, + low: 520.5, + close: 520.5, + volume: 2235595 + }), + new StockGoogleItem( + { + date: `2015-06-01`, + open: 524.7, + high: 525.7, + low: 518.2, + close: 521.8, + volume: 1961354 + }), + new StockGoogleItem( + { + date: `2015-06-02`, + open: 521.1, + high: 524.6, + low: 521.1, + close: 523.4, + volume: 1235903 + }), + new StockGoogleItem( + { + date: `2015-06-06`, + open: 519.5, + high: 525.3, + low: 519, + close: 522.9, + volume: 1280525 + }), + new StockGoogleItem( + { + date: `2015-06-07`, + open: 523.1, + high: 526.2, + low: 515.2, + close: 525, + volume: 1597229 + }), + new StockGoogleItem( + { + date: `2015-06-08`, + open: 521, + high: 522.7, + low: 516.1, + close: 516.8, + volume: 1296699 + }), + new StockGoogleItem( + { + date: `2015-06-09`, + open: 523.1, + high: 523.8, + low: 520.4, + close: 520.7, + volume: 1842347 + }), + new StockGoogleItem( + { + date: `2015-06-10`, + open: 526.3, + high: 532.6, + low: 525.5, + close: 530.1, + volume: 1956682 + }), + new StockGoogleItem( + { + date: `2015-06-13`, + open: 532.9, + high: 547.1, + low: 532.4, + close: 546.5, + volume: 2206475 + }), + new StockGoogleItem( + { + date: `2015-06-14`, + open: 546.8, + high: 565.9, + low: 546.7, + close: 561.1, + volume: 3244066 + }), + new StockGoogleItem( + { + date: `2015-06-15`, + open: 560.1, + high: 566.5, + low: 556.8, + close: 560.2, + volume: 1784554 + }), + new StockGoogleItem( + { + date: `2015-06-16`, + open: 565.1, + high: 580.7, + low: 565, + close: 579.9, + volume: 4768318 + }), + new StockGoogleItem( + { + date: `2015-06-17`, + open: 649, + high: 674.5, + low: 645, + close: 672.9, + volume: 11164943 + }), + new StockGoogleItem( + { + date: `2015-06-20`, + open: 659.2, + high: 668.9, + low: 653, + close: 663, + volume: 5860872 + }), + new StockGoogleItem( + { + date: `2015-06-21`, + open: 655.2, + high: 673, + low: 654.3, + close: 662.3, + volume: 3377196 + }), + new StockGoogleItem( + { + date: `2015-06-22`, + open: 660.9, + high: 678.6, + low: 659, + close: 662.1, + volume: 3929309 + }), + new StockGoogleItem( + { + date: `2015-06-23`, + open: 661.3, + high: 663.6, + low: 641, + close: 644.3, + volume: 3029109 + }), + new StockGoogleItem( + { + date: `2015-06-24`, + open: 647, + high: 648.2, + low: 622.5, + close: 623.6, + volume: 3625747 + }), + new StockGoogleItem( + { + date: `2015-06-27`, + open: 621, + high: 634.3, + low: 620.5, + close: 627.3, + volume: 2675381 + }), + new StockGoogleItem( + { + date: `2015-06-28`, + open: 632.8, + high: 632.8, + low: 623.3, + close: 628, + volume: 1727327 + }), + new StockGoogleItem( + { + date: `2015-06-29`, + open: 628.8, + high: 633.4, + low: 622.6, + close: 631.9, + volume: 1575069 + }), + new StockGoogleItem( + { + date: `2015-06-30`, + open: 630, + high: 635.2, + low: 622, + close: 632.6, + volume: 1474203 + }), + new StockGoogleItem( + { + date: `2015-06-31`, + open: 631.4, + high: 632.9, + low: 625.5, + close: 625.6, + volume: 1706149 + }), + new StockGoogleItem( + { + date: `2015-07-03`, + open: 625.3, + high: 633.1, + low: 625.3, + close: 631.2, + volume: 1304511 + }), + new StockGoogleItem( + { + date: `2015-07-04`, + open: 628.4, + high: 634.8, + low: 627.2, + close: 629.3, + volume: 1490881 + }), + new StockGoogleItem( + { + date: `2015-07-05`, + open: 634.3, + high: 647.9, + low: 633.2, + close: 643.8, + volume: 2334266 + }), + new StockGoogleItem( + { + date: `2015-07-06`, + open: 645, + high: 645.4, + low: 632.3, + close: 642.7, + volume: 1572600 + }), + new StockGoogleItem( + { + date: `2015-07-07`, + open: 640.2, + high: 642.7, + low: 629.7, + close: 635.3, + volume: 1403865 + }), + new StockGoogleItem( + { + date: `2015-07-10`, + open: 639.5, + high: 643.4, + low: 631.3, + close: 633.7, + volume: 1809205 + }), + new StockGoogleItem( + { + date: `2015-07-11`, + open: 669.2, + high: 674.9, + low: 654.3, + close: 660.8, + volume: 5029203 + }), + new StockGoogleItem( + { + date: `2015-07-12`, + open: 663.1, + high: 665, + low: 652.3, + close: 659.6, + volume: 2940803 + }), + new StockGoogleItem( + { + date: `2015-07-13`, + open: 659.3, + high: 664.5, + low: 651.7, + close: 656.5, + volume: 1810749 + }), + new StockGoogleItem( + { + date: `2015-07-14`, + open: 655, + high: 659.9, + low: 652.7, + close: 657.1, + volume: 1072061 + }), + new StockGoogleItem( + { + date: `2015-07-17`, + open: 656.8, + high: 661.4, + low: 651.2, + close: 660.9, + volume: 1051699 + }), + new StockGoogleItem( + { + date: `2015-07-18`, + open: 661.9, + high: 664, + low: 653.5, + close: 656.1, + volume: 1456059 + }), + new StockGoogleItem( + { + date: `2015-07-19`, + open: 656.6, + high: 667, + low: 654.2, + close: 660.9, + volume: 2134098 + }), + new StockGoogleItem( + { + date: `2015-07-20`, + open: 655.5, + high: 663, + low: 642.9, + close: 646.8, + volume: 2855299 + }), + new StockGoogleItem( + { + date: `2015-07-21`, + open: 639.8, + high: 640, + low: 612.3, + close: 612.5, + volume: 4265183 + }), + new StockGoogleItem( + { + date: `2015-07-24`, + open: 573, + high: 614, + low: 565, + close: 589.6, + volume: 5770302 + }), + new StockGoogleItem( + { + date: `2015-07-25`, + open: 614.9, + high: 617.5, + low: 581.1, + close: 582.1, + volume: 3537966 + }), + new StockGoogleItem( + { + date: `2015-07-26`, + open: 610.4, + high: 631.7, + low: 599, + close: 628.6, + volume: 4235891 + }), + new StockGoogleItem( + { + date: `2015-07-27`, + open: 639.4, + high: 643.6, + low: 622, + close: 637.6, + volume: 3491336 + }), + new StockGoogleItem( + { + date: `2015-07-28`, + open: 632.8, + high: 636.9, + low: 624.6, + close: 630.4, + volume: 1978733 + }), + new StockGoogleItem( + { + date: `2015-07-31`, + open: 627.5, + high: 635.8, + low: 617.7, + close: 618.3, + volume: 2176737 + }), + new StockGoogleItem( + { + date: `2015-08-01`, + open: 602.4, + high: 612.9, + low: 594.1, + close: 597.8, + volume: 3702105 + }), + new StockGoogleItem( + { + date: `2015-08-02`, + open: 605.6, + high: 614.3, + low: 599.7, + close: 614.3, + volume: 2575620 + }), + new StockGoogleItem( + { + date: `2015-08-03`, + open: 617, + high: 619.7, + low: 602.8, + close: 606.3, + volume: 1759572 + }), + new StockGoogleItem( + { + date: `2015-08-04`, + open: 600, + high: 603.5, + low: 595.3, + close: 600.7, + volume: 2089453 + }), + new StockGoogleItem( + { + date: `2015-08-08`, + open: 612.5, + high: 616.3, + low: 604.1, + close: 614.7, + volume: 2279538 + }), + new StockGoogleItem( + { + date: `2015-08-09`, + open: 621.2, + high: 626.5, + low: 609.6, + close: 612.7, + volume: 1702094 + }), + new StockGoogleItem( + { + date: `2015-08-10`, + open: 613.1, + high: 624.2, + low: 611.4, + close: 621.4, + volume: 1900526 + }), + new StockGoogleItem( + { + date: `2015-08-11`, + open: 619.8, + high: 625.8, + low: 617.4, + close: 625.8, + volume: 1373545 + }), + new StockGoogleItem( + { + date: `2015-08-14`, + open: 625.7, + high: 625.9, + low: 619.4, + close: 623.2, + volume: 1702271 + }), + new StockGoogleItem( + { + date: `2015-08-15`, + open: 626.7, + high: 638.7, + low: 623.8, + close: 635.1, + volume: 2084397 + }), + new StockGoogleItem( + { + date: `2015-08-16`, + open: 635.5, + high: 638, + low: 632.3, + close: 636, + volume: 1286454 + }), + new StockGoogleItem( + { + date: `2015-08-17`, + open: 637.8, + high: 650.9, + low: 635, + close: 642.9, + volume: 2274690 + }), + new StockGoogleItem( + { + date: `2015-08-18`, + open: 636.8, + high: 640, + low: 627, + close: 629.3, + volume: 5133386 + }), + new StockGoogleItem( + { + date: `2015-08-21`, + open: 634.4, + high: 636.5, + low: 625.9, + close: 635.4, + volume: 1788506 + }), + new StockGoogleItem( + { + date: `2015-08-22`, + open: 627, + high: 627.5, + low: 615.4, + close: 622.7, + volume: 2562869 + }), + new StockGoogleItem( + { + date: `2015-08-23`, + open: 622, + high: 628.9, + low: 620, + close: 622.4, + volume: 1470949 + }), + new StockGoogleItem( + { + date: `2015-08-24`, + open: 616.6, + high: 627.3, + low: 612.4, + close: 625.8, + volume: 2240098 + }), + new StockGoogleItem( + { + date: `2015-08-25`, + open: 629.8, + high: 629.8, + low: 611, + close: 612, + volume: 2174009 + }), + new StockGoogleItem( + { + date: `2015-08-28`, + open: 610.3, + high: 614.6, + low: 589.4, + close: 594.9, + volume: 3127667 + }), + new StockGoogleItem( + { + date: `2015-08-29`, + open: 597.3, + high: 605, + low: 590.2, + close: 595, + volume: 2310284 + }), + new StockGoogleItem( + { + date: `2015-08-30`, + open: 603.3, + high: 608.8, + low: 600.7, + close: 608.4, + volume: 2413441 + }), + new StockGoogleItem( + { + date: `2015-09-01`, + open: 608.4, + high: 612.1, + low: 599.9, + close: 611.3, + volume: 1867601 + }), + new StockGoogleItem( + { + date: `2015-09-02`, + open: 607.2, + high: 627.3, + low: 603.1, + close: 626.9, + volume: 2684805 + }), + new StockGoogleItem( + { + date: `2015-09-05`, + open: 632, + high: 643, + low: 627, + close: 641.5, + volume: 1787880 + }), + new StockGoogleItem( + { + date: `2015-09-06`, + open: 638.8, + high: 649.3, + low: 636.5, + close: 645.4, + volume: 2166264 + }), + new StockGoogleItem( + { + date: `2015-09-07`, + open: 649.2, + high: 650.6, + low: 632.1, + close: 642.4, + volume: 2089776 + }), + new StockGoogleItem( + { + date: `2015-09-08`, + open: 641.4, + high: 644.5, + low: 625.6, + close: 639.2, + volume: 2180441 + }), + new StockGoogleItem( + { + date: `2015-09-09`, + open: 640, + high: 646, + low: 635.3, + close: 643.6, + volume: 1645844 + }), + new StockGoogleItem( + { + date: `2015-09-12`, + open: 642.1, + high: 648.5, + low: 639, + close: 646.7, + volume: 1275206 + }), + new StockGoogleItem( + { + date: `2015-09-13`, + open: 643.1, + high: 657.8, + low: 643.1, + close: 652.3, + volume: 1790704 + }), + new StockGoogleItem( + { + date: `2015-09-14`, + open: 653.2, + high: 659.4, + low: 648.9, + close: 651.2, + volume: 1412040 + }), + new StockGoogleItem( + { + date: `2015-09-15`, + open: 654.7, + high: 663.1, + low: 654.5, + close: 661.7, + volume: 1830524 + }), + new StockGoogleItem( + { + date: `2015-09-16`, + open: 664.1, + high: 665, + low: 657.2, + close: 662.2, + volume: 1606138 + }), + new StockGoogleItem( + { + date: `2015-09-19`, + open: 661.2, + high: 666.8, + low: 659.6, + close: 666.1, + volume: 1465339 + }), + new StockGoogleItem( + { + date: `2015-09-20`, + open: 664, + high: 664.7, + low: 644.2, + close: 650.3, + volume: 2490016 + }), + new StockGoogleItem( + { + date: `2015-09-21`, + open: 654.1, + high: 655.9, + low: 641.7, + close: 642.6, + volume: 1791099 + }), + new StockGoogleItem( + { + date: `2015-09-22`, + open: 646.7, + high: 657.8, + low: 644, + close: 651.8, + volume: 3782103 + }), + new StockGoogleItem( + { + date: `2015-09-23`, + open: 727.5, + high: 730, + low: 701.5, + close: 702, + volume: 6642504 + }), + new StockGoogleItem( + { + date: `2015-09-26`, + open: 701.5, + high: 719.1, + low: 701.3, + close: 712.8, + volume: 2701629 + }), + new StockGoogleItem( + { + date: `2015-09-27`, + open: 707.4, + high: 713.6, + low: 704.5, + close: 708.5, + volume: 2224309 + }), + new StockGoogleItem( + { + date: `2015-09-28`, + open: 707.3, + high: 713, + low: 703.1, + close: 713, + volume: 2176623 + }), + new StockGoogleItem( + { + date: `2015-09-29`, + open: 710.5, + high: 718.3, + low: 710, + close: 716.9, + volume: 1454128 + }), + new StockGoogleItem( + { + date: `2015-09-30`, + open: 715.7, + high: 718, + low: 710, + close: 710.8, + volume: 1903980 + }), + new StockGoogleItem( + { + date: `2015-10-02`, + open: 711.1, + high: 721.6, + low: 705.9, + close: 721.1, + volume: 1871073 + }), + new StockGoogleItem( + { + date: `2015-10-03`, + open: 718.9, + high: 724.6, + low: 714.7, + close: 722.2, + volume: 1560770 + }), + new StockGoogleItem( + { + date: `2015-10-04`, + open: 722, + high: 733.1, + low: 721.9, + close: 728.1, + volume: 1704575 + }), + new StockGoogleItem( + { + date: `2015-10-05`, + open: 729.5, + high: 739.5, + low: 729.5, + close: 731.3, + volume: 1860367 + }), + new StockGoogleItem( + { + date: `2015-10-06`, + open: 731.5, + high: 735.4, + low: 727, + close: 733.8, + volume: 1509656 + }), + new StockGoogleItem( + { + date: `2015-10-09`, + open: 730.2, + high: 734.7, + low: 719.4, + close: 724.9, + volume: 2065619 + }), + new StockGoogleItem( + { + date: `2015-10-10`, + open: 724.4, + high: 730.6, + low: 718.5, + close: 728.3, + volume: 1603937 + }), + new StockGoogleItem( + { + date: `2015-10-11`, + open: 732.5, + high: 741, + low: 730.2, + close: 735.4, + volume: 1366375 + }), + new StockGoogleItem( + { + date: `2015-10-12`, + open: 731, + high: 737.8, + low: 728.6, + close: 731.2, + volume: 1668048 + }), + new StockGoogleItem( + { + date: `2015-10-13`, + open: 729.2, + high: 731.1, + low: 716.7, + close: 717, + volume: 2062982 + }), + new StockGoogleItem( + { + date: `2015-10-16`, + open: 715.6, + high: 729.5, + low: 711.3, + close: 729, + volume: 1891074 + }), + new StockGoogleItem( + { + date: `2015-10-17`, + open: 729.3, + high: 731.8, + low: 723, + close: 725.3, + volume: 1491709 + }), + new StockGoogleItem( + { + date: `2015-10-18`, + open: 727.6, + high: 741.4, + low: 727, + close: 740, + volume: 1671588 + }), + new StockGoogleItem( + { + date: `2015-10-19`, + open: 738.7, + high: 742, + low: 737.4, + close: 738.4, + volume: 1327109 + }), + new StockGoogleItem( + { + date: `2015-10-20`, + open: 746.5, + high: 757.9, + low: 743, + close: 756.6, + volume: 2212302 + }), + new StockGoogleItem( + { + date: `2015-10-23`, + open: 757.5, + high: 762.7, + low: 751.8, + close: 756, + volume: 1414487 + }), + new StockGoogleItem( + { + date: `2015-10-24`, + open: 752, + high: 755.3, + low: 737.6, + close: 748.3, + volume: 2333130 + }), + new StockGoogleItem( + { + date: `2015-10-25`, + open: 748.1, + high: 752, + low: 746.1, + close: 748.1, + volume: 1122224 + }), + new StockGoogleItem( + { + date: `2015-10-27`, + open: 748.5, + high: 753.4, + low: 747.5, + close: 750.3, + volume: 838518 + }), + new StockGoogleItem( + { + date: `2015-10-30`, + open: 748.8, + high: 754.9, + low: 741.3, + close: 742.6, + volume: 2035261 + }), + new StockGoogleItem( + { + date: `2015-11-01`, + open: 747.1, + high: 769, + low: 746.7, + close: 767, + volume: 2129940 + }), + new StockGoogleItem( + { + date: `2015-11-02`, + open: 768.9, + high: 776, + low: 759, + close: 762.4, + volume: 2195686 + }), + new StockGoogleItem( + { + date: `2015-11-03`, + open: 766, + high: 769, + low: 745.6, + close: 752.5, + volume: 2590641 + }), + new StockGoogleItem( + { + date: `2015-11-04`, + open: 753.1, + high: 768.5, + low: 750, + close: 766.8, + volume: 2757283 + }), + new StockGoogleItem( + { + date: `2015-11-07`, + open: 767.8, + high: 768.7, + low: 755.1, + close: 763.3, + volume: 1812314 + }), + new StockGoogleItem( + { + date: `2015-11-08`, + open: 757.9, + high: 764.8, + low: 754.2, + close: 762.4, + volume: 1829475 + }), + new StockGoogleItem( + { + date: `2015-11-09`, + open: 759.2, + high: 764.2, + low: 737, + close: 751.6, + volume: 2699990 + }), + new StockGoogleItem( + { + date: `2015-11-10`, + open: 752.9, + high: 755.9, + low: 743.8, + close: 749.5, + volume: 1988380 + }), + new StockGoogleItem( + { + date: `2015-11-11`, + open: 741.2, + high: 745.7, + low: 736.8, + close: 738.9, + volume: 2224410 + }), + new StockGoogleItem( + { + date: `2015-11-14`, + open: 741.8, + high: 748.7, + low: 724.2, + close: 747.8, + volume: 2412497 + }), + new StockGoogleItem( + { + date: `2015-11-15`, + open: 753, + high: 758.1, + low: 743, + close: 743.4, + volume: 2666229 + }), + new StockGoogleItem( + { + date: `2015-11-16`, + open: 750, + high: 760.6, + low: 739.4, + close: 758.1, + volume: 1993251 + }), + new StockGoogleItem( + { + date: `2015-11-17`, + open: 762.4, + high: 762.7, + low: 749, + close: 749.4, + volume: 1553418 + }), + new StockGoogleItem( + { + date: `2015-11-18`, + open: 746.5, + high: 754.1, + low: 738.1, + close: 739.3, + volume: 3148743 + }), + new StockGoogleItem( + { + date: `2015-11-21`, + open: 746.1, + high: 750, + low: 740, + close: 747.8, + volume: 1525703 + }), + new StockGoogleItem( + { + date: `2015-11-22`, + open: 751.6, + high: 754.9, + low: 745.5, + close: 750, + volume: 1365520 + }), + new StockGoogleItem( + { + date: `2015-11-23`, + open: 753.5, + high: 754.2, + low: 744, + close: 750.3, + volume: 1566726 + }), + new StockGoogleItem( + { + date: `2015-11-24`, + open: 749.5, + high: 751.4, + low: 746.6, + close: 748.4, + volume: 527223 + }), + new StockGoogleItem( + { + date: `2015-11-28`, + open: 752.9, + high: 763, + low: 749.5, + close: 762.5, + volume: 1515716 + }), + new StockGoogleItem( + { + date: `2015-11-29`, + open: 766.7, + high: 780, + low: 766.4, + close: 776.6, + volume: 1765012 + }), + new StockGoogleItem( + { + date: `2015-11-30`, + open: 776.6, + high: 777.6, + low: 766.9, + close: 771, + volume: 1293521 + }), + new StockGoogleItem( + { + date: `2015-11-31`, + open: 769.5, + high: 769.5, + low: 758.3, + close: 758.9, + volume: 1500923 + }), + new StockGoogleItem( + { + date: `2016-00-04`, + open: 743, + high: 744.1, + low: 731.3, + close: 741.8, + volume: 3258199 + }), + new StockGoogleItem( + { + date: `2016-00-05`, + open: 746.5, + high: 752, + low: 738.6, + close: 742.6, + volume: 1950691 + }), + new StockGoogleItem( + { + date: `2016-00-06`, + open: 730, + high: 747.2, + low: 728.9, + close: 743.6, + volume: 1947034 + }), + new StockGoogleItem( + { + date: `2016-00-07`, + open: 730.3, + high: 738.5, + low: 719.1, + close: 726.4, + volume: 2963741 + }), + new StockGoogleItem( + { + date: `2016-00-08`, + open: 731.5, + high: 733.2, + low: 713, + close: 714.5, + volume: 2450857 + }), + new StockGoogleItem( + { + date: `2016-00-11`, + open: 716.6, + high: 718.9, + low: 703.5, + close: 716, + volume: 2090621 + }), + new StockGoogleItem( + { + date: `2016-00-12`, + open: 721.7, + high: 728.8, + low: 717.3, + close: 726.1, + volume: 2024509 + }), + new StockGoogleItem( + { + date: `2016-00-13`, + open: 730.9, + high: 734.7, + low: 698.6, + close: 700.6, + volume: 2468295 + }), + new StockGoogleItem( + { + date: `2016-00-14`, + open: 705.4, + high: 721.9, + low: 689.1, + close: 714.7, + volume: 2211853 + }), + new StockGoogleItem( + { + date: `2016-00-15`, + open: 692.3, + high: 706.7, + low: 685.4, + close: 694.5, + volume: 3592449 + }), + new StockGoogleItem( + { + date: `2016-00-19`, + open: 703.3, + high: 710, + low: 693.4, + close: 701.8, + volume: 2258479 + }), + new StockGoogleItem( + { + date: `2016-00-20`, + open: 688.6, + high: 706.9, + low: 673.3, + close: 698.5, + volume: 3439386 + }), + new StockGoogleItem( + { + date: `2016-00-21`, + open: 702.2, + high: 719.2, + low: 694.5, + close: 706.6, + volume: 2410263 + }), + new StockGoogleItem( + { + date: `2016-00-22`, + open: 723.6, + high: 728.1, + low: 720.1, + close: 725.3, + volume: 2006528 + }), + new StockGoogleItem( + { + date: `2016-00-25`, + open: 723.6, + high: 729.7, + low: 710, + close: 711.7, + volume: 1704641 + }), + new StockGoogleItem( + { + date: `2016-00-26`, + open: 713.9, + high: 718.3, + low: 706.5, + close: 713, + volume: 1324300 + }), + new StockGoogleItem( + { + date: `2016-00-27`, + open: 713.7, + high: 718.2, + low: 694.4, + close: 700, + volume: 2139970 + }), + new StockGoogleItem( + { + date: `2016-00-28`, + open: 722.2, + high: 733.7, + low: 712.4, + close: 731, + volume: 2658016 + }), + new StockGoogleItem( + { + date: `2016-00-29`, + open: 731.5, + high: 745, + low: 726.8, + close: 743, + volume: 3394935 + }), + new StockGoogleItem( + { + date: `2016-01-01`, + open: 750.5, + high: 757.9, + low: 743.3, + close: 752, + volume: 4801816 + }), + new StockGoogleItem( + { + date: `2016-01-02`, + open: 784.5, + high: 789.9, + low: 764.6, + close: 764.6, + volume: 6332431 + }), + new StockGoogleItem( + { + date: `2016-01-03`, + open: 770.2, + high: 774.5, + low: 720.5, + close: 727, + volume: 6162333 + }), + new StockGoogleItem( + { + date: `2016-01-04`, + open: 722.8, + high: 727, + low: 701.9, + close: 708, + volume: 5145855 + }), + new StockGoogleItem( + { + date: `2016-01-05`, + open: 703.9, + high: 704, + low: 680.1, + close: 683.6, + volume: 5069985 + }), + new StockGoogleItem( + { + date: `2016-01-08`, + open: 667.9, + high: 684, + low: 663.1, + close: 682.7, + volume: 4212541 + }), + new StockGoogleItem( + { + date: `2016-01-09`, + open: 672.3, + high: 699.9, + low: 668.8, + close: 678.1, + volume: 3604335 + }), + new StockGoogleItem( + { + date: `2016-01-10`, + open: 686.9, + high: 701.3, + low: 682.1, + close: 684.1, + volume: 2627379 + }), + new StockGoogleItem( + { + date: `2016-01-11`, + open: 675, + high: 689.4, + low: 668.9, + close: 683.1, + volume: 3007223 + }), + new StockGoogleItem( + { + date: `2016-01-12`, + open: 690.3, + high: 693.8, + low: 678.6, + close: 682.4, + volume: 2129831 + }), + new StockGoogleItem( + { + date: `2016-01-16`, + open: 693, + high: 698, + low: 685, + close: 691, + volume: 2497024 + }), + new StockGoogleItem( + { + date: `2016-01-17`, + open: 699, + high: 709.8, + low: 691.4, + close: 708.4, + volume: 2466808 + }), + new StockGoogleItem( + { + date: `2016-01-18`, + open: 710, + high: 712.4, + low: 696, + close: 697.4, + volume: 1859130 + }), + new StockGoogleItem( + { + date: `2016-01-19`, + open: 695, + high: 703.1, + low: 694, + close: 700.9, + volume: 1582260 + }), + new StockGoogleItem( + { + date: `2016-01-22`, + open: 707.5, + high: 713.2, + low: 702.5, + close: 706.5, + volume: 1946067 + }), + new StockGoogleItem( + { + date: `2016-01-23`, + open: 701.5, + high: 708.4, + low: 693.6, + close: 695.9, + volume: 1999699 + }), + new StockGoogleItem( + { + date: `2016-01-24`, + open: 688.9, + high: 700, + low: 680.8, + close: 699.6, + volume: 1958611 + }), + new StockGoogleItem( + { + date: `2016-01-25`, + open: 700, + high: 706, + low: 690.6, + close: 705.8, + volume: 1631855 + }), + new StockGoogleItem( + { + date: `2016-01-26`, + open: 708.6, + high: 713.4, + low: 700.9, + close: 705.1, + volume: 2239978 + }), + new StockGoogleItem( + { + date: `2016-01-29`, + open: 700.3, + high: 710.9, + low: 697.7, + close: 697.8, + volume: 2280280 + }), + new StockGoogleItem( + { + date: `2016-02-01`, + open: 703.6, + high: 718.8, + low: 699.8, + close: 718.8, + volume: 2147442 + }), + new StockGoogleItem( + { + date: `2016-02-02`, + open: 719, + high: 720, + low: 712, + close: 718.9, + volume: 1627753 + }), + new StockGoogleItem( + { + date: `2016-02-03`, + open: 718.7, + high: 719.5, + low: 706, + close: 712.4, + volume: 1956761 + }), + new StockGoogleItem( + { + date: `2016-02-04`, + open: 715, + high: 716.5, + low: 706, + close: 710.9, + volume: 1967873 + }), + new StockGoogleItem( + { + date: `2016-02-07`, + open: 706.9, + high: 708.1, + low: 686.9, + close: 695.2, + volume: 2985094 + }), + new StockGoogleItem( + { + date: `2016-02-08`, + open: 688.6, + high: 703.8, + low: 685.3, + close: 694, + volume: 2063357 + }), + new StockGoogleItem( + { + date: `2016-02-09`, + open: 698.5, + high: 705.7, + low: 694, + close: 705.2, + volume: 1418704 + }), + new StockGoogleItem( + { + date: `2016-02-10`, + open: 708.1, + high: 716.4, + low: 703.4, + close: 712.8, + volume: 2829412 + }), + new StockGoogleItem( + { + date: `2016-02-11`, + open: 720, + high: 726.9, + low: 717.1, + close: 726.8, + volume: 1963907 + }), + new StockGoogleItem( + { + date: `2016-02-14`, + open: 726.8, + high: 735.5, + low: 725.1, + close: 730.5, + volume: 1716910 + }), + new StockGoogleItem( + { + date: `2016-02-15`, + open: 726.9, + high: 732.3, + low: 724.8, + close: 728.3, + volume: 1720965 + }), + new StockGoogleItem( + { + date: `2016-02-16`, + open: 726.4, + high: 737.5, + low: 724.5, + close: 736.1, + volume: 1572329 + }), + new StockGoogleItem( + { + date: `2016-02-17`, + open: 736.5, + high: 743.1, + low: 736, + close: 737.8, + volume: 1856800 + }), + new StockGoogleItem( + { + date: `2016-02-18`, + open: 741.9, + high: 742, + low: 731.8, + close: 737.6, + volume: 2796376 + }), + new StockGoogleItem( + { + date: `2016-02-21`, + open: 736.5, + high: 742.5, + low: 733.5, + close: 742.1, + volume: 1831839 + }), + new StockGoogleItem( + { + date: `2016-02-22`, + open: 737.5, + high: 745, + low: 737.5, + close: 740.8, + volume: 1264396 + }), + new StockGoogleItem( + { + date: `2016-02-23`, + open: 742.4, + high: 745.7, + low: 736.1, + close: 738.1, + volume: 1421861 + }), + new StockGoogleItem( + { + date: `2016-02-24`, + open: 732, + high: 737.8, + low: 731, + close: 735.3, + volume: 1564782 + }), + new StockGoogleItem( + { + date: `2016-02-28`, + open: 736.8, + high: 739, + low: 732.5, + close: 733.5, + volume: 1299812 + }), + new StockGoogleItem( + { + date: `2016-02-29`, + open: 734.6, + high: 747.3, + low: 728.8, + close: 744.8, + volume: 1902128 + }), + new StockGoogleItem( + { + date: `2016-02-30`, + open: 750.1, + high: 757.9, + low: 748.7, + close: 750.5, + volume: 1780998 + }), + new StockGoogleItem( + { + date: `2016-02-31`, + open: 749.3, + high: 750.9, + low: 740.9, + close: 745, + volume: 1712375 + }), + new StockGoogleItem( + { + date: `2016-03-01`, + open: 738.6, + high: 750.3, + low: 737, + close: 749.9, + volume: 1574870 + }), + new StockGoogleItem( + { + date: `2016-03-04`, + open: 750.1, + high: 752.8, + low: 742.4, + close: 745.3, + volume: 1131843 + }), + new StockGoogleItem( + { + date: `2016-03-05`, + open: 738, + high: 742.8, + low: 735.4, + close: 737.8, + volume: 1129829 + }), + new StockGoogleItem( + { + date: `2016-03-06`, + open: 735.8, + high: 746.2, + low: 735.6, + close: 745.7, + volume: 1050193 + }), + new StockGoogleItem( + { + date: `2016-03-07`, + open: 745.4, + high: 747, + low: 736.3, + close: 740.3, + volume: 1429504 + }), + new StockGoogleItem( + { + date: `2016-03-08`, + open: 744, + high: 745.5, + low: 735.5, + close: 739.1, + volume: 1285755 + }), + new StockGoogleItem( + { + date: `2016-03-11`, + open: 743, + high: 745, + low: 736, + close: 736.1, + volume: 1211762 + }), + new StockGoogleItem( + { + date: `2016-03-12`, + open: 738, + high: 743.8, + low: 731, + close: 743.1, + volume: 1349734 + }), + new StockGoogleItem( + { + date: `2016-03-13`, + open: 749.2, + high: 754.4, + low: 744.3, + close: 751.7, + volume: 1707095 + }), + new StockGoogleItem( + { + date: `2016-03-14`, + open: 754, + high: 757.3, + low: 752.7, + close: 753.2, + volume: 1130971 + }), + new StockGoogleItem( + { + date: `2016-03-15`, + open: 754, + high: 761, + low: 752.7, + close: 759, + volume: 1800413 + }), + new StockGoogleItem( + { + date: `2016-03-18`, + open: 760.5, + high: 768, + low: 757.3, + close: 766.6, + volume: 1555953 + }), + new StockGoogleItem( + { + date: `2016-03-19`, + open: 769.5, + high: 769.9, + low: 749.3, + close: 753.9, + volume: 2027642 + }), + new StockGoogleItem( + { + date: `2016-03-20`, + open: 758, + high: 758.1, + low: 750, + close: 752.7, + volume: 1525591 + }), + new StockGoogleItem( + { + date: `2016-03-21`, + open: 755.4, + high: 760.5, + low: 749.5, + close: 759.1, + volume: 2743620 + }), + new StockGoogleItem( + { + date: `2016-03-22`, + open: 726.3, + high: 736.1, + low: 713.6, + close: 718.8, + volume: 5939199 + }), + new StockGoogleItem( + { + date: `2016-03-25`, + open: 716.1, + high: 723.9, + low: 715.6, + close: 723.1, + volume: 1955567 + }), + new StockGoogleItem( + { + date: `2016-03-26`, + open: 725.4, + high: 725.8, + low: 703, + close: 708.1, + volume: 2727185 + }), + new StockGoogleItem( + { + date: `2016-03-27`, + open: 707.3, + high: 709, + low: 692.4, + close: 705.8, + volume: 3086722 + }), + new StockGoogleItem( + { + date: `2016-03-28`, + open: 708.3, + high: 714.2, + low: 689.5, + close: 691, + volume: 2851108 + }), + new StockGoogleItem( + { + date: `2016-03-29`, + open: 690.7, + high: 697.6, + low: 689, + close: 693, + volume: 2484273 + }), + new StockGoogleItem( + { + date: `2016-04-02`, + open: 697.6, + high: 700.6, + low: 691, + close: 698.2, + volume: 1644126 + }), + new StockGoogleItem( + { + date: `2016-04-03`, + open: 696.9, + high: 697.8, + low: 692, + close: 692.4, + volume: 1530993 + }), + new StockGoogleItem( + { + date: `2016-04-04`, + open: 690.5, + high: 699.8, + low: 689, + close: 695.7, + volume: 1688569 + }), + new StockGoogleItem( + { + date: `2016-04-05`, + open: 697.7, + high: 702.3, + low: 695.7, + close: 701.4, + volume: 1677405 + }), + new StockGoogleItem( + { + date: `2016-04-06`, + open: 698.4, + high: 711.9, + low: 698.1, + close: 711.1, + volume: 1826146 + }), + new StockGoogleItem( + { + date: `2016-04-09`, + open: 712, + high: 718.7, + low: 710, + close: 712.9, + volume: 1508423 + }), + new StockGoogleItem( + { + date: `2016-04-10`, + open: 716.8, + high: 723.5, + low: 715.7, + close: 723.2, + volume: 1563105 + }), + new StockGoogleItem( + { + date: `2016-04-11`, + open: 723.4, + high: 724.5, + low: 712.8, + close: 715.3, + volume: 1686823 + }), + new StockGoogleItem( + { + date: `2016-04-12`, + open: 717.1, + high: 719.3, + low: 709, + close: 713.3, + volume: 1360732 + }), + new StockGoogleItem( + { + date: `2016-04-13`, + open: 711.9, + high: 716.7, + low: 709.3, + close: 710.8, + volume: 1307338 + }), + new StockGoogleItem( + { + date: `2016-04-16`, + open: 709.1, + high: 718.5, + low: 705.6, + close: 716.5, + volume: 1316177 + }), + new StockGoogleItem( + { + date: `2016-04-17`, + open: 716, + high: 721.5, + low: 704.1, + close: 706.2, + volume: 1999456 + }), + new StockGoogleItem( + { + date: `2016-04-18`, + open: 703.7, + high: 711.6, + low: 700.6, + close: 706.6, + volume: 1763394 + }), + new StockGoogleItem( + { + date: `2016-04-19`, + open: 702.4, + high: 706, + low: 696.8, + close: 700.3, + volume: 1656321 + }), + new StockGoogleItem( + { + date: `2016-04-20`, + open: 701.6, + high: 714.6, + low: 700.5, + close: 709.7, + volume: 1816027 + }), + new StockGoogleItem( + { + date: `2016-04-23`, + open: 706.5, + high: 711.5, + low: 704.2, + close: 704.2, + volume: 1320927 + }), + new StockGoogleItem( + { + date: `2016-04-24`, + open: 706.9, + high: 721, + low: 706.9, + close: 720.1, + volume: 1920411 + }), + new StockGoogleItem( + { + date: `2016-04-25`, + open: 720.8, + high: 727.5, + low: 719.7, + close: 725.3, + volume: 1629198 + }), + new StockGoogleItem( + { + date: `2016-04-26`, + open: 722.9, + high: 728.3, + low: 720.3, + close: 724.1, + volume: 1542866 + }), + new StockGoogleItem( + { + date: `2016-04-27`, + open: 724, + high: 733.9, + low: 724, + close: 732.7, + volume: 1974026 + }), + new StockGoogleItem( + { + date: `2016-04-31`, + open: 731.7, + high: 739.7, + low: 731.3, + close: 735.7, + volume: 2129545 + }), + new StockGoogleItem( + { + date: `2016-05-01`, + open: 734.5, + high: 737.2, + low: 730.7, + close: 734.1, + volume: 1253593 + }), + new StockGoogleItem( + { + date: `2016-05-02`, + open: 732.5, + high: 733, + low: 724.2, + close: 730.4, + volume: 1341807 + }), + new StockGoogleItem( + { + date: `2016-05-03`, + open: 729.3, + high: 729.5, + low: 720.6, + close: 722.3, + volume: 1226253 + }), + new StockGoogleItem( + { + date: `2016-05-06`, + open: 724.9, + high: 724.9, + low: 714.6, + close: 716.5, + volume: 1566059 + }), + new StockGoogleItem( + { + date: `2016-05-07`, + open: 719.8, + high: 722, + low: 716.5, + close: 716.6, + volume: 1336754 + }), + new StockGoogleItem( + { + date: `2016-05-08`, + open: 724, + high: 728.6, + low: 720.6, + close: 728.3, + volume: 1583701 + }), + new StockGoogleItem( + { + date: `2016-05-09`, + open: 722.9, + high: 729.5, + low: 722.3, + close: 728.6, + volume: 988914 + }), + new StockGoogleItem( + { + date: `2016-05-10`, + open: 719.5, + high: 725.9, + low: 716.4, + close: 719.4, + volume: 1216443 + }), + new StockGoogleItem( + { + date: `2016-05-13`, + open: 716.5, + high: 725.4, + low: 716.5, + close: 718.4, + volume: 1258930 + }), + new StockGoogleItem( + { + date: `2016-05-14`, + open: 716.5, + high: 722.5, + low: 713.1, + close: 718.3, + volume: 1306065 + }), + new StockGoogleItem( + { + date: `2016-05-15`, + open: 719, + high: 723, + low: 717.3, + close: 718.9, + volume: 1214517 + }), + new StockGoogleItem( + { + date: `2016-05-16`, + open: 714.9, + high: 716.6, + low: 703.3, + close: 710.4, + volume: 1982471 + }), + new StockGoogleItem( + { + date: `2016-05-17`, + open: 708.6, + high: 708.8, + low: 688.5, + close: 691.7, + volume: 3402357 + }), + new StockGoogleItem( + { + date: `2016-05-20`, + open: 698.8, + high: 702.5, + low: 693.4, + close: 693.7, + volume: 2082538 + }), + new StockGoogleItem( + { + date: `2016-05-21`, + open: 698.4, + high: 702.8, + low: 692, + close: 695.9, + volume: 1465634 + }), + new StockGoogleItem( + { + date: `2016-05-22`, + open: 699.1, + high: 700.9, + low: 693.1, + close: 697.5, + volume: 1184318 + }), + new StockGoogleItem( + { + date: `2016-05-23`, + open: 697.5, + high: 702, + low: 687, + close: 701.9, + volume: 2171415 + }), + new StockGoogleItem( + { + date: `2016-05-24`, + open: 675.2, + high: 689.4, + low: 673.5, + close: 675.2, + volume: 4449022 + }), + new StockGoogleItem( + { + date: `2016-05-27`, + open: 671, + high: 672.3, + low: 663.3, + close: 668.3, + volume: 2641085 + }), + new StockGoogleItem( + { + date: `2016-05-28`, + open: 679, + high: 680.3, + low: 673, + close: 680, + volume: 2173762 + }), + new StockGoogleItem( + { + date: `2016-05-29`, + open: 683, + high: 687.4, + low: 681.4, + close: 684.1, + volume: 1932561 + }), + new StockGoogleItem( + { + date: `2016-05-30`, + open: 685.5, + high: 692.3, + low: 683.6, + close: 692.1, + volume: 1597714 + }), + new StockGoogleItem( + { + date: `2016-06-01`, + open: 692.2, + high: 700.6, + low: 692.1, + close: 699.2, + volume: 1344710 + }), + new StockGoogleItem( + { + date: `2016-06-05`, + open: 696.1, + high: 696.9, + low: 688.9, + close: 694.5, + volume: 1462616 + }), + new StockGoogleItem( + { + date: `2016-06-06`, + open: 690, + high: 701.7, + low: 689.1, + close: 697.8, + volume: 1411925 + }), + new StockGoogleItem( + { + date: `2016-06-07`, + open: 698.1, + high: 698.2, + low: 688.2, + close: 695.4, + volume: 1304200 + }), + new StockGoogleItem( + { + date: `2016-06-08`, + open: 699.5, + high: 705.7, + low: 696.4, + close: 705.6, + volume: 1575166 + }), + new StockGoogleItem( + { + date: `2016-06-11`, + open: 708, + high: 716.5, + low: 707.2, + close: 715.1, + volume: 1111762 + }), + new StockGoogleItem( + { + date: `2016-06-12`, + open: 719.1, + high: 722.9, + low: 715.9, + close: 720.6, + volume: 1336921 + }), + new StockGoogleItem( + { + date: `2016-06-13`, + open: 723.6, + high: 724, + low: 716.9, + close: 717, + volume: 935876 + }), + new StockGoogleItem( + { + date: `2016-06-14`, + open: 721.6, + high: 722.2, + low: 718, + close: 721, + volume: 950193 + }), + new StockGoogleItem( + { + date: `2016-06-15`, + open: 725.7, + high: 725.7, + low: 719.1, + close: 719.9, + volume: 1279339 + }), + new StockGoogleItem( + { + date: `2016-06-18`, + open: 722.7, + high: 736.1, + low: 721.2, + close: 733.8, + volume: 1295476 + }), + new StockGoogleItem( + { + date: `2016-06-19`, + open: 729.9, + high: 737, + low: 729, + close: 737, + volume: 1227486 + }), + new StockGoogleItem( + { + date: `2016-06-20`, + open: 737.3, + high: 742.1, + low: 737.1, + close: 741.2, + volume: 1289671 + }), + new StockGoogleItem( + { + date: `2016-06-21`, + open: 740.4, + high: 741.7, + low: 735.8, + close: 738.6, + volume: 1026306 + }), + new StockGoogleItem( + { + date: `2016-06-22`, + open: 741.9, + high: 743.2, + low: 736.6, + close: 742.7, + volume: 1259823 + }), + new StockGoogleItem( + { + date: `2016-06-25`, + open: 740.7, + high: 742.6, + low: 737.5, + close: 739.8, + volume: 1032432 + }), + new StockGoogleItem( + { + date: `2016-06-26`, + open: 739, + high: 741.7, + low: 734.3, + close: 738.4, + volume: 1186738 + }), + new StockGoogleItem( + { + date: `2016-06-27`, + open: 738.3, + high: 744.5, + low: 737, + close: 741.8, + volume: 1512517 + }), + new StockGoogleItem( + { + date: `2016-06-28`, + open: 747, + high: 748.6, + low: 739.3, + close: 745.9, + volume: 3530169 + }), + new StockGoogleItem( + { + date: `2016-06-29`, + open: 772.7, + high: 778.5, + low: 766.8, + close: 768.8, + volume: 3841482 + }), + new StockGoogleItem( + { + date: `2016-07-01`, + open: 761.1, + high: 780.4, + low: 761.1, + close: 772.9, + volume: 2700470 + }), + new StockGoogleItem( + { + date: `2016-07-02`, + open: 768.7, + high: 775.8, + low: 767.9, + close: 771.1, + volume: 1784525 + }), + new StockGoogleItem( + { + date: `2016-07-03`, + open: 767.2, + high: 773.2, + low: 766.8, + close: 773.2, + volume: 1287421 + }), + new StockGoogleItem( + { + date: `2016-07-04`, + open: 772.2, + high: 774.1, + low: 768.8, + close: 771.6, + volume: 1140254 + }), + new StockGoogleItem( + { + date: `2016-07-05`, + open: 773.8, + high: 783, + low: 772.3, + close: 782.2, + volume: 1801205 + }), + new StockGoogleItem( + { + date: `2016-07-08`, + open: 782, + high: 782.6, + low: 778.1, + close: 781.8, + volume: 1107857 + }), + new StockGoogleItem( + { + date: `2016-07-09`, + open: 781.1, + high: 788.9, + low: 780.6, + close: 784.3, + volume: 1318894 + }), + new StockGoogleItem( + { + date: `2016-07-10`, + open: 783.8, + high: 786.8, + low: 782.8, + close: 784.7, + volume: 786363 + }), + new StockGoogleItem( + { + date: `2016-07-11`, + open: 785, + high: 789.8, + low: 783, + close: 784.9, + volume: 975113 + }), + new StockGoogleItem( + { + date: `2016-07-12`, + open: 781.5, + high: 783.4, + low: 780.4, + close: 783.2, + volume: 740498 + }), + new StockGoogleItem( + { + date: `2016-07-15`, + open: 783.8, + high: 787.5, + low: 780.1, + close: 782.4, + volume: 938186 + }), + new StockGoogleItem( + { + date: `2016-07-16`, + open: 780.3, + high: 781, + low: 773.4, + close: 777.1, + volume: 1028047 + }), + new StockGoogleItem( + { + date: `2016-07-17`, + open: 777.3, + high: 780.8, + low: 773.5, + close: 779.9, + volume: 924226 + }), + new StockGoogleItem( + { + date: `2016-07-18`, + open: 780, + high: 782.9, + low: 777, + close: 777.5, + volume: 719429 + }), + new StockGoogleItem( + { + date: `2016-07-19`, + open: 775, + high: 777.1, + low: 773.1, + close: 775.4, + volume: 861546 + }), + new StockGoogleItem( + { + date: `2016-07-22`, + open: 773.3, + high: 774.5, + low: 770, + close: 772.1, + volume: 951362 + }), + new StockGoogleItem( + { + date: `2016-07-23`, + open: 775.5, + high: 776.4, + low: 771.8, + close: 772.1, + volume: 928232 + }), + new StockGoogleItem( + { + date: `2016-07-24`, + open: 770.6, + high: 774.5, + low: 767.1, + close: 769.6, + volume: 1071999 + }), + new StockGoogleItem( + { + date: `2016-07-25`, + open: 767, + high: 771.9, + low: 763.2, + close: 769.4, + volume: 926883 + }), + new StockGoogleItem( + { + date: `2016-07-26`, + open: 769, + high: 776.1, + low: 765.9, + close: 769.5, + volume: 1166681 + }), + new StockGoogleItem( + { + date: `2016-07-29`, + open: 768.7, + high: 775, + low: 766.6, + close: 772.1, + volume: 847565 + }), + new StockGoogleItem( + { + date: `2016-07-30`, + open: 769.3, + high: 774.5, + low: 766.8, + close: 769.1, + volume: 1130029 + }), + new StockGoogleItem( + { + date: `2016-07-31`, + open: 767, + high: 769.1, + low: 765.4, + close: 767, + volume: 1248556 + }), + new StockGoogleItem( + { + date: `2016-08-01`, + open: 769.3, + high: 771, + low: 764.3, + close: 768.8, + volume: 925131 + }), + new StockGoogleItem( + { + date: `2016-08-02`, + open: 773, + high: 773.9, + low: 768.4, + close: 771.5, + volume: 1072658 + }), + new StockGoogleItem( + { + date: `2016-08-06`, + open: 773.5, + high: 782, + low: 771, + close: 780.1, + volume: 1442822 + }), + new StockGoogleItem( + { + date: `2016-08-07`, + open: 780, + high: 782.7, + low: 776.2, + close: 780.4, + volume: 894021 + }), + new StockGoogleItem( + { + date: `2016-08-08`, + open: 778.6, + high: 780.4, + low: 773.6, + close: 775.3, + volume: 1270264 + }), + new StockGoogleItem( + { + date: `2016-08-09`, + open: 770.1, + high: 773.2, + low: 759.7, + close: 759.7, + volume: 1885496 + }), + new StockGoogleItem( + { + date: `2016-08-12`, + open: 755.1, + high: 770.3, + low: 754, + close: 769, + volume: 1310986 + }), + new StockGoogleItem( + { + date: `2016-08-13`, + open: 764.5, + high: 766.2, + low: 755.8, + close: 759.7, + volume: 1395046 + }), + new StockGoogleItem( + { + date: `2016-08-14`, + open: 759.6, + high: 767.7, + low: 759.1, + close: 762.5, + volume: 1094490 + }), + new StockGoogleItem( + { + date: `2016-08-15`, + open: 762.9, + high: 773.8, + low: 760, + close: 771.8, + volume: 1346751 + }), + new StockGoogleItem( + { + date: `2016-08-16`, + open: 769.8, + high: 769.8, + low: 764.7, + close: 768.9, + volume: 2049338 + }), + new StockGoogleItem( + { + date: `2016-08-19`, + open: 772.4, + high: 774, + low: 764.4, + close: 765.7, + volume: 1172824 + }), + new StockGoogleItem( + { + date: `2016-08-20`, + open: 769, + high: 773.3, + low: 768.5, + close: 771.4, + volume: 978631 + }), + new StockGoogleItem( + { + date: `2016-08-21`, + open: 772.7, + high: 777.2, + low: 768.3, + close: 776.2, + volume: 1167810 + }), + new StockGoogleItem( + { + date: `2016-08-22`, + open: 780, + high: 789.9, + low: 778.4, + close: 787.2, + volume: 1486223 + }), + new StockGoogleItem( + { + date: `2016-08-23`, + open: 786.6, + high: 788.9, + low: 784.1, + close: 786.9, + volume: 1411937 + }), + new StockGoogleItem( + { + date: `2016-08-26`, + open: 782.7, + high: 782.7, + low: 773.1, + close: 774.2, + volume: 1533206 + }), + new StockGoogleItem( + { + date: `2016-08-27`, + open: 775.5, + high: 786, + low: 774.3, + close: 783, + volume: 1153247 + }), + new StockGoogleItem( + { + date: `2016-08-28`, + open: 777.9, + high: 781.8, + low: 775, + close: 781.6, + volume: 1109834 + }), + new StockGoogleItem( + { + date: `2016-08-29`, + open: 781.4, + high: 785.8, + low: 774.2, + close: 775, + volume: 1314746 + }), + new StockGoogleItem( + { + date: `2016-08-30`, + open: 776.3, + high: 780.9, + low: 774.1, + close: 777.3, + volume: 1585333 + }), + new StockGoogleItem( + { + date: `2016-09-03`, + open: 774.3, + high: 776.1, + low: 769.5, + close: 772.6, + volume: 1278821 + }), + new StockGoogleItem( + { + date: `2016-09-04`, + open: 776, + high: 778.7, + low: 772.9, + close: 776.4, + volume: 1201350 + }), + new StockGoogleItem( + { + date: `2016-09-05`, + open: 779.3, + high: 782.1, + low: 775.6, + close: 776.5, + volume: 1461151 + }), + new StockGoogleItem( + { + date: `2016-09-06`, + open: 779, + high: 780.5, + low: 775.5, + close: 776.9, + volume: 1070692 + }), + new StockGoogleItem( + { + date: `2016-09-07`, + open: 779.7, + high: 779.7, + low: 770.8, + close: 775.1, + volume: 933158 + }), + new StockGoogleItem( + { + date: `2016-09-10`, + open: 777.7, + high: 789.4, + low: 775.9, + close: 785.9, + volume: 1174923 + }), + new StockGoogleItem( + { + date: `2016-09-11`, + open: 786.7, + high: 792.3, + low: 780.6, + close: 783.1, + volume: 1372461 + }), + new StockGoogleItem( + { + date: `2016-09-12`, + open: 783.8, + high: 788.1, + low: 782.1, + close: 786.1, + volume: 937435 + }), + new StockGoogleItem( + { + date: `2016-09-13`, + open: 781.2, + high: 781.2, + low: 773, + close: 778.2, + volume: 1365277 + }), + new StockGoogleItem( + { + date: `2016-09-14`, + open: 781.6, + high: 784, + low: 776, + close: 778.5, + volume: 852487 + }), + new StockGoogleItem( + { + date: `2016-09-17`, + open: 779.8, + high: 785.9, + low: 777.5, + close: 780, + volume: 1092973 + }), + new StockGoogleItem( + { + date: `2016-09-18`, + open: 787.9, + high: 801.6, + low: 785.6, + close: 795.3, + volume: 2056903 + }), + new StockGoogleItem( + { + date: `2016-09-19`, + open: 798.9, + high: 804.6, + low: 797.6, + close: 801.6, + volume: 1766798 + }), + new StockGoogleItem( + { + date: `2016-09-20`, + open: 803.3, + high: 804, + low: 796, + close: 797, + volume: 1757528 + }), + new StockGoogleItem( + { + date: `2016-09-21`, + open: 795, + high: 799.5, + low: 794, + close: 799.4, + volume: 1266181 + }), + new StockGoogleItem( + { + date: `2016-09-24`, + open: 804.9, + high: 815.2, + low: 804.8, + close: 813.1, + volume: 1697514 + }), + new StockGoogleItem( + { + date: `2016-09-25`, + open: 816.7, + high: 816.7, + low: 805.1, + close: 807.7, + volume: 1576404 + }), + new StockGoogleItem( + { + date: `2016-09-26`, + open: 806.3, + high: 807, + low: 796.3, + close: 799.1, + volume: 1647733 + }), + new StockGoogleItem( + { + date: `2016-09-27`, + open: 801, + high: 803.5, + low: 791.5, + close: 795.4, + volume: 2749221 + }), + new StockGoogleItem( + { + date: `2016-09-28`, + open: 808.4, + high: 815.5, + low: 793.6, + close: 795.4, + volume: 4269902 + }), + new StockGoogleItem( + { + date: `2016-09-31`, + open: 795.5, + high: 796.9, + low: 784, + close: 784.5, + volume: 2427284 + }), + new StockGoogleItem( + { + date: `2016-10-01`, + open: 782.9, + high: 789.5, + low: 775.5, + close: 783.6, + volume: 2406356 + }), + new StockGoogleItem( + { + date: `2016-10-02`, + open: 778.2, + high: 781.6, + low: 763.5, + close: 768.7, + volume: 1918414 + }), + new StockGoogleItem( + { + date: `2016-10-03`, + open: 767.3, + high: 770, + low: 759, + close: 762.1, + volume: 1943175 + }), + new StockGoogleItem( + { + date: `2016-10-04`, + open: 750.7, + high: 770.4, + low: 750.6, + close: 762, + volume: 2134812 + }), + new StockGoogleItem( + { + date: `2016-10-07`, + open: 774.5, + high: 785.2, + low: 772.5, + close: 782.5, + volume: 1585070 + }), + new StockGoogleItem( + { + date: `2016-10-08`, + open: 783.4, + high: 795.6, + low: 780.2, + close: 790.5, + volume: 1366873 + }), + new StockGoogleItem( + { + date: `2016-10-09`, + open: 779.9, + high: 791.2, + low: 771.7, + close: 785.3, + volume: 2607121 + }), + new StockGoogleItem( + { + date: `2016-10-10`, + open: 791.2, + high: 791.2, + low: 752.2, + close: 762.6, + volume: 4745183 + }), + new StockGoogleItem( + { + date: `2016-10-11`, + open: 756.5, + high: 760.8, + low: 750.4, + close: 754, + volume: 2431815 + }), + new StockGoogleItem( + { + date: `2016-10-14`, + open: 755.6, + high: 757.9, + low: 727.5, + close: 736.1, + volume: 3654385 + }), + new StockGoogleItem( + { + date: `2016-10-15`, + open: 747, + high: 764.4, + low: 747, + close: 758.5, + volume: 2384001 + }), + new StockGoogleItem( + { + date: `2016-10-16`, + open: 755.2, + high: 766.4, + low: 750.5, + close: 764.5, + volume: 1472594 + }), + new StockGoogleItem( + { + date: `2016-10-17`, + open: 766.9, + high: 772.7, + low: 764.2, + close: 771.2, + volume: 1286961 + }), + new StockGoogleItem( + { + date: `2016-10-18`, + open: 771.4, + high: 775, + low: 760, + close: 760.5, + volume: 1547145 + }), + new StockGoogleItem( + { + date: `2016-10-21`, + open: 762.6, + high: 769.7, + low: 760.6, + close: 769.2, + volume: 1330639 + }), + new StockGoogleItem( + { + date: `2016-10-22`, + open: 772.6, + high: 777, + low: 767, + close: 768.3, + volume: 1593108 + }), + new StockGoogleItem( + { + date: `2016-10-23`, + open: 767.7, + high: 768.3, + low: 755.3, + close: 761, + volume: 1478417 + }), + new StockGoogleItem( + { + date: `2016-10-25`, + open: 764.3, + high: 765, + low: 760.5, + close: 761.7, + volume: 587421 + }), + new StockGoogleItem( + { + date: `2016-10-28`, + open: 760, + high: 779.5, + low: 759.8, + close: 768.2, + volume: 2188151 + }), + new StockGoogleItem( + { + date: `2016-10-29`, + open: 771.5, + high: 778.5, + low: 768.2, + close: 770.8, + volume: 1616618 + }), + new StockGoogleItem( + { + date: `2016-10-30`, + open: 770.1, + high: 773, + low: 754.8, + close: 758, + volume: 2392890 + }), + new StockGoogleItem( + { + date: `2016-11-01`, + open: 757.4, + high: 759.9, + low: 737, + close: 747.9, + volume: 3017947 + }), + new StockGoogleItem( + { + date: `2016-11-02`, + open: 744.6, + high: 754, + low: 743.1, + close: 750.5, + volume: 1452484 + }), + new StockGoogleItem( + { + date: `2016-11-05`, + open: 757.7, + high: 763.9, + low: 752.9, + close: 762.5, + volume: 1394223 + }), + new StockGoogleItem( + { + date: `2016-11-06`, + open: 764.7, + high: 768.8, + low: 757.3, + close: 759.1, + volume: 1690689 + }), + new StockGoogleItem( + { + date: `2016-11-07`, + open: 761, + high: 771.4, + low: 755.8, + close: 771.2, + volume: 1760966 + }), + new StockGoogleItem( + { + date: `2016-11-08`, + open: 772.5, + high: 778.2, + low: 767.2, + close: 776.4, + volume: 1488059 + }), + new StockGoogleItem( + { + date: `2016-11-09`, + open: 780, + high: 789.4, + low: 779, + close: 789.3, + volume: 1821914 + }), + new StockGoogleItem( + { + date: `2016-11-12`, + open: 785, + high: 791.3, + low: 784.4, + close: 789.3, + volume: 2104117 + }), + new StockGoogleItem( + { + date: `2016-11-13`, + open: 793.9, + high: 804.4, + low: 793.3, + close: 796.1, + volume: 2145209 + }), + new StockGoogleItem( + { + date: `2016-11-14`, + open: 797.4, + high: 804, + low: 794, + close: 797.1, + volume: 1704150 + }), + new StockGoogleItem( + { + date: `2016-11-15`, + open: 797.3, + high: 803, + low: 792.9, + close: 797.9, + volume: 1626499 + }), + new StockGoogleItem( + { + date: `2016-11-16`, + open: 800.4, + high: 800.9, + low: 790.3, + close: 790.8, + volume: 2443796 + }), + new StockGoogleItem( + { + date: `2016-11-19`, + open: 790.2, + high: 797.7, + low: 786.3, + close: 794.2, + volume: 1232087 + }), + new StockGoogleItem( + { + date: `2016-11-20`, + open: 796.8, + high: 798.6, + low: 793.3, + close: 796.4, + volume: 951014 + }), + new StockGoogleItem( + { + date: `2016-11-21`, + open: 795.8, + high: 796.7, + low: 787.1, + close: 794.6, + volume: 1211346 + }), + new StockGoogleItem( + { + date: `2016-11-22`, + open: 792.4, + high: 793.3, + low: 788.6, + close: 791.3, + volume: 972169 + }), + new StockGoogleItem( + { + date: `2016-11-23`, + open: 790.9, + high: 792.7, + low: 787.3, + close: 789.9, + volume: 623944 + }), + new StockGoogleItem( + { + date: `2016-11-27`, + open: 790.7, + high: 797.9, + low: 787.7, + close: 791.5, + volume: 789321 + }), + new StockGoogleItem( + { + date: `2016-11-28`, + open: 793.7, + high: 794.2, + low: 783.2, + close: 785, + volume: 1153824 + }), + new StockGoogleItem( + { + date: `2016-11-29`, + open: 783.3, + high: 785.9, + low: 778.9, + close: 782.8, + volume: 744272 + }), + new StockGoogleItem( + { + date: `2016-11-30`, + open: 782.8, + high: 782.8, + low: 770.4, + close: 771.8, + volume: 1769950 + }), + new StockGoogleItem( + { + date: `2017-00-03`, + open: 778.8, + high: 789.6, + low: 775.8, + close: 786.1, + volume: 1657268 + }), + new StockGoogleItem( + { + date: `2017-00-04`, + open: 788.4, + high: 791.3, + low: 783.2, + close: 786.9, + volume: 1072958 + }), + new StockGoogleItem( + { + date: `2017-00-05`, + open: 786.1, + high: 794.5, + low: 785, + close: 794, + volume: 1335167 + }), + new StockGoogleItem( + { + date: `2017-00-06`, + open: 795.3, + high: 807.9, + low: 792.2, + close: 806.1, + volume: 1640170 + }), + new StockGoogleItem( + { + date: `2017-00-09`, + open: 806.4, + high: 810, + low: 802.8, + close: 806.6, + volume: 1274645 + }), + new StockGoogleItem( + { + date: `2017-00-10`, + open: 807.9, + high: 809.1, + low: 803.5, + close: 804.8, + volume: 1176780 + }), + new StockGoogleItem( + { + date: `2017-00-11`, + open: 805, + high: 808.1, + low: 801.4, + close: 807.9, + volume: 1065936 + }), + new StockGoogleItem( + { + date: `2017-00-12`, + open: 807.1, + high: 807.4, + low: 799.2, + close: 806.4, + volume: 1353057 + }), + new StockGoogleItem( + { + date: `2017-00-13`, + open: 807.5, + high: 811.2, + low: 806.7, + close: 807.9, + volume: 1099215 + }), + new StockGoogleItem( + { + date: `2017-00-17`, + open: 807.1, + high: 807.1, + low: 800.4, + close: 804.6, + volume: 1362115 + }), + new StockGoogleItem( + { + date: `2017-00-18`, + open: 805.8, + high: 806.2, + low: 801, + close: 806.1, + volume: 1294407 + }), + new StockGoogleItem( + { + date: `2017-00-19`, + open: 805.1, + high: 809.5, + low: 801.8, + close: 802.2, + volume: 919325 + }), + new StockGoogleItem( + { + date: `2017-00-20`, + open: 806.9, + high: 806.9, + low: 801.7, + close: 805, + volume: 1670045 + }), + new StockGoogleItem( + { + date: `2017-00-23`, + open: 807.3, + high: 820.9, + low: 803.7, + close: 819.3, + volume: 1963628 + }), + new StockGoogleItem( + { + date: `2017-00-24`, + open: 822.3, + high: 825.9, + low: 817.8, + close: 823.9, + volume: 1474010 + }), + new StockGoogleItem( + { + date: `2017-00-25`, + open: 829.6, + high: 835.8, + low: 825.1, + close: 835.7, + volume: 1627304 + }), + new StockGoogleItem( + { + date: `2017-00-26`, + open: 837.8, + high: 838, + low: 827, + close: 832.1, + volume: 2973891 + }), + new StockGoogleItem( + { + date: `2017-00-27`, + open: 834.7, + high: 842, + low: 820.4, + close: 823.3, + volume: 2965771 + }), + new StockGoogleItem( + { + date: `2017-00-30`, + open: 814.7, + high: 815.8, + low: 799.8, + close: 802.3, + volume: 3246573 + }), + new StockGoogleItem( + { + date: `2017-00-31`, + open: 796.9, + high: 801.3, + low: 790.5, + close: 796.8, + volume: 2160556 + }), + new StockGoogleItem( + { + date: `2017-01-01`, + open: 799.7, + high: 801.2, + low: 791.2, + close: 795.7, + volume: 2029744 + }), + new StockGoogleItem( + { + date: `2017-01-02`, + open: 793.8, + high: 802.7, + low: 792, + close: 798.5, + volume: 1532138 + }), + new StockGoogleItem( + { + date: `2017-01-03`, + open: 803, + high: 806, + low: 800.4, + close: 801.5, + volume: 1463448 + }), + new StockGoogleItem( + { + date: `2017-01-06`, + open: 799.7, + high: 801.7, + low: 795.3, + close: 801.3, + volume: 1184483 + }), + new StockGoogleItem( + { + date: `2017-01-07`, + open: 804, + high: 810.5, + low: 801.8, + close: 807, + volume: 1241221 + }), + new StockGoogleItem( + { + date: `2017-01-08`, + open: 807, + high: 811.8, + low: 803.2, + close: 808.4, + volume: 1155990 + }), + new StockGoogleItem( + { + date: `2017-01-09`, + open: 809.5, + high: 810.7, + low: 804.5, + close: 809.6, + volume: 990391 + }), + new StockGoogleItem( + { + date: `2017-01-10`, + open: 811.7, + high: 815.3, + low: 809.8, + close: 813.7, + volume: 1134976 + }), + new StockGoogleItem( + { + date: `2017-01-13`, + open: 816, + high: 821, + low: 815.5, + close: 819.2, + volume: 1213324 + }), + new StockGoogleItem( + { + date: `2017-01-14`, + open: 819, + high: 823, + low: 816, + close: 820.5, + volume: 1054732 + }), + new StockGoogleItem( + { + date: `2017-01-15`, + open: 819.4, + high: 823, + low: 818.5, + close: 819, + volume: 1313617 + }), + new StockGoogleItem( + { + date: `2017-01-16`, + open: 819.9, + high: 824.4, + low: 819, + close: 824.2, + volume: 1287626 + }), + new StockGoogleItem( + { + date: `2017-01-17`, + open: 823, + high: 828.1, + low: 821.7, + close: 828.1, + volume: 1611039 + }), + new StockGoogleItem( + { + date: `2017-01-21`, + open: 828.7, + high: 833.5, + low: 828.4, + close: 831.7, + volume: 1262337 + }), + new StockGoogleItem( + { + date: `2017-01-22`, + open: 828.7, + high: 833.3, + low: 828.6, + close: 830.8, + volume: 987248 + }), + new StockGoogleItem( + { + date: `2017-01-23`, + open: 830.1, + high: 832.5, + low: 822.9, + close: 831.3, + volume: 1472771 + }), + new StockGoogleItem( + { + date: `2017-01-24`, + open: 827.7, + high: 829, + low: 824.2, + close: 828.6, + volume: 1392202 + }), + new StockGoogleItem( + { + date: `2017-01-27`, + open: 824.5, + high: 830.5, + low: 824, + close: 829.3, + volume: 1101466 + }), + new StockGoogleItem( + { + date: `2017-01-28`, + open: 825.6, + high: 828.5, + low: 820.2, + close: 823.2, + volume: 2260769 + }), + new StockGoogleItem( + { + date: `2017-02-01`, + open: 828.9, + high: 836.3, + low: 827.3, + close: 835.2, + volume: 1496540 + }), + new StockGoogleItem( + { + date: `2017-02-02`, + open: 833.9, + high: 834.5, + low: 829.6, + close: 830.6, + volume: 942476 + }), + new StockGoogleItem( + { + date: `2017-02-03`, + open: 830.6, + high: 831.4, + low: 825.8, + close: 829.1, + volume: 896378 + }), + new StockGoogleItem( + { + date: `2017-02-06`, + open: 827, + high: 828.9, + low: 822.4, + close: 827.8, + volume: 1109037 + }), + new StockGoogleItem( + { + date: `2017-02-07`, + open: 827.4, + high: 833.4, + low: 826.5, + close: 831.9, + volume: 1037630 + }), + new StockGoogleItem( + { + date: `2017-02-08`, + open: 833.5, + high: 838.1, + low: 831.8, + close: 835.4, + volume: 989773 + }), + new StockGoogleItem( + { + date: `2017-02-09`, + open: 836, + high: 842, + low: 834.2, + close: 838.7, + volume: 1261517 + }), + new StockGoogleItem( + { + date: `2017-02-10`, + open: 843.3, + high: 844.9, + low: 839.5, + close: 843.3, + volume: 1704024 + }), + new StockGoogleItem( + { + date: `2017-02-13`, + open: 844, + high: 848.7, + low: 843.3, + close: 845.5, + volume: 1223647 + }), + new StockGoogleItem( + { + date: `2017-02-14`, + open: 843.6, + high: 847.2, + low: 840.8, + close: 845.6, + volume: 780198 + }), + new StockGoogleItem( + { + date: `2017-02-15`, + open: 847.6, + high: 848.6, + low: 840.8, + close: 847.2, + volume: 1381474 + }), + new StockGoogleItem( + { + date: `2017-02-16`, + open: 849, + high: 850.9, + low: 846.1, + close: 848.8, + volume: 977560 + }), + new StockGoogleItem( + { + date: `2017-02-17`, + open: 851.6, + high: 853.4, + low: 847.1, + close: 852.1, + volume: 1716471 + }), + new StockGoogleItem( + { + date: `2017-02-20`, + open: 850, + high: 850.2, + low: 845.1, + close: 848.4, + volume: 1231521 + }), + new StockGoogleItem( + { + date: `2017-02-21`, + open: 851.4, + high: 853.5, + low: 829, + close: 830.5, + volume: 2463484 + }), + new StockGoogleItem( + { + date: `2017-02-22`, + open: 831.9, + high: 835.5, + low: 827.2, + close: 829.6, + volume: 1401465 + }), + new StockGoogleItem( + { + date: `2017-02-23`, + open: 821, + high: 822.6, + low: 812.3, + close: 817.6, + volume: 3487056 + }), + new StockGoogleItem( + { + date: `2017-02-24`, + open: 820.1, + high: 821.9, + low: 808.9, + close: 814.4, + volume: 1981006 + }), + new StockGoogleItem( + { + date: `2017-02-27`, + open: 807, + high: 821.6, + low: 803.4, + close: 819.5, + volume: 1894990 + }), + new StockGoogleItem( + { + date: `2017-02-28`, + open: 820.4, + high: 826, + low: 814, + close: 820.9, + volume: 1620542 + }), + new StockGoogleItem( + { + date: `2017-02-29`, + open: 825, + high: 832.8, + low: 822.4, + close: 831.4, + volume: 1786321 + }), + new StockGoogleItem( + { + date: `2017-02-30`, + open: 833.5, + high: 833.7, + low: 829, + close: 831.5, + volume: 1055339 + }), + new StockGoogleItem( + { + date: `2017-02-31`, + open: 829, + high: 831.6, + low: 827.4, + close: 829.6, + volume: 1401893 + }), + new StockGoogleItem( + { + date: `2017-03-03`, + open: 829.2, + high: 840.9, + low: 829.2, + close: 838.5, + volume: 1671503 + }), + new StockGoogleItem( + { + date: `2017-03-04`, + open: 831.4, + high: 835.2, + low: 829, + close: 834.6, + volume: 1045363 + }), + new StockGoogleItem( + { + date: `2017-03-05`, + open: 835.5, + high: 842.5, + low: 830.7, + close: 831.4, + volume: 1555328 + }), + new StockGoogleItem( + { + date: `2017-03-06`, + open: 832.4, + high: 836.4, + low: 826.5, + close: 827.9, + volume: 1254433 + }), + new StockGoogleItem( + { + date: `2017-03-07`, + open: 828, + high: 828.5, + low: 820.5, + close: 824.7, + volume: 1057253 + }), + new StockGoogleItem( + { + date: `2017-03-10`, + open: 825.4, + high: 829.4, + low: 823.8, + close: 824.7, + volume: 978905 + }), + new StockGoogleItem( + { + date: `2017-03-11`, + open: 824.7, + high: 827.4, + low: 817, + close: 823.4, + volume: 1079732 + }), + new StockGoogleItem( + { + date: `2017-03-12`, + open: 821.9, + high: 826.7, + low: 821, + close: 824.3, + volume: 900480 + }), + new StockGoogleItem( + { + date: `2017-03-13`, + open: 822.1, + high: 826.4, + low: 821.4, + close: 823.6, + volume: 1122362 + }), + new StockGoogleItem( + { + date: `2017-03-17`, + open: 825, + high: 837.8, + low: 824.5, + close: 837.2, + volume: 895015 + }), + new StockGoogleItem( + { + date: `2017-03-18`, + open: 834.2, + high: 838.9, + low: 832.7, + close: 836.8, + volume: 836722 + }), + new StockGoogleItem( + { + date: `2017-03-19`, + open: 839.8, + high: 842.2, + low: 836.3, + close: 838.2, + volume: 954330 + }), + new StockGoogleItem( + { + date: `2017-03-20`, + open: 841.4, + high: 845.2, + low: 839.3, + close: 841.6, + volume: 959031 + }), + new StockGoogleItem( + { + date: `2017-03-21`, + open: 842.9, + high: 843.9, + low: 840.6, + close: 843.2, + volume: 1323583 + }), + new StockGoogleItem( + { + date: `2017-03-24`, + open: 851.2, + high: 863.5, + low: 849.9, + close: 862.8, + volume: 1372541 + }), + new StockGoogleItem( + { + date: `2017-03-25`, + open: 865, + high: 875, + low: 862.8, + close: 872.3, + volume: 1671972 + }), + new StockGoogleItem( + { + date: `2017-03-26`, + open: 874.2, + high: 876, + low: 867.8, + close: 871.7, + volume: 1237167 + }), + new StockGoogleItem( + { + date: `2017-03-27`, + open: 873.6, + high: 875.4, + low: 870.4, + close: 874.3, + volume: 2026816 + }), + new StockGoogleItem( + { + date: `2017-03-28`, + open: 910.7, + high: 916.9, + low: 905.8, + close: 906, + volume: 3276255 + }), + new StockGoogleItem( + { + date: `2017-04-01`, + open: 901.9, + high: 915.7, + low: 901.5, + close: 912.6, + volume: 2115993 + }), + new StockGoogleItem( + { + date: `2017-04-02`, + open: 909.6, + high: 920.8, + low: 909.5, + close: 916.4, + volume: 1587219 + }), + new StockGoogleItem( + { + date: `2017-04-03`, + open: 914.9, + high: 928.1, + low: 912.5, + close: 927, + volume: 1499532 + }), + new StockGoogleItem( + { + date: `2017-04-04`, + open: 926.1, + high: 935.9, + low: 924.6, + close: 931.7, + volume: 1422144 + }), + new StockGoogleItem( + { + date: `2017-04-05`, + open: 933.5, + high: 934.9, + low: 925.2, + close: 927.1, + volume: 1911275 + }), + new StockGoogleItem( + { + date: `2017-04-08`, + open: 926.1, + high: 936.9, + low: 925.3, + close: 934.3, + volume: 1329825 + }), + new StockGoogleItem( + { + date: `2017-04-09`, + open: 937, + high: 937.5, + low: 929.5, + close: 932.2, + volume: 1581809 + }), + new StockGoogleItem( + { + date: `2017-04-10`, + open: 932, + high: 932, + low: 925.2, + close: 928.8, + volume: 1173925 + }), + new StockGoogleItem( + { + date: `2017-04-11`, + open: 925.3, + high: 932.5, + low: 923, + close: 930.6, + volume: 835386 + }), + new StockGoogleItem( + { + date: `2017-04-12`, + open: 931.5, + high: 933.4, + low: 927.9, + close: 932.2, + volume: 1050601 + }), + new StockGoogleItem( + { + date: `2017-04-15`, + open: 933, + high: 938.3, + low: 929.3, + close: 937.1, + volume: 1108496 + }), + new StockGoogleItem( + { + date: `2017-04-16`, + open: 940, + high: 943.1, + low: 937.6, + close: 943, + volume: 969479 + }), + new StockGoogleItem( + { + date: `2017-04-17`, + open: 935.7, + high: 939.3, + low: 918.1, + close: 919.6, + volume: 2362072 + }), + new StockGoogleItem( + { + date: `2017-04-18`, + open: 921, + high: 933.2, + low: 918.8, + close: 930.2, + volume: 1596897 + }), + new StockGoogleItem( + { + date: `2017-04-19`, + open: 931.5, + high: 937.8, + low: 931, + close: 934, + volume: 1393024 + }), + new StockGoogleItem( + { + date: `2017-04-22`, + open: 935, + high: 941.9, + low: 935, + close: 941.9, + volume: 1120385 + }), + new StockGoogleItem( + { + date: `2017-04-23`, + open: 947.9, + high: 951.5, + low: 942.6, + close: 948.8, + volume: 1270817 + }), + new StockGoogleItem( + { + date: `2017-04-24`, + open: 953, + high: 955.1, + low: 949.5, + close: 955, + volume: 1034199 + }), + new StockGoogleItem( + { + date: `2017-04-25`, + open: 957.3, + high: 972.6, + low: 955.5, + close: 969.5, + volume: 1660474 + }), + new StockGoogleItem( + { + date: `2017-04-26`, + open: 969.7, + high: 975, + low: 965, + close: 971.5, + volume: 1252010 + }), + new StockGoogleItem( + { + date: `2017-04-30`, + open: 970.3, + high: 976.2, + low: 969.5, + close: 975.9, + volume: 1466654 + }), + new StockGoogleItem( + { + date: `2017-04-31`, + open: 975, + high: 979.3, + low: 960.2, + close: 964.9, + volume: 2448067 + }), + new StockGoogleItem( + { + date: `2017-05-01`, + open: 969, + high: 971.5, + low: 960, + close: 967, + volume: 1410458 + }), + new StockGoogleItem( + { + date: `2017-05-02`, + open: 969.5, + high: 975.9, + low: 966, + close: 975.6, + volume: 1750955 + }), + new StockGoogleItem( + { + date: `2017-05-05`, + open: 976.5, + high: 986.9, + low: 975.1, + close: 983.7, + volume: 1252106 + }), + new StockGoogleItem( + { + date: `2017-05-06`, + open: 983.2, + high: 988.3, + low: 975.1, + close: 976.6, + volume: 1814624 + }), + new StockGoogleItem( + { + date: `2017-05-07`, + open: 979.6, + high: 984.1, + low: 975.8, + close: 981.1, + volume: 1453874 + }), + new StockGoogleItem( + { + date: `2017-05-08`, + open: 982.4, + high: 984.6, + low: 977.2, + close: 983.4, + volume: 1481916 + }), + new StockGoogleItem( + { + date: `2017-05-09`, + open: 984.5, + high: 984.5, + low: 935.6, + close: 949.8, + volume: 3309389 + }), + new StockGoogleItem( + { + date: `2017-05-12`, + open: 939.6, + high: 949.4, + low: 915.2, + close: 942.9, + volume: 3763529 + }), + new StockGoogleItem( + { + date: `2017-05-13`, + open: 951.9, + high: 960, + low: 944.1, + close: 953.4, + volume: 2013337 + }), + new StockGoogleItem( + { + date: `2017-05-14`, + open: 959.9, + high: 961.1, + low: 942.3, + close: 950.8, + volume: 1489715 + }), + new StockGoogleItem( + { + date: `2017-05-15`, + open: 934, + high: 943.3, + low: 924.4, + close: 942.3, + volume: 2133050 + }), + new StockGoogleItem( + { + date: `2017-05-16`, + open: 940, + high: 942, + low: 931.6, + close: 939.8, + volume: 3094711 + }), + new StockGoogleItem( + { + date: `2017-05-19`, + open: 950, + high: 960, + low: 949, + close: 957.4, + volume: 1533336 + }), + new StockGoogleItem( + { + date: `2017-05-20`, + open: 957.5, + high: 961.6, + low: 950, + close: 950.6, + volume: 1125990 + }), + new StockGoogleItem( + { + date: `2017-05-21`, + open: 953.6, + high: 960.1, + low: 950.8, + close: 959.5, + volume: 1202233 + }), + new StockGoogleItem( + { + date: `2017-05-22`, + open: 958.7, + high: 960.7, + low: 954.5, + close: 957.1, + volume: 941958 + }), + new StockGoogleItem( + { + date: `2017-05-23`, + open: 956.8, + high: 966, + low: 954.2, + close: 965.6, + volume: 1527856 + }), + new StockGoogleItem( + { + date: `2017-05-26`, + open: 969.9, + high: 973.3, + low: 950.8, + close: 952.3, + volume: 1598355 + }), + new StockGoogleItem( + { + date: `2017-05-27`, + open: 942.5, + high: 948.3, + low: 926.9, + close: 927.3, + volume: 2579930 + }), + new StockGoogleItem( + { + date: `2017-05-28`, + open: 929, + high: 942.8, + low: 916, + close: 940.5, + volume: 2721406 + }), + new StockGoogleItem( + { + date: `2017-05-29`, + open: 929.9, + high: 931.3, + low: 910.6, + close: 917.8, + volume: 3299176 + }), + new StockGoogleItem( + { + date: `2017-05-30`, + open: 926, + high: 926, + low: 908.3, + close: 908.7, + volume: 2090226 + }), + new StockGoogleItem( + { + date: `2017-06-03`, + open: 912.2, + high: 913.9, + low: 894.8, + close: 898.7, + volume: 1710373 + }), + new StockGoogleItem( + { + date: `2017-06-05`, + open: 901.8, + high: 914.5, + low: 898.5, + close: 911.7, + volume: 1813884 + }), + new StockGoogleItem( + { + date: `2017-06-06`, + open: 904.1, + high: 914.9, + low: 899.7, + close: 906.7, + volume: 1424503 + }), + new StockGoogleItem( + { + date: `2017-06-07`, + open: 908.9, + high: 921.5, + low: 908.9, + close: 918.6, + volume: 1637785 + }), + new StockGoogleItem( + { + date: `2017-06-10`, + open: 921.8, + high: 930.4, + low: 919.6, + close: 928.8, + volume: 1192825 + }), + new StockGoogleItem( + { + date: `2017-06-11`, + open: 929.5, + high: 931.4, + low: 922, + close: 930.1, + volume: 1113235 + }), + new StockGoogleItem( + { + date: `2017-06-12`, + open: 938.7, + high: 946.3, + low: 934.5, + close: 943.8, + volume: 1532144 + }), + new StockGoogleItem( + { + date: `2017-06-13`, + open: 946.3, + high: 954.5, + low: 943, + close: 947.2, + volume: 1294687 + }), + new StockGoogleItem( + { + date: `2017-06-14`, + open: 952, + high: 956.9, + low: 948, + close: 956, + volume: 1053774 + }), + new StockGoogleItem( + { + date: `2017-06-17`, + open: 957, + high: 960.7, + low: 949.2, + close: 953.4, + volume: 1165537 + }), + new StockGoogleItem( + { + date: `2017-06-18`, + open: 953, + high: 968, + low: 950.6, + close: 965.4, + volume: 1153964 + }), + new StockGoogleItem( + { + date: `2017-06-19`, + open: 967.8, + high: 973, + low: 964, + close: 970.9, + volume: 1224540 + }), + new StockGoogleItem( + { + date: `2017-06-20`, + open: 975, + high: 975.9, + low: 961.5, + close: 968.1, + volume: 1624463 + }), + new StockGoogleItem( + { + date: `2017-06-21`, + open: 962.3, + high: 973.2, + low: 960.1, + close: 972.9, + volume: 1711000 + }), + new StockGoogleItem( + { + date: `2017-06-24`, + open: 972.2, + high: 986.2, + low: 970.8, + close: 980.3, + volume: 3248347 + }), + new StockGoogleItem( + { + date: `2017-06-25`, + open: 953.8, + high: 959.7, + low: 945.4, + close: 950.7, + volume: 4660979 + }), + new StockGoogleItem( + { + date: `2017-06-26`, + open: 954.7, + high: 955, + low: 942.3, + close: 947.8, + volume: 2088256 + }), + new StockGoogleItem( + { + date: `2017-06-27`, + open: 951.8, + high: 951.8, + low: 920, + close: 934.1, + volume: 3212996 + }), + new StockGoogleItem( + { + date: `2017-06-28`, + open: 929.4, + high: 943.8, + low: 927.5, + close: 941.5, + volume: 1846351 + }), + new StockGoogleItem( + { + date: `2017-06-31`, + open: 941.9, + high: 943.6, + low: 926, + close: 930.5, + volume: 1970095 + }), + new StockGoogleItem( + { + date: `2017-07-01`, + open: 932.4, + high: 937.5, + low: 929.3, + close: 930.8, + volume: 1277734 + }), + new StockGoogleItem( + { + date: `2017-07-02`, + open: 928.6, + high: 932.6, + low: 916.7, + close: 930.4, + volume: 1824448 + }), + new StockGoogleItem( + { + date: `2017-07-03`, + open: 930.3, + high: 932.2, + low: 922.2, + close: 923.6, + volume: 1202512 + }), + new StockGoogleItem( + { + date: `2017-07-04`, + open: 926.8, + high: 930.3, + low: 923, + close: 928, + volume: 1082267 + }), + new StockGoogleItem( + { + date: `2017-07-07`, + open: 929.1, + high: 931.7, + low: 926.5, + close: 929.4, + volume: 1032239 + }), + new StockGoogleItem( + { + date: `2017-07-08`, + open: 927.1, + high: 935.8, + low: 925.6, + close: 926.8, + volume: 1061579 + }), + new StockGoogleItem( + { + date: `2017-07-09`, + open: 920.6, + high: 926, + low: 917.3, + close: 922.9, + volume: 1192081 + }), + new StockGoogleItem( + { + date: `2017-07-10`, + open: 917.5, + high: 919.3, + low: 906.1, + close: 907.2, + volume: 1823967 + }), + new StockGoogleItem( + { + date: `2017-07-11`, + open: 908, + high: 917.8, + low: 905.6, + close: 914.4, + volume: 1206782 + }), + new StockGoogleItem( + { + date: `2017-07-14`, + open: 922.5, + high: 924.7, + low: 918.2, + close: 922.7, + volume: 1064530 + }), + new StockGoogleItem( + { + date: `2017-07-15`, + open: 924.2, + high: 926.5, + low: 919.8, + close: 922.2, + volume: 883369 + }), + new StockGoogleItem( + { + date: `2017-07-16`, + open: 925.3, + high: 932.7, + low: 923.4, + close: 927, + volume: 1006711 + }), + new StockGoogleItem( + { + date: `2017-07-17`, + open: 925.8, + high: 926.9, + low: 911, + close: 911, + volume: 1277238 + }), + new StockGoogleItem( + { + date: `2017-07-18`, + open: 910.3, + high: 915.3, + low: 907.1, + close: 910.7, + volume: 1342689 + }), + new StockGoogleItem( + { + date: `2017-07-21`, + open: 910, + high: 913, + low: 903.4, + close: 906.7, + volume: 943441 + }), + new StockGoogleItem( + { + date: `2017-07-22`, + open: 912.7, + high: 925.9, + low: 911.5, + close: 924.7, + volume: 1166737 + }), + new StockGoogleItem( + { + date: `2017-07-23`, + open: 921.9, + high: 929.9, + low: 919.4, + close: 927, + volume: 1090248 + }), + new StockGoogleItem( + { + date: `2017-07-24`, + open: 928.7, + high: 930.8, + low: 915.5, + close: 921.3, + volume: 1270306 + }), + new StockGoogleItem( + { + date: `2017-07-25`, + open: 923.5, + high: 925.6, + low: 915.5, + close: 915.9, + volume: 1053376 + }), + new StockGoogleItem( + { + date: `2017-07-28`, + open: 916, + high: 919.2, + low: 911.9, + close: 913.8, + volume: 1086484 + }), + new StockGoogleItem( + { + date: `2017-07-29`, + open: 905.1, + high: 923.3, + low: 905, + close: 921.3, + volume: 1185564 + }), + new StockGoogleItem( + { + date: `2017-07-30`, + open: 920, + high: 930.8, + low: 919.6, + close: 929.6, + volume: 1301225 + }), + new StockGoogleItem( + { + date: `2017-07-31`, + open: 931.8, + high: 942, + low: 931.8, + close: 939.3, + volume: 1582579 + }), + new StockGoogleItem( + { + date: `2017-08-01`, + open: 941.1, + high: 942.5, + low: 935.1, + close: 937.3, + volume: 947374 + }), + new StockGoogleItem( + { + date: `2017-08-05`, + open: 933.1, + high: 937, + low: 922, + close: 928.5, + volume: 1348292 + }), + new StockGoogleItem( + { + date: `2017-08-06`, + open: 930.1, + high: 930.9, + low: 919.3, + close: 927.8, + volume: 1527650 + }), + new StockGoogleItem( + { + date: `2017-08-07`, + open: 931.7, + high: 936.4, + low: 923.6, + close: 936, + volume: 1212743 + }), + new StockGoogleItem( + { + date: `2017-08-08`, + open: 936.5, + high: 937, + low: 924.9, + close: 926.5, + volume: 1011538 + }), + new StockGoogleItem( + { + date: `2017-08-11`, + open: 934.3, + high: 938.4, + low: 926.9, + close: 929.1, + volume: 1266991 + }), + new StockGoogleItem( + { + date: `2017-08-12`, + open: 932.6, + high: 933.5, + low: 923.9, + close: 932.1, + volume: 1134397 + }), + new StockGoogleItem( + { + date: `2017-08-13`, + open: 930.7, + high: 937.3, + low: 929.9, + close: 935.1, + volume: 1102631 + }), + new StockGoogleItem( + { + date: `2017-08-14`, + open: 931.3, + high: 932.8, + low: 924, + close: 925.1, + volume: 1397644 + }), + new StockGoogleItem( + { + date: `2017-08-15`, + open: 924.7, + high: 926.5, + low: 916.4, + close: 920.3, + volume: 2505430 + }), + new StockGoogleItem( + { + date: `2017-08-18`, + open: 920, + high: 922.1, + low: 910.6, + close: 915, + volume: 1306922 + }), + new StockGoogleItem( + { + date: `2017-08-19`, + open: 917.4, + high: 922.4, + low: 912.5, + close: 921.8, + volume: 936654 + }), + new StockGoogleItem( + { + date: `2017-08-20`, + open: 923, + high: 933.9, + low: 922, + close: 931.6, + volume: 1669763 + }), + new StockGoogleItem( + { + date: `2017-08-21`, + open: 933, + high: 936.5, + low: 923.8, + close: 932.5, + volume: 1290607 + }), + new StockGoogleItem( + { + date: `2017-08-22`, + open: 927.8, + high: 934.7, + low: 926.5, + close: 928.5, + volume: 1052704 + }), + new StockGoogleItem( + { + date: `2017-08-25`, + open: 925.5, + high: 926.4, + low: 909.7, + close: 921, + volume: 1856822 + }), + new StockGoogleItem( + { + date: `2017-08-26`, + open: 923.7, + high: 930.8, + low: 921.1, + close: 924.9, + volume: 1666861 + }), + new StockGoogleItem( + { + date: `2017-08-27`, + open: 927.7, + high: 949.9, + low: 927.7, + close: 944.5, + volume: 2212600 + }), + new StockGoogleItem( + { + date: `2017-08-28`, + open: 941.4, + high: 950.7, + low: 940.5, + close: 949.5, + volume: 1020312 + }), + new StockGoogleItem( + { + date: `2017-08-29`, + open: 952, + high: 959.8, + low: 951.5, + close: 959.1, + volume: 1580994 + }), + new StockGoogleItem( + { + date: `2017-09-02`, + open: 960, + high: 962.5, + low: 947.8, + close: 953.3, + volume: 1283444 + }), + new StockGoogleItem( + { + date: `2017-09-03`, + open: 954, + high: 958, + low: 949.1, + close: 957.8, + volume: 888346 + }), + new StockGoogleItem( + { + date: `2017-09-04`, + open: 957, + high: 960.4, + low: 950.7, + close: 951.7, + volume: 952391 + }), + new StockGoogleItem( + { + date: `2017-09-05`, + open: 955.5, + high: 970.9, + low: 955.2, + close: 970, + volume: 1213816 + }), + new StockGoogleItem( + { + date: `2017-09-06`, + open: 966.7, + high: 979.5, + low: 963.4, + close: 978.9, + volume: 1173882 + }), + new StockGoogleItem( + { + date: `2017-09-09`, + open: 980, + high: 985.4, + low: 976.1, + close: 977, + volume: 891355 + }), + new StockGoogleItem( + { + date: `2017-09-10`, + open: 980, + high: 981.6, + low: 966.1, + close: 972.6, + volume: 968362 + }), + new StockGoogleItem( + { + date: `2017-09-11`, + open: 973.7, + high: 990.7, + low: 972.3, + close: 989.3, + volume: 1693274 + }), + new StockGoogleItem( + { + date: `2017-09-12`, + open: 987.5, + high: 994.1, + low: 985, + close: 987.8, + volume: 1262793 + }), + new StockGoogleItem( + { + date: `2017-09-13`, + open: 992, + high: 997.2, + low: 989, + close: 989.7, + volume: 1169777 + }), + new StockGoogleItem( + { + date: `2017-09-16`, + open: 992.1, + high: 993.9, + low: 984, + close: 992, + volume: 910543 + }), + new StockGoogleItem( + { + date: `2017-09-17`, + open: 990.3, + high: 996.4, + low: 988.6, + close: 992.2, + volume: 1290186 + }), + new StockGoogleItem( + { + date: `2017-09-18`, + open: 991.8, + high: 996.7, + low: 987, + close: 992.8, + volume: 1057581 + }), + new StockGoogleItem( + { + date: `2017-09-19`, + open: 986, + high: 988.9, + low: 978.4, + close: 984.5, + volume: 1313575 + }), + new StockGoogleItem( + { + date: `2017-09-20`, + open: 989.4, + high: 991, + low: 984.6, + close: 988.2, + volume: 1183186 + }), + new StockGoogleItem( + { + date: `2017-09-23`, + open: 989.5, + high: 989.5, + low: 966.1, + close: 968.5, + volume: 1478448 + }), + new StockGoogleItem( + { + date: `2017-09-24`, + open: 970, + high: 972.2, + low: 961, + close: 970.5, + volume: 1212153 + }), + new StockGoogleItem( + { + date: `2017-09-25`, + open: 968.4, + high: 976.1, + low: 960.5, + close: 973.3, + volume: 1211262 + }), + new StockGoogleItem( + { + date: `2017-09-26`, + open: 980, + high: 987.6, + low: 972.2, + close: 972.6, + volume: 2042149 + }), + new StockGoogleItem( + { + date: `2017-09-27`, + open: 1009.2, + high: 1048.4, + low: 1008.2, + close: 1019.3, + volume: 5167689 + }), + new StockGoogleItem( + { + date: `2017-09-30`, + open: 1014, + high: 1025, + low: 1007.5, + close: 1017.1, + volume: 2085062 + }), + new StockGoogleItem( + { + date: `2017-09-31`, + open: 1015.2, + high: 1024, + low: 1010.4, + close: 1016.6, + volume: 1331391 + }), + new StockGoogleItem( + { + date: `2017-10-01`, + open: 1017.2, + high: 1029.7, + low: 1017, + close: 1025.5, + volume: 1373444 + }), + new StockGoogleItem( + { + date: `2017-10-02`, + open: 1021.8, + high: 1028.1, + low: 1013, + close: 1025.6, + volume: 1048970 + }), + new StockGoogleItem( + { + date: `2017-10-03`, + open: 1022.1, + high: 1032.7, + low: 1020.3, + close: 1032.5, + volume: 1076350 + }), + new StockGoogleItem( + { + date: `2017-10-06`, + open: 1029, + high: 1034.9, + low: 1025, + close: 1025.9, + volume: 1125185 + }), + new StockGoogleItem( + { + date: `2017-10-07`, + open: 1027.3, + high: 1034, + low: 1025.1, + close: 1033.3, + volume: 1112331 + }), + new StockGoogleItem( + { + date: `2017-10-08`, + open: 1030.5, + high: 1043.5, + low: 1028.5, + close: 1039.8, + volume: 1088716 + }), + new StockGoogleItem( + { + date: `2017-10-09`, + open: 1034, + high: 1034, + low: 1019.7, + close: 1031.3, + volume: 1245246 + }), + new StockGoogleItem( + { + date: `2017-10-10`, + open: 1026.5, + high: 1030.8, + low: 1025.3, + close: 1028.1, + volume: 720676 + }), + new StockGoogleItem( + { + date: `2017-10-13`, + open: 1023.4, + high: 1031.6, + low: 1022.6, + close: 1025.8, + volume: 885779 + }), + new StockGoogleItem( + { + date: `2017-10-14`, + open: 1022.6, + high: 1026.8, + low: 1014.1, + close: 1026, + volume: 959222 + }), + new StockGoogleItem( + { + date: `2017-10-15`, + open: 1019.2, + high: 1024.1, + low: 1015.4, + close: 1020.9, + volume: 853992 + }), + new StockGoogleItem( + { + date: `2017-10-16`, + open: 1022.5, + high: 1035.9, + low: 1022.5, + close: 1032.5, + volume: 1129688 + }), + new StockGoogleItem( + { + date: `2017-10-17`, + open: 1034, + high: 1034.4, + low: 1017.8, + close: 1019.1, + volume: 1397064 + }), + new StockGoogleItem( + { + date: `2017-10-20`, + open: 1020.3, + high: 1022.6, + low: 1017.5, + close: 1018.4, + volume: 953470 + }), + new StockGoogleItem( + { + date: `2017-10-21`, + open: 1023.3, + high: 1035.1, + low: 1022.7, + close: 1034.5, + volume: 1096999 + }), + new StockGoogleItem( + { + date: `2017-10-22`, + open: 1035, + high: 1039.7, + low: 1031.4, + close: 1036, + volume: 746878 + }), + new StockGoogleItem( + { + date: `2017-10-24`, + open: 1035.9, + high: 1043.2, + low: 1035, + close: 1040.6, + volume: 536996 + }), + new StockGoogleItem( + { + date: `2017-10-27`, + open: 1040, + high: 1055.5, + low: 1038.4, + close: 1054.2, + volume: 1307881 + }), + new StockGoogleItem( + { + date: `2017-10-28`, + open: 1055.1, + high: 1062.4, + low: 1040, + close: 1047.4, + volume: 1424394 + }), + new StockGoogleItem( + { + date: `2017-10-29`, + open: 1042.7, + high: 1044.1, + low: 1015.6, + close: 1021.7, + volume: 2459426 + }), + new StockGoogleItem( + { + date: `2017-10-30`, + open: 1022.4, + high: 1028.5, + low: 1015, + close: 1021.4, + volume: 1724031 + }), + new StockGoogleItem( + { + date: `2017-11-01`, + open: 1015.8, + high: 1022.5, + low: 1002, + close: 1010.2, + volume: 1909566 + }), + new StockGoogleItem( + { + date: `2017-11-04`, + open: 1012.7, + high: 1016.1, + low: 995.6, + close: 998.7, + volume: 1906439 + }), + new StockGoogleItem( + { + date: `2017-11-05`, + open: 995.9, + high: 1020.6, + low: 988.3, + close: 1005.1, + volume: 2067318 + }), + new StockGoogleItem( + { + date: `2017-11-06`, + open: 1001.5, + high: 1025, + low: 1001.1, + close: 1018.4, + volume: 1271964 + }), + new StockGoogleItem( + { + date: `2017-11-07`, + open: 1020.4, + high: 1034.2, + low: 1018.1, + close: 1030.9, + volume: 1458242 + }), + new StockGoogleItem( + { + date: `2017-11-08`, + open: 1037.5, + high: 1042, + low: 1032.5, + close: 1037, + volume: 1290774 + }), + new StockGoogleItem( + { + date: `2017-11-11`, + open: 1035.5, + high: 1043.8, + low: 1032, + close: 1041.1, + volume: 1192838 + }), + new StockGoogleItem( + { + date: `2017-11-12`, + open: 1039.6, + high: 1050.3, + low: 1033.7, + close: 1040.5, + volume: 1279659 + }), + new StockGoogleItem( + { + date: `2017-11-13`, + open: 1046.1, + high: 1046.7, + low: 1038.4, + close: 1040.6, + volume: 1282677 + }), + new StockGoogleItem( + { + date: `2017-11-14`, + open: 1045, + high: 1058.5, + low: 1043.1, + close: 1049.2, + volume: 1558835 + }), + new StockGoogleItem( + { + date: `2017-11-15`, + open: 1054.6, + high: 1067.6, + low: 1049.5, + close: 1064.2, + volume: 3275931 + }), + new StockGoogleItem( + { + date: `2017-11-18`, + open: 1066.1, + high: 1078.5, + low: 1062, + close: 1077.1, + volume: 1554552 + }), + new StockGoogleItem( + { + date: `2017-11-19`, + open: 1075.2, + high: 1076.8, + low: 1063.5, + close: 1070.7, + volume: 1338725 + }), + new StockGoogleItem( + { + date: `2017-11-20`, + open: 1071.8, + high: 1073.4, + low: 1061.5, + close: 1065, + volume: 1268582 + }), + new StockGoogleItem( + { + date: `2017-11-21`, + open: 1065, + high: 1069.3, + low: 1061.8, + close: 1063.6, + volume: 995703 + }), + new StockGoogleItem( + { + date: `2017-11-22`, + open: 1061.1, + high: 1064.2, + low: 1059.4, + close: 1060.1, + volume: 755095 + }), + new StockGoogleItem( + { + date: `2017-11-26`, + open: 1058.1, + high: 1060.1, + low: 1050.2, + close: 1056.7, + volume: 761237 + }), + new StockGoogleItem( + { + date: `2017-11-27`, + open: 1057.4, + high: 1058.4, + low: 1048, + close: 1049.4, + volume: 1271911 + }), + new StockGoogleItem( + { + date: `2017-11-28`, + open: 1051.6, + high: 1054.8, + low: 1044.8, + close: 1048.1, + volume: 837121 + }), + new StockGoogleItem( + { + date: `2017-11-29`, + open: 1046.7, + high: 1049.7, + low: 1044.9, + close: 1046.4, + volume: 887511 + }), + new StockGoogleItem( + { + date: `2018-00-02`, + open: 1048.3, + high: 1066.9, + low: 1045.2, + close: 1065, + volume: 1237564 + }), + new StockGoogleItem( + { + date: `2018-00-03`, + open: 1064.3, + high: 1086.3, + low: 1063.2, + close: 1082.5, + volume: 1430170 + }), + new StockGoogleItem( + { + date: `2018-00-04`, + open: 1088, + high: 1093.6, + low: 1084, + close: 1086.4, + volume: 1004605 + }), + new StockGoogleItem( + { + date: `2018-00-05`, + open: 1094, + high: 1104.3, + low: 1092, + close: 1102.2, + volume: 1279123 + }), + new StockGoogleItem( + { + date: `2018-00-08`, + open: 1102.2, + high: 1111.3, + low: 1101.6, + close: 1106.9, + volume: 1047603 + }), + new StockGoogleItem( + { + date: `2018-00-09`, + open: 1109.4, + high: 1110.6, + low: 1101.2, + close: 1106.3, + volume: 902541 + }), + new StockGoogleItem( + { + date: `2018-00-10`, + open: 1097.1, + high: 1104.6, + low: 1096.1, + close: 1102.6, + volume: 1042793 + }), + new StockGoogleItem( + { + date: `2018-00-11`, + open: 1106.3, + high: 1106.5, + low: 1099.6, + close: 1105.5, + volume: 978292 + }), + new StockGoogleItem( + { + date: `2018-00-12`, + open: 1102.4, + high: 1124.3, + low: 1101.2, + close: 1122.3, + volume: 1720533 + }), + new StockGoogleItem( + { + date: `2018-00-16`, + open: 1132.5, + high: 1139.9, + low: 1117.8, + close: 1121.8, + volume: 1575261 + }), + new StockGoogleItem( + { + date: `2018-00-17`, + open: 1126.2, + high: 1132.6, + low: 1117, + close: 1132, + volume: 1202639 + }), + new StockGoogleItem( + { + date: `2018-00-18`, + open: 1131.4, + high: 1132.5, + low: 1117.5, + close: 1129.8, + volume: 1198234 + }), + new StockGoogleItem( + { + date: `2018-00-19`, + open: 1131.8, + high: 1137.9, + low: 1128.3, + close: 1137.5, + volume: 1778229 + }), + new StockGoogleItem( + { + date: `2018-00-22`, + open: 1137.5, + high: 1159.9, + low: 1135.1, + close: 1155.8, + volume: 1617975 + }), + new StockGoogleItem( + { + date: `2018-00-23`, + open: 1159.8, + high: 1171.6, + low: 1158.8, + close: 1170, + volume: 1333056 + }), + new StockGoogleItem( + { + date: `2018-00-24`, + open: 1177.3, + high: 1179.9, + low: 1161, + close: 1164.2, + volume: 1416625 + }), + new StockGoogleItem( + { + date: `2018-00-25`, + open: 1172.5, + high: 1175.9, + low: 1162.8, + close: 1170.4, + volume: 1480540 + }), + new StockGoogleItem( + { + date: `2018-00-26`, + open: 1175.1, + high: 1175.8, + low: 1158.1, + close: 1175.8, + volume: 2018755 + }), + new StockGoogleItem( + { + date: `2018-00-29`, + open: 1176.5, + high: 1186.9, + low: 1172, + close: 1175.6, + volume: 1378913 + }), + new StockGoogleItem( + { + date: `2018-00-30`, + open: 1167.8, + high: 1176.5, + low: 1163.5, + close: 1163.7, + volume: 1556346 + }), + new StockGoogleItem( + { + date: `2018-00-31`, + open: 1170.6, + high: 1173, + low: 1159.1, + close: 1169.9, + volume: 1538688 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/pie-chart/legend/src/EnergyGlobalDemand.ts b/samples/charts/pie-chart/legend/src/EnergyGlobalDemand.ts index f1f49bfb1..922fcf7a9 100644 --- a/samples/charts/pie-chart/legend/src/EnergyGlobalDemand.ts +++ b/samples/charts/pie-chart/legend/src/EnergyGlobalDemand.ts @@ -9,37 +9,43 @@ export class EnergyGlobalDemandItem { } export class EnergyGlobalDemand extends Array { - public constructor() { - super(); - this.push(new EnergyGlobalDemandItem( - { - value: 37, - category: `Cooling`, - summary: `Cooling 37%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 25, - category: `Residential`, - summary: `Residential 25%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 12, - category: `Heating`, - summary: `Heating 12%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 11, - category: `Lighting`, - summary: `Lighting 11%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 15, - category: `Other`, - summary: `Other 15%` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/pie-chart/others/src/EnergyGlobalDemand.ts b/samples/charts/pie-chart/others/src/EnergyGlobalDemand.ts index f1f49bfb1..922fcf7a9 100644 --- a/samples/charts/pie-chart/others/src/EnergyGlobalDemand.ts +++ b/samples/charts/pie-chart/others/src/EnergyGlobalDemand.ts @@ -9,37 +9,43 @@ export class EnergyGlobalDemandItem { } export class EnergyGlobalDemand extends Array { - public constructor() { - super(); - this.push(new EnergyGlobalDemandItem( - { - value: 37, - category: `Cooling`, - summary: `Cooling 37%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 25, - category: `Residential`, - summary: `Residential 25%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 12, - category: `Heating`, - summary: `Heating 12%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 11, - category: `Lighting`, - summary: `Lighting 11%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 15, - category: `Other`, - summary: `Other 15%` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/pie-chart/overview/src/EnergyGlobalDemand.ts b/samples/charts/pie-chart/overview/src/EnergyGlobalDemand.ts index f1f49bfb1..922fcf7a9 100644 --- a/samples/charts/pie-chart/overview/src/EnergyGlobalDemand.ts +++ b/samples/charts/pie-chart/overview/src/EnergyGlobalDemand.ts @@ -9,37 +9,43 @@ export class EnergyGlobalDemandItem { } export class EnergyGlobalDemand extends Array { - public constructor() { - super(); - this.push(new EnergyGlobalDemandItem( - { - value: 37, - category: `Cooling`, - summary: `Cooling 37%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 25, - category: `Residential`, - summary: `Residential 25%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 12, - category: `Heating`, - summary: `Heating 12%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 11, - category: `Lighting`, - summary: `Lighting 11%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 15, - category: `Other`, - summary: `Other 15%` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/pie-chart/styling/src/EnergyGlobalDemand.ts b/samples/charts/pie-chart/styling/src/EnergyGlobalDemand.ts index f1f49bfb1..922fcf7a9 100644 --- a/samples/charts/pie-chart/styling/src/EnergyGlobalDemand.ts +++ b/samples/charts/pie-chart/styling/src/EnergyGlobalDemand.ts @@ -9,37 +9,43 @@ export class EnergyGlobalDemandItem { } export class EnergyGlobalDemand extends Array { - public constructor() { - super(); - this.push(new EnergyGlobalDemandItem( - { - value: 37, - category: `Cooling`, - summary: `Cooling 37%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 25, - category: `Residential`, - summary: `Residential 25%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 12, - category: `Heating`, - summary: `Heating 12%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 11, - category: `Lighting`, - summary: `Lighting 11%` - })); - this.push(new EnergyGlobalDemandItem( - { - value: 15, - category: `Other`, - summary: `Other 15%` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/sparkline/display-area/src/SparklineMixedData.ts b/samples/charts/sparkline/display-area/src/SparklineMixedData.ts index bc1b67da1..b7684d62c 100644 --- a/samples/charts/sparkline/display-area/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/display-area/src/SparklineMixedData.ts @@ -8,47 +8,53 @@ export class SparklineMixedDataItem { } export class SparklineMixedData extends Array { - public constructor() { - super(); - this.push(new SparklineMixedDataItem( - { - label: `A`, - value: 30 - })); - this.push(new SparklineMixedDataItem( - { - label: `B`, - value: -10 - })); - this.push(new SparklineMixedDataItem( - { - label: `C`, - value: 40 - })); - this.push(new SparklineMixedDataItem( - { - label: `D`, - value: -20 - })); - this.push(new SparklineMixedDataItem( - { - label: `E`, - value: 30 - })); - this.push(new SparklineMixedDataItem( - { - label: `F`, - value: 40 - })); - this.push(new SparklineMixedDataItem( - { - label: `G`, - value: -10 - })); - this.push(new SparklineMixedDataItem( - { - label: `H`, - value: 30 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new SparklineMixedDataItem( + { + label: `A`, + value: 30 + }), + new SparklineMixedDataItem( + { + label: `B`, + value: -10 + }), + new SparklineMixedDataItem( + { + label: `C`, + value: 40 + }), + new SparklineMixedDataItem( + { + label: `D`, + value: -20 + }), + new SparklineMixedDataItem( + { + label: `E`, + value: 30 + }), + new SparklineMixedDataItem( + { + label: `F`, + value: 40 + }), + new SparklineMixedDataItem( + { + label: `G`, + value: -10 + }), + new SparklineMixedDataItem( + { + label: `H`, + value: 30 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/sparkline/display-column/src/SparklineMixedData.ts b/samples/charts/sparkline/display-column/src/SparklineMixedData.ts index bc1b67da1..b7684d62c 100644 --- a/samples/charts/sparkline/display-column/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/display-column/src/SparklineMixedData.ts @@ -8,47 +8,53 @@ export class SparklineMixedDataItem { } export class SparklineMixedData extends Array { - public constructor() { - super(); - this.push(new SparklineMixedDataItem( - { - label: `A`, - value: 30 - })); - this.push(new SparklineMixedDataItem( - { - label: `B`, - value: -10 - })); - this.push(new SparklineMixedDataItem( - { - label: `C`, - value: 40 - })); - this.push(new SparklineMixedDataItem( - { - label: `D`, - value: -20 - })); - this.push(new SparklineMixedDataItem( - { - label: `E`, - value: 30 - })); - this.push(new SparklineMixedDataItem( - { - label: `F`, - value: 40 - })); - this.push(new SparklineMixedDataItem( - { - label: `G`, - value: -10 - })); - this.push(new SparklineMixedDataItem( - { - label: `H`, - value: 30 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new SparklineMixedDataItem( + { + label: `A`, + value: 30 + }), + new SparklineMixedDataItem( + { + label: `B`, + value: -10 + }), + new SparklineMixedDataItem( + { + label: `C`, + value: 40 + }), + new SparklineMixedDataItem( + { + label: `D`, + value: -20 + }), + new SparklineMixedDataItem( + { + label: `E`, + value: 30 + }), + new SparklineMixedDataItem( + { + label: `F`, + value: 40 + }), + new SparklineMixedDataItem( + { + label: `G`, + value: -10 + }), + new SparklineMixedDataItem( + { + label: `H`, + value: 30 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/sparkline/display-lines/src/SparklineMixedData.ts b/samples/charts/sparkline/display-lines/src/SparklineMixedData.ts index bc1b67da1..b7684d62c 100644 --- a/samples/charts/sparkline/display-lines/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/display-lines/src/SparklineMixedData.ts @@ -8,47 +8,53 @@ export class SparklineMixedDataItem { } export class SparklineMixedData extends Array { - public constructor() { - super(); - this.push(new SparklineMixedDataItem( - { - label: `A`, - value: 30 - })); - this.push(new SparklineMixedDataItem( - { - label: `B`, - value: -10 - })); - this.push(new SparklineMixedDataItem( - { - label: `C`, - value: 40 - })); - this.push(new SparklineMixedDataItem( - { - label: `D`, - value: -20 - })); - this.push(new SparklineMixedDataItem( - { - label: `E`, - value: 30 - })); - this.push(new SparklineMixedDataItem( - { - label: `F`, - value: 40 - })); - this.push(new SparklineMixedDataItem( - { - label: `G`, - value: -10 - })); - this.push(new SparklineMixedDataItem( - { - label: `H`, - value: 30 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new SparklineMixedDataItem( + { + label: `A`, + value: 30 + }), + new SparklineMixedDataItem( + { + label: `B`, + value: -10 + }), + new SparklineMixedDataItem( + { + label: `C`, + value: 40 + }), + new SparklineMixedDataItem( + { + label: `D`, + value: -20 + }), + new SparklineMixedDataItem( + { + label: `E`, + value: 30 + }), + new SparklineMixedDataItem( + { + label: `F`, + value: 40 + }), + new SparklineMixedDataItem( + { + label: `G`, + value: -10 + }), + new SparklineMixedDataItem( + { + label: `H`, + value: 30 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/sparkline/display-winloss/src/SparklineMixedData.ts b/samples/charts/sparkline/display-winloss/src/SparklineMixedData.ts index bc1b67da1..b7684d62c 100644 --- a/samples/charts/sparkline/display-winloss/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/display-winloss/src/SparklineMixedData.ts @@ -8,47 +8,53 @@ export class SparklineMixedDataItem { } export class SparklineMixedData extends Array { - public constructor() { - super(); - this.push(new SparklineMixedDataItem( - { - label: `A`, - value: 30 - })); - this.push(new SparklineMixedDataItem( - { - label: `B`, - value: -10 - })); - this.push(new SparklineMixedDataItem( - { - label: `C`, - value: 40 - })); - this.push(new SparklineMixedDataItem( - { - label: `D`, - value: -20 - })); - this.push(new SparklineMixedDataItem( - { - label: `E`, - value: 30 - })); - this.push(new SparklineMixedDataItem( - { - label: `F`, - value: 40 - })); - this.push(new SparklineMixedDataItem( - { - label: `G`, - value: -10 - })); - this.push(new SparklineMixedDataItem( - { - label: `H`, - value: 30 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new SparklineMixedDataItem( + { + label: `A`, + value: 30 + }), + new SparklineMixedDataItem( + { + label: `B`, + value: -10 + }), + new SparklineMixedDataItem( + { + label: `C`, + value: 40 + }), + new SparklineMixedDataItem( + { + label: `D`, + value: -20 + }), + new SparklineMixedDataItem( + { + label: `E`, + value: 30 + }), + new SparklineMixedDataItem( + { + label: `F`, + value: 40 + }), + new SparklineMixedDataItem( + { + label: `G`, + value: -10 + }), + new SparklineMixedDataItem( + { + label: `H`, + value: 30 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/sparkline/markers/src/SparklineProfitData.ts b/samples/charts/sparkline/markers/src/SparklineProfitData.ts index 57ececf0d..368afc9dc 100644 --- a/samples/charts/sparkline/markers/src/SparklineProfitData.ts +++ b/samples/charts/sparkline/markers/src/SparklineProfitData.ts @@ -8,47 +8,53 @@ export class SparklineProfitDataItem { } export class SparklineProfitData extends Array { - public constructor() { - super(); - this.push(new SparklineProfitDataItem( - { - value: 30, - label: `A` - })); - this.push(new SparklineProfitDataItem( - { - value: 40, - label: `B` - })); - this.push(new SparklineProfitDataItem( - { - value: 50, - label: `C` - })); - this.push(new SparklineProfitDataItem( - { - value: 40, - label: `D` - })); - this.push(new SparklineProfitDataItem( - { - value: 30, - label: `E` - })); - this.push(new SparklineProfitDataItem( - { - value: 20, - label: `F` - })); - this.push(new SparklineProfitDataItem( - { - value: 30, - label: `G` - })); - this.push(new SparklineProfitDataItem( - { - value: 40, - label: `H` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new SparklineProfitDataItem( + { + value: 30, + label: `A` + }), + new SparklineProfitDataItem( + { + value: 40, + label: `B` + }), + new SparklineProfitDataItem( + { + value: 50, + label: `C` + }), + new SparklineProfitDataItem( + { + value: 40, + label: `D` + }), + new SparklineProfitDataItem( + { + value: 30, + label: `E` + }), + new SparklineProfitDataItem( + { + value: 20, + label: `F` + }), + new SparklineProfitDataItem( + { + value: 30, + label: `G` + }), + new SparklineProfitDataItem( + { + value: 40, + label: `H` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/sparkline/normal-range/src/SparklineMixedData.ts b/samples/charts/sparkline/normal-range/src/SparklineMixedData.ts index bc1b67da1..b7684d62c 100644 --- a/samples/charts/sparkline/normal-range/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/normal-range/src/SparklineMixedData.ts @@ -8,47 +8,53 @@ export class SparklineMixedDataItem { } export class SparklineMixedData extends Array { - public constructor() { - super(); - this.push(new SparklineMixedDataItem( - { - label: `A`, - value: 30 - })); - this.push(new SparklineMixedDataItem( - { - label: `B`, - value: -10 - })); - this.push(new SparklineMixedDataItem( - { - label: `C`, - value: 40 - })); - this.push(new SparklineMixedDataItem( - { - label: `D`, - value: -20 - })); - this.push(new SparklineMixedDataItem( - { - label: `E`, - value: 30 - })); - this.push(new SparklineMixedDataItem( - { - label: `F`, - value: 40 - })); - this.push(new SparklineMixedDataItem( - { - label: `G`, - value: -10 - })); - this.push(new SparklineMixedDataItem( - { - label: `H`, - value: 30 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new SparklineMixedDataItem( + { + label: `A`, + value: 30 + }), + new SparklineMixedDataItem( + { + label: `B`, + value: -10 + }), + new SparklineMixedDataItem( + { + label: `C`, + value: 40 + }), + new SparklineMixedDataItem( + { + label: `D`, + value: -20 + }), + new SparklineMixedDataItem( + { + label: `E`, + value: 30 + }), + new SparklineMixedDataItem( + { + label: `F`, + value: 40 + }), + new SparklineMixedDataItem( + { + label: `G`, + value: -10 + }), + new SparklineMixedDataItem( + { + label: `H`, + value: 30 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/sparkline/trendlines/src/SparklineMixedData.ts b/samples/charts/sparkline/trendlines/src/SparklineMixedData.ts index bc1b67da1..b7684d62c 100644 --- a/samples/charts/sparkline/trendlines/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/trendlines/src/SparklineMixedData.ts @@ -8,47 +8,53 @@ export class SparklineMixedDataItem { } export class SparklineMixedData extends Array { - public constructor() { - super(); - this.push(new SparklineMixedDataItem( - { - label: `A`, - value: 30 - })); - this.push(new SparklineMixedDataItem( - { - label: `B`, - value: -10 - })); - this.push(new SparklineMixedDataItem( - { - label: `C`, - value: 40 - })); - this.push(new SparklineMixedDataItem( - { - label: `D`, - value: -20 - })); - this.push(new SparklineMixedDataItem( - { - label: `E`, - value: 30 - })); - this.push(new SparklineMixedDataItem( - { - label: `F`, - value: 40 - })); - this.push(new SparklineMixedDataItem( - { - label: `G`, - value: -10 - })); - this.push(new SparklineMixedDataItem( - { - label: `H`, - value: 30 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new SparklineMixedDataItem( + { + label: `A`, + value: 30 + }), + new SparklineMixedDataItem( + { + label: `B`, + value: -10 + }), + new SparklineMixedDataItem( + { + label: `C`, + value: 40 + }), + new SparklineMixedDataItem( + { + label: `D`, + value: -20 + }), + new SparklineMixedDataItem( + { + label: `E`, + value: 30 + }), + new SparklineMixedDataItem( + { + label: `F`, + value: 40 + }), + new SparklineMixedDataItem( + { + label: `G`, + value: -10 + }), + new SparklineMixedDataItem( + { + label: `H`, + value: 30 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/sparkline/unknown-values/src/SparklineUnknownData.ts b/samples/charts/sparkline/unknown-values/src/SparklineUnknownData.ts index c78297cba..cc0ceffa7 100644 --- a/samples/charts/sparkline/unknown-values/src/SparklineUnknownData.ts +++ b/samples/charts/sparkline/unknown-values/src/SparklineUnknownData.ts @@ -8,57 +8,63 @@ export class SparklineUnknownDataItem { } export class SparklineUnknownData extends Array { - public constructor() { - super(); - this.push(new SparklineUnknownDataItem( - { - label: 4, - value: 4 - })); - this.push(new SparklineUnknownDataItem( - { - label: 5, - value: 5 - })); - this.push(new SparklineUnknownDataItem( - { - label: 2, - value: null - })); - this.push(new SparklineUnknownDataItem( - { - label: 7, - value: 7 - })); - this.push(new SparklineUnknownDataItem( - { - label: -1, - value: -1 - })); - this.push(new SparklineUnknownDataItem( - { - label: 3, - value: 3 - })); - this.push(new SparklineUnknownDataItem( - { - label: -2, - value: -2 - })); - this.push(new SparklineUnknownDataItem( - { - label: 5, - value: null - })); - this.push(new SparklineUnknownDataItem( - { - label: 2, - value: 2 - })); - this.push(new SparklineUnknownDataItem( - { - label: 6, - value: 6 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new SparklineUnknownDataItem( + { + label: 4, + value: 4 + }), + new SparklineUnknownDataItem( + { + label: 5, + value: 5 + }), + new SparklineUnknownDataItem( + { + label: 2, + value: null + }), + new SparklineUnknownDataItem( + { + label: 7, + value: 7 + }), + new SparklineUnknownDataItem( + { + label: -1, + value: -1 + }), + new SparklineUnknownDataItem( + { + label: 3, + value: 3 + }), + new SparklineUnknownDataItem( + { + label: -2, + value: -2 + }), + new SparklineUnknownDataItem( + { + label: 5, + value: null + }), + new SparklineUnknownDataItem( + { + label: 2, + value: 2 + }), + new SparklineUnknownDataItem( + { + label: 6, + value: 6 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/CountryRenewableElectricity.ts b/samples/charts/toolbar/actions-built-in-category-chart/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/CountryRenewableElectricity.ts +++ b/samples/charts/toolbar/actions-built-in-category-chart/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/src/CountryRenewableElectricity.ts b/samples/charts/toolbar/actions-built-in-data-chart/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/CountryRenewableElectricity.ts +++ b/samples/charts/toolbar/actions-built-in-data-chart/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/toolbar/custom-tool/src/app.component.ts b/samples/charts/toolbar/custom-tool/src/app.component.ts index 8490ad7a4..aa299d584 100644 --- a/samples/charts/toolbar/custom-tool/src/app.component.ts +++ b/samples/charts/toolbar/custom-tool/src/app.component.ts @@ -16,11 +16,11 @@ export class AppComponent implements AfterViewInit public constructor(private _detector: ChangeDetectorRef) { - this.toolbarCustomIconOnViewInit(); } public ngAfterViewInit(): void { + this.toolbarCustomIconOnViewInit(); } public toolbarCustomIconOnViewInit(): void { diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/CountryRenewableElectricity.ts b/samples/charts/toolbar/layout-actions-for-data-chart/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/CountryRenewableElectricity.ts +++ b/samples/charts/toolbar/layout-actions-for-data-chart/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/src/CountryRenewableElectricity.ts b/samples/charts/toolbar/layout-in-vertical-orientation/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/src/CountryRenewableElectricity.ts +++ b/samples/charts/toolbar/layout-in-vertical-orientation/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/toolbar/theming/src/CountryRenewableElectricity.ts b/samples/charts/toolbar/theming/src/CountryRenewableElectricity.ts index 4849f0cff..a1c22c39e 100644 --- a/samples/charts/toolbar/theming/src/CountryRenewableElectricity.ts +++ b/samples/charts/toolbar/theming/src/CountryRenewableElectricity.ts @@ -10,91 +10,97 @@ export class CountryRenewableElectricityItem { } export class CountryRenewableElectricity extends Array { - public constructor() { - super(); - this.push(new CountryRenewableElectricityItem( - { - year: `2009`, - europe: 34, - china: 21, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2010`, - europe: 43, - china: 26, - america: 24 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2011`, - europe: 66, - china: 29, - america: 28 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2012`, - europe: 69, - china: 32, - america: 26 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2013`, - europe: 58, - china: 47, - america: 38 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2014`, - europe: 40, - china: 46, - america: 31 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2015`, - europe: 78, - china: 50, - america: 19 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2016`, - europe: 13, - china: 90, - america: 52 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2017`, - europe: 78, - china: 132, - america: 50 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2018`, - europe: 40, - china: 134, - america: 34 - })); - this.push(new CountryRenewableElectricityItem( - { - year: `2019`, - europe: 80, - china: 96, - america: 38 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/tree-map/layout/src/CountyHierarchicalData.ts b/samples/charts/tree-map/layout/src/CountyHierarchicalData.ts index 748f0ad65..06eb97ccd 100644 --- a/samples/charts/tree-map/layout/src/CountyHierarchicalData.ts +++ b/samples/charts/tree-map/layout/src/CountyHierarchicalData.ts @@ -10,1561 +10,1567 @@ export class CountyHierarchicalDataItem { } export class CountyHierarchicalData extends Array { - public constructor() { - super(); - this.push(new CountyHierarchicalDataItem( - { - code: `AFC`, - parent: null, - name: `Africa`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ASA`, - parent: null, - name: `Asia`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `EUR`, - parent: null, - name: `Europe`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MDE`, - parent: null, - name: `Middle East`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NAM`, - parent: null, - name: `North America`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CAM`, - parent: null, - name: `Central America`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SAM`, - parent: null, - name: `South America`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `OCE`, - parent: null, - name: `Oceania`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ANG`, - parent: `Africa`, - name: `Angola`, - population: 19618432 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BEN`, - parent: `Africa`, - name: `Benin`, - population: 9099922 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BOT`, - parent: `Africa`, - name: `Botswana`, - population: 2030738 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BUR`, - parent: `Africa`, - name: `Burkina Faso`, - population: 16967845 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BUR`, - parent: `Africa`, - name: `Burundi`, - population: 8575172 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CAM`, - parent: `Africa`, - name: `Cameroon`, - population: 20030362 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CPV`, - parent: `Africa`, - name: `Cape Verde`, - population: 500585 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CAR`, - parent: `Africa`, - name: `Central African Republic`, - population: 4486837 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CHD`, - parent: `Africa`, - name: `Chad`, - population: 11525496 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `COM`, - parent: `Africa`, - name: `Comoros`, - population: 753943 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DRC`, - parent: `Africa`, - name: `Congo DRC`, - population: 67757577 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CRP`, - parent: `Africa`, - name: `Congo Republic`, - population: 4139748 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CIR`, - parent: `Africa`, - name: `Cote Ivoire`, - population: 20152894 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DBT`, - parent: `Africa`, - name: `Djibouti`, - population: 905564 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ETG`, - parent: `Africa`, - name: `Equatorial Guinea`, - population: 720213 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ERT`, - parent: `Africa`, - name: `Eritrea`, - population: 5415280 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ETH`, - parent: `Africa`, - name: `Ethiopia`, - population: 84734262 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GBN`, - parent: `Africa`, - name: `Gabon`, - population: 1534262 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GMB`, - parent: `Africa`, - name: `Gambia`, - population: 1776103 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GHN`, - parent: `Africa`, - name: `Ghana`, - population: 24965816 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GUN`, - parent: `Africa`, - name: `Guinea`, - population: 10221808 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GNB`, - parent: `Africa`, - name: `Guinea-Bissau`, - population: 1547061 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KEN`, - parent: `Africa`, - name: `Kenya`, - population: 41609728 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LES`, - parent: `Africa`, - name: `Lesotho`, - population: 2193843 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LBR`, - parent: `Africa`, - name: `Liberia`, - population: 4128572 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MDG`, - parent: `Africa`, - name: `Madagascar`, - population: 21315135 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MLW`, - parent: `Africa`, - name: `Malawi`, - population: 15380888 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MAL`, - parent: `Africa`, - name: `Mali`, - population: 15839538 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MRT`, - parent: `Africa`, - name: `Mauritania`, - population: 3541540 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MUS`, - parent: `Africa`, - name: `Mauritius`, - population: 1286051 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MOZ`, - parent: `Africa`, - name: `Mozambique`, - population: 23929708 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NMB`, - parent: `Africa`, - name: `Namibia`, - population: 2324004 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NER`, - parent: `Africa`, - name: `Niger`, - population: 16068994 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NGA`, - parent: `Africa`, - name: `Nigeria`, - population: 162470737 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `RWD`, - parent: `Africa`, - name: `Rwanda`, - population: 10942950 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STM`, - parent: `Africa`, - name: `Sao Tome`, - population: 168526 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SEN`, - parent: `Africa`, - name: `Senegal`, - population: 12767556 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SYC`, - parent: `Africa`, - name: `Seychelles`, - population: 86000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SRL`, - parent: `Africa`, - name: `Sierra Leone`, - population: 5997486 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ZAF`, - parent: `Africa`, - name: `South Africa`, - population: 50586757 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SSD`, - parent: `Africa`, - name: `South Sudan`, - population: 10314021 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SDN`, - parent: `Africa`, - name: `Sudan`, - population: 34318385 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SWZ`, - parent: `Africa`, - name: `Swaziland`, - population: 1067773 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TNZ`, - parent: `Africa`, - name: `Tanzania`, - population: 46218486 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TOG`, - parent: `Africa`, - name: `Togo`, - population: 6154813 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `UGN`, - parent: `Africa`, - name: `Uganda`, - population: 34509205 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ZMB`, - parent: `Africa`, - name: `Zambia`, - population: 13474959 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ZWE`, - parent: `Africa`, - name: `Zimbabwe`, - population: 12754378 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AFG`, - parent: `Asia`, - name: `Afghanistan`, - population: 35320445 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BAN`, - parent: `Asia`, - name: `Bangladesh`, - population: 150493658 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BHT`, - parent: `Asia`, - name: `Bhutan`, - population: 738267 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BRN`, - parent: `Asia`, - name: `Brunei`, - population: 405938 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CAM`, - parent: `Asia`, - name: `Cambodia`, - population: 14305183 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CHI`, - parent: `Asia`, - name: `China`, - population: 1344130000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `HNK`, - parent: `Asia`, - name: `Hong Kong`, - population: 7071600 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IND`, - parent: `Asia`, - name: `India`, - population: 1241491960 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IDN`, - parent: `Asia`, - name: `Indonesia`, - population: 242325638 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `JPN`, - parent: `Asia`, - name: `Japan`, - population: 127817277 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KZH`, - parent: `Asia`, - name: `Kazakhstan`, - population: 16558676 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NKO`, - parent: `Asia`, - name: `North Korea`, - population: 24451285 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SKO`, - parent: `Asia`, - name: `South Korea`, - population: 49779000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KGZ`, - parent: `Asia`, - name: `Kyrgyzstan`, - population: 5514600 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LAO`, - parent: `Asia`, - name: `Lao PDR`, - population: 6288037 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MAC`, - parent: `Asia`, - name: `Macao`, - population: 555731 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MYS`, - parent: `Asia`, - name: `Malaysia`, - population: 28859154 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MDV`, - parent: `Asia`, - name: `Maldives`, - population: 320081 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MNG`, - parent: `Asia`, - name: `Mongolia`, - population: 2800114 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MYM`, - parent: `Asia`, - name: `Myanmar`, - population: 48336763 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NPL`, - parent: `Asia`, - name: `Nepal`, - population: 30485798 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PHP`, - parent: `Asia`, - name: `Philippines`, - population: 94852030 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SNG`, - parent: `Asia`, - name: `Singapore`, - population: 5183700 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SRL`, - parent: `Asia`, - name: `Sri Lanka`, - population: 20869000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TKS`, - parent: `Asia`, - name: `Tajikistan`, - population: 6976958 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `THL`, - parent: `Asia`, - name: `Thailand`, - population: 69518555 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TRK`, - parent: `Asia`, - name: `Turkmenistan`, - population: 5105301 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `UZB`, - parent: `Asia`, - name: `Uzbekistan`, - population: 29341200 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `VTN`, - parent: `Asia`, - name: `Vietnam`, - population: 87840000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ANT`, - parent: `Central America`, - name: `Antigua`, - population: 89612 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ARB`, - parent: `Central America`, - name: `Aruba`, - population: 108141 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BHM`, - parent: `Central America`, - name: `Bahamas`, - population: 347176 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BRB`, - parent: `Central America`, - name: `Barbados`, - population: 273925 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BLZ`, - parent: `Central America`, - name: `Belize`, - population: 356600 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BRM`, - parent: `Central America`, - name: `Bermuda`, - population: 64700 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CYI`, - parent: `Central America`, - name: `Cayman Islands`, - population: 56729 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CSR`, - parent: `Central America`, - name: `Costa Rica`, - population: 4726575 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CUB`, - parent: `Central America`, - name: `Cuba`, - population: 11253665 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CUR`, - parent: `Central America`, - name: `Curacao`, - population: 145619 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DMA`, - parent: `Central America`, - name: `Dominica`, - population: 67675 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DOM`, - parent: `Central America`, - name: `Dominican Republic`, - population: 10056181 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SLV`, - parent: `Central America`, - name: `El Salvador`, - population: 6227491 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `FIS`, - parent: `Central America`, - name: `Faeroe Islands`, - population: 48863 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GND`, - parent: `Central America`, - name: `Grenada`, - population: 104890 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GUA`, - parent: `Central America`, - name: `Guam`, - population: 182111 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GTM`, - parent: `Central America`, - name: `Guatemala`, - population: 14757316 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `HAT`, - parent: `Central America`, - name: `Haiti`, - population: 10123787 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `HON`, - parent: `Central America`, - name: `Honduras`, - population: 7754687 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `JAM`, - parent: `Central America`, - name: `Jamaica`, - population: 2706500 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NCR`, - parent: `Central America`, - name: `Nicaragua`, - population: 5869859 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NMI`, - parent: `Central America`, - name: `Northern Mariana Islands`, - population: 61174 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PAN`, - parent: `Central America`, - name: `Panama`, - population: 3571185 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PRT`, - parent: `Central America`, - name: `Puerto Rico`, - population: 3706690 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STK`, - parent: `Central America`, - name: `St. Kitts`, - population: 53051 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STL`, - parent: `Central America`, - name: `St. Lucia`, - population: 176000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STV`, - parent: `Central America`, - name: `St. Vincent`, - population: 109365 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TAB`, - parent: `Central America`, - name: `Trinidad and Tobago`, - population: 1346350 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `RCI`, - parent: `Central America`, - name: `Turks and Caicos Islands`, - population: 39184 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ISV`, - parent: `Central America`, - name: `US Virgin Islands`, - population: 109666 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ALB`, - parent: `Europe`, - name: `Albania`, - population: 3215988 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AND`, - parent: `Europe`, - name: `Andorra`, - population: 86165 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ARM`, - parent: `Europe`, - name: `Armenia`, - population: 3100236 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AUT`, - parent: `Europe`, - name: `Austria`, - population: 8423635 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BER`, - parent: `Europe`, - name: `Belarus`, - population: 9473000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BEL`, - parent: `Europe`, - name: `Belgium`, - population: 11020952 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BIH`, - parent: `Europe`, - name: `Bosnia`, - population: 3752228 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BUL`, - parent: `Europe`, - name: `Bulgaria`, - population: 7348328 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CHI`, - parent: `Europe`, - name: `Channel Islands`, - population: 153876 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CRO`, - parent: `Europe`, - name: `Croatia`, - population: 4403000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CYP`, - parent: `Europe`, - name: `Cyprus`, - population: 1116564 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CZE`, - parent: `Europe`, - name: `Czechia`, - population: 10496088 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DEN`, - parent: `Europe`, - name: `Denmark`, - population: 5570572 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `EST`, - parent: `Europe`, - name: `Estonia`, - population: 1339928 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `FIN`, - parent: `Europe`, - name: `Finland`, - population: 5388272 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `FRA`, - parent: `Europe`, - name: `France`, - population: 65433714 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GEO`, - parent: `Europe`, - name: `Georgia`, - population: 4486000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DEU`, - parent: `Europe`, - name: `Germany`, - population: 81797673 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GRC`, - parent: `Europe`, - name: `Greece`, - population: 11300410 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `HUN`, - parent: `Europe`, - name: `Hungary`, - population: 9971727 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ICE`, - parent: `Europe`, - name: `Iceland`, - population: 319014 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IRE`, - parent: `Europe`, - name: `Ireland`, - population: 4576317 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IOM`, - parent: `Europe`, - name: `Isle of Man`, - population: 83327 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ITA`, - parent: `Europe`, - name: `Italy`, - population: 60723603 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KOS`, - parent: `Europe`, - name: `Kosovo`, - population: 1802765 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LAT`, - parent: `Europe`, - name: `Latvia`, - population: 2058184 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LVA`, - parent: `Europe`, - name: `Liechtenstein`, - population: 36304 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LTU`, - parent: `Europe`, - name: `Lithuania`, - population: 3030173 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LUX`, - parent: `Europe`, - name: `Luxembourg`, - population: 518252 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MKD`, - parent: `Europe`, - name: `North Macedonia`, - population: 2063893 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MLT`, - parent: `Europe`, - name: `Malta`, - population: 415654 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MDA`, - parent: `Europe`, - name: `Moldova`, - population: 3559000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MON`, - parent: `Europe`, - name: `Monaco`, - population: 35427 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MNE`, - parent: `Europe`, - name: `Montenegro`, - population: 632261 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MLD`, - parent: `Europe`, - name: `Netherlands`, - population: 16693074 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NOR`, - parent: `Europe`, - name: `Norway`, - population: 4953088 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `POL`, - parent: `Europe`, - name: `Poland`, - population: 38534157 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `POR`, - parent: `Europe`, - name: `Portugal`, - population: 10556999 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ROM`, - parent: `Europe`, - name: `Romania`, - population: 21384832 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `RUS`, - parent: `Europe`, - name: `Russia`, - population: 142960000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SMR`, - parent: `Europe`, - name: `San Marino`, - population: 31735 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SBR`, - parent: `Europe`, - name: `Serbia`, - population: 7258745 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STM`, - parent: `Europe`, - name: `Sint Maarten`, - population: 36609 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SVK`, - parent: `Europe`, - name: `Slovakia`, - population: 5398384 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SLO`, - parent: `Europe`, - name: `Slovenia`, - population: 2052843 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ESP`, - parent: `Europe`, - name: `Spain`, - population: 46174601 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STM`, - parent: `Europe`, - name: `St. Martin`, - population: 30615 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SWE`, - parent: `Europe`, - name: `Sweden`, - population: 9449213 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CHE`, - parent: `Europe`, - name: `Switzerland`, - population: 7912398 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `UKR`, - parent: `Europe`, - name: `Ukraine`, - population: 45706100 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GBR`, - parent: `Europe`, - name: `United Kingdom`, - population: 62744081 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DZA`, - parent: `Middle East`, - name: `Algeria`, - population: 35980193 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AZE`, - parent: `Middle East`, - name: `Azerbaijan`, - population: 9173082 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BHR`, - parent: `Middle East`, - name: `Bahrain`, - population: 1323535 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `EGY`, - parent: `Middle East`, - name: `Egypt`, - population: 82536770 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IRN`, - parent: `Middle East`, - name: `Iran`, - population: 74798599 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IRQ`, - parent: `Middle East`, - name: `Iraq`, - population: 32961959 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ISR`, - parent: `Middle East`, - name: `Israel`, - population: 7765900 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `JOR`, - parent: `Middle East`, - name: `Jordan`, - population: 6181000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KWT`, - parent: `Middle East`, - name: `Kuwait`, - population: 2818042 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LBN`, - parent: `Middle East`, - name: `Lebanon`, - population: 4259405 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LBY`, - parent: `Middle East`, - name: `Libya`, - population: 6422772 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MAR`, - parent: `Middle East`, - name: `Morocco`, - population: 32272974 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `OMN`, - parent: `Middle East`, - name: `Oman`, - population: 2846145 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PKS`, - parent: `Middle East`, - name: `Pakistan`, - population: 176745364 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `QTR`, - parent: `Middle East`, - name: `Qatar`, - population: 1870041 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SAR`, - parent: `Middle East`, - name: `Saudi Arabia`, - population: 28082541 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SOM`, - parent: `Middle East`, - name: `Somalia`, - population: 9556873 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SYR`, - parent: `Middle East`, - name: `Syria`, - population: 20820311 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TUN`, - parent: `Middle East`, - name: `Tunisia`, - population: 10673800 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TUR`, - parent: `Middle East`, - name: `Turkey`, - population: 73639596 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `UAE`, - parent: `Middle East`, - name: `United Arab Emirates`, - population: 7890924 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `WTB`, - parent: `Middle East`, - name: `West Bank`, - population: 3927051 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `YEM`, - parent: `Middle East`, - name: `Yemen`, - population: 24799880 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CAN`, - parent: `North America`, - name: `Canada`, - population: 34483975 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GRL`, - parent: `North America`, - name: `Greenland`, - population: 56840 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MEX`, - parent: `North America`, - name: `Mexico`, - population: 114793341 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `USA`, - parent: `North America`, - name: `United States`, - population: 311591917 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AMS`, - parent: `Oceania`, - name: `American Samoa`, - population: 69543 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AUS`, - parent: `Oceania`, - name: `Australia`, - population: 22323900 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `FIJ`, - parent: `Oceania`, - name: `Fiji`, - population: 868406 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `FRP`, - parent: `Oceania`, - name: `French Polynesia`, - population: 273777 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KIR`, - parent: `Oceania`, - name: `Kiribati`, - population: 101093 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MIS`, - parent: `Oceania`, - name: `Marshall Islands`, - population: 54816 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MCR`, - parent: `Oceania`, - name: `Micronesia`, - population: 111542 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NCD`, - parent: `Oceania`, - name: `New Caledonia`, - population: 254024 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NZL`, - parent: `Oceania`, - name: `New Zealand`, - population: 4405200 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PAL`, - parent: `Oceania`, - name: `Palau`, - population: 20609 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PNG`, - parent: `Oceania`, - name: `Papua New Guinea`, - population: 7013829 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SAM`, - parent: `Oceania`, - name: `Samoa`, - population: 183874 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SIS`, - parent: `Oceania`, - name: `Solomon Islands`, - population: 552267 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TML`, - parent: `Oceania`, - name: `Timor-Leste`, - population: 1175880 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TON`, - parent: `Oceania`, - name: `Tonga`, - population: 104509 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TUV`, - parent: `Oceania`, - name: `Tuvalu`, - population: 9847 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `VNT`, - parent: `Oceania`, - name: `Vanuatu`, - population: 245619 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ARG`, - parent: `South America`, - name: `Argentina`, - population: 40764561 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BOL`, - parent: `South America`, - name: `Bolivia`, - population: 10088108 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BRA`, - parent: `South America`, - name: `Brazil`, - population: 196655014 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CHI`, - parent: `South America`, - name: `Chile`, - population: 17269525 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `COL`, - parent: `South America`, - name: `Colombia`, - population: 46927125 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ECU`, - parent: `South America`, - name: `Ecuador`, - population: 14666055 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GUY`, - parent: `South America`, - name: `Guyana`, - population: 756040 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PAR`, - parent: `South America`, - name: `Paraguay`, - population: 6568290 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PER`, - parent: `South America`, - name: `Peru`, - population: 29399817 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SUR`, - parent: `South America`, - name: `Suriname`, - population: 529419 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `URG`, - parent: `South America`, - name: `Uruguay`, - population: 3368595 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `VEN`, - parent: `South America`, - name: `Venezuela`, - population: 29278000 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountyHierarchicalDataItem( + { + code: `AFC`, + parent: null, + name: `Africa`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `ASA`, + parent: null, + name: `Asia`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `EUR`, + parent: null, + name: `Europe`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `MDE`, + parent: null, + name: `Middle East`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `NAM`, + parent: null, + name: `North America`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `CAM`, + parent: null, + name: `Central America`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `SAM`, + parent: null, + name: `South America`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `OCE`, + parent: null, + name: `Oceania`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `ANG`, + parent: `Africa`, + name: `Angola`, + population: 19618432 + }), + new CountyHierarchicalDataItem( + { + code: `BEN`, + parent: `Africa`, + name: `Benin`, + population: 9099922 + }), + new CountyHierarchicalDataItem( + { + code: `BOT`, + parent: `Africa`, + name: `Botswana`, + population: 2030738 + }), + new CountyHierarchicalDataItem( + { + code: `BUR`, + parent: `Africa`, + name: `Burkina Faso`, + population: 16967845 + }), + new CountyHierarchicalDataItem( + { + code: `BUR`, + parent: `Africa`, + name: `Burundi`, + population: 8575172 + }), + new CountyHierarchicalDataItem( + { + code: `CAM`, + parent: `Africa`, + name: `Cameroon`, + population: 20030362 + }), + new CountyHierarchicalDataItem( + { + code: `CPV`, + parent: `Africa`, + name: `Cape Verde`, + population: 500585 + }), + new CountyHierarchicalDataItem( + { + code: `CAR`, + parent: `Africa`, + name: `Central African Republic`, + population: 4486837 + }), + new CountyHierarchicalDataItem( + { + code: `CHD`, + parent: `Africa`, + name: `Chad`, + population: 11525496 + }), + new CountyHierarchicalDataItem( + { + code: `COM`, + parent: `Africa`, + name: `Comoros`, + population: 753943 + }), + new CountyHierarchicalDataItem( + { + code: `DRC`, + parent: `Africa`, + name: `Congo DRC`, + population: 67757577 + }), + new CountyHierarchicalDataItem( + { + code: `CRP`, + parent: `Africa`, + name: `Congo Republic`, + population: 4139748 + }), + new CountyHierarchicalDataItem( + { + code: `CIR`, + parent: `Africa`, + name: `Cote Ivoire`, + population: 20152894 + }), + new CountyHierarchicalDataItem( + { + code: `DBT`, + parent: `Africa`, + name: `Djibouti`, + population: 905564 + }), + new CountyHierarchicalDataItem( + { + code: `ETG`, + parent: `Africa`, + name: `Equatorial Guinea`, + population: 720213 + }), + new CountyHierarchicalDataItem( + { + code: `ERT`, + parent: `Africa`, + name: `Eritrea`, + population: 5415280 + }), + new CountyHierarchicalDataItem( + { + code: `ETH`, + parent: `Africa`, + name: `Ethiopia`, + population: 84734262 + }), + new CountyHierarchicalDataItem( + { + code: `GBN`, + parent: `Africa`, + name: `Gabon`, + population: 1534262 + }), + new CountyHierarchicalDataItem( + { + code: `GMB`, + parent: `Africa`, + name: `Gambia`, + population: 1776103 + }), + new CountyHierarchicalDataItem( + { + code: `GHN`, + parent: `Africa`, + name: `Ghana`, + population: 24965816 + }), + new CountyHierarchicalDataItem( + { + code: `GUN`, + parent: `Africa`, + name: `Guinea`, + population: 10221808 + }), + new CountyHierarchicalDataItem( + { + code: `GNB`, + parent: `Africa`, + name: `Guinea-Bissau`, + population: 1547061 + }), + new CountyHierarchicalDataItem( + { + code: `KEN`, + parent: `Africa`, + name: `Kenya`, + population: 41609728 + }), + new CountyHierarchicalDataItem( + { + code: `LES`, + parent: `Africa`, + name: `Lesotho`, + population: 2193843 + }), + new CountyHierarchicalDataItem( + { + code: `LBR`, + parent: `Africa`, + name: `Liberia`, + population: 4128572 + }), + new CountyHierarchicalDataItem( + { + code: `MDG`, + parent: `Africa`, + name: `Madagascar`, + population: 21315135 + }), + new CountyHierarchicalDataItem( + { + code: `MLW`, + parent: `Africa`, + name: `Malawi`, + population: 15380888 + }), + new CountyHierarchicalDataItem( + { + code: `MAL`, + parent: `Africa`, + name: `Mali`, + population: 15839538 + }), + new CountyHierarchicalDataItem( + { + code: `MRT`, + parent: `Africa`, + name: `Mauritania`, + population: 3541540 + }), + new CountyHierarchicalDataItem( + { + code: `MUS`, + parent: `Africa`, + name: `Mauritius`, + population: 1286051 + }), + new CountyHierarchicalDataItem( + { + code: `MOZ`, + parent: `Africa`, + name: `Mozambique`, + population: 23929708 + }), + new CountyHierarchicalDataItem( + { + code: `NMB`, + parent: `Africa`, + name: `Namibia`, + population: 2324004 + }), + new CountyHierarchicalDataItem( + { + code: `NER`, + parent: `Africa`, + name: `Niger`, + population: 16068994 + }), + new CountyHierarchicalDataItem( + { + code: `NGA`, + parent: `Africa`, + name: `Nigeria`, + population: 162470737 + }), + new CountyHierarchicalDataItem( + { + code: `RWD`, + parent: `Africa`, + name: `Rwanda`, + population: 10942950 + }), + new CountyHierarchicalDataItem( + { + code: `STM`, + parent: `Africa`, + name: `Sao Tome`, + population: 168526 + }), + new CountyHierarchicalDataItem( + { + code: `SEN`, + parent: `Africa`, + name: `Senegal`, + population: 12767556 + }), + new CountyHierarchicalDataItem( + { + code: `SYC`, + parent: `Africa`, + name: `Seychelles`, + population: 86000 + }), + new CountyHierarchicalDataItem( + { + code: `SRL`, + parent: `Africa`, + name: `Sierra Leone`, + population: 5997486 + }), + new CountyHierarchicalDataItem( + { + code: `ZAF`, + parent: `Africa`, + name: `South Africa`, + population: 50586757 + }), + new CountyHierarchicalDataItem( + { + code: `SSD`, + parent: `Africa`, + name: `South Sudan`, + population: 10314021 + }), + new CountyHierarchicalDataItem( + { + code: `SDN`, + parent: `Africa`, + name: `Sudan`, + population: 34318385 + }), + new CountyHierarchicalDataItem( + { + code: `SWZ`, + parent: `Africa`, + name: `Swaziland`, + population: 1067773 + }), + new CountyHierarchicalDataItem( + { + code: `TNZ`, + parent: `Africa`, + name: `Tanzania`, + population: 46218486 + }), + new CountyHierarchicalDataItem( + { + code: `TOG`, + parent: `Africa`, + name: `Togo`, + population: 6154813 + }), + new CountyHierarchicalDataItem( + { + code: `UGN`, + parent: `Africa`, + name: `Uganda`, + population: 34509205 + }), + new CountyHierarchicalDataItem( + { + code: `ZMB`, + parent: `Africa`, + name: `Zambia`, + population: 13474959 + }), + new CountyHierarchicalDataItem( + { + code: `ZWE`, + parent: `Africa`, + name: `Zimbabwe`, + population: 12754378 + }), + new CountyHierarchicalDataItem( + { + code: `AFG`, + parent: `Asia`, + name: `Afghanistan`, + population: 35320445 + }), + new CountyHierarchicalDataItem( + { + code: `BAN`, + parent: `Asia`, + name: `Bangladesh`, + population: 150493658 + }), + new CountyHierarchicalDataItem( + { + code: `BHT`, + parent: `Asia`, + name: `Bhutan`, + population: 738267 + }), + new CountyHierarchicalDataItem( + { + code: `BRN`, + parent: `Asia`, + name: `Brunei`, + population: 405938 + }), + new CountyHierarchicalDataItem( + { + code: `CAM`, + parent: `Asia`, + name: `Cambodia`, + population: 14305183 + }), + new CountyHierarchicalDataItem( + { + code: `CHI`, + parent: `Asia`, + name: `China`, + population: 1344130000 + }), + new CountyHierarchicalDataItem( + { + code: `HNK`, + parent: `Asia`, + name: `Hong Kong`, + population: 7071600 + }), + new CountyHierarchicalDataItem( + { + code: `IND`, + parent: `Asia`, + name: `India`, + population: 1241491960 + }), + new CountyHierarchicalDataItem( + { + code: `IDN`, + parent: `Asia`, + name: `Indonesia`, + population: 242325638 + }), + new CountyHierarchicalDataItem( + { + code: `JPN`, + parent: `Asia`, + name: `Japan`, + population: 127817277 + }), + new CountyHierarchicalDataItem( + { + code: `KZH`, + parent: `Asia`, + name: `Kazakhstan`, + population: 16558676 + }), + new CountyHierarchicalDataItem( + { + code: `NKO`, + parent: `Asia`, + name: `North Korea`, + population: 24451285 + }), + new CountyHierarchicalDataItem( + { + code: `SKO`, + parent: `Asia`, + name: `South Korea`, + population: 49779000 + }), + new CountyHierarchicalDataItem( + { + code: `KGZ`, + parent: `Asia`, + name: `Kyrgyzstan`, + population: 5514600 + }), + new CountyHierarchicalDataItem( + { + code: `LAO`, + parent: `Asia`, + name: `Lao PDR`, + population: 6288037 + }), + new CountyHierarchicalDataItem( + { + code: `MAC`, + parent: `Asia`, + name: `Macao`, + population: 555731 + }), + new CountyHierarchicalDataItem( + { + code: `MYS`, + parent: `Asia`, + name: `Malaysia`, + population: 28859154 + }), + new CountyHierarchicalDataItem( + { + code: `MDV`, + parent: `Asia`, + name: `Maldives`, + population: 320081 + }), + new CountyHierarchicalDataItem( + { + code: `MNG`, + parent: `Asia`, + name: `Mongolia`, + population: 2800114 + }), + new CountyHierarchicalDataItem( + { + code: `MYM`, + parent: `Asia`, + name: `Myanmar`, + population: 48336763 + }), + new CountyHierarchicalDataItem( + { + code: `NPL`, + parent: `Asia`, + name: `Nepal`, + population: 30485798 + }), + new CountyHierarchicalDataItem( + { + code: `PHP`, + parent: `Asia`, + name: `Philippines`, + population: 94852030 + }), + new CountyHierarchicalDataItem( + { + code: `SNG`, + parent: `Asia`, + name: `Singapore`, + population: 5183700 + }), + new CountyHierarchicalDataItem( + { + code: `SRL`, + parent: `Asia`, + name: `Sri Lanka`, + population: 20869000 + }), + new CountyHierarchicalDataItem( + { + code: `TKS`, + parent: `Asia`, + name: `Tajikistan`, + population: 6976958 + }), + new CountyHierarchicalDataItem( + { + code: `THL`, + parent: `Asia`, + name: `Thailand`, + population: 69518555 + }), + new CountyHierarchicalDataItem( + { + code: `TRK`, + parent: `Asia`, + name: `Turkmenistan`, + population: 5105301 + }), + new CountyHierarchicalDataItem( + { + code: `UZB`, + parent: `Asia`, + name: `Uzbekistan`, + population: 29341200 + }), + new CountyHierarchicalDataItem( + { + code: `VTN`, + parent: `Asia`, + name: `Vietnam`, + population: 87840000 + }), + new CountyHierarchicalDataItem( + { + code: `ANT`, + parent: `Central America`, + name: `Antigua`, + population: 89612 + }), + new CountyHierarchicalDataItem( + { + code: `ARB`, + parent: `Central America`, + name: `Aruba`, + population: 108141 + }), + new CountyHierarchicalDataItem( + { + code: `BHM`, + parent: `Central America`, + name: `Bahamas`, + population: 347176 + }), + new CountyHierarchicalDataItem( + { + code: `BRB`, + parent: `Central America`, + name: `Barbados`, + population: 273925 + }), + new CountyHierarchicalDataItem( + { + code: `BLZ`, + parent: `Central America`, + name: `Belize`, + population: 356600 + }), + new CountyHierarchicalDataItem( + { + code: `BRM`, + parent: `Central America`, + name: `Bermuda`, + population: 64700 + }), + new CountyHierarchicalDataItem( + { + code: `CYI`, + parent: `Central America`, + name: `Cayman Islands`, + population: 56729 + }), + new CountyHierarchicalDataItem( + { + code: `CSR`, + parent: `Central America`, + name: `Costa Rica`, + population: 4726575 + }), + new CountyHierarchicalDataItem( + { + code: `CUB`, + parent: `Central America`, + name: `Cuba`, + population: 11253665 + }), + new CountyHierarchicalDataItem( + { + code: `CUR`, + parent: `Central America`, + name: `Curacao`, + population: 145619 + }), + new CountyHierarchicalDataItem( + { + code: `DMA`, + parent: `Central America`, + name: `Dominica`, + population: 67675 + }), + new CountyHierarchicalDataItem( + { + code: `DOM`, + parent: `Central America`, + name: `Dominican Republic`, + population: 10056181 + }), + new CountyHierarchicalDataItem( + { + code: `SLV`, + parent: `Central America`, + name: `El Salvador`, + population: 6227491 + }), + new CountyHierarchicalDataItem( + { + code: `FIS`, + parent: `Central America`, + name: `Faeroe Islands`, + population: 48863 + }), + new CountyHierarchicalDataItem( + { + code: `GND`, + parent: `Central America`, + name: `Grenada`, + population: 104890 + }), + new CountyHierarchicalDataItem( + { + code: `GUA`, + parent: `Central America`, + name: `Guam`, + population: 182111 + }), + new CountyHierarchicalDataItem( + { + code: `GTM`, + parent: `Central America`, + name: `Guatemala`, + population: 14757316 + }), + new CountyHierarchicalDataItem( + { + code: `HAT`, + parent: `Central America`, + name: `Haiti`, + population: 10123787 + }), + new CountyHierarchicalDataItem( + { + code: `HON`, + parent: `Central America`, + name: `Honduras`, + population: 7754687 + }), + new CountyHierarchicalDataItem( + { + code: `JAM`, + parent: `Central America`, + name: `Jamaica`, + population: 2706500 + }), + new CountyHierarchicalDataItem( + { + code: `NCR`, + parent: `Central America`, + name: `Nicaragua`, + population: 5869859 + }), + new CountyHierarchicalDataItem( + { + code: `NMI`, + parent: `Central America`, + name: `Northern Mariana Islands`, + population: 61174 + }), + new CountyHierarchicalDataItem( + { + code: `PAN`, + parent: `Central America`, + name: `Panama`, + population: 3571185 + }), + new CountyHierarchicalDataItem( + { + code: `PRT`, + parent: `Central America`, + name: `Puerto Rico`, + population: 3706690 + }), + new CountyHierarchicalDataItem( + { + code: `STK`, + parent: `Central America`, + name: `St. Kitts`, + population: 53051 + }), + new CountyHierarchicalDataItem( + { + code: `STL`, + parent: `Central America`, + name: `St. Lucia`, + population: 176000 + }), + new CountyHierarchicalDataItem( + { + code: `STV`, + parent: `Central America`, + name: `St. Vincent`, + population: 109365 + }), + new CountyHierarchicalDataItem( + { + code: `TAB`, + parent: `Central America`, + name: `Trinidad and Tobago`, + population: 1346350 + }), + new CountyHierarchicalDataItem( + { + code: `RCI`, + parent: `Central America`, + name: `Turks and Caicos Islands`, + population: 39184 + }), + new CountyHierarchicalDataItem( + { + code: `ISV`, + parent: `Central America`, + name: `US Virgin Islands`, + population: 109666 + }), + new CountyHierarchicalDataItem( + { + code: `ALB`, + parent: `Europe`, + name: `Albania`, + population: 3215988 + }), + new CountyHierarchicalDataItem( + { + code: `AND`, + parent: `Europe`, + name: `Andorra`, + population: 86165 + }), + new CountyHierarchicalDataItem( + { + code: `ARM`, + parent: `Europe`, + name: `Armenia`, + population: 3100236 + }), + new CountyHierarchicalDataItem( + { + code: `AUT`, + parent: `Europe`, + name: `Austria`, + population: 8423635 + }), + new CountyHierarchicalDataItem( + { + code: `BER`, + parent: `Europe`, + name: `Belarus`, + population: 9473000 + }), + new CountyHierarchicalDataItem( + { + code: `BEL`, + parent: `Europe`, + name: `Belgium`, + population: 11020952 + }), + new CountyHierarchicalDataItem( + { + code: `BIH`, + parent: `Europe`, + name: `Bosnia`, + population: 3752228 + }), + new CountyHierarchicalDataItem( + { + code: `BUL`, + parent: `Europe`, + name: `Bulgaria`, + population: 7348328 + }), + new CountyHierarchicalDataItem( + { + code: `CHI`, + parent: `Europe`, + name: `Channel Islands`, + population: 153876 + }), + new CountyHierarchicalDataItem( + { + code: `CRO`, + parent: `Europe`, + name: `Croatia`, + population: 4403000 + }), + new CountyHierarchicalDataItem( + { + code: `CYP`, + parent: `Europe`, + name: `Cyprus`, + population: 1116564 + }), + new CountyHierarchicalDataItem( + { + code: `CZE`, + parent: `Europe`, + name: `Czechia`, + population: 10496088 + }), + new CountyHierarchicalDataItem( + { + code: `DEN`, + parent: `Europe`, + name: `Denmark`, + population: 5570572 + }), + new CountyHierarchicalDataItem( + { + code: `EST`, + parent: `Europe`, + name: `Estonia`, + population: 1339928 + }), + new CountyHierarchicalDataItem( + { + code: `FIN`, + parent: `Europe`, + name: `Finland`, + population: 5388272 + }), + new CountyHierarchicalDataItem( + { + code: `FRA`, + parent: `Europe`, + name: `France`, + population: 65433714 + }), + new CountyHierarchicalDataItem( + { + code: `GEO`, + parent: `Europe`, + name: `Georgia`, + population: 4486000 + }), + new CountyHierarchicalDataItem( + { + code: `DEU`, + parent: `Europe`, + name: `Germany`, + population: 81797673 + }), + new CountyHierarchicalDataItem( + { + code: `GRC`, + parent: `Europe`, + name: `Greece`, + population: 11300410 + }), + new CountyHierarchicalDataItem( + { + code: `HUN`, + parent: `Europe`, + name: `Hungary`, + population: 9971727 + }), + new CountyHierarchicalDataItem( + { + code: `ICE`, + parent: `Europe`, + name: `Iceland`, + population: 319014 + }), + new CountyHierarchicalDataItem( + { + code: `IRE`, + parent: `Europe`, + name: `Ireland`, + population: 4576317 + }), + new CountyHierarchicalDataItem( + { + code: `IOM`, + parent: `Europe`, + name: `Isle of Man`, + population: 83327 + }), + new CountyHierarchicalDataItem( + { + code: `ITA`, + parent: `Europe`, + name: `Italy`, + population: 60723603 + }), + new CountyHierarchicalDataItem( + { + code: `KOS`, + parent: `Europe`, + name: `Kosovo`, + population: 1802765 + }), + new CountyHierarchicalDataItem( + { + code: `LAT`, + parent: `Europe`, + name: `Latvia`, + population: 2058184 + }), + new CountyHierarchicalDataItem( + { + code: `LVA`, + parent: `Europe`, + name: `Liechtenstein`, + population: 36304 + }), + new CountyHierarchicalDataItem( + { + code: `LTU`, + parent: `Europe`, + name: `Lithuania`, + population: 3030173 + }), + new CountyHierarchicalDataItem( + { + code: `LUX`, + parent: `Europe`, + name: `Luxembourg`, + population: 518252 + }), + new CountyHierarchicalDataItem( + { + code: `MKD`, + parent: `Europe`, + name: `North Macedonia`, + population: 2063893 + }), + new CountyHierarchicalDataItem( + { + code: `MLT`, + parent: `Europe`, + name: `Malta`, + population: 415654 + }), + new CountyHierarchicalDataItem( + { + code: `MDA`, + parent: `Europe`, + name: `Moldova`, + population: 3559000 + }), + new CountyHierarchicalDataItem( + { + code: `MON`, + parent: `Europe`, + name: `Monaco`, + population: 35427 + }), + new CountyHierarchicalDataItem( + { + code: `MNE`, + parent: `Europe`, + name: `Montenegro`, + population: 632261 + }), + new CountyHierarchicalDataItem( + { + code: `MLD`, + parent: `Europe`, + name: `Netherlands`, + population: 16693074 + }), + new CountyHierarchicalDataItem( + { + code: `NOR`, + parent: `Europe`, + name: `Norway`, + population: 4953088 + }), + new CountyHierarchicalDataItem( + { + code: `POL`, + parent: `Europe`, + name: `Poland`, + population: 38534157 + }), + new CountyHierarchicalDataItem( + { + code: `POR`, + parent: `Europe`, + name: `Portugal`, + population: 10556999 + }), + new CountyHierarchicalDataItem( + { + code: `ROM`, + parent: `Europe`, + name: `Romania`, + population: 21384832 + }), + new CountyHierarchicalDataItem( + { + code: `RUS`, + parent: `Europe`, + name: `Russia`, + population: 142960000 + }), + new CountyHierarchicalDataItem( + { + code: `SMR`, + parent: `Europe`, + name: `San Marino`, + population: 31735 + }), + new CountyHierarchicalDataItem( + { + code: `SBR`, + parent: `Europe`, + name: `Serbia`, + population: 7258745 + }), + new CountyHierarchicalDataItem( + { + code: `STM`, + parent: `Europe`, + name: `Sint Maarten`, + population: 36609 + }), + new CountyHierarchicalDataItem( + { + code: `SVK`, + parent: `Europe`, + name: `Slovakia`, + population: 5398384 + }), + new CountyHierarchicalDataItem( + { + code: `SLO`, + parent: `Europe`, + name: `Slovenia`, + population: 2052843 + }), + new CountyHierarchicalDataItem( + { + code: `ESP`, + parent: `Europe`, + name: `Spain`, + population: 46174601 + }), + new CountyHierarchicalDataItem( + { + code: `STM`, + parent: `Europe`, + name: `St. Martin`, + population: 30615 + }), + new CountyHierarchicalDataItem( + { + code: `SWE`, + parent: `Europe`, + name: `Sweden`, + population: 9449213 + }), + new CountyHierarchicalDataItem( + { + code: `CHE`, + parent: `Europe`, + name: `Switzerland`, + population: 7912398 + }), + new CountyHierarchicalDataItem( + { + code: `UKR`, + parent: `Europe`, + name: `Ukraine`, + population: 45706100 + }), + new CountyHierarchicalDataItem( + { + code: `GBR`, + parent: `Europe`, + name: `United Kingdom`, + population: 62744081 + }), + new CountyHierarchicalDataItem( + { + code: `DZA`, + parent: `Middle East`, + name: `Algeria`, + population: 35980193 + }), + new CountyHierarchicalDataItem( + { + code: `AZE`, + parent: `Middle East`, + name: `Azerbaijan`, + population: 9173082 + }), + new CountyHierarchicalDataItem( + { + code: `BHR`, + parent: `Middle East`, + name: `Bahrain`, + population: 1323535 + }), + new CountyHierarchicalDataItem( + { + code: `EGY`, + parent: `Middle East`, + name: `Egypt`, + population: 82536770 + }), + new CountyHierarchicalDataItem( + { + code: `IRN`, + parent: `Middle East`, + name: `Iran`, + population: 74798599 + }), + new CountyHierarchicalDataItem( + { + code: `IRQ`, + parent: `Middle East`, + name: `Iraq`, + population: 32961959 + }), + new CountyHierarchicalDataItem( + { + code: `ISR`, + parent: `Middle East`, + name: `Israel`, + population: 7765900 + }), + new CountyHierarchicalDataItem( + { + code: `JOR`, + parent: `Middle East`, + name: `Jordan`, + population: 6181000 + }), + new CountyHierarchicalDataItem( + { + code: `KWT`, + parent: `Middle East`, + name: `Kuwait`, + population: 2818042 + }), + new CountyHierarchicalDataItem( + { + code: `LBN`, + parent: `Middle East`, + name: `Lebanon`, + population: 4259405 + }), + new CountyHierarchicalDataItem( + { + code: `LBY`, + parent: `Middle East`, + name: `Libya`, + population: 6422772 + }), + new CountyHierarchicalDataItem( + { + code: `MAR`, + parent: `Middle East`, + name: `Morocco`, + population: 32272974 + }), + new CountyHierarchicalDataItem( + { + code: `OMN`, + parent: `Middle East`, + name: `Oman`, + population: 2846145 + }), + new CountyHierarchicalDataItem( + { + code: `PKS`, + parent: `Middle East`, + name: `Pakistan`, + population: 176745364 + }), + new CountyHierarchicalDataItem( + { + code: `QTR`, + parent: `Middle East`, + name: `Qatar`, + population: 1870041 + }), + new CountyHierarchicalDataItem( + { + code: `SAR`, + parent: `Middle East`, + name: `Saudi Arabia`, + population: 28082541 + }), + new CountyHierarchicalDataItem( + { + code: `SOM`, + parent: `Middle East`, + name: `Somalia`, + population: 9556873 + }), + new CountyHierarchicalDataItem( + { + code: `SYR`, + parent: `Middle East`, + name: `Syria`, + population: 20820311 + }), + new CountyHierarchicalDataItem( + { + code: `TUN`, + parent: `Middle East`, + name: `Tunisia`, + population: 10673800 + }), + new CountyHierarchicalDataItem( + { + code: `TUR`, + parent: `Middle East`, + name: `Turkey`, + population: 73639596 + }), + new CountyHierarchicalDataItem( + { + code: `UAE`, + parent: `Middle East`, + name: `United Arab Emirates`, + population: 7890924 + }), + new CountyHierarchicalDataItem( + { + code: `WTB`, + parent: `Middle East`, + name: `West Bank`, + population: 3927051 + }), + new CountyHierarchicalDataItem( + { + code: `YEM`, + parent: `Middle East`, + name: `Yemen`, + population: 24799880 + }), + new CountyHierarchicalDataItem( + { + code: `CAN`, + parent: `North America`, + name: `Canada`, + population: 34483975 + }), + new CountyHierarchicalDataItem( + { + code: `GRL`, + parent: `North America`, + name: `Greenland`, + population: 56840 + }), + new CountyHierarchicalDataItem( + { + code: `MEX`, + parent: `North America`, + name: `Mexico`, + population: 114793341 + }), + new CountyHierarchicalDataItem( + { + code: `USA`, + parent: `North America`, + name: `United States`, + population: 311591917 + }), + new CountyHierarchicalDataItem( + { + code: `AMS`, + parent: `Oceania`, + name: `American Samoa`, + population: 69543 + }), + new CountyHierarchicalDataItem( + { + code: `AUS`, + parent: `Oceania`, + name: `Australia`, + population: 22323900 + }), + new CountyHierarchicalDataItem( + { + code: `FIJ`, + parent: `Oceania`, + name: `Fiji`, + population: 868406 + }), + new CountyHierarchicalDataItem( + { + code: `FRP`, + parent: `Oceania`, + name: `French Polynesia`, + population: 273777 + }), + new CountyHierarchicalDataItem( + { + code: `KIR`, + parent: `Oceania`, + name: `Kiribati`, + population: 101093 + }), + new CountyHierarchicalDataItem( + { + code: `MIS`, + parent: `Oceania`, + name: `Marshall Islands`, + population: 54816 + }), + new CountyHierarchicalDataItem( + { + code: `MCR`, + parent: `Oceania`, + name: `Micronesia`, + population: 111542 + }), + new CountyHierarchicalDataItem( + { + code: `NCD`, + parent: `Oceania`, + name: `New Caledonia`, + population: 254024 + }), + new CountyHierarchicalDataItem( + { + code: `NZL`, + parent: `Oceania`, + name: `New Zealand`, + population: 4405200 + }), + new CountyHierarchicalDataItem( + { + code: `PAL`, + parent: `Oceania`, + name: `Palau`, + population: 20609 + }), + new CountyHierarchicalDataItem( + { + code: `PNG`, + parent: `Oceania`, + name: `Papua New Guinea`, + population: 7013829 + }), + new CountyHierarchicalDataItem( + { + code: `SAM`, + parent: `Oceania`, + name: `Samoa`, + population: 183874 + }), + new CountyHierarchicalDataItem( + { + code: `SIS`, + parent: `Oceania`, + name: `Solomon Islands`, + population: 552267 + }), + new CountyHierarchicalDataItem( + { + code: `TML`, + parent: `Oceania`, + name: `Timor-Leste`, + population: 1175880 + }), + new CountyHierarchicalDataItem( + { + code: `TON`, + parent: `Oceania`, + name: `Tonga`, + population: 104509 + }), + new CountyHierarchicalDataItem( + { + code: `TUV`, + parent: `Oceania`, + name: `Tuvalu`, + population: 9847 + }), + new CountyHierarchicalDataItem( + { + code: `VNT`, + parent: `Oceania`, + name: `Vanuatu`, + population: 245619 + }), + new CountyHierarchicalDataItem( + { + code: `ARG`, + parent: `South America`, + name: `Argentina`, + population: 40764561 + }), + new CountyHierarchicalDataItem( + { + code: `BOL`, + parent: `South America`, + name: `Bolivia`, + population: 10088108 + }), + new CountyHierarchicalDataItem( + { + code: `BRA`, + parent: `South America`, + name: `Brazil`, + population: 196655014 + }), + new CountyHierarchicalDataItem( + { + code: `CHI`, + parent: `South America`, + name: `Chile`, + population: 17269525 + }), + new CountyHierarchicalDataItem( + { + code: `COL`, + parent: `South America`, + name: `Colombia`, + population: 46927125 + }), + new CountyHierarchicalDataItem( + { + code: `ECU`, + parent: `South America`, + name: `Ecuador`, + population: 14666055 + }), + new CountyHierarchicalDataItem( + { + code: `GUY`, + parent: `South America`, + name: `Guyana`, + population: 756040 + }), + new CountyHierarchicalDataItem( + { + code: `PAR`, + parent: `South America`, + name: `Paraguay`, + population: 6568290 + }), + new CountyHierarchicalDataItem( + { + code: `PER`, + parent: `South America`, + name: `Peru`, + population: 29399817 + }), + new CountyHierarchicalDataItem( + { + code: `SUR`, + parent: `South America`, + name: `Suriname`, + population: 529419 + }), + new CountyHierarchicalDataItem( + { + code: `URG`, + parent: `South America`, + name: `Uruguay`, + population: 3368595 + }), + new CountyHierarchicalDataItem( + { + code: `VEN`, + parent: `South America`, + name: `Venezuela`, + population: 29278000 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/tree-map/overview/src/CountyHierarchicalData.ts b/samples/charts/tree-map/overview/src/CountyHierarchicalData.ts index 748f0ad65..06eb97ccd 100644 --- a/samples/charts/tree-map/overview/src/CountyHierarchicalData.ts +++ b/samples/charts/tree-map/overview/src/CountyHierarchicalData.ts @@ -10,1561 +10,1567 @@ export class CountyHierarchicalDataItem { } export class CountyHierarchicalData extends Array { - public constructor() { - super(); - this.push(new CountyHierarchicalDataItem( - { - code: `AFC`, - parent: null, - name: `Africa`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ASA`, - parent: null, - name: `Asia`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `EUR`, - parent: null, - name: `Europe`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MDE`, - parent: null, - name: `Middle East`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NAM`, - parent: null, - name: `North America`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CAM`, - parent: null, - name: `Central America`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SAM`, - parent: null, - name: `South America`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `OCE`, - parent: null, - name: `Oceania`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ANG`, - parent: `Africa`, - name: `Angola`, - population: 19618432 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BEN`, - parent: `Africa`, - name: `Benin`, - population: 9099922 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BOT`, - parent: `Africa`, - name: `Botswana`, - population: 2030738 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BUR`, - parent: `Africa`, - name: `Burkina Faso`, - population: 16967845 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BUR`, - parent: `Africa`, - name: `Burundi`, - population: 8575172 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CAM`, - parent: `Africa`, - name: `Cameroon`, - population: 20030362 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CPV`, - parent: `Africa`, - name: `Cape Verde`, - population: 500585 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CAR`, - parent: `Africa`, - name: `Central African Republic`, - population: 4486837 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CHD`, - parent: `Africa`, - name: `Chad`, - population: 11525496 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `COM`, - parent: `Africa`, - name: `Comoros`, - population: 753943 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DRC`, - parent: `Africa`, - name: `Congo DRC`, - population: 67757577 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CRP`, - parent: `Africa`, - name: `Congo Republic`, - population: 4139748 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CIR`, - parent: `Africa`, - name: `Cote Ivoire`, - population: 20152894 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DBT`, - parent: `Africa`, - name: `Djibouti`, - population: 905564 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ETG`, - parent: `Africa`, - name: `Equatorial Guinea`, - population: 720213 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ERT`, - parent: `Africa`, - name: `Eritrea`, - population: 5415280 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ETH`, - parent: `Africa`, - name: `Ethiopia`, - population: 84734262 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GBN`, - parent: `Africa`, - name: `Gabon`, - population: 1534262 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GMB`, - parent: `Africa`, - name: `Gambia`, - population: 1776103 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GHN`, - parent: `Africa`, - name: `Ghana`, - population: 24965816 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GUN`, - parent: `Africa`, - name: `Guinea`, - population: 10221808 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GNB`, - parent: `Africa`, - name: `Guinea-Bissau`, - population: 1547061 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KEN`, - parent: `Africa`, - name: `Kenya`, - population: 41609728 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LES`, - parent: `Africa`, - name: `Lesotho`, - population: 2193843 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LBR`, - parent: `Africa`, - name: `Liberia`, - population: 4128572 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MDG`, - parent: `Africa`, - name: `Madagascar`, - population: 21315135 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MLW`, - parent: `Africa`, - name: `Malawi`, - population: 15380888 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MAL`, - parent: `Africa`, - name: `Mali`, - population: 15839538 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MRT`, - parent: `Africa`, - name: `Mauritania`, - population: 3541540 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MUS`, - parent: `Africa`, - name: `Mauritius`, - population: 1286051 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MOZ`, - parent: `Africa`, - name: `Mozambique`, - population: 23929708 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NMB`, - parent: `Africa`, - name: `Namibia`, - population: 2324004 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NER`, - parent: `Africa`, - name: `Niger`, - population: 16068994 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NGA`, - parent: `Africa`, - name: `Nigeria`, - population: 162470737 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `RWD`, - parent: `Africa`, - name: `Rwanda`, - population: 10942950 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STM`, - parent: `Africa`, - name: `Sao Tome`, - population: 168526 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SEN`, - parent: `Africa`, - name: `Senegal`, - population: 12767556 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SYC`, - parent: `Africa`, - name: `Seychelles`, - population: 86000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SRL`, - parent: `Africa`, - name: `Sierra Leone`, - population: 5997486 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ZAF`, - parent: `Africa`, - name: `South Africa`, - population: 50586757 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SSD`, - parent: `Africa`, - name: `South Sudan`, - population: 10314021 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SDN`, - parent: `Africa`, - name: `Sudan`, - population: 34318385 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SWZ`, - parent: `Africa`, - name: `Swaziland`, - population: 1067773 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TNZ`, - parent: `Africa`, - name: `Tanzania`, - population: 46218486 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TOG`, - parent: `Africa`, - name: `Togo`, - population: 6154813 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `UGN`, - parent: `Africa`, - name: `Uganda`, - population: 34509205 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ZMB`, - parent: `Africa`, - name: `Zambia`, - population: 13474959 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ZWE`, - parent: `Africa`, - name: `Zimbabwe`, - population: 12754378 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AFG`, - parent: `Asia`, - name: `Afghanistan`, - population: 35320445 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BAN`, - parent: `Asia`, - name: `Bangladesh`, - population: 150493658 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BHT`, - parent: `Asia`, - name: `Bhutan`, - population: 738267 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BRN`, - parent: `Asia`, - name: `Brunei`, - population: 405938 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CAM`, - parent: `Asia`, - name: `Cambodia`, - population: 14305183 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CHI`, - parent: `Asia`, - name: `China`, - population: 1344130000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `HNK`, - parent: `Asia`, - name: `Hong Kong`, - population: 7071600 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IND`, - parent: `Asia`, - name: `India`, - population: 1241491960 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IDN`, - parent: `Asia`, - name: `Indonesia`, - population: 242325638 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `JPN`, - parent: `Asia`, - name: `Japan`, - population: 127817277 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KZH`, - parent: `Asia`, - name: `Kazakhstan`, - population: 16558676 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NKO`, - parent: `Asia`, - name: `North Korea`, - population: 24451285 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SKO`, - parent: `Asia`, - name: `South Korea`, - population: 49779000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KGZ`, - parent: `Asia`, - name: `Kyrgyzstan`, - population: 5514600 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LAO`, - parent: `Asia`, - name: `Lao PDR`, - population: 6288037 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MAC`, - parent: `Asia`, - name: `Macao`, - population: 555731 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MYS`, - parent: `Asia`, - name: `Malaysia`, - population: 28859154 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MDV`, - parent: `Asia`, - name: `Maldives`, - population: 320081 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MNG`, - parent: `Asia`, - name: `Mongolia`, - population: 2800114 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MYM`, - parent: `Asia`, - name: `Myanmar`, - population: 48336763 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NPL`, - parent: `Asia`, - name: `Nepal`, - population: 30485798 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PHP`, - parent: `Asia`, - name: `Philippines`, - population: 94852030 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SNG`, - parent: `Asia`, - name: `Singapore`, - population: 5183700 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SRL`, - parent: `Asia`, - name: `Sri Lanka`, - population: 20869000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TKS`, - parent: `Asia`, - name: `Tajikistan`, - population: 6976958 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `THL`, - parent: `Asia`, - name: `Thailand`, - population: 69518555 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TRK`, - parent: `Asia`, - name: `Turkmenistan`, - population: 5105301 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `UZB`, - parent: `Asia`, - name: `Uzbekistan`, - population: 29341200 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `VTN`, - parent: `Asia`, - name: `Vietnam`, - population: 87840000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ANT`, - parent: `Central America`, - name: `Antigua`, - population: 89612 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ARB`, - parent: `Central America`, - name: `Aruba`, - population: 108141 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BHM`, - parent: `Central America`, - name: `Bahamas`, - population: 347176 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BRB`, - parent: `Central America`, - name: `Barbados`, - population: 273925 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BLZ`, - parent: `Central America`, - name: `Belize`, - population: 356600 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BRM`, - parent: `Central America`, - name: `Bermuda`, - population: 64700 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CYI`, - parent: `Central America`, - name: `Cayman Islands`, - population: 56729 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CSR`, - parent: `Central America`, - name: `Costa Rica`, - population: 4726575 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CUB`, - parent: `Central America`, - name: `Cuba`, - population: 11253665 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CUR`, - parent: `Central America`, - name: `Curacao`, - population: 145619 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DMA`, - parent: `Central America`, - name: `Dominica`, - population: 67675 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DOM`, - parent: `Central America`, - name: `Dominican Republic`, - population: 10056181 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SLV`, - parent: `Central America`, - name: `El Salvador`, - population: 6227491 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `FIS`, - parent: `Central America`, - name: `Faeroe Islands`, - population: 48863 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GND`, - parent: `Central America`, - name: `Grenada`, - population: 104890 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GUA`, - parent: `Central America`, - name: `Guam`, - population: 182111 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GTM`, - parent: `Central America`, - name: `Guatemala`, - population: 14757316 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `HAT`, - parent: `Central America`, - name: `Haiti`, - population: 10123787 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `HON`, - parent: `Central America`, - name: `Honduras`, - population: 7754687 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `JAM`, - parent: `Central America`, - name: `Jamaica`, - population: 2706500 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NCR`, - parent: `Central America`, - name: `Nicaragua`, - population: 5869859 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NMI`, - parent: `Central America`, - name: `Northern Mariana Islands`, - population: 61174 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PAN`, - parent: `Central America`, - name: `Panama`, - population: 3571185 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PRT`, - parent: `Central America`, - name: `Puerto Rico`, - population: 3706690 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STK`, - parent: `Central America`, - name: `St. Kitts`, - population: 53051 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STL`, - parent: `Central America`, - name: `St. Lucia`, - population: 176000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STV`, - parent: `Central America`, - name: `St. Vincent`, - population: 109365 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TAB`, - parent: `Central America`, - name: `Trinidad and Tobago`, - population: 1346350 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `RCI`, - parent: `Central America`, - name: `Turks and Caicos Islands`, - population: 39184 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ISV`, - parent: `Central America`, - name: `US Virgin Islands`, - population: 109666 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ALB`, - parent: `Europe`, - name: `Albania`, - population: 3215988 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AND`, - parent: `Europe`, - name: `Andorra`, - population: 86165 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ARM`, - parent: `Europe`, - name: `Armenia`, - population: 3100236 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AUT`, - parent: `Europe`, - name: `Austria`, - population: 8423635 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BER`, - parent: `Europe`, - name: `Belarus`, - population: 9473000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BEL`, - parent: `Europe`, - name: `Belgium`, - population: 11020952 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BIH`, - parent: `Europe`, - name: `Bosnia`, - population: 3752228 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BUL`, - parent: `Europe`, - name: `Bulgaria`, - population: 7348328 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CHI`, - parent: `Europe`, - name: `Channel Islands`, - population: 153876 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CRO`, - parent: `Europe`, - name: `Croatia`, - population: 4403000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CYP`, - parent: `Europe`, - name: `Cyprus`, - population: 1116564 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CZE`, - parent: `Europe`, - name: `Czechia`, - population: 10496088 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DEN`, - parent: `Europe`, - name: `Denmark`, - population: 5570572 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `EST`, - parent: `Europe`, - name: `Estonia`, - population: 1339928 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `FIN`, - parent: `Europe`, - name: `Finland`, - population: 5388272 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `FRA`, - parent: `Europe`, - name: `France`, - population: 65433714 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GEO`, - parent: `Europe`, - name: `Georgia`, - population: 4486000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DEU`, - parent: `Europe`, - name: `Germany`, - population: 81797673 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GRC`, - parent: `Europe`, - name: `Greece`, - population: 11300410 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `HUN`, - parent: `Europe`, - name: `Hungary`, - population: 9971727 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ICE`, - parent: `Europe`, - name: `Iceland`, - population: 319014 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IRE`, - parent: `Europe`, - name: `Ireland`, - population: 4576317 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IOM`, - parent: `Europe`, - name: `Isle of Man`, - population: 83327 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ITA`, - parent: `Europe`, - name: `Italy`, - population: 60723603 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KOS`, - parent: `Europe`, - name: `Kosovo`, - population: 1802765 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LAT`, - parent: `Europe`, - name: `Latvia`, - population: 2058184 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LVA`, - parent: `Europe`, - name: `Liechtenstein`, - population: 36304 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LTU`, - parent: `Europe`, - name: `Lithuania`, - population: 3030173 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LUX`, - parent: `Europe`, - name: `Luxembourg`, - population: 518252 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MKD`, - parent: `Europe`, - name: `North Macedonia`, - population: 2063893 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MLT`, - parent: `Europe`, - name: `Malta`, - population: 415654 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MDA`, - parent: `Europe`, - name: `Moldova`, - population: 3559000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MON`, - parent: `Europe`, - name: `Monaco`, - population: 35427 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MNE`, - parent: `Europe`, - name: `Montenegro`, - population: 632261 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MLD`, - parent: `Europe`, - name: `Netherlands`, - population: 16693074 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NOR`, - parent: `Europe`, - name: `Norway`, - population: 4953088 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `POL`, - parent: `Europe`, - name: `Poland`, - population: 38534157 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `POR`, - parent: `Europe`, - name: `Portugal`, - population: 10556999 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ROM`, - parent: `Europe`, - name: `Romania`, - population: 21384832 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `RUS`, - parent: `Europe`, - name: `Russia`, - population: 142960000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SMR`, - parent: `Europe`, - name: `San Marino`, - population: 31735 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SBR`, - parent: `Europe`, - name: `Serbia`, - population: 7258745 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STM`, - parent: `Europe`, - name: `Sint Maarten`, - population: 36609 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SVK`, - parent: `Europe`, - name: `Slovakia`, - population: 5398384 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SLO`, - parent: `Europe`, - name: `Slovenia`, - population: 2052843 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ESP`, - parent: `Europe`, - name: `Spain`, - population: 46174601 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STM`, - parent: `Europe`, - name: `St. Martin`, - population: 30615 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SWE`, - parent: `Europe`, - name: `Sweden`, - population: 9449213 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CHE`, - parent: `Europe`, - name: `Switzerland`, - population: 7912398 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `UKR`, - parent: `Europe`, - name: `Ukraine`, - population: 45706100 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GBR`, - parent: `Europe`, - name: `United Kingdom`, - population: 62744081 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DZA`, - parent: `Middle East`, - name: `Algeria`, - population: 35980193 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AZE`, - parent: `Middle East`, - name: `Azerbaijan`, - population: 9173082 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BHR`, - parent: `Middle East`, - name: `Bahrain`, - population: 1323535 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `EGY`, - parent: `Middle East`, - name: `Egypt`, - population: 82536770 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IRN`, - parent: `Middle East`, - name: `Iran`, - population: 74798599 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IRQ`, - parent: `Middle East`, - name: `Iraq`, - population: 32961959 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ISR`, - parent: `Middle East`, - name: `Israel`, - population: 7765900 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `JOR`, - parent: `Middle East`, - name: `Jordan`, - population: 6181000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KWT`, - parent: `Middle East`, - name: `Kuwait`, - population: 2818042 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LBN`, - parent: `Middle East`, - name: `Lebanon`, - population: 4259405 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LBY`, - parent: `Middle East`, - name: `Libya`, - population: 6422772 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MAR`, - parent: `Middle East`, - name: `Morocco`, - population: 32272974 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `OMN`, - parent: `Middle East`, - name: `Oman`, - population: 2846145 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PKS`, - parent: `Middle East`, - name: `Pakistan`, - population: 176745364 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `QTR`, - parent: `Middle East`, - name: `Qatar`, - population: 1870041 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SAR`, - parent: `Middle East`, - name: `Saudi Arabia`, - population: 28082541 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SOM`, - parent: `Middle East`, - name: `Somalia`, - population: 9556873 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SYR`, - parent: `Middle East`, - name: `Syria`, - population: 20820311 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TUN`, - parent: `Middle East`, - name: `Tunisia`, - population: 10673800 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TUR`, - parent: `Middle East`, - name: `Turkey`, - population: 73639596 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `UAE`, - parent: `Middle East`, - name: `United Arab Emirates`, - population: 7890924 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `WTB`, - parent: `Middle East`, - name: `West Bank`, - population: 3927051 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `YEM`, - parent: `Middle East`, - name: `Yemen`, - population: 24799880 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CAN`, - parent: `North America`, - name: `Canada`, - population: 34483975 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GRL`, - parent: `North America`, - name: `Greenland`, - population: 56840 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MEX`, - parent: `North America`, - name: `Mexico`, - population: 114793341 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `USA`, - parent: `North America`, - name: `United States`, - population: 311591917 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AMS`, - parent: `Oceania`, - name: `American Samoa`, - population: 69543 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AUS`, - parent: `Oceania`, - name: `Australia`, - population: 22323900 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `FIJ`, - parent: `Oceania`, - name: `Fiji`, - population: 868406 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `FRP`, - parent: `Oceania`, - name: `French Polynesia`, - population: 273777 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KIR`, - parent: `Oceania`, - name: `Kiribati`, - population: 101093 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MIS`, - parent: `Oceania`, - name: `Marshall Islands`, - population: 54816 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MCR`, - parent: `Oceania`, - name: `Micronesia`, - population: 111542 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NCD`, - parent: `Oceania`, - name: `New Caledonia`, - population: 254024 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NZL`, - parent: `Oceania`, - name: `New Zealand`, - population: 4405200 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PAL`, - parent: `Oceania`, - name: `Palau`, - population: 20609 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PNG`, - parent: `Oceania`, - name: `Papua New Guinea`, - population: 7013829 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SAM`, - parent: `Oceania`, - name: `Samoa`, - population: 183874 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SIS`, - parent: `Oceania`, - name: `Solomon Islands`, - population: 552267 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TML`, - parent: `Oceania`, - name: `Timor-Leste`, - population: 1175880 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TON`, - parent: `Oceania`, - name: `Tonga`, - population: 104509 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TUV`, - parent: `Oceania`, - name: `Tuvalu`, - population: 9847 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `VNT`, - parent: `Oceania`, - name: `Vanuatu`, - population: 245619 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ARG`, - parent: `South America`, - name: `Argentina`, - population: 40764561 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BOL`, - parent: `South America`, - name: `Bolivia`, - population: 10088108 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BRA`, - parent: `South America`, - name: `Brazil`, - population: 196655014 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CHI`, - parent: `South America`, - name: `Chile`, - population: 17269525 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `COL`, - parent: `South America`, - name: `Colombia`, - population: 46927125 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ECU`, - parent: `South America`, - name: `Ecuador`, - population: 14666055 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GUY`, - parent: `South America`, - name: `Guyana`, - population: 756040 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PAR`, - parent: `South America`, - name: `Paraguay`, - population: 6568290 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PER`, - parent: `South America`, - name: `Peru`, - population: 29399817 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SUR`, - parent: `South America`, - name: `Suriname`, - population: 529419 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `URG`, - parent: `South America`, - name: `Uruguay`, - population: 3368595 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `VEN`, - parent: `South America`, - name: `Venezuela`, - population: 29278000 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountyHierarchicalDataItem( + { + code: `AFC`, + parent: null, + name: `Africa`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `ASA`, + parent: null, + name: `Asia`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `EUR`, + parent: null, + name: `Europe`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `MDE`, + parent: null, + name: `Middle East`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `NAM`, + parent: null, + name: `North America`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `CAM`, + parent: null, + name: `Central America`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `SAM`, + parent: null, + name: `South America`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `OCE`, + parent: null, + name: `Oceania`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `ANG`, + parent: `Africa`, + name: `Angola`, + population: 19618432 + }), + new CountyHierarchicalDataItem( + { + code: `BEN`, + parent: `Africa`, + name: `Benin`, + population: 9099922 + }), + new CountyHierarchicalDataItem( + { + code: `BOT`, + parent: `Africa`, + name: `Botswana`, + population: 2030738 + }), + new CountyHierarchicalDataItem( + { + code: `BUR`, + parent: `Africa`, + name: `Burkina Faso`, + population: 16967845 + }), + new CountyHierarchicalDataItem( + { + code: `BUR`, + parent: `Africa`, + name: `Burundi`, + population: 8575172 + }), + new CountyHierarchicalDataItem( + { + code: `CAM`, + parent: `Africa`, + name: `Cameroon`, + population: 20030362 + }), + new CountyHierarchicalDataItem( + { + code: `CPV`, + parent: `Africa`, + name: `Cape Verde`, + population: 500585 + }), + new CountyHierarchicalDataItem( + { + code: `CAR`, + parent: `Africa`, + name: `Central African Republic`, + population: 4486837 + }), + new CountyHierarchicalDataItem( + { + code: `CHD`, + parent: `Africa`, + name: `Chad`, + population: 11525496 + }), + new CountyHierarchicalDataItem( + { + code: `COM`, + parent: `Africa`, + name: `Comoros`, + population: 753943 + }), + new CountyHierarchicalDataItem( + { + code: `DRC`, + parent: `Africa`, + name: `Congo DRC`, + population: 67757577 + }), + new CountyHierarchicalDataItem( + { + code: `CRP`, + parent: `Africa`, + name: `Congo Republic`, + population: 4139748 + }), + new CountyHierarchicalDataItem( + { + code: `CIR`, + parent: `Africa`, + name: `Cote Ivoire`, + population: 20152894 + }), + new CountyHierarchicalDataItem( + { + code: `DBT`, + parent: `Africa`, + name: `Djibouti`, + population: 905564 + }), + new CountyHierarchicalDataItem( + { + code: `ETG`, + parent: `Africa`, + name: `Equatorial Guinea`, + population: 720213 + }), + new CountyHierarchicalDataItem( + { + code: `ERT`, + parent: `Africa`, + name: `Eritrea`, + population: 5415280 + }), + new CountyHierarchicalDataItem( + { + code: `ETH`, + parent: `Africa`, + name: `Ethiopia`, + population: 84734262 + }), + new CountyHierarchicalDataItem( + { + code: `GBN`, + parent: `Africa`, + name: `Gabon`, + population: 1534262 + }), + new CountyHierarchicalDataItem( + { + code: `GMB`, + parent: `Africa`, + name: `Gambia`, + population: 1776103 + }), + new CountyHierarchicalDataItem( + { + code: `GHN`, + parent: `Africa`, + name: `Ghana`, + population: 24965816 + }), + new CountyHierarchicalDataItem( + { + code: `GUN`, + parent: `Africa`, + name: `Guinea`, + population: 10221808 + }), + new CountyHierarchicalDataItem( + { + code: `GNB`, + parent: `Africa`, + name: `Guinea-Bissau`, + population: 1547061 + }), + new CountyHierarchicalDataItem( + { + code: `KEN`, + parent: `Africa`, + name: `Kenya`, + population: 41609728 + }), + new CountyHierarchicalDataItem( + { + code: `LES`, + parent: `Africa`, + name: `Lesotho`, + population: 2193843 + }), + new CountyHierarchicalDataItem( + { + code: `LBR`, + parent: `Africa`, + name: `Liberia`, + population: 4128572 + }), + new CountyHierarchicalDataItem( + { + code: `MDG`, + parent: `Africa`, + name: `Madagascar`, + population: 21315135 + }), + new CountyHierarchicalDataItem( + { + code: `MLW`, + parent: `Africa`, + name: `Malawi`, + population: 15380888 + }), + new CountyHierarchicalDataItem( + { + code: `MAL`, + parent: `Africa`, + name: `Mali`, + population: 15839538 + }), + new CountyHierarchicalDataItem( + { + code: `MRT`, + parent: `Africa`, + name: `Mauritania`, + population: 3541540 + }), + new CountyHierarchicalDataItem( + { + code: `MUS`, + parent: `Africa`, + name: `Mauritius`, + population: 1286051 + }), + new CountyHierarchicalDataItem( + { + code: `MOZ`, + parent: `Africa`, + name: `Mozambique`, + population: 23929708 + }), + new CountyHierarchicalDataItem( + { + code: `NMB`, + parent: `Africa`, + name: `Namibia`, + population: 2324004 + }), + new CountyHierarchicalDataItem( + { + code: `NER`, + parent: `Africa`, + name: `Niger`, + population: 16068994 + }), + new CountyHierarchicalDataItem( + { + code: `NGA`, + parent: `Africa`, + name: `Nigeria`, + population: 162470737 + }), + new CountyHierarchicalDataItem( + { + code: `RWD`, + parent: `Africa`, + name: `Rwanda`, + population: 10942950 + }), + new CountyHierarchicalDataItem( + { + code: `STM`, + parent: `Africa`, + name: `Sao Tome`, + population: 168526 + }), + new CountyHierarchicalDataItem( + { + code: `SEN`, + parent: `Africa`, + name: `Senegal`, + population: 12767556 + }), + new CountyHierarchicalDataItem( + { + code: `SYC`, + parent: `Africa`, + name: `Seychelles`, + population: 86000 + }), + new CountyHierarchicalDataItem( + { + code: `SRL`, + parent: `Africa`, + name: `Sierra Leone`, + population: 5997486 + }), + new CountyHierarchicalDataItem( + { + code: `ZAF`, + parent: `Africa`, + name: `South Africa`, + population: 50586757 + }), + new CountyHierarchicalDataItem( + { + code: `SSD`, + parent: `Africa`, + name: `South Sudan`, + population: 10314021 + }), + new CountyHierarchicalDataItem( + { + code: `SDN`, + parent: `Africa`, + name: `Sudan`, + population: 34318385 + }), + new CountyHierarchicalDataItem( + { + code: `SWZ`, + parent: `Africa`, + name: `Swaziland`, + population: 1067773 + }), + new CountyHierarchicalDataItem( + { + code: `TNZ`, + parent: `Africa`, + name: `Tanzania`, + population: 46218486 + }), + new CountyHierarchicalDataItem( + { + code: `TOG`, + parent: `Africa`, + name: `Togo`, + population: 6154813 + }), + new CountyHierarchicalDataItem( + { + code: `UGN`, + parent: `Africa`, + name: `Uganda`, + population: 34509205 + }), + new CountyHierarchicalDataItem( + { + code: `ZMB`, + parent: `Africa`, + name: `Zambia`, + population: 13474959 + }), + new CountyHierarchicalDataItem( + { + code: `ZWE`, + parent: `Africa`, + name: `Zimbabwe`, + population: 12754378 + }), + new CountyHierarchicalDataItem( + { + code: `AFG`, + parent: `Asia`, + name: `Afghanistan`, + population: 35320445 + }), + new CountyHierarchicalDataItem( + { + code: `BAN`, + parent: `Asia`, + name: `Bangladesh`, + population: 150493658 + }), + new CountyHierarchicalDataItem( + { + code: `BHT`, + parent: `Asia`, + name: `Bhutan`, + population: 738267 + }), + new CountyHierarchicalDataItem( + { + code: `BRN`, + parent: `Asia`, + name: `Brunei`, + population: 405938 + }), + new CountyHierarchicalDataItem( + { + code: `CAM`, + parent: `Asia`, + name: `Cambodia`, + population: 14305183 + }), + new CountyHierarchicalDataItem( + { + code: `CHI`, + parent: `Asia`, + name: `China`, + population: 1344130000 + }), + new CountyHierarchicalDataItem( + { + code: `HNK`, + parent: `Asia`, + name: `Hong Kong`, + population: 7071600 + }), + new CountyHierarchicalDataItem( + { + code: `IND`, + parent: `Asia`, + name: `India`, + population: 1241491960 + }), + new CountyHierarchicalDataItem( + { + code: `IDN`, + parent: `Asia`, + name: `Indonesia`, + population: 242325638 + }), + new CountyHierarchicalDataItem( + { + code: `JPN`, + parent: `Asia`, + name: `Japan`, + population: 127817277 + }), + new CountyHierarchicalDataItem( + { + code: `KZH`, + parent: `Asia`, + name: `Kazakhstan`, + population: 16558676 + }), + new CountyHierarchicalDataItem( + { + code: `NKO`, + parent: `Asia`, + name: `North Korea`, + population: 24451285 + }), + new CountyHierarchicalDataItem( + { + code: `SKO`, + parent: `Asia`, + name: `South Korea`, + population: 49779000 + }), + new CountyHierarchicalDataItem( + { + code: `KGZ`, + parent: `Asia`, + name: `Kyrgyzstan`, + population: 5514600 + }), + new CountyHierarchicalDataItem( + { + code: `LAO`, + parent: `Asia`, + name: `Lao PDR`, + population: 6288037 + }), + new CountyHierarchicalDataItem( + { + code: `MAC`, + parent: `Asia`, + name: `Macao`, + population: 555731 + }), + new CountyHierarchicalDataItem( + { + code: `MYS`, + parent: `Asia`, + name: `Malaysia`, + population: 28859154 + }), + new CountyHierarchicalDataItem( + { + code: `MDV`, + parent: `Asia`, + name: `Maldives`, + population: 320081 + }), + new CountyHierarchicalDataItem( + { + code: `MNG`, + parent: `Asia`, + name: `Mongolia`, + population: 2800114 + }), + new CountyHierarchicalDataItem( + { + code: `MYM`, + parent: `Asia`, + name: `Myanmar`, + population: 48336763 + }), + new CountyHierarchicalDataItem( + { + code: `NPL`, + parent: `Asia`, + name: `Nepal`, + population: 30485798 + }), + new CountyHierarchicalDataItem( + { + code: `PHP`, + parent: `Asia`, + name: `Philippines`, + population: 94852030 + }), + new CountyHierarchicalDataItem( + { + code: `SNG`, + parent: `Asia`, + name: `Singapore`, + population: 5183700 + }), + new CountyHierarchicalDataItem( + { + code: `SRL`, + parent: `Asia`, + name: `Sri Lanka`, + population: 20869000 + }), + new CountyHierarchicalDataItem( + { + code: `TKS`, + parent: `Asia`, + name: `Tajikistan`, + population: 6976958 + }), + new CountyHierarchicalDataItem( + { + code: `THL`, + parent: `Asia`, + name: `Thailand`, + population: 69518555 + }), + new CountyHierarchicalDataItem( + { + code: `TRK`, + parent: `Asia`, + name: `Turkmenistan`, + population: 5105301 + }), + new CountyHierarchicalDataItem( + { + code: `UZB`, + parent: `Asia`, + name: `Uzbekistan`, + population: 29341200 + }), + new CountyHierarchicalDataItem( + { + code: `VTN`, + parent: `Asia`, + name: `Vietnam`, + population: 87840000 + }), + new CountyHierarchicalDataItem( + { + code: `ANT`, + parent: `Central America`, + name: `Antigua`, + population: 89612 + }), + new CountyHierarchicalDataItem( + { + code: `ARB`, + parent: `Central America`, + name: `Aruba`, + population: 108141 + }), + new CountyHierarchicalDataItem( + { + code: `BHM`, + parent: `Central America`, + name: `Bahamas`, + population: 347176 + }), + new CountyHierarchicalDataItem( + { + code: `BRB`, + parent: `Central America`, + name: `Barbados`, + population: 273925 + }), + new CountyHierarchicalDataItem( + { + code: `BLZ`, + parent: `Central America`, + name: `Belize`, + population: 356600 + }), + new CountyHierarchicalDataItem( + { + code: `BRM`, + parent: `Central America`, + name: `Bermuda`, + population: 64700 + }), + new CountyHierarchicalDataItem( + { + code: `CYI`, + parent: `Central America`, + name: `Cayman Islands`, + population: 56729 + }), + new CountyHierarchicalDataItem( + { + code: `CSR`, + parent: `Central America`, + name: `Costa Rica`, + population: 4726575 + }), + new CountyHierarchicalDataItem( + { + code: `CUB`, + parent: `Central America`, + name: `Cuba`, + population: 11253665 + }), + new CountyHierarchicalDataItem( + { + code: `CUR`, + parent: `Central America`, + name: `Curacao`, + population: 145619 + }), + new CountyHierarchicalDataItem( + { + code: `DMA`, + parent: `Central America`, + name: `Dominica`, + population: 67675 + }), + new CountyHierarchicalDataItem( + { + code: `DOM`, + parent: `Central America`, + name: `Dominican Republic`, + population: 10056181 + }), + new CountyHierarchicalDataItem( + { + code: `SLV`, + parent: `Central America`, + name: `El Salvador`, + population: 6227491 + }), + new CountyHierarchicalDataItem( + { + code: `FIS`, + parent: `Central America`, + name: `Faeroe Islands`, + population: 48863 + }), + new CountyHierarchicalDataItem( + { + code: `GND`, + parent: `Central America`, + name: `Grenada`, + population: 104890 + }), + new CountyHierarchicalDataItem( + { + code: `GUA`, + parent: `Central America`, + name: `Guam`, + population: 182111 + }), + new CountyHierarchicalDataItem( + { + code: `GTM`, + parent: `Central America`, + name: `Guatemala`, + population: 14757316 + }), + new CountyHierarchicalDataItem( + { + code: `HAT`, + parent: `Central America`, + name: `Haiti`, + population: 10123787 + }), + new CountyHierarchicalDataItem( + { + code: `HON`, + parent: `Central America`, + name: `Honduras`, + population: 7754687 + }), + new CountyHierarchicalDataItem( + { + code: `JAM`, + parent: `Central America`, + name: `Jamaica`, + population: 2706500 + }), + new CountyHierarchicalDataItem( + { + code: `NCR`, + parent: `Central America`, + name: `Nicaragua`, + population: 5869859 + }), + new CountyHierarchicalDataItem( + { + code: `NMI`, + parent: `Central America`, + name: `Northern Mariana Islands`, + population: 61174 + }), + new CountyHierarchicalDataItem( + { + code: `PAN`, + parent: `Central America`, + name: `Panama`, + population: 3571185 + }), + new CountyHierarchicalDataItem( + { + code: `PRT`, + parent: `Central America`, + name: `Puerto Rico`, + population: 3706690 + }), + new CountyHierarchicalDataItem( + { + code: `STK`, + parent: `Central America`, + name: `St. Kitts`, + population: 53051 + }), + new CountyHierarchicalDataItem( + { + code: `STL`, + parent: `Central America`, + name: `St. Lucia`, + population: 176000 + }), + new CountyHierarchicalDataItem( + { + code: `STV`, + parent: `Central America`, + name: `St. Vincent`, + population: 109365 + }), + new CountyHierarchicalDataItem( + { + code: `TAB`, + parent: `Central America`, + name: `Trinidad and Tobago`, + population: 1346350 + }), + new CountyHierarchicalDataItem( + { + code: `RCI`, + parent: `Central America`, + name: `Turks and Caicos Islands`, + population: 39184 + }), + new CountyHierarchicalDataItem( + { + code: `ISV`, + parent: `Central America`, + name: `US Virgin Islands`, + population: 109666 + }), + new CountyHierarchicalDataItem( + { + code: `ALB`, + parent: `Europe`, + name: `Albania`, + population: 3215988 + }), + new CountyHierarchicalDataItem( + { + code: `AND`, + parent: `Europe`, + name: `Andorra`, + population: 86165 + }), + new CountyHierarchicalDataItem( + { + code: `ARM`, + parent: `Europe`, + name: `Armenia`, + population: 3100236 + }), + new CountyHierarchicalDataItem( + { + code: `AUT`, + parent: `Europe`, + name: `Austria`, + population: 8423635 + }), + new CountyHierarchicalDataItem( + { + code: `BER`, + parent: `Europe`, + name: `Belarus`, + population: 9473000 + }), + new CountyHierarchicalDataItem( + { + code: `BEL`, + parent: `Europe`, + name: `Belgium`, + population: 11020952 + }), + new CountyHierarchicalDataItem( + { + code: `BIH`, + parent: `Europe`, + name: `Bosnia`, + population: 3752228 + }), + new CountyHierarchicalDataItem( + { + code: `BUL`, + parent: `Europe`, + name: `Bulgaria`, + population: 7348328 + }), + new CountyHierarchicalDataItem( + { + code: `CHI`, + parent: `Europe`, + name: `Channel Islands`, + population: 153876 + }), + new CountyHierarchicalDataItem( + { + code: `CRO`, + parent: `Europe`, + name: `Croatia`, + population: 4403000 + }), + new CountyHierarchicalDataItem( + { + code: `CYP`, + parent: `Europe`, + name: `Cyprus`, + population: 1116564 + }), + new CountyHierarchicalDataItem( + { + code: `CZE`, + parent: `Europe`, + name: `Czechia`, + population: 10496088 + }), + new CountyHierarchicalDataItem( + { + code: `DEN`, + parent: `Europe`, + name: `Denmark`, + population: 5570572 + }), + new CountyHierarchicalDataItem( + { + code: `EST`, + parent: `Europe`, + name: `Estonia`, + population: 1339928 + }), + new CountyHierarchicalDataItem( + { + code: `FIN`, + parent: `Europe`, + name: `Finland`, + population: 5388272 + }), + new CountyHierarchicalDataItem( + { + code: `FRA`, + parent: `Europe`, + name: `France`, + population: 65433714 + }), + new CountyHierarchicalDataItem( + { + code: `GEO`, + parent: `Europe`, + name: `Georgia`, + population: 4486000 + }), + new CountyHierarchicalDataItem( + { + code: `DEU`, + parent: `Europe`, + name: `Germany`, + population: 81797673 + }), + new CountyHierarchicalDataItem( + { + code: `GRC`, + parent: `Europe`, + name: `Greece`, + population: 11300410 + }), + new CountyHierarchicalDataItem( + { + code: `HUN`, + parent: `Europe`, + name: `Hungary`, + population: 9971727 + }), + new CountyHierarchicalDataItem( + { + code: `ICE`, + parent: `Europe`, + name: `Iceland`, + population: 319014 + }), + new CountyHierarchicalDataItem( + { + code: `IRE`, + parent: `Europe`, + name: `Ireland`, + population: 4576317 + }), + new CountyHierarchicalDataItem( + { + code: `IOM`, + parent: `Europe`, + name: `Isle of Man`, + population: 83327 + }), + new CountyHierarchicalDataItem( + { + code: `ITA`, + parent: `Europe`, + name: `Italy`, + population: 60723603 + }), + new CountyHierarchicalDataItem( + { + code: `KOS`, + parent: `Europe`, + name: `Kosovo`, + population: 1802765 + }), + new CountyHierarchicalDataItem( + { + code: `LAT`, + parent: `Europe`, + name: `Latvia`, + population: 2058184 + }), + new CountyHierarchicalDataItem( + { + code: `LVA`, + parent: `Europe`, + name: `Liechtenstein`, + population: 36304 + }), + new CountyHierarchicalDataItem( + { + code: `LTU`, + parent: `Europe`, + name: `Lithuania`, + population: 3030173 + }), + new CountyHierarchicalDataItem( + { + code: `LUX`, + parent: `Europe`, + name: `Luxembourg`, + population: 518252 + }), + new CountyHierarchicalDataItem( + { + code: `MKD`, + parent: `Europe`, + name: `North Macedonia`, + population: 2063893 + }), + new CountyHierarchicalDataItem( + { + code: `MLT`, + parent: `Europe`, + name: `Malta`, + population: 415654 + }), + new CountyHierarchicalDataItem( + { + code: `MDA`, + parent: `Europe`, + name: `Moldova`, + population: 3559000 + }), + new CountyHierarchicalDataItem( + { + code: `MON`, + parent: `Europe`, + name: `Monaco`, + population: 35427 + }), + new CountyHierarchicalDataItem( + { + code: `MNE`, + parent: `Europe`, + name: `Montenegro`, + population: 632261 + }), + new CountyHierarchicalDataItem( + { + code: `MLD`, + parent: `Europe`, + name: `Netherlands`, + population: 16693074 + }), + new CountyHierarchicalDataItem( + { + code: `NOR`, + parent: `Europe`, + name: `Norway`, + population: 4953088 + }), + new CountyHierarchicalDataItem( + { + code: `POL`, + parent: `Europe`, + name: `Poland`, + population: 38534157 + }), + new CountyHierarchicalDataItem( + { + code: `POR`, + parent: `Europe`, + name: `Portugal`, + population: 10556999 + }), + new CountyHierarchicalDataItem( + { + code: `ROM`, + parent: `Europe`, + name: `Romania`, + population: 21384832 + }), + new CountyHierarchicalDataItem( + { + code: `RUS`, + parent: `Europe`, + name: `Russia`, + population: 142960000 + }), + new CountyHierarchicalDataItem( + { + code: `SMR`, + parent: `Europe`, + name: `San Marino`, + population: 31735 + }), + new CountyHierarchicalDataItem( + { + code: `SBR`, + parent: `Europe`, + name: `Serbia`, + population: 7258745 + }), + new CountyHierarchicalDataItem( + { + code: `STM`, + parent: `Europe`, + name: `Sint Maarten`, + population: 36609 + }), + new CountyHierarchicalDataItem( + { + code: `SVK`, + parent: `Europe`, + name: `Slovakia`, + population: 5398384 + }), + new CountyHierarchicalDataItem( + { + code: `SLO`, + parent: `Europe`, + name: `Slovenia`, + population: 2052843 + }), + new CountyHierarchicalDataItem( + { + code: `ESP`, + parent: `Europe`, + name: `Spain`, + population: 46174601 + }), + new CountyHierarchicalDataItem( + { + code: `STM`, + parent: `Europe`, + name: `St. Martin`, + population: 30615 + }), + new CountyHierarchicalDataItem( + { + code: `SWE`, + parent: `Europe`, + name: `Sweden`, + population: 9449213 + }), + new CountyHierarchicalDataItem( + { + code: `CHE`, + parent: `Europe`, + name: `Switzerland`, + population: 7912398 + }), + new CountyHierarchicalDataItem( + { + code: `UKR`, + parent: `Europe`, + name: `Ukraine`, + population: 45706100 + }), + new CountyHierarchicalDataItem( + { + code: `GBR`, + parent: `Europe`, + name: `United Kingdom`, + population: 62744081 + }), + new CountyHierarchicalDataItem( + { + code: `DZA`, + parent: `Middle East`, + name: `Algeria`, + population: 35980193 + }), + new CountyHierarchicalDataItem( + { + code: `AZE`, + parent: `Middle East`, + name: `Azerbaijan`, + population: 9173082 + }), + new CountyHierarchicalDataItem( + { + code: `BHR`, + parent: `Middle East`, + name: `Bahrain`, + population: 1323535 + }), + new CountyHierarchicalDataItem( + { + code: `EGY`, + parent: `Middle East`, + name: `Egypt`, + population: 82536770 + }), + new CountyHierarchicalDataItem( + { + code: `IRN`, + parent: `Middle East`, + name: `Iran`, + population: 74798599 + }), + new CountyHierarchicalDataItem( + { + code: `IRQ`, + parent: `Middle East`, + name: `Iraq`, + population: 32961959 + }), + new CountyHierarchicalDataItem( + { + code: `ISR`, + parent: `Middle East`, + name: `Israel`, + population: 7765900 + }), + new CountyHierarchicalDataItem( + { + code: `JOR`, + parent: `Middle East`, + name: `Jordan`, + population: 6181000 + }), + new CountyHierarchicalDataItem( + { + code: `KWT`, + parent: `Middle East`, + name: `Kuwait`, + population: 2818042 + }), + new CountyHierarchicalDataItem( + { + code: `LBN`, + parent: `Middle East`, + name: `Lebanon`, + population: 4259405 + }), + new CountyHierarchicalDataItem( + { + code: `LBY`, + parent: `Middle East`, + name: `Libya`, + population: 6422772 + }), + new CountyHierarchicalDataItem( + { + code: `MAR`, + parent: `Middle East`, + name: `Morocco`, + population: 32272974 + }), + new CountyHierarchicalDataItem( + { + code: `OMN`, + parent: `Middle East`, + name: `Oman`, + population: 2846145 + }), + new CountyHierarchicalDataItem( + { + code: `PKS`, + parent: `Middle East`, + name: `Pakistan`, + population: 176745364 + }), + new CountyHierarchicalDataItem( + { + code: `QTR`, + parent: `Middle East`, + name: `Qatar`, + population: 1870041 + }), + new CountyHierarchicalDataItem( + { + code: `SAR`, + parent: `Middle East`, + name: `Saudi Arabia`, + population: 28082541 + }), + new CountyHierarchicalDataItem( + { + code: `SOM`, + parent: `Middle East`, + name: `Somalia`, + population: 9556873 + }), + new CountyHierarchicalDataItem( + { + code: `SYR`, + parent: `Middle East`, + name: `Syria`, + population: 20820311 + }), + new CountyHierarchicalDataItem( + { + code: `TUN`, + parent: `Middle East`, + name: `Tunisia`, + population: 10673800 + }), + new CountyHierarchicalDataItem( + { + code: `TUR`, + parent: `Middle East`, + name: `Turkey`, + population: 73639596 + }), + new CountyHierarchicalDataItem( + { + code: `UAE`, + parent: `Middle East`, + name: `United Arab Emirates`, + population: 7890924 + }), + new CountyHierarchicalDataItem( + { + code: `WTB`, + parent: `Middle East`, + name: `West Bank`, + population: 3927051 + }), + new CountyHierarchicalDataItem( + { + code: `YEM`, + parent: `Middle East`, + name: `Yemen`, + population: 24799880 + }), + new CountyHierarchicalDataItem( + { + code: `CAN`, + parent: `North America`, + name: `Canada`, + population: 34483975 + }), + new CountyHierarchicalDataItem( + { + code: `GRL`, + parent: `North America`, + name: `Greenland`, + population: 56840 + }), + new CountyHierarchicalDataItem( + { + code: `MEX`, + parent: `North America`, + name: `Mexico`, + population: 114793341 + }), + new CountyHierarchicalDataItem( + { + code: `USA`, + parent: `North America`, + name: `United States`, + population: 311591917 + }), + new CountyHierarchicalDataItem( + { + code: `AMS`, + parent: `Oceania`, + name: `American Samoa`, + population: 69543 + }), + new CountyHierarchicalDataItem( + { + code: `AUS`, + parent: `Oceania`, + name: `Australia`, + population: 22323900 + }), + new CountyHierarchicalDataItem( + { + code: `FIJ`, + parent: `Oceania`, + name: `Fiji`, + population: 868406 + }), + new CountyHierarchicalDataItem( + { + code: `FRP`, + parent: `Oceania`, + name: `French Polynesia`, + population: 273777 + }), + new CountyHierarchicalDataItem( + { + code: `KIR`, + parent: `Oceania`, + name: `Kiribati`, + population: 101093 + }), + new CountyHierarchicalDataItem( + { + code: `MIS`, + parent: `Oceania`, + name: `Marshall Islands`, + population: 54816 + }), + new CountyHierarchicalDataItem( + { + code: `MCR`, + parent: `Oceania`, + name: `Micronesia`, + population: 111542 + }), + new CountyHierarchicalDataItem( + { + code: `NCD`, + parent: `Oceania`, + name: `New Caledonia`, + population: 254024 + }), + new CountyHierarchicalDataItem( + { + code: `NZL`, + parent: `Oceania`, + name: `New Zealand`, + population: 4405200 + }), + new CountyHierarchicalDataItem( + { + code: `PAL`, + parent: `Oceania`, + name: `Palau`, + population: 20609 + }), + new CountyHierarchicalDataItem( + { + code: `PNG`, + parent: `Oceania`, + name: `Papua New Guinea`, + population: 7013829 + }), + new CountyHierarchicalDataItem( + { + code: `SAM`, + parent: `Oceania`, + name: `Samoa`, + population: 183874 + }), + new CountyHierarchicalDataItem( + { + code: `SIS`, + parent: `Oceania`, + name: `Solomon Islands`, + population: 552267 + }), + new CountyHierarchicalDataItem( + { + code: `TML`, + parent: `Oceania`, + name: `Timor-Leste`, + population: 1175880 + }), + new CountyHierarchicalDataItem( + { + code: `TON`, + parent: `Oceania`, + name: `Tonga`, + population: 104509 + }), + new CountyHierarchicalDataItem( + { + code: `TUV`, + parent: `Oceania`, + name: `Tuvalu`, + population: 9847 + }), + new CountyHierarchicalDataItem( + { + code: `VNT`, + parent: `Oceania`, + name: `Vanuatu`, + population: 245619 + }), + new CountyHierarchicalDataItem( + { + code: `ARG`, + parent: `South America`, + name: `Argentina`, + population: 40764561 + }), + new CountyHierarchicalDataItem( + { + code: `BOL`, + parent: `South America`, + name: `Bolivia`, + population: 10088108 + }), + new CountyHierarchicalDataItem( + { + code: `BRA`, + parent: `South America`, + name: `Brazil`, + population: 196655014 + }), + new CountyHierarchicalDataItem( + { + code: `CHI`, + parent: `South America`, + name: `Chile`, + population: 17269525 + }), + new CountyHierarchicalDataItem( + { + code: `COL`, + parent: `South America`, + name: `Colombia`, + population: 46927125 + }), + new CountyHierarchicalDataItem( + { + code: `ECU`, + parent: `South America`, + name: `Ecuador`, + population: 14666055 + }), + new CountyHierarchicalDataItem( + { + code: `GUY`, + parent: `South America`, + name: `Guyana`, + population: 756040 + }), + new CountyHierarchicalDataItem( + { + code: `PAR`, + parent: `South America`, + name: `Paraguay`, + population: 6568290 + }), + new CountyHierarchicalDataItem( + { + code: `PER`, + parent: `South America`, + name: `Peru`, + population: 29399817 + }), + new CountyHierarchicalDataItem( + { + code: `SUR`, + parent: `South America`, + name: `Suriname`, + population: 529419 + }), + new CountyHierarchicalDataItem( + { + code: `URG`, + parent: `South America`, + name: `Uruguay`, + population: 3368595 + }), + new CountyHierarchicalDataItem( + { + code: `VEN`, + parent: `South America`, + name: `Venezuela`, + population: 29278000 + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/tree-map/styling/src/CountyHierarchicalData.ts b/samples/charts/tree-map/styling/src/CountyHierarchicalData.ts index 748f0ad65..06eb97ccd 100644 --- a/samples/charts/tree-map/styling/src/CountyHierarchicalData.ts +++ b/samples/charts/tree-map/styling/src/CountyHierarchicalData.ts @@ -10,1561 +10,1567 @@ export class CountyHierarchicalDataItem { } export class CountyHierarchicalData extends Array { - public constructor() { - super(); - this.push(new CountyHierarchicalDataItem( - { - code: `AFC`, - parent: null, - name: `Africa`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ASA`, - parent: null, - name: `Asia`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `EUR`, - parent: null, - name: `Europe`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MDE`, - parent: null, - name: `Middle East`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NAM`, - parent: null, - name: `North America`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CAM`, - parent: null, - name: `Central America`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SAM`, - parent: null, - name: `South America`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `OCE`, - parent: null, - name: `Oceania`, - population: null - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ANG`, - parent: `Africa`, - name: `Angola`, - population: 19618432 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BEN`, - parent: `Africa`, - name: `Benin`, - population: 9099922 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BOT`, - parent: `Africa`, - name: `Botswana`, - population: 2030738 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BUR`, - parent: `Africa`, - name: `Burkina Faso`, - population: 16967845 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BUR`, - parent: `Africa`, - name: `Burundi`, - population: 8575172 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CAM`, - parent: `Africa`, - name: `Cameroon`, - population: 20030362 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CPV`, - parent: `Africa`, - name: `Cape Verde`, - population: 500585 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CAR`, - parent: `Africa`, - name: `Central African Republic`, - population: 4486837 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CHD`, - parent: `Africa`, - name: `Chad`, - population: 11525496 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `COM`, - parent: `Africa`, - name: `Comoros`, - population: 753943 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DRC`, - parent: `Africa`, - name: `Congo DRC`, - population: 67757577 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CRP`, - parent: `Africa`, - name: `Congo Republic`, - population: 4139748 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CIR`, - parent: `Africa`, - name: `Cote Ivoire`, - population: 20152894 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DBT`, - parent: `Africa`, - name: `Djibouti`, - population: 905564 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ETG`, - parent: `Africa`, - name: `Equatorial Guinea`, - population: 720213 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ERT`, - parent: `Africa`, - name: `Eritrea`, - population: 5415280 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ETH`, - parent: `Africa`, - name: `Ethiopia`, - population: 84734262 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GBN`, - parent: `Africa`, - name: `Gabon`, - population: 1534262 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GMB`, - parent: `Africa`, - name: `Gambia`, - population: 1776103 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GHN`, - parent: `Africa`, - name: `Ghana`, - population: 24965816 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GUN`, - parent: `Africa`, - name: `Guinea`, - population: 10221808 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GNB`, - parent: `Africa`, - name: `Guinea-Bissau`, - population: 1547061 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KEN`, - parent: `Africa`, - name: `Kenya`, - population: 41609728 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LES`, - parent: `Africa`, - name: `Lesotho`, - population: 2193843 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LBR`, - parent: `Africa`, - name: `Liberia`, - population: 4128572 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MDG`, - parent: `Africa`, - name: `Madagascar`, - population: 21315135 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MLW`, - parent: `Africa`, - name: `Malawi`, - population: 15380888 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MAL`, - parent: `Africa`, - name: `Mali`, - population: 15839538 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MRT`, - parent: `Africa`, - name: `Mauritania`, - population: 3541540 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MUS`, - parent: `Africa`, - name: `Mauritius`, - population: 1286051 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MOZ`, - parent: `Africa`, - name: `Mozambique`, - population: 23929708 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NMB`, - parent: `Africa`, - name: `Namibia`, - population: 2324004 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NER`, - parent: `Africa`, - name: `Niger`, - population: 16068994 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NGA`, - parent: `Africa`, - name: `Nigeria`, - population: 162470737 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `RWD`, - parent: `Africa`, - name: `Rwanda`, - population: 10942950 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STM`, - parent: `Africa`, - name: `Sao Tome`, - population: 168526 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SEN`, - parent: `Africa`, - name: `Senegal`, - population: 12767556 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SYC`, - parent: `Africa`, - name: `Seychelles`, - population: 86000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SRL`, - parent: `Africa`, - name: `Sierra Leone`, - population: 5997486 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ZAF`, - parent: `Africa`, - name: `South Africa`, - population: 50586757 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SSD`, - parent: `Africa`, - name: `South Sudan`, - population: 10314021 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SDN`, - parent: `Africa`, - name: `Sudan`, - population: 34318385 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SWZ`, - parent: `Africa`, - name: `Swaziland`, - population: 1067773 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TNZ`, - parent: `Africa`, - name: `Tanzania`, - population: 46218486 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TOG`, - parent: `Africa`, - name: `Togo`, - population: 6154813 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `UGN`, - parent: `Africa`, - name: `Uganda`, - population: 34509205 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ZMB`, - parent: `Africa`, - name: `Zambia`, - population: 13474959 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ZWE`, - parent: `Africa`, - name: `Zimbabwe`, - population: 12754378 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AFG`, - parent: `Asia`, - name: `Afghanistan`, - population: 35320445 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BAN`, - parent: `Asia`, - name: `Bangladesh`, - population: 150493658 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BHT`, - parent: `Asia`, - name: `Bhutan`, - population: 738267 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BRN`, - parent: `Asia`, - name: `Brunei`, - population: 405938 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CAM`, - parent: `Asia`, - name: `Cambodia`, - population: 14305183 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CHI`, - parent: `Asia`, - name: `China`, - population: 1344130000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `HNK`, - parent: `Asia`, - name: `Hong Kong`, - population: 7071600 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IND`, - parent: `Asia`, - name: `India`, - population: 1241491960 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IDN`, - parent: `Asia`, - name: `Indonesia`, - population: 242325638 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `JPN`, - parent: `Asia`, - name: `Japan`, - population: 127817277 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KZH`, - parent: `Asia`, - name: `Kazakhstan`, - population: 16558676 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NKO`, - parent: `Asia`, - name: `North Korea`, - population: 24451285 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SKO`, - parent: `Asia`, - name: `South Korea`, - population: 49779000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KGZ`, - parent: `Asia`, - name: `Kyrgyzstan`, - population: 5514600 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LAO`, - parent: `Asia`, - name: `Lao PDR`, - population: 6288037 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MAC`, - parent: `Asia`, - name: `Macao`, - population: 555731 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MYS`, - parent: `Asia`, - name: `Malaysia`, - population: 28859154 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MDV`, - parent: `Asia`, - name: `Maldives`, - population: 320081 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MNG`, - parent: `Asia`, - name: `Mongolia`, - population: 2800114 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MYM`, - parent: `Asia`, - name: `Myanmar`, - population: 48336763 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NPL`, - parent: `Asia`, - name: `Nepal`, - population: 30485798 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PHP`, - parent: `Asia`, - name: `Philippines`, - population: 94852030 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SNG`, - parent: `Asia`, - name: `Singapore`, - population: 5183700 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SRL`, - parent: `Asia`, - name: `Sri Lanka`, - population: 20869000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TKS`, - parent: `Asia`, - name: `Tajikistan`, - population: 6976958 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `THL`, - parent: `Asia`, - name: `Thailand`, - population: 69518555 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TRK`, - parent: `Asia`, - name: `Turkmenistan`, - population: 5105301 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `UZB`, - parent: `Asia`, - name: `Uzbekistan`, - population: 29341200 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `VTN`, - parent: `Asia`, - name: `Vietnam`, - population: 87840000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ANT`, - parent: `Central America`, - name: `Antigua`, - population: 89612 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ARB`, - parent: `Central America`, - name: `Aruba`, - population: 108141 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BHM`, - parent: `Central America`, - name: `Bahamas`, - population: 347176 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BRB`, - parent: `Central America`, - name: `Barbados`, - population: 273925 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BLZ`, - parent: `Central America`, - name: `Belize`, - population: 356600 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BRM`, - parent: `Central America`, - name: `Bermuda`, - population: 64700 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CYI`, - parent: `Central America`, - name: `Cayman Islands`, - population: 56729 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CSR`, - parent: `Central America`, - name: `Costa Rica`, - population: 4726575 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CUB`, - parent: `Central America`, - name: `Cuba`, - population: 11253665 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CUR`, - parent: `Central America`, - name: `Curacao`, - population: 145619 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DMA`, - parent: `Central America`, - name: `Dominica`, - population: 67675 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DOM`, - parent: `Central America`, - name: `Dominican Republic`, - population: 10056181 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SLV`, - parent: `Central America`, - name: `El Salvador`, - population: 6227491 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `FIS`, - parent: `Central America`, - name: `Faeroe Islands`, - population: 48863 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GND`, - parent: `Central America`, - name: `Grenada`, - population: 104890 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GUA`, - parent: `Central America`, - name: `Guam`, - population: 182111 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GTM`, - parent: `Central America`, - name: `Guatemala`, - population: 14757316 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `HAT`, - parent: `Central America`, - name: `Haiti`, - population: 10123787 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `HON`, - parent: `Central America`, - name: `Honduras`, - population: 7754687 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `JAM`, - parent: `Central America`, - name: `Jamaica`, - population: 2706500 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NCR`, - parent: `Central America`, - name: `Nicaragua`, - population: 5869859 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NMI`, - parent: `Central America`, - name: `Northern Mariana Islands`, - population: 61174 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PAN`, - parent: `Central America`, - name: `Panama`, - population: 3571185 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PRT`, - parent: `Central America`, - name: `Puerto Rico`, - population: 3706690 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STK`, - parent: `Central America`, - name: `St. Kitts`, - population: 53051 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STL`, - parent: `Central America`, - name: `St. Lucia`, - population: 176000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STV`, - parent: `Central America`, - name: `St. Vincent`, - population: 109365 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TAB`, - parent: `Central America`, - name: `Trinidad and Tobago`, - population: 1346350 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `RCI`, - parent: `Central America`, - name: `Turks and Caicos Islands`, - population: 39184 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ISV`, - parent: `Central America`, - name: `US Virgin Islands`, - population: 109666 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ALB`, - parent: `Europe`, - name: `Albania`, - population: 3215988 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AND`, - parent: `Europe`, - name: `Andorra`, - population: 86165 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ARM`, - parent: `Europe`, - name: `Armenia`, - population: 3100236 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AUT`, - parent: `Europe`, - name: `Austria`, - population: 8423635 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BER`, - parent: `Europe`, - name: `Belarus`, - population: 9473000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BEL`, - parent: `Europe`, - name: `Belgium`, - population: 11020952 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BIH`, - parent: `Europe`, - name: `Bosnia`, - population: 3752228 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BUL`, - parent: `Europe`, - name: `Bulgaria`, - population: 7348328 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CHI`, - parent: `Europe`, - name: `Channel Islands`, - population: 153876 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CRO`, - parent: `Europe`, - name: `Croatia`, - population: 4403000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CYP`, - parent: `Europe`, - name: `Cyprus`, - population: 1116564 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CZE`, - parent: `Europe`, - name: `Czechia`, - population: 10496088 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DEN`, - parent: `Europe`, - name: `Denmark`, - population: 5570572 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `EST`, - parent: `Europe`, - name: `Estonia`, - population: 1339928 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `FIN`, - parent: `Europe`, - name: `Finland`, - population: 5388272 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `FRA`, - parent: `Europe`, - name: `France`, - population: 65433714 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GEO`, - parent: `Europe`, - name: `Georgia`, - population: 4486000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DEU`, - parent: `Europe`, - name: `Germany`, - population: 81797673 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GRC`, - parent: `Europe`, - name: `Greece`, - population: 11300410 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `HUN`, - parent: `Europe`, - name: `Hungary`, - population: 9971727 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ICE`, - parent: `Europe`, - name: `Iceland`, - population: 319014 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IRE`, - parent: `Europe`, - name: `Ireland`, - population: 4576317 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IOM`, - parent: `Europe`, - name: `Isle of Man`, - population: 83327 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ITA`, - parent: `Europe`, - name: `Italy`, - population: 60723603 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KOS`, - parent: `Europe`, - name: `Kosovo`, - population: 1802765 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LAT`, - parent: `Europe`, - name: `Latvia`, - population: 2058184 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LVA`, - parent: `Europe`, - name: `Liechtenstein`, - population: 36304 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LTU`, - parent: `Europe`, - name: `Lithuania`, - population: 3030173 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LUX`, - parent: `Europe`, - name: `Luxembourg`, - population: 518252 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MKD`, - parent: `Europe`, - name: `North Macedonia`, - population: 2063893 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MLT`, - parent: `Europe`, - name: `Malta`, - population: 415654 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MDA`, - parent: `Europe`, - name: `Moldova`, - population: 3559000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MON`, - parent: `Europe`, - name: `Monaco`, - population: 35427 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MNE`, - parent: `Europe`, - name: `Montenegro`, - population: 632261 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MLD`, - parent: `Europe`, - name: `Netherlands`, - population: 16693074 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NOR`, - parent: `Europe`, - name: `Norway`, - population: 4953088 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `POL`, - parent: `Europe`, - name: `Poland`, - population: 38534157 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `POR`, - parent: `Europe`, - name: `Portugal`, - population: 10556999 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ROM`, - parent: `Europe`, - name: `Romania`, - population: 21384832 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `RUS`, - parent: `Europe`, - name: `Russia`, - population: 142960000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SMR`, - parent: `Europe`, - name: `San Marino`, - population: 31735 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SBR`, - parent: `Europe`, - name: `Serbia`, - population: 7258745 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STM`, - parent: `Europe`, - name: `Sint Maarten`, - population: 36609 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SVK`, - parent: `Europe`, - name: `Slovakia`, - population: 5398384 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SLO`, - parent: `Europe`, - name: `Slovenia`, - population: 2052843 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ESP`, - parent: `Europe`, - name: `Spain`, - population: 46174601 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `STM`, - parent: `Europe`, - name: `St. Martin`, - population: 30615 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SWE`, - parent: `Europe`, - name: `Sweden`, - population: 9449213 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CHE`, - parent: `Europe`, - name: `Switzerland`, - population: 7912398 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `UKR`, - parent: `Europe`, - name: `Ukraine`, - population: 45706100 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GBR`, - parent: `Europe`, - name: `United Kingdom`, - population: 62744081 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `DZA`, - parent: `Middle East`, - name: `Algeria`, - population: 35980193 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AZE`, - parent: `Middle East`, - name: `Azerbaijan`, - population: 9173082 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BHR`, - parent: `Middle East`, - name: `Bahrain`, - population: 1323535 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `EGY`, - parent: `Middle East`, - name: `Egypt`, - population: 82536770 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IRN`, - parent: `Middle East`, - name: `Iran`, - population: 74798599 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `IRQ`, - parent: `Middle East`, - name: `Iraq`, - population: 32961959 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ISR`, - parent: `Middle East`, - name: `Israel`, - population: 7765900 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `JOR`, - parent: `Middle East`, - name: `Jordan`, - population: 6181000 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KWT`, - parent: `Middle East`, - name: `Kuwait`, - population: 2818042 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LBN`, - parent: `Middle East`, - name: `Lebanon`, - population: 4259405 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `LBY`, - parent: `Middle East`, - name: `Libya`, - population: 6422772 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MAR`, - parent: `Middle East`, - name: `Morocco`, - population: 32272974 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `OMN`, - parent: `Middle East`, - name: `Oman`, - population: 2846145 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PKS`, - parent: `Middle East`, - name: `Pakistan`, - population: 176745364 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `QTR`, - parent: `Middle East`, - name: `Qatar`, - population: 1870041 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SAR`, - parent: `Middle East`, - name: `Saudi Arabia`, - population: 28082541 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SOM`, - parent: `Middle East`, - name: `Somalia`, - population: 9556873 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SYR`, - parent: `Middle East`, - name: `Syria`, - population: 20820311 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TUN`, - parent: `Middle East`, - name: `Tunisia`, - population: 10673800 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TUR`, - parent: `Middle East`, - name: `Turkey`, - population: 73639596 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `UAE`, - parent: `Middle East`, - name: `United Arab Emirates`, - population: 7890924 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `WTB`, - parent: `Middle East`, - name: `West Bank`, - population: 3927051 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `YEM`, - parent: `Middle East`, - name: `Yemen`, - population: 24799880 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CAN`, - parent: `North America`, - name: `Canada`, - population: 34483975 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GRL`, - parent: `North America`, - name: `Greenland`, - population: 56840 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MEX`, - parent: `North America`, - name: `Mexico`, - population: 114793341 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `USA`, - parent: `North America`, - name: `United States`, - population: 311591917 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AMS`, - parent: `Oceania`, - name: `American Samoa`, - population: 69543 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `AUS`, - parent: `Oceania`, - name: `Australia`, - population: 22323900 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `FIJ`, - parent: `Oceania`, - name: `Fiji`, - population: 868406 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `FRP`, - parent: `Oceania`, - name: `French Polynesia`, - population: 273777 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `KIR`, - parent: `Oceania`, - name: `Kiribati`, - population: 101093 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MIS`, - parent: `Oceania`, - name: `Marshall Islands`, - population: 54816 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `MCR`, - parent: `Oceania`, - name: `Micronesia`, - population: 111542 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NCD`, - parent: `Oceania`, - name: `New Caledonia`, - population: 254024 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `NZL`, - parent: `Oceania`, - name: `New Zealand`, - population: 4405200 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PAL`, - parent: `Oceania`, - name: `Palau`, - population: 20609 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PNG`, - parent: `Oceania`, - name: `Papua New Guinea`, - population: 7013829 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SAM`, - parent: `Oceania`, - name: `Samoa`, - population: 183874 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SIS`, - parent: `Oceania`, - name: `Solomon Islands`, - population: 552267 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TML`, - parent: `Oceania`, - name: `Timor-Leste`, - population: 1175880 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TON`, - parent: `Oceania`, - name: `Tonga`, - population: 104509 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `TUV`, - parent: `Oceania`, - name: `Tuvalu`, - population: 9847 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `VNT`, - parent: `Oceania`, - name: `Vanuatu`, - population: 245619 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ARG`, - parent: `South America`, - name: `Argentina`, - population: 40764561 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BOL`, - parent: `South America`, - name: `Bolivia`, - population: 10088108 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `BRA`, - parent: `South America`, - name: `Brazil`, - population: 196655014 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `CHI`, - parent: `South America`, - name: `Chile`, - population: 17269525 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `COL`, - parent: `South America`, - name: `Colombia`, - population: 46927125 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `ECU`, - parent: `South America`, - name: `Ecuador`, - population: 14666055 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `GUY`, - parent: `South America`, - name: `Guyana`, - population: 756040 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PAR`, - parent: `South America`, - name: `Paraguay`, - population: 6568290 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `PER`, - parent: `South America`, - name: `Peru`, - population: 29399817 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `SUR`, - parent: `South America`, - name: `Suriname`, - population: 529419 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `URG`, - parent: `South America`, - name: `Uruguay`, - population: 3368595 - })); - this.push(new CountyHierarchicalDataItem( - { - code: `VEN`, - parent: `South America`, - name: `Venezuela`, - population: 29278000 - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountyHierarchicalDataItem( + { + code: `AFC`, + parent: null, + name: `Africa`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `ASA`, + parent: null, + name: `Asia`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `EUR`, + parent: null, + name: `Europe`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `MDE`, + parent: null, + name: `Middle East`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `NAM`, + parent: null, + name: `North America`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `CAM`, + parent: null, + name: `Central America`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `SAM`, + parent: null, + name: `South America`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `OCE`, + parent: null, + name: `Oceania`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `ANG`, + parent: `Africa`, + name: `Angola`, + population: 19618432 + }), + new CountyHierarchicalDataItem( + { + code: `BEN`, + parent: `Africa`, + name: `Benin`, + population: 9099922 + }), + new CountyHierarchicalDataItem( + { + code: `BOT`, + parent: `Africa`, + name: `Botswana`, + population: 2030738 + }), + new CountyHierarchicalDataItem( + { + code: `BUR`, + parent: `Africa`, + name: `Burkina Faso`, + population: 16967845 + }), + new CountyHierarchicalDataItem( + { + code: `BUR`, + parent: `Africa`, + name: `Burundi`, + population: 8575172 + }), + new CountyHierarchicalDataItem( + { + code: `CAM`, + parent: `Africa`, + name: `Cameroon`, + population: 20030362 + }), + new CountyHierarchicalDataItem( + { + code: `CPV`, + parent: `Africa`, + name: `Cape Verde`, + population: 500585 + }), + new CountyHierarchicalDataItem( + { + code: `CAR`, + parent: `Africa`, + name: `Central African Republic`, + population: 4486837 + }), + new CountyHierarchicalDataItem( + { + code: `CHD`, + parent: `Africa`, + name: `Chad`, + population: 11525496 + }), + new CountyHierarchicalDataItem( + { + code: `COM`, + parent: `Africa`, + name: `Comoros`, + population: 753943 + }), + new CountyHierarchicalDataItem( + { + code: `DRC`, + parent: `Africa`, + name: `Congo DRC`, + population: 67757577 + }), + new CountyHierarchicalDataItem( + { + code: `CRP`, + parent: `Africa`, + name: `Congo Republic`, + population: 4139748 + }), + new CountyHierarchicalDataItem( + { + code: `CIR`, + parent: `Africa`, + name: `Cote Ivoire`, + population: 20152894 + }), + new CountyHierarchicalDataItem( + { + code: `DBT`, + parent: `Africa`, + name: `Djibouti`, + population: 905564 + }), + new CountyHierarchicalDataItem( + { + code: `ETG`, + parent: `Africa`, + name: `Equatorial Guinea`, + population: 720213 + }), + new CountyHierarchicalDataItem( + { + code: `ERT`, + parent: `Africa`, + name: `Eritrea`, + population: 5415280 + }), + new CountyHierarchicalDataItem( + { + code: `ETH`, + parent: `Africa`, + name: `Ethiopia`, + population: 84734262 + }), + new CountyHierarchicalDataItem( + { + code: `GBN`, + parent: `Africa`, + name: `Gabon`, + population: 1534262 + }), + new CountyHierarchicalDataItem( + { + code: `GMB`, + parent: `Africa`, + name: `Gambia`, + population: 1776103 + }), + new CountyHierarchicalDataItem( + { + code: `GHN`, + parent: `Africa`, + name: `Ghana`, + population: 24965816 + }), + new CountyHierarchicalDataItem( + { + code: `GUN`, + parent: `Africa`, + name: `Guinea`, + population: 10221808 + }), + new CountyHierarchicalDataItem( + { + code: `GNB`, + parent: `Africa`, + name: `Guinea-Bissau`, + population: 1547061 + }), + new CountyHierarchicalDataItem( + { + code: `KEN`, + parent: `Africa`, + name: `Kenya`, + population: 41609728 + }), + new CountyHierarchicalDataItem( + { + code: `LES`, + parent: `Africa`, + name: `Lesotho`, + population: 2193843 + }), + new CountyHierarchicalDataItem( + { + code: `LBR`, + parent: `Africa`, + name: `Liberia`, + population: 4128572 + }), + new CountyHierarchicalDataItem( + { + code: `MDG`, + parent: `Africa`, + name: `Madagascar`, + population: 21315135 + }), + new CountyHierarchicalDataItem( + { + code: `MLW`, + parent: `Africa`, + name: `Malawi`, + population: 15380888 + }), + new CountyHierarchicalDataItem( + { + code: `MAL`, + parent: `Africa`, + name: `Mali`, + population: 15839538 + }), + new CountyHierarchicalDataItem( + { + code: `MRT`, + parent: `Africa`, + name: `Mauritania`, + population: 3541540 + }), + new CountyHierarchicalDataItem( + { + code: `MUS`, + parent: `Africa`, + name: `Mauritius`, + population: 1286051 + }), + new CountyHierarchicalDataItem( + { + code: `MOZ`, + parent: `Africa`, + name: `Mozambique`, + population: 23929708 + }), + new CountyHierarchicalDataItem( + { + code: `NMB`, + parent: `Africa`, + name: `Namibia`, + population: 2324004 + }), + new CountyHierarchicalDataItem( + { + code: `NER`, + parent: `Africa`, + name: `Niger`, + population: 16068994 + }), + new CountyHierarchicalDataItem( + { + code: `NGA`, + parent: `Africa`, + name: `Nigeria`, + population: 162470737 + }), + new CountyHierarchicalDataItem( + { + code: `RWD`, + parent: `Africa`, + name: `Rwanda`, + population: 10942950 + }), + new CountyHierarchicalDataItem( + { + code: `STM`, + parent: `Africa`, + name: `Sao Tome`, + population: 168526 + }), + new CountyHierarchicalDataItem( + { + code: `SEN`, + parent: `Africa`, + name: `Senegal`, + population: 12767556 + }), + new CountyHierarchicalDataItem( + { + code: `SYC`, + parent: `Africa`, + name: `Seychelles`, + population: 86000 + }), + new CountyHierarchicalDataItem( + { + code: `SRL`, + parent: `Africa`, + name: `Sierra Leone`, + population: 5997486 + }), + new CountyHierarchicalDataItem( + { + code: `ZAF`, + parent: `Africa`, + name: `South Africa`, + population: 50586757 + }), + new CountyHierarchicalDataItem( + { + code: `SSD`, + parent: `Africa`, + name: `South Sudan`, + population: 10314021 + }), + new CountyHierarchicalDataItem( + { + code: `SDN`, + parent: `Africa`, + name: `Sudan`, + population: 34318385 + }), + new CountyHierarchicalDataItem( + { + code: `SWZ`, + parent: `Africa`, + name: `Swaziland`, + population: 1067773 + }), + new CountyHierarchicalDataItem( + { + code: `TNZ`, + parent: `Africa`, + name: `Tanzania`, + population: 46218486 + }), + new CountyHierarchicalDataItem( + { + code: `TOG`, + parent: `Africa`, + name: `Togo`, + population: 6154813 + }), + new CountyHierarchicalDataItem( + { + code: `UGN`, + parent: `Africa`, + name: `Uganda`, + population: 34509205 + }), + new CountyHierarchicalDataItem( + { + code: `ZMB`, + parent: `Africa`, + name: `Zambia`, + population: 13474959 + }), + new CountyHierarchicalDataItem( + { + code: `ZWE`, + parent: `Africa`, + name: `Zimbabwe`, + population: 12754378 + }), + new CountyHierarchicalDataItem( + { + code: `AFG`, + parent: `Asia`, + name: `Afghanistan`, + population: 35320445 + }), + new CountyHierarchicalDataItem( + { + code: `BAN`, + parent: `Asia`, + name: `Bangladesh`, + population: 150493658 + }), + new CountyHierarchicalDataItem( + { + code: `BHT`, + parent: `Asia`, + name: `Bhutan`, + population: 738267 + }), + new CountyHierarchicalDataItem( + { + code: `BRN`, + parent: `Asia`, + name: `Brunei`, + population: 405938 + }), + new CountyHierarchicalDataItem( + { + code: `CAM`, + parent: `Asia`, + name: `Cambodia`, + population: 14305183 + }), + new CountyHierarchicalDataItem( + { + code: `CHI`, + parent: `Asia`, + name: `China`, + population: 1344130000 + }), + new CountyHierarchicalDataItem( + { + code: `HNK`, + parent: `Asia`, + name: `Hong Kong`, + population: 7071600 + }), + new CountyHierarchicalDataItem( + { + code: `IND`, + parent: `Asia`, + name: `India`, + population: 1241491960 + }), + new CountyHierarchicalDataItem( + { + code: `IDN`, + parent: `Asia`, + name: `Indonesia`, + population: 242325638 + }), + new CountyHierarchicalDataItem( + { + code: `JPN`, + parent: `Asia`, + name: `Japan`, + population: 127817277 + }), + new CountyHierarchicalDataItem( + { + code: `KZH`, + parent: `Asia`, + name: `Kazakhstan`, + population: 16558676 + }), + new CountyHierarchicalDataItem( + { + code: `NKO`, + parent: `Asia`, + name: `North Korea`, + population: 24451285 + }), + new CountyHierarchicalDataItem( + { + code: `SKO`, + parent: `Asia`, + name: `South Korea`, + population: 49779000 + }), + new CountyHierarchicalDataItem( + { + code: `KGZ`, + parent: `Asia`, + name: `Kyrgyzstan`, + population: 5514600 + }), + new CountyHierarchicalDataItem( + { + code: `LAO`, + parent: `Asia`, + name: `Lao PDR`, + population: 6288037 + }), + new CountyHierarchicalDataItem( + { + code: `MAC`, + parent: `Asia`, + name: `Macao`, + population: 555731 + }), + new CountyHierarchicalDataItem( + { + code: `MYS`, + parent: `Asia`, + name: `Malaysia`, + population: 28859154 + }), + new CountyHierarchicalDataItem( + { + code: `MDV`, + parent: `Asia`, + name: `Maldives`, + population: 320081 + }), + new CountyHierarchicalDataItem( + { + code: `MNG`, + parent: `Asia`, + name: `Mongolia`, + population: 2800114 + }), + new CountyHierarchicalDataItem( + { + code: `MYM`, + parent: `Asia`, + name: `Myanmar`, + population: 48336763 + }), + new CountyHierarchicalDataItem( + { + code: `NPL`, + parent: `Asia`, + name: `Nepal`, + population: 30485798 + }), + new CountyHierarchicalDataItem( + { + code: `PHP`, + parent: `Asia`, + name: `Philippines`, + population: 94852030 + }), + new CountyHierarchicalDataItem( + { + code: `SNG`, + parent: `Asia`, + name: `Singapore`, + population: 5183700 + }), + new CountyHierarchicalDataItem( + { + code: `SRL`, + parent: `Asia`, + name: `Sri Lanka`, + population: 20869000 + }), + new CountyHierarchicalDataItem( + { + code: `TKS`, + parent: `Asia`, + name: `Tajikistan`, + population: 6976958 + }), + new CountyHierarchicalDataItem( + { + code: `THL`, + parent: `Asia`, + name: `Thailand`, + population: 69518555 + }), + new CountyHierarchicalDataItem( + { + code: `TRK`, + parent: `Asia`, + name: `Turkmenistan`, + population: 5105301 + }), + new CountyHierarchicalDataItem( + { + code: `UZB`, + parent: `Asia`, + name: `Uzbekistan`, + population: 29341200 + }), + new CountyHierarchicalDataItem( + { + code: `VTN`, + parent: `Asia`, + name: `Vietnam`, + population: 87840000 + }), + new CountyHierarchicalDataItem( + { + code: `ANT`, + parent: `Central America`, + name: `Antigua`, + population: 89612 + }), + new CountyHierarchicalDataItem( + { + code: `ARB`, + parent: `Central America`, + name: `Aruba`, + population: 108141 + }), + new CountyHierarchicalDataItem( + { + code: `BHM`, + parent: `Central America`, + name: `Bahamas`, + population: 347176 + }), + new CountyHierarchicalDataItem( + { + code: `BRB`, + parent: `Central America`, + name: `Barbados`, + population: 273925 + }), + new CountyHierarchicalDataItem( + { + code: `BLZ`, + parent: `Central America`, + name: `Belize`, + population: 356600 + }), + new CountyHierarchicalDataItem( + { + code: `BRM`, + parent: `Central America`, + name: `Bermuda`, + population: 64700 + }), + new CountyHierarchicalDataItem( + { + code: `CYI`, + parent: `Central America`, + name: `Cayman Islands`, + population: 56729 + }), + new CountyHierarchicalDataItem( + { + code: `CSR`, + parent: `Central America`, + name: `Costa Rica`, + population: 4726575 + }), + new CountyHierarchicalDataItem( + { + code: `CUB`, + parent: `Central America`, + name: `Cuba`, + population: 11253665 + }), + new CountyHierarchicalDataItem( + { + code: `CUR`, + parent: `Central America`, + name: `Curacao`, + population: 145619 + }), + new CountyHierarchicalDataItem( + { + code: `DMA`, + parent: `Central America`, + name: `Dominica`, + population: 67675 + }), + new CountyHierarchicalDataItem( + { + code: `DOM`, + parent: `Central America`, + name: `Dominican Republic`, + population: 10056181 + }), + new CountyHierarchicalDataItem( + { + code: `SLV`, + parent: `Central America`, + name: `El Salvador`, + population: 6227491 + }), + new CountyHierarchicalDataItem( + { + code: `FIS`, + parent: `Central America`, + name: `Faeroe Islands`, + population: 48863 + }), + new CountyHierarchicalDataItem( + { + code: `GND`, + parent: `Central America`, + name: `Grenada`, + population: 104890 + }), + new CountyHierarchicalDataItem( + { + code: `GUA`, + parent: `Central America`, + name: `Guam`, + population: 182111 + }), + new CountyHierarchicalDataItem( + { + code: `GTM`, + parent: `Central America`, + name: `Guatemala`, + population: 14757316 + }), + new CountyHierarchicalDataItem( + { + code: `HAT`, + parent: `Central America`, + name: `Haiti`, + population: 10123787 + }), + new CountyHierarchicalDataItem( + { + code: `HON`, + parent: `Central America`, + name: `Honduras`, + population: 7754687 + }), + new CountyHierarchicalDataItem( + { + code: `JAM`, + parent: `Central America`, + name: `Jamaica`, + population: 2706500 + }), + new CountyHierarchicalDataItem( + { + code: `NCR`, + parent: `Central America`, + name: `Nicaragua`, + population: 5869859 + }), + new CountyHierarchicalDataItem( + { + code: `NMI`, + parent: `Central America`, + name: `Northern Mariana Islands`, + population: 61174 + }), + new CountyHierarchicalDataItem( + { + code: `PAN`, + parent: `Central America`, + name: `Panama`, + population: 3571185 + }), + new CountyHierarchicalDataItem( + { + code: `PRT`, + parent: `Central America`, + name: `Puerto Rico`, + population: 3706690 + }), + new CountyHierarchicalDataItem( + { + code: `STK`, + parent: `Central America`, + name: `St. Kitts`, + population: 53051 + }), + new CountyHierarchicalDataItem( + { + code: `STL`, + parent: `Central America`, + name: `St. Lucia`, + population: 176000 + }), + new CountyHierarchicalDataItem( + { + code: `STV`, + parent: `Central America`, + name: `St. Vincent`, + population: 109365 + }), + new CountyHierarchicalDataItem( + { + code: `TAB`, + parent: `Central America`, + name: `Trinidad and Tobago`, + population: 1346350 + }), + new CountyHierarchicalDataItem( + { + code: `RCI`, + parent: `Central America`, + name: `Turks and Caicos Islands`, + population: 39184 + }), + new CountyHierarchicalDataItem( + { + code: `ISV`, + parent: `Central America`, + name: `US Virgin Islands`, + population: 109666 + }), + new CountyHierarchicalDataItem( + { + code: `ALB`, + parent: `Europe`, + name: `Albania`, + population: 3215988 + }), + new CountyHierarchicalDataItem( + { + code: `AND`, + parent: `Europe`, + name: `Andorra`, + population: 86165 + }), + new CountyHierarchicalDataItem( + { + code: `ARM`, + parent: `Europe`, + name: `Armenia`, + population: 3100236 + }), + new CountyHierarchicalDataItem( + { + code: `AUT`, + parent: `Europe`, + name: `Austria`, + population: 8423635 + }), + new CountyHierarchicalDataItem( + { + code: `BER`, + parent: `Europe`, + name: `Belarus`, + population: 9473000 + }), + new CountyHierarchicalDataItem( + { + code: `BEL`, + parent: `Europe`, + name: `Belgium`, + population: 11020952 + }), + new CountyHierarchicalDataItem( + { + code: `BIH`, + parent: `Europe`, + name: `Bosnia`, + population: 3752228 + }), + new CountyHierarchicalDataItem( + { + code: `BUL`, + parent: `Europe`, + name: `Bulgaria`, + population: 7348328 + }), + new CountyHierarchicalDataItem( + { + code: `CHI`, + parent: `Europe`, + name: `Channel Islands`, + population: 153876 + }), + new CountyHierarchicalDataItem( + { + code: `CRO`, + parent: `Europe`, + name: `Croatia`, + population: 4403000 + }), + new CountyHierarchicalDataItem( + { + code: `CYP`, + parent: `Europe`, + name: `Cyprus`, + population: 1116564 + }), + new CountyHierarchicalDataItem( + { + code: `CZE`, + parent: `Europe`, + name: `Czechia`, + population: 10496088 + }), + new CountyHierarchicalDataItem( + { + code: `DEN`, + parent: `Europe`, + name: `Denmark`, + population: 5570572 + }), + new CountyHierarchicalDataItem( + { + code: `EST`, + parent: `Europe`, + name: `Estonia`, + population: 1339928 + }), + new CountyHierarchicalDataItem( + { + code: `FIN`, + parent: `Europe`, + name: `Finland`, + population: 5388272 + }), + new CountyHierarchicalDataItem( + { + code: `FRA`, + parent: `Europe`, + name: `France`, + population: 65433714 + }), + new CountyHierarchicalDataItem( + { + code: `GEO`, + parent: `Europe`, + name: `Georgia`, + population: 4486000 + }), + new CountyHierarchicalDataItem( + { + code: `DEU`, + parent: `Europe`, + name: `Germany`, + population: 81797673 + }), + new CountyHierarchicalDataItem( + { + code: `GRC`, + parent: `Europe`, + name: `Greece`, + population: 11300410 + }), + new CountyHierarchicalDataItem( + { + code: `HUN`, + parent: `Europe`, + name: `Hungary`, + population: 9971727 + }), + new CountyHierarchicalDataItem( + { + code: `ICE`, + parent: `Europe`, + name: `Iceland`, + population: 319014 + }), + new CountyHierarchicalDataItem( + { + code: `IRE`, + parent: `Europe`, + name: `Ireland`, + population: 4576317 + }), + new CountyHierarchicalDataItem( + { + code: `IOM`, + parent: `Europe`, + name: `Isle of Man`, + population: 83327 + }), + new CountyHierarchicalDataItem( + { + code: `ITA`, + parent: `Europe`, + name: `Italy`, + population: 60723603 + }), + new CountyHierarchicalDataItem( + { + code: `KOS`, + parent: `Europe`, + name: `Kosovo`, + population: 1802765 + }), + new CountyHierarchicalDataItem( + { + code: `LAT`, + parent: `Europe`, + name: `Latvia`, + population: 2058184 + }), + new CountyHierarchicalDataItem( + { + code: `LVA`, + parent: `Europe`, + name: `Liechtenstein`, + population: 36304 + }), + new CountyHierarchicalDataItem( + { + code: `LTU`, + parent: `Europe`, + name: `Lithuania`, + population: 3030173 + }), + new CountyHierarchicalDataItem( + { + code: `LUX`, + parent: `Europe`, + name: `Luxembourg`, + population: 518252 + }), + new CountyHierarchicalDataItem( + { + code: `MKD`, + parent: `Europe`, + name: `North Macedonia`, + population: 2063893 + }), + new CountyHierarchicalDataItem( + { + code: `MLT`, + parent: `Europe`, + name: `Malta`, + population: 415654 + }), + new CountyHierarchicalDataItem( + { + code: `MDA`, + parent: `Europe`, + name: `Moldova`, + population: 3559000 + }), + new CountyHierarchicalDataItem( + { + code: `MON`, + parent: `Europe`, + name: `Monaco`, + population: 35427 + }), + new CountyHierarchicalDataItem( + { + code: `MNE`, + parent: `Europe`, + name: `Montenegro`, + population: 632261 + }), + new CountyHierarchicalDataItem( + { + code: `MLD`, + parent: `Europe`, + name: `Netherlands`, + population: 16693074 + }), + new CountyHierarchicalDataItem( + { + code: `NOR`, + parent: `Europe`, + name: `Norway`, + population: 4953088 + }), + new CountyHierarchicalDataItem( + { + code: `POL`, + parent: `Europe`, + name: `Poland`, + population: 38534157 + }), + new CountyHierarchicalDataItem( + { + code: `POR`, + parent: `Europe`, + name: `Portugal`, + population: 10556999 + }), + new CountyHierarchicalDataItem( + { + code: `ROM`, + parent: `Europe`, + name: `Romania`, + population: 21384832 + }), + new CountyHierarchicalDataItem( + { + code: `RUS`, + parent: `Europe`, + name: `Russia`, + population: 142960000 + }), + new CountyHierarchicalDataItem( + { + code: `SMR`, + parent: `Europe`, + name: `San Marino`, + population: 31735 + }), + new CountyHierarchicalDataItem( + { + code: `SBR`, + parent: `Europe`, + name: `Serbia`, + population: 7258745 + }), + new CountyHierarchicalDataItem( + { + code: `STM`, + parent: `Europe`, + name: `Sint Maarten`, + population: 36609 + }), + new CountyHierarchicalDataItem( + { + code: `SVK`, + parent: `Europe`, + name: `Slovakia`, + population: 5398384 + }), + new CountyHierarchicalDataItem( + { + code: `SLO`, + parent: `Europe`, + name: `Slovenia`, + population: 2052843 + }), + new CountyHierarchicalDataItem( + { + code: `ESP`, + parent: `Europe`, + name: `Spain`, + population: 46174601 + }), + new CountyHierarchicalDataItem( + { + code: `STM`, + parent: `Europe`, + name: `St. Martin`, + population: 30615 + }), + new CountyHierarchicalDataItem( + { + code: `SWE`, + parent: `Europe`, + name: `Sweden`, + population: 9449213 + }), + new CountyHierarchicalDataItem( + { + code: `CHE`, + parent: `Europe`, + name: `Switzerland`, + population: 7912398 + }), + new CountyHierarchicalDataItem( + { + code: `UKR`, + parent: `Europe`, + name: `Ukraine`, + population: 45706100 + }), + new CountyHierarchicalDataItem( + { + code: `GBR`, + parent: `Europe`, + name: `United Kingdom`, + population: 62744081 + }), + new CountyHierarchicalDataItem( + { + code: `DZA`, + parent: `Middle East`, + name: `Algeria`, + population: 35980193 + }), + new CountyHierarchicalDataItem( + { + code: `AZE`, + parent: `Middle East`, + name: `Azerbaijan`, + population: 9173082 + }), + new CountyHierarchicalDataItem( + { + code: `BHR`, + parent: `Middle East`, + name: `Bahrain`, + population: 1323535 + }), + new CountyHierarchicalDataItem( + { + code: `EGY`, + parent: `Middle East`, + name: `Egypt`, + population: 82536770 + }), + new CountyHierarchicalDataItem( + { + code: `IRN`, + parent: `Middle East`, + name: `Iran`, + population: 74798599 + }), + new CountyHierarchicalDataItem( + { + code: `IRQ`, + parent: `Middle East`, + name: `Iraq`, + population: 32961959 + }), + new CountyHierarchicalDataItem( + { + code: `ISR`, + parent: `Middle East`, + name: `Israel`, + population: 7765900 + }), + new CountyHierarchicalDataItem( + { + code: `JOR`, + parent: `Middle East`, + name: `Jordan`, + population: 6181000 + }), + new CountyHierarchicalDataItem( + { + code: `KWT`, + parent: `Middle East`, + name: `Kuwait`, + population: 2818042 + }), + new CountyHierarchicalDataItem( + { + code: `LBN`, + parent: `Middle East`, + name: `Lebanon`, + population: 4259405 + }), + new CountyHierarchicalDataItem( + { + code: `LBY`, + parent: `Middle East`, + name: `Libya`, + population: 6422772 + }), + new CountyHierarchicalDataItem( + { + code: `MAR`, + parent: `Middle East`, + name: `Morocco`, + population: 32272974 + }), + new CountyHierarchicalDataItem( + { + code: `OMN`, + parent: `Middle East`, + name: `Oman`, + population: 2846145 + }), + new CountyHierarchicalDataItem( + { + code: `PKS`, + parent: `Middle East`, + name: `Pakistan`, + population: 176745364 + }), + new CountyHierarchicalDataItem( + { + code: `QTR`, + parent: `Middle East`, + name: `Qatar`, + population: 1870041 + }), + new CountyHierarchicalDataItem( + { + code: `SAR`, + parent: `Middle East`, + name: `Saudi Arabia`, + population: 28082541 + }), + new CountyHierarchicalDataItem( + { + code: `SOM`, + parent: `Middle East`, + name: `Somalia`, + population: 9556873 + }), + new CountyHierarchicalDataItem( + { + code: `SYR`, + parent: `Middle East`, + name: `Syria`, + population: 20820311 + }), + new CountyHierarchicalDataItem( + { + code: `TUN`, + parent: `Middle East`, + name: `Tunisia`, + population: 10673800 + }), + new CountyHierarchicalDataItem( + { + code: `TUR`, + parent: `Middle East`, + name: `Turkey`, + population: 73639596 + }), + new CountyHierarchicalDataItem( + { + code: `UAE`, + parent: `Middle East`, + name: `United Arab Emirates`, + population: 7890924 + }), + new CountyHierarchicalDataItem( + { + code: `WTB`, + parent: `Middle East`, + name: `West Bank`, + population: 3927051 + }), + new CountyHierarchicalDataItem( + { + code: `YEM`, + parent: `Middle East`, + name: `Yemen`, + population: 24799880 + }), + new CountyHierarchicalDataItem( + { + code: `CAN`, + parent: `North America`, + name: `Canada`, + population: 34483975 + }), + new CountyHierarchicalDataItem( + { + code: `GRL`, + parent: `North America`, + name: `Greenland`, + population: 56840 + }), + new CountyHierarchicalDataItem( + { + code: `MEX`, + parent: `North America`, + name: `Mexico`, + population: 114793341 + }), + new CountyHierarchicalDataItem( + { + code: `USA`, + parent: `North America`, + name: `United States`, + population: 311591917 + }), + new CountyHierarchicalDataItem( + { + code: `AMS`, + parent: `Oceania`, + name: `American Samoa`, + population: 69543 + }), + new CountyHierarchicalDataItem( + { + code: `AUS`, + parent: `Oceania`, + name: `Australia`, + population: 22323900 + }), + new CountyHierarchicalDataItem( + { + code: `FIJ`, + parent: `Oceania`, + name: `Fiji`, + population: 868406 + }), + new CountyHierarchicalDataItem( + { + code: `FRP`, + parent: `Oceania`, + name: `French Polynesia`, + population: 273777 + }), + new CountyHierarchicalDataItem( + { + code: `KIR`, + parent: `Oceania`, + name: `Kiribati`, + population: 101093 + }), + new CountyHierarchicalDataItem( + { + code: `MIS`, + parent: `Oceania`, + name: `Marshall Islands`, + population: 54816 + }), + new CountyHierarchicalDataItem( + { + code: `MCR`, + parent: `Oceania`, + name: `Micronesia`, + population: 111542 + }), + new CountyHierarchicalDataItem( + { + code: `NCD`, + parent: `Oceania`, + name: `New Caledonia`, + population: 254024 + }), + new CountyHierarchicalDataItem( + { + code: `NZL`, + parent: `Oceania`, + name: `New Zealand`, + population: 4405200 + }), + new CountyHierarchicalDataItem( + { + code: `PAL`, + parent: `Oceania`, + name: `Palau`, + population: 20609 + }), + new CountyHierarchicalDataItem( + { + code: `PNG`, + parent: `Oceania`, + name: `Papua New Guinea`, + population: 7013829 + }), + new CountyHierarchicalDataItem( + { + code: `SAM`, + parent: `Oceania`, + name: `Samoa`, + population: 183874 + }), + new CountyHierarchicalDataItem( + { + code: `SIS`, + parent: `Oceania`, + name: `Solomon Islands`, + population: 552267 + }), + new CountyHierarchicalDataItem( + { + code: `TML`, + parent: `Oceania`, + name: `Timor-Leste`, + population: 1175880 + }), + new CountyHierarchicalDataItem( + { + code: `TON`, + parent: `Oceania`, + name: `Tonga`, + population: 104509 + }), + new CountyHierarchicalDataItem( + { + code: `TUV`, + parent: `Oceania`, + name: `Tuvalu`, + population: 9847 + }), + new CountyHierarchicalDataItem( + { + code: `VNT`, + parent: `Oceania`, + name: `Vanuatu`, + population: 245619 + }), + new CountyHierarchicalDataItem( + { + code: `ARG`, + parent: `South America`, + name: `Argentina`, + population: 40764561 + }), + new CountyHierarchicalDataItem( + { + code: `BOL`, + parent: `South America`, + name: `Bolivia`, + population: 10088108 + }), + new CountyHierarchicalDataItem( + { + code: `BRA`, + parent: `South America`, + name: `Brazil`, + population: 196655014 + }), + new CountyHierarchicalDataItem( + { + code: `CHI`, + parent: `South America`, + name: `Chile`, + population: 17269525 + }), + new CountyHierarchicalDataItem( + { + code: `COL`, + parent: `South America`, + name: `Colombia`, + population: 46927125 + }), + new CountyHierarchicalDataItem( + { + code: `ECU`, + parent: `South America`, + name: `Ecuador`, + population: 14666055 + }), + new CountyHierarchicalDataItem( + { + code: `GUY`, + parent: `South America`, + name: `Guyana`, + population: 756040 + }), + new CountyHierarchicalDataItem( + { + code: `PAR`, + parent: `South America`, + name: `Paraguay`, + population: 6568290 + }), + new CountyHierarchicalDataItem( + { + code: `PER`, + parent: `South America`, + name: `Peru`, + population: 29399817 + }), + new CountyHierarchicalDataItem( + { + code: `SUR`, + parent: `South America`, + name: `Suriname`, + population: 529419 + }), + new CountyHierarchicalDataItem( + { + code: `URG`, + parent: `South America`, + name: `Uruguay`, + population: 3368595 + }), + new CountyHierarchicalDataItem( + { + code: `VEN`, + parent: `South America`, + name: `Venezuela`, + population: 29278000 + }), + ]; + super(...(newItems.slice(0, items))); + } } } From f5f453143936137f0ea74c9e316c1298bbf9dde1 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 16:50:47 -0500 Subject: [PATCH 037/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.1.12.2 (#110) Co-authored-by: tfsbuild --- .../chart-highlight-filter/src/app.component.html | 4 ++-- .../chart-highlight-filter-datasource/src/app.component.html | 4 ++-- .../src/app.component.html | 4 ++-- .../data-chart/chart-highlight-filter/src/app.component.html | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/samples/charts/category-chart/chart-highlight-filter/src/app.component.html b/samples/charts/category-chart/chart-highlight-filter/src/app.component.html index 4dc5ba354..969b3f6c5 100644 --- a/samples/charts/category-chart/chart-highlight-filter/src/app.component.html +++ b/samples/charts/category-chart/chart-highlight-filter/src/app.component.html @@ -13,7 +13,7 @@ name="HighlightedValuesDisplayModeEditor" #highlightedValuesDisplayModeEditor label="Highlight Display Mode: " - primitiveValue="Hidden"> + primitiveValue="Overlay">
@@ -25,7 +25,7 @@ [dataSource]="salesData" initialGroups="MonthName" initialHighlightFilter="Country ne 'UK'" - highlightedValuesDisplayMode="Hidden"> + highlightedValuesDisplayMode="Overlay"> diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.html b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.html index 7faafa2af..1409f7c06 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.html +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.html @@ -13,7 +13,7 @@ name="HighlightedValuesDisplayModeEditor" #highlightedValuesDisplayModeEditor label="Highlight Display Mode: " - primitiveValue="Hidden"> + primitiveValue="Overlay"> @@ -21,7 +21,7 @@ + primitiveValue="Overlay"> @@ -23,7 +23,7 @@ computedPlotAreaMarginMode="Series" name="chart" #chart - highlightedValuesDisplayMode="Hidden"> + highlightedValuesDisplayMode="Overlay"> + primitiveValue="Overlay"> @@ -21,7 +21,7 @@ Date: Mon, 15 Jan 2024 13:25:17 -0500 Subject: [PATCH 038/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.1.12.3 (#111) Co-authored-by: tfsbuild --- .../src/OnlineTrafficHighlightTotals.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/OnlineTrafficHighlightTotals.ts b/samples/charts/data-chart/chart-highlight-filter-datasource/src/OnlineTrafficHighlightTotals.ts index 9df339f10..ae1ff21ca 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/src/OnlineTrafficHighlightTotals.ts +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/OnlineTrafficHighlightTotals.ts @@ -16,37 +16,37 @@ export class OnlineTrafficHighlightTotals extends Array Date: Mon, 15 Jan 2024 17:22:19 -0500 Subject: [PATCH 039/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.1.15.2 (#113) Co-authored-by: tfsbuild --- .../axis-range/src/app.component.html | 8 ++++---- .../axis-range/src/app.component.ts | 19 +++++++++++++++++-- .../src/app.component.html | 4 ++-- .../src/app.component.html | 4 ++-- .../src/app.component.html | 4 ++-- .../src/app.component.html | 4 ++-- 6 files changed, 29 insertions(+), 14 deletions(-) diff --git a/samples/charts/category-chart/axis-range/src/app.component.html b/samples/charts/category-chart/axis-range/src/app.component.html index ae60a06c7..34c268c3f 100644 --- a/samples/charts/category-chart/axis-range/src/app.component.html +++ b/samples/charts/category-chart/axis-range/src/app.component.html @@ -9,7 +9,7 @@ name="propertyEditorPanel1" #propertyEditorPanel1> + (changed)="this.editorChangeUpdateYAxisMinimumValue($event)"> + (changed)="this.editorChangeUpdateYAxisMaximumValue($event)"> diff --git a/samples/charts/category-chart/axis-range/src/app.component.ts b/samples/charts/category-chart/axis-range/src/app.component.ts index b4a0e8ea8..be58fb3b2 100644 --- a/samples/charts/category-chart/axis-range/src/app.component.ts +++ b/samples/charts/category-chart/axis-range/src/app.component.ts @@ -1,8 +1,11 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; -import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; -import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxPropertyEditorPropertyDescriptionChangedEventArgs, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxCategoryChartComponent, MarkerType, MarkerType_$type } from 'igniteui-angular-charts'; +import { EnumUtil } from 'igniteui-angular-core'; +import { IgxLegendComponent } from 'igniteui-angular-charts'; +import { IgxPropertyEditorPanelComponent } from 'igniteui-angular-layouts'; import { defineAllComponents } from 'igniteui-webcomponents'; @@ -57,5 +60,17 @@ export class AppComponent implements AfterViewInit { } + public editorChangeUpdateYAxisMinimumValue({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { + + var yAxisMinimumVal = args.newValue; + this.chart.yAxisMinimumValue = parseInt(yAxisMinimumVal); + } + + public editorChangeUpdateYAxisMaximumValue({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { + + var yAxisMaximumVal = args.newValue; + this.chart.yAxisMaximumValue = parseInt(yAxisMaximumVal); + } + } diff --git a/samples/charts/category-chart/chart-highlight-filter/src/app.component.html b/samples/charts/category-chart/chart-highlight-filter/src/app.component.html index 969b3f6c5..4dc5ba354 100644 --- a/samples/charts/category-chart/chart-highlight-filter/src/app.component.html +++ b/samples/charts/category-chart/chart-highlight-filter/src/app.component.html @@ -13,7 +13,7 @@ name="HighlightedValuesDisplayModeEditor" #highlightedValuesDisplayModeEditor label="Highlight Display Mode: " - primitiveValue="Overlay"> + primitiveValue="Hidden"> @@ -25,7 +25,7 @@ [dataSource]="salesData" initialGroups="MonthName" initialHighlightFilter="Country ne 'UK'" - highlightedValuesDisplayMode="Overlay"> + highlightedValuesDisplayMode="Hidden"> diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.html b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.html index 1409f7c06..7faafa2af 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.html +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.html @@ -13,7 +13,7 @@ name="HighlightedValuesDisplayModeEditor" #highlightedValuesDisplayModeEditor label="Highlight Display Mode: " - primitiveValue="Overlay"> + primitiveValue="Hidden"> @@ -21,7 +21,7 @@ + primitiveValue="Hidden"> @@ -23,7 +23,7 @@ computedPlotAreaMarginMode="Series" name="chart" #chart - highlightedValuesDisplayMode="Overlay"> + highlightedValuesDisplayMode="Hidden"> + primitiveValue="Hidden"> @@ -21,7 +21,7 @@ Date: Tue, 16 Jan 2024 14:23:23 -0500 Subject: [PATCH 040/154] readme-files (#114) --- README.md | 27 +++++++++++--- browser/README.md | 35 ++++++++++++------- samples/README.md | 12 +++++-- .../category-chart/annotations-all/ReadMe.md | 18 +++++++--- .../annotations-callouts/ReadMe.md | 18 +++++++--- .../annotations-crosshairs/ReadMe.md | 18 +++++++--- .../annotations-custom/ReadMe.md | 18 +++++++--- .../annotations-final-value/ReadMe.md | 18 +++++++--- .../annotations-highlighting/ReadMe.md | 18 +++++++--- .../category-chart/annotations/ReadMe.md | 18 +++++++--- .../area-chart-multiple-sources/ReadMe.md | 18 +++++++--- .../area-chart-single-source/ReadMe.md | 18 +++++++--- .../area-chart-styling/ReadMe.md | 18 +++++++--- .../charts/category-chart/axis-gap/ReadMe.md | 18 +++++++--- .../category-chart/axis-gridlines/ReadMe.md | 18 +++++++--- .../category-chart/axis-inverted/ReadMe.md | 18 +++++++--- .../category-chart/axis-labels/ReadMe.md | 18 +++++++--- .../category-chart/axis-locations/ReadMe.md | 18 +++++++--- .../category-chart/axis-options/ReadMe.md | 18 +++++++--- .../category-chart/axis-overlap/ReadMe.md | 18 +++++++--- .../category-chart/axis-range/ReadMe.md | 18 +++++++--- .../category-chart/axis-tickmarks/ReadMe.md | 18 +++++++--- .../category-chart/axis-titles/ReadMe.md | 18 +++++++--- .../chart-highlight-filter/ReadMe.md | 18 +++++++--- .../column-chart-multiple-sources/ReadMe.md | 18 +++++++--- .../column-chart-single-source/ReadMe.md | 18 +++++++--- .../column-chart-styling/ReadMe.md | 18 +++++++--- .../column-chart-with-highlighting/ReadMe.md | 18 +++++++--- .../column-chart-with-tooltips/ReadMe.md | 18 +++++++--- .../category-chart/custom-selection/ReadMe.md | 18 +++++++--- .../data-aggregations/ReadMe.md | 18 +++++++--- .../data-legend-formatting-decimals/ReadMe.md | 18 +++++++--- .../category-chart/data-legend/ReadMe.md | 18 +++++++--- .../ReadMe.md | 18 +++++++--- .../data-tooltip-positioning/ReadMe.md | 18 +++++++--- .../category-chart/data-tooltip/ReadMe.md | 18 +++++++--- .../format-specifiers/ReadMe.md | 18 +++++++--- .../category-chart/high-frequency/ReadMe.md | 18 +++++++--- .../category-chart/high-volume/ReadMe.md | 18 +++++++--- .../category-chart/highlighting/ReadMe.md | 18 +++++++--- .../line-chart-multiple-sources/ReadMe.md | 18 +++++++--- .../line-chart-single-source/ReadMe.md | 18 +++++++--- .../line-chart-styling/ReadMe.md | 18 +++++++--- .../line-chart-with-animations/ReadMe.md | 18 +++++++--- .../line-chart-with-annotations/ReadMe.md | 18 +++++++--- .../line-chart-with-legend/ReadMe.md | 18 +++++++--- .../category-chart/marker-options/ReadMe.md | 18 +++++++--- .../category-chart/marker-templates/ReadMe.md | 18 +++++++--- .../charts/category-chart/overview/ReadMe.md | 18 +++++++--- .../point-chart-multiple-sources/ReadMe.md | 18 +++++++--- .../point-chart-single-source/ReadMe.md | 18 +++++++--- .../point-chart-styling/ReadMe.md | 18 +++++++--- .../spline-area-multiple-sources/ReadMe.md | 18 +++++++--- .../spline-area-single-source/ReadMe.md | 18 +++++++--- .../spline-area-styling/ReadMe.md | 18 +++++++--- .../spline-multiple-sources/ReadMe.md | 18 +++++++--- .../spline-single-source/ReadMe.md | 18 +++++++--- .../category-chart/spline-styling/ReadMe.md | 18 +++++++--- .../category-chart/stack-columns/ReadMe.md | 18 +++++++--- .../step-area-multiple-sources/ReadMe.md | 18 +++++++--- .../step-area-single-source/ReadMe.md | 18 +++++++--- .../step-area-styling/ReadMe.md | 18 +++++++--- .../step-line-multiple-sources/ReadMe.md | 18 +++++++--- .../step-line-single-source/ReadMe.md | 18 +++++++--- .../step-line-styling/ReadMe.md | 18 +++++++--- .../category-chart/tooltip-template/ReadMe.md | 18 +++++++--- .../category-chart/tooltip-types/ReadMe.md | 18 +++++++--- .../charts/category-chart/trendline/ReadMe.md | 18 +++++++--- .../category-chart/value-lines/ReadMe.md | 18 +++++++--- .../data-chart/annotations-custom/ReadMe.md | 18 +++++++--- .../axis-annotations-corner-radius/ReadMe.md | 18 +++++++--- .../data-chart/axis-annotations/ReadMe.md | 18 +++++++--- .../charts/data-chart/axis-crossing/ReadMe.md | 18 +++++++--- .../data-chart/axis-label-rotation/ReadMe.md | 18 +++++++--- .../data-chart/axis-locations/ReadMe.md | 18 +++++++--- .../data-chart/axis-min-max-gap/ReadMe.md | 18 +++++++--- .../charts/data-chart/axis-settings/ReadMe.md | 18 +++++++--- .../charts/data-chart/axis-sharing/ReadMe.md | 18 +++++++--- .../charts/data-chart/axis-types/ReadMe.md | 18 +++++++--- .../bar-chart-multiple-sources/ReadMe.md | 18 +++++++--- .../bar-chart-overlapping/ReadMe.md | 18 +++++++--- .../bar-chart-single-source/ReadMe.md | 18 +++++++--- .../data-chart/bar-chart-styling/ReadMe.md | 18 +++++++--- .../callout-layer-styling/ReadMe.md | 18 +++++++--- .../ReadMe.md | 18 +++++++--- .../ReadMe.md | 18 +++++++--- .../chart-highlight-filter/ReadMe.md | 18 +++++++--- .../data-chart/chart-navigation/ReadMe.md | 18 +++++++--- .../data-chart/chart-overview/ReadMe.md | 18 +++++++--- .../data-chart/chart-performance/ReadMe.md | 18 +++++++--- .../chart-synchronization/ReadMe.md | 18 +++++++--- .../charts/data-chart/chart-titles/ReadMe.md | 18 +++++++--- .../data-chart/column-chart-styling/ReadMe.md | 18 +++++++--- .../data-chart/composite-chart/ReadMe.md | 18 +++++++--- .../crosshair-layer-styling/ReadMe.md | 18 +++++++--- .../custom-drawing-annotations/ReadMe.md | 18 +++++++--- .../data-chart/custom-editing-data/ReadMe.md | 18 +++++++--- .../data-chart/dash-array-axes/ReadMe.md | 18 +++++++--- .../data-chart/dash-array-series/ReadMe.md | 18 +++++++--- .../data-chart/dash-array-tickmarks/ReadMe.md | 18 +++++++--- .../data-chart/dash-array-trendline/ReadMe.md | 18 +++++++--- .../charts/data-chart/data-legend/ReadMe.md | 18 +++++++--- .../charts/data-chart/data-tooltip/ReadMe.md | 18 +++++++--- .../final-value-layer-styling/ReadMe.md | 18 +++++++--- .../financial-price-series/ReadMe.md | 18 +++++++--- .../data-chart/format-specifiers/ReadMe.md | 18 +++++++--- samples/charts/data-chart/legends/ReadMe.md | 18 +++++++--- .../polar-area-chart-styling/ReadMe.md | 18 +++++++--- .../data-chart/polar-area-chart/ReadMe.md | 18 +++++++--- .../data-chart/polar-chart-types/ReadMe.md | 18 +++++++--- .../data-chart/polar-line-chart/ReadMe.md | 18 +++++++--- .../data-chart/polar-scatter-chart/ReadMe.md | 18 +++++++--- .../polar-spline-area-chart/ReadMe.md | 18 +++++++--- .../data-chart/polar-spline-chart/ReadMe.md | 18 +++++++--- .../radial-area-chart-styling/ReadMe.md | 18 +++++++--- .../data-chart/radial-area-chart/ReadMe.md | 18 +++++++--- .../data-chart/radial-chart-types/ReadMe.md | 18 +++++++--- .../data-chart/radial-column-chart/ReadMe.md | 18 +++++++--- .../data-chart/radial-line-chart/ReadMe.md | 18 +++++++--- .../data-chart/radial-pie-chart/ReadMe.md | 18 +++++++--- .../data-chart/range-area-chart/ReadMe.md | 18 +++++++--- .../data-chart/range-column-chart/ReadMe.md | 18 +++++++--- .../ReadMe.md | 18 +++++++--- .../ReadMe.md | 18 +++++++--- .../scatter-bubble-chart-styling/ReadMe.md | 18 +++++++--- .../data-chart/scatter-line-chart/ReadMe.md | 18 +++++++--- .../data-chart/scatter-point-chart/ReadMe.md | 18 +++++++--- .../data-chart/scatter-spline-chart/ReadMe.md | 18 +++++++--- .../data-chart/series-animations/ReadMe.md | 18 +++++++--- .../data-chart/series-annotations/ReadMe.md | 18 +++++++--- .../data-chart/series-highlighting/ReadMe.md | 18 +++++++--- .../series-marker-template/ReadMe.md | 18 +++++++--- .../data-chart/series-markers/ReadMe.md | 18 +++++++--- .../data-chart/series-tooltips/ReadMe.md | 18 +++++++--- .../data-chart/series-trendlines/ReadMe.md | 18 +++++++--- .../data-chart/series-value-overlay/ReadMe.md | 18 +++++++--- .../stacked-100-area-chart/ReadMe.md | 18 +++++++--- .../stacked-100-bar-chart/ReadMe.md | 18 +++++++--- .../stacked-100-column-chart/ReadMe.md | 18 +++++++--- .../stacked-100-line-chart/ReadMe.md | 18 +++++++--- .../stacked-100-spline-area-chart/ReadMe.md | 18 +++++++--- .../stacked-100-spline-chart/ReadMe.md | 18 +++++++--- .../data-chart/stacked-area-chart/ReadMe.md | 18 +++++++--- .../data-chart/stacked-bar-chart/ReadMe.md | 18 +++++++--- .../data-chart/stacked-chart-types/ReadMe.md | 18 +++++++--- .../data-chart/stacked-column-chart/ReadMe.md | 18 +++++++--- .../data-chart/stacked-line-chart/ReadMe.md | 18 +++++++--- .../stacked-spline-area-chart/ReadMe.md | 18 +++++++--- .../data-chart/stacked-spline-chart/ReadMe.md | 18 +++++++--- .../data-chart/tooltip-template/ReadMe.md | 18 +++++++--- .../data-chart/transition-event/ReadMe.md | 18 +++++++--- .../type-category-area-series/ReadMe.md | 18 +++++++--- .../type-category-bar-series/ReadMe.md | 18 +++++++--- .../type-category-column-series/ReadMe.md | 18 +++++++--- .../type-category-line-series/ReadMe.md | 18 +++++++--- .../type-category-point-series/ReadMe.md | 18 +++++++--- .../data-chart/type-category-series/ReadMe.md | 18 +++++++--- .../ReadMe.md | 18 +++++++--- .../type-category-spline-series/ReadMe.md | 18 +++++++--- .../type-category-step-area-series/ReadMe.md | 18 +++++++--- .../type-category-step-line-series/ReadMe.md | 18 +++++++--- .../type-category-waterfall-series/ReadMe.md | 18 +++++++--- .../type-financial-area-indicators/ReadMe.md | 18 +++++++--- .../ReadMe.md | 18 +++++++--- .../ReadMe.md | 18 +++++++--- .../type-financial-line-indicators/ReadMe.md | 18 +++++++--- .../type-financial-ohlc-series/ReadMe.md | 18 +++++++--- .../type-financial-overlays/ReadMe.md | 18 +++++++--- .../type-financial-series/ReadMe.md | 18 +++++++--- .../type-radial-area-series/ReadMe.md | 18 +++++++--- .../type-radial-column-series/ReadMe.md | 18 +++++++--- .../type-radial-line-series/ReadMe.md | 18 +++++++--- .../type-radial-pie-series/ReadMe.md | 18 +++++++--- .../type-range-area-series/ReadMe.md | 18 +++++++--- .../type-range-column-series/ReadMe.md | 18 +++++++--- .../data-chart/type-range-series/ReadMe.md | 18 +++++++--- .../type-scatter-area-series/ReadMe.md | 18 +++++++--- .../type-scatter-bubble-series/ReadMe.md | 18 +++++++--- .../type-scatter-contour-series/ReadMe.md | 18 +++++++--- .../type-scatter-hd-series/ReadMe.md | 18 +++++++--- .../type-scatter-line-series/ReadMe.md | 18 +++++++--- .../type-scatter-point-series/ReadMe.md | 18 +++++++--- .../type-scatter-polygon-series/ReadMe.md | 18 +++++++--- .../type-scatter-polyline-series/ReadMe.md | 18 +++++++--- .../data-chart/type-scatter-series/ReadMe.md | 18 +++++++--- .../type-scatter-spline-series/ReadMe.md | 18 +++++++--- .../data-chart/type-shape-series/ReadMe.md | 18 +++++++--- .../type-stacked-100-area-series/ReadMe.md | 18 +++++++--- .../type-stacked-100-bar-series/ReadMe.md | 18 +++++++--- .../type-stacked-100-column-series/ReadMe.md | 18 +++++++--- .../type-stacked-100-line-series/ReadMe.md | 18 +++++++--- .../ReadMe.md | 18 +++++++--- .../type-stacked-100-spline-series/ReadMe.md | 18 +++++++--- .../type-stacked-area-series/ReadMe.md | 18 +++++++--- .../type-stacked-bar-series/ReadMe.md | 18 +++++++--- .../type-stacked-column-series/ReadMe.md | 18 +++++++--- .../type-stacked-line-series/ReadMe.md | 18 +++++++--- .../type-stacked-spline-area-series/ReadMe.md | 18 +++++++--- .../type-stacked-spline-series/ReadMe.md | 18 +++++++--- .../data-chart/waterfall-chart/ReadMe.md | 18 +++++++--- .../charts/doughnut-chart/animation/ReadMe.md | 18 +++++++--- .../charts/doughnut-chart/explosion/ReadMe.md | 18 +++++++--- .../charts/doughnut-chart/legend/ReadMe.md | 18 +++++++--- .../charts/doughnut-chart/overview/ReadMe.md | 18 +++++++--- samples/charts/doughnut-chart/rings/ReadMe.md | 18 +++++++--- .../charts/doughnut-chart/selection/ReadMe.md | 18 +++++++--- .../financial-chart/annotations/ReadMe.md | 18 +++++++--- .../financial-chart/axis-types/ReadMe.md | 18 +++++++--- .../data-legend-formatting-currency/ReadMe.md | 18 +++++++--- .../data-legend-styling-props/ReadMe.md | 18 +++++++--- .../financial-chart/data-legend/ReadMe.md | 18 +++++++--- .../ReadMe.md | 18 +++++++--- .../data-tooltip-styling-props/ReadMe.md | 18 +++++++--- .../financial-chart/data-tooltip/ReadMe.md | 18 +++++++--- .../format-specifiers/ReadMe.md | 18 +++++++--- .../financial-chart/high-frequency/ReadMe.md | 18 +++++++--- .../financial-chart/high-volume/ReadMe.md | 18 +++++++--- .../indicator-customization/ReadMe.md | 18 +++++++--- .../financial-chart/indicator-types/ReadMe.md | 18 +++++++--- .../financial-chart/multiple-data/ReadMe.md | 18 +++++++--- .../financial-chart/multiple-feeds/ReadMe.md | 18 +++++++--- .../charts/financial-chart/overview/ReadMe.md | 18 +++++++--- .../charts/financial-chart/panes/ReadMe.md | 18 +++++++--- .../financial-chart/performance/ReadMe.md | 18 +++++++--- .../financial-chart/scrollbars/ReadMe.md | 18 +++++++--- .../stock-index-chart/ReadMe.md | 18 +++++++--- .../charts/financial-chart/styling/ReadMe.md | 18 +++++++--- .../charts/financial-chart/theming/ReadMe.md | 18 +++++++--- .../financial-chart/time-based-data/ReadMe.md | 18 +++++++--- .../charts/financial-chart/titles/ReadMe.md | 18 +++++++--- .../tooltip-template/ReadMe.md | 18 +++++++--- .../financial-chart/tooltip-types/ReadMe.md | 18 +++++++--- .../financial-chart/trendlines/ReadMe.md | 18 +++++++--- .../financial-chart/volume-types/ReadMe.md | 18 +++++++--- samples/charts/pie-chart/animation/ReadMe.md | 18 +++++++--- samples/charts/pie-chart/explosion/ReadMe.md | 18 +++++++--- samples/charts/pie-chart/legend/ReadMe.md | 18 +++++++--- samples/charts/pie-chart/others/ReadMe.md | 18 +++++++--- samples/charts/pie-chart/overview/ReadMe.md | 18 +++++++--- samples/charts/pie-chart/selection/ReadMe.md | 18 +++++++--- samples/charts/pie-chart/styling/ReadMe.md | 18 +++++++--- .../charts/sparkline/display-area/ReadMe.md | 18 +++++++--- .../charts/sparkline/display-column/ReadMe.md | 18 +++++++--- .../charts/sparkline/display-lines/ReadMe.md | 18 +++++++--- .../charts/sparkline/display-types/ReadMe.md | 18 +++++++--- .../sparkline/display-winloss/ReadMe.md | 18 +++++++--- samples/charts/sparkline/grid/ReadMe.md | 18 +++++++--- samples/charts/sparkline/markers/ReadMe.md | 18 +++++++--- .../charts/sparkline/normal-range/ReadMe.md | 18 +++++++--- samples/charts/sparkline/trendlines/ReadMe.md | 18 +++++++--- .../charts/sparkline/unknown-values/ReadMe.md | 18 +++++++--- .../actions-built-in-category-chart/ReadMe.md | 18 +++++++--- .../actions-built-in-data-chart/ReadMe.md | 18 +++++++--- samples/charts/toolbar/custom-tool/ReadMe.md | 18 +++++++--- .../layout-actions-for-data-chart/ReadMe.md | 18 +++++++--- .../layout-in-vertical-orientation/ReadMe.md | 18 +++++++--- samples/charts/toolbar/theming/ReadMe.md | 18 +++++++--- samples/charts/tree-map/events/ReadMe.md | 18 +++++++--- samples/charts/tree-map/layout/ReadMe.md | 18 +++++++--- samples/charts/tree-map/overview/ReadMe.md | 18 +++++++--- samples/charts/tree-map/styling/ReadMe.md | 18 +++++++--- samples/charts/zoomslider/overview/ReadMe.md | 18 +++++++--- .../operations-on-workbooks/ReadMe.md | 18 +++++++--- .../operations-on-worksheets/ReadMe.md | 18 +++++++--- .../excel/excel-library/overview/ReadMe.md | 18 +++++++--- .../working-with-cells/ReadMe.md | 18 +++++++--- .../working-with-charts/ReadMe.md | 18 +++++++--- .../working-with-sparklines/ReadMe.md | 18 +++++++--- .../working-with-tables/ReadMe.md | 18 +++++++--- .../excel/spreadsheet/activation/ReadMe.md | 18 +++++++--- .../excel/spreadsheet/adapter-chart/ReadMe.md | 18 +++++++--- .../excel/spreadsheet/adapter-combo/ReadMe.md | 18 +++++++--- samples/excel/spreadsheet/clipboard/ReadMe.md | 18 +++++++--- samples/excel/spreadsheet/commands/ReadMe.md | 18 +++++++--- .../conditional-formatting/ReadMe.md | 18 +++++++--- .../spreadsheet/config-options/ReadMe.md | 18 +++++++--- .../spreadsheet/data-validation/ReadMe.md | 18 +++++++--- .../excel/spreadsheet/hyperlinks/ReadMe.md | 18 +++++++--- samples/excel/spreadsheet/overview/ReadMe.md | 18 +++++++--- .../gauges/bullet-graph/animation/ReadMe.md | 18 +++++++--- .../gauges/bullet-graph/background/ReadMe.md | 18 +++++++--- samples/gauges/bullet-graph/labels/ReadMe.md | 18 +++++++--- .../gauges/bullet-graph/measures/ReadMe.md | 18 +++++++--- samples/gauges/bullet-graph/ranges/ReadMe.md | 18 +++++++--- samples/gauges/bullet-graph/scale/ReadMe.md | 18 +++++++--- .../gauges/bullet-graph/tickmarks/ReadMe.md | 18 +++++++--- .../gauges/linear-gauge/animation/ReadMe.md | 18 +++++++--- samples/gauges/linear-gauge/backing/ReadMe.md | 18 +++++++--- samples/gauges/linear-gauge/labels/ReadMe.md | 18 +++++++--- samples/gauges/linear-gauge/needle/ReadMe.md | 18 +++++++--- samples/gauges/linear-gauge/ranges/ReadMe.md | 18 +++++++--- samples/gauges/linear-gauge/scale/ReadMe.md | 18 +++++++--- .../gauges/linear-gauge/tickmarks/ReadMe.md | 18 +++++++--- .../gauges/radial-gauge/animation/ReadMe.md | 18 +++++++--- samples/gauges/radial-gauge/backing/ReadMe.md | 18 +++++++--- samples/gauges/radial-gauge/labels/ReadMe.md | 18 +++++++--- samples/gauges/radial-gauge/needle/ReadMe.md | 18 +++++++--- samples/gauges/radial-gauge/ranges/ReadMe.md | 18 +++++++--- samples/gauges/radial-gauge/scale/ReadMe.md | 18 +++++++--- .../gauges/radial-gauge/tickmarks/ReadMe.md | 18 +++++++--- .../maps/geo-map/binding-data-csv/ReadMe.md | 18 +++++++--- .../binding-data-json-points/ReadMe.md | 18 +++++++--- .../maps/geo-map/binding-data-model/ReadMe.md | 18 +++++++--- .../geo-map/binding-multiple-shapes/ReadMe.md | 18 +++++++--- .../binding-multiple-sources/ReadMe.md | 18 +++++++--- .../maps/geo-map/binding-shp-points/ReadMe.md | 18 +++++++--- .../geo-map/binding-shp-polygons/ReadMe.md | 18 +++++++--- .../geo-map/binding-shp-polylines/ReadMe.md | 18 +++++++--- .../maps/geo-map/custom-tooltips/ReadMe.md | 18 +++++++--- .../geo-map/display-bing-imagery/ReadMe.md | 18 +++++++--- .../geo-map/display-esri-imagery/ReadMe.md | 18 +++++++--- .../geo-map/display-heat-imagery/ReadMe.md | 18 +++++++--- .../geo-map/display-osm-imagery/ReadMe.md | 18 +++++++--- samples/maps/geo-map/marker-layouts/ReadMe.md | 18 +++++++--- .../maps/geo-map/marker-template/ReadMe.md | 18 +++++++--- samples/maps/geo-map/marker-type/ReadMe.md | 18 +++++++--- samples/maps/geo-map/navigation/ReadMe.md | 18 +++++++--- samples/maps/geo-map/overview/ReadMe.md | 18 +++++++--- samples/maps/geo-map/shape-styling/ReadMe.md | 18 +++++++--- .../maps/geo-map/triangulating-data/ReadMe.md | 18 +++++++--- .../type-scatter-area-series/ReadMe.md | 18 +++++++--- .../type-scatter-bubble-series/ReadMe.md | 18 +++++++--- .../type-scatter-contour-series/ReadMe.md | 18 +++++++--- .../type-scatter-density-series/ReadMe.md | 18 +++++++--- .../type-scatter-symbol-series/ReadMe.md | 18 +++++++--- .../type-shape-polygon-series/ReadMe.md | 18 +++++++--- .../type-shape-polyline-series/ReadMe.md | 18 +++++++--- samples/templates/ReadMe.md | 18 +++++++--- 328 files changed, 4278 insertions(+), 1646 deletions(-) diff --git a/README.md b/README.md index 01b3d34d0..129d2eca7 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ # Examples of Ignite UI for Angular Components -This repository contains over 400 examples on how to use [Ignite UI for Angular](https://www.infragistics.com/products/ignite-ui-Angular/Angular/components/general-getting-started.html) components: +This repository contains an Angular browser app and 500+ examples on how to use [Ignite UI for Angular](https://www.infragistics.com/products/ignite-ui-Angular/Angular/components/general-getting-started.html) components: - Charts: [Area](https://www.infragistics.com/products/ignite-ui-angular/angular/components/charts/types/area-chart), @@ -32,6 +32,12 @@ This repository contains over 400 examples on how to use [Ignite UI for Angular] [Linear Gauge](https://www.infragistics.com/products/ignite-ui-angular/angular/components/linear-gauge.html), [Radial Gauges](https://www.infragistics.com/products/ignite-ui-angular/angular/components/radial-gauge.html) +You can run each sample project individually from the ./samples folder or you can browse all samples in one website from the ./browser folder. + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Preview You can preview and browse all samples in this repository by opening our [Angular Samples Browser](https://www.infragistics.com/angular-demos-dv/samples/). Alternatively, you you can view these samples with detailed information in our [Angular Help Documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started). @@ -49,13 +55,17 @@ To set up this project locally, clone this repository: git clone https://github.com/IgniteUI/igniteui-angular-examples.git ``` + ## Running Individual Sample +- check out the **master** branch + - in VS Code, open a folder with existing sample, e.g. ``` ./samples/charts/category-chart/axis-options/ ``` -- type `npm install` command in terminal window +- type `npm install --legacy-peer-deps` command in terminal window + - type `npm run start` command in terminal window - Wait until the build is completed and then open [http://localhost:4200](http://localhost:4200) in your browser. @@ -65,11 +75,18 @@ At this point, you should see a website hosted example of [Ignite UI for Angular ## Running All Samples +- check out the **master** branch + - open VS Code as Administrator -- open the folder that contains this repository, e.g. `C:\GitHub\igniteui-angular-examples\` + +- open the folder that contains this repository, e.g. +```CMD +C:\GitHub\igniteui-angular-examples\ +``` + - select **View** - **Terminal** menu item -- type `npm install` command in terminal window +- type `npm install --legacy-peer-deps` command in terminal window This will install required packages and [Ignite UI for Angular](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started) packages @@ -108,7 +125,7 @@ Wait until the build is completed and then open [http://localhost:4200](http://l - rename class to the name of .tsx file -- type `npm install` command in terminal window +- type `npm install --legacy-peer-deps` command in terminal window - type `npm run start` command in terminal window diff --git a/browser/README.md b/browser/README.md index 999a29eb3..a0212796c 100644 --- a/browser/README.md +++ b/browser/README.md @@ -9,22 +9,31 @@ # Browser App for Angular Components -This browser application allows you to browse all samples of the [Ignite UI for Angular](https://www.infragistics.com/products/ignite-ui-Angular/Angular/components/general-getting-started.html) in a single website. +The **browser** folder contains an Angular app for browsing 500+ examples of [Ignite UI for Angular](https://www.infragistics.com/products/ignite-ui-Angular/Angular/components/general-getting-started.html) components. -## Setup -To setup the project run: -``` -npm install -``` +## Branches -To start the dev server (including IE support) run: +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. -``` -npm run start -``` -## Running with the DocFX project +## Instructions + +Follow these instructions to run and browse all samples: + +- open VS Code as Administrator + +- open the folder that contains this repository, e.g. `C:\GitHub\igniteui-angular-examples\` + +- select **View** - **Terminal** menu item + +- type `npm install --legacy-peer-deps` command in terminal window + +This will install required packages and [Ignite UI for Angular](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started) packages + +- type `npm run start` command in terminal window to start this application locally + +Note this application copies all individually sample projects from [./samples](./samples) to [./browser/src](./browser/src) folder when it is about to start running. Therefore, any changes to [./browser/src](./browser/src) will be overridden on consecutive run of the application. + +Wait until the build is completed and then open [http://localhost:4200](http://localhost:4200) in your browser. You should see a website with navigation menu for browning all samples in this repository. -In order to combine the execution of both [DocFX](https://github.com/IgniteUI/igniteui-docfx) and Ignite UI Angular Samples projects, use `npm run start`. -After starting both projects you will see the embed samples into the DocFX site builder, under `localhost:port` hostname. diff --git a/samples/README.md b/samples/README.md index a0e586a93..6a069e504 100644 --- a/samples/README.md +++ b/samples/README.md @@ -6,7 +6,7 @@ # Individual Samples of Angular Components -In this folder, you will find individual **samples** on how to use [Ignite UI for Angular](https://www.infragistics.com/products/ignite-ui-Angular/Angular/components/general-getting-started.html) components: +The **samples** folder contains individual examples on how to use [Ignite UI for Angular](https://www.infragistics.com/products/ignite-ui-Angular/Angular/components/general-getting-started.html) components: - Charts: [Area](https://www.infragistics.com/products/ignite-ui-angular/angular/components/charts/types/area-chart), @@ -33,14 +33,20 @@ In this folder, you will find individual **samples** on how to use [Ignite UI fo [Radial Gauges](https://www.infragistics.com/products/ignite-ui-angular/angular/components/radial-gauge.html) -## Setup +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run individual sample: - in VS Code, open a folder with existing sample, e.g. ``` ./samples/charts/category-chart/axis-options/ ``` -- type `npm install` command in terminal window +- type `npm install --legacy-peer-deps` command in terminal window - type `npm run start` command in terminal window diff --git a/samples/charts/category-chart/annotations-all/ReadMe.md b/samples/charts/category-chart/annotations-all/ReadMe.md index a1bd08c6b..d11650d82 100644 --- a/samples/charts/category-chart/annotations-all/ReadMe.md +++ b/samples/charts/category-chart/annotations-all/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations All feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/annotations-all ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/annotations-callouts/ReadMe.md b/samples/charts/category-chart/annotations-callouts/ReadMe.md index d2a508d9f..9db592bc2 100644 --- a/samples/charts/category-chart/annotations-callouts/ReadMe.md +++ b/samples/charts/category-chart/annotations-callouts/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations Callouts fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/annotations-callouts ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/annotations-crosshairs/ReadMe.md b/samples/charts/category-chart/annotations-crosshairs/ReadMe.md index bdbe356ed..808eb8453 100644 --- a/samples/charts/category-chart/annotations-crosshairs/ReadMe.md +++ b/samples/charts/category-chart/annotations-crosshairs/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations Crosshairs +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/annotations-crosshairs ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/annotations-custom/ReadMe.md b/samples/charts/category-chart/annotations-custom/ReadMe.md index f68e6e838..f65277f19 100644 --- a/samples/charts/category-chart/annotations-custom/ReadMe.md +++ b/samples/charts/category-chart/annotations-custom/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations Custom feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/annotations-custom ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/annotations-final-value/ReadMe.md b/samples/charts/category-chart/annotations-final-value/ReadMe.md index ca57ee570..b74c11fbf 100644 --- a/samples/charts/category-chart/annotations-final-value/ReadMe.md +++ b/samples/charts/category-chart/annotations-final-value/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations Final Value +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/annotations-final-value ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/annotations-highlighting/ReadMe.md b/samples/charts/category-chart/annotations-highlighting/ReadMe.md index 5bf4de9d4..b8ebfd56c 100644 --- a/samples/charts/category-chart/annotations-highlighting/ReadMe.md +++ b/samples/charts/category-chart/annotations-highlighting/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations Highlightin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/annotations-highlighting ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/annotations/ReadMe.md b/samples/charts/category-chart/annotations/ReadMe.md index de9b23a7c..42512aae8 100644 --- a/samples/charts/category-chart/annotations/ReadMe.md +++ b/samples/charts/category-chart/annotations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/annotations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/area-chart-multiple-sources/ReadMe.md b/samples/charts/category-chart/area-chart-multiple-sources/ReadMe.md index 40d436153..85b6856c4 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/area-chart-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Area Chart Multiple Sou +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/area-chart-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/area-chart-single-source/ReadMe.md b/samples/charts/category-chart/area-chart-single-source/ReadMe.md index d87a155e5..d90229538 100644 --- a/samples/charts/category-chart/area-chart-single-source/ReadMe.md +++ b/samples/charts/category-chart/area-chart-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Area Chart Single Sourc +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/area-chart-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/area-chart-styling/ReadMe.md b/samples/charts/category-chart/area-chart-styling/ReadMe.md index 4eac521cb..e4947b06e 100644 --- a/samples/charts/category-chart/area-chart-styling/ReadMe.md +++ b/samples/charts/category-chart/area-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Area Chart Styling feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/area-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-gap/ReadMe.md b/samples/charts/category-chart/axis-gap/ReadMe.md index 3016380c5..8bd695fc7 100644 --- a/samples/charts/category-chart/axis-gap/ReadMe.md +++ b/samples/charts/category-chart/axis-gap/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Gap feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-gap ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-gridlines/ReadMe.md b/samples/charts/category-chart/axis-gridlines/ReadMe.md index 575eac08c..380b9b78f 100644 --- a/samples/charts/category-chart/axis-gridlines/ReadMe.md +++ b/samples/charts/category-chart/axis-gridlines/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Gridlines feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-gridlines ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-inverted/ReadMe.md b/samples/charts/category-chart/axis-inverted/ReadMe.md index 348582600..c8be0e37c 100644 --- a/samples/charts/category-chart/axis-inverted/ReadMe.md +++ b/samples/charts/category-chart/axis-inverted/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Inverted feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-inverted ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-labels/ReadMe.md b/samples/charts/category-chart/axis-labels/ReadMe.md index 688585ac5..0cbfb7214 100644 --- a/samples/charts/category-chart/axis-labels/ReadMe.md +++ b/samples/charts/category-chart/axis-labels/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Labels feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-labels ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-locations/ReadMe.md b/samples/charts/category-chart/axis-locations/ReadMe.md index 4dcf8b687..62f3e3d52 100644 --- a/samples/charts/category-chart/axis-locations/ReadMe.md +++ b/samples/charts/category-chart/axis-locations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Locations feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-locations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-options/ReadMe.md b/samples/charts/category-chart/axis-options/ReadMe.md index 90ef9c2df..052b1a886 100644 --- a/samples/charts/category-chart/axis-options/ReadMe.md +++ b/samples/charts/category-chart/axis-options/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Options feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-options ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-overlap/ReadMe.md b/samples/charts/category-chart/axis-overlap/ReadMe.md index 7640a37a7..3cc0cb611 100644 --- a/samples/charts/category-chart/axis-overlap/ReadMe.md +++ b/samples/charts/category-chart/axis-overlap/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Overlap feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-overlap ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-range/ReadMe.md b/samples/charts/category-chart/axis-range/ReadMe.md index d80fd6ff5..dcbb8f5ed 100644 --- a/samples/charts/category-chart/axis-range/ReadMe.md +++ b/samples/charts/category-chart/axis-range/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Range feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-range ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-tickmarks/ReadMe.md b/samples/charts/category-chart/axis-tickmarks/ReadMe.md index 7f818aa78..dbe07e39a 100644 --- a/samples/charts/category-chart/axis-tickmarks/ReadMe.md +++ b/samples/charts/category-chart/axis-tickmarks/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Tickmarks feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-tickmarks ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/axis-titles/ReadMe.md b/samples/charts/category-chart/axis-titles/ReadMe.md index 9fb5bedc4..a9a2e9847 100644 --- a/samples/charts/category-chart/axis-titles/ReadMe.md +++ b/samples/charts/category-chart/axis-titles/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Titles feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/axis-titles ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/chart-highlight-filter/ReadMe.md b/samples/charts/category-chart/chart-highlight-filter/ReadMe.md index 58a2a42ad..4d8f398b4 100644 --- a/samples/charts/category-chart/chart-highlight-filter/ReadMe.md +++ b/samples/charts/category-chart/chart-highlight-filter/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Highlight Filter +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/chart-highlight-filter ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/column-chart-multiple-sources/ReadMe.md b/samples/charts/category-chart/column-chart-multiple-sources/ReadMe.md index 200b63cca..050b52f91 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/column-chart-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Column Chart Multiple S +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/column-chart-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/column-chart-single-source/ReadMe.md b/samples/charts/category-chart/column-chart-single-source/ReadMe.md index 6bb93afea..740dc0fbc 100644 --- a/samples/charts/category-chart/column-chart-single-source/ReadMe.md +++ b/samples/charts/category-chart/column-chart-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Column Chart Single Sou +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/column-chart-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/column-chart-styling/ReadMe.md b/samples/charts/category-chart/column-chart-styling/ReadMe.md index 3d8408fc0..5c4a299f6 100644 --- a/samples/charts/category-chart/column-chart-styling/ReadMe.md +++ b/samples/charts/category-chart/column-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Column Chart Styling fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/column-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/column-chart-with-highlighting/ReadMe.md b/samples/charts/category-chart/column-chart-with-highlighting/ReadMe.md index dd8120e10..92791381b 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/ReadMe.md +++ b/samples/charts/category-chart/column-chart-with-highlighting/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Column Chart With Highl +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/column-chart-with-highlighting ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/column-chart-with-tooltips/ReadMe.md b/samples/charts/category-chart/column-chart-with-tooltips/ReadMe.md index 1bdb2002c..83b7e23ab 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/ReadMe.md +++ b/samples/charts/category-chart/column-chart-with-tooltips/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Column Chart With Toolt +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/column-chart-with-tooltips ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/custom-selection/ReadMe.md b/samples/charts/category-chart/custom-selection/ReadMe.md index 0c24d8b88..ea18cb3ec 100644 --- a/samples/charts/category-chart/custom-selection/ReadMe.md +++ b/samples/charts/category-chart/custom-selection/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Custom Selection featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/custom-selection ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/data-aggregations/ReadMe.md b/samples/charts/category-chart/data-aggregations/ReadMe.md index ac3cbab30..d0352ff81 100644 --- a/samples/charts/category-chart/data-aggregations/ReadMe.md +++ b/samples/charts/category-chart/data-aggregations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Aggregations featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/data-aggregations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/ReadMe.md b/samples/charts/category-chart/data-legend-formatting-decimals/ReadMe.md index 5b63b4775..104dc9f8b 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/ReadMe.md +++ b/samples/charts/category-chart/data-legend-formatting-decimals/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Legend Formatting +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/data-legend-formatting-decimals ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/data-legend/ReadMe.md b/samples/charts/category-chart/data-legend/ReadMe.md index 3f608160e..4dab094a2 100644 --- a/samples/charts/category-chart/data-legend/ReadMe.md +++ b/samples/charts/category-chart/data-legend/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Legend feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/data-legend ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/ReadMe.md b/samples/charts/category-chart/data-tooltip-formatting-decimals/ReadMe.md index fdbc65735..028ba5d00 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/ReadMe.md +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Tooltip Formatting +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/data-tooltip-formatting-decimals ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/data-tooltip-positioning/ReadMe.md b/samples/charts/category-chart/data-tooltip-positioning/ReadMe.md index 27c5c1ede..b684dd1d3 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/ReadMe.md +++ b/samples/charts/category-chart/data-tooltip-positioning/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Tooltip Positionin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/data-tooltip-positioning ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/data-tooltip/ReadMe.md b/samples/charts/category-chart/data-tooltip/ReadMe.md index cd5b7572d..72bfd17fb 100644 --- a/samples/charts/category-chart/data-tooltip/ReadMe.md +++ b/samples/charts/category-chart/data-tooltip/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Tooltip feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/data-tooltip ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/format-specifiers/ReadMe.md b/samples/charts/category-chart/format-specifiers/ReadMe.md index 2744acb35..1e4844f40 100644 --- a/samples/charts/category-chart/format-specifiers/ReadMe.md +++ b/samples/charts/category-chart/format-specifiers/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Format Specifiers featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/format-specifiers ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/high-frequency/ReadMe.md b/samples/charts/category-chart/high-frequency/ReadMe.md index 6ac30b630..7bc08512e 100644 --- a/samples/charts/category-chart/high-frequency/ReadMe.md +++ b/samples/charts/category-chart/high-frequency/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of High Frequency feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/high-frequency ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/high-volume/ReadMe.md b/samples/charts/category-chart/high-volume/ReadMe.md index 59a384fd3..7aa890603 100644 --- a/samples/charts/category-chart/high-volume/ReadMe.md +++ b/samples/charts/category-chart/high-volume/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of High Volume feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/high-volume ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/highlighting/ReadMe.md b/samples/charts/category-chart/highlighting/ReadMe.md index a67b4c29d..320a3b5d7 100644 --- a/samples/charts/category-chart/highlighting/ReadMe.md +++ b/samples/charts/category-chart/highlighting/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Highlighting feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/highlighting ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/line-chart-multiple-sources/ReadMe.md b/samples/charts/category-chart/line-chart-multiple-sources/ReadMe.md index 80a5483a3..221cb8205 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/line-chart-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Line Chart Multiple Sou +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/line-chart-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/line-chart-single-source/ReadMe.md b/samples/charts/category-chart/line-chart-single-source/ReadMe.md index 7d4cb48f8..7070cc1eb 100644 --- a/samples/charts/category-chart/line-chart-single-source/ReadMe.md +++ b/samples/charts/category-chart/line-chart-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Line Chart Single Sourc +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/line-chart-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/line-chart-styling/ReadMe.md b/samples/charts/category-chart/line-chart-styling/ReadMe.md index 2af51a324..12a84b127 100644 --- a/samples/charts/category-chart/line-chart-styling/ReadMe.md +++ b/samples/charts/category-chart/line-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Line Chart Styling feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/line-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/line-chart-with-animations/ReadMe.md b/samples/charts/category-chart/line-chart-with-animations/ReadMe.md index 0774ee1f7..2cadbffd9 100644 --- a/samples/charts/category-chart/line-chart-with-animations/ReadMe.md +++ b/samples/charts/category-chart/line-chart-with-animations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Line Chart With Animati +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/line-chart-with-animations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/line-chart-with-annotations/ReadMe.md b/samples/charts/category-chart/line-chart-with-annotations/ReadMe.md index b78d472e9..bff164946 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/ReadMe.md +++ b/samples/charts/category-chart/line-chart-with-annotations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Line Chart With Annotat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/line-chart-with-annotations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/line-chart-with-legend/ReadMe.md b/samples/charts/category-chart/line-chart-with-legend/ReadMe.md index 611633358..87cd61c9d 100644 --- a/samples/charts/category-chart/line-chart-with-legend/ReadMe.md +++ b/samples/charts/category-chart/line-chart-with-legend/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Line Chart With Legend +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/line-chart-with-legend ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/marker-options/ReadMe.md b/samples/charts/category-chart/marker-options/ReadMe.md index c1c19c5cb..cdc8d4cc8 100644 --- a/samples/charts/category-chart/marker-options/ReadMe.md +++ b/samples/charts/category-chart/marker-options/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Marker Options feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/marker-options ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/marker-templates/ReadMe.md b/samples/charts/category-chart/marker-templates/ReadMe.md index 22d0bd884..c34b44f46 100644 --- a/samples/charts/category-chart/marker-templates/ReadMe.md +++ b/samples/charts/category-chart/marker-templates/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Marker Templates featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/marker-templates ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/overview/ReadMe.md b/samples/charts/category-chart/overview/ReadMe.md index 32830cdf7..9a9e681f6 100644 --- a/samples/charts/category-chart/overview/ReadMe.md +++ b/samples/charts/category-chart/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/point-chart-multiple-sources/ReadMe.md b/samples/charts/category-chart/point-chart-multiple-sources/ReadMe.md index 11042d3b6..46fb11501 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/point-chart-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Point Chart Multiple So +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/point-chart-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/point-chart-single-source/ReadMe.md b/samples/charts/category-chart/point-chart-single-source/ReadMe.md index 0de9d3945..fc878ac04 100644 --- a/samples/charts/category-chart/point-chart-single-source/ReadMe.md +++ b/samples/charts/category-chart/point-chart-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Point Chart Single Sour +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/point-chart-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/point-chart-styling/ReadMe.md b/samples/charts/category-chart/point-chart-styling/ReadMe.md index a3ca7a8a1..46549be59 100644 --- a/samples/charts/category-chart/point-chart-styling/ReadMe.md +++ b/samples/charts/category-chart/point-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Point Chart Styling fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/point-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/spline-area-multiple-sources/ReadMe.md b/samples/charts/category-chart/spline-area-multiple-sources/ReadMe.md index 442a01d35..342c947d8 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/spline-area-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Spline Area Multiple So +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/spline-area-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/spline-area-single-source/ReadMe.md b/samples/charts/category-chart/spline-area-single-source/ReadMe.md index e9c85b682..2bec65d28 100644 --- a/samples/charts/category-chart/spline-area-single-source/ReadMe.md +++ b/samples/charts/category-chart/spline-area-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Spline Area Single Sour +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/spline-area-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/spline-area-styling/ReadMe.md b/samples/charts/category-chart/spline-area-styling/ReadMe.md index fd589ca82..078e45daa 100644 --- a/samples/charts/category-chart/spline-area-styling/ReadMe.md +++ b/samples/charts/category-chart/spline-area-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Spline Area Styling fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/spline-area-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/spline-multiple-sources/ReadMe.md b/samples/charts/category-chart/spline-multiple-sources/ReadMe.md index 53037ecba..e5fb9265b 100644 --- a/samples/charts/category-chart/spline-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/spline-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Spline Multiple Sources +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/spline-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/spline-single-source/ReadMe.md b/samples/charts/category-chart/spline-single-source/ReadMe.md index 185486822..ba3b2f0d6 100644 --- a/samples/charts/category-chart/spline-single-source/ReadMe.md +++ b/samples/charts/category-chart/spline-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Spline Single Source fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/spline-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/spline-styling/ReadMe.md b/samples/charts/category-chart/spline-styling/ReadMe.md index 97e754c2d..12d6b87bc 100644 --- a/samples/charts/category-chart/spline-styling/ReadMe.md +++ b/samples/charts/category-chart/spline-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Spline Styling feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/spline-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/stack-columns/ReadMe.md b/samples/charts/category-chart/stack-columns/ReadMe.md index cec5b5aee..d1e3b3e2f 100644 --- a/samples/charts/category-chart/stack-columns/ReadMe.md +++ b/samples/charts/category-chart/stack-columns/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stack Columns feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/stack-columns ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/step-area-multiple-sources/ReadMe.md b/samples/charts/category-chart/step-area-multiple-sources/ReadMe.md index b47ef0a13..54b824347 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/step-area-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Step Area Multiple Sour +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/step-area-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/step-area-single-source/ReadMe.md b/samples/charts/category-chart/step-area-single-source/ReadMe.md index a6f780ce1..30a25360c 100644 --- a/samples/charts/category-chart/step-area-single-source/ReadMe.md +++ b/samples/charts/category-chart/step-area-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Step Area Single Source +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/step-area-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/step-area-styling/ReadMe.md b/samples/charts/category-chart/step-area-styling/ReadMe.md index 34e34fd26..27d543e2c 100644 --- a/samples/charts/category-chart/step-area-styling/ReadMe.md +++ b/samples/charts/category-chart/step-area-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Step Area Styling featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/step-area-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/step-line-multiple-sources/ReadMe.md b/samples/charts/category-chart/step-line-multiple-sources/ReadMe.md index af9fe2931..3e79f6d5a 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/ReadMe.md +++ b/samples/charts/category-chart/step-line-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Step Line Multiple Sour +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/step-line-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/step-line-single-source/ReadMe.md b/samples/charts/category-chart/step-line-single-source/ReadMe.md index f9829fc36..f74403b84 100644 --- a/samples/charts/category-chart/step-line-single-source/ReadMe.md +++ b/samples/charts/category-chart/step-line-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Step Line Single Source +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/step-line-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/step-line-styling/ReadMe.md b/samples/charts/category-chart/step-line-styling/ReadMe.md index 8688060c5..a8eccf4f3 100644 --- a/samples/charts/category-chart/step-line-styling/ReadMe.md +++ b/samples/charts/category-chart/step-line-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Step Line Styling featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/step-line-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/tooltip-template/ReadMe.md b/samples/charts/category-chart/tooltip-template/ReadMe.md index 5bb885b91..c6f591c77 100644 --- a/samples/charts/category-chart/tooltip-template/ReadMe.md +++ b/samples/charts/category-chart/tooltip-template/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Tooltip Template featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/tooltip-template ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/tooltip-types/ReadMe.md b/samples/charts/category-chart/tooltip-types/ReadMe.md index deb1973a8..f7ff04157 100644 --- a/samples/charts/category-chart/tooltip-types/ReadMe.md +++ b/samples/charts/category-chart/tooltip-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Tooltip Types feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/tooltip-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/trendline/ReadMe.md b/samples/charts/category-chart/trendline/ReadMe.md index a8639604f..1ef86211a 100644 --- a/samples/charts/category-chart/trendline/ReadMe.md +++ b/samples/charts/category-chart/trendline/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Trendline feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/trendline ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/category-chart/value-lines/ReadMe.md b/samples/charts/category-chart/value-lines/ReadMe.md index 211a80623..414d576ee 100644 --- a/samples/charts/category-chart/value-lines/ReadMe.md +++ b/samples/charts/category-chart/value-lines/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Value Lines feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/category-chart/value-lines ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/annotations-custom/ReadMe.md b/samples/charts/data-chart/annotations-custom/ReadMe.md index fb32e925e..aed0ea381 100644 --- a/samples/charts/data-chart/annotations-custom/ReadMe.md +++ b/samples/charts/data-chart/annotations-custom/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations Custom feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/annotations-custom ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/ReadMe.md b/samples/charts/data-chart/axis-annotations-corner-radius/ReadMe.md index 6049cb66d..54a9fab98 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/ReadMe.md +++ b/samples/charts/data-chart/axis-annotations-corner-radius/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Annotations Corner +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-annotations-corner-radius ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-annotations/ReadMe.md b/samples/charts/data-chart/axis-annotations/ReadMe.md index c68d0cbe5..b31b69142 100644 --- a/samples/charts/data-chart/axis-annotations/ReadMe.md +++ b/samples/charts/data-chart/axis-annotations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Annotations featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-annotations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-crossing/ReadMe.md b/samples/charts/data-chart/axis-crossing/ReadMe.md index 1c0c3713c..49703e0d9 100644 --- a/samples/charts/data-chart/axis-crossing/ReadMe.md +++ b/samples/charts/data-chart/axis-crossing/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Crossing feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-crossing ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-label-rotation/ReadMe.md b/samples/charts/data-chart/axis-label-rotation/ReadMe.md index b49de03e6..b6361a3b4 100644 --- a/samples/charts/data-chart/axis-label-rotation/ReadMe.md +++ b/samples/charts/data-chart/axis-label-rotation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Label Rotation fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-label-rotation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-locations/ReadMe.md b/samples/charts/data-chart/axis-locations/ReadMe.md index f46127e00..c44be32de 100644 --- a/samples/charts/data-chart/axis-locations/ReadMe.md +++ b/samples/charts/data-chart/axis-locations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Locations feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-locations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-min-max-gap/ReadMe.md b/samples/charts/data-chart/axis-min-max-gap/ReadMe.md index a51a380ac..f45cb2402 100644 --- a/samples/charts/data-chart/axis-min-max-gap/ReadMe.md +++ b/samples/charts/data-chart/axis-min-max-gap/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Min Max Gap featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-min-max-gap ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-settings/ReadMe.md b/samples/charts/data-chart/axis-settings/ReadMe.md index b20f03828..6985829b5 100644 --- a/samples/charts/data-chart/axis-settings/ReadMe.md +++ b/samples/charts/data-chart/axis-settings/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Settings feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-settings ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-sharing/ReadMe.md b/samples/charts/data-chart/axis-sharing/ReadMe.md index 9910c89e3..5aff29774 100644 --- a/samples/charts/data-chart/axis-sharing/ReadMe.md +++ b/samples/charts/data-chart/axis-sharing/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Sharing feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-sharing ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/axis-types/ReadMe.md b/samples/charts/data-chart/axis-types/ReadMe.md index f8b29537b..f02b129e6 100644 --- a/samples/charts/data-chart/axis-types/ReadMe.md +++ b/samples/charts/data-chart/axis-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Types feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/axis-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/ReadMe.md b/samples/charts/data-chart/bar-chart-multiple-sources/ReadMe.md index 4b494ad11..21b330a1f 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/ReadMe.md +++ b/samples/charts/data-chart/bar-chart-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Bar Chart Multiple Sour +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/bar-chart-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/bar-chart-overlapping/ReadMe.md b/samples/charts/data-chart/bar-chart-overlapping/ReadMe.md index a893f72e4..d47ef6632 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/ReadMe.md +++ b/samples/charts/data-chart/bar-chart-overlapping/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Bar Chart Overlapping f +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/bar-chart-overlapping ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/bar-chart-single-source/ReadMe.md b/samples/charts/data-chart/bar-chart-single-source/ReadMe.md index cf40fb86a..4cac5a02c 100644 --- a/samples/charts/data-chart/bar-chart-single-source/ReadMe.md +++ b/samples/charts/data-chart/bar-chart-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Bar Chart Single Source +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/bar-chart-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/bar-chart-styling/ReadMe.md b/samples/charts/data-chart/bar-chart-styling/ReadMe.md index fa56cceac..328cd8be9 100644 --- a/samples/charts/data-chart/bar-chart-styling/ReadMe.md +++ b/samples/charts/data-chart/bar-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Bar Chart Styling featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/bar-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/callout-layer-styling/ReadMe.md b/samples/charts/data-chart/callout-layer-styling/ReadMe.md index bea3e19e2..dbe8be539 100644 --- a/samples/charts/data-chart/callout-layer-styling/ReadMe.md +++ b/samples/charts/data-chart/callout-layer-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Callout Layer Styling f +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/callout-layer-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/ReadMe.md b/samples/charts/data-chart/chart-highlight-filter-datasource/ReadMe.md index 118dad9f9..d609c4474 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/ReadMe.md +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Highlight Filter +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/chart-highlight-filter-datasource ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/ReadMe.md b/samples/charts/data-chart/chart-highlight-filter-multiple-series/ReadMe.md index a21af7c85..daa7691b0 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/ReadMe.md +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Highlight Filter +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/chart-highlight-filter-multiple-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/chart-highlight-filter/ReadMe.md b/samples/charts/data-chart/chart-highlight-filter/ReadMe.md index 328b16f9c..7af832bfc 100644 --- a/samples/charts/data-chart/chart-highlight-filter/ReadMe.md +++ b/samples/charts/data-chart/chart-highlight-filter/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Highlight Filter +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/chart-highlight-filter ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/chart-navigation/ReadMe.md b/samples/charts/data-chart/chart-navigation/ReadMe.md index 69d20f9c6..603d88609 100644 --- a/samples/charts/data-chart/chart-navigation/ReadMe.md +++ b/samples/charts/data-chart/chart-navigation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Navigation featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/chart-navigation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/chart-overview/ReadMe.md b/samples/charts/data-chart/chart-overview/ReadMe.md index a49489cd8..c1a236cea 100644 --- a/samples/charts/data-chart/chart-overview/ReadMe.md +++ b/samples/charts/data-chart/chart-overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Overview feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/chart-overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/chart-performance/ReadMe.md b/samples/charts/data-chart/chart-performance/ReadMe.md index 54716fbae..af5844b45 100644 --- a/samples/charts/data-chart/chart-performance/ReadMe.md +++ b/samples/charts/data-chart/chart-performance/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Performance featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/chart-performance ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/chart-synchronization/ReadMe.md b/samples/charts/data-chart/chart-synchronization/ReadMe.md index 841380c14..60151bcac 100644 --- a/samples/charts/data-chart/chart-synchronization/ReadMe.md +++ b/samples/charts/data-chart/chart-synchronization/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Synchronization f +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/chart-synchronization ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/chart-titles/ReadMe.md b/samples/charts/data-chart/chart-titles/ReadMe.md index b917b3a69..eb9e62ea1 100644 --- a/samples/charts/data-chart/chart-titles/ReadMe.md +++ b/samples/charts/data-chart/chart-titles/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Chart Titles feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/chart-titles ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/column-chart-styling/ReadMe.md b/samples/charts/data-chart/column-chart-styling/ReadMe.md index ef65c5bd5..663bd3dc8 100644 --- a/samples/charts/data-chart/column-chart-styling/ReadMe.md +++ b/samples/charts/data-chart/column-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Column Chart Styling fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/column-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/composite-chart/ReadMe.md b/samples/charts/data-chart/composite-chart/ReadMe.md index 79d942922..015d1c6ef 100644 --- a/samples/charts/data-chart/composite-chart/ReadMe.md +++ b/samples/charts/data-chart/composite-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Composite Chart feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/composite-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/crosshair-layer-styling/ReadMe.md b/samples/charts/data-chart/crosshair-layer-styling/ReadMe.md index a5fa5dd94..dd5b5f015 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/ReadMe.md +++ b/samples/charts/data-chart/crosshair-layer-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Crosshair Layer Styling +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/crosshair-layer-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/custom-drawing-annotations/ReadMe.md b/samples/charts/data-chart/custom-drawing-annotations/ReadMe.md index 9b3d83b3e..87dc3f163 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/ReadMe.md +++ b/samples/charts/data-chart/custom-drawing-annotations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Custom Drawing Annotati +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/custom-drawing-annotations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/custom-editing-data/ReadMe.md b/samples/charts/data-chart/custom-editing-data/ReadMe.md index 16ba35451..d51ea517a 100644 --- a/samples/charts/data-chart/custom-editing-data/ReadMe.md +++ b/samples/charts/data-chart/custom-editing-data/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Custom Editing Data fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/custom-editing-data ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/dash-array-axes/ReadMe.md b/samples/charts/data-chart/dash-array-axes/ReadMe.md index dd578148c..b946929c4 100644 --- a/samples/charts/data-chart/dash-array-axes/ReadMe.md +++ b/samples/charts/data-chart/dash-array-axes/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Dash Array Axes feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/dash-array-axes ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/dash-array-series/ReadMe.md b/samples/charts/data-chart/dash-array-series/ReadMe.md index f24ae21f9..44c7a4aee 100644 --- a/samples/charts/data-chart/dash-array-series/ReadMe.md +++ b/samples/charts/data-chart/dash-array-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Dash Array Series featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/dash-array-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/dash-array-tickmarks/ReadMe.md b/samples/charts/data-chart/dash-array-tickmarks/ReadMe.md index 83c7b834e..7543bb4a6 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/ReadMe.md +++ b/samples/charts/data-chart/dash-array-tickmarks/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Dash Array Tickmarks fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/dash-array-tickmarks ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/dash-array-trendline/ReadMe.md b/samples/charts/data-chart/dash-array-trendline/ReadMe.md index 86b05a612..a507f521c 100644 --- a/samples/charts/data-chart/dash-array-trendline/ReadMe.md +++ b/samples/charts/data-chart/dash-array-trendline/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Dash Array Trendline fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/dash-array-trendline ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/data-legend/ReadMe.md b/samples/charts/data-chart/data-legend/ReadMe.md index d15ef9199..b20f52263 100644 --- a/samples/charts/data-chart/data-legend/ReadMe.md +++ b/samples/charts/data-chart/data-legend/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Legend feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/data-legend ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/data-tooltip/ReadMe.md b/samples/charts/data-chart/data-tooltip/ReadMe.md index 1c3bb84e0..52a83fd19 100644 --- a/samples/charts/data-chart/data-tooltip/ReadMe.md +++ b/samples/charts/data-chart/data-tooltip/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Tooltip feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/data-tooltip ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/final-value-layer-styling/ReadMe.md b/samples/charts/data-chart/final-value-layer-styling/ReadMe.md index 63ffdff06..ebb0cfd60 100644 --- a/samples/charts/data-chart/final-value-layer-styling/ReadMe.md +++ b/samples/charts/data-chart/final-value-layer-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Final Value Layer Styli +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/final-value-layer-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/financial-price-series/ReadMe.md b/samples/charts/data-chart/financial-price-series/ReadMe.md index f1d943079..2b1e986f2 100644 --- a/samples/charts/data-chart/financial-price-series/ReadMe.md +++ b/samples/charts/data-chart/financial-price-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Financial Price Series +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/financial-price-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/format-specifiers/ReadMe.md b/samples/charts/data-chart/format-specifiers/ReadMe.md index 49bb2000c..5f7c9d4ff 100644 --- a/samples/charts/data-chart/format-specifiers/ReadMe.md +++ b/samples/charts/data-chart/format-specifiers/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Format Specifiers featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/format-specifiers ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/legends/ReadMe.md b/samples/charts/data-chart/legends/ReadMe.md index 72aeeb7ad..8f1525d00 100644 --- a/samples/charts/data-chart/legends/ReadMe.md +++ b/samples/charts/data-chart/legends/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Legends feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/legends ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/polar-area-chart-styling/ReadMe.md b/samples/charts/data-chart/polar-area-chart-styling/ReadMe.md index 1b2427e46..e64722e84 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/ReadMe.md +++ b/samples/charts/data-chart/polar-area-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Polar Area Chart Stylin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/polar-area-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/polar-area-chart/ReadMe.md b/samples/charts/data-chart/polar-area-chart/ReadMe.md index 974fb1565..f402907a0 100644 --- a/samples/charts/data-chart/polar-area-chart/ReadMe.md +++ b/samples/charts/data-chart/polar-area-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Polar Area Chart featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/polar-area-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/polar-chart-types/ReadMe.md b/samples/charts/data-chart/polar-chart-types/ReadMe.md index cb5aab3e0..78c82547c 100644 --- a/samples/charts/data-chart/polar-chart-types/ReadMe.md +++ b/samples/charts/data-chart/polar-chart-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Polar Chart Types featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/polar-chart-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/polar-line-chart/ReadMe.md b/samples/charts/data-chart/polar-line-chart/ReadMe.md index ef5f0edc1..aaf275ba5 100644 --- a/samples/charts/data-chart/polar-line-chart/ReadMe.md +++ b/samples/charts/data-chart/polar-line-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Polar Line Chart featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/polar-line-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/polar-scatter-chart/ReadMe.md b/samples/charts/data-chart/polar-scatter-chart/ReadMe.md index 51f107e33..8f1025104 100644 --- a/samples/charts/data-chart/polar-scatter-chart/ReadMe.md +++ b/samples/charts/data-chart/polar-scatter-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Polar Scatter Chart fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/polar-scatter-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/polar-spline-area-chart/ReadMe.md b/samples/charts/data-chart/polar-spline-area-chart/ReadMe.md index 935a86614..e917bf6a8 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/ReadMe.md +++ b/samples/charts/data-chart/polar-spline-area-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Polar Spline Area Chart +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/polar-spline-area-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/polar-spline-chart/ReadMe.md b/samples/charts/data-chart/polar-spline-chart/ReadMe.md index a51abc22a..234f1d37e 100644 --- a/samples/charts/data-chart/polar-spline-chart/ReadMe.md +++ b/samples/charts/data-chart/polar-spline-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Polar Spline Chart feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/polar-spline-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/radial-area-chart-styling/ReadMe.md b/samples/charts/data-chart/radial-area-chart-styling/ReadMe.md index e11a369cd..75d3acf7c 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/ReadMe.md +++ b/samples/charts/data-chart/radial-area-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Radial Area Chart Styli +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/radial-area-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/radial-area-chart/ReadMe.md b/samples/charts/data-chart/radial-area-chart/ReadMe.md index 2f18c7fed..ec5874bda 100644 --- a/samples/charts/data-chart/radial-area-chart/ReadMe.md +++ b/samples/charts/data-chart/radial-area-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Radial Area Chart featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/radial-area-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/radial-chart-types/ReadMe.md b/samples/charts/data-chart/radial-chart-types/ReadMe.md index 7b26a632b..b320457a6 100644 --- a/samples/charts/data-chart/radial-chart-types/ReadMe.md +++ b/samples/charts/data-chart/radial-chart-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Radial Chart Types feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/radial-chart-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/radial-column-chart/ReadMe.md b/samples/charts/data-chart/radial-column-chart/ReadMe.md index 4534fa992..f39588b44 100644 --- a/samples/charts/data-chart/radial-column-chart/ReadMe.md +++ b/samples/charts/data-chart/radial-column-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Radial Column Chart fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/radial-column-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/radial-line-chart/ReadMe.md b/samples/charts/data-chart/radial-line-chart/ReadMe.md index efe70b503..fb4cf4cf2 100644 --- a/samples/charts/data-chart/radial-line-chart/ReadMe.md +++ b/samples/charts/data-chart/radial-line-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Radial Line Chart featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/radial-line-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/radial-pie-chart/ReadMe.md b/samples/charts/data-chart/radial-pie-chart/ReadMe.md index 3bf1065c5..f35926548 100644 --- a/samples/charts/data-chart/radial-pie-chart/ReadMe.md +++ b/samples/charts/data-chart/radial-pie-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Radial Pie Chart featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/radial-pie-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/range-area-chart/ReadMe.md b/samples/charts/data-chart/range-area-chart/ReadMe.md index 8984b8d83..ed7707ec2 100644 --- a/samples/charts/data-chart/range-area-chart/ReadMe.md +++ b/samples/charts/data-chart/range-area-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Range Area Chart featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/range-area-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/range-column-chart/ReadMe.md b/samples/charts/data-chart/range-column-chart/ReadMe.md index 5ba2198a2..45ec2f8fe 100644 --- a/samples/charts/data-chart/range-column-chart/ReadMe.md +++ b/samples/charts/data-chart/range-column-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Range Column Chart feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/range-column-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/ReadMe.md b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/ReadMe.md index eeb751532..54479d4b7 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/ReadMe.md +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scatter Bubble Chart Mu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/scatter-bubble-chart-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/ReadMe.md b/samples/charts/data-chart/scatter-bubble-chart-single-source/ReadMe.md index 972b9bf5d..a01b990ab 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/ReadMe.md +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scatter Bubble Chart Si +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/scatter-bubble-chart-single-source ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/ReadMe.md b/samples/charts/data-chart/scatter-bubble-chart-styling/ReadMe.md index 47fd54e00..e6f6ca040 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/ReadMe.md +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scatter Bubble Chart St +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/scatter-bubble-chart-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/scatter-line-chart/ReadMe.md b/samples/charts/data-chart/scatter-line-chart/ReadMe.md index ec49b1821..6f0dac64b 100644 --- a/samples/charts/data-chart/scatter-line-chart/ReadMe.md +++ b/samples/charts/data-chart/scatter-line-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scatter Line Chart feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/scatter-line-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/scatter-point-chart/ReadMe.md b/samples/charts/data-chart/scatter-point-chart/ReadMe.md index 923ca6cc4..dfbc0425a 100644 --- a/samples/charts/data-chart/scatter-point-chart/ReadMe.md +++ b/samples/charts/data-chart/scatter-point-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scatter Point Chart fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/scatter-point-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/scatter-spline-chart/ReadMe.md b/samples/charts/data-chart/scatter-spline-chart/ReadMe.md index 6f86dc377..cb924e71f 100644 --- a/samples/charts/data-chart/scatter-spline-chart/ReadMe.md +++ b/samples/charts/data-chart/scatter-spline-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scatter Spline Chart fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/scatter-spline-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/series-animations/ReadMe.md b/samples/charts/data-chart/series-animations/ReadMe.md index f194d89a5..eed8ae227 100644 --- a/samples/charts/data-chart/series-animations/ReadMe.md +++ b/samples/charts/data-chart/series-animations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Series Animations featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/series-animations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/series-annotations/ReadMe.md b/samples/charts/data-chart/series-annotations/ReadMe.md index feef083c7..7f38aced0 100644 --- a/samples/charts/data-chart/series-annotations/ReadMe.md +++ b/samples/charts/data-chart/series-annotations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Series Annotations feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/series-annotations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/series-highlighting/ReadMe.md b/samples/charts/data-chart/series-highlighting/ReadMe.md index 8aae1a2e4..6bc59f173 100644 --- a/samples/charts/data-chart/series-highlighting/ReadMe.md +++ b/samples/charts/data-chart/series-highlighting/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Series Highlighting fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/series-highlighting ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/series-marker-template/ReadMe.md b/samples/charts/data-chart/series-marker-template/ReadMe.md index a0e82cae8..70fb93fbb 100644 --- a/samples/charts/data-chart/series-marker-template/ReadMe.md +++ b/samples/charts/data-chart/series-marker-template/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Series Marker Template +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/series-marker-template ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/series-markers/ReadMe.md b/samples/charts/data-chart/series-markers/ReadMe.md index 4281b8c5b..25e5255ff 100644 --- a/samples/charts/data-chart/series-markers/ReadMe.md +++ b/samples/charts/data-chart/series-markers/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Series Markers feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/series-markers ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/series-tooltips/ReadMe.md b/samples/charts/data-chart/series-tooltips/ReadMe.md index 5e53e65ad..7a553e1e4 100644 --- a/samples/charts/data-chart/series-tooltips/ReadMe.md +++ b/samples/charts/data-chart/series-tooltips/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Series Tooltips feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/series-tooltips ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/series-trendlines/ReadMe.md b/samples/charts/data-chart/series-trendlines/ReadMe.md index 6852c2284..170fb9f90 100644 --- a/samples/charts/data-chart/series-trendlines/ReadMe.md +++ b/samples/charts/data-chart/series-trendlines/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Series Trendlines featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/series-trendlines ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/series-value-overlay/ReadMe.md b/samples/charts/data-chart/series-value-overlay/ReadMe.md index a803ea115..f0be59ebf 100644 --- a/samples/charts/data-chart/series-value-overlay/ReadMe.md +++ b/samples/charts/data-chart/series-value-overlay/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Series Value Overlay fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/series-value-overlay ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-100-area-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-area-chart/ReadMe.md index 067618db9..aeb306479 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-area-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked 100 Area Chart +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-100-area-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-100-bar-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-bar-chart/ReadMe.md index ca17dfcf5..1f91cd26f 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-bar-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked 100 Bar Chart f +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-100-bar-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-100-column-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-column-chart/ReadMe.md index eba46f91c..49d694bed 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-column-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked 100 Column Char +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-100-column-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-100-line-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-line-chart/ReadMe.md index 2bffcb38e..776cebfdb 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-line-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked 100 Line Chart +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-100-line-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-spline-area-chart/ReadMe.md index e526ff238..fd2184347 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked 100 Spline Area +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-100-spline-area-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-100-spline-chart/ReadMe.md b/samples/charts/data-chart/stacked-100-spline-chart/ReadMe.md index eb97e5c3f..cf5f1a8a1 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-100-spline-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked 100 Spline Char +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-100-spline-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-area-chart/ReadMe.md b/samples/charts/data-chart/stacked-area-chart/ReadMe.md index 1bbfeb5be..5403d4d8d 100644 --- a/samples/charts/data-chart/stacked-area-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-area-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked Area Chart feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-area-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-bar-chart/ReadMe.md b/samples/charts/data-chart/stacked-bar-chart/ReadMe.md index de281d048..75741e994 100644 --- a/samples/charts/data-chart/stacked-bar-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-bar-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked Bar Chart featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-bar-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-chart-types/ReadMe.md b/samples/charts/data-chart/stacked-chart-types/ReadMe.md index 0fdac7677..696c57edb 100644 --- a/samples/charts/data-chart/stacked-chart-types/ReadMe.md +++ b/samples/charts/data-chart/stacked-chart-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked Chart Types fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-chart-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-column-chart/ReadMe.md b/samples/charts/data-chart/stacked-column-chart/ReadMe.md index 60db3d9c2..d695167a7 100644 --- a/samples/charts/data-chart/stacked-column-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-column-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked Column Chart fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-column-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-line-chart/ReadMe.md b/samples/charts/data-chart/stacked-line-chart/ReadMe.md index 79e73b2e6..e7e7fe878 100644 --- a/samples/charts/data-chart/stacked-line-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-line-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked Line Chart feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-line-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-spline-area-chart/ReadMe.md b/samples/charts/data-chart/stacked-spline-area-chart/ReadMe.md index 9b7aadb83..3235220a7 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-spline-area-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked Spline Area Cha +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-spline-area-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/stacked-spline-chart/ReadMe.md b/samples/charts/data-chart/stacked-spline-chart/ReadMe.md index 32e56e078..1c2f56b56 100644 --- a/samples/charts/data-chart/stacked-spline-chart/ReadMe.md +++ b/samples/charts/data-chart/stacked-spline-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stacked Spline Chart fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/stacked-spline-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/tooltip-template/ReadMe.md b/samples/charts/data-chart/tooltip-template/ReadMe.md index c01c3be07..7d2a9e27b 100644 --- a/samples/charts/data-chart/tooltip-template/ReadMe.md +++ b/samples/charts/data-chart/tooltip-template/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Tooltip Template featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/tooltip-template ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/transition-event/ReadMe.md b/samples/charts/data-chart/transition-event/ReadMe.md index e92de3e6d..a2eaf83f2 100644 --- a/samples/charts/data-chart/transition-event/ReadMe.md +++ b/samples/charts/data-chart/transition-event/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Transition Event featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/transition-event ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-area-series/ReadMe.md b/samples/charts/data-chart/type-category-area-series/ReadMe.md index 58fbae5c9..6fc7cd3e4 100644 --- a/samples/charts/data-chart/type-category-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Area Seri +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-bar-series/ReadMe.md b/samples/charts/data-chart/type-category-bar-series/ReadMe.md index caa97f835..f6bf6fe6d 100644 --- a/samples/charts/data-chart/type-category-bar-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-bar-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Bar Serie +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-bar-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-column-series/ReadMe.md b/samples/charts/data-chart/type-category-column-series/ReadMe.md index 2950d5068..876c5824b 100644 --- a/samples/charts/data-chart/type-category-column-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-column-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Column Se +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-column-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-line-series/ReadMe.md b/samples/charts/data-chart/type-category-line-series/ReadMe.md index 63f358a04..f09899a1b 100644 --- a/samples/charts/data-chart/type-category-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-line-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Line Seri +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-line-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-point-series/ReadMe.md b/samples/charts/data-chart/type-category-point-series/ReadMe.md index b2ea7b5e8..8e5ad37d1 100644 --- a/samples/charts/data-chart/type-category-point-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-point-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Point Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-point-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-series/ReadMe.md b/samples/charts/data-chart/type-category-series/ReadMe.md index 0ddf8bd82..d6829fc60 100644 --- a/samples/charts/data-chart/type-category-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Series fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-spline-area-series/ReadMe.md b/samples/charts/data-chart/type-category-spline-area-series/ReadMe.md index feea5fad9..7a08b0010 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-spline-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Spline Ar +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-spline-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-spline-series/ReadMe.md b/samples/charts/data-chart/type-category-spline-series/ReadMe.md index e5a6ac8ba..22a1f7c6f 100644 --- a/samples/charts/data-chart/type-category-spline-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-spline-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Spline Se +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-spline-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-step-area-series/ReadMe.md b/samples/charts/data-chart/type-category-step-area-series/ReadMe.md index 62b0110cf..b0aee1d01 100644 --- a/samples/charts/data-chart/type-category-step-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-step-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Step Area +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-step-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-step-line-series/ReadMe.md b/samples/charts/data-chart/type-category-step-line-series/ReadMe.md index c0d8cdd53..5d5a820bc 100644 --- a/samples/charts/data-chart/type-category-step-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-step-line-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Step Line +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-step-line-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-category-waterfall-series/ReadMe.md b/samples/charts/data-chart/type-category-waterfall-series/ReadMe.md index 563745f9a..20831252d 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/ReadMe.md +++ b/samples/charts/data-chart/type-category-waterfall-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Category Waterfall +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-category-waterfall-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-financial-area-indicators/ReadMe.md b/samples/charts/data-chart/type-financial-area-indicators/ReadMe.md index 10e94be7d..01c14b679 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/ReadMe.md +++ b/samples/charts/data-chart/type-financial-area-indicators/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Financial Area Ind +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-financial-area-indicators ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-financial-candlestick-series/ReadMe.md b/samples/charts/data-chart/type-financial-candlestick-series/ReadMe.md index 9c8d0632e..f247ea995 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/ReadMe.md +++ b/samples/charts/data-chart/type-financial-candlestick-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Financial Candlest +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-financial-candlestick-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-financial-column-indicators/ReadMe.md b/samples/charts/data-chart/type-financial-column-indicators/ReadMe.md index 572369138..dd12e0d3f 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/ReadMe.md +++ b/samples/charts/data-chart/type-financial-column-indicators/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Financial Column I +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-financial-column-indicators ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-financial-line-indicators/ReadMe.md b/samples/charts/data-chart/type-financial-line-indicators/ReadMe.md index 099c93ac6..5af6e0fc7 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/ReadMe.md +++ b/samples/charts/data-chart/type-financial-line-indicators/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Financial Line Ind +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-financial-line-indicators ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-financial-ohlc-series/ReadMe.md b/samples/charts/data-chart/type-financial-ohlc-series/ReadMe.md index 2b184ed70..747acc9fe 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/ReadMe.md +++ b/samples/charts/data-chart/type-financial-ohlc-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Financial Ohlc Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-financial-ohlc-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-financial-overlays/ReadMe.md b/samples/charts/data-chart/type-financial-overlays/ReadMe.md index a69c3bc23..c28609a40 100644 --- a/samples/charts/data-chart/type-financial-overlays/ReadMe.md +++ b/samples/charts/data-chart/type-financial-overlays/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Financial Overlays +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-financial-overlays ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-financial-series/ReadMe.md b/samples/charts/data-chart/type-financial-series/ReadMe.md index 864b7ab02..40ecd7a53 100644 --- a/samples/charts/data-chart/type-financial-series/ReadMe.md +++ b/samples/charts/data-chart/type-financial-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Financial Series f +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-financial-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-radial-area-series/ReadMe.md b/samples/charts/data-chart/type-radial-area-series/ReadMe.md index aec7ec367..f4376b492 100644 --- a/samples/charts/data-chart/type-radial-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-radial-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Radial Area Series +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-radial-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-radial-column-series/ReadMe.md b/samples/charts/data-chart/type-radial-column-series/ReadMe.md index 0a627d6ce..d12713489 100644 --- a/samples/charts/data-chart/type-radial-column-series/ReadMe.md +++ b/samples/charts/data-chart/type-radial-column-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Radial Column Seri +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-radial-column-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-radial-line-series/ReadMe.md b/samples/charts/data-chart/type-radial-line-series/ReadMe.md index 75a82b868..4a7aaf715 100644 --- a/samples/charts/data-chart/type-radial-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-radial-line-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Radial Line Series +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-radial-line-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-radial-pie-series/ReadMe.md b/samples/charts/data-chart/type-radial-pie-series/ReadMe.md index a51ae3649..369e780db 100644 --- a/samples/charts/data-chart/type-radial-pie-series/ReadMe.md +++ b/samples/charts/data-chart/type-radial-pie-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Radial Pie Series +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-radial-pie-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-range-area-series/ReadMe.md b/samples/charts/data-chart/type-range-area-series/ReadMe.md index 54e00674d..b33d9f723 100644 --- a/samples/charts/data-chart/type-range-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-range-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Range Area Series +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-range-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-range-column-series/ReadMe.md b/samples/charts/data-chart/type-range-column-series/ReadMe.md index ae0d2396c..04c82779c 100644 --- a/samples/charts/data-chart/type-range-column-series/ReadMe.md +++ b/samples/charts/data-chart/type-range-column-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Range Column Serie +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-range-column-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-range-series/ReadMe.md b/samples/charts/data-chart/type-range-series/ReadMe.md index e1bd34ea2..3b00cec72 100644 --- a/samples/charts/data-chart/type-range-series/ReadMe.md +++ b/samples/charts/data-chart/type-range-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Range Series featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-range-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-area-series/ReadMe.md b/samples/charts/data-chart/type-scatter-area-series/ReadMe.md index 125413a08..95d09a8bf 100644 --- a/samples/charts/data-chart/type-scatter-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Area Serie +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-bubble-series/ReadMe.md b/samples/charts/data-chart/type-scatter-bubble-series/ReadMe.md index ce1499a6f..5b11494e3 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-bubble-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Bubble Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-bubble-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-contour-series/ReadMe.md b/samples/charts/data-chart/type-scatter-contour-series/ReadMe.md index 99e9f2fe9..f34b4e339 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-contour-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Contour Se +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-contour-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-hd-series/ReadMe.md b/samples/charts/data-chart/type-scatter-hd-series/ReadMe.md index ab812ab31..79fad7812 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-hd-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Hd Series +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-hd-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-line-series/ReadMe.md b/samples/charts/data-chart/type-scatter-line-series/ReadMe.md index 149dc7196..0476a4e76 100644 --- a/samples/charts/data-chart/type-scatter-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-line-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Line Serie +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-line-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-point-series/ReadMe.md b/samples/charts/data-chart/type-scatter-point-series/ReadMe.md index c7701af27..2d1a4ea7c 100644 --- a/samples/charts/data-chart/type-scatter-point-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-point-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Point Seri +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-point-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-polygon-series/ReadMe.md b/samples/charts/data-chart/type-scatter-polygon-series/ReadMe.md index d89b32814..2e758774d 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-polygon-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Polygon Se +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-polygon-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-polyline-series/ReadMe.md b/samples/charts/data-chart/type-scatter-polyline-series/ReadMe.md index 74f8c0111..fe700d221 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-polyline-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Polyline S +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-polyline-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-series/ReadMe.md b/samples/charts/data-chart/type-scatter-series/ReadMe.md index b81491902..e1bd16f1a 100644 --- a/samples/charts/data-chart/type-scatter-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Series fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-scatter-spline-series/ReadMe.md b/samples/charts/data-chart/type-scatter-spline-series/ReadMe.md index a2f527f81..ce93bb983 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/ReadMe.md +++ b/samples/charts/data-chart/type-scatter-spline-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Spline Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-scatter-spline-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-shape-series/ReadMe.md b/samples/charts/data-chart/type-shape-series/ReadMe.md index 7b17deca0..d238c698b 100644 --- a/samples/charts/data-chart/type-shape-series/ReadMe.md +++ b/samples/charts/data-chart/type-shape-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Shape Series featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-shape-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-100-area-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-area-series/ReadMe.md index 2512a1b8b..e35b8cba1 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked 100 Area S +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-100-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-bar-series/ReadMe.md index 3cb61d265..f5d8d0aaa 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-bar-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked 100 Bar Se +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-100-bar-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-100-column-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-column-series/ReadMe.md index d7218428c..163eacc17 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-column-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked 100 Column +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-100-column-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-100-line-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-line-series/ReadMe.md index 0d17c5ddc..d2bc85634 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-line-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked 100 Line S +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-100-line-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-spline-area-series/ReadMe.md index 20269b775..040b656fd 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked 100 Spline +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-100-spline-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/ReadMe.md b/samples/charts/data-chart/type-stacked-100-spline-series/ReadMe.md index 87619cc2c..b56cc7c01 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-100-spline-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked 100 Spline +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-100-spline-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-area-series/ReadMe.md b/samples/charts/data-chart/type-stacked-area-series/ReadMe.md index 90f7a69e0..903f1f049 100644 --- a/samples/charts/data-chart/type-stacked-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked Area Serie +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-bar-series/ReadMe.md b/samples/charts/data-chart/type-stacked-bar-series/ReadMe.md index 2acd9a625..9d1550031 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-bar-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked Bar Series +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-bar-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-column-series/ReadMe.md b/samples/charts/data-chart/type-stacked-column-series/ReadMe.md index ce7106c8e..f8e30cf15 100644 --- a/samples/charts/data-chart/type-stacked-column-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-column-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked Column Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-column-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-line-series/ReadMe.md b/samples/charts/data-chart/type-stacked-line-series/ReadMe.md index bfd07a3b8..ee38025c9 100644 --- a/samples/charts/data-chart/type-stacked-line-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-line-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked Line Serie +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-line-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/ReadMe.md b/samples/charts/data-chart/type-stacked-spline-area-series/ReadMe.md index 7105e5948..6d5fce69c 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-spline-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked Spline Are +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-spline-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/type-stacked-spline-series/ReadMe.md b/samples/charts/data-chart/type-stacked-spline-series/ReadMe.md index e38a03530..0cb627643 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/ReadMe.md +++ b/samples/charts/data-chart/type-stacked-spline-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Stacked Spline Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/type-stacked-spline-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/data-chart/waterfall-chart/ReadMe.md b/samples/charts/data-chart/waterfall-chart/ReadMe.md index f3cf42afb..0b45f2fa1 100644 --- a/samples/charts/data-chart/waterfall-chart/ReadMe.md +++ b/samples/charts/data-chart/waterfall-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Waterfall Chart feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/data-chart/waterfall-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/doughnut-chart/animation/ReadMe.md b/samples/charts/doughnut-chart/animation/ReadMe.md index 3b7df32dc..75dc6213e 100644 --- a/samples/charts/doughnut-chart/animation/ReadMe.md +++ b/samples/charts/doughnut-chart/animation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Animation feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/doughnut-chart/animation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/doughnut-chart/explosion/ReadMe.md b/samples/charts/doughnut-chart/explosion/ReadMe.md index 27cc5c56d..8a71ae777 100644 --- a/samples/charts/doughnut-chart/explosion/ReadMe.md +++ b/samples/charts/doughnut-chart/explosion/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Explosion feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/doughnut-chart/explosion ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/doughnut-chart/legend/ReadMe.md b/samples/charts/doughnut-chart/legend/ReadMe.md index d1368735f..88e6723a3 100644 --- a/samples/charts/doughnut-chart/legend/ReadMe.md +++ b/samples/charts/doughnut-chart/legend/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Legend feature using [D +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/doughnut-chart/legend ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/doughnut-chart/overview/ReadMe.md b/samples/charts/doughnut-chart/overview/ReadMe.md index 367df954e..d681c60dc 100644 --- a/samples/charts/doughnut-chart/overview/ReadMe.md +++ b/samples/charts/doughnut-chart/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/doughnut-chart/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/doughnut-chart/rings/ReadMe.md b/samples/charts/doughnut-chart/rings/ReadMe.md index 5e5bca791..bba1e7286 100644 --- a/samples/charts/doughnut-chart/rings/ReadMe.md +++ b/samples/charts/doughnut-chart/rings/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Rings feature using [Do +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/doughnut-chart/rings ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/doughnut-chart/selection/ReadMe.md b/samples/charts/doughnut-chart/selection/ReadMe.md index 7cace1f0a..ac4006a52 100644 --- a/samples/charts/doughnut-chart/selection/ReadMe.md +++ b/samples/charts/doughnut-chart/selection/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Selection feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/doughnut-chart/selection ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/annotations/ReadMe.md b/samples/charts/financial-chart/annotations/ReadMe.md index 71b2b1ec9..91869ce47 100644 --- a/samples/charts/financial-chart/annotations/ReadMe.md +++ b/samples/charts/financial-chart/annotations/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Annotations feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/annotations ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/axis-types/ReadMe.md b/samples/charts/financial-chart/axis-types/ReadMe.md index a78c9e575..b63d91ff7 100644 --- a/samples/charts/financial-chart/axis-types/ReadMe.md +++ b/samples/charts/financial-chart/axis-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Axis Types feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/axis-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/ReadMe.md b/samples/charts/financial-chart/data-legend-formatting-currency/ReadMe.md index 433450ebc..f9419a2df 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/ReadMe.md +++ b/samples/charts/financial-chart/data-legend-formatting-currency/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Legend Formatting +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/data-legend-formatting-currency ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/data-legend-styling-props/ReadMe.md b/samples/charts/financial-chart/data-legend-styling-props/ReadMe.md index 4938ea9fe..04b133c28 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/ReadMe.md +++ b/samples/charts/financial-chart/data-legend-styling-props/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Legend Styling Pro +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/data-legend-styling-props ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/data-legend/ReadMe.md b/samples/charts/financial-chart/data-legend/ReadMe.md index 71a490dd5..e8baf8b7a 100644 --- a/samples/charts/financial-chart/data-legend/ReadMe.md +++ b/samples/charts/financial-chart/data-legend/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Legend feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/data-legend ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/ReadMe.md b/samples/charts/financial-chart/data-tooltip-formatting-currency/ReadMe.md index 87b874328..134e40a39 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/ReadMe.md +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Tooltip Formatting +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/data-tooltip-formatting-currency ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/ReadMe.md b/samples/charts/financial-chart/data-tooltip-styling-props/ReadMe.md index 6dfaa4da1..cd787c735 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/ReadMe.md +++ b/samples/charts/financial-chart/data-tooltip-styling-props/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Tooltip Styling Pr +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/data-tooltip-styling-props ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/data-tooltip/ReadMe.md b/samples/charts/financial-chart/data-tooltip/ReadMe.md index f1475ec24..44c384ea8 100644 --- a/samples/charts/financial-chart/data-tooltip/ReadMe.md +++ b/samples/charts/financial-chart/data-tooltip/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Tooltip feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/data-tooltip ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/format-specifiers/ReadMe.md b/samples/charts/financial-chart/format-specifiers/ReadMe.md index 86011e94e..694719de2 100644 --- a/samples/charts/financial-chart/format-specifiers/ReadMe.md +++ b/samples/charts/financial-chart/format-specifiers/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Format Specifiers featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/format-specifiers ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/high-frequency/ReadMe.md b/samples/charts/financial-chart/high-frequency/ReadMe.md index 04398a244..d4f36f8e4 100644 --- a/samples/charts/financial-chart/high-frequency/ReadMe.md +++ b/samples/charts/financial-chart/high-frequency/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of High Frequency feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/high-frequency ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/high-volume/ReadMe.md b/samples/charts/financial-chart/high-volume/ReadMe.md index ca76473a5..abee5d640 100644 --- a/samples/charts/financial-chart/high-volume/ReadMe.md +++ b/samples/charts/financial-chart/high-volume/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of High Volume feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/high-volume ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/indicator-customization/ReadMe.md b/samples/charts/financial-chart/indicator-customization/ReadMe.md index 336c781a7..8d1685b22 100644 --- a/samples/charts/financial-chart/indicator-customization/ReadMe.md +++ b/samples/charts/financial-chart/indicator-customization/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Indicator Customization +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/indicator-customization ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/indicator-types/ReadMe.md b/samples/charts/financial-chart/indicator-types/ReadMe.md index 8c6b650c1..8f9604bcf 100644 --- a/samples/charts/financial-chart/indicator-types/ReadMe.md +++ b/samples/charts/financial-chart/indicator-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Indicator Types feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/indicator-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/multiple-data/ReadMe.md b/samples/charts/financial-chart/multiple-data/ReadMe.md index 7e321bcc9..e15aac039 100644 --- a/samples/charts/financial-chart/multiple-data/ReadMe.md +++ b/samples/charts/financial-chart/multiple-data/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Multiple Data feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/multiple-data ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/multiple-feeds/ReadMe.md b/samples/charts/financial-chart/multiple-feeds/ReadMe.md index fed2cf798..6bfb2a8a6 100644 --- a/samples/charts/financial-chart/multiple-feeds/ReadMe.md +++ b/samples/charts/financial-chart/multiple-feeds/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Multiple Feeds feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/multiple-feeds ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/overview/ReadMe.md b/samples/charts/financial-chart/overview/ReadMe.md index 4d5c7abb5..7edb07f00 100644 --- a/samples/charts/financial-chart/overview/ReadMe.md +++ b/samples/charts/financial-chart/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/panes/ReadMe.md b/samples/charts/financial-chart/panes/ReadMe.md index 6ea4da6a3..5399925c0 100644 --- a/samples/charts/financial-chart/panes/ReadMe.md +++ b/samples/charts/financial-chart/panes/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Panes feature using [Fi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/panes ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/performance/ReadMe.md b/samples/charts/financial-chart/performance/ReadMe.md index 13f3dc3cc..e1d4fb09f 100644 --- a/samples/charts/financial-chart/performance/ReadMe.md +++ b/samples/charts/financial-chart/performance/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Performance feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/performance ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/scrollbars/ReadMe.md b/samples/charts/financial-chart/scrollbars/ReadMe.md index 1e35af58f..7ff6c7ded 100644 --- a/samples/charts/financial-chart/scrollbars/ReadMe.md +++ b/samples/charts/financial-chart/scrollbars/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scrollbars feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/scrollbars ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/stock-index-chart/ReadMe.md b/samples/charts/financial-chart/stock-index-chart/ReadMe.md index 6242a75d9..727649f2e 100644 --- a/samples/charts/financial-chart/stock-index-chart/ReadMe.md +++ b/samples/charts/financial-chart/stock-index-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Stock Index Chart featu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/stock-index-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/styling/ReadMe.md b/samples/charts/financial-chart/styling/ReadMe.md index 5b5ec7052..73ef0cb2d 100644 --- a/samples/charts/financial-chart/styling/ReadMe.md +++ b/samples/charts/financial-chart/styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Styling feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/theming/ReadMe.md b/samples/charts/financial-chart/theming/ReadMe.md index ee3b4fd28..1fec66d21 100644 --- a/samples/charts/financial-chart/theming/ReadMe.md +++ b/samples/charts/financial-chart/theming/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Theming feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/theming ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/time-based-data/ReadMe.md b/samples/charts/financial-chart/time-based-data/ReadMe.md index 19878d059..bb6ea9329 100644 --- a/samples/charts/financial-chart/time-based-data/ReadMe.md +++ b/samples/charts/financial-chart/time-based-data/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Time Based Data feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/time-based-data ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/titles/ReadMe.md b/samples/charts/financial-chart/titles/ReadMe.md index 63c173fad..c5db2cc30 100644 --- a/samples/charts/financial-chart/titles/ReadMe.md +++ b/samples/charts/financial-chart/titles/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Titles feature using [F +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/titles ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/tooltip-template/ReadMe.md b/samples/charts/financial-chart/tooltip-template/ReadMe.md index 7ab26dca0..a9e8d20e0 100644 --- a/samples/charts/financial-chart/tooltip-template/ReadMe.md +++ b/samples/charts/financial-chart/tooltip-template/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Tooltip Template featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/tooltip-template ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/tooltip-types/ReadMe.md b/samples/charts/financial-chart/tooltip-types/ReadMe.md index 242463d1e..c9ce192b8 100644 --- a/samples/charts/financial-chart/tooltip-types/ReadMe.md +++ b/samples/charts/financial-chart/tooltip-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Tooltip Types feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/tooltip-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/trendlines/ReadMe.md b/samples/charts/financial-chart/trendlines/ReadMe.md index ef6442c01..f0c04256a 100644 --- a/samples/charts/financial-chart/trendlines/ReadMe.md +++ b/samples/charts/financial-chart/trendlines/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Trendlines feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/trendlines ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/financial-chart/volume-types/ReadMe.md b/samples/charts/financial-chart/volume-types/ReadMe.md index 45688655d..9e226a73a 100644 --- a/samples/charts/financial-chart/volume-types/ReadMe.md +++ b/samples/charts/financial-chart/volume-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Volume Types feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/financial-chart/volume-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/pie-chart/animation/ReadMe.md b/samples/charts/pie-chart/animation/ReadMe.md index 893a91b7a..f38cd141c 100644 --- a/samples/charts/pie-chart/animation/ReadMe.md +++ b/samples/charts/pie-chart/animation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Animation feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/pie-chart/animation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/pie-chart/explosion/ReadMe.md b/samples/charts/pie-chart/explosion/ReadMe.md index eb14e455f..f3165aac8 100644 --- a/samples/charts/pie-chart/explosion/ReadMe.md +++ b/samples/charts/pie-chart/explosion/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Explosion feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/pie-chart/explosion ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/pie-chart/legend/ReadMe.md b/samples/charts/pie-chart/legend/ReadMe.md index 1ffec61dc..79927ef8c 100644 --- a/samples/charts/pie-chart/legend/ReadMe.md +++ b/samples/charts/pie-chart/legend/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Legend feature using [P +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/pie-chart/legend ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/pie-chart/others/ReadMe.md b/samples/charts/pie-chart/others/ReadMe.md index 9b895cf13..580530d9c 100644 --- a/samples/charts/pie-chart/others/ReadMe.md +++ b/samples/charts/pie-chart/others/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Others feature using [P +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/pie-chart/others ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/pie-chart/overview/ReadMe.md b/samples/charts/pie-chart/overview/ReadMe.md index f984e0ad7..8e506da1d 100644 --- a/samples/charts/pie-chart/overview/ReadMe.md +++ b/samples/charts/pie-chart/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/pie-chart/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/pie-chart/selection/ReadMe.md b/samples/charts/pie-chart/selection/ReadMe.md index ebae4a7e8..0b3b85b31 100644 --- a/samples/charts/pie-chart/selection/ReadMe.md +++ b/samples/charts/pie-chart/selection/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Selection feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/pie-chart/selection ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/pie-chart/styling/ReadMe.md b/samples/charts/pie-chart/styling/ReadMe.md index 43032825e..47067a9df 100644 --- a/samples/charts/pie-chart/styling/ReadMe.md +++ b/samples/charts/pie-chart/styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Styling feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/pie-chart/styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/display-area/ReadMe.md b/samples/charts/sparkline/display-area/ReadMe.md index 78fc4aeef..e7eb2cc41 100644 --- a/samples/charts/sparkline/display-area/ReadMe.md +++ b/samples/charts/sparkline/display-area/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Area feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/display-area ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/display-column/ReadMe.md b/samples/charts/sparkline/display-column/ReadMe.md index 373040562..617b02abf 100644 --- a/samples/charts/sparkline/display-column/ReadMe.md +++ b/samples/charts/sparkline/display-column/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Column feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/display-column ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/display-lines/ReadMe.md b/samples/charts/sparkline/display-lines/ReadMe.md index d660848e3..ea37fc5e5 100644 --- a/samples/charts/sparkline/display-lines/ReadMe.md +++ b/samples/charts/sparkline/display-lines/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Lines feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/display-lines ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/display-types/ReadMe.md b/samples/charts/sparkline/display-types/ReadMe.md index 118ffd8aa..ec0ef7a67 100644 --- a/samples/charts/sparkline/display-types/ReadMe.md +++ b/samples/charts/sparkline/display-types/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Types feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/display-types ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/display-winloss/ReadMe.md b/samples/charts/sparkline/display-winloss/ReadMe.md index 431024ccc..944eac16f 100644 --- a/samples/charts/sparkline/display-winloss/ReadMe.md +++ b/samples/charts/sparkline/display-winloss/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Winloss feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/display-winloss ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/grid/ReadMe.md b/samples/charts/sparkline/grid/ReadMe.md index d9ff480f1..ed64a2623 100644 --- a/samples/charts/sparkline/grid/ReadMe.md +++ b/samples/charts/sparkline/grid/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Grid feature using [Spa +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/grid ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/markers/ReadMe.md b/samples/charts/sparkline/markers/ReadMe.md index 7f541e11c..445f61848 100644 --- a/samples/charts/sparkline/markers/ReadMe.md +++ b/samples/charts/sparkline/markers/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Markers feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/markers ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/normal-range/ReadMe.md b/samples/charts/sparkline/normal-range/ReadMe.md index d41efb196..f1bf44196 100644 --- a/samples/charts/sparkline/normal-range/ReadMe.md +++ b/samples/charts/sparkline/normal-range/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Normal Range feature us +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/normal-range ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/trendlines/ReadMe.md b/samples/charts/sparkline/trendlines/ReadMe.md index 1b6099209..57776d9b5 100644 --- a/samples/charts/sparkline/trendlines/ReadMe.md +++ b/samples/charts/sparkline/trendlines/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Trendlines feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/trendlines ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/sparkline/unknown-values/ReadMe.md b/samples/charts/sparkline/unknown-values/ReadMe.md index c8535251b..66c4006fb 100644 --- a/samples/charts/sparkline/unknown-values/ReadMe.md +++ b/samples/charts/sparkline/unknown-values/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Unknown Values feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/sparkline/unknown-values ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/toolbar/actions-built-in-category-chart/ReadMe.md b/samples/charts/toolbar/actions-built-in-category-chart/ReadMe.md index def64ee5c..45961a4e4 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/ReadMe.md +++ b/samples/charts/toolbar/actions-built-in-category-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Actions Built In Catego +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/toolbar/actions-built-in-category-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/toolbar/actions-built-in-data-chart/ReadMe.md b/samples/charts/toolbar/actions-built-in-data-chart/ReadMe.md index 2432ab56d..4b2ae5f92 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/ReadMe.md +++ b/samples/charts/toolbar/actions-built-in-data-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Actions Built In Data C +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/toolbar/actions-built-in-data-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/toolbar/custom-tool/ReadMe.md b/samples/charts/toolbar/custom-tool/ReadMe.md index c16697f84..d0284c4ba 100644 --- a/samples/charts/toolbar/custom-tool/ReadMe.md +++ b/samples/charts/toolbar/custom-tool/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Custom Tool feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/toolbar/custom-tool ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/ReadMe.md b/samples/charts/toolbar/layout-actions-for-data-chart/ReadMe.md index 840dfde36..7e37c8b9d 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/ReadMe.md +++ b/samples/charts/toolbar/layout-actions-for-data-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Layout Actions For Data +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/toolbar/layout-actions-for-data-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/ReadMe.md b/samples/charts/toolbar/layout-in-vertical-orientation/ReadMe.md index 54e467ba6..318c1d3e6 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/ReadMe.md +++ b/samples/charts/toolbar/layout-in-vertical-orientation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Layout In Vertical Orie +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/toolbar/layout-in-vertical-orientation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/toolbar/theming/ReadMe.md b/samples/charts/toolbar/theming/ReadMe.md index 98df7efba..c25071111 100644 --- a/samples/charts/toolbar/theming/ReadMe.md +++ b/samples/charts/toolbar/theming/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Theming feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/toolbar/theming ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/tree-map/events/ReadMe.md b/samples/charts/tree-map/events/ReadMe.md index eebeb522f..2447be69e 100644 --- a/samples/charts/tree-map/events/ReadMe.md +++ b/samples/charts/tree-map/events/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Events feature using [T +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/tree-map/events ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/tree-map/layout/ReadMe.md b/samples/charts/tree-map/layout/ReadMe.md index d26cbd96b..be94494bb 100644 --- a/samples/charts/tree-map/layout/ReadMe.md +++ b/samples/charts/tree-map/layout/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Layout feature using [T +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/tree-map/layout ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/tree-map/overview/ReadMe.md b/samples/charts/tree-map/overview/ReadMe.md index 4a731d1eb..6ed090c04 100644 --- a/samples/charts/tree-map/overview/ReadMe.md +++ b/samples/charts/tree-map/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/tree-map/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/tree-map/styling/ReadMe.md b/samples/charts/tree-map/styling/ReadMe.md index f4b156bc6..0b6faa348 100644 --- a/samples/charts/tree-map/styling/ReadMe.md +++ b/samples/charts/tree-map/styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Styling feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/tree-map/styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/charts/zoomslider/overview/ReadMe.md b/samples/charts/zoomslider/overview/ReadMe.md index 5678f2176..46f29ce39 100644 --- a/samples/charts/zoomslider/overview/ReadMe.md +++ b/samples/charts/zoomslider/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/charts/zoomslider/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/excel-library/operations-on-workbooks/ReadMe.md b/samples/excel/excel-library/operations-on-workbooks/ReadMe.md index 980e0bea1..94391979f 100644 --- a/samples/excel/excel-library/operations-on-workbooks/ReadMe.md +++ b/samples/excel/excel-library/operations-on-workbooks/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Operations On Workbooks +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/excel-library/operations-on-workbooks ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/excel-library/operations-on-worksheets/ReadMe.md b/samples/excel/excel-library/operations-on-worksheets/ReadMe.md index 235499c0f..c26c7b99d 100644 --- a/samples/excel/excel-library/operations-on-worksheets/ReadMe.md +++ b/samples/excel/excel-library/operations-on-worksheets/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Operations On Worksheet +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/excel-library/operations-on-worksheets ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/excel-library/overview/ReadMe.md b/samples/excel/excel-library/overview/ReadMe.md index 073411aa2..1e2f7f9fb 100644 --- a/samples/excel/excel-library/overview/ReadMe.md +++ b/samples/excel/excel-library/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/excel-library/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/excel-library/working-with-cells/ReadMe.md b/samples/excel/excel-library/working-with-cells/ReadMe.md index 865facd83..f0d276935 100644 --- a/samples/excel/excel-library/working-with-cells/ReadMe.md +++ b/samples/excel/excel-library/working-with-cells/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Working With Cells feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/excel-library/working-with-cells ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/excel-library/working-with-charts/ReadMe.md b/samples/excel/excel-library/working-with-charts/ReadMe.md index 26524b860..1246eb368 100644 --- a/samples/excel/excel-library/working-with-charts/ReadMe.md +++ b/samples/excel/excel-library/working-with-charts/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Working With Charts fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/excel-library/working-with-charts ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/excel-library/working-with-sparklines/ReadMe.md b/samples/excel/excel-library/working-with-sparklines/ReadMe.md index eda79e574..25c775b60 100644 --- a/samples/excel/excel-library/working-with-sparklines/ReadMe.md +++ b/samples/excel/excel-library/working-with-sparklines/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Working With Sparklines +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/excel-library/working-with-sparklines ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/excel-library/working-with-tables/ReadMe.md b/samples/excel/excel-library/working-with-tables/ReadMe.md index 7a6eddec5..8224282f9 100644 --- a/samples/excel/excel-library/working-with-tables/ReadMe.md +++ b/samples/excel/excel-library/working-with-tables/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Working With Tables fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/excel-library/working-with-tables ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/activation/ReadMe.md b/samples/excel/spreadsheet/activation/ReadMe.md index 370b92912..bc58bd49a 100644 --- a/samples/excel/spreadsheet/activation/ReadMe.md +++ b/samples/excel/spreadsheet/activation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Activation feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/activation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/adapter-chart/ReadMe.md b/samples/excel/spreadsheet/adapter-chart/ReadMe.md index cb5b7174b..2cfe8d0ca 100644 --- a/samples/excel/spreadsheet/adapter-chart/ReadMe.md +++ b/samples/excel/spreadsheet/adapter-chart/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Adapter Chart feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/adapter-chart ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/adapter-combo/ReadMe.md b/samples/excel/spreadsheet/adapter-combo/ReadMe.md index 209385214..762d4c275 100644 --- a/samples/excel/spreadsheet/adapter-combo/ReadMe.md +++ b/samples/excel/spreadsheet/adapter-combo/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Adapter Combo feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/adapter-combo ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/clipboard/ReadMe.md b/samples/excel/spreadsheet/clipboard/ReadMe.md index 91485f564..356334f3f 100644 --- a/samples/excel/spreadsheet/clipboard/ReadMe.md +++ b/samples/excel/spreadsheet/clipboard/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Clipboard feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/clipboard ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/commands/ReadMe.md b/samples/excel/spreadsheet/commands/ReadMe.md index fcc0705e2..9802c96b1 100644 --- a/samples/excel/spreadsheet/commands/ReadMe.md +++ b/samples/excel/spreadsheet/commands/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Commands feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/commands ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/conditional-formatting/ReadMe.md b/samples/excel/spreadsheet/conditional-formatting/ReadMe.md index 810fbd4f6..d07356087 100644 --- a/samples/excel/spreadsheet/conditional-formatting/ReadMe.md +++ b/samples/excel/spreadsheet/conditional-formatting/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Conditional Formatting +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/conditional-formatting ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/config-options/ReadMe.md b/samples/excel/spreadsheet/config-options/ReadMe.md index bb349209c..6252e5d3f 100644 --- a/samples/excel/spreadsheet/config-options/ReadMe.md +++ b/samples/excel/spreadsheet/config-options/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Config Options feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/config-options ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/data-validation/ReadMe.md b/samples/excel/spreadsheet/data-validation/ReadMe.md index b5d7e6617..af802c34d 100644 --- a/samples/excel/spreadsheet/data-validation/ReadMe.md +++ b/samples/excel/spreadsheet/data-validation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Data Validation feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/data-validation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/hyperlinks/ReadMe.md b/samples/excel/spreadsheet/hyperlinks/ReadMe.md index f07340da6..4085411a4 100644 --- a/samples/excel/spreadsheet/hyperlinks/ReadMe.md +++ b/samples/excel/spreadsheet/hyperlinks/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Hyperlinks feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/hyperlinks ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/excel/spreadsheet/overview/ReadMe.md b/samples/excel/spreadsheet/overview/ReadMe.md index 22383b86f..6adfcca59 100644 --- a/samples/excel/spreadsheet/overview/ReadMe.md +++ b/samples/excel/spreadsheet/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/excel/spreadsheet/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/bullet-graph/animation/ReadMe.md b/samples/gauges/bullet-graph/animation/ReadMe.md index da3a546bf..07e2f2a81 100644 --- a/samples/gauges/bullet-graph/animation/ReadMe.md +++ b/samples/gauges/bullet-graph/animation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Animation feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/bullet-graph/animation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/bullet-graph/background/ReadMe.md b/samples/gauges/bullet-graph/background/ReadMe.md index 959375400..7d1914c7b 100644 --- a/samples/gauges/bullet-graph/background/ReadMe.md +++ b/samples/gauges/bullet-graph/background/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Background feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/bullet-graph/background ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/bullet-graph/labels/ReadMe.md b/samples/gauges/bullet-graph/labels/ReadMe.md index d487d0232..aad2e41b4 100644 --- a/samples/gauges/bullet-graph/labels/ReadMe.md +++ b/samples/gauges/bullet-graph/labels/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Labels feature using [B +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/bullet-graph/labels ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/bullet-graph/measures/ReadMe.md b/samples/gauges/bullet-graph/measures/ReadMe.md index 4af067005..7ef6edef3 100644 --- a/samples/gauges/bullet-graph/measures/ReadMe.md +++ b/samples/gauges/bullet-graph/measures/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Measures feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/bullet-graph/measures ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/bullet-graph/ranges/ReadMe.md b/samples/gauges/bullet-graph/ranges/ReadMe.md index 05ce72f8e..0dfab10d1 100644 --- a/samples/gauges/bullet-graph/ranges/ReadMe.md +++ b/samples/gauges/bullet-graph/ranges/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Ranges feature using [B +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/bullet-graph/ranges ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/bullet-graph/scale/ReadMe.md b/samples/gauges/bullet-graph/scale/ReadMe.md index 81eb43605..91bc044d0 100644 --- a/samples/gauges/bullet-graph/scale/ReadMe.md +++ b/samples/gauges/bullet-graph/scale/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scale feature using [Bu +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/bullet-graph/scale ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/bullet-graph/tickmarks/ReadMe.md b/samples/gauges/bullet-graph/tickmarks/ReadMe.md index f4de9e703..6e7f8c68e 100644 --- a/samples/gauges/bullet-graph/tickmarks/ReadMe.md +++ b/samples/gauges/bullet-graph/tickmarks/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Tickmarks feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/bullet-graph/tickmarks ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/linear-gauge/animation/ReadMe.md b/samples/gauges/linear-gauge/animation/ReadMe.md index 686100676..a8c17d398 100644 --- a/samples/gauges/linear-gauge/animation/ReadMe.md +++ b/samples/gauges/linear-gauge/animation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Animation feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/linear-gauge/animation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/linear-gauge/backing/ReadMe.md b/samples/gauges/linear-gauge/backing/ReadMe.md index fb0ca2c6c..c46906fc6 100644 --- a/samples/gauges/linear-gauge/backing/ReadMe.md +++ b/samples/gauges/linear-gauge/backing/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Backing feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/linear-gauge/backing ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/linear-gauge/labels/ReadMe.md b/samples/gauges/linear-gauge/labels/ReadMe.md index 3e1774f36..128e49c18 100644 --- a/samples/gauges/linear-gauge/labels/ReadMe.md +++ b/samples/gauges/linear-gauge/labels/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Labels feature using [L +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/linear-gauge/labels ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/linear-gauge/needle/ReadMe.md b/samples/gauges/linear-gauge/needle/ReadMe.md index d26bbcf47..00099620e 100644 --- a/samples/gauges/linear-gauge/needle/ReadMe.md +++ b/samples/gauges/linear-gauge/needle/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Needle feature using [L +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/linear-gauge/needle ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/linear-gauge/ranges/ReadMe.md b/samples/gauges/linear-gauge/ranges/ReadMe.md index eccc942b9..c113fa701 100644 --- a/samples/gauges/linear-gauge/ranges/ReadMe.md +++ b/samples/gauges/linear-gauge/ranges/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Ranges feature using [L +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/linear-gauge/ranges ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/linear-gauge/scale/ReadMe.md b/samples/gauges/linear-gauge/scale/ReadMe.md index 25a46a448..c265a5c9a 100644 --- a/samples/gauges/linear-gauge/scale/ReadMe.md +++ b/samples/gauges/linear-gauge/scale/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scale feature using [Li +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/linear-gauge/scale ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/linear-gauge/tickmarks/ReadMe.md b/samples/gauges/linear-gauge/tickmarks/ReadMe.md index 6a8e35466..3e786bec1 100644 --- a/samples/gauges/linear-gauge/tickmarks/ReadMe.md +++ b/samples/gauges/linear-gauge/tickmarks/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Tickmarks feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/linear-gauge/tickmarks ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/radial-gauge/animation/ReadMe.md b/samples/gauges/radial-gauge/animation/ReadMe.md index 1fac54284..9cf16b303 100644 --- a/samples/gauges/radial-gauge/animation/ReadMe.md +++ b/samples/gauges/radial-gauge/animation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Animation feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/radial-gauge/animation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/radial-gauge/backing/ReadMe.md b/samples/gauges/radial-gauge/backing/ReadMe.md index 5c90d11d1..c2fdb370f 100644 --- a/samples/gauges/radial-gauge/backing/ReadMe.md +++ b/samples/gauges/radial-gauge/backing/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Backing feature using [ +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/radial-gauge/backing ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/radial-gauge/labels/ReadMe.md b/samples/gauges/radial-gauge/labels/ReadMe.md index 97a6b2342..fdb669f58 100644 --- a/samples/gauges/radial-gauge/labels/ReadMe.md +++ b/samples/gauges/radial-gauge/labels/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Labels feature using [R +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/radial-gauge/labels ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/radial-gauge/needle/ReadMe.md b/samples/gauges/radial-gauge/needle/ReadMe.md index 008e27710..7fafd27ca 100644 --- a/samples/gauges/radial-gauge/needle/ReadMe.md +++ b/samples/gauges/radial-gauge/needle/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Needle feature using [R +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/radial-gauge/needle ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/radial-gauge/ranges/ReadMe.md b/samples/gauges/radial-gauge/ranges/ReadMe.md index b46b99bc9..361989f4a 100644 --- a/samples/gauges/radial-gauge/ranges/ReadMe.md +++ b/samples/gauges/radial-gauge/ranges/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Ranges feature using [R +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/radial-gauge/ranges ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/radial-gauge/scale/ReadMe.md b/samples/gauges/radial-gauge/scale/ReadMe.md index 9dc8d570b..82c19f7b6 100644 --- a/samples/gauges/radial-gauge/scale/ReadMe.md +++ b/samples/gauges/radial-gauge/scale/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Scale feature using [Ra +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/radial-gauge/scale ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/gauges/radial-gauge/tickmarks/ReadMe.md b/samples/gauges/radial-gauge/tickmarks/ReadMe.md index 809755a11..6626b729a 100644 --- a/samples/gauges/radial-gauge/tickmarks/ReadMe.md +++ b/samples/gauges/radial-gauge/tickmarks/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Tickmarks feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/gauges/radial-gauge/tickmarks ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/binding-data-csv/ReadMe.md b/samples/maps/geo-map/binding-data-csv/ReadMe.md index 50e17a3e0..8b8e7e9cb 100644 --- a/samples/maps/geo-map/binding-data-csv/ReadMe.md +++ b/samples/maps/geo-map/binding-data-csv/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Binding Data Csv featur +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/binding-data-csv ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/binding-data-json-points/ReadMe.md b/samples/maps/geo-map/binding-data-json-points/ReadMe.md index 218e8d37e..dcdfe6474 100644 --- a/samples/maps/geo-map/binding-data-json-points/ReadMe.md +++ b/samples/maps/geo-map/binding-data-json-points/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Binding Data Json Point +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/binding-data-json-points ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/binding-data-model/ReadMe.md b/samples/maps/geo-map/binding-data-model/ReadMe.md index 8a3371b82..9db8b0ef7 100644 --- a/samples/maps/geo-map/binding-data-model/ReadMe.md +++ b/samples/maps/geo-map/binding-data-model/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Binding Data Model feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/binding-data-model ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/binding-multiple-shapes/ReadMe.md b/samples/maps/geo-map/binding-multiple-shapes/ReadMe.md index f82262228..492102ddb 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/ReadMe.md +++ b/samples/maps/geo-map/binding-multiple-shapes/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Binding Multiple Shapes +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/binding-multiple-shapes ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/binding-multiple-sources/ReadMe.md b/samples/maps/geo-map/binding-multiple-sources/ReadMe.md index 6372df4a4..8811c96fb 100644 --- a/samples/maps/geo-map/binding-multiple-sources/ReadMe.md +++ b/samples/maps/geo-map/binding-multiple-sources/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Binding Multiple Source +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/binding-multiple-sources ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/binding-shp-points/ReadMe.md b/samples/maps/geo-map/binding-shp-points/ReadMe.md index 4eaee8717..b5b02e74e 100644 --- a/samples/maps/geo-map/binding-shp-points/ReadMe.md +++ b/samples/maps/geo-map/binding-shp-points/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Binding Shp Points feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/binding-shp-points ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/binding-shp-polygons/ReadMe.md b/samples/maps/geo-map/binding-shp-polygons/ReadMe.md index cffc30590..55db1c767 100644 --- a/samples/maps/geo-map/binding-shp-polygons/ReadMe.md +++ b/samples/maps/geo-map/binding-shp-polygons/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Binding Shp Polygons fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/binding-shp-polygons ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/binding-shp-polylines/ReadMe.md b/samples/maps/geo-map/binding-shp-polylines/ReadMe.md index 5ab062758..962a7d61e 100644 --- a/samples/maps/geo-map/binding-shp-polylines/ReadMe.md +++ b/samples/maps/geo-map/binding-shp-polylines/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Binding Shp Polylines f +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/binding-shp-polylines ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/custom-tooltips/ReadMe.md b/samples/maps/geo-map/custom-tooltips/ReadMe.md index dd9cc1433..2d88e50d0 100644 --- a/samples/maps/geo-map/custom-tooltips/ReadMe.md +++ b/samples/maps/geo-map/custom-tooltips/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Custom Tooltips feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/custom-tooltips ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/display-bing-imagery/ReadMe.md b/samples/maps/geo-map/display-bing-imagery/ReadMe.md index 7bf198026..c7048c3b3 100644 --- a/samples/maps/geo-map/display-bing-imagery/ReadMe.md +++ b/samples/maps/geo-map/display-bing-imagery/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Bing Imagery fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/display-bing-imagery ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/display-esri-imagery/ReadMe.md b/samples/maps/geo-map/display-esri-imagery/ReadMe.md index f1571d730..17864941a 100644 --- a/samples/maps/geo-map/display-esri-imagery/ReadMe.md +++ b/samples/maps/geo-map/display-esri-imagery/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Esri Imagery fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/display-esri-imagery ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/display-heat-imagery/ReadMe.md b/samples/maps/geo-map/display-heat-imagery/ReadMe.md index 6f1b2b863..d751a7883 100644 --- a/samples/maps/geo-map/display-heat-imagery/ReadMe.md +++ b/samples/maps/geo-map/display-heat-imagery/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Heat Imagery fe +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/display-heat-imagery ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/display-osm-imagery/ReadMe.md b/samples/maps/geo-map/display-osm-imagery/ReadMe.md index bf76e1384..f0289b53f 100644 --- a/samples/maps/geo-map/display-osm-imagery/ReadMe.md +++ b/samples/maps/geo-map/display-osm-imagery/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Display Osm Imagery fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/display-osm-imagery ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/marker-layouts/ReadMe.md b/samples/maps/geo-map/marker-layouts/ReadMe.md index afa2d2309..9444c5626 100644 --- a/samples/maps/geo-map/marker-layouts/ReadMe.md +++ b/samples/maps/geo-map/marker-layouts/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Marker Layouts feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/marker-layouts ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/marker-template/ReadMe.md b/samples/maps/geo-map/marker-template/ReadMe.md index ecb97036b..484d31482 100644 --- a/samples/maps/geo-map/marker-template/ReadMe.md +++ b/samples/maps/geo-map/marker-template/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Marker Template feature +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/marker-template ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/marker-type/ReadMe.md b/samples/maps/geo-map/marker-type/ReadMe.md index 73d1350fc..5c26df047 100644 --- a/samples/maps/geo-map/marker-type/ReadMe.md +++ b/samples/maps/geo-map/marker-type/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Marker Type feature usi +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/marker-type ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/navigation/ReadMe.md b/samples/maps/geo-map/navigation/ReadMe.md index e52b8e253..c1123c7fd 100644 --- a/samples/maps/geo-map/navigation/ReadMe.md +++ b/samples/maps/geo-map/navigation/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Navigation feature usin +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/navigation ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/overview/ReadMe.md b/samples/maps/geo-map/overview/ReadMe.md index b92fefea3..a8bdfc36c 100644 --- a/samples/maps/geo-map/overview/ReadMe.md +++ b/samples/maps/geo-map/overview/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Overview feature using +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/overview ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/shape-styling/ReadMe.md b/samples/maps/geo-map/shape-styling/ReadMe.md index 7c0009611..e9284a14a 100644 --- a/samples/maps/geo-map/shape-styling/ReadMe.md +++ b/samples/maps/geo-map/shape-styling/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Shape Styling feature u +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/shape-styling ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/triangulating-data/ReadMe.md b/samples/maps/geo-map/triangulating-data/ReadMe.md index 6ee8fa321..0fbabcf16 100644 --- a/samples/maps/geo-map/triangulating-data/ReadMe.md +++ b/samples/maps/geo-map/triangulating-data/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Triangulating Data feat +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/triangulating-data ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/type-scatter-area-series/ReadMe.md b/samples/maps/geo-map/type-scatter-area-series/ReadMe.md index 144150b11..e17169739 100644 --- a/samples/maps/geo-map/type-scatter-area-series/ReadMe.md +++ b/samples/maps/geo-map/type-scatter-area-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Area Serie +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/type-scatter-area-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/type-scatter-bubble-series/ReadMe.md b/samples/maps/geo-map/type-scatter-bubble-series/ReadMe.md index 19b210f15..b17f275cb 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/ReadMe.md +++ b/samples/maps/geo-map/type-scatter-bubble-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Bubble Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/type-scatter-bubble-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/type-scatter-contour-series/ReadMe.md b/samples/maps/geo-map/type-scatter-contour-series/ReadMe.md index 74f7fff4a..93d3df68f 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/ReadMe.md +++ b/samples/maps/geo-map/type-scatter-contour-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Contour Se +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/type-scatter-contour-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/type-scatter-density-series/ReadMe.md b/samples/maps/geo-map/type-scatter-density-series/ReadMe.md index d8728e0c7..2e6d0410c 100644 --- a/samples/maps/geo-map/type-scatter-density-series/ReadMe.md +++ b/samples/maps/geo-map/type-scatter-density-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Density Se +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/type-scatter-density-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/type-scatter-symbol-series/ReadMe.md b/samples/maps/geo-map/type-scatter-symbol-series/ReadMe.md index a0c8211e7..243e869bf 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/ReadMe.md +++ b/samples/maps/geo-map/type-scatter-symbol-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Scatter Symbol Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/type-scatter-symbol-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/type-shape-polygon-series/ReadMe.md b/samples/maps/geo-map/type-shape-polygon-series/ReadMe.md index 99595521a..2506f0a22 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/ReadMe.md +++ b/samples/maps/geo-map/type-shape-polygon-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Shape Polygon Seri +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/type-shape-polygon-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/maps/geo-map/type-shape-polyline-series/ReadMe.md b/samples/maps/geo-map/type-shape-polyline-series/ReadMe.md index 88c0ef1d1..dbd8a23ba 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/ReadMe.md +++ b/samples/maps/geo-map/type-shape-polyline-series/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of Type Shape Polyline Ser +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd ../samples/maps/geo-map/type-shape-polyline-series ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More diff --git a/samples/templates/ReadMe.md b/samples/templates/ReadMe.md index e8836809a..096ff43d3 100644 --- a/samples/templates/ReadMe.md +++ b/samples/templates/ReadMe.md @@ -21,28 +21,36 @@ This folder contains Angular application with example of {SampleDisplayName} fea +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + ## Instructions -To set up this project locally, execute these commands: +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git -cd ./igniteui-angular-examples +git checkout master cd {SampleFolderPath} ``` + -open above folder in VS Code or type: +- open above folder in VS Code or type: ``` code . ``` -In terminal window, run: +- In terminal window, run: ``` npm install --legacy-peer-deps npm run-script start ``` -Then open http://localhost:4200/ in your browser +- open http://localhost:4200/ in your browser ## Learn More From fa47f723feecddb041039c2275f77e63789cc2ca Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 13:50:20 -0500 Subject: [PATCH 041/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.1.17.2 (#116) Co-authored-by: tfsbuild --- .../axis-range/src/app.component.html | 2 + .../format-specifiers/src/app.component.html | 15 +++--- .../format-specifiers/src/app.component.ts | 43 +++++++++++++++-- .../format-specifiers/src/app.module.ts | 4 +- .../format-specifiers/src/app.component.html | 10 ++-- .../format-specifiers/src/app.component.ts | 48 ++++++++++++++++--- .../format-specifiers/src/app.component.html | 12 ++--- .../format-specifiers/src/app.component.ts | 40 ++++++++++++++-- .../format-specifiers/src/app.module.ts | 5 +- 9 files changed, 145 insertions(+), 34 deletions(-) diff --git a/samples/charts/category-chart/axis-range/src/app.component.html b/samples/charts/category-chart/axis-range/src/app.component.html index 34c268c3f..50268a291 100644 --- a/samples/charts/category-chart/axis-range/src/app.component.html +++ b/samples/charts/category-chart/axis-range/src/app.component.html @@ -17,6 +17,7 @@ valueType="EnumValue" dropDownNames="0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100" dropDownValues="0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100" + primitiveValue="0" (changed)="this.editorChangeUpdateYAxisMinimumValue($event)"> diff --git a/samples/charts/category-chart/format-specifiers/src/app.component.html b/samples/charts/category-chart/format-specifiers/src/app.component.html index 914d5ee45..43b0fd08f 100644 --- a/samples/charts/category-chart/format-specifiers/src/app.component.html +++ b/samples/charts/category-chart/format-specifiers/src/app.component.html @@ -4,11 +4,11 @@
+ #legend + [target]="chart" + valueFormatString="{0} Billion" + [valueFormatSpecifiers]="numberFormatSpecifier1">
@@ -19,10 +19,11 @@ chartType="Column" isHorizontalZoomEnabled="false" isVerticalZoomEnabled="false" - dataToolTipValueFormatMode="Currency" - dataToolTipValueFormatString="${0} Billion" + finalValueAnnotationsPrecision="2" + dataToolTipValueFormatString="{0} Billion" + [dataToolTipValueFormatSpecifiers]="numberFormatSpecifier3" yAxisLabelFormat="{0}B" - [yAxisLabelFormatSpecifiers]="numberFormatSpecifier1"> + [yAxisLabelFormatSpecifiers]="numberFormatSpecifier5">
diff --git a/samples/charts/category-chart/format-specifiers/src/app.component.ts b/samples/charts/category-chart/format-specifiers/src/app.component.ts index c2bd289c8..2d701d621 100644 --- a/samples/charts/category-chart/format-specifiers/src/app.component.ts +++ b/samples/charts/category-chart/format-specifiers/src/app.component.ts @@ -1,5 +1,5 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; -import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataLegendDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataLegendDescriptionModule, CategoryChartDescriptionModule, NumberFormatSpecifierDescriptionModule } from 'igniteui-angular-core'; import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGrossingMovies'; import { IgxDataLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; import { IgxNumberFormatSpecifier } from 'igniteui-angular-core'; @@ -16,8 +16,6 @@ export class AppComponent implements AfterViewInit @ViewChild("legend", { static: true } ) private legend: IgxDataLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxCategoryChartComponent private _numberFormatSpecifier1: IgxNumberFormatSpecifier[] | null = null; public get numberFormatSpecifier1(): IgxNumberFormatSpecifier[] { if (this._numberFormatSpecifier1 == null) @@ -27,13 +25,49 @@ export class AppComponent implements AfterViewInit numberFormatSpecifier2.style = "currency"; numberFormatSpecifier2.currency = "USD"; numberFormatSpecifier2.currencyDisplay = "symbol"; - numberFormatSpecifier2.minimumFractionDigits = 0; + numberFormatSpecifier2.maximumFractionDigits = 2; + numberFormatSpecifier2.minimumFractionDigits = 2; numberFormatSpecifier1.push(numberFormatSpecifier2) this._numberFormatSpecifier1 = numberFormatSpecifier1; } return this._numberFormatSpecifier1; } + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent + private _numberFormatSpecifier3: IgxNumberFormatSpecifier[] | null = null; + public get numberFormatSpecifier3(): IgxNumberFormatSpecifier[] { + if (this._numberFormatSpecifier3 == null) + { + let numberFormatSpecifier3: IgxNumberFormatSpecifier[] = []; + var numberFormatSpecifier4 = new IgxNumberFormatSpecifier(); + numberFormatSpecifier4.style = "currency"; + numberFormatSpecifier4.currency = "USD"; + numberFormatSpecifier4.currencyDisplay = "symbol"; + numberFormatSpecifier4.maximumFractionDigits = 2; + numberFormatSpecifier4.minimumFractionDigits = 2; + + numberFormatSpecifier3.push(numberFormatSpecifier4) + this._numberFormatSpecifier3 = numberFormatSpecifier3; + } + return this._numberFormatSpecifier3; + } + private _numberFormatSpecifier5: IgxNumberFormatSpecifier[] | null = null; + public get numberFormatSpecifier5(): IgxNumberFormatSpecifier[] { + if (this._numberFormatSpecifier5 == null) + { + let numberFormatSpecifier5: IgxNumberFormatSpecifier[] = []; + var numberFormatSpecifier6 = new IgxNumberFormatSpecifier(); + numberFormatSpecifier6.style = "currency"; + numberFormatSpecifier6.currency = "USD"; + numberFormatSpecifier6.currencyDisplay = "symbol"; + numberFormatSpecifier6.minimumFractionDigits = 0; + + numberFormatSpecifier5.push(numberFormatSpecifier6) + this._numberFormatSpecifier5 = numberFormatSpecifier5; + } + return this._numberFormatSpecifier5; + } private _highestGrossingMovies: HighestGrossingMovies = null; public get highestGrossingMovies(): HighestGrossingMovies { if (this._highestGrossingMovies == null) @@ -51,6 +85,7 @@ export class AppComponent implements AfterViewInit PropertyEditorPanelDescriptionModule.register(context); DataLegendDescriptionModule.register(context); CategoryChartDescriptionModule.register(context); + NumberFormatSpecifierDescriptionModule.register(context); } return this._componentRenderer; } diff --git a/samples/charts/category-chart/format-specifiers/src/app.module.ts b/samples/charts/category-chart/format-specifiers/src/app.module.ts index fb76caf81..336d7a718 100644 --- a/samples/charts/category-chart/format-specifiers/src/app.module.ts +++ b/samples/charts/category-chart/format-specifiers/src/app.module.ts @@ -7,6 +7,7 @@ import { AppComponent } from "./app.component"; import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; import { IgxDataLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts'; +import { IgxNumberFormatSpecifierModule } from 'igniteui-angular-core'; @NgModule({ bootstrap: [AppComponent], @@ -20,7 +21,8 @@ import { IgxDataLegendModule, IgxCategoryChartModule } from 'igniteui-angular-ch FormsModule, IgxPropertyEditorPanelModule, IgxDataLegendModule, - IgxCategoryChartModule + IgxCategoryChartModule, + IgxNumberFormatSpecifierModule ], providers: [], schemas: [] diff --git a/samples/charts/data-chart/format-specifiers/src/app.component.html b/samples/charts/data-chart/format-specifiers/src/app.component.html index 8a048de82..bdc6c5bdb 100644 --- a/samples/charts/data-chart/format-specifiers/src/app.component.html +++ b/samples/charts/data-chart/format-specifiers/src/app.component.html @@ -7,8 +7,8 @@ name="Legend" #legend [target]="chart" - valueFormatMode="Currency" - valueFormatString="${0} Billion"> + valueFormatString="{0} Billion" + [valueFormatSpecifiers]="numberFormatSpecifier1">
@@ -32,7 +32,7 @@ title="Billions of U.S. Dollars" labelFormat="{0}B" abbreviateLargeNumbers="false" - [labelFormatSpecifiers]="numberFormatSpecifier1"> + [labelFormatSpecifiers]="numberFormatSpecifier3"> + valueFormatString="{0} Billion" + [valueFormatSpecifiers]="numberFormatSpecifier5">
diff --git a/samples/charts/data-chart/format-specifiers/src/app.component.ts b/samples/charts/data-chart/format-specifiers/src/app.component.ts index 85545a924..91100d4c0 100644 --- a/samples/charts/data-chart/format-specifiers/src/app.component.ts +++ b/samples/charts/data-chart/format-specifiers/src/app.component.ts @@ -15,12 +15,6 @@ export class AppComponent implements AfterViewInit @ViewChild("legend", { static: true } ) private legend: IgxDataLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxCategoryYAxisComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxNumericXAxisComponent private _numberFormatSpecifier1: IgxNumberFormatSpecifier[] | null = null; public get numberFormatSpecifier1(): IgxNumberFormatSpecifier[] { if (this._numberFormatSpecifier1 == null) @@ -30,19 +24,59 @@ export class AppComponent implements AfterViewInit numberFormatSpecifier2.style = "currency"; numberFormatSpecifier2.currency = "USD"; numberFormatSpecifier2.currencyDisplay = "symbol"; - numberFormatSpecifier2.minimumFractionDigits = 0; + numberFormatSpecifier2.minimumFractionDigits = 2; + numberFormatSpecifier2.maximumFractionDigits = 2; numberFormatSpecifier1.push(numberFormatSpecifier2) this._numberFormatSpecifier1 = numberFormatSpecifier1; } return this._numberFormatSpecifier1; } + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxCategoryYAxisComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + private _numberFormatSpecifier3: IgxNumberFormatSpecifier[] | null = null; + public get numberFormatSpecifier3(): IgxNumberFormatSpecifier[] { + if (this._numberFormatSpecifier3 == null) + { + let numberFormatSpecifier3: IgxNumberFormatSpecifier[] = []; + var numberFormatSpecifier4 = new IgxNumberFormatSpecifier(); + numberFormatSpecifier4.style = "currency"; + numberFormatSpecifier4.currency = "USD"; + numberFormatSpecifier4.currencyDisplay = "symbol"; + numberFormatSpecifier4.minimumFractionDigits = 0; + + numberFormatSpecifier3.push(numberFormatSpecifier4) + this._numberFormatSpecifier3 = numberFormatSpecifier3; + } + return this._numberFormatSpecifier3; + } @ViewChild("barSeries1", { static: true } ) private barSeries1: IgxBarSeriesComponent @ViewChild("barSeries2", { static: true } ) private barSeries2: IgxBarSeriesComponent @ViewChild("tooltips", { static: true } ) private tooltips: IgxDataToolTipLayerComponent + private _numberFormatSpecifier5: IgxNumberFormatSpecifier[] | null = null; + public get numberFormatSpecifier5(): IgxNumberFormatSpecifier[] { + if (this._numberFormatSpecifier5 == null) + { + let numberFormatSpecifier5: IgxNumberFormatSpecifier[] = []; + var numberFormatSpecifier6 = new IgxNumberFormatSpecifier(); + numberFormatSpecifier6.style = "currency"; + numberFormatSpecifier6.currency = "USD"; + numberFormatSpecifier6.currencyDisplay = "symbol"; + numberFormatSpecifier6.minimumFractionDigits = 2; + numberFormatSpecifier6.maximumFractionDigits = 2; + + numberFormatSpecifier5.push(numberFormatSpecifier6) + this._numberFormatSpecifier5 = numberFormatSpecifier5; + } + return this._numberFormatSpecifier5; + } private _highestGrossingMovies: HighestGrossingMovies = null; public get highestGrossingMovies(): HighestGrossingMovies { if (this._highestGrossingMovies == null) diff --git a/samples/charts/financial-chart/format-specifiers/src/app.component.html b/samples/charts/financial-chart/format-specifiers/src/app.component.html index e00ce34ae..ca0cc5312 100644 --- a/samples/charts/financial-chart/format-specifiers/src/app.component.html +++ b/samples/charts/financial-chart/format-specifiers/src/app.component.html @@ -7,8 +7,8 @@ includedColumns="Close, Change, Value" excludedColumns="High, Low, Open, Volume" labelDisplayMode="Hidden" - valueFormatMode="Currency" - valueFormatCulture="en-GB"> + valueFormatString="{0}" + [valueFormatSpecifiers]="numberFormatSpecifier1">
@@ -17,14 +17,14 @@ #chart chartType="Candle" [dataSource]="multipleStocks" - dataToolTipValueFormatMode="Currency" - dataToolTipValueFormatCulture="en-GB" - dataToolTipLabelDisplayMode="Hidden" + dataToolTipValueFormatString="{0}" + [dataToolTipValueFormatSpecifiers]="numberFormatSpecifier3" dataToolTipIncludedColumns="Close, Change, Value" dataToolTipHeaderFormatTime="None" zoomSliderType="None" + yAxisAbbreviateLargeNumbers="false" yAxisLabelFormat="{0}" - [yAxisLabelFormatSpecifiers]="numberFormatSpecifier1" + [yAxisLabelFormatSpecifiers]="numberFormatSpecifier5" xAxisLabelFormat="{0}" [xAxisLabelFormatSpecifiers]="dateTimeFormatSpecifier1"> diff --git a/samples/charts/financial-chart/format-specifiers/src/app.component.ts b/samples/charts/financial-chart/format-specifiers/src/app.component.ts index 13a978c8f..7dda26119 100644 --- a/samples/charts/financial-chart/format-specifiers/src/app.component.ts +++ b/samples/charts/financial-chart/format-specifiers/src/app.component.ts @@ -15,8 +15,6 @@ export class AppComponent implements AfterViewInit @ViewChild("legend", { static: true } ) private legend: IgxDataLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxFinancialChartComponent private _numberFormatSpecifier1: IgxNumberFormatSpecifier[] | null = null; public get numberFormatSpecifier1(): IgxNumberFormatSpecifier[] { if (this._numberFormatSpecifier1 == null) @@ -26,13 +24,49 @@ export class AppComponent implements AfterViewInit numberFormatSpecifier2.currency = "EUR"; numberFormatSpecifier2.style = "currency"; numberFormatSpecifier2.locale = "en-GB"; - numberFormatSpecifier2.minimumFractionDigits = 0; + numberFormatSpecifier2.minimumFractionDigits = 2; + numberFormatSpecifier2.maximumFractionDigits = 2; numberFormatSpecifier1.push(numberFormatSpecifier2) this._numberFormatSpecifier1 = numberFormatSpecifier1; } return this._numberFormatSpecifier1; } + @ViewChild("chart", { static: true } ) + private chart: IgxFinancialChartComponent + private _numberFormatSpecifier3: IgxNumberFormatSpecifier[] | null = null; + public get numberFormatSpecifier3(): IgxNumberFormatSpecifier[] { + if (this._numberFormatSpecifier3 == null) + { + let numberFormatSpecifier3: IgxNumberFormatSpecifier[] = []; + var numberFormatSpecifier4 = new IgxNumberFormatSpecifier(); + numberFormatSpecifier4.currency = "EUR"; + numberFormatSpecifier4.style = "currency"; + numberFormatSpecifier4.locale = "en-GB"; + numberFormatSpecifier4.minimumFractionDigits = 2; + numberFormatSpecifier4.maximumFractionDigits = 2; + + numberFormatSpecifier3.push(numberFormatSpecifier4) + this._numberFormatSpecifier3 = numberFormatSpecifier3; + } + return this._numberFormatSpecifier3; + } + private _numberFormatSpecifier5: IgxNumberFormatSpecifier[] | null = null; + public get numberFormatSpecifier5(): IgxNumberFormatSpecifier[] { + if (this._numberFormatSpecifier5 == null) + { + let numberFormatSpecifier5: IgxNumberFormatSpecifier[] = []; + var numberFormatSpecifier6 = new IgxNumberFormatSpecifier(); + numberFormatSpecifier6.currency = "EUR"; + numberFormatSpecifier6.style = "currency"; + numberFormatSpecifier6.locale = "en-GB"; + numberFormatSpecifier6.minimumFractionDigits = 0; + + numberFormatSpecifier5.push(numberFormatSpecifier6) + this._numberFormatSpecifier5 = numberFormatSpecifier5; + } + return this._numberFormatSpecifier5; + } private _dateTimeFormatSpecifier1: IgxDateTimeFormatSpecifier[] | null = null; public get dateTimeFormatSpecifier1(): IgxDateTimeFormatSpecifier[] { if (this._dateTimeFormatSpecifier1 == null) diff --git a/samples/charts/financial-chart/format-specifiers/src/app.module.ts b/samples/charts/financial-chart/format-specifiers/src/app.module.ts index 3b0932b7a..b706ffcaa 100644 --- a/samples/charts/financial-chart/format-specifiers/src/app.module.ts +++ b/samples/charts/financial-chart/format-specifiers/src/app.module.ts @@ -6,6 +6,7 @@ import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; import { AppComponent } from "./app.component"; import { IgxFinancialChartModule, IgxDataChartInteractivityModule, IgxDataLegendModule } from 'igniteui-angular-charts'; +import { IgxNumberFormatSpecifierModule, IgxDateTimeFormatSpecifierModule } from 'igniteui-angular-core'; @NgModule({ bootstrap: [AppComponent], @@ -19,7 +20,9 @@ import { IgxFinancialChartModule, IgxDataChartInteractivityModule, IgxDataLegend FormsModule, IgxFinancialChartModule, IgxDataChartInteractivityModule, - IgxDataLegendModule + IgxDataLegendModule, + IgxNumberFormatSpecifierModule, + IgxDateTimeFormatSpecifierModule ], providers: [], schemas: [] From 6fd7b85fb7f849edd48065ab7a08fec75e3b5c97 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 10:35:31 -0500 Subject: [PATCH 042/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.1.17.3 (#117) Co-authored-by: tfsbuild --- .../data-aggregations/src/app.component.html | 17 +++++++------ .../data-aggregations/src/app.component.ts | 24 +++++++++++++++++-- 2 files changed, 32 insertions(+), 9 deletions(-) diff --git a/samples/charts/category-chart/data-aggregations/src/app.component.html b/samples/charts/category-chart/data-aggregations/src/app.component.html index d713c7f69..4a421c959 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.component.html +++ b/samples/charts/category-chart/data-aggregations/src/app.component.html @@ -9,7 +9,7 @@ name="propertyEditorPanel1" #propertyEditorPanel1> + primitiveValue="Country" + (changed)="this.editorChangeUpdateInitialGroups($event)"> + primitiveValue="Sum(Sales) as Sales" + (changed)="this.editorChangeUpdateInitialSummaries($event)"> + primitiveValue="Sales Desc" + (changed)="this.editorChangeUpdateGroupSorts($event)">
diff --git a/samples/charts/category-chart/data-aggregations/src/app.component.ts b/samples/charts/category-chart/data-aggregations/src/app.component.ts index c0c93e81b..683af4877 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.component.ts +++ b/samples/charts/category-chart/data-aggregations/src/app.component.ts @@ -1,8 +1,10 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; import { SalesData } from './SalesData'; -import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; -import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; +import { IgxPropertyEditorPropertyDescriptionChangedEventArgs, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxCategoryChartComponent, MarkerType, MarkerType_$type } from 'igniteui-angular-charts'; +import { EnumUtil } from 'igniteui-angular-core'; +import { IgxPropertyEditorPanelComponent } from 'igniteui-angular-layouts'; import { defineAllComponents } from 'igniteui-webcomponents'; @@ -57,5 +59,23 @@ export class AppComponent implements AfterViewInit { } + public editorChangeUpdateInitialGroups({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { + + var intialGroupVal = args.newValue.toString(); + chart.initialGroups = intialGroupVal; + } + + public editorChangeUpdateInitialSummaries({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { + + var intialSummaryVal = args.newValue.toString(); + chart.initialSummaries = intialSummaryVal; + } + + public editorChangeUpdateGroupSorts({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { + + var groupSortsVal = args.newValue.toString(); + chart.groupSorts = groupSortsVal; + } + } From fd7b44981505950a1055a9741514f0e647b5de48 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 11:18:41 -0500 Subject: [PATCH 043/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.1.18.1 (#118) Co-authored-by: tfsbuild --- .../category-chart/data-aggregations/src/app.component.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/charts/category-chart/data-aggregations/src/app.component.ts b/samples/charts/category-chart/data-aggregations/src/app.component.ts index 683af4877..a4e8c9aa3 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.component.ts +++ b/samples/charts/category-chart/data-aggregations/src/app.component.ts @@ -62,19 +62,19 @@ export class AppComponent implements AfterViewInit public editorChangeUpdateInitialGroups({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { var intialGroupVal = args.newValue.toString(); - chart.initialGroups = intialGroupVal; + this.chart.initialGroups = intialGroupVal; } public editorChangeUpdateInitialSummaries({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { var intialSummaryVal = args.newValue.toString(); - chart.initialSummaries = intialSummaryVal; + this.chart.initialSummaries = intialSummaryVal; } public editorChangeUpdateGroupSorts({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { var groupSortsVal = args.newValue.toString(); - chart.groupSorts = groupSortsVal; + this.chart.groupSorts = groupSortsVal; } } From 72f71416cbf5ca0a5595aa2dbcb13839ccde4c9e Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Thu, 18 Jan 2024 11:48:29 -0500 Subject: [PATCH 044/154] mdd-update-ig (#119) * mdd-update-ig mdd-update-ig 17.2.1 * mdd-update --- browser/package.json | 18 +++++++------- browser/scripts/browser.js | 22 ++++++++--------- browser/src/browser-info.json | 22 ++++++++--------- .../annotations-all/package.json | 8 +++--- .../annotations-callouts/package.json | 8 +++--- .../annotations-crosshairs/package.json | 8 +++--- .../annotations-custom/package.json | 8 +++--- .../annotations-final-value/package.json | 8 +++--- .../annotations-highlighting/package.json | 8 +++--- .../category-chart/annotations/package.json | 4 +-- .../area-chart-multiple-sources/package.json | 4 +-- .../area-chart-single-source/package.json | 4 +-- .../area-chart-styling/package.json | 4 +-- .../category-chart/axis-gap/package.json | 8 +++--- .../axis-gridlines/package.json | 8 +++--- .../category-chart/axis-inverted/package.json | 8 +++--- .../category-chart/axis-labels/package.json | 8 +++--- .../axis-locations/package.json | 8 +++--- .../category-chart/axis-options/package.json | 4 +-- .../category-chart/axis-overlap/package.json | 8 +++--- .../category-chart/axis-range/package.json | 8 +++--- .../axis-tickmarks/package.json | 8 +++--- .../category-chart/axis-titles/package.json | 4 +-- .../chart-highlight-filter/package.json | 8 +++--- .../package.json | 4 +-- .../column-chart-single-source/package.json | 4 +-- .../column-chart-styling/package.json | 4 +-- .../package.json | 4 +-- .../column-chart-with-tooltips/package.json | 8 +++--- .../custom-selection/package.json | 4 +-- .../data-aggregations/package.json | 8 +++--- .../package.json | 4 +-- .../category-chart/data-legend/package.json | 4 +-- .../package.json | 4 +-- .../data-tooltip-positioning/package.json | 8 +++--- .../category-chart/data-tooltip/package.json | 4 +-- .../format-specifiers/package.json | 8 +++--- .../high-frequency/package.json | 4 +-- .../category-chart/high-volume/package.json | 4 +-- .../category-chart/highlighting/package.json | 4 +-- .../line-chart-multiple-sources/package.json | 4 +-- .../line-chart-single-source/package.json | 4 +-- .../line-chart-styling/package.json | 4 +-- .../line-chart-with-animations/package.json | 4 +-- .../line-chart-with-annotations/package.json | 4 +-- .../line-chart-with-legend/package.json | 4 +-- .../marker-options/package.json | 8 +++--- .../marker-templates/package.json | 4 +-- .../category-chart/overview/package.json | 4 +-- .../point-chart-multiple-sources/package.json | 4 +-- .../point-chart-single-source/package.json | 4 +-- .../point-chart-styling/package.json | 4 +-- .../spline-area-multiple-sources/package.json | 4 +-- .../spline-area-single-source/package.json | 4 +-- .../spline-area-styling/package.json | 4 +-- .../spline-multiple-sources/package.json | 4 +-- .../spline-single-source/package.json | 4 +-- .../spline-styling/package.json | 4 +-- .../category-chart/stack-columns/package.json | 4 +-- .../step-area-multiple-sources/package.json | 4 +-- .../step-area-single-source/package.json | 4 +-- .../step-area-styling/package.json | 4 +-- .../step-line-multiple-sources/package.json | 4 +-- .../step-line-single-source/package.json | 4 +-- .../step-line-styling/package.json | 4 +-- .../tooltip-template/package.json | 4 +-- .../category-chart/tooltip-types/package.json | 4 +-- .../category-chart/trendline/package.json | 4 +-- .../category-chart/value-lines/package.json | 8 +++--- .../annotations-custom/package.json | 4 +-- .../package.json | 4 +-- .../data-chart/axis-annotations/package.json | 4 +-- .../data-chart/axis-crossing/package.json | 4 +-- .../axis-label-rotation/package.json | 8 +++--- .../data-chart/axis-locations/package.json | 4 +-- .../data-chart/axis-min-max-gap/package.json | 4 +-- .../data-chart/axis-settings/package.json | 4 +-- .../data-chart/axis-sharing/package.json | 4 +-- .../charts/data-chart/axis-types/package.json | 4 +-- .../bar-chart-multiple-sources/package.json | 4 +-- .../bar-chart-overlapping/package.json | 4 +-- .../bar-chart-single-source/package.json | 4 +-- .../data-chart/bar-chart-styling/package.json | 4 +-- .../callout-layer-styling/package.json | 4 +-- .../package.json | 8 +++--- .../package.json | 8 +++--- .../chart-highlight-filter/package.json | 8 +++--- .../data-chart/chart-navigation/package.json | 4 +-- .../data-chart/chart-overview/package.json | 4 +-- .../data-chart/chart-performance/package.json | 4 +-- .../chart-synchronization/package.json | 4 +-- .../data-chart/chart-titles/package.json | 4 +-- .../column-chart-styling/package.json | 4 +-- .../data-chart/composite-chart/package.json | 4 +-- .../crosshair-layer-styling/package.json | 4 +-- .../custom-drawing-annotations/package.json | 8 +++--- .../custom-editing-data/package.json | 4 +-- .../data-chart/dash-array-axes/package.json | 4 +-- .../data-chart/dash-array-series/package.json | 4 +-- .../dash-array-tickmarks/package.json | 4 +-- .../dash-array-trendline/package.json | 4 +-- .../data-chart/data-legend/package.json | 4 +-- .../data-chart/data-tooltip/package.json | 4 +-- .../final-value-layer-styling/package.json | 4 +-- .../financial-price-series/package.json | 4 +-- .../data-chart/format-specifiers/package.json | 4 +-- .../charts/data-chart/legends/package.json | 4 +-- .../polar-area-chart-styling/package.json | 4 +-- .../data-chart/polar-area-chart/package.json | 4 +-- .../data-chart/polar-chart-types/package.json | 4 +-- .../data-chart/polar-line-chart/package.json | 4 +-- .../polar-scatter-chart/package.json | 4 +-- .../polar-spline-area-chart/package.json | 4 +-- .../polar-spline-chart/package.json | 4 +-- .../radial-area-chart-styling/package.json | 4 +-- .../data-chart/radial-area-chart/package.json | 4 +-- .../radial-chart-types/package.json | 4 +-- .../radial-column-chart/package.json | 4 +-- .../data-chart/radial-line-chart/package.json | 4 +-- .../data-chart/radial-pie-chart/package.json | 4 +-- .../data-chart/range-area-chart/package.json | 4 +-- .../range-column-chart/package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../scatter-bubble-chart-styling/package.json | 4 +-- .../scatter-line-chart/package.json | 4 +-- .../scatter-point-chart/package.json | 4 +-- .../scatter-spline-chart/package.json | 4 +-- .../data-chart/series-animations/package.json | 4 +-- .../series-annotations/package.json | 4 +-- .../series-highlighting/package.json | 4 +-- .../series-marker-template/package.json | 4 +-- .../data-chart/series-markers/package.json | 4 +-- .../data-chart/series-tooltips/package.json | 4 +-- .../data-chart/series-trendlines/package.json | 4 +-- .../series-value-overlay/package.json | 4 +-- .../stacked-100-area-chart/package.json | 4 +-- .../stacked-100-bar-chart/package.json | 4 +-- .../stacked-100-column-chart/package.json | 4 +-- .../stacked-100-line-chart/package.json | 4 +-- .../package.json | 4 +-- .../stacked-100-spline-chart/package.json | 4 +-- .../stacked-area-chart/package.json | 4 +-- .../data-chart/stacked-bar-chart/package.json | 4 +-- .../stacked-chart-types/package.json | 4 +-- .../stacked-column-chart/package.json | 4 +-- .../stacked-line-chart/package.json | 4 +-- .../stacked-spline-area-chart/package.json | 4 +-- .../stacked-spline-chart/package.json | 4 +-- .../charts/data-chart/tooltip-template.zip | Bin 0 -> 125414 bytes .../data-chart/tooltip-template/angular.json | 3 +++ .../data-chart/tooltip-template/package.json | 4 +-- .../src/app/app.component.html | 23 +++++++++--------- .../tooltip-template/src/app/app.component.ts | 8 +++--- .../data-chart/transition-event/package.json | 8 +++--- .../type-category-area-series/package.json | 4 +-- .../type-category-bar-series/package.json | 4 +-- .../type-category-column-series/package.json | 4 +-- .../type-category-line-series/package.json | 4 +-- .../type-category-point-series/package.json | 4 +-- .../type-category-series/package.json | 4 +-- .../package.json | 4 +-- .../type-category-spline-series/package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../type-financial-ohlc-series/package.json | 4 +-- .../type-financial-overlays/package.json | 4 +-- .../type-financial-series/package.json | 4 +-- .../type-radial-area-series/package.json | 4 +-- .../type-radial-column-series/package.json | 4 +-- .../type-radial-line-series/package.json | 4 +-- .../type-radial-pie-series/package.json | 4 +-- .../type-range-area-series/package.json | 4 +-- .../type-range-column-series/package.json | 4 +-- .../data-chart/type-range-series/package.json | 4 +-- .../type-scatter-area-series/package.json | 4 +-- .../type-scatter-bubble-series/package.json | 4 +-- .../type-scatter-contour-series/package.json | 4 +-- .../type-scatter-hd-series/package.json | 4 +-- .../type-scatter-line-series/package.json | 4 +-- .../type-scatter-point-series/package.json | 4 +-- .../type-scatter-polygon-series/package.json | 4 +-- .../type-scatter-polyline-series/package.json | 4 +-- .../type-scatter-series/package.json | 4 +-- .../type-scatter-spline-series/package.json | 4 +-- .../data-chart/type-shape-series/package.json | 4 +-- .../type-stacked-100-area-series/package.json | 4 +-- .../type-stacked-100-bar-series/package.json | 4 +-- .../package.json | 4 +-- .../type-stacked-100-line-series/package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../type-stacked-area-series/package.json | 4 +-- .../type-stacked-bar-series/package.json | 4 +-- .../type-stacked-column-series/package.json | 4 +-- .../type-stacked-line-series/package.json | 4 +-- .../package.json | 4 +-- .../type-stacked-spline-series/package.json | 4 +-- .../data-chart/waterfall-chart/package.json | 4 +-- .../doughnut-chart/animation/package.json | 4 +-- .../doughnut-chart/explosion/package.json | 4 +-- .../charts/doughnut-chart/legend/package.json | 4 +-- .../doughnut-chart/overview/package.json | 4 +-- .../charts/doughnut-chart/rings/package.json | 4 +-- .../doughnut-chart/selection/package.json | 4 +-- .../financial-chart/annotations/package.json | 4 +-- .../financial-chart/axis-types/package.json | 4 +-- .../package.json | 4 +-- .../data-legend-styling-props/package.json | 4 +-- .../financial-chart/data-legend/package.json | 4 +-- .../package.json | 4 +-- .../data-tooltip-styling-props/package.json | 4 +-- .../financial-chart/data-tooltip/package.json | 4 +-- .../format-specifiers/package.json | 4 +-- .../high-frequency/package.json | 4 +-- .../financial-chart/high-volume/package.json | 4 +-- .../indicator-customization/package.json | 4 +-- .../indicator-types/package.json | 4 +-- .../multiple-data/package.json | 4 +-- .../multiple-feeds/package.json | 4 +-- .../financial-chart/overview/package.json | 4 +-- .../charts/financial-chart/panes/package.json | 4 +-- .../financial-chart/performance/package.json | 4 +-- .../financial-chart/scrollbars/package.json | 4 +-- .../stock-index-chart/package.json | 4 +-- .../financial-chart/styling/package.json | 4 +-- .../financial-chart/theming/package.json | 4 +-- .../time-based-data/package.json | 4 +-- .../financial-chart/titles/package.json | 4 +-- .../tooltip-template/package.json | 4 +-- .../tooltip-types/package.json | 4 +-- .../financial-chart/trendlines/package.json | 4 +-- .../financial-chart/volume-types/package.json | 4 +-- .../charts/pie-chart/animation/package.json | 4 +-- .../charts/pie-chart/explosion/package.json | 4 +-- samples/charts/pie-chart/legend/package.json | 4 +-- samples/charts/pie-chart/others/package.json | 4 +-- .../charts/pie-chart/overview/package.json | 4 +-- .../charts/pie-chart/selection/package.json | 4 +-- samples/charts/pie-chart/styling/package.json | 4 +-- .../sparkline/display-area/package.json | 4 +-- .../sparkline/display-column/package.json | 4 +-- .../sparkline/display-lines/package.json | 8 +++--- .../sparkline/display-types/package.json | 4 +-- .../sparkline/display-winloss/package.json | 4 +-- samples/charts/sparkline/grid/package.json | 4 +-- samples/charts/sparkline/markers/package.json | 8 +++--- .../sparkline/normal-range/package.json | 8 +++--- .../charts/sparkline/trendlines/package.json | 8 +++--- .../sparkline/unknown-values/package.json | 8 +++--- .../package.json | 8 +++--- .../actions-built-in-data-chart/package.json | 8 +++--- .../charts/toolbar/custom-tool/package.json | 6 ++--- .../package.json | 8 +++--- .../package.json | 8 +++--- samples/charts/toolbar/theming/package.json | 8 +++--- samples/charts/tree-map/events/package.json | 4 +-- samples/charts/tree-map/layout/package.json | 8 +++--- samples/charts/tree-map/overview/package.json | 4 +-- samples/charts/tree-map/styling/package.json | 4 +-- .../charts/zoomslider/overview/package.json | 4 +-- .../operations-on-workbooks/package.json | 4 +-- .../operations-on-worksheets/package.json | 4 +-- .../excel/excel-library/overview/package.json | 4 +-- .../working-with-cells/package.json | 4 +-- .../working-with-charts/package.json | 6 ++--- .../working-with-sparklines/package.json | 6 ++--- .../working-with-tables/package.json | 8 +++--- .../excel/spreadsheet/activation/package.json | 6 ++--- .../spreadsheet/adapter-chart/package.json | 10 ++++---- .../spreadsheet/adapter-combo/package.json | 10 ++++---- .../excel/spreadsheet/clipboard/package.json | 6 ++--- .../excel/spreadsheet/commands/package.json | 6 ++--- .../conditional-formatting/package.json | 6 ++--- .../spreadsheet/config-options/package.json | 6 ++--- .../spreadsheet/data-validation/package.json | 6 ++--- .../excel/spreadsheet/hyperlinks/package.json | 6 ++--- .../excel/spreadsheet/overview/package.json | 6 ++--- .../bullet-graph/animation/package.json | 4 +-- .../bullet-graph/background/package.json | 4 +-- .../gauges/bullet-graph/labels/package.json | 4 +-- .../gauges/bullet-graph/measures/package.json | 4 +-- .../gauges/bullet-graph/ranges/package.json | 4 +-- .../gauges/bullet-graph/scale/package.json | 4 +-- .../bullet-graph/tickmarks/package.json | 4 +-- .../linear-gauge/animation/package.json | 4 +-- .../gauges/linear-gauge/backing/package.json | 4 +-- .../gauges/linear-gauge/labels/package.json | 4 +-- .../gauges/linear-gauge/needle/package.json | 4 +-- .../gauges/linear-gauge/ranges/package.json | 4 +-- .../gauges/linear-gauge/scale/package.json | 4 +-- .../linear-gauge/tickmarks/package.json | 4 +-- .../radial-gauge/animation/package.json | 4 +-- .../gauges/radial-gauge/backing/package.json | 4 +-- .../gauges/radial-gauge/labels/package.json | 4 +-- .../gauges/radial-gauge/needle/package.json | 4 +-- .../gauges/radial-gauge/ranges/package.json | 4 +-- .../gauges/radial-gauge/scale/package.json | 4 +-- .../radial-gauge/tickmarks/package.json | 4 +-- .../geo-map/binding-data-csv/package.json | 6 ++--- .../binding-data-json-points/package.json | 6 ++--- .../geo-map/binding-data-model/package.json | 6 ++--- .../binding-multiple-shapes/package.json | 6 ++--- .../binding-multiple-sources/package.json | 6 ++--- .../geo-map/binding-shp-points/package.json | 6 ++--- .../geo-map/binding-shp-polygons/package.json | 6 ++--- .../binding-shp-polylines/package.json | 6 ++--- .../maps/geo-map/custom-tooltips/package.json | 6 ++--- .../geo-map/display-bing-imagery/package.json | 6 ++--- .../geo-map/display-esri-imagery/package.json | 6 ++--- .../geo-map/display-heat-imagery/package.json | 6 ++--- .../geo-map/display-osm-imagery/package.json | 6 ++--- .../maps/geo-map/marker-layouts/package.json | 6 ++--- .../maps/geo-map/marker-template/package.json | 6 ++--- samples/maps/geo-map/marker-type/package.json | 6 ++--- samples/maps/geo-map/navigation/package.json | 6 ++--- samples/maps/geo-map/overview/package.json | 6 ++--- .../maps/geo-map/shape-styling/package.json | 6 ++--- .../geo-map/triangulating-data/package.json | 6 ++--- .../type-scatter-area-series/package.json | 6 ++--- .../type-scatter-bubble-series/package.json | 6 ++--- .../type-scatter-contour-series/package.json | 6 ++--- .../type-scatter-density-series/package.json | 6 ++--- .../type-scatter-symbol-series/package.json | 6 ++--- .../type-shape-polygon-series/package.json | 6 ++--- .../type-shape-polyline-series/package.json | 6 ++--- 331 files changed, 821 insertions(+), 815 deletions(-) create mode 100644 samples/charts/data-chart/tooltip-template.zip diff --git a/browser/package.json b/browser/package.json index 182aeaa3a..b731415b7 100644 --- a/browser/package.json +++ b/browser/package.json @@ -39,15 +39,15 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", - "igniteui-angular-gauges": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", - "igniteui-angular-maps": "17.2.0", - "igniteui-angular-spreadsheet": "17.2.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", + "igniteui-angular-gauges": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-maps": "17.2.1", + "igniteui-angular-spreadsheet": "17.2.1", + "igniteui-angular-spreadsheet-chart-adapter": "17.2.1", "igniteui-theming": "3.3.1", "igniteui-webcomponents": "4.7.0", "immediate": "3.2.3", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 48fe0e584..8b0e25ea4 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1071,18 +1071,18 @@ function updateIG(cb) { // { name: "igniteui-angular-charts", version: "14.1.0" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { name: "igniteui-angular-core" , version: "17.2.0" }, - { name: "igniteui-angular-charts" , version: "17.2.0" }, - { name: "igniteui-angular-excel" , version: "17.2.0" }, - { name: "igniteui-angular-gauges" , version: "17.2.0" }, - { name: "igniteui-angular-inputs" , version: "17.2.0" }, - { name: "igniteui-angular-layouts" , version: "17.2.0" }, - { name: "igniteui-angular-maps" , version: "17.2.0" }, - { name: "igniteui-angular-spreadsheet-chart-adapter", version: "17.2.0" }, - { name: "igniteui-angular-spreadsheet" , version: "17.2.0" }, - { name: "igniteui-angular-datasources" , version: "17.2.0" }, + { name: "igniteui-angular-core" , version: "17.2.1" }, + { name: "igniteui-angular-charts" , version: "17.2.1" }, + { name: "igniteui-angular-excel" , version: "17.2.1" }, + { name: "igniteui-angular-gauges" , version: "17.2.1" }, + { name: "igniteui-angular-inputs" , version: "17.2.1" }, + { name: "igniteui-angular-layouts" , version: "17.2.1" }, + { name: "igniteui-angular-maps" , version: "17.2.1" }, + { name: "igniteui-angular-spreadsheet-chart-adapter", version: "17.2.1" }, + { name: "igniteui-angular-spreadsheet" , version: "17.2.1" }, + { name: "igniteui-angular-datasources" , version: "17.2.1" }, // these IG packages are sometimes updated: - { name: "igniteui-webcomponents", version: "4.6.0" }, + { name: "igniteui-webcomponents", version: "4.7.0" }, { name: "igniteui-theming", version: "3.3.1" }, { name: "igniteui-angular", version: "17.0.0" }, { name: "@angular/animations", version: "17.0.0" }, diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index f20778708..33c0d8d79 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,14 +1,14 @@ [ {"ver":"17.0.0","name":"igniteui-angular"}, -{"ver":"17.2.0","name":"igniteui-angular-charts"}, -{"ver":"17.2.0","name":"igniteui-angular-core"}, -{"ver":"17.2.0","name":"igniteui-angular-excel"}, -{"ver":"17.2.0","name":"igniteui-angular-gauges"}, -{"ver":"17.2.0","name":"igniteui-angular-inputs"}, -{"ver":"17.2.0","name":"igniteui-angular-layouts"}, -{"ver":"17.2.0","name":"igniteui-angular-maps"}, -{"ver":"17.2.0","name":"igniteui-angular-spreadsheet"}, -{"ver":"17.2.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"17.2.1","name":"igniteui-angular-charts"}, +{"ver":"17.2.1","name":"igniteui-angular-core"}, +{"ver":"17.2.1","name":"igniteui-angular-excel"}, +{"ver":"17.2.1","name":"igniteui-angular-gauges"}, +{"ver":"17.2.1","name":"igniteui-angular-inputs"}, +{"ver":"17.2.1","name":"igniteui-angular-layouts"}, +{"ver":"17.2.1","name":"igniteui-angular-maps"}, +{"ver":"17.2.1","name":"igniteui-angular-spreadsheet"}, +{"ver":"17.2.1","name":"igniteui-angular-spreadsheet-chart-adapter"}, {"ver":"3.3.1","name":"igniteui-theming"}, -{"ver":"4.6.0","name":"igniteui-webcomponents"} -] +{"ver":"4.7.0","name":"igniteui-webcomponents"} +] \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 2ac14f415..f4e12c524 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 45cc33550..28a06a930 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 45cc33550..28a06a930 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 863035afa..034d56709 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/tooltip-template.zip b/samples/charts/data-chart/tooltip-template.zip new file mode 100644 index 0000000000000000000000000000000000000000..1369b3dcca645b93c355b82e9b58f90c0d608def GIT binary patch literal 125414 zcmZ^pLy#y;)MVSX?e5pMZQHhO+qP}nwr$(CIbZxSF|(Oj+(m6Fa*-z^s&2|l0fV3b z002M$+}p>fl~(ziDF1iT`fu?58)rK^YiA348fOz5dusz{6FOQaX9FWELu(6XPe-FF z)yZipT8Zfi2MHSS87YYwsaa_n)kaDRN|_Y}AW4)I_Or87veOcB4T_XxG}03)f6x@? zWW}e+4?H`;RZ|$R;p1>m>AK>pG!9c=JD=R?x|Dz{Ll~G-UW60?Z2ms(28UO(I z|E0&k*38A)z>(I{$F^B0wd?JPr$ zBQa$#XB4U3W$hH};M`-kY2!mVKQ}`-Hk51Zkxita_ z5y?kx%^?~UUMORWg=rX?(NejDCoAxBI&-qJ{th1CxtNHr6xQBdDaHJ)_G((m08$m48b!JuY^{SZE z@N4j8TFg)Qkdor_O@Ty;QO+IesAY$CjdU(*DmEk#=44S+zY^+;Q{K)fjd|RXuIyB# zm{W|D;)+K%`=ZJM)W}fn0a1l8B=?Wr^k81HYo9%BiUaJ*QMLzy!xAXX0d6bmy46~4 zKobRyZ}yz>mf;PRzDa$AWdNG14TQ&gg6_mole-25tmU`q=6?TGMvKR$V+kCVgE*=# zf6K~16Rxq1>I8t(Ag=O}gVk!2#!T7xBNOJ7SP0c}eLo`F{|p(rlyEY@z!_wSl$KfV z-`Gqb7=bhNF>&}yk=XUOsBfjL_Hz7=wb5HRvh9P?sMoZjffm8x<^Fn2x6-~w_tq+YSd$xRi&Hkmu{OOo3 zXG=3p{t+%|a{P2uz#%dD#&s}x33{ik^Av=FPg?>N`BJCtusC;QW3Rn7ec1nb*Aw?O zSw;@UJUNTWY=s*tsG6c)l8rpmjaO(5OA8PBETg4WE$jHST;PWMQ_eg|a?SFD_dV~? z=m%~?6tmvaCJp>{dc8TOk5dx^85zSUVxMXpdMDwUhWtpx#~qp^#NvMX0{*|mkSQ^$ zgTTYyT>%0B7=r$Ph_U~VUjs9f{~@MES;uaR0L7iR6$Jb8{1)2_LeIH#f>aBe&ocEBdx9>S%b(MP@ zh5B>G|D#{$oIq(RFg~>JCZ_Uj*OBlIkMtAuYkgvk7$RYAdvnOGPdRjFq*b{h?t1hNfMOv*~fJX<98(>N>j7KsseQU zqTZ3Sw&22}iIHn*8FFLw5E+Zj`0TM14evBq4~Y&X;#XjJ9Gf zlZ}9v3wai;Za;%9#<{FE5D9XHmMQpfm+C%%EL}l#3RSC)QZ<&uI*z2fkTi?rz5F{J zk=+ua5p*$4W|#@f2}6)$;XR2%_9?V1NRl+wIj88KA7B=xS9bi47Nw;Sn{!qXpcYTD zCe@_ly9(a8IXYu=P><>4i1|j`d1v7@pxmDO!^v1TE~KKbpt|cUK4(r#a-g3B=?Apj z2q>QW=IvXa26FKz8$J z2#KS}59C}C=-0-f`34ANE{w^|ISu_cW-T^IC1QAwv)?>KErVPJ?d30A-roOpiP?X- zx;t@9KG+QiplARNK=l90)&K1h8f!ZvtN*dewf0)lCFi2wUgZzIY>wJ0y8(7Y%_Rem!zT!aT}HUqr`V(Cbaz3?fWe}(>?DefcQErzW1F7^`S5UB z;c^hv^;RgGf7tQy8jMniBtr8fsHDP6qd-`kQV9*Shdsx{HS((k#2pCGWr2{``W)zh z3Jkh$%XLV7MJu>07_2EKL^N7oFf;niAL~M^3>f5DCQaJKBLao{K^*fMjEm0k?$@Y} z>n4@rXo!tX1yTj%e?rC+IERiFKW`~;2VQy}a1JmD6!QZf=#_^eSab43<@Xd4;m*{c zHJ3j8rICdFHwE_yAAsx5LNMfxyUP{iP$0|YxwC-t8pA}C9W?bUsr3M^;O@H~lhRv*jF6H3GV2rDm>+2@vA=f@dk@_c3CJMy3HqWON>hsT#7|V1o zmHYccB6E8^w7&(Ig;hig-*C)J&CxX^?Cqo${mccldz8Olzn7edwM0(>vdgT?JtUqs z*kcSgeMjLD(bKD(CN4@_n;JujNnia9Yjf#y>{sJw*r(==iPi#V#|~|5{)80LH7;#6 z5h_>nTD3~-DY0QEo!vz!u5Db*vSx0Thf#@eYudi_dCjS1aJ02CL-h=Gi>(u~8!H}c zVf7u0GZJlj`g7POUiQcMe72n;`@gmhznH~6gaR@Yx!JR61BiUv6r$8kNY-9DRWEgf8U6&@e!SxqY|0D8_KRd=TLrtA|B zz-A28F`2kH*J`!#6ZEcj?6c&=kk6C%PMdKu4>2O|hdUg{Z^$`!Tavzn3q}yKd%rJr zc6~qj;nsws_!B#2Mm%kYNj>%&WK&@9$9JPnK&g27XV@1`za+l*5E|@T!or|P?rhoI zskux1fAo1GP{Sxu&&I7Y2qI9OGDhXoRW{ojE3GBCEi?5&yj>)-GzNaRC{|gPH5+Bv zxQ2C`Av4`Y&{VzZ$6LW*)U)a*rXXtOhg|}1?-aw@X^-f0M?UiB4=HR4(+)7DDNk8B zgrLH`Mgnvc$_)yp9;9WMB0il?0sJbn(}o0$_u3WXE1J2N5=tiC{$>V1u9jA9*HN3@ z?6;dyOV!S3H4&-~mN$gVY*&T>A=$?CIxc$O(Uf>JJ`X0e1G9ELrh#G7?nLoek*nP} z#4k#ApfB9}q%V>IhV$;z=!*F&5{>>w>S~R`qSz8F3fG{{JNELw!GPFIJ5+b>7}!4J ztSaaFiwn>`^YaS#wjU4YF9xg^21+goV?*fV>|rVeBMjxOMqa>tfLUWxP7FF#w(a_JHCXfVdD|BiQBTMLL8Ldy*eHTv&5uT45w zeS-=~^sf;a5u5B)x$6u33ydfKi7hJ_7f}eIY*mJyNO8EKYXGe=%qy?mW0VF8qali* zUdo{;!4iNmhj7sXim;O$JNVCb{f4i1vA-pXdP>67G$5Rz#lJ%q-bp#>UZStm)H9%v zgGE5b7-OCgV4PkU#vIgtPb9b<3JbIZ9e&Uoi){#0Z?xKx&5EY6F4JxloD`7|GJgqL z7hCCbrB`El(=WS+o^@Eld{i7kF6EO~E&_s>UXV6l<5u7<79Nw2qqTP>gI)UG5G$iT zx-@u$70CBX>xWG6`K0Yq_AdgMV%MSy*QeiP=H7rKOpTN;K%p5@&5l`hB;=;Sk5I_l zmTf5pRyw*ZL17rw08$_@eP0v~NC6c3o8-Y#z879 z!r&MnPqXoYA%CEi2Spi-<+50dK`eTtcZ~J*K5(Po_~DkYf4uSWq}4xoE~Kij-<**BR-M8 z&Az9uQnhGkYOR|<^9l2#^{b2r|Vh+EwfRY z7CgbrAAJ3Q@RpKjP*mEwoiwDeT^WS}D7&ZTBI#DO)ouDD@m9APfDb9+CE1nO8;DA| z;biM(p|c1~&9gL%8fa-TH;XO*Dk4+T;dKz5VJKhY#{$!Y^rFKP^{06Of%CrrxG*>e z)9q$r0R;D!#VoJ;eg#NBZvA-#h(MLNl7e$9UdPnhZrUNd@`zjNZvFnWk?_7%exr18 z$@m3pK?KL~W`-xl(RcNq6VHk2zaoMmqWA_2pp;l}Xd7U9zw=uh%w^8r*!k(p{G)t_ z{sU+E5TB1%edLuR@%-aEWs)HNx_n$GpWpJd$v^TBY&tZ^Ju|&+u81DrwBDq3(7v0m zaqzTIRG>^{8Ne{o`Fa4t#om?y`5AQAI6Ol5 zB(tCN@x~{MEa&^N#VY?r>BB~o?`saeeF+%8$x{*6p~sii=`2z+s7-fc&)ikYATw~w zR;q9*4%^nqMqvYJH~Af3V?`xL0_t0S%qsDzJo;R%7dMvy8*_+S+o&MqU^=14t>yh^ zSN|fF13~)$gWjUAdkz`6guJYS_t9PYT%7zM3VV<_1dbOub^0roJ#Pc~G*V@tXpv4* zjKvn+%k2K_@LP5#X(Yur;5bndA(} zrrFNTdq4AJU*F2&I^oEwQDuyV8-6HE@2LI|-_)+yCU~r}IOt$R&%DZ$QOD{SsF3&K z#M7`nz}NAU=2>^s@g}LD;j8}o6LMG<7w{yP77rDl=LosrRHk5H~wj`LfLpy2M*SPNyvMK$%QrgZC1=?a%ePK%%hu*1aMAHxNc=OcXap{JDaFty>5 zcWe7~dojwhd{7b)&EoC&g-%FT9WIGc|NRo%y$A48k>5rdtUbcHjX=IF^Ct9F9C*-e zN!Iy)*S*=NA=C3X9Txv5XHWHb8 zbyha>NnvDXV9HRdc7kU)#OB}UX+``2hC zJ*+s`jw}#5u}Em>hz~e;5;&PAFmOizAXE>Yi3OJ=+cGVeyinglmn&Bi6EU~7)yh(y z`Mh|+0Mb|JT6j3ChOqdVx^aynTFdtDnWPRiD@D{rfuL#zZ@2O7(phOMmNfTZ>(7gD z%t+SmMtjuC%=b#Jl4AI+s}D^}9piD^TPBV{hyMMhpV|$LrNnKt06@e_lh?II6_8a` zNP7TVTS`+o{abPs-AsrJDMx#^7JBMoa&=TV%&c9-56*e-O(TzHe5Wqu8pphBz5I z5;<}4t{V=~4X&RqbNpaBKK5f)8cbfEx46ZEo|@&KdQ1-a^;_}M#*#Nr5z>%QgLQK7 zhk5tJl~aTjr@K`zh15_%R}kgE3$%+{PjRG?{xKS~ERrPhietb;Tl7^KyW+xnRtEnsxyaoz(9d z@IG(3pQFN)g>LpM+JjuA0CH`RFYNRoF5&QqpCmkQD6P!XWkTa|O>1jPwl=7l1{Ym9 zmM=o3bI)e7#D<2;%<4SCC2R<{^ruIot2QiI%YZq5xDK=?P3scqZEpeGSC>JDqNgtM zA55{L1+l=JUQvv@m^iju+k%o+(XR4|k{dI+7L5f3E_`hBiCQ&5#$kMp?AOhup(#t% zjE$MhLeX#TMJB1k#p3NMVR0vIoRiXe^=f%)A!pJ-d666VjKNQu7Ifm(#N4e--=0M= z#)ejgm}ARU*@wo*81@~@yV1P&1wG`7fs&^)RY?YWc3O$6hz`zW^WdzP{vsK65DehI zlTd5(*2VN}k<$5QPJZyE4PRX|sNq}wH?W;eKv}J$q4){;C!4bQ3RuTf#p5IJ7++lH zvXSdKueVWbXhTWuO>*MH6(xl5qctno2z`?7r8oR_38~u=t&_kh7Qj6ecPsm1-HSJ_ z57M$}v7DVu+^)H;hn|I^?0174++L6z=RR5`=EfVP9+MqtHdNgNf8LA8jVZu!KSTQ z+s08WG{dnH#_HiwyfS?f2 z;JStLmauwe6kn-2B{xZj$xcQ^wyV}mj(8^yF^uYJ}JXqUEt)Z--Ysls`pG-1q+@$biHB)9tiUI&P$ z08*)eMji(6c00##%fFteo3bkhuqux#7gwf-*wwXmx1NlO%&hR&bff+FhL( zUMX{J`H5#d=Qo{Dp_eNL2fC5blP$|yLote`h|TtT{dcbT3rhSESmMrf3?;=cv~RfY zvSh!+q9ri-TV70KC|Ik}l`2}s9p*xfH>RCZnt-lB)Y6v!OdLyNooc9V)O8Cyl{_2P z>$EZmr7VXP98SUi39*h&vFvDWAkUNzl)qH?lhH0xWh0G@i_)c*p&Iosb3LE=^?S2Y z469%{H2IWpTRk&zU8+~k+MKYPQq@p)U|(>napabz5N%OcrZKZt@*Jq)-mIIM=ftFjeoBG@ah8b0W7lnk({lq z>48WqjceYVWE_|$8)SYjUe0!1Gn%O)vi8p>IGMuV7VG*9AT8GRv8r!W*lN7_xA{|7 zlzjWTx{eaD8Fod>nt}r2c(o8xxJD5% z7=o8^z*dJCBU{Jdx}N5gk~VrI^2LJ9gjl*<5qmZ)pM|VeY#j^(_9XGSaWX6F~L-njdOr z3d2e;Tiy8dazSHZpO>Ab`9}47eXzRRk?JM4LPhSk7P#ZCdCMH%*d2p}zOHfO-Zg^C z4%@e{$8r;s<|}Y4mN2u%*9)GE*6@=&Q{}Nzf~-{JGz5?sEi7ZCF))q^4N{}#i(p1& z@F9|hy7Hjl)-LF}VKU?YW6v9vcry!d{lrYuY1 zt`>+O0dt!8(k*qV0I+vvXmiY(34E>L5@8jW#EPT3PTV(;?xhgNoSxL?|DwYQ1Eb!c} zA?A)l4TGgMr#s%?xFD9OAVWG?;>g+G%AKQASv1_i3qvQ}@sE9psC#u$JK!fZzn7JT06Mikyp9)uAf;DLJL|8A8}U#tRA1(`gTK;fJ`?cXe}XQX89QBj;tWm>~RMT?eW%DaU+ zWG4uSTD|@hp-0zvk-!B1`2^FEksRcXdF?^BByh=lF_~1$Sq0c{fI9S7PLQ>m* zh|74FU^3vkH5m3w6>Y)3?y*iSQ?YOQgUe%+*y??Bm6j_#z#3U%`a^3(s)1z7jT{Ek z9PtT36AjW8HcpB-lm|kn%Mr0PV<=XjV|_a z;)O2oA2vpZfvddI*S?);D@rEE0|&%QS|I~m%;3B9ToJ!B5wA4?H|D5^g|#dy=`it` zxK)+LhBJ+4C(wh3FG%P4PF17s=0+)8d{Krf5FT8Qiy8P^nMeF+a58A6TRSG&6*JOo zI}&b)zj@ZM-s$6f@*Q?hyb<55I$keg+-&Hrypwh)!%J5Yx*Ox$%G=&N;tQ0aZo*9J z_gR5DbzCdkrsx@U##O!;4A<1D%BUCNi{w~nEsjr_-WYXYa)A)JgLi>6pW`mqMKVAN9` ztSe72WP(E_Vn;CPL0DZOun?5oV<;#%b%2@K4y^!u{8fJK2~HL~%PumvI}+9ZT<=J{ zIA03ude9n0W()w8NM^@IR$V8^tn_KKyc}x_o{1VgXV&j4DS8sWVERMKvybK5kPscR z&?y)WUwyG%_bbTPD>zFe+u^X~Q*RdrJ1~n|D};KNI#{i?BY8f4iG~_uv5~j?BtJec zm5wa(vPez#!Dg?(zj+Jg(0w^K-VIG1iY~wV?N71Rl5(|+%<=c>hiVdPP4{C{UF~^l z8*j{epqa~+cOXIrZYd>)c!B1+31t}^+eC#+q81sr;too+>u_dtrP)BPCsB=Fa0!vs zDhzr1QGTmQy_4km!^FX2NsBv zKCP_f4m(62BA$7%V=ZBKVb;7A0rE9JLI#bj=mx#EW)K5)>W5Klo4HCQzpRUNi=pAg36{{98N+LXWZ*S$rqKsMCD zwY_;kj_!52gfUPBvcw!b%BY=E>y~tSb zY#F?X1OHKz)t0%gIo#j8WUjU6PW(cRM0IafZ{wg?Hf~A#SZIKN;$kG(w5WMvVZ5!Q zZj^oOlwJ>B&6Z10tq3e;XK;?-5XocT3>BcfdHL>Xoxv*3BPw1~yO*aZpB=5g*`>Wb zMV~HtPhG8K+r8Q8HENV zIk{e;I3RcYI*KZS&O^FaNn~2H#*r!YLAdxNp(*hP|>#&pxyJNjwD zvEN~l@aC1-27$`7ZEyjgL0Jn_w*a?9eN533t(ICX4I+y$Wx0c!NX}cGQ{8v8T*8rv zMM)f$a`}4Ac{Oz8)`agTPh^KYC{{U1rTfpIoAVp;Wc;wO$X19~O1O+T9(ZzfZ z@W@F=yVHxb;ZHHiLoWEQIIjzJ>~&VH!5b2<4C7@zv|m%-pLA^s3=POvH^JGKNol}L zO7LN-VZ@TfP}vDdQtUpw(h^ZU{xg;Epu`*)MtP>)81|%~hiY7YgaCA2Q2J&XeOhM| zp$7ExcFO5lr~|+E<^!`KPv*j1T>9zi55Dm4rOW5pP@Q;7d(swc#>XsC_7IK*2d>Q5 zOxlpzg798_)xl8%&Isr#903CQ(|B?@hUvPl!*r3(DGJ_dNt6L@SKzu^ehuKh!R=f9 zy{#x=3KivQra$S)sp_yoTIfuj)1!%aofvSQsPM;g^N}l*Cr)#VgpjitGwIwhu(ZjN zK9nC%&%YGYM!`WxpXhjrh5X>8UuN4P{iTDWoUy$~6_VoLbLz@~z{$i;OiQYMYX$SD zlwetvPxbR1dQh&ZJPukAFW(9S$loH!YEUq*mNI86{dCM3SXbGgeGK>dkWJpsjo#-d zCEJ`wK#HisefHsZ|fKsL47w>?XK$*vtd@iD-MoAImL<%mc=W`A+$y2)3Dk+%+cw9;ha zky#SrpdN^?97c9<;GdNC!jwC`GS$npmR#^fcYo2rbW%3AcYde0xO70uHOHmzXVk9x z)x||227OqD_O>mkVXONIWC--TA6|?v?aiYZ1{ateSbFp-0l5GWlwoo%0GT?rb_&B!YH4kAr95%l$yo3dseB z8H3(!C#YnaE6bE9iW*r#T(dX*&8bar-ETzJ!1$%Uz1I-4t_KvHCMOaX`5t;;Mc}MA z7ypHZvg_yr9?}LPC-zIzzdvfPU$;IEkQQ1u%k9ZZ8oJ+^dP9T?q;n2Rw89k~9Uf*m zaUowv_OG40foE8koH4_iNLLHoIqt!cn*n`A5b@;%7kLm`-`%6d4<0A-u|97-$zz@T z8jN7yPT7pl&+g79`&chykyw2c7p4>aMsE&tgn@p%es zQw#1?SM`Kt%nicR=X0Z@x#6GB9A1WVCV=1qb(TxO%Q4}rz5$8*?}M528_)<>?H#~F zY@v@Q9wZ(`l|OezV~>t>QY6?#B0B`T@=ke`g1%kYODZenE(y@iC0x!x|DmMmU}Z~y zP;dXezXDOugmC(*F2aSVtr5H{gP%ylIW0To6gNHFNzM5SAp7Uce~mX^rRFgOQ)^@> z6#F{p+iqokD^@WGw2KCW8B{3Hc~AW-?=mWD(yj>bKvjU~?HKUNVzk_Z+h}%GvJ_60 z8wc@*{4p&`WnNa#pSl5s>us!$UC_H!$h?QH(43);GW1d!`6lfyhI#@w0)k^-xg=ak z5)jm@RS^1&D|u0hVs*eLUT>J%aBcf}5koiY$|OuZ%b+-@9Tz-$oY_B$|YIJQJr<%@R1}kb7=?49pfx zNeEd7E*_v_XOa&No=h4Rv?vb)`Z4A;WzNpDrBfmzGXeeUVPknutODYyN^r%v7EC{> zV5|~deawZDf|52#!Z#++Hrst%PFut_HZ;~&7Gu6ib4KxDUNu!>)V&1YUIR=F(DVOR zNz3sT^GC^354^`s-^^ExNR_BEm1^DvF8ch5k*2M}6SS6C`WOBKf5=7&)^Ix_e-n~1 zJTWfk``?NEa_h0!*LwjcU^Z4$hU2x+Y=iFGJN#itko-mz8q7M|8-quPED!b?S-_{B zSvFE>vDy4299@{sB>XX_#z$l@GS{vNLR9(vF-{d>)TK>gXY77qCK9X-N#LtW2RNGk zY!41%PLHuypz7TP=63A%U>|(1v(T3K#veezX>E9$t-rm@--r)~9cyOX z+-w;*xUC}+l5p8ah``*_Z7P(&l*=~l!+=P%QM;q>sO`8)B($}6NA~rl#s+0IR#*KS|v#?jMP(=uIppR*?^GYE&4wM zn;|Bm88_Hy-+LJBx(#b5Jmv1KB`299#%RHU1nEyuiK&<+udCBUC(c%L1NlOm(?{n_ z*fH&H+sab5X^owC7da?KynVLa{5)knyDZxBN*C3jTq`KtG@5veZ@8?#G}PTDb7Qz^ zC#BYx?hDSJj62m$kBJbUFNU|)tIaHW>;+~x^~R)VLOo8g4BnVjf`Y=8ty?4~#XaCA4lIqamRO8nCvhhVi?D&KKW_2IXw|S4wJ0{ZX z@C|?@qdpAN7>hSCyG>io9fw<1AlObSNKUPmVw3#K?8jj|hc)lsJ>fMy2!iJ&*uy;V zstgN78x*z-qyiwXB$HREkC$+R7NkB8^)?3es7$_IV*D~k+v?w)pv%2@(RYMHhWBLi zYCC@>4povaq68nyKQ=v_Sy)^$YU$&`QQ$Fs_Y2w$gy&m5N^JszBqXc`bvPY0YIq`; zKS7Halxr+10T+E|Q%9mtjMS|$L+-!cW=i=U3g`E*sy!PC9f*|sdMaE8!P~>vSdQ%S zWj5Hlv~Q_v-^{I0(Y|WRoO`hoDhd;Bw*YejAWJa0=(~u`?bM1oLeF2=Y{?CGoZp=xI_no+wE`R*G%t}~Vm$_MaRQ=nHqC}BxRzI%w-&sstc~$s z0+mQ#MVm!v_7)bW><3$-_uBdVi19Q3B#-(GExkBlt=W`@6^jCiW8#zl@>lihL29qg zpv(KIuW2U&^o%y?6IX!s2FfF5;^Q_s#_O|Vh$2WsAa>$K_cED1|8k$ z8R~UeKXB==y+Hq26O`p3ci5SCxhNl}t~?W@sks6RA|Z&l0AWH=;O(GXo`_<2_!33{=C~tue<_YQY=_xlgHVmE@QZNnw9X>^G<+i}yF z(YAi|8DSx3{@qS5tkJy*+WU0%&#<_uJ^Ua_mWl7f9M?{^TY`INNsq@N23~{(OBxqx zLEmKW$-hfLx(-St&N2o2N7G<`RfX|gJm)S(sVlrUBncRb8i>WPCkQ&Lq7UE-U2KuW z+G#I>?qzRye{m0B*J}ERn0;2&dQPpB*L718OhV25{6-L*|K)d$k9>>%b&r)l^$RKS zE%W{HlRa<0jKqFzTYK`Nq=Vz^s+X<@@ZXYFC7IR>lp!RWt?ob;QhhoH<4-nb@^Ud6 z6`CQN(8s|~OG8?17K>P{wf#t%x zPVPyE(&Wu8bQjBkXYwJh52nHFA*pV;w6LSgz~=aOikeCAQd6+t;%J}0aiam?++j*B zfpEpw2Thlz`~bFwqXtDPMA8<*``;`HJ=4RPZb)4fyP2Nb@zN1Jx1B9PS{7yREKn(8 zXsk6$?x){fM4EMb^Q1||j}sGFB&mQ`OT9!Kjk^o&J7E5_{zX;H69UjY-MvQ%#FzYBut>+I3e z3~YS=U7t?j$Z#L~?Q!^9f&bKLNZ0+)T=#n!;#7m;Bxy5$VmT-q8^P#ok2TW!6z+{pd!8I3>s&;*L2>wkPWn?XbSkUcxF{*rHX< zTbc0ky#gX%cf^t1-NEg;LZaJt`|AFP+BJc1_vg;nKGjecZeNZyl)7Xmn6TbX{Zk%78%J}#5 z@ekw2Cn52B9ozaIYdWvyQ+z88VZ+%L7QQgs0|L>!jk3g5NGOW!9h&-#W*}fE2P%D} z@*U?EQlv0p0g@>D$Z5`yXgWi`cnUN@(4;)}tz+8HRMHh4%#>R;@!$2ZEOK1?9e}R} z|Ka1)#SjbJNvUIEKK~`o{7M^^WVGthgmBxTEJbUDTql74zkaz^F`s^+qH)7n%MQ#2 z%?s@SV|8~hpW%o$Y#SCUb*}=>U0k(zT|}NdxV1j!g*-+{Gl`#gC9}4QE~E7CgF7S# zzFZmj*c>LMkDA@HoF!9`4l23FQaW7cjPz{}HM&L9ISc>j#)#H=iV)Fn;#>>|e@u0h z5H!24EBje-irzIbM$t3Ra-uVMaX3C67Q02R4!iG6G7rWXUr+BO?|2lUb8ly9R1N4s zq2D#q$X-BAKIge=(oo(kl#F_cddof3o&jOZ=ne`^;P4x~7fD{D4|n_4O@Tm#u1x^p zuexwMI_8TbzRuFX`-*uV-@I$Fu>PyOeWcd4nzFEo$iNYQ-9^Yv@LU32LD^i(b*TPK)-+{_D;|@=sLZM0a#VJZc`rdm+_TaNF5IR#Cj2M(rD*06{{f5E1LU0UURpJhK;|cs5iFgeJMHU;6c+c0)+njEF zov^%+$FRHHmWHZg-o1g;i+Yz7-e}s>^gb7@m=UJpF~$-%Y9wh z8@XRKYac$L`MUV$=$1eZB?j!uHsyZuN{aO_zK50A+T8~AN8M~XLtCK zo?MyO#17VNh*D3gI5Mcr?u3+LmUPXnoR2OmDny~?>|*XU#{&Q5!<)krj#TSw|^OOc~#ui7=aDdOOgaF zc=fNAQISM#oH%NuntJ**TMd<%#yxP6tD3N=p;s=VSIzhH?9qjpxMI_7_2W~bFjC{v zb_os5x9W^NM7ZC!pFXvZu3oZ<8m(F$(!b2)^oy zklMU<4Sc4D-z+9>xi5t~y3K6<+8Khu+Bb@Z8keU(&*m)_(*J zZz4}_witG$e?;hgK@P6${;WIl(y;%2xPA$LPOc87vv^KoDX#W>cF&3R^5o>S(sDxc zOnF)%FXF~8 zx^Lhq@&)zT9nbv8;@*EpW0IQk@Ve9_1NS(T`v{WW#qu119tSdGzWuZRj z_&=oBdshAZBz3=_Odj6?pE5WfjYwf-r! z`zDThkK6w(9g!yb@#gR@&xK1@HpsL*=p%@x;t4^fnz@)I-J?(+iEvGw-5Y8v7h0Vu znvg~1$OS*3m5eaz#F3zPe)>+$o#jOGhdND5Ahq7MFZ;nB$j!~V?R%)0eD`% z5{byklomB(%60y^^T5+&9BQ;}xHc7c8L>*TEE3as3IGG@s906gxqdHZtQQhnv{GI0wj(Q!6c-yG$kQobS zE#Gk6(T3g6lWCAZMAbSb8gFB1QVOf-zYbfyd$e0a=o}PBK$ZtzslY_LKaxI{9 z%fg0p@Xv~^plubrz>rb@SJa@p?&iDrJpU5+ZL0f=7a22Y=-b&?OIx3;aOU%ge$F|Z zN_`+x_TAO_@S{kXRn{e1*tmLqJ^=OaZzZs^ zyNKwGgx;O76xK!Asn9(x7N?C&%qkeV0Xt{J7nn2X`mv+9{{e?qyD_!qhq z(z&I7PS()TiIw>xOtDg%V;%@);8Av4O9If`$lDeBV~IM2JwoBMC58w}`L6-aB9x#% zklz%}s`fdahNAc_#Aw#fI!h(E!|AB@27R=Ny`pP8drU1Z*#fyrFgK(limS6HOB~|@ zs!BULCvXJSRVQjzoF)uO&4~MKRtKN~nUpkuVs@>+SxV`_(@YA0$tf(7bc(k8+5&ra zRr)F9sCQ|i#f|p!?=k&`{63j6_IuRP`|qG1nk`5!2Iq4W^H_{=Tq4xEJm44@kxOkgo%m}1SQ-1(NJLY>aE z{aV(w%|?K0R%G_-5A^G&ONqj_V?(d%&$_EEzXt0U*O!m(qIcO_M{=$A>x!wq#jbEP zK%*{)qCTUMF?l_{=A#+iQptJQpUQ`b z(pRj|Rl>k+n{Q{&#&m}l?jc3H(-Y+IdtC^-w_4Jw5Aad81n{=wSa+~e{mW2)8){o|I)>+s1VB_mm8;88fbh9OZnQmwUX~P;)uJR;#&D9l4pK&szvp!&0 zLlGqybBmI-;$whv7v;VcWvKZA#y_FTYtgjU1<}m%MoP|suYY7OM?j7?)zACqGUrfA z+cT}4r$C+Wkw1G=+9*(KU_o3SMdv&`;GTlq#CS2_!-YAeVWj8Lo8PvH>FAJb|)m zf{~n(q)-Sk)>j|(%I)8R(zp)O(#rc;=!M;~F41BZ$xQ`w)^nn0%L6@tq3FYEqh)_?3aWHbVu{N})VMYJ z5}DMk{h}5;Xwn<7#VJi^Gj}CZJ2)Dif6P@mUMf3x#+$lAW=L>)S}!XmKe)O~9FMf$Acl8e9F znlq9bSOmJfB885DO{zB%Kgy!KUc1A4Sa@5+JJRKE*~WX}2eD*tvE|$p%fT1i3PsnZ zvn)|zEJ-}Fo7bT*U>A>1zd5iJ_FRUAfQ^v3q9;YMw1y!SNS8NJ>PMhfjM$Dp&i?`_ zK-Rx1$vRtj@+|O4L;J(aR=m8Am51%W{1AQXL-PHF4W(xV2aY{IwBIzM*NB}J34G+~P3mR~hiMWu5SaCbfRRu|I*lOWn2bfD$F4>S7-3)sHh`=Qpwtth zkvWI>di51!xr_IO;13A%Blm?)5--j?9*+UvQgqUw6}IKn51DGIsq^3%Z$cI6(cv=a z;rsV#pMA={toz-kr6iwLQO}OgI^orW%eS&UjOL>mie6uw7m{zKDpX|k<-cg*q92E22U`$QZsCpIbz6JNs#9ud8 z?=!m6b6v?Oj~-qhDY)ZPUgDUW#^($4Hb(oY5EmVqzZ1UF0Jm0twFy4-P*D3U&NYA7 zvz^IZjHh|m*T0R4cvscEiG_Ec;p_R^`ihS_!S)|xJ;m#|5B!T> z{M&x{g`TYa2cKWqxr?a#BySFA+B4$XsHS}mS4TGOt@4fYfx9Z>!=cd~rMNa@YRjtkZXsG1 z|NV8kyK3O(=&XG$T)G}|*SEYqDEX+oT@AiF-hG$mE9d3z%i|4wTS~n?)pD2YrSlB; zW$i<9-AFKC08hbrey7W!tb%FJFe zfcF_(yd?HHoBh{+{`0T@B~QQqP2Rn)vWMNx_AT0VI+5q)y^}gmx$jBy^z-4EV+(53 zoiyPl#?A$-wNmzG8#YQ8_I9V`iNGkBEmUeW!q)=GRH{8RP^@J~M9`**eJ#6 zSj+iD?n^J*`62jx5a)BJ18+PGv|O!)Ekk;qN*2gW6dY!c`QRsF8gs|&NOfe zE(5WmKmy^F+H`Gkv7>^KxvR^#5}9tn;AUo~A7AdR;7ewjZCKRYI-~u0k{t6sw7t#q zY3nxR017qLNJLBNoxo2Kaw;eBd_j+-72Z(Eg%``+)4&s>Rxb1s@k50<)b9N#S6 z!LKI`-$M$+$@FN?fX2-_#~q&iWbqn14ofPZ>6LAZ#99N5-~jb{vZu$zUg3YARqdfpo*w__V{D!_F5bV$-e&q({7V_%1Q`B2 zxH$R~@Z#uefN``v#Fzoiyl7O18_^1SfMSqSnsvQx)0=Lp2^w~1OxoxRc7u;RXvjGV zkh`l9!$=jA6GX@ZxfOE)y1+nZlCK=p=ySWRcpG9I{bzt&{{Y1GD}d{J;O*uBOu7SZ zOcb=?(eAhlifnBX%!&edE?N779!vJN3%*hLS*Noa7ZII0y4bU;?aZa1PBPPXSw*4< z+n~CZp#y|j-Ll~NcL&!{)5;0I*?`ZL?BP9sY>#hH%AC$8$uMd7s7_!!=`+G$RM49x zh4IdA6zcqpvbyF-Gyd}UKpCvt@v0~B zo2KeJJZ-rJIojoaQ{Q{4f*%F>JI(h@#~HwP88FoARm>oiq=*6s)5@@-=>~Mi)+jcJ z##YBvjP(a>lp(A2s5h6p%%ob+7^{nC-G!8yNS98DXto%q&3qNm5nIVxQQU&}TMYOo z!S$W6sK0e$^sHeI?DOyTu=?p*9&bA3h~D*t9tMe1a4;dDVr>umF( zH05gDlv(CjaKkz zbhE2HR>^MA5|^D9lyLB*3E0jOmO9$sqGoWMqRWAhTM>GL*Rt ztX+x;kZ`;n>%(jc6B|BH>YW&H(~(_(R3qEyAlD_nJ1AxzQbNqFnb1?+{PrLRPMqPW zdDRQh7oq&5<{9RvKicE$>27HBq=}O+3t<##>t0xiU4QI4V`Vu<#IYFown|$Q8Ag_U zl~87BURdGW$N+q;Kh{Za$>IP+Q)jEQ&_}`1w@hdJK2jsI`0k0SXBB5! zp9|f2_2=gZx852Nbp%EL0zu@`wq;_Q?T+-wNGXTVmI`ENsJ%K=_#n_=HegUCva67`fg^gbeyTZDs|^JUo9=CIE_nd zZ3(o!iAE4Joq4BRE`4r$Q0pL8b$`aN2!W)aR!LMk0Kvq7A}ghh0CWu#*e%EeP3Hze z?i_mSY=r+vn|*lv-$HI)MsfbF)IMowKAw3z?oR8TRef64G^^z13A6P$g9f!49M6$~ zA`cI}A3)`9(790axffKepQ!U3N zXiZ_-(JN-K3p97ga!C=Sav*Lb8l%KzEqWk1FDs5^gpa8GrYXo4fZs^&w@yJmt9YXJ zb5oFL;M(?XN}(}hi*=f)RmM2s$f73b9y|xSTEr|loQfooAcev3G>Ic1j*i3-o14qM zW!D3+#*An^8>`jmxR(N@M%|Bw#osdp`MZhzPFMV-;fdByxnkoaWJg=fX}}A3A|358 zo*{Hw5n$Z8G$Zc@lYPy34#8uq(@0?5?L<3~e4)#0 zAF=u^uK4>&ZC-PAts|h9xgH;HF$(|n;-lQoguax1X7h5;Z{>Ahvd1Np-nv#re2ETl ztU$uZUvq}4+Ss7%alo*Ex!wY%RAnJ?gnu++K%YWHF(tHBh!ls#VsjLBmN&?;B4QVT zp|3aj#~(d@h%VX@T{qV>BL|GYE!|t#676S>pU3uE_8Hmsx8Dlu0PK?R3{TT#EijiX z$*jR1wUKu!Em+YC-7To}RJt<`4+0dW!kXm{zzpV5Vdd4Hf}A3HXdP&Id@79)Dysc) zeALJ3=wo1i@`CrnE8Ug5FP!E^e_&@DdHFj3b(OwxNwjhX3Emj67^V+1j377ejD2Qe~w;D}x!Fvh^rnR?fIoZR=yR{0!vJ|FX)*)GpWm zDzo4kB-<^VQvb_{L%?vfz`sJ}-+2;8d7S+d`Za{+#WA@3A<5v}Ebe9WBKeWhOR3)q z?7*qMz)8X$TWh&@a4TekA2W8hNuz85#~Xj-i=G#t=kN#}5o}%SUcn+`JsVA@3K9^2 zlT~6hHHYfKMc3t0SfTtVlgf|3CHd`~USRo!q?%#ueb7wFGY5C{9aoaiq+XT!t-ubX z&LM))X1Tl-eYl6h$$<#xIp)m-*h$C!c!YW|R4qeW7t>sYojDFKa#6$y%qBOo9V0oY zE^H}4VZogwh*~TUfOPZA%scUW)uX%%;HyriD}dLco9Tk zH{->;Fgz6lqB?>#E96Imz{!}*)MG#8wWKHO=8lL+K~7f8GTpNrmKswe7C@F0c7tk& zk9b!~KlXJ$>4MGkXidvqEqd;R!8e`hORN0z$14;3<3@M;PFwpuE%c#1p3T9H_6@z6 zQ+CZJ@^jmIdd7Dx3%_s3{4Dsvt{w&vc*ha5n+{A#nhwxty%sh~3UkHChWBtO;`349 z2(v1mpvq}FQFEsbY&Fb*YHFZT%&dig1*QjSn$a8!4u+W;C185M9pCs;ZtWL?jXxho zQvWe?xH#-*V1J>%z8(?Y80p_-5>IlQX!vPVNpv)b+{M?s>EI;tDK^kY+wnoOi}1wn z*<}&e)~2^LPY}e%x@F)+*pqzG@O@I>!J=td0xOC7($DK~TY(e>+c{z5&|>&?gLoRO zG#2qD3`{EX^Z3(*1mVTnC zS%G|crVn+rG08J0+hBT14#48bAPZ0_CziZiF;llTC@6(hi6p9=PYoqlg$Fo76dewf z6)E$hAkxN?Y-1Fz%ms5^4kQ9C*Nhi_$;J#VGy_9x(^@p<^EzXIb?yxMWzt?n-`JmR z7X3sse9bo7gm!;ky297hyu5$Z!b_IBvx3(;9w>RvCyU)1@)4gmqug-JP`hP4&9mII z`^XywO()eJw7IRi>?5Me8wK?i2g%+_Yl4|0bHUJjjVk0yki>dKKu#XyM+T;fSl$7Z z6zdQ;@s~451`;YTra04sm00C$Y#$RWPz^SU{qeBpS3!I;|G*8L@7v|&eJw!$y3}ul zcR+kHcecCbeB%;0cJe%)1+w1a0LH@|QHHDz()P$X%E+FP5!0^Jf+kk!Jn~M+(cBlr z2HO^Nb~0>Kqm#%XM2ch}`ir~pT|HluA5F_Lt-a$P&>KhpqHbJf#@X1Cev^R3c=!kU zCOzbbX&=aYTH)XmAC+I-!J``}vzr5hCPm*JvH1-xK>xbbZ-sX-ll@jv9em;pnPSL= z=vwn-upTG*hDklIP%XgsroaIakVREs83CjxfQQI2dE6eCsYs$*nGQ{sEDE6vdP=lG z=gWHh^@e#T>eps&@_ScD;{_j&+fK7f{8vYQZk7v*;X%8A^}I(PoF$mx1n=Vm zSc%kqUY^Dh2oZ~zg|;5F9j*__Hq~%h)C4WW4iu~96fKddOl^5C8uQhwRf^w5_cst9JS*`mMEQa#vRLLL!fTM*B zl>mnMzN-3$psofbsaG89AA0-q&{!+b5E>>0SSkeQ8_6&8gzx3E`GRBn9CO!B^+tO^ z?@I!ATh$YZPiOiUEgh&d$8c5;H)Sy57qjCtNoe~*A(iMWv#7q z$=s~Q0UYy0%&;{-c4p#EwMgDb=EY3Q8AjCsIx+8>fcgn1H`@XHMQ{H?5zv2G?q4)? z0CBsqxNu`a+(C(IZ^Re%DC^D8$<*X!OrdQcbvBcv9!*)#k)bSij7boU#SzJYtafrF zZpY(vFQPVEUn1t^VYZ)Pz{gXw9oxgpjuCl!)p#Y14y%12 zr#3q(H=gU5LuX>|`QGf9?(KyUp46ob6j1=qmhKe4E9+dt}XF^cMu_jT*PrE;hasm0 z0dYKO#AddcFC&31k;sy#kxPYZeKRGOwLbh>4oRcgaz#G}p?^M(df%Og_^7k~qcOs6 z<{jBZ90xg2nR*l2-gNV?()M;{>6QFuuIh5szliKW6F}=2F9(UUNDz_9*NldaXq2jw zG0Ff*kPTOROkpkQz@UhS+1Ta`Z_h|in5VhW$)fx*v|j~qnu5_L0lX@lEs>jfY`cQ| z10tHxzD*zeuYbZ|o5}0i37s)$>kS%Pykr^1&!dsSFmmA+%trGZ@ zr3|&E0N7hN(Wx+2RB#xe^4^&yxQ3$`N@4L~iqoZE+Xc?cc)72r5;@rrV;Q1g(mk;b?44n+eY=VY))=vs z8OFl6K*rN0sp* zQBD$Z#{0>3E~NpZQv8ZTyvfXQtrcuX3vus5IEI!gahzgCuMCE<#P)VURII51e{wQ$ z!^_@wPpbHS1_NITbuag?KhDX&S|9!6f<=>Yvp)78@qBL=ffllN>%E*f46?FsXomC9 zi-T{MkYdAsD~PynCFut=Xj8UddVT0K+Y7wl`NgH{M|j^qyjqm#YFkf&n?;|;p<3-`qQbdjNoL_GY$#x!v$%uyoXYRX%c+d3Tb5ko!j2Gj z2$vwVxJ~Wxj-K0dbT#YIf%dU;_&Ea*`hfkQd(8I$y_Mer7`YGMXTh!OZRcRS0E_#o zNNMxjux!1e*Bkw?=M_y|?vDJ(SP2uLn0e8W+RcFd;gFLft2Z2NY9O8IBs;2SNdTp8 zqA_fQbLk`+v#eY1zZR%mZN7uI6L@#DjB^lDywQ{r*rA$$W%GJ3r=xM1=+3|d;zOW}*MyUlkSMMs!qaXUmv#fsNo&&g0i(Jdh zFaD8yBj~KmXtsrHFC*_=Ztum7tiZLMi z_@>k15H&o_S59Ox7{qc1VYw_9G7Ly4i-so>fTl2SG4atPeVRu$iiz2 z5RR912{Pgc0(eAM3LVlBfYE1|#zPR&lV`MT$@?97Bb5`D*pO*I8}9O@D!!zyWLMF4w15VWJF|SWKypp&m*>dPOWE7 z$I|_x$OI~pB?=q7)2lP&&qe=dFZWvtewrBkEd@XHF`fK)J-G=VL57M-2~Qp@WB~Ai zH%_5zcx)>VK#Q(YR_HidUN#s`?V3OjLZCBeiky3uQ06I0AW#@OoM#=^7-;duPDM?= z6^r!G_V$C}{QtmPUh`Vt@{$j^d!~Hmmky?rcNaI-#uU!%l&v6(1(G4iInv$EmS2Z48T+WtWpnmoc<{hHaZZyR{^%Md)N>Z?7x@oaP5Q!si&%yQP?IDOlgT)=QDq*TtO4<#)+t2J!X5mA_fa`T48g zA$jnF>wtCNJtqgb@_F;C*l6 zguca=;+%v;UgF%7^yl&Yk#>E%r;9gei+vYd+<|{rn18_AroboE;b|-V?ccm<`2!pM zT*mwd;TQ65&zA;AX3RHYv8PmZwGjT;YR zhLE+{nx}lb=l~Zgn2W2EkGa&JiJi7su;watV#+1H|~3nn*FBa}rai9I)4vQ`7&vyJapo@)<*X)}gX1dK2{ zZrA4oDNmAUQi&ckQ4;uWTfl%UH79)4x79w}!?I4CH|yxMAU{c2MiG3y+54#s|G>{i zM6Z*2Au$df7N|d&8U9)Ph1z>#GB!C38)s!{Q_i$=&JeVW`f#1kwEzuEd9%RCeY7Vy z-EsjhZCr0*Capa>J}^g^xo)2OMpC>l@zV@vT-pII%B;BSeQK= zfykeV42{OxbZwuG2*z-#V?$xyEIAa(12QKm$39S6y@}`3Y;}|j$uk4!@%&m(`AeL?)*7>%?`I*ix*fxo;lLOF!xupzE>2_MpyvXzI z-rOS3F9Fc?ul~=E9_jx1SDOCkFFDB%MfZWPz%Fx@7x=hIzj1MEP3{6m@Ng!B1vbyX z*||4l3?-!AUivO)rWEd)Y$6!(EZKF<9z?Tp;CP9d?-qSpFm6_6vNLxgwp?j~=!lsx zi?dc$GSw1ZixFSJ`8#_La7Mo%&s1vuApPcsZ>`B);0TdW z&N5`%lr&q0K{E&YX|@RmRoXTd#N-RmQgt>mWB*Whkl?NpdAldp>6y0|>q;>8&WPic z{=+y=qWBu54HKt~CxMfu`;Yc4Ty*l8!k<6)_>Pd@eLT7KJc6Wr#?Q|z z>2bD5XAM*cgjAbxsxINdm~XfSkWhj*|Asl1@oOfDw2_b1m9?D%^6L+yXEnR1IFi9g8qp-*Kz-pjsGb!|*;(ngSC zZKsq&P^w+e4!UVl&@g4W`OX5Tf+ESB=_gA8hw(MxHrULGxJ|OAhAG0XaUfU>5ndRf za9nE6I>fLbxnCtx^*~=8|*BF|(YOd(1Fyp;=fCq=Svgw)JVd1A( zhRcomkIlesmh zb_EJhuTE`k2>SZ81NS`8;n~^ncF^=Bp%mKG9gx?~?u^Aq%*_)hg}UJq*|X+`Mz#H( zODOv@JnJ`2{yjDCnfp6d-hTJM$v(H&=e_J36W7M%CT#=<)5Kn%1XkXj#TAWLz_Ha0 zE#>Rh^$gc7g8{GrGFIqPln70hqZ53bt9GYjtlh53tuwXL9krhq{eV}dM?+LKlZQvc zV+=-jfB6Wc+akeJo4bDyf5qv|F~3P10hND9RRw{t>L{0vmTK(gpn8qL>+WpVs3^6Z zQRy}>LiM2Gj2Yvq%_FvX1{fPTaBz9F1Du=UV#-oWur^`gv=Kn@GXm}(r;QJE_MI;%~Zi#p!)SR_d&Y zNr2rdq`SKEI0l!?txf#8{xDK~ZWqQc9bCcrel_}71Quj?MQI0bzo7i^yc)zq8%wI3 z_IZZHo87Qm>$^g(;A|bSUM2_g?TWG0KwF@02m7@YMg{7Zc~q`p*p(2E2|2PzlGZ!Ld_Vh)AoRIN|Hs($x0v4w zcb^Yu-t}<7{N2^PB6v(>g8_j`sD#2V8Gssg4120+xJ-7uDx52AYn)5n?>bZNGs09Z zrhaKVJzW*NdykpQDAraejs#SvhcrMi5`n(=5(Di2a^By6L;*Yrg*SGJ!^( z)HE#zdbibO7S1p8OOZpOifD*k?{XWlW-e3^d$c0_JvBrcTtC zDRX#up20|rCc)*tKGdV9j)3{OgRf}aE+){}b6|Mw1jFC}!z*dIsT_LnX`vFg_8E0k z5^YQOed z&s7n2W%lEV3!&R{t$vsFc>9w4Q4vpp3D zNwMFMu0jr7D@>!EG;jQs0V>sge$=KNoaa+v52S7PLMrX2(C~pW!Y?Ek-uH0bUGVPm zcE-Y(1Vbbhb+*_ii|VWi(K&Wbm^yD+W1~SLCX_7yD`3g5tG)j4*xWIwy=}dGkfVj3E6RK)`wG|5Z94G?A^e5V_bU2YwRd@$+(nJR=LB=gY_nJmd*8)f45lq`*OY4E zDUD`$m^@S0$5oe`gK0!oOzTpBQ2v>f2{!D*7Ars_kd{G5fxaTw@KN5NR7`)yr0y-8 z`0syyD$#kx-rZ-vx4nOl2Q~Q;1>ZWjG4btca+5oPk4i3u-PDDHNN=$4;vckA%W@U6 z8VKD|nRIR?TP%!vs&AH^sZ&G(gv@H`8jLm;6cm&Yr($7XUDGXmH?({#fPoV1)*;F_%PZd1Ui)y#ZhUbf`1&1FyNN!cvt2Zovg zU9ejh=hQ4rKb_n0=>&BlLrZLw6J(z^oUmd} zFL__qq$u~~{Z;yI-U*`qh|1z6B8sSh>^LzK!78ilYsAcFAJJN@>avTrx}S)N_eKFd zdEl3MGEXMwWNt#6pCpjEumXC?nI0s$bwD~0J)3txy_pMLnrssE#Q5LdxX^FmyO#y) zizI_RL_LY?KF`a}hY!0tf62(&K0}z>krB3Mps#yI?^zG%UytabpL#fR@BI06B{+a% zYX)l8C|9%9mOJ{U17V{h0U7COl7f4kC2CF5-8JhPnp9#N9Gn#Om={5DwDK$u3Q@}S z;RU#6T)Oer1Z$+puAF{P8@+!f*AA1jLvbo2!@io2k6_(xQ|o#3WVD5CK1;%L%SV{! zgz?!JpN>yS+`mS3&l94re5*gg(!2eh8GZM+;q144+@HA)Pmk4I&QJkZA?piHx+=qfppK`EY zX>^%4{AH9scGpLdKU^A)X*|+`n42bYIn5YM7wIG3o7IjWub4Y zQ(~E8pRL`gU6Tl*j*3QbwkJ^1bQw%sTNsPY+0H-Y(|-DpM(H?zU2Na=^@is4d^nWd zi8DNV{+a^@yZivY-qZea6vz!gvMMgwdqyrY*Iwdq9XUzJr*093@ zT?g}Vh=NJ#N^TmV?)D+y_Y0-;4`BJ+*&CS87lxx*No)6jZ4dEUq2{sck*v|k5#rX| zXfpNd$eaab3a>2cK#gi|D{t4Fxg)HE?p9L*f=nvjk704S-utsam+^(HqRixbp4mWU z_giZJR%v|Nswqkn4C8Cffa#@p-yo6$VU*qM#4 zO=kogEvr?uh3suHBjJ3S4o3>r5Edy0g=$5GvR%ntOc|+UYSXz5Z3D)s#YkmoX?f5D z+WK>Y?DAB(Z5CH3|0#H%d;Eaz^VQ+tZn@-O2y87TBr!IRr>QHpRx7m7#s*Zf1V~XW z7oTYCeWH zxi=5{MaxT*qkYTVM~0|p+cpYM|FYOT_i`4M=cC^ckKHsGn>oi+hUX&^NskVGuOG#a7OH5$S; zaZ(yc1ecnXS0j|#=VvlY!-yS_{{xohqHS#JeqPl-1lnsqePrw9csP8TaT>1?=j5zc zCBXwrUGGrMtcv-jsp73X+1kblDt6NtT;p^Xc{5zm)|`^Gb4S8V0-zh5g;67z0-cqM zKFtHN$bN5)%Krsh^7%YsK*LXr&{zMClYt0a{{1_X+qw_yBv~&Pw=Et~4>!;C*QNd3 z&5N-2#k~g0`b1^Z;J|?`GM_F-+#FY{H3S+#i>|UZj*n8|)MR6GV1+VW9Yg!AnZoft zN;aWW9JYoCki5j=2YK(8jI0NUr25>~k;K0z>kkO-jS>F(&#$(2z<;0Z!?$H9zMr@7 zPs&i7yeiD|;cyu;*=$p8c@pIa8^Lo{4pBwVHD^*ALOdmGHbA%_^9A$>qr0UeOUqe_ zwE2EMXBX;dYaNAZpYqFGs0 zemDGy9BR&9bvt@DS)|FtCGzc&6q@;}5JA=^D&jB|afp^U?HIXuGrDak-6chIY+XhG1oL=IO%Y-XwGCX{fF{BT*7SVjkIQOS zP{+)#s}AR;|B$VF*kk$NX5L}aW9zMMX}|Nzhpo6;sMu+9MtN1|=E$anR4d@H=B5h@ zUWU{uDivkUx2QT|Ont?V4n^78q;TBTq9&6?6XncG15&S;?llqItu>JqIr||uQDvMu-=8`P+$iAEl9tG6PZki#v}iOv5N78= z0BDr5#NlbQa?{A%IzO*TxLI#P%oS~i~cSDancK~vVZ7BZ2Z4} z|Dm6(A4U=D=flV@+}O&0^vU;a-Fg6IBfI?ZF3bA}EvL6JDT!-h z1Z8O>t$||&K%nD60-#FOV~?V;WMh{+!yK2D0Dyj0Q{LX4!+L@{a6Ct)IZ8saI2`li z?S{ezRA%`q|IVMtA*q|Do!qZ$(XWMnU?;*e)gI~V(PdHnkX;Czh8M1=kE5}?Y064i zOcopgu3A6>au$cScqw905b*=TZEeAM6O|MYp{CO2zBdqC}DTzKa(aG5FgqxXSyN|)-Z1LtVE8E1DR4p=|4 zcpyj5h3JK2=kKR0l>rRXW*P6$E7&(TEIA^!UalFjFZt_iO_C_S+I2W6MALa5;*4tu zfVtQu$GK&4;tYyulr8C*tI_iYp7FlnHu5Q3Vt3QEy( z1_6_esA<$Z-Rh%-Q^^N&v!fNJRkkNRWfrK_fawWAc+{?Ukfg%uPG86zT!*r#%U@5G zzgQ;r%Etd1STs?${POH6ycO&YW8J#%tV|y?9iR8ov*Gh!o~8qh3#--)Y|IiuQkgwP zCw09Tr`&X8v}7b4J0F`*TT5U@<&M!5ZyC`@gKTOk40n+eV0>MI6unsTsDzb9uFPX* zq$Z=U+3*XE_xu25;a#%sT}x+uEaPx|x1ivX_Y`^{*JYp0efBLze<+dl{@(A-9v)cL ze@pr@fqgq2yq&mF(?pHejI(r)r9NxCbb&eCk~#))3Pn+rkh8H8E{tfFF}wwm25$hX z)R~PialF_$CFT2c806k&%o~)^LT>Ex8{)HIj}${L+%v1qYHUMdzmS6qCBm#hY=I?^PbuBaaKwH5pY zUoG1xuQl|hXFEQ9gfTycmg~@u$1|p9KjGI43?Ixi`+@p}LGP{%PAxlKqoOr}(ozBW zBsLvJZdm5Iuk75WTE3O{A5(*NNoweISYv!9Obwt~pZMp+lvlBsVRfrOSDWNYq0-+LdrMYXDTX+6U zEjJRn(H8Ydw_VsZ+1hWReMxuo@4d9@3l%+Cww*lLX{m?L3K9B{HTrhiyO+%qV#+=xR{F4j5ZBC zb{i5UAj}PRVzL$XRI?}F1q955(@!RcpcADs#QJj&FJkci>eHoz0nz~B9EG>p z1mFlgs+oFXs05cxspXbs4h7h*sZoANM&J~gZ4^c%TOeg%e?M8tDzexeAW6l&$+VU0 zLbUZ2NG0>K?0#pc{l^DZ{`x4d;d(AAmHnT;XJzpHtw;iujKy7 z)a8}%3x}@ZlMA^4j7dv+uZE%^t+wMWH4`K?#^gHJrg^NN++&Pv86m=^B($BIB$iLu zQJq*G-?jX#0}ls!7w(j5f~G8M%o2+ZcM^H_ZGM9>UyiXaVa{zmmOh=6ZPX(}x)S&5pO1QZ|}T3t$1T^T6jP8!fG3Ga0M8(6KNqnR6sM?swK? zW0)imDPmj6GP(e}+#(I;BqO?ckjf(PsJ&W=8N`3BiGIPB(@i1r;#xN2=U7#Ej;f^u<%CT-b*Vraj>Muda_2a8lyVQUC^xvgnGAm&QS@1+6n z8oq)WyM5#K2PO*s`P+0u?-cZ-cNiCwWNuW~DIiGSI_swDLwD7d1cB39)|u`2t%RwbW3fX?ea#kUR|@jkcvqy_29Zh`n1%Zd zH*`mgbO!p))~_Ubthm(y{qatg^)SKzV3j-iBJ1Zh^%gbhKK1{dJsFG?25Tl{!9xKP zQoa(BfiW%2%#s`wfh9UOn1yi!2xvovyXdGJL~WR_kI0;x^EoY`apyCy2yVAYj(jH!#U33vLAKUmPo-A2ZnD@uLO;byJQ(2~L z9|aiO%%yRpE|O##Dw;+P#mJ)ogRL;aTw*H)#Di?eW)5~**K-D0n>ev^$o%b(0_bs@ zd-%4o-+w`EP_C=AU4Xc|dPnam@Gpqs2jLp|kCPVrE`rGn)YZw(=FT2TkV!QM8Bm&M zEH$9cHo8)?eZEtcpeC>pB(K0_l%Uke+wPQ<&BAm#!Tf{4@>bl?p3BqN8*g{Xw+NYhj@k4uIE&jGVbJgHcZ4nML-nt)N8lhQLB zKW~0&^Cma_2Y)rDr0dF__P#(1LEY75B$qX1IZ3{(Y&rj^OS8qM{@ZJbbb!RId`vT@QcijBV5OT=u*&kS52BSta?I2M z7aqA~h}iRq5Q2k9Q#?7IO}Vq}!YVXBMQ3LUCc3Q4B#DE5VPcTWes9!#nRTJb@x^sO zuPwa04c7L(b-A|2V?BDHdoP5q4cJHe?^xelYj=a~GH?UbvhZ;pqmvSLL6deTuPq_EIDIv?dP$K z`!Lhjc&CXUM7m)XUsOc2n?}8o2z*1l!TIL2cO}{ZWFpg$9gP>W0OaOIDq|Dt=%|N! zPG?I(9a4ww33keLpA>`TS;GbMNDg(NaFKC26r^c^u`@N;(ADrvY&f(JYMumiXkPf? zHr+(>Zt(u~u^j2w!$9>Nrzs)L^xJ9c*Kdy2{k^Tj75H(Y#&Q3jKEC&#|NPxE6I0V2 z(@4I4+S^_2bFOc6_4WESpYGZJCy)Pq1@`xcf96xl=IvwN4*&g@70;7*Oo%D83j&}9?(_q*q;o$pmdWi^s#=Opk- z=bQDp>#Mc&$iKRqWQFN}q1kJ$zA|+-L>o2J{Ow(+bWks8f@OMcn<;5o>`)7X1&SUD zE2XV)FsEiZw|D)$!R@P()VWhpgruNQ`}NY#7>acFCWzT9a3uG={;pC5PTfw|#?O+S zj9NX^_E4m2W>l+*H?e}c=kgZ5Vm13Re(8QZBxZDn`IdN#_w9u?d9cfJ-GbJ2n>=#F zc~Mj&U?Q z+b}(?r`AT7-mB&Ost+Gk=QZ`{BYF4bbg^GefeF?vvE+fs-&(}`?>lZ04|!wtExE1) z*Q~dH`&aBwB<9*twdT3(De2QzuJ~)_?x)Xqm!XI2J-nmYD?yXBZx2WqQt5&3(FNuw zr?IhdiMb0*fIKhwf7G0~BukZCCHN$Hr&D&ZX$TJBgM_)ckU_N1663iiu$+CckPXKQqrJUE#xcE>@Em?xOZg|_SX;h?c#+;{rAQ41L|8aVD{C)VBU`XSz~gZ(3P8+t9mYt!(0;IDuAgZjI#`F$Ti ze*5iD)ZI(VdKaQi;J7{L;T;$Bh8tp^G4!6}fe9r5-z?WIcWJjr>Dw_r=3)ZMr$y6pRxe%sf)7ep&0j@kDmQ*f; zzLBNllcNZ6F(UFEpKVVAf4uj&MYXSnGc_D3=xTaO`0x4h{m6c8ytbQCT5<297uuVU zzmWgG1Gh=+@$~3g3;INSUfN#%+vhzMp__YpV8Je@HzO$l=;=J}JzhiL6a z%%pvo@%^;0Y*{LgNVJdlBZSteNna(=Wl*NWVd;)e%Zxi&BR@gpLI2pd4_O%h$i@3( zG5Wt35J&b@UF&_BjRC#pQr;79S$}(>UHj|eQX;;f?|5*#*yF@`2~n!`vGx7+YR`o3#Xb{n zWZz}Z)H?T?a9ABdeSE}OgA$n~@nC};kY;ZJ8BY2R{$t!*WTpa0C#!S?rC8l&5`|n{5uJo3Beb zb?4S1)5UBHbGFu3sc8f_mFl3i%ewfat{t1Og7*|7@ueX9`(VS+UEem8E@2sy0#Zk7n z#__VTq)dVI{q^kodE_4z|9Bc>Lto2FRN8==)27aKfe#WvLR}0_wS%e7YxD1Dj0Fo& z#CamGSb^un^U7qagPZNA%4V*yBph@7nMaNi5!#31p2ARSX2566#)gVFQSvcz{@I4o zAKfGW-s~s$Sh9Q8>o>Rr(jJ-(v>?fvtT@e{boHUz-i35;J5qypcm6xMPg#Z3s`3Th z@<6@cd%V(X33p)PAnnJVNkEc+2ffnns0*65$7RejG|5 zR?36X%#w6_z+(kZJ=qW=2*`hV&L<^?C{)sXwIyJENIqriPbi3Gtn8xy+Z&;03dxYvwt zoO@yy+;Ow(0BLE~L!{6xyaW2_*$>R`Ev4~_cY zbh}fRejeaz76&KLI#k|fJ7X-jKO!jYG#>7CYPDZ1)fpReiy!Ge_eS)7it?MNKhs37 zmRrJY}a_`7oKt8z@K3sj&2y;MrS91RJP*k7UqLpr<*x4#(obAk>sP zc_XeE2DvWp)s>#nu!GD3OQH*8SqAI%NuK`Hf%@MSeD@1$_$7zdZOmUc?(D>Fg8&Ct z_+&R_wkaR>u_LK!v0Y75%g956-`Y_=$t_~CnFxVrPrWTJlv8v?uRM0)k1cwjX=mBN zX8VbhP|1KW3lMvy*5N5c_ZsvGR_H5J=ndr>w41YDORxia{@$tV6Ea#-XWE7{0uC2ucMb8Z1BQIbwAeI=UGxKBH7%0wi6#sK?! z3I0M`=z9GY(R=6O7tNby1pG{}Z)UG2EPE+P_(ry|Zm)+uxMPSg45!0nRPIj#cyw2+ zMvqtG6d6alA7(7N*smS0Z_}qS!8_pqn<#t$_J?A*$Q3Q|(ET>E7o+5;KaH9k1OrkU#Jx!4N5}Qb_#YZm!*}KB=bT)oPaPO%%NZns)=jkqjd+?}9 zwkGujVAHs~n-_SVuFZTOdsS=>G(;?_Ju(i&ElWXzF%Cm^t|>94j%SC{Y{wnNxCC4Y zH|J2yZ3}TUrptu+kzM-Rs@Yp&Q8$@vaCmC`ATO@9wM5@gj@zoSE&&gPOkH3OZK_)6 z7@^9}E`FL+P-$$HVS-CrM;*_Ug0qA?5%+Xm7|r2ARNX4&Tt(Z7c0mn z9e^M?`DcwiFU!I2iP^-ffr_r``;vX$`?}}{9=w#{c|*Hp&Btl)LbC&hmgWK>dHk>= zQDCtIPE{Q2-NPO>w!E(c)-aq53uH3X&c{g8cbf=5o+@t|^#kC%24i$v8`1l&Se8?M)Z<^OafhQ`ld`VPnKU^}7LU*z?MSjFR2u4&q zI+QO4K%E z?)edq*7x*jbt8<#6LdTw9em$}<*DM5#Ox3xhP9qX1PJgW0FQZ*Bm;CuwYrWo%$wWp zZk=E@zTqi&vyL6onFLusTgfaC4goK3;px|_knd)@XG`(MP(0fS*NWqd4XD|(tR|;R z+yAfQa$-GlII*g8*Cy8U5wqo+y(Vn0V}3M_w{1wrJ9yu;L5hHmly{@p4q*$?DR5^E z6^a~SQD{d=$6Rd;H<>k;^Z>`UGvm*U_zjV|kGoXp;f36fKvhNUbq}wSUZP%3n%qm3?& z8Ls~$2~(eXctO9w)BgCw$wqCadBGNZPDD z$AQ+-%5YP5uIFio444)MT8R6j3D>>el!g6|zS1dkEjsl@EpIxtu&*I3;HTfJCoSdQ zUn?gMTJb9*B6qY4xw$>B91UUFKDmgtxRo?B1@$LuHKK-G5Ky!iZJQ`G7nbZqK@JPl z_rz47;Dg}0OP^Nf#()G!wig(aCXcoeV`jo_X-LX_XYwOY|Pe9!Fny_@Y=4$ zXFNRro)=NST9wEjgsNM_ zDp8%esPz1{VIcE%E(9oHv~+`OCw+hIqdSDkaBbb0o6JBoyAe}s!RZ}*8@VWymEZIt zs}(Z6kUc_oIjp?Rmu~_pH;2;$%MD>yyaChn_lS_j|Mj?nbgYIWW$=2~5*W?EtMEluq+K z(lhpPyVdM1JSf=BiD<0#EZ-CdYzLU{)1S4vyb;nL6c5*6;BS|+KGXiAUC!VBW>qox zf9!Amb~gXboz35#<}=^wVfWk3tSYKM_ELWPn5V~n)71Q5_?VX_XfIR(s#kh-L;E94 zUY<5iG%N6@#hYrlXI!GUmxk0pTl4xRB*W&Ywd-dHQ+n<;REm6@xhflkKN`( zyl^hyI?lxh;ldbPPs-iTt2h^gxbNA!O^?pR{#GB%+EdEr6c*SX+(naI2c#uT)*cY~ z1gP~KP3J+hPtZL(6+};)BqEHa9?i=Ot+nHPrr)()CZ5$wV7t_}eTokHCtk;KJ`pXD zDGwSYnF^@%hiX1r5DY?a182V_K+HxbW_JwXR zUDt6GIbQ|u4AR%qT<){^TH$L24sIxa$aT4&Cs;9v&<8|@WK&L&WsBUzd(6gqsi^`= z1`rXpPbTBx&_QiKYZCHA*;wLX$IR0SqRt^G?>mD4nv?D}6*fzF=w@cV7?L9$S?ssM$*w%8? zUdU*y9v}-7cF`_f56oREZY=;|P4eJISYO`ukx^#xLu@!~dtY0Fubk0xpNp!~-qWkU z#JJ`@V;8a?;6~N=7)ynK>JMpSvmTEQG)wF?hy?B2$F>Jp;%19HPgn$>FEneia+I|v z(Rpu`h{ zi~r@eIaL(9NgMbwKP)qhgL8H~SLR&-@1R)NRznDwZ`)lG)#7%_EntG_`nrg=X@8iL ze0$M83~XBD;_Z^NFyk=Cs8&E|>RPD~B>qZHt5;vBa@lM2r6DNtm1>}QCR;>bPDhOs zr3#RSFwM6&%>{rs0zWi#HU+iVWY%&B_oSJNG*uT;By+wGDe^cP;Yy-$bA7i#Az?fs z5gxGy;A)i$*q&Xr4&IK~XLRzTiR}Lz-|Oh!HjUGe^{`LVA7%QeYk5{6N0&PuOKwcZ zKfBlk2=|#rPM9<E*_GLRQ}PS(fSfHp5AxkEDC_^P7qSAm=D! z=lh_COx&R1%BM`;Pny$4q4n`9_t#?i(wFf#4m@OQde$x}O3)nr5}rH*c@^ZU3h)mQ zE89Y!rwrf7xx2{i-G{df`dmv|_aaeMORj{EdU8E(oTydMlqRS;>t>fHJ+UZ396%#TUALlWfNv0BliGkdABnic4LS_IT(y@gcoM(_&+SZVMNG{pvKRw| z^K!?Js@Q|b8Fj4k<`$~#IE~{BQ+tW;y_{Bs_e!@kL+9hN&Iql5E(v=~W>8W_v4TJL z2b0ODox`(v-v^-%%>b0iwAxm#12Y>r(2_LJwnok!)Z@nSZNj5laLTRz$3x*F~ADr_H2(4Fh11g8f&p23a7uIc)v2Hcd@&d2I~~g z!)r8=y?sIn@W*N6mU0EC!w8acGaP^mTAUfKr_NdgIs`YKwninA>?r8creuLOB%sSX z`A(hX!ib4g*ogFl)uMUQMn%c!8J#1iR@p4`3@!W`>Tg6<{=K8lcf#&W`k zp57lNZ1>LdCutX_lC7&8_203rgxRZ8U`N#Ir4$ zHrvwNN+ppPrfQvq^P9597tRD)r)cIvwuI(%*eFR=z@`_%kuhNxn7>rF1~hhgml_+o zFx!iSrkfejvIGXz6-WSE2{q=)F4vwDxugl*Tu|DXNFU(AcDppU9ecWpq~)%U*6Jx$?{H(loFe?6C#dQUrp|Mfh_FM8%_Rv4TwWAzmOkM={1 z@#Cw0Pm1(Im5CM-G+CE`*ku~Gyt9YxlMbG3W0tg}A*k$v`?CQx@;ROXm_ZxuSQ@lYg zc03-6Hn5Stb`rnB`%Z!00`ACB=>Wdzx?9eak6v>N2J5&xH%}9SW8T&r&!!CL7{Hxnky;u_5DmmmySJGW;>dT1RjGH>w_pYx!H1i$Om1D0@q1oW&@R5E&C#|30mYL zWx%f!W4@HWs~p+F_pgdHr|Z# z#}|+NQ2&7I5=y@UU7b5sS2vEhMS)fHM|f!&pg%jcW1(vC$#V^~+*X&4rrF-UAd0e?awVx!C zhBP%7;!va=>_Mf#Dqf446G!v^)5~+YB!RfS@ClQX4NV7>Z z9g~T{rW!59+;6ry1(1zt*FJQEm`Y}muXTo$Zx851lLD*hGXf58JYfPvEPyTqcBTQn z5MO_dsJy20e8-owyE?l6yF%tyRmi;L-0#wuZ-I7efdkFzHd8y@9k<{9Zf4}md?@f ze;JIaqF-ZXC_&6@g*mW1Y;LiP+%e0|y4jfzkzTXoL@=V7Hcwc6-B;Nq-$LS{Fxs*tKWjNBz(oR?0t(= z9BDj#NOZE~uxX}tOB)SSJ@1NpNL~!2kzm8YbfyDMmOhMV1H=uzH6L^^CiLxi-Q``J zn}G|$J1k{Io+|!sm-X@)4{$$HLn~?oj%<1V%ifhWsj4mMzhazMt{VYSxN&bsqlhD* z;)D+;f_a`tdAPs5!J*2k(vo7I=;)3(4;2N734WO?b7ihvne9uX_&;uQkdLWWR+Y5k zsc(bqQ=Pn0?rkq?-vqdE&Q$$~M|onOitn1#HcJ`2(LLLx>v8)`tOj>e1Q>O;QUd4u z8O_dMl>h_WCpVyO=My!ajF(&C1c8vW(N4=9I@?SrnZ@Y}l79SNw~ny}Rwwk@D*;g73FO&x_v{A08wa3ZWsi zgG32W&u+*sQuclm{6(0gC~8MawY*-=3S!SvT%&kvx7q*X@02$SNqAxTpU}Cr(f!AA zIjIPRq-|HR=tz$h<96qlR!RAFFF^0(np`E_mwv@^WWRm)bJ?^cl$5t*#459^|M3RD zG-R>*zTM#S>QEfn#%=c#^cl3G98{N}@*n>>=YBuj9QCT>=p#Y+uYXsoGf?Ya(3w@& zJxS~iO^v_!5 za@fXe&fKKf%n~kC7b{G?8$muRYp%|A^QMW;;r}z?@kFry7BIAC~Kj2#}OL>46 z51|SUL294LvBSjbvWH`X`4qry<+aIpAx~c<_AlZ?_;dpF`#cCQ-bSd@#=f`AwJ20O z0fieB6*yCA@0hc(WetU))7zmd#?9#yJhwd-;mDx3O6c8MWbk!7#I~X1!RTTMD97GW z;{%HKWfGgn`0M!f3+%tqRXcP3f`s+CG?V;M*(nTV;CG{lC(6CXn=zt6dVFy^qtk-dT(U<@Mp(P%)V z>)gi+cC7WrAUB!Jcw&QLpiqF*gd7u#h}ntb-(-3mv7)WR4QnsS$fY~~8VvlX8 zExDY{QEt0MR{98MMu(@pWL_eq#LqLC&rU)E+y6%R22gd}zEGrllMf zkaCbn!^^r`ac=4hIp~3-gxjt0G0pVny9pBF+6qIIKB7kj#K_PFF-#fFQz(=6Yn}zj zo;94pjRE>TtE3?~(G8iX{x)JJ6K#uH`9WX^JrMwk1qsf#dqL&x9S?39m+<>u(O>ZW z5e|1V$3H1usFw{`Cr!Z#y)SG`TR_&#R@12rLZk-uYqZF%VO@XWwXLh;2-g-5PXrEb zWE|cIUncsO zGfVvi&&NOq*m86}0z4B?PM|#-x%x5dqdCaZPj~yg0?2dEu72AO71hX}A%!%Xm4AJ} z6|s*O&mC~;4As>LLG+DxjFjO7F}Y5_;5`-;IUTWt4Ag;5(08>Hk1Km}>u&4~vpofB zkPZ)qw@^?8J8;T&)2%JMxedXzIu|k)5}s9 zRs$)5Lc;zMmG}7qqw~{rv!-o!yinu5LA;`O z=E)Pq+HVwcf2VxUrBbrb1Z(if6u2o_EOGz1~nq^4^=*Jr)oQTf6q64k4w;WMUXFAkPK8UL@jn+c z*-WOe`hMFx?>~I-qFO*BCHlEqKs{CI(>kkC+@aY)f?+Z2fY=r9ouM=XmbvL{oiXz6n& zXclO=HEw&N_dYap`vE)^)eAP~{y1ksHGpB+zL3+-(oaD6kQ^WY=0mL`%VvT=gI>Nk z(tB%$hWsGu@@r?kvsp8>`JR=*)NF1L#VH?WZb)v4aW{gNY9|s0^zgR~>o>MfHC(~g zOBdq0S_6H_emFN4yQU+Y&GJXnm&Ar0wH+nYt}%;-nPsh?MJ~T>S@dM0)oY?SzI)W2 za6J0BeSTyOiBZt*0LKH6-FlN=x8V7;icAJew1B%~1k+Ix2@VO2%*Jca(EJ0+McoiT zx}=3@og9YcihfGIeZjA6yW>f+Us`!UJ=N=WE3f5%#s1dWKT3*-hp??G8rBmKjBknczDgg zAMA2&T6#hKd40|Qr*%B*2NVYwzEdOBY3-^_?#2vMX+Vt(e=Z+}X_qHg z`=RPci{sqEAX}z7KH>SB^b}I#ohYq)OK?XJGCJ-vKquaW*eWo#otP42vPaFkOgzij z*H-N>9sK9zy4Oqm)q-9FbN2NC7py;BJg*nlF?R$<4HCaY7f^CCrY6A%E@T#qmEah7 z0WCeAI}Qzl-@}wtEJejVNL`dV%7f#gU^hV60}RPXMzkl#&M-Crz4U^trybD0N6xd1 zr!v`TSm@+T^o&q-(C*YMbs}*4&4DU}`QAz=EX16^2vC-kpU$JDYf2~z8PhJ5BJK(F zvR*tGqdOU(l3>i}I<&}HXIHTHcpDm1n-x5ZO?82b|99o^{CguqbA>p0o*PsR%tnsn zNAm9ozg;?y`8uxUiXaPHm`Io*?XYP-6@}ShmR0-4_PmcJ!$5^{q06dF0&V)UUA~%z zTaDev6PY37rE$s}N;EhK-kDxJJuJdGjd)?RwHv?mb=*^|e@b2dJPU0E*d6UNT6gE? zxoI7!AQSG4kDDl+GnUjH@Cf76ERDr6SlS^Tq5Ns#6&sdfVO33z(yj-&o;f+}=F=0h zr-42}4o@hx)8!*S;YnHBY&)mf>j>ocNzj=tToMeCOB&6ad_FSo_us8yv>hc15=E(7 zgRTNKQ$)Y=Q++$pjHfeZ2x{g{Jb1*7n;);XFHfk!RP_MUdtY#@eMdj$^hoOf4(}4( z&SK+5EGM9w;E0d;>7Y2x1bm3BwgSE6MsQ9TpqMZrmS8xil6W@ZR=YtFt_6_$y|TWl z5XEoxR4zr8KIZLys@n2kJ7sl;cu8i4s%_%03bH&%d5$DqafJ3c7IVJk!9EuyG%j>Z zAr&GiH2n7$YLrFaszexl{N2Y={JIiajXG#o*=dlTeEa4<&l$c@ec$`59DlgsBa0u7 zp@usJ?kJZ-=kBcbZh=FdO|cQH?^fF0?-}F*K*Uan_0+E1BM!ZS+oI@19du9faFiSt z2MMJlUSSi!b;oMVbvGk30U;=iyYty{Lu;byq}|un`Fl0^HeM<*ZPZ-8svL{dXJBb! zpC{>+gSOcw`wQ7yy02NSj=}YI*z;R?il|i5-B2LBKUpg{FF0efl5Kf0=+1Y^0^cjd z2|cjPk&n?~;)1HbN~PGFi$g74>P|tBiV|%s(1h1=-tQCAm%X5Vs7OM5`5D(Y{O^C2 zuZa9YT1M1zy_W5{ni94gp?t^kPmx=KE0-U{t@5j$<5Vn^TdEhfl1R{$mYgW9*lWeQ z(sC0=EWhfhC8;P;qF=2+`LrZbs!P=kJFInKVk^@PC;CTARnBvrmaN3exgcxHa9f@& zx32Hjy0RoHFC^9FGc}funQleem!7A-@qUbUJOR6ob}?2~GgnnM27 z;yg!rC#MT(`4WoQs#cqX*boi74vU+C5t zDX3^?6d}u&J69MjG6#iWTk@&{@N;YdE!AMj2i*?C@-$Cz9D)TVp!*wXvDjz+G$UXF z6-@=qQPbJEa9nI@4WI6QYZ~{t9nhcGW?K)m*#9YBSCfOb@l*>otih(-M)$zk|lFIrNV%DENIyfE96@RoZ_YvNZ;>d$kqAO@waEXlb6kPUR zFa3NY-`CA^LR7h@7Xkkuo3~t-KbyveYgd=^BFB(CS2dn`m{=)ajXcaZ%4dGPowd&d zYp~6djy+(Ht_o>}EFn4uFofNvpf{m{<7Ap+WRj12$`M_U>CxI-1b%mrj7@#A;Ky@d zuA+yXwMv5l=MX2*9q$<=Ahpr&O{<(L$k|p)2yR{i^2r4#)$d7g?5omxxXxRulnb(d zqF?I5oKq%m%By*sL+D|RiN-F9_Ck+^ z@p4Y&Y08=|q;X748QG^NlM|sq9kqiB9JL#W(kK|K;PQ|`Ba=7+0St-yLHLZoH`(;+oAoba4?O?Tc=7s zo$W^RLJ0Z=93JPn3ea4LZ!FoFIMKH2z_zsT%+Lg>iH$iHy31*YCjd2GTT2k}o)+=> z9xWq|mFH8KDxTJ8H_Mgo8KTQ!`$DS*I>V{Mti5o~+Ng|e_L55!sEhs&d)L;SsJHCD z%D?ujEAJ4N-ucH^`DQ!>y|eV(v!9tU6X8vexB+gjj{GtT#szMsXMzAya7iBV*mX zRfPX+!uwqV;9vjq>JfT-!!8c{uWqyKRUJOu^d@}jk~w}KAhj>T;G$32@Nx(C;f^HE z3-i|W2s`h(+^5?n=ZvDJ{~G`NzSMdfG5K3Q?FTaSUspcuQ=xcKm50+}2mhsc*E|7k znfw*cqV1k)WL8U-rFF#IDIYeZ0Y_U8X2nHQ?oFU>#{LEc)+@=ZS#i9YAP6RvnCy#a zZ$P7nGM7cGsmFM-7$Bevhd-MVKa`RBP$TMNM+EfV#oS&>{$!n~%m05!K-whqcCv_CofA*~{UjyjPnU zl5BiV1s34UJDFHTk~r+du@!Mp%vPno^!5&)fvBIVWylA}#I7KcRRU{?ruy<2YXqfE z7?r?bL5yiYKP(}#3V7+cls^;Ewz0yW!u(^=w23t$ROfwJK98+^&wiW>*X44^!_Lf{` zI60VtBdXk)DBU7o{0r7xyk)+1b(MZ>q?+%otr0o>TLSmLUd+n-yXw7r?G@AAfVFXbiP&RL5eE5hfRAny8y`&Cuw#V%<^Vov7Pd-A7S;vuZLK5u%RzB zPgq?(uXQC_U^ShykQ#vM8j`929RyI5LK_5jdq$nqTAI_-&D!@5^a%7|W^<(PO+Q^f_r^S-B`xBg0)9T#oa@A1#mF^IQCmJo@NH z`QY9FKl{3WgT8Ma&YgXV{&hnmzm1>oN5=QR6~v|y^tVlaXW2#>yzI=r?;!pD*K#wy z?PolHL}di!>-z7}&6k_{SAWm#*7y4;cb(v&U!VE}p33pLsNsW#d;i8==RXyD)qXMa z)<^fL9=?;e@95!`@J$b|C;d@Nw|!K{G6iOpEJqQZrW>?OcA`w=WjZ^i8*Yg8Vud$2 zo_9o}+(UL%Gbyj2q@J)+I>YFB&l!ia0|izRpnHlXc;t%tksfa2IM^CDw>|hlK+o^^ z8h(m==Ii|0jd{A^w~|BmtNb(9PS%dOw{9GMXsvwLiSaunWjh*uS7hFmcKuX*&edMK zSgfBu?adJNLc{20hT8?IbD8*BEK=dS#l7}XN&o+|5Tg1>> zLqJ#*MujmdyjMYd7AG#p0!dCT=bn!T`-+RFtOzsD5A)IjOrL~DZrxw>k336He^;r+W6)p&SYhNF1|G77`MRI?~N>C5F>9z<#dhA5KeEq{Pq}#%(?-+$u8_gr; zBi&qp@2FqI;O@#L!h1kvcLI~x9;;|QKd1D8$do7K{fQVUXb#^GRlbcst0*+5_lrZIdgW;4n`Qe zu-6<~Y5Rs`nX<5I8ozU$T2G;kRK%M|~ z&n;ez!ssX2Y1N$-54Edf_|s>PxU%xY<<_B4BwEtGdh~s8H<&haOED2WrxbKNIXJx# zlz>(4Z1Mx+xTOgdl;ZVxk7sLZJfLtm5GVRknC>>H?~6leSkHF(0<2o}uKt3pj#cze ze`)4Mxoh6oJAAiJb>d|A%K7`R&YLN(DC};*oYyGvmj!hf%^mz|Ymi*I5g5nj@^?Iv zfsQ`+_vC-`|MgO9Pdt$i#;LH!ni}%=isy2kyJRDS*2ae*)rr##yviE-usf_!L9)tp zVJCr@ED)sOD7`EoZ*Gi^V(n`+=!{8rSkCsa_T|>Ar7dw*)on&-^7b`a8_KD;JS&ScdTgYbj2nggrB;~e@#8Jc7K0c8FF~Ff_ ziVp%(sh07Aoa8y1Jzvc{1F?OL#FLH`S^ULV)p4r1P`#jeIch!8K*DZMl%y7&25;bq z9>%mt1{-)hkJA+s(~232vpPKNa|IJdo1Tu%8c8A|Lpi2vXHx*43x{cKs|o}&MdlBV z601F2$$SmWImNAi!}Niib#idLp?m@8^{hW^>E=)e0$VPUNUbPhq6#G=jIvm&l_`xu z8I_k}kJmJ23_t>CQQHWvP01^Y%H!vxwB`mfz1%np5;bW@fePWUO>vq>yMa{o-7iXh zbc!Ro61_lkKDdZZo5^e*uKcV4VnW%Ij-pF~lj3YL1k@lc$b&_PO_-HXiIellZoCZ$ zvd3g{8Zzgbya#F+W@{osOyi9NmBCPphs|;5A%XWdcuyW`68348J@EBAGaYF}3Ph6{7PN zRB`U!*&U9KS?ky;CP^ur%yFF_&%@MS#RAXIlA>TY>WW6n(_HkN4bPA~FFaa?&h6an zCB6BfbEk`3-^gA7y&hg1JZ)rq?Pu#`Ov~_0vuE_?D9%H*q*pGuTvK+PLns=JO>;B? ziY-EvX+t52xfo5hE<>Iu5Xoj-A+e!kLk%a~9Ub!Z?#Mm|^;vAh&ohbIPE*mzt~1Uq zfk#Xk{X#l1<(2T6Ew3m23%M4I31G)m;&N{~>`bnjW;~XKmFOHa*EPxB(9>ffG=xw` zIL)OEZz^&VEB8Th8gL~)@`q;6DtGj5ejrkE}Y4TgE* zB2!R6YkWUnxKae;3IiOuN~=eR6Ee@W`9Dz(@a>+_8+YOVJ>l7Jk$W)ecJmaz629{4 zcG4fU^beX&9aI45QVW-gmSaTI99i6B2i3BQJmOp;S4~vi;B#s>?g4ATXH!W%xIBO* z$_`tx*3_#cS7+m{d4=#%y zyNs4Q*}zJiKAHH0yE=d#Ldh1W*$2|`Nc~4fP}}UXPNVy$MRmGL!3F8>%7A6$g^{~P z^wL@VQ%M+fi|D>5ev*g#3;jXMh;A0c)Q!G2$C|rg5#OiF7mp4-4KP0xzD5o4|(%fajGTO>5>$?k(JP zEA%@ajJF8heepNh^;=B)Z%cN4C>Q46eAmDEuFquTZ_4YpWyk!_r@TJl-`}j)4$%Eg zd~GYJE#1%$k^Y|V?yF_>Z8ysw&H)|ca$d-uZT{O~>-d{BUx(xQUS7t% z_0o`qUL}{Ln$p;qb@XJvQUrfTIo1}*6@Y}rj9>+{fH8bx)e57T2#y7oO<=Q`osFsu z0&cTK5O>Ljw9eTM=P>Rf?wk884&5?*j1&9|fjU@LpFQM^+9#L$w}-UAkfXzLr`8VI z9QaKo1I~JD1Zlc(n-X2CR5jE}sH$O;V>F362+qVG#0|D&3@gK;IRytgXY?{5_7FPH zX6%YnSBTmP!!Y*T{^`A~hfR>NZUgQc%4fWOpY^ep!!ECQo1?iF#L2*_Crol2@P}kW zRkedOUIPj=bSSJiJt8o?!ec;|oG1eUnl5^-3AvnlTwr7gsXHEo6{C(;%aA4??u|bM zDevD3uRicBb_eN7`30owS^Fq@zu`fQwB4xI^lcQ6sb)!A)E+};IL63}>4J8H9iwl_ zQf}6i7*^mC9K_@4G{Ll$POJo>T+AAlX3LSjnM^cpup0h+Zu+NX?AbZfZ+GkR_dszw z1p&O$J;VBPe2L0vqn@h7X(`5~l(E``Lwp@dRU{4BCWdu|M}fu6RKk*<6XMoRn33(G z@{$gBK&BFQFDnZmH(bJ9kk(2)scy)TyNP%hJfC!)g4#Ml>hj88bjUc{_+W=UkQcfy zsGb{RTxqpHl~kuj8P}i+jW)nq=Y2OGdoDlFM+c8#LJrnK@BewbvL!{KCjBZMb8FbF zf<(;42;u^W3*f@VM6iRh?-+mdvyWg|rB+!|cE?&g$0J^WZbl9^E_>i!tg>>qri#IU0wok1>Hcv62pYR0#jOhP z4&A~d_B&sWCL=BIUMs5ZKIomx^E=I(mvf!98iKzfx!$e$bV_w!xcxR^bRCq8p-zMU z=M%1v_Wk+XzDvXY+-2l$zWlAG?H{!9&bog0A-<15{6BYf0#9VcnfK|FU*5R7^^|C( zwq4D2zO59}d&L0Vv%gW|^P@(W+ZZE41|yCH`KgnLs}vf_Kwp9n5WHgie&wEYVLOvK zzXR}nd%%l`sO|Rbh}8fH^xRq&b@o`}G)YVn_f1QGZpA*D@TEGuSl#lT{f#=D zAGNM?Nic_0n;{w0_a%adxg(-(4ALss)|?Fsys}qHP%a0^NE*t=W6>ct?f?tXF`9uZ zr{oV7gqjnaHfar5*^wtR!8}a7MaPppA?ftjJ&PPfPO>2@ za6U&jy?Iq7;CK%0`fRGRe>Id?v7#Af=621?aR7X0<5MM6RQKYb@W6eng+$vI^||s` zd$2$Gq9o638ws8-yA7)rf?I?3euC=bg-r~CUI@;D)ea-qQCd)Y`-tV!9w+t(Os_ZT zpcVn3xjHGKX%968aGPl^XAdWXc(J6M*?w5=6|QeCO8faF?is9LJ*0mjj-MW|H0~f5 zP=0*Ga+(p>Zod!Z1;1+O-uN~Gd%Nz!Elpd;hTH?k+VV`??E?#1(;>r;ab9LNTBgCn z;Q@$}NDx;mYQA;2y|ILJ2*~tU8r#vVl&pbUu)GXvCY(iz-y3t806$*}J(E~Vk69y* z8~@zLkiO(#cVSy2`gYkIN41$cz^do2LY^f{5ujGyV(wN`VHxuKP9zw+T&p}F6G5hg z)!E!-xm2hi+2gWxDbOri1u?+)DmxDW*%?CtjST7COc=eiR}{zo!xcikRDL0zzu|dC z#SfbGcAJ=eoxuV!?g>k1E$BpaIN)TpvQz*PCMYBCsfn-wyck1(rM8_DM{Zr_3^uPI z#CHM^iOW#%*Tdm{6vTK>*sl$Fv)BO7b?lX;T^OIILeQfl|IhI%7o7j=G{i_hg zg1Gy5tFvB1yt3K!#`Y|t=Ca$cY9S?DA5C~KGDZTO!ZMjqu@l6s?;|oC?mMPV9K0#E z3^oM{07I_hXf$bRpoB*Z$*nycy0;ZuD4ple9OH?`}Rq*0pG^_YFlo+Uw|4aBBm=d>{7^%&Mt`X znJac;KR4yQ8RB+lin9dCZ+qxrLHN}s*VSUbL^H_QsB;d@2+Xt$nG=JhD^vJO+wX~* zIj;VVy&zsG2=&IcL8!Uvo;kIEMwLp%-Qg-^^>f}{vN{Q)%b_0`^s3?x9u%9e)KrbhnLizK(^-0o218h$UqXA%_k&G$w$bt1B#ZNm9j7QQa(vW zD7f&|<7m1A!n%6*Vx`b2y>T2cJ0_y)53Kn4Jn#R@?tU*DO>vdS3z563*6qb|X4{D5 zeA&c%w3%8QKqH1N>A;!&Ie26lXJC5=(PvySpYr1zudE@zP>pG_1w>{)X5>j`6C^B^ zYNF5w&!q!mX4|X*?Gw85jw^SZc9xQ1d9Zbg6Wi`7Cty3M;So z118?Y;{?E%sz0A))t-3G@8sP0q)zx^oqZa#dDjiRFsx=t_D;czN<-x{kJ< zI#;^%Ky)t!v%K?dg!gvcI*^6+OqN4bY}{FG^F^PB@)!{#=)eI1HL`q|-)-qMTJ!-9 z30WnS2I#o2jn+yqLIeqc5o(BTt8fLFrV~uOL+W6Fs601n-}bqiKGl2mPy%h=qb>m6 zJ-%wk15^2;z%Gm%iCu2Gy_O=I&Gf-4Thq&<_J3ep(8xt61~403Q%0Vo3!`kVvph@`8Nc!XRXb(?GrTFBCW?i1oqqD?N?6~l1uFN+g0l`g~K}0qU`~lQz6zDWKcg?G`l`o zh`zH&K#(OjA`>C-0?>EHMidGbg*KH~DlQKhD{s(~2}uIDEiuGL8^K!>!eCdnD3SgQ zPw*!`OX=f43h1>$A~nkz%+sGP)UtSpGUa-s68Ds1t(=fkT$uD}8g=;mG>xRil8YBp zAOL$De#EQ*H>m<*FnZ~!EIRTScp%^hYdr#3THa(PY3h_a(-wb^A7uN(E@8O6ndCX-eCQAc-8)6)WS5lX$YdBw5~)nP}_5D|LjgzXf@0 zNWtIu-+_qS;f6FbL%ao4eJh)gGF7nt$lmFb7_O3RwV`9Numc|6_O~>*a^qDIdZw|1 z_xnuZ(NtN^5{YA_bpWyGFqhp97+Pi(RLP{wy_|k&y;(Q^p;<&;9Bdk<7jWu)7VQQZ zZ&`F;^RQG0+;NGo!PyR+M!LV{=Z2Ur&=_=i;)o9hNhKOcD3mFrbx*|IOcWkvp{%g35$4QBnf^@6dV385?p+CW~B zgT<7d^2{FL0%B5)oz!);qXy%&-P`Sg{eCu@`Tc4#8_pDILc>gCMqqCU6q!~`QD!Wy zs%;A8nq56Ni{Hgi-jv#_Lu>B~8P&ONPakh6%?ADdVxRmf?aWjBZsJ(J@>aCvF6HE} z=7{l%$7kP6&xkGKdy*6O-8l0bzl(1{n#g_(bk(sw`e>tG%p$BE6%45a&^~) zxU@0Eg+GL4y5n|)1qEb*0OnhRCOD`A7MU`OSl2ufgP9Z{eI}_mf!qiqZL)$^v4g>! ztU++j#gL^Udlz?#rEL}AKpnp{W|e0TP^Yf=rD%uXaqh}jcb-50LSt1vJ#D=ot#5Gy z;3jJZ+aN<4noTwiAwcx*IHU!dH@SEh*kgFy=>)kP@8$;&W&J_{Jq^EhZmz_aU z<{0kI$`Miu81o1zQXvufMD8%SRpo`g+>U7SWTutU7@OdDdYXO>M7|>FGF4nB8LHVV zdOnnWm;T_+pZ&^LsD4{}Wz?akr+LiV922@Td1|0nSH8t3n|E&%wcvz=pLTWUWHb^d zeLunK-Fa4C2rv1c{@kTi{&np_58gUGzP~$<18Ei;=jPNC?rW-dXKDC1_M5nSbxxT6 z+4Nt>jGdcxms9ZO5aUd7YuVqHMfI!x9X^e@zshO_-G)Ec6elgSFCTsT%e9_%8yBGD z>!zOvw!0kfpEJUHMrsH8MGx*ruE4JcB`2|sH-PS=7a9flzz4anMc8CP4L(jT8oxCB zmL?9$s;lVw*)a>gwf!f8sA(Pc*+o58eCxUp;h)dB@assPt3aO54)BR_u1pKoUHLBm zhY{!X)IdqksrI2e&*_FFJvBcKYRwJIuZ37M$P(jSOt-(^lv@H<76^>zNgxv7}4J; z@zYHIFXg8AD${?vY!q<9j2ThcPN&KWDo}?J_<#p(f40NNp$7QS)T-RecM_(y=<#VYcqA1vys1{h$sV+{IJQ9v8clfQ?gkAS#XCP zKQQo-8ZomJ=|R1TQqq{Q;&61VC$Zxc+1^nKT_GVdq^H7j>3o-K^YQ%V?`JW8I}iAN z49xt{xtjUCwBY?g!1`C}=6!n>@Pd+g^*X^zT4&uB!w>@(*i>SMVm6O}p4`{;-m1LKRBP%-F&TKMBxFxpduuG@;+W7pGNI!FoJDZ$=LQ3YSY zb1VM`IKAX)eZ~0%*wtMZZs}nitli_mLTG+qQwR8{=lGN;vSHVA?Xo62g$oCrWbkbMy(V&=Dx zpmnOsI#yBEncFY@B%6t5=9gdY$qme`C>Ophs-8{*WDu5AHYWGz;P9=b_^Ol6)o}Xz z8Tzf_d&dF!P&v{o$gP*<<*awLWtPC3c!({nT^KG+=I9!Hz1l1?%w&{}azHouGzIBF zl9=ll8xC~apz1?~QoAuP@&kq%nSP{)kWz{zsf9_YA45|6+#3En+KAh&SM#rzul>)z zK6};KM9ShyVR`hP)VB zcT9x0##e7vJi}~x@ci*~fzgBe(o}6q!QaqAnTkGbBfOAvtl>!UYE?}(!Zg_o=xSQP z1f;;nWob%jDZ$5(l~xJua#}Jb0$Qa@5lolHVk;D4qG;ce7Z156Ui8)9*qqj-?A_|Ztbmgyum}?1@WSFfW7h#Ms(1e z8JyiR@B%UbULlFVp6>l7MdR9?oeWaOPr7!r*!&nP#%z%SIa+J;5uj<}sA#Y?UK2tw zi#7sKXaxpU zDtTQtQ`Zel!Jx}6hr95hqBKEOBw?xVJ z7yf6O{9Aw7zhxc0tmeBK`y+bI6>Q55*TeoTYAc?=w*V$)%i$=~*?B{Afk6)f4ECy| z$oexg6xPjh9P~KeWJ>z1}tq@WJ6VPkIlGRV!l;s2Co3KlNh|er^rt=MM zG4sKo4ibu-yOiM-Noot7M@ zSR4X+DfO*A=f7I4wWA!J{6{M}J9dWNZ9T6atFB`cezv;WP1Z+?jPoXR=^ypGbc!w- z0$sm;TW1h@Ru+dwVZEekJk*+d{A1L2lj>;b=VwLr{O`@+xoF07?mCknoQ!(^MbDh{ z+nc@TrUv^RP|*YSfRAU}SR#u+$&6Xy>`_hk{JC!gnsvZ(LoQ0=tmvFru8wB=jW(qg z>8z%(Fkg?UVM&H*aHxDz8P~_^p#XmSU!F@8?rD9GMDTyXz2d7o?z$283F0GTSYz2* zQs$MqgjZ6=G3!)zwrp) zvs_YENz>9i%Pe5B8DgWMAx5Y~ROKKnF zps$qF_T??$XzLidFu5h-gD3x3%5|ya-Uirb0OHMZoR*}K-{FKIjr0v?bXdDDjoeS_D5wXYI0WW|%N$`B~ zg!Oa@q(Y3-gB>S_B*a=KGBK57v|QAZ=#$}Ky-sYzrAj7i4lEWpfJ`lf`0-3k&7 zcnI-GoE|nV?qwt2VATaAZP~bq4#Jhd>coiglvf=Vhq4U z78P;3FcQ)L_TdRJ5h`N00`x#zK}UaV!29vsOQ=#`dvImh%4)^vYR%7i%Sw?U z5mneE$fp{~nFY8l1_Dcr=oHV(c`{e2p^!)OP4KM^Fo-RquwQDe-Ww_%yV&&^37shW zf1iuhRzch&82Z-B*_&WzkS(>&ADscv$NOZC@^VTIPyo)PM4s#z&@GdBFy=&>BsgNY z(yB1<+5M4}mzI3oO%Yc;obV8+O-I7n#GE$`y#HLEG~aa(x#HtX z-B6u42;%Cjex6scZQZXh?IN!aG%>n`-y-+s(j}_ft9#LgR%L+)Cxa7FfeMe*oKw3I z>PWI@2o13ymy>EfcO_tektK7&2iX91=h9IeK|Z_=4GIz%M!Gjg*n+|L)q z7t)i?tK2(!yEcmRuQw0$5L)Zfv?ImN%roBhzfJAwzk-n8FTBLIv)3IfIlC}!V7yb& zx~n&xH-GcvKH;)6Yh-cRZjXEKey`I9E9P#&cTD#7Qtw(hiCa=~G%xIt>6mDw9x(;5 zj5#>Mg_(P-d=pa;^+GUF@A6|8C&qeFeEi?aNu$tENv)?>48LT0p^y zA++^WM^OU{44mCqYEm8Xbv@5?Vv+?%fu002V6zvatjIOHl;@7NTndV3@%3sDj~9}; zIQkoe8{?-QDFYuP_n-Y&zz2zE!t6+Q{_Lu_`e-}N z0t#0;2adBTEtET3L72^6V&*GsZ8iiJH>Qlw0d10m*dcYfQ{{%IfUC4wy$X3r-{yvk^RAMifPX<6-DK z*~|h@1fG3s&v`#|?z?_|wkG)byKRlw zPjJ*t!nxFofnR9r*y1ye4))#biU%8^{(^g@S$EvK<>|QO%!!}v8xMW^m;B??5aJeluT0gyE*<@UE#lsGchSarML#T z`I@%`m&$52=L#qxG6+^@$%xC=0gus>4V{olHi#8rNMi`%$?kd#MGMYhpv~u@fQPNB zz~390*$?}!9knguK9o04rd=41p#KW|jQH!((`$G=Fc0r}j5qRwe&i^2bv6LpNQL>; zAhh!-VJA`=xC3Qs`dHJXQ*NU0`^I8)-A?HkkOI9K*(;B>5^!ea5^>(sV8^0ov^I)61B6Zt1@&)YCW{^-9YaU{pLy+km<7tQYTu3CmaClGifD|G7D5g zVLMw7gJfwlSsfSFOtn&ex{HD$r7KNw_S4Adp|#gW_)ey_CAz-ej>g)s_ynk z`LYrLB+lmH17$Ec6k==#J_&Jh2!$8Lp&7 zu|4qK67n_(JYqm{3!s6_;87EB3FvNY4@2?6@PP5lMc z|4m20-=cZ+m|6V-_=@1m$u}CcYaho0k)J;I6vl}*Lt4V#^EaM z;G4Nat!4gF@PNM)rf)3wE}YtF+AV8C-O+nbe`nO?R+(kbY1H5ySO5F);FaWm?apKa z>^ua{kNgN9n->6%+8+oa|F}f&u|LYqUkMw$ElT+ke_+_a@MtW?V|z^ z!ra}gNIUTsdL_cdI%4Vpszg!=%_jP;F&Pm-ZMJIX6*Lq0%-r_L-hnxZ?<3O^EF9Qm z+=)Zi;wn2Z4PtEYZI9r=$73Czx#002(LZ`RT04}zZZUUf`+cZ8$y?yh1p0O1Y1p$z zNpR4>*+Q#MoRwr1fa>zrf^v+?62hBJAP`UnQ!ty!nZo}cdso_|EZ3a>%2WBuJ5hFh zD@jE}L{T=8#i~42>>#VMN>%=Q+-61{9U1TYd9zeL4F{M;`f9rSbf43m1VKq)#%A6~ zUD=VbP7hnLx{-qch-lnIm++V@ITfDxuLM30zh8e`_lWe+3@yaYaJ8aGYq1<04v8in8f^wpsO;nA-x;uxkuyF%SY)0s>htbYU z=ziY?(K##uf-ck4+Hd6NKI}6AY`Jgb@V>_5SS0-7?BGcC%uZwXcB0dQnHt!zV;M*r z!SZk#?uY%xB@lkPS&QsuXO)&VB*zF%sdGdv%7rcn;mGWRlO?zt%w|1zDUnI!5(B4! z)u|ON7eJD9e@Po0)~J1`1Ne)1y4+=XxPH4N)pz4$`@UNFwkP}5R>0fB5Lu{apSu8G zSR(Z2UVx!@dwDQGd*gf#O<})%((!_Gm89Q+)1&?O{CEYy!J53#()^w5onJWSp zcSL4C>#n94Se6-?4wI;dPu<$rtZ_wKoZj{FZrLmqGIabTaj2oV?9Kp;9g{hxHinx_ z%T+M9#cSR?GebYv4|iIn{g!(-5`D|W7v$`c^pTOD!`4MI`a+ECh}sV8#DlmBgJK?F z^iD93IaTy~gc^(bva*{Q>uu~XW|4l)GzitPc)rJJvwBuBj@RZ&ZllOl*!!$C@AbiZ-JG zE7H5u3S($(qxg#B38Bl$OpnC)a$OhrcFi$;!VJ9=K=4p!+4B{~=cFGHCl3 zpqeM2FzzQ)m8N#;2sV^`7JQ?8EuvLD`9a7*e0%^M_cykl?`>ROF43i(uP4jN%0!E)6##dNXdaWu}IvQN+TC zd3|cvb0+tBuIELzxE32ovViB_;{SBKPRWdi7W*}8v?qE(X@AgqQ&qW4b4HfZ$<#B= zh9L|$UI1cl7TTQX0SVji4Ah}hc<%x2xu z7ZZ}Co&)qkM(GY*KZE&OOswsjx94fH_o<_|@14?DKBOD+2b^wBwQe3r2Ql8Osz#yN zVG0%c)@uZ4F{Wlqc&hal1W8)3G#C&J;+Sx^ihy~+b6Xb`WJ-1dh7&A|*iZM1U^7&Wq-U8O8R70^hdW`STc^She|AryG3`Vp3|`hDL$>kF_q*IRptcrYoPnAlhuF*X;g89%Kyv;^FwPU=b<<7;Ie2+pJ}}TA7FaOi~vckn$roraCJ`WOdYR+3zLr)BMB}0 zJ;v_P7Q3hry}Jx@rP(Q9wD#6%QPxrm#N<@3H(iegoTPtvjF@YMsLG4VyJX?bcRV@yc|m zF+L@$V`u`IS~ttaxQ75<6#yzXQSsGc+!t_3=}8LAq%g5uY+OnqX6_8(rvMSQXuJG9 z1|aeg2L#(1lta$`oBa`oB3;Ew_s6uVMn+oJE}_Y*c(4fpVrn2Fhw2tIcT;1<#ON4{=kcC64N@knJzo&; zUFInE?EQ~CS%R;P0urNeJ}kktk=WY0^viIXf(ma3jh)~8-fQ%b zSH6ua+6M?P$HxlzZ9Wm-C8VjzvaDCGC^3(E#Q>}48dhteZIe|D^ENRI$Og~pJTDOn z@-lJ)>AcI1M5QUkJ!&+&Hzkp%3r!eC>Kf4=7AE^V_k#_KuhvtK_Rl@^Y5x4b|NPst zXSFJ*epyWY&O_c0|KpipoXSo^kHq4joL|WPTu?p>#d-90B-lbE#+tQO7&0)#S+GJ~ zyPz|a)xflv0=!!BIN;E{*mSXxzs-z(;X0Vr3j$Ryu>t9s9O+RMKcA?(I;a=L+<{4q z9k%e|?~24dgdGD#FJJ7UujEsJUlpdqGw*`jN;O$YWQTUN|2W@&$Dd#8r|fUKXy|ra zZ2{lj@ZNd+UNY=L%^b2;t^1iDUi)lV_l~!|r(%ASYIte)>%B)Dh4bs_WBGwLF4`XW zK1wpYoXI_CjRqAsUgyAo9CTET&h&NIgUm52j3IlM@ImP=Jr#(_$<7WNZ=x7Rrt)xq zM4J;VL~|{JC~c!XYy|O?f0k|9=K^*QVkXclI~cEMzjN$;d|c?+W*6fuO1W_@IY#Q{ zW4WGg_w2&;Or?h|yGqe`=A?k9m_0!dH@Sg3%N-Vo8ccAY*S9PR+f8_FIS}1?%vA&e zk#RlI*_Yh^{IbOVZ;e=dQhsOCY1BG)LFLtU+_4Ly(MM~|7B`$5?(lJUQ~JJ|OqIAC z(a;J^L&8#BW4A70B&DT=(Qgu)p6|#V3>6E;_qMM z$BE-M-ZuHu#n>iP6ruWv;ufe#!z#MY4rwi$-ie8;sGvHQU<08G1=42UdA#iw)iO;( zjTh$qS*#Ot5oMoC;&)X;4?EZF$j@_o3;)yKKNiqjs+T(zUG7iIHpTvi?Csb{=<}Wz z^w3WN9iK4h?l)^TZ&tqk9P$(SYv7Nkj!~*MCJR_efKSx&QULX=a5piDB}yXt3kV$q zYt|Wed#J@s$N9JptZF7~=gbnVrd!D1IBK9aj42hH4S+kVP@21Acp*BIUz>xUe*YmT zd&CR>vLN}RM&X}_5)3a@SO24R)Z~+|k#FrC>q_5#yZ`Bx5X!x0Tx0rq{%By@1Xp%? zXK7C{S|+r5>uO0pSS27+@=E9uNH17UXQa(jc5Ks`T&yWwK^1llv92;4j5-|xB*QL5 zOdKstS(n)L7^f$$qvsj@@1pVtXW~W`9wQ<6O-s+Ocigss`ntmR=4u-1eteF#-`lu< zr%eA#2_5j^?w{KtME9BT*(&~6ePA!_cbAE^sA%+s;PvG77fTx*#kZ|Wdnw{@L;o!Q z*%zhOCi=ieGj<(eg{f7!xr}D`R2YIQ0mWw#%_E@%qLk1hF)-ExaLZvN4LA+DVHs$U zqDvN8>8Umuj^Iw0Ni1`wE%=N#^ykrspD4B4?i3$N?Jw46#eR-_YE}O@IsamNh%4F$ z{4U3>n?Mih5*iJ4Af^Vm7CF4(Qjr*M#YIN#G4j2 z<{yysaDLw0wN=jJe^(RPz1i9;*1~_&W48$P?VIW8+ixm|;;$9%d+?ZpK;FOdc6w3^ z37so&uOJ5|;)h*3)uAEGvIUPUoH5)*#0~}0OVA*pp;Awsi8|pZDRCQBREa`Pq%k>k z=9>z4s%YbxwB<%|=70izJGFaU?LQ0slYl<;+yQM8(wOIwh{o_O3Kx=q{#oq2+ov7%SYe&Ir2C_hlEgr*pV#fz+Zd$ZZfO zw|edWg4DE?gm0inuM>DbK>h>j1GYypEueLAD@rqO2e>32dA%Mt?6cKkEHQ}*2fNu| zC5THf%29Ywb;`JO)YupTR0pSUA<<;UkO77*r**FyZ0(BKfu%an!(Uy>vUej|&Rx!L zd+yzLm!a5oBI9QaJyQPU>S1&&z|h96&he~7ASI}%V8*T)%kDe}1i~!H?!gQDj@b{&*e>zZUZRpnJsae0*Gr+9tHAsvMQ?HsqQm2SP17 zT3t}M+nr4uswWb-ak1J&n%x4X_0eb`xfy8WPE&6{)by9WhP&&9 zDvl4ZJz+(0Y;5_M6}?v?UmtW&tT-LN9f`GI1&F$-i3(`mSeh!cQZrd2m($+Lj&;b$@2&RckZ%Nli&(Z5}TP@={v&n%mND&kt zb*mZcCy>D{n0T#`-h2&c{$PWF^>#k?grM)Ma)45eE6jgMv!Cm8ocMRr(qFumGlTZ; znw-`mzPJVb-~RQ#yJg80hF4c^-tn&Byx8;RlJs71E{CoA-K0imu0?8=5B`g}>uOe% zYu10|t8;lMUj-E8Qlfx}VnDbfNzR#He+)ag_iUAMrrz^aP0c1%BTx70)vH$rzs)7O znI`U%1q+5=u335pS3U(Z>6j{Kph+Y4JQ)I&t)@A_a9UEe(*r?}BEaBb)A zHWm1y-SS5Eg6j3~l6lz2YVk3M9qOZLI<6}^Hx9(2N{{)R$h?e3TlbK!OLkxFDReo7 zWEjxWq$_tOt{)xQXos{a!NW0Y9|OVW7h+zm$c!Pl=TiG%B8em8eg60!NLpuFl3ad0 z*cb4RaIzl({}y7_AMh*L3*gto%MN%SHQ^5{Mmvm$N}$1V*9t_nU5f|BV&_#V@bR{o(vl;OmLv zxX96g$!1J}_R34v zRKk|47(48j%23_a&KO?_9@8#HJreT%m8E2KiRZZ+Ba6LQ$K;*v1?lVI0P9=91cw&d zF^eKcmpVc|&P?&(=DTh&#dv#a?72V*oiujgW3X}e!);}WK$IV9o6j%@Td^^~flh}; z_{K+U%a&LH$B*c9ydQ;HT+@Gtg_FgleRTnx9co`YdTLSb4z6uG-y;ydcic3btGDGG zOa5I)7=b%5%Isv!T^{(ga^U%a+BJ*!7>n=st){TDOG_WqE$&kJ?6Un+H?|-)KdUUA zot)o_50=GkO3tr_a(ro#ai;ved{b6N1MRJ>^iLrqS@V`LivIIGJmqbwz5RCRTOj`V zkz{b@z~zB&bwl4Y@a_FC&gZ^^?pn97cLA4=QSjyJyA1qI7v_cLX|P@X_I6;J3%6iU z%mkP{xYUPx#UM!9tvHJZ9k=ugZ0$+Qy_oNcZ3|`+sBn3hFw9nkQ!dVdvPR`lrpNWJ z#!bv?yx5=#==oagnPP)(6x+E<*Wa$ubp`A4|4p9CA8_x=o3%*OdbRVD0K@$I*ZsY4+hV!IF)m!4xZ6t*CZBU zJ|-A!UGQj%2cRCi6Orub#LH`a!mYwNp$mzpDR=uiJON2}BQ0y++t&V7`TIir3f0Yp z-jb*al%!ZWl8~+0mW*rW7AofRrqEeb-dj5=?rdpjqnSBsc5bLFgG!aCArA?*y7lB1 zg(mFL3KrJhpacvJ!$M*X&*$z3%Kq&u&Q@r21}T42{4Y96`+6qw>xTS?`}Q8Q;1{L( zhWeFTHx~w1x;@zC%rn-j)cjb8dBtxcXe%iJ0(VuD+ti2$Mxi3abHpacaVSk#8He~b zaw~jobTJInG-wdM*HuXovDkW)uXYIH{#j?{|C*KyCrHiM@b51|p_et%mF|^o*W&@y zQybBM3*mfDXY&)%+Kx6xbxcn4MLV^v!mqb=A>v+@PY|LR6E;U${Mt&7-L#%5?na+- zVv@nj#ZXWoe%*qIAMZO;`o6m&eZ;{fu9~wdI!&j%5&B*2gFHWLkqHcJJpDyjU0M z&Redi|8%E!Eu^ju!wFCVIgxMVmc-JfW_f#JJ=jT|4~6%-d{K`vYTcxTxNwMP!?=L?r-Ea*Q2Jre8l2Ehvz#onl1(Y*-tg-{PP z8!Omo?R*X+s!gHl$%c2)M25%CQeOsB(W@r>KJ+B9+A8ID&=7>I&0;df=0aU)x;~D} z#PpzCSWQMgaNv&kaLQ50bF1JP&iw^H&_dn3+Y}f4>V^9abgy);z+R7gR}k$`LZF#t zMlI8cOXC=x#>n{KBMO$=fR&_R*s_K>*O*8bwu;zPT}~CIlCF1cfTN4%=vQ`@c`F#& zB1&zzZj9~NmsYU(ASy%szFqTTy6OkrD?HcZ-U+H>kZ_N_jabud8*CD@*e2FuFQnB5 zr}o{pDCQL*CCix~Dvl}9qwg{_WgX(O5}P_V7L4$?Oh9b)YO zq$1eb25M08UebXP%&Lo-BIvv_W7jqvQss!DmNo`;?rwP0C~-E_+{V-YXnXSN+W*JR zk8X5LrMmV2IY7q0XMlR6ewzjQmo1AA(pSVkPJ7!BcAbk9H1z=pW>z4MRCEBwduJ$% zU8vP~#@F$Ls*qaXyOpmUG=gN;e7A_Id^UziDbV*@InI20%d?d`;|bY6?s~K>cqZ5X z?=8D-!L*FKHsP!L$zQ2|W8UdX@7-l*vP$fOFS~^SPjOsOw0f%uGB>AHZXe-kNmCQF zp%V|ECLHb3h^+$p4v<@R*ro@UmL{RO$Zch*t*mLO#mKJ0#OHeHq1EyM*?VoLA6WTJ z0DjYE`Pf^#%ca*Q)cn00-p6t8(kc!eyPUfX5IBkeKQHDCURbrf;iL5;X?1Wi;pdJu z0|OW=rp)r2;w+GMHWd=NsnyuIcJ^$`(Lo2EhG1`+Ih=~ zy71x7T=dee-cPT%vhbJ71F+|w-x$uIP^vm$%1JCA$s7QCQ?BqNUPYMD>rS)HFm-V* za{XnbR6|79Y>5N?owM|((u6t;89&xZAOrGaL#(*m| zkWIjkP=2z|k|H%Za*D#|AN2!vaxbs)4XVbU8r8zaXIR}gxxP}hn1HC zLM_%^jCOTs*rR2*-M2EYcol02Q@Hh#Q7w_%a2I6)f=-WX-Qe*Ui6DZb=uzIq%y8Hi zHn8ObZHmnnPou(et9g((@S-2_MDqf`>F)sU={;N|_;51Dfg!|AoOF%4p*laBI~WuL zd!06@>KgmN4>7;9v0*)B_yuLqM=lr^C`nLcX^Aa9Bax0E>aB>-T|QdI)L&4iJ-aR5 z*f@6$`j@c0u?OD_LAa;6Av-wM5q^nM%+?#u*K4VpXuCDFv*NWnhjiHp3W>_Zqz$>T z9xD`5FR-niL9m}mtBnc}lP+CuvP}&T2AZqtSVyZrH#dIIjw`fCFN4#HQ6Cub2~W*_ zAg(WU6#VfW7rcMCKIq$SP@I}cP6OFU-Vdk3QsR$Mm=%QVl)TquDO3Ze^(wxY>{Nd1 zLJMmzN3s~oQbV7lJ|zrc?I@M!AvWx-d>4Z4D1gf`L`tNTUpHa z-}9riA^*Iz1AQfW60YmP;6kQ{Ea4KmuSjA)7l9ONa7xboW`mF%1*TG@qh!wE!*nPl8H2U6O!C`o-JIs8gD2dz9zU=Bx_|k}rPIB)ulTZu z`3U#hX4!YFPxzI@gAckVU_Xur7h*lIUBWG~87?h57xCCPrp(L~raL1%=DfSvObs`2 zEOHpRRhOZo(Hw|!L2Nj09aXhxNXovXeRDplnO!AAvVLH~Ol9=vlm4S|dhLEaGy=E0 zMz~%}mA^0|el9}u@=EM`TkcPi?`gY_iVq~debN{g-J)f7{;o87#}ay49-hATVZjLa zAM}-hc}w~tMW3gG3&|dWM9$$@AveR>uBtK!0-7BzBTxt);ubA-fdUqJ!&6)pOgM`} z(`jdd{6yc?uGpA!z{)%%fU21wz|J0;9CB!d*=^er?|T z@f|nFeYt+^ciIC&TE%0vMEBGrlF+3abSwByPEw=kh>C($ zIns`%x(pMB#3f>fS8(V}QadH2&`0DUKkZ>IJ{XHe99)ZO|IfF+Ru36q<;9?mvqxbt z=s%N}aQ`HIM*H(@aHZG-WV9-s>101KOfo*M+9sMzqip5jexb&r5^F$vDi_{54ggOj zH3~R7OTb{Otp|ckWa5z!wa08HGGMN*8^ZK>2O#-B0{N{x zB(d3A31^Y7xDcrA|b6?kK~eR-izbc`%4lMT&5e7wsy_37+T1vq4G z7<|1#X>XFTrI^X=z}u20x;7Mc0Z~(g!s$d1iH$UxCP5U`y2lkViXD4Q!JR5Nub}6+ z|G8rDN}zvm0RHb}#LV^#$5+(;?qQC-mwS&k|17v)D(`JzHd6L{>0e-U*lLG445vmh zuc|BtU=}*K9uM(LEORxC76f2D=!O2+sIufV-_|ZMQpXg^cucn02WIW;xEd(!bUWB> zp{lo?q(!!1f#+NO-By3YNNcG#_ucLEte?le6=jd``J(W8huh%vdf!=mt#`AH9hfw1 zZtA(WJgl6IDh3!M6y#<%o$&+1(hR|!aEOm>6K9rtwi#2oL>lIaPqa~LT1rX*hnO9lA+J+B9=&vRh-oRdP)7*7WF2w$Fg7d06!?lznc^?KuHH`|yQ^|_= zdk`8ORKyEKC`yV_(#By7tY|$x9CcsYPRBmHm&*|^@l)EN-R**}qLE1ckw!n;_pP1Z zN|%OjzD5wNEJ?k$u)#ywbBCheF@GWI%knqq+RDsF+t!>TdLeSx!ff~KeC@YDI&2uP z6}U>*d!Jgt6e?u!YN}@|n@bMytkU%%Ngj9PR@n_uj>;)CQFvc;=TPV`u!*`_V*ph_ zfx+#BKp!Q=YNFB@?7ZU7Us3Xg&t`FFC!T46j%_pcSsY#FRP>uE27SY7h8R4ZSMyS& z<;Q2W`}M>7ZS0^6Iqp-bp{VS67=1NXD*+j_7aQh=jpb=-`_5iy!VJJB5z*q zoNwZm1R#(RtnO8Jsz+e3aD8Swq$GZ`Ua5Pj(<+!9MTI1CnDcuZLgfR3QRcjJ%#|LybRks7W>$J? zN+v-?b2Y&<1fWI|Y)j^Vmy5F>oun4Br7b!UM}my1Xo>XX@YEx+XoIg8Lds2qx#%oT zY)op!s;;3y+YcJ*au3+Er)7*B>@x>!Q#`H;081e`W*Nk7JXz6Hca8n)B zo``8cOxX+f!0k*EvNa|cC)1cS@u58z!8y;G5jXV9EFC!M!t}}EStx+$^CW(Uh@+Ek zP0KEVzI_QcHrCW{(BsvDc_2k!)=MqiH%wnt5ZF=Q2>ePdlidO%dsI+pnHK~zT->|DUm1KRy)QwDo(5z3cW|bbD=k19o9(GfGyeS~B8dm#xY98U;>x zy|XbB4vDF&+j=b;0Ygv3!)PlX$52$x5UQZ&i>jQL$C0Cl1A=mFG4`a1Uic2KqbKce)3Ywm z;vzMzez;Apb!m?|;id7qj~;X0%13YY!Hz?B*V%}sB9rAod_Ih4l&0>>p6O5P-qa&G z%IlF<`X=Vg^2%+l4K&14;;K)ZAjv?dzWgIov~M zlm2LWyLQ_aFWU9naf5evp=qe`f|2qDwL$vjuI=jE#ZcLqB3J}HG7qgWiAuc_L;#k% zaCT%!b6a?km18NdL%6I)G>@-^Brk{KUXCD&tZp}ZX|y)egt3@_A`~huHfsdM+~;Ed znZ5Blr5%27Rv?cM`r^Q<7G{Ia=Gu86)y`#MWULOQ1?q~YnK89al${d{W`3+| zQ7kBXbyZk~qEVbLTQWTNS<9j3Bqe}xcANs`$}>cW)o?llvRQ}zXU~xNPsiYFuq`6f z{b*J60HN3`8uJV6Gh)B2`z_E82)0H*p@xi{Xh?0U!<_j~uH z%(a4`e<Uc?lm)WdqsTze$K{HUv2mzko*I*ck1uxvDg=de(P0e8 zkLkRm>TjbecQ5hjdvoY7CRu~e{wK8k7yS0Yul@Kt#;_U$zDHaxi#y+Y#+Y{-&vvkg ztu&2V`=Uv_-~63>*78j~&zFYV|2E3&E6Iji-|FwYYw_%Dx3bU+ucUn2P%N^nU2v@p zy8YgV@_c(P)>Xo{?U@yAsoUijkGacjRo^gcV>PYhiL*u>|bb(V;MbvfnxnF4NdM_)hL=8%q-k!(%> z-cz3p#R#r52H}RD+fHTQN2*@IH=jd)b+#~CsrfZs`I(mQ66D}DJ^2B+NmG89n}d!T zaXsPSRH|7UdeJBD81nO1Zb>TkQ)PlCevDw%K7TQ8&n?mwiF z4R_yY6JK4D1vm~$jKYlZ0Sg`%5{1MYh&m#NG7q_Qdh8w7FSI``S%Y`x{Iwv=^17yEix9MMJWYv2O4Om3y=b33eb za)BSm69Y(4E1z#qsvEl_Gd&Jy&8T`TzztETT#FpS!Q}2V8BUL#r&WC(bkW2t23=j& zzze+}O3xZK`9lA{H>fQN+q-@Xr~?`qMOjX1{#3*4aWh4v449UVTwx2LjF*D5U+z{Q zfkqsbWV32CLn=P04aifW9Qtc$SU>c#en!k$vYqYFT~q5& zgpV`rO@G4|PV#<(-y-YgwYGU;m(#p>6;$V6t*-z9cz<_s&@V?)Cf%u85aQ|;$U^qH>2nkw6_Ondp`KMwwcUn?5@4Eh7b zm*Jmq#}ZM!WRBom5n)!Yw2@}u2R~dd0p+-Wq}6J4a;P~5r9l}YN+Pcym@|-E+YggX zVDD3!E%^+ePv|VHHW7~U6Fr?R72&xye1_qFKUrS5>$j%Q90Y;A;5tCyx!tJ6xLTKa4y(tkufZH%qoOoO)Gg6`1QT*z;1UU#4NS+V0M-2QH*<3qZ*o)@`G z5%{l{dV;ht&$Q59+rC6yEC$|O(->j$nY>gJP%Gmo0PNad@zs7I764(m!q{Hr18V@# z21LNpT!02l1}zV zZzI}Yic|f){d@Z@4}F|h*zO(h`_46s*3;?2fIGhG!NWpWO4Jd$w3? zfMT=&3d7VHl2?s!OxQNU6P28xBYR-kB2mz>7NZA*IpI5vT)BlBe?sbyvmx zP<_2%{IoF72y3sc%Iae9gnU9A=VrOb)f0si^};y<`ml#dqT|OjL;;=^<*vIPLnI;L z8}2xC$elMz7V8r=2zjes1juM`lJVuhq zEE-hi&dNd)NqQ>?G|^fpbTA2eoPCmaCn4WW%8--!6{d>~2k3sB@MBi7# z?>~3K)OXa}w`9saHTMFQ{mr8v@0;`2Y@w@te_tr$U;Tlu^wa`9(^7lwU!Zg#Bop!x zVm%O!^XXyk3QJ{gc??!TCk=3fJ6U~PZi zr!iB%MRy++te=$V3QTiDlCC3$#NcW2jY*M-lTu|AOHE#0WUB`*Xp0^n6U@8+|A^%?)$R4 zj6uEJ^xpt=*pCwO$Fzmwfn`cXupLheP7*43T_Mhbonbo2!zB&+siW##nyq>ZMq(%O zN#2{Pkb(HZHFTM^cEedos5+RJdz2|3HqCyHnO|pnG%halBp;yYrS7&j(BCoj{z{u- z?9$(sk-%zPkF~Siueg!OMhOid^F3%UbbriLhqZy*T#hk2jTcYBMj7S_0?{s}7=x6Z zmOx03oESeLth+KoRLc;NMdMe>+rPK9y^ApTHUHoS`Uk?Uue1rdEc}i$|3NsL#<&MDgO?IMD_NWNENi0G=gfNcM z|Jb{-=2W>Z{a3!~TfQ6_WV&l)5JY8AM7;Q_m}C%S2I1GYnwXQ5#DtJ^zg1o5Du`yG z&)R$Kwb$@$AKu6ZVc`DCdnnr2O6~{iU%7z&!FrZ_1?u_L^{CB0W|7#+bxKi0)%yF= zt%y{pl~X#~;VZ*%QZ1-=>9oZPu9#G!YK-t)nVRSCV+_ZRR7A(y>}H zy1m-YzhxHf=Mx*>`o(uBKp!im2AR*F@sPhkgZWa0eeF|i_TD+(LHa9v?BFo}_A7ksU{82p zMHHnvZK=(SmYfq8*C?|KRNILJlTx;nwc5{G6OjBQT_)vR$%}I0XH`~>cWEVBj6EV& zSnO>*nfrm_l%H8l{x=-ae&kK~u$Gn2$eZw znpY3DY5RBA3v^gC{aNm1dwIKlKzjz&#dJxj3WW$w4TNh7tV(UOv2q`nMR^W!HRz() zblOpzv|ZxPVZ_ye$>_wKk3|$_BAXxUGJM25fvA^|=@t{tOUQ32r8T4I{2Q-2L4N%~ z*!dB>vFQc&!($-)zKKJ?A*He}WuH-g`SRgWW)GzCQ>TzZyMl5qthM#chH)26MNOw<7MwNgy$=A3ph3* z&QDv~BAjD@ll!?KXcW3>cS#$r7Id?YDsxML35?sc2wML3ka`VJthbv~Zb#8dLh&F{ zgHv_@YbGw$&((Cdf8)c}$9?;3x?UxOe$zmszwRWmKT~2)iic;g|6Gwi#?PjhalDZ!biUp-hY7iiw)^o` zHskqe#u7g0`8bj<$nojC(63>7BOHeW!>`|c@0Paz;G5}rHr)kk;8AUF9&iKf<-G@} z@2PG0+D|NdPFQ(4O-S0TC#{kz0RSVWu=flN02*&RA#h4q5vm36Cgo_snoQPFAh>Pn zQK*GfXdLEzxJe?TTF*ttgg>`HA1xH;-)cv}$n+jh4tS3|_Uv{%IXCBpgLw1y1->WO zR$Rjo<0Y^DxN;NUQz~T`4p_WbPE1?96*{UaZtDqxm!M`@ZVVMB7ZC;xU}O9 zG1&isunW=Qwe#}40>5JJ{cwU@+L9hF?W1>X2skW^{X+6(PW*oL0QL-HI~kC$iYQcVjn!fku83rla3M2Y+ZawZGb7gG!%^c3nEwmx%YYQS@&0ah;L<8PfNkU|^9tzs@55C{4=6QO?dHX)iz3@Mo!XKM z)J!7Y$53IFis=Hd?YSk*h*4dq6EUXrJrJ3=v*lWRk%R4uw;Vp_YV;Gl5czs6q~>lYeq$1UtUNXrih6JOb#{;GK;|Ei`}_j;e(YtsSd zA){Rm1(_0H?aC_L1+=Y`#3YF&*dS2YX-2-4x9};GteBhfGq6<93Lo=Gyz%j7o>c3? z-L;00A*4sx%M=>4hW^POem7V>$VU7Y{R~#|`#8ovR>HLEQ6|}yygwkCD({&t-f7TW zjH`w?tO4*S@U@tW9+x-4K8Z$7qT3EN-erZZ5bQGN#Djz3i+!4m=1FY{T49yQV4UFl zV`>nk?W52eHt?0csn6&kGJL~&i?Mdnt z&Fj@Qu-<1E5!eyMyUT1DV?@W5#~tVb&>U_x!Ku4tVpgIy)+ZFQsrgYYbAij@*BEoRxCjc_fjOQGUK3ESmjZ40H- zl7!Q60=$Gu59yYIBbv$@Fqh7^JYMTU;_~QWB5yp*3+2!a#z)ecVM*+->+R1y_RH^a z$083RSA3Rx*5>ndZ!+JRhLkS9UWPFXZ|Eu4RR+OsJDS-vY&L;SVqXY#W3Ecxr}P=? zZX76q6ovq44Fh%#yWOtl)~cxH%`8076FpNEZS%P@zl8She;XXV56^#X|GXz|D~;QUPeH86;sV+&fyP;t}%6A1{}@g^Md;8MC?= z$n01Zr8KI8@CYmqu@T3rCu2lx<6sE0mb>QEA}<ab!=t1gIw)jqTy1d2i0V?GotoyvGoV}r{$?4l_`0Pm1zqVUhMthI zX4I0GCyLY<(UL$g<3h`-JFDIgc;74ob8QnCS+TS1Vy#YN24|Y*JxTo^$7?ht7AHl!yK>^qI zpK^u!-FF_Y59)!wa=>}pGv&i{in$Dq$Mbr(f{yViG7}^ONcoVjNzKN2iiH9P;l>ca zI1|-Sjf2(hm+G{OiIJg~o!{WcjT|?AwpPA1Bc7Pj96-2c}KNwW&7X384(tV`zvzQ8Lc2?PZ>`v`Z0&F?01}ngFnZ z(ymwTLNh7#_1QO=BAPp;AUk0}G~l6F4%Z_%{@f^jw(U7vneqlm`%i7$jB0#n$>QWg-}HRs||yP2Yo$m>w>3KJE&y(^rqCv_n z$H<=6CZlGr;EdsBaH5Winww1xhL>}MSn<@_HN(*^5qa@jj>ntiA@Z}Pt(W3%naOw6 zhJ0^&JPLoQw8tzo(s!!xRCc6rn5eW=Fu53C>IHqw#5Ja6yAGe)!pLG$nOawk(TdHi z(ZSq}Pb>PQMPk5~E#M|8KQ)oWCiIi1KpZ#AzO^X5qq2X$^Y)cc`HIptll1mO-EW%d zL5vXpxvKh!+V+xcMeZeAe@pDcC4F`+og0nzl};M@>Tr6>Vc&HI2kpXN3jbp`U2a@m zz&@MtS*)xKBbBvmi_Y336mQSoj^vn7r4YP~iqv|PFsnJ;mC(dceMJLDK2sJGsM_!L zEZZ%1q)Bb!V$u)*rx(IDq9gt1EWlm5)z2(I?=lAmIoBpjl8DK#o`ol=qlep7?~Vneai)Q@Yco`yfW&w^ zXIJPtl~yW+G~t$t1byLGF?>+%dNhVsN7#)O&}nT&A6L8W+zlJC_As`nEhpN{0nT9U z5+Ay^x`Ot2gx!ZJ;&1FsUq9mI=zej#_uf=uG6N#CT{#kn17P8K1XJwNvviga7{iQ# zv#Tu3q-7m=R7Z#^I@PVH;MVM3DL`FfiqKkZ^(Y2rJX;gf99!=l>s#yG%d@gBYuF#T zn@eeRZ5agZbAkeN|!qh+TSLUw@6#XSm(=sCT`ifkEis!e0*R>y4{N z)F&Lhunvj>)9YZeh$xteN2qN8$oi+Q?PyT$gwEIaWQJLxi4skiqv$&EpTyG7Is%B(eBWt zgm0OQESoGmmSR0Z3lt$2Z5f3yTm-BlCdCfMGJ4`UCM=6ha`!y25AirSL4NlbyT`7W zuOo65dcov+adiUwY)I=(wmJKCdqkg~;Fa%y*^E3@b>>m6D9@=N6V_~*>0lygVV5AX zD>DwZ*U5nE5YXM@Mv;z^K+i0{=-jEU!)t8XeLj=lDGt4%a(QoL$IieK(Z0l}asF|6 z?y$gRek;(;pGtK51tH-Z^t9z-$X{`afclf7D{Su6HaQ(z~WUsl#vSyh>RDMmXgm7Qrt z$%V@!u-(n8n8fDl08dGj9ka}grF0$Lpla@L3ze!dqLP4}iPRyuZVW+LLQ6?#lq#NW z=8y>(wk$EVS;9-knA|<8@lX@{s0u9O?56Ge)yXc0*!wKeeU^RE&*yfVm8Hu9-M~2| z%juFh4aV$D9YU20&Grkr$apbd!s{&`gVe$_C2PFqrIi;`ptQ5r3=4~nG(PdxdZ;eI zeW;{>Hd*Y(CVSxb*>5qh%eTMmkaMo1_pr@H{jX0SsQi5rw!fiW>HT&o_Zx@u1&Uv` zoj=C0dUpH`?l+)+lH6kW-fEpimx0Wv%jwE*Yycx5Pf!~UELRqks0M`<<8Zlfn~7$z z<_PfZFkgl1k!dI46e8!kA39L#l*^o705Qu>0p1>4cwAN}|2&5Hrxwc}sXZ~0G`Jft zxv*3G=Ni8XJuCZq(UM%egPxtuI?Hy}k~gX~Kc`?BlM`=AsH}A&<|~C;*%dsO#w%Pj z$hcN%w-%3Pt!$Cwpus4ck*$E*l=OsN>87t4V`9am9pWP&d$#`PL(iX7{@2Hj*6Yr# z&wb^uPP@B|;O~!r`Mn^R@MFtIrVqzwoP(46c99U|cWIS9=-$`(^{; zLwk8Ee|^_pdJN)Mp%;5;FIs!)GKga#q{*||&kn#kor%GUS__K^8m(*CUd{@_pCsGe zB)8K@IM9VHHX$&Hi^>nsi078e6H*|f^L!WbOLkbIP^lwwi9X+S)+dupaLEn%5?xb8 zf0x0aG>)(ScJTcf?QbmPy%c$CA=lQAt)o5NjsE-i6a2sA!2A5$zO{=lKewx0din>&Yj}E0jw@>qIP)r~!SBfcv25EGjlTh*mSOk0ClL25ohJX<&M)Zt; zjcS2&>TtN1g}swP)o~(LHPi4IjVt#2Imzo|AEn_s#f!Oj-D{GXGb$|=`|H2|>K&H- zN#W_63>$wE!wlSGUt}Fat`dklTG>hu1wS+?4fEgVHdo5a1&~~+AJPE3AWBH5-wc%`jG|O}++lQ5qo|L{2q1%t?I|%{;=uy-^Xwr4nnL zKv-Mp%<#dIMb<^>+szg!Np7xgjP*a_V9dIV+e(mub8`f3L7W5pE2nIcZ z)9Hd%g^{AC2V%YE3X>eIR)}8$8SOu3e7;fgNm&_Dv}rS0bayRn-O*3<VmZ> ziksRiZ1qq*SKU*8js2kN@tcL;RV~ynSoJ3NO|zFybd}XXv7U#3=EU(=t{&8@t()^r zLmVV~)5Pqkk(wn+O#@fJksxlwxlE8ew_*mFY~Z%2xbfWKMi#wg2ae+h>v;{$C^#UW z4}=fAg>&X(m-0i`m7KwCVEOX=c%J?^$$7w!UQELZQ`dcUDZkX}iqh-Garm;34&RFL zE=Q)^ee~j%@6HCh`NVhm=l=fRugT_Gl(TEd1OMewR;1QTlzMlZ-luer`1vc|rZKCG z>l5rY_I7@9@B{0uUf3NL_YJTAFuyCae{J`Q&-PDR_KTnYwlARnCi(_+Sg-FT~%~{EF63Js z^-TYL5!q@ct2(FprnYo-pln~`>x4Y9=@b*En5`nIXN4i!Bh02K zIYRVY6X?RzHU-R%wIS%wH3}GPsbGL+UKVoChuKGEM@+M5|KlxpPM%Gg^DH~7T z7m|P+!)5r~4?ar$o|c!21YS_R1c{se{r#{TT#h^z&dU{qSL-3}=UV=C@U72UvoDnp z&q{vRU38xDC9nJZugCp*7*+p)^8?EJMId{o!o3y##c-bp8)!bE;JNAdfK$;{|gSYJ+8Bf-#LMTDqgw z2kS6A8EGRQw>`1E_?^lV!_zMghvWH?Lu8%T6=2_X)3vA|b+Oo_~n%e5f> z!>T^_EpwmP(fz%(eeL-}@sVhz>ypsNf<>p%dHRYq}ng1Ja= zbk`ae0;hFT0L)>;4wwNncGaUa1fBiNCP6XA-37jIByLZ}Qi(uT=J820g)Gg%AwrY% z=P~?8q599G5!@$p$Df1po|WD0p?#tj_ulgg?6=R_-rFUtVb7103!HQSIXNp`6^?PU zr-X>7m)yQ47C|*aJ8kSDo=f^n6e9CDhV4B1J{QD@|;SEt9^s=)josBxn
nx+&K;(S+PNMx{q^r3XBGsAJzK{IFFRDj(bGft>+y>0k0INgEVn6+c*P0DzgJVZ*POcB2T9!`DKvH5=ykNy)G}Y%r9Z&Ldcp4fC0BtZN z^C;2GLRl2m4r{7U7}GDby{o*Nl*wOFw{5QxSC$71? zqObMbzTwq;Zg0L^<##Zk<%(ivs!$Q+sXivvP$Pz1>8$AKH1Z;eosVWCdE|xlph2Bc z355u^rR~KL(b6&I#REEp{3tw8$S9yV)ocKzcHr@Ek+RN905_*kez&&CZ9;~7rBuG8 z#pz+5-;8trw1MuEhtZ5L1+so*nXjVXZ1T0)9=qs5UN$J9oOA`p@sls|MS^?BMZ|AJ zG7m;N1@2dDvbIf!pZK~@k(iuk;X)!Ln8U}lYkNzSDF}~6OW8CwP=K#$-lcvo0Z#k% z-->SZgsbz}nB@Gf)@9yXCZwNBbcWmA)xMHrF;BSFq zrfFmv@3}wjfb!G)eXcnieyHcCwX0KecS-hkb|q&vbH8i#!tX}*8N-`)Ti(12j>XiI zR!Jx)6S!m#L?dC_jf|XVq*UTPR_Z=qo;m+k1-SJdSz;{C?t!UDr>Yx9Ok~cco5Vs` zc{SNOs3i~m9Wb`!=TzZY-}p)F>h*`8=|%P+m)|8T*l(!$Rr-gXUvIoz<#y2YFi&^z zS`LK8yrd{`wuPy2u+$hBDo=q_Cb4)7Nggb8KcF#$VsSpVS&jnL(@xoC8*k=9v!kja zCe89b#K44$$^P>>*iQ|7reeYaQXo&e0*;u17W%tyi>J z0A?u4Q%D^7!#NMyvF%YM5@CKiDJ;20;c_iF2V}<|iVV$Hv>FJbkz5^q%X2$tW)~FK zONUE6sNd+j(5Ms*lOO3%)}0+UUM1Q70LIozBvRmzv7X1xOy20Ly1P z5t=TM#fc5TJ+VFl%ytMWz*JH=l_QSq={%3a$=%qc^GOX7^^C|@CGSs?d>t0g=iq-* zv(|&{YG^-ux13g+meW>k>SE!MXiPo+lI~evug0NeF~USzEtZCA%g035nP?^H8Z>8R za&IuX12cfw)Si6;4ZaZrOdripi=kb^6CxQBAjixy1o$lrKNROVOZyeO5{Ja89vr3| z_VlS&sjWWStG38>7t;*Q%-C$Wv&q?{HWZdyXTA{BO|h&Bf+8sVklItzD(xY>TPHCM zaQdFmplvE+bUf72S}7pj17T6vD{H~UcSFO_HqU9o!z=^uB^s_1uU;Jd&sMbgc|H0x zyI)L|IGcMPkh8XY>gCT%E20Cu_>q7`YKFt3R5Z&RL}DNCw*{%h?4Hr&yvRZRfQ0gC zLad!8lSZo*G@hl?4Gwan5EBVl-6?23QL3GCaKMo>YhdO%H+gh~(K!!n&P!yRnwRtJ zID3Wpo9zX5YK5<%oi8(?>+?eyy*}(&HU$3mc;r89Bv-+A305CsdzJcXD(9<~W_4k* zHt0#AWWoW=38!I*s0^aATX1>6EEWCn-2v#HnNhnHy-ntJ8@) zIyvEXT4;ckYzD@V9UOtfFw1HwUzq7mTH;E;azMD%%MqU(fP4i;2V5#r<>1?Phck_j z0_Pt#5BK$p9m_&p)OB;?{oQvhwFf9yp_e0K?L}*+U7+#Y#+z#Tz?(^Q6r0MNhbU$+ zKP2pFBZ7mC?uPS-uP9Uir{kzpw)7Y>7nthjmIfo5%HYA=BB#koqNclLAUV@1)Zuv8 zpVDn{cW>JNGk2v;sxnLZuiUs_34>j6B4*->EP@Llio%B*!79kUiSS{5`=GY=YD?Sa zo%hCxIL%Tf@MKn2R%TTu{#+Hzmf}gcGrfm*tbd6ceU-oq@u+D7sV)S7l$tu4vb#pR(XjDd? z*|M>hmq`+5#f2&VhCV$qh*26k#`^F%L*_a=#;LO;23S}T} zI%Oscb#~kpKCxIYj~dEp6@@bWMR7E?nlz3g*@I{P5#XrUwZwo)5Co}|(TsC#jhAHl zSK8i;gE;G*_Re1F8U3Q%4Dlx<;oJ}3V*6vC=|_3E_Ut>7@YGD`@|L~J-?Ou{iwVAEf_F z8F{jd%RAa9S$TWjxq!=ZNsq;RKk!QMXyEZwHFIVnCkeBN@;!(ng0fmp4XhFIINDYU zgEmSSuHuC$IP4f0FR8?tf@_?>ocRtVw8>bfgXyn^(93sRSHk@7$(nj%UB&=( z@ebc!-r=sT_{4UUSHd@roled+W0!p>mQVxesNA4BQY{Q^!j*F^S(&>%Th7*CNzTC1 zFg0c3?BIDsto5rf8-oc znv(;2JxH~66K^SIHJYrbF}4t57SxVwls*J=@v&?_63njN%8v-&vEIH!`-4H(745Gc zahceBx_n-K-h~T(bYzhfTaVF_$crUgj}(3^SVty2;FRVqO)KE^k+dBdvcuOpAh>a| zh>Mw& zm?eZNUN&I362rHoia_DY060Icf)wnG-UtVk+$ zRN<7$uxw#jmAX{6&||az5vD(hk|({u3%ze_q^D+7FH~DlUyeG5AwiHJLS`fLM#4^d_vCL}#C8OQWTTuSQ- zyQYpt|5tLJ^xAJb3;EssjgJ`ecZU;NCd8&*+%>AO=SHn7*$bP`hvzv{7d|fsLrnvr zYIK~kB^s;qpdt1(=o@an$mD@M)du2`o{&2p2N)zQm<{4g5mRV~CfJ;)zLXmcqYOBJ zj+axruNF`|{at;I*Pif;pg>1;mh?jXZkmZFEw(ewGb`G^oozMH*b8a6qgSL#;$%$Q ztYYhg6&@xA5)Ro@z-G9?(AusYu`fwujb#=(uw9xqPnQ(gZ_*6dO%rYu1~c23C$(RJ z^T)Q@cXQX>uKl``EZJFhbIm>3^Zs^gBk5)KMStAk^;1cpUZ|eAeLm`89TPyIFv3~r zuumJjbyy0EAlj{u(4w}SjFa#nS4*ggrpmfe4x_B0xdI{-ICYDfmJL?1V20fe*3-gc z61=RYnl&dX?su-+f1Q#n=HL~klK@LVw7&`cF{8-s-pOH#{@RPxfnV<}#BW&$J-LGH z%E1f&pswr1wh}3!9I=7NI~$U17wGTydkCEw;gZ>uao+5v!#Ex%mC9wV8w&)KI4NeX z{WVVcepESv!xZ+i3N*YgssgLl%%($P|3~otqht8uI-1_GHlDJv&os|{;e;g8(V|{r zkvLLTqcubhDHI1;A1!$Y9BfrXGV9otr`BO~=#ir8$Tyy;tcURLfpW@lL zBnqDa2GnDz{7$X3Uu6c~NsXU12mUEea&7Ul0i~Tg_-GC4xkJy6xn>2L&`9>~Lt`qsx|qYqML8 zhtIEaZt`K%(?9<`{IcEqohFxuevVi@*w1&x`E?lh%#+O4U-@_1pK%A~Pwje+{_+K1 zY$Wt{c@by!?U^5L=h-C&cTVQ@{@&Z%Q1F)nmhmYm%B@fT^HlS~xTFjE;+KEbhL1$| zy>F;Y1(pydM}JocsJu9A*gTm)!mQvBeasq5Vi4Vn0n)q~tw?=}uUu>4r z#9c~#ZkcSSzmkkktp5*T>9=ds(PxSZT*+P;cv+o(DjV{cZ)2~vg(I^9d97aHA=C^- zXIo+NnB@C%y=!1937{(72QEdkEGfcll&=+f1|@yejak?+_oy?eqpdewr~(#kgc*?j z-rduE7u9)pxqWOg$?w7XY~K+e!;Is6GxK>CJISx&SJAoJ?OCQ`w_T5LDp++ zR-=Wh{Kl*HtbzBQ{1xLjmpU7FBgLrDHILXsBkf}cS(k^S5OVf5Eb2sJu<2@*hg(PI zym=C3I2BN?!wcnXKa`yzu89gYTH6`r&^|%T#Za^d>#_7$`#b{rM-k`OED2wt{2@*F zk5F#OUeRq2duLJ|P>uJYy?{~+sG)t{&_%3bL(K&6$%B!Pahi1n^bbPPikvnz?lU_qyRH;(OMI-wEy$^}JpQUqQW0OU~pv zz&fM&MpS5;7MDPc5zP=CL9_+cTZ2eOWNTiL?S>ys`S%WZjJuj5CAOjS8H)?RLuQbJQyF-eC z2Ei@qPSD@&vJ0}Z_v(!vo_f(GPu6EY=R2?S*~flvdGhgI%8uPNNghc*+&}#u#!gPm zQ?9N*Vb`q;$0%DC;Sf`W@|+#G7~obuuobxNK$F>_G+1qj)drm=D7lu?9kU^4yBQ|( z02%1N9VBj5=T6?~9{^v(ryzoTyt`cDgvztZ?MD3CcW)QY%PhMnIh4zf)0pA93B4uEJM$X&+9brn%wY{ zpxy|dP`#aWE=>wM^)8E7vtUy8`;CY6m3T!RhV+IJ82Z<5zNnSJ&~_XVHxap&x^97?z9 znv>?i(j0R7NQ=_t62dUibrEW-0yrKIN*+=GSJg(Qq{=0;$<1Mki-($;tmUx{OUDTG z$Oae?Ini%65<m_{Ucx?c2Ym+s@Mc(=L~e0_}XW7U@Y&IcL+S{nI&jTS*d-PcjBr zI98u9l)z?(E1YF>R^0R1Y_v|6xTtZNOGcc&TuIA)YVmT;O?^S^3nPv(_5)VP%+fOP zWU<$Povn1(9euZa%Ol2h4N!Tx=|y+<=RUj4@7tdgp-Cvxd%MTTopTQUqyoK zJ%;%^FXq8+-!t^iVWe~E!V?H(X1;{3KiQYAmG#^fk$9KsVQ+tLNyhtTiQN*63a{l! zFE;k)-`ovOUWJ1CCQa#^VuhbdV}C0U{;v1UqV;DTnir}kfw&xXc3yJ!umLyR!aN>l z2{It3!g#`3HpZ>e;o1+>Db*-39JxN8r!2i)qfFvgBF@f{L%d>npS6Z0Dii@AVPz!? zw!AI`@^NhF8-Z}V$m*4sJRXzU2Rtx%OYEw)}rN z>YP>ofM|J4m&!z~35^TXv=VI)9gb_jWT+;=tgWaY7YCm%>VJYf}$vjY|L(O6yzjlBx2{cuW0w% z+U zP&sc5xW0`|4XnqR1*h5bbSQu+J*sTJraF1L4iRp^0J_(io8?UIBi?#2797@h_i+bY z{m7JDR5`rEBK%uu$&(VESKYoZB|L3iK2!%KB&+uIZnj>PfT1X|bnLT_I65W+6-f_4 zLcqha!%cgsRrl+eSy@uCH%J44VOw=*Ed|>Aog^akc#nk z34rsmSOEg8ZOA1R9tw~Z<2AxXE$WhfmyjRIqACA1v<6k^9@}3ng!rJ`u>Iq%by37< zkVH%kprjCMP)-*$59@qi@ApTnMr{aX+}jN*Ls&24C{0oWh5%rOtnvj76{->q-C-;S z6+xo{>V&*l2>?FuTNI5yDhF$v#1r$IGw!dKhHlyo^FTj-pYM7frXBwN@NKp*kt^Cq zuAX1?z9ZQ*Gt#?*sexUDUx~1s$(}@dy6T=OwUFm*0TLrUay2qI4n^p&UBQ;H-=JG3 zlnq;00j#nV*FE;QoUg__$I)^&-A!?9uo;Gv6vm{0l0u}XGa#h~VJDG5akYOwj6N*e ze}1s^g73#BZ;|T1HYkHe$WGG_|BWZe*Er#{`RcT%r!0FwX?^) zy|+38zMsG7%^Wu;7W|U-cX~em{BggxEWYMmcJqGu_f{h))WXO;>DYfYsWR7RXkSIR zZv|k^(V0_C>F%S=P3+5O#`Dc?LT@Is?Jm%p&ihdVn|yC<;V)(sT@k++Vdn>3yk&OL zW-9^*C$kDp1d6dWW9GrKay7POB@z)RTAhOGWQkB0Hl;H4C2gE6tUMm|ke zw!)+fd_oAjI5bjOMTbA~hKwi;jPt`)74#v5eg#FB- z{-v2A(eEsMp4)^L7NNBCroQJ^uY1c%9)$Tm%=cR+-AP}GFTuw59{%HNG@^|nzug~K zL|FqH*mZ-`OnpzYKb0kYSF`W*cA@HbTC_fhQ#XgcH3(<0ry|o$-^n?D#dnxVG6(jt z91wa1M4UjvJhokxuHhF7T7e;s*_#QUk2t>eDOx=A;5sehoetV0v}9XkNPo}T{H1pj z%<3B&LHyBsRnm=vaV%R7v5=e6w89aY7$DGiZ;F z4Kq%MTYdu7>w~{1Oni)4X&o81nWBs5OOZ#*@HDm3bNu3KeR-oU#~FB^SiklyUUaTn z!-wCQ-tLU~7o$*LySNbU<>M~WGA`AdPMH+T^ThU6x}|W)f*22$WY!}C1RXJaN4hd)gd#paRMR;Fqg;K5G;Ap z*U6m_liBz%s^l`8kB6m}Ky;kB6yh@LMH!J}!K(+)r_E=|`7hs`{{Wcytv=Qp*^{)+ zm#w{~PG=S3(*>f~nN(s}mgGEE+2t&?2?5!mfZ;isv`OumB^_$6?702iz*zy~ z1kR_yvM5ZG9S_zHD)qL~Rvr@17t+tBpWksRa>EPjIMTzTN7>+nXvy~OSa}hI`BoQi zQuzG1H6$|}<+8Y+JJ~kTMXiUA@lIZe%l&A%S!>)32Ph|!;11ORdKQ^_Np1O@3z$mH zZVrWB!g9T?SRb@6xOGP9YO6|z&YB>3QIVw$~)uIN|zBdCnZcNH$isvi3f~Fd9VeeJJyUW2Y{cO z;YW#gNrO@THp-zdUhfsc+KbqSt;_q9s5*2t(|oY~^;*5sFT!WRz1^Io)+UwT_vh(E zSjc^OwnUJfnaF?$?1e5wGT70xrEBcc`C>iy9l%i! z-jv|?!NkV%O*vb`Qb+StOajUtq58^VNN*H(BhSPZqwu%#`yt@*3miRCJPnSdwb?(+ zN@Njkd)xKa8P3-`kcQRmb}a`;ywYdoY+y(n!5=DD#>bF294sPs$S*pq3fl$h_cD?> zFmANRd_dh;YdzUUb8Gk9r}~tu{g6v}czCmIcg)F40FCct8-BfAo?wjIFs;~RxZLl_ z)Jmg0K zp42_c-*B3IiuY60UJCj(sRqB-ANtOb%%>!{Zr~b8lxgYR^K%+(oELT?K2dLEe*L6- zBHTj$(_EV#my@>7FVV5K*v#v3^2WmgOIB4bK@1 z-|xpb{>9vH@Nyn^btZk1_}g&?m)*Qy{{4|2CR%7l!NV{L^xA&J1?8juUEFn{mU|Dy z#)n-|=^zX*uk(s?N!fE;3$xQ$i5KL6g;dQokZd~WLsMuz*A#Iw&~u(g=0ShRfMXG( zd+HwPjX`0*1S1I}wBTp9N3*T2p4;}@egoP*sC#6<_F15>8I&(fke8&-tp0U-8s}{$ z%Hh#NuR2i@M~7_~I0K#6hAd`4BsT60m(*N|s-s)Io#uN<3<7Q}MTgqvV8fsaD`x1V zOaSOm%~5(~0^HI^wXImTI6?TCiT=x#jegAEva3ht13wgf1+MI!?1``E%kGI(3!V}+ z7a#UEJKZs(m~*zuGGYjgh7x>}&`O7zQ}$?<0u$fs(AjKRXJWBjfW4`-24L2~z;Q=I z2tOm@l&Rfhj`O6yJD!^cQfMCLl+NM+71UhWVj22C6SjV& zpG;VFapAcd>|X zDinMjw0T*fPMzG;s^-Nhe%;2%9IeD8-5vtCNCZ))VW*xmxjGz;z{;C)OjZNK@sO<4 z)F}(HulGx@?C}~4Z!5rp#%Qu-yM+%_>m~L1=V-+5h@#&S z+*O-rpL|!5UYPA4_I1>!hwocg?rT~`7rFpp8*I6ZJP^eevWJhay^tfY^hS>>-NS-;S(u;etNF?ssX2U4?6x$EQ($#Bwq? zbXdHj9yUb3H=1nl<42;tlnfMZi}!>c%5%g#nFV=(pwcokKQ9Fz<3U|#^&UBUbbSBYw3WcP43o%!>=U{ypw&?ljgDuw@est#05x@QAkK;9-F#T%uyA_ zDUe<4(zwRrP%>;goyagkqJw;C#*3hX>&_S=$HhoY=|0PbT8Q>%Ihn!Bh+Ikjr2dhw zaET~$K8fq4T@B(Jkc7V&cpX-L25s|dT=^!nP20%wScWrexSZ|+7Fsdfpw2f0tJF+? zRkAS+X@s4Qic(u-Lx)TE0>3nfiqY$ps& z+wb#4Ji^pDurbyuGg?U0dc>?rWfM>2a;Hv673>$*S^+3}3ihIEF)UXVKMyKvqb||_ z+&Sng2MQlQ)C#TSL5Xm4Lh?(F$2;K@quy`2Cvq(~R40Zd0gA(IWWWTXeFCw(h-=bN zwp@Bd#JkKM##Db^M54pw_XUaI9m zR6RIy1sqk4e6#aMYZFVR<4oLnbU8OrDwUGG&ab>`ilv@k0vvb;zR%T zR@5r3Docuer;a$WV~2o{7GLJdm6&a7(%KQX9&9x;ro1)CHmoT<4 z+T^d@l5b@H+O6eX4$u3~$X`DYf zy35D0*Gn~fpgHn-G6y9?We4M845M@ssk}FZ*F4>w2k^$*=+Xh8rVb3|OIgtkt4gU% zd)gf5B~EeCIeR6~aKcV6)lyP#q;EJ~Pdhcq1~`c{j}3kG2ynX~B21m)5Q>bEJu6^p zRi-N?SSfKpGt{WyFkWEsoD%0H?9gCov)+Qh7ZyQl!Vn5ag%eOXI8GN0DjqZtOKa<9 zrx91nC3KR@N6+d@#r^dSU(cU)Ecj#9r}{_lcGy6V2}FOK!~Pdq7xVc_vFcbxpxrgv z`|JrmdG3;y{^{vfd%k`$3*Eit6Xn?|bLx)rMIdiy9jIaUl(~@ekb>4)xSaU_5iF*L zLT}Z>UbYAoS|*CWJ?^2S*5yh^-c`q5A0w;99QB=HByS6HTh3gM5L7 z-fzjHd)rF!FX-2keZ~5xrg|R)Nx${9NPo}^-?GQ!s$;b*Ad_;UvNa?%jvq;O7}^5lZo+kU=TOKoXWf1qEFh!5B5 z?0_cY!X6z4V*)6%5p_uSrkkaHz#+(-mn4T3OPWt3XJGN$gxnq@t`7=}ln^tKSxTI| z1$C8H^C57W6g}3!!LB%-riBB%9v81P4)mjV$K~biGzvPGxYu*YTdq2N`h`2t@2=L# zxlN`=#fHMQg^QVWbcTEZ&@rVuj;sfChJ&6ITytRq^d(BCbV6t6rv0VKvm2ssE?^~HL^x_WU$N_ z?(!&yRt(){o7MHLpM!)T?E>rdZ8bjiQRhOb0W{HcZ3+ED5}WwY=k}u&ypo{n?X#-nt~QRv!$j2(lr?@@ic1EB}_0D&# z4aZw4!uzp$PK7#oE1mbEOxNK_e7Nz7%lm%x&wkM3CUN8;Bz{&44?h9@!rLvwzzr*9 zf5GX8??1fIQ(L7)T>qXl*m*dut&=9<{DYFjN;IC?!`-&fsDqO*q%92DtrsP55Crjn zLe@T`2UI!}O>m%#IxtFX3L+(h;q8KT-HCr1-%~`?+11=+KtB1sjpw?vy>1NpC-y1R z$_gU)G=01^dH(AqeN^x1KTLF)WwI8GcCyFNJ${wCplo{Lqi;HlEqp&fN0{`16=F&z#Xb6+d!#eTZ5K@ispo&>)OymC_-=-OR$ReNLPf( z9X?kr+)+yxoh`ZF8eFEO7u)OT__!(W+!5=2{rZx%*JAYiaf!73oQ01gM^CkrNLz(dW-p( z{VjF(S&7s|BY%C_lka=Q_Sf$-?OXe=g_9ASt-j!5>osvAq&UVQ0Uyf~Mk?kBh^eGu zX5Mj9xOSP?bID7~ap@9calDK}ZxTxQvYK>-z7UT1Xz2DS)7)u3HeHQ3Ih|94bAVc= zZe;m60ALj9$uIs+hFhTWNc=K)-(6^2$jt|`rDY%4*u@ej*bSEhOe4d>RyQ<{X1(Q# zr-gju1%049U=b}`jaU=P2kOa=zE+W&EAK<X7M==zJNyR^6{e@sGyK zkwx}RgE+XIe|@D|qgfx-;piq_wM>O9NouHVfR@)E!afAb0z8f~rx?4Hv?F%Cy|Uuj z&30wjqkT?Ngt9GMM4oeuHO6`)Bp|?|tTb*V;kKUlOQ|}xh0}>H?)0r9{Jqj>>3KOp zs@dO->=w4ih3FaV`k?WCo{8#Bc-5mv!=WG`n?z9+LFawGx6Ka60XgQfuFsDZ5Q!j; zl6xgJ2RCShm%|cts12vZhCEr9iSD4Dc^C_3A4jC|Z|Ui`tzze%P+!*c|04Q)gY^8} zIsWm*Q?299KWQ3#Wy9aT*nfsE_64`D;`b$sh<4=>&LmH4Ie*lBwwe?|2!|qc+)E+nY*^xnd zBQfc5fU}rVua}#@D@v68N-fQQYuWbIrjEB_X16jKk6*v<`FM;=evF-b+uCCk6~$XJQmYMofBnBw8-IJL&E)d`z)OvM|9N*u^cO<4vX^SA=NY^{=v?SD zU`ez-20gXhZ&Dd@CTz|GyDY$QB<;i4P*eiL?R)TnAqdzUG6&3^KuBTJi-it)_Ed98taF{GvRI706aaMMfT9R?RVeNoMMJ=wb(O#z)}%j2b7w92?Y zJg*3e|H9h@uFfQDG~9DBIlNJ*>SPa>DL_=4*;vBDF3oRZ5}VR^RU#`58gd#cZi~Gh zYuz=&i5qk1EcwMv~Y{8gCi&NeV4A~hAXH;brJoV=>A{J8V` zOBk?r2J{`}a}f3Ytb;W)qDLkotGx;1DgK5S>63$<4M;HDPd#}c!y}Y5;LMrf3jxRD2lb$F>^8|^0=BIr)hU&EOd56 z?2SrfJ;>0@#8{+`{B(QP_c%Roi+ZP~_*b6}9^N{Qalif^}`oU&tT-_@MIM z|ESN-#+6O==aY!vD%LERgwb}p$nHqrWaOHRcA?lnRQd~j>SKgw4)(y5 z;gVw42etz=R&t`t4d`P4;5vd@r#f>=YV{18_`J^?P z%yh;qU*{uzBPyX4bsl@Twpva5k837qJGzx#h5C;VYp~Zh>)b^5GBoOnG}zk_{&w`( zi|}$peI86VVxMDUwJ2GEZkg9o;(tAS{Y^i^=da6Kj};c~U-{9L|FV+vBlQn}w0ZtF zAH9dCDUCOjE(g!`#W#h~p>sgKg#~scd({)?s^}L=4RnM;(fM&ROhHx!VrG0$@WYJg zmLN+_+>l`t)yOs*GDyK?+^=@bY6iy>bObG^R0ob|tP+u~nwvt}@F!gZ(_FFBRi@1* z@_I6SxN<*XJn^8=HX*e)x+lEejypB627uX_Viny<*TL7b_0sX;F-h)0!C2Yn?Yg+f z?__&i8rX6J#L+?&Le0ijL}F(6Qm*6~YOD@}W6{@iVlj@m`2t`T@Y9}$-vjp4wfr#X zn*wv9Sc}l112^2x4P`(?2PJjne0T*LORATvGh#xUkg>)rXu+PGC~iHN;#!x}PE!st zm*UZ8&1?W%(Xt+wAMw%)&;mY)C4~iIF~O+y>nO+%%E4#G&I+{eQ^i}hwz?;M#_jI3 zaVskha>XnaV%Ic00gZ%Wi-N1eY?>o^Dw2|+=_!v7=QQo_`yeIkj35Avg5FC0p_iCF z5nfLY#7uLkHCqDOJlI*wmHs+P``te8^Hg~)KzDhidMY?iJ9mkOryDhQUw?DS?Edgg z=UjzByM$B!`C+H#^$yRf$|yB2w|uB!{Qj4|HU+NRoW6MWf72BBRtBxQF3>K@o~p8z z*=l!`&l324);NDH7!+HLn*tl#bKG9nK0p@kje}xh_QyHG9r~i74>m#~j`~@5h(z1U zR{zc3l{KlV1nIwWVqOWavSY+N3<4^GhzklnoCr4AW#4?bzkS?#(QaFsJ~I(Bah?<` z6a8|j%&N*v31!Lc!f+{(n20e%W`+<_T{^EY*ywXkQnw1QOn-MedUQMK-eS~hdE$-m z1)}Rk=S;2vLYa*Y5FU~MbHvBsYHi~OVKEx0krOUw3(2elwl*qj7?ow&H=wxYiYyl; z$erZlLLtjCb|3}qWAgzIn@p^WjKcq{I?h!^&rZ@&&#Xtgp!WmX=vUL`B(FWfKV=<$ z3~gJ?)EA;>ww>N|&SV;}4AiJ4vs`0h0XPsiE}|-e=?aLJG~u&iM&xUEkyNCVb@y6Y zDmsvHm;z~;Bk`_*0K0t*qM{7!<2g;?vt5R7yknU36PEc&-qF>gIX!a%`$j+=xrT675UZ}vloF1^K{iI zH!)n*UDQ^G6F;@BedLD4bUgvayB*Ruh!L~zX#`H8(b3QCJqNp)27CwSyVSvViufta zSi70{mF^Mg*Z1e7rY5uSB*ctK521pkn;-V&WVwVR$=n1+cih|UR=y|8R=ITmGX^Cp zi036`116s;GleRZejjw8p=u*GIAEq!g~Tg+q@_PQVpXgDYeFFM$Xxwdi*w7Uw;%Ap zXK%%(E7c>DuJ0N*nTAVa7W70x1{51~@6-LkSR&n2vWsguf+EJ{Xk=S3nqrK6&&}e`N zgCWXLl+tuKW`=_z(lj?g5P{+|79>NvniJclGjZp9>X8PQCyv61*t#Au>4F{;OFcY{ zB2SgU!Kkp+eN2^}&NN6@Z<2|3mlk#T))|Cu;FXh~WJB zUG{9MtC88Uv*2ySZP{WoyA)11eni~GLAxV=>e+82TN7y95b-Zh9hJ@!7OG0oI0PtBKKg|ssb-^pk^OXtmej%d-g6lkY z^e%cLPg*)`LH269wGzNYbg01Q(K6u8p$PBMS_<)9hN;DX>!R-S$g6?qHf#s<5!qX< zegH7m<~Z>?%14~vU3Ja`8^G;*Dd4Xu!mviQ-N)Uks7z(GnGXva$xEcBK*(DA7))7k zFLgy3Df5wTcr3M+X_8qc*laR#;}J=)2Q=_Z0Xz8g!x^rTD1TwJZ;lOrFuAFjMM;>2 zr$9N}y@>5&J9b(}I$5$`|M{!khSU#4;@v-axHQy49$v_v7P+r)&x=A$B%$i{*o7bq zH3qxo$eRQQ(XqmMIo8xT67mD54Q9cC11xA}Y@>O<1k#EUfc0_!yDH9-mI=*7D2{g3 z$~6VOc7qL=x7rl=fL8EDZCT0FIbn3H@Sx4-ipiFX@$W0cAG4_`e1M<2f9FS z!eNy`GBaeOHVK%Y;P+-{A8KtI~d|4)7FUN5wjHnIDr}a3>3mPpPw$C1Mmd}s38`o}Gsw!BCgL<`!AH1R2XkP zQj53dMlj$(bciBz?WANJ(XJj5M!mywwqWAP!ay+B41$_OoFQwjJ>vPA(ia}aZRgPs zHGZG)pfEemk?Iq3;@nNL%$z36f!0fOVm#?j)9xsd zOI^yOj7C$$Ea?eLXe*dHK!??OG3BzvLHZG2L1s@;iGw4eiV8*BpM~bCuA5Qz5;Veh zLALgi=5<%O>DQMr{qxYfSrFYh@28vxoVO}(OCp|w;kWqzCNtz)y8VrK_l^I5!`_Ah z)*|eEi1Od)_YX}{p9B0i2>y;>|Gx}^A4taEShxjfe}lKD5dDqe{tS#yL%CL+4n7a% zn)N%FMO*kF0`3YFS)3*IW-yTvk_$+=hxfLgBCa>>i4SBlwHnoHg924#$rB4{ zt}vz7-NDFKCZtvE2^cXflbC#Num7|yJpFG+|3Wa^R4G@mHnK4Ob zhy)Y(q90CO4Gdj8UQX5NE|}E@;`Z&?Fs!yFq^a}tV2$_<(ZrJ#9xHq z^+w~fH;D%H2dFY&nS-L!SOu*)$52&3kCnk>&g~^6G!X_Sg>tbFP^|X4xe6-OWCiXa zP*^RA5~K8)?vux`6c%lRk~!t!g6G$0Wu0BV*H0&aJN}Um*~3y8Ez`q4dBVl0-`{PV zERN8FF&)-pe+se-air*BWmcAr;Wd(*3ltu5Yp|}XayV6Rm5Ozt3lmciSeDyvJed;? zU*Lf5!2}v+2&Fsej1*V>AE}UG?vC=?Ik%~N>3Vef!N1Q{fo_!H^-pWgMJs-PbVRKq zILAMpIQ#T$#a>dRZ^net%h!8%kFeGBt@qMVGS90@FMZlC!`ta#!%}A_-a0{G8qTRN zRcbpAy92b=!utnYCF=HOV{POel$^!Mc0;X6XpeeHePDuEbuf)vvPE=2LuoP=*DeMa zsYb&x=u}y%pc%7IRUsO~(U2SmBf@0IQj#%QXeSmR-D=}AbiY&Etf~9eR$ZUCU(J-1 zL3vunH_0g--0@M(-WCYv67I~@LM}!p(?FTR)_P=&#zZxY#EmRXQz7wZG?jQ^HDye} z>B?KS%ol}%$U>=1Cs8X$|L6<*VcF6BaQ|?xt7WhE8`>wV-d{KF<=(}(SO!LG$%w^V z6b*>4Xu3Mc7)5IC#I#9r#`!`N$5KSb;uIU3Jh1~pSOq3&J#zPuU-UK#A*Cxznz&Mb z=Ao$Y-0Awlo_R;x)VTz?zb^~kEeuA(BAuyiYU|bnp{ZDZy^N zjW8vr6&zQxLKAvMK>vtKFaIPtwM0Dg3cg*h`yb=g%M%~!(hoRwru~jj=j+C$dT;Ra^_1ZfwL73SZ1! zsf+T_b7WhWhWkz@qtr3Xj&7^_{a4kIT2*L$Px^%XyUWJ4T4Pie>nt8JEI0N>hBIXo z1?&X{zbN)|8-cpOC>;314Xi=D%rj6`O``442>M8A_6BOWh8N|e9>o?~E^#xeRz+`H z{K(;_|;F1y4&tx2!VsxFmGbxHg#2osIl&-_AJB^#0U5o`u(qu$XmW%mWp&pa`y5`l0fY2^%k+VcW#W9`8y zM(tPvJlem_VLnoU*@i$gWi)Bk$?JKB*aZ=LM!BF492*9Oj~roi_nmEQ)P;{h$-bxxX_ zz7Bsx^Ca)r2R|N^<-6;c`$N=kV~*Utl+ZpsuT_TYZxA~bR65srI7;tbiNi0&%~#Wh zOCv4QC(blaf_8dso;qR7QgSTIk~d#PGer-{if6-Qx{45sohK-}ft|I6lej-*quzRK z@9TZgcMcV{N>d|Y^)<^ZNq_BT`x(R$ngvkdA2@CUei|gSHU;T%ayh}6*m+Zf5U5G^ zr1nzV-1K*(PyBj!**G`7kJwyqY!itX&wZ$pb$FbrgK#EuYp6F}g`%g+MX9mN4bP+i zhNOcS^@i3S@+S0H1I487*NNCOs)SUv9GBE=eXusfZ=trn~ zX7-O0K87A|mZHzH=tl0CZXpGixV;TdVJgU1Quo6y#jrBusCWY14Hn2mTsa zAwirL3SgB0A4?-~S3zXBt`}Z!$WIwyG`I5|J*`!J7?ik|#?N)-2Pbz@6GNQK4)w>3 z6aD4n&8e>{dh^li!JdDS4-4=Y8MyG~KmNr&B*(nrsv2sPU2|2SFUGw~X*tRNr(VD_ z$pbG_%=e`0-7kDF>)-t7Z%f$={Tpe!-s_x+H;_64r(k~86=qW%FsFK?SJJ@LMy?l4 zX-^m|``HfXCb3SZ0pEu)hO)DDq2eH2LNSuf^?XeMHYwGJx`%{WH&x`ITs#kzzL2`| zA~wXSj?K3r*L}y_f8i4UOs}uxZvemCYOLj@4a_`q*h|PYm5_tYe4sKezteDfEr!`t z%X_-DvFb&yz)TWh!u6gkb=G7x-B>a3Xw@CVo@VeqJ`2YXpr#?cVAVUv*Si3Y#UFlgS5U&TzsbN*4+A@p47`qUnr8_I50$q~yIl4XQwLcn;Qvvpn z@c^ML&+lX0dY?CNpZ+I>rPY4UciH<@ovow1w&d!i%+~o$=R&6e3r7=+Uv2S1(YljN zTrRg@&rW9wTQExMYJvnDM1vjclDb(75+gdrq4IJVBrr5xE_0(ttGx~4Gv-Y6gR&1F z__=Q9&(HFG!NQ$do1N0sE}T65)ZgctVYmC_d48GMe-j@x{PnvXBXNpr5rp2^v^M6@ zLk2-dI&IbrPc*OWIUQfZ8?6)KfhuilP{8vL12$_$#-fy5R+->)s<58=qdDh|x){7? zXoH_^1kI7AALG&ZU#{M|bKjVmPJd-*_a= zmFd?}n?AIMZ|z5)w{NSuqgr3gyTm{35)tm{zcTpUz0R3<17;J4JP!E+RK+faiQ^%< zipvR39RgS>U?@)}^Kr7SZ5j^(5;HJxTM#-c&lPdCDFX|O{XE)>McSQnbg)wqu^a0d z^rM;g^7~JI^qHghhh@jN{<3!k?|xk-(DW)ScssND3v8^h&-*U7^sFBBU2f)0`S8H; zq^b~S`W|I)#MnA9IvAy^|7P#Wnp8!X{3{*(YS@6RM$E$~BB+QPi1^SG?EAin5BIl^ zxKyd7CCBP}@7#%gIj8u5L~{EwlUx+EqDo8VS9?_zunb8DGlt;AF_~tQ8M@#*WRVTS z2{r^%nZ={-j_JkB%p>RH%6x6TzC>)(Zzy+-Zy%x-dRKU^VBccbNsruHn7<_P|!6ok(g|Gr;u9n^Yj>$!t}i|ljj-Xrh^2oK{;v>%N6)nvx4 zCBlR_VLsy*mJSNMfGVQk!5w<##*+@~j2)2iOMbeZ>{P*yz@^!fED7>sbGCDo#S|fA z&;UX}y}$Q$&Unqy-)SjDR(`*1O4yAKvehss+Mb$>_S2}7Fd!C-$(Tay z(2H4%6qwe`&PS%uYAyRmiu!7%nTQYJ?4NQJcP272hQt z+;+IHndsPk{IJtNV0R zNt?-rAPg;`!(ykc$dIQ8%PqE&HrZ;qW4FSdG11zXVlpfb1&_(Q)Hc*wcCfJ~AsjEv zawG6S1^tMK=g_s0g#L#D0iP(D4=waIfq*CHzmv5e(e2*u!5Zxnf@8{2?u(u>wcNhB z=W)qZQR#qg8xdL6|_v)|>H~a+Ra$Rk#6hXCO1a{=*1EzvI zBC`~7cxK}LZmLLlmJV4pTezb*m|Cz!C6cL49bU>~U)^k4-UQ_#FAy@A#`j!W`r9Av z!^hXqchLa}HGWR9q$9_}Uqzz6*0WVTNcFaT?zH1AsBfJ0_qt8rLcfsc zbEVyB*o7L%_(YnK_X$MyIO8Odg~QF&J|c zHnG;LX*$&zlmXZ-6;-~nkNE|hvn5BeTWEn0P$yD=!|qt z+yUDO@}n5YSLVA^=l|s_etZ9OVqtGm>k9sbP*+PQ8et8Hq>EgO4W=-?#LRgPqvDP; z71|>bUxIp+A5I4a3oHiMUh?OnS(Q669*dmD(tOL+32nlOi7J_rGmmK0RCvR*=ET#K znip8Bo?!}k(@{NuJRzq#dPz;((geZG?P9xFwH ze3VDwy&6AlO;`1gfNGt*e%p@Vwwd_DAYqNeERlosY;67@%@+G5QM!HXQ$c!fv$z6& zVU&-B#@V)3%C3hLx^j9LPui)dk2k|fVAJ$0>YG#6*Arvbk;#e_&=e2GKoa%zDE5c8 zQ2;cltdv}*^xk+J_^U-HnUH`<4Amc5w%@Ugre`&+FXTAV`ZoS&)z0M~&Zm03b#6lQo}Xc1(H2%8e?vp1KiK1 z%4j~*wB5m>VW+D-x)uddjrp-KH&{v@jP!`!6)iYw`O-}Cf|=uo)%xbcCBV(%o1-Uw`=yxB{Z{sL*LX|du7RJJ;%ecz zdo&Tg09YO5YG7kSMp4#AVJBfr3>|y8FIp)vollv*x?k&aLx=`rwhUPwv@*y;q_R&c zHW7_`g-%gg;4;;`;^%M`*a@Y>TmSjK;_78PIh`eN3qIf^B7+ zd=@8xNjQMIoA6>K3T3h46WiYIf!9jyyKWQyfvi_0i^La)%TC)y?s=ydt=Xs@g?4c5 zd0k&!qa|t|tYiCl0rsu|*7WQ0H5Jr5D=d&t-D7W<;`1l`%@Y4_S>oey4;29RW^D2U z@R`=9gJXZtCQ4O;iS>NNsIfat$Y>ZWx<$U)_;H>WXtv!yt*D-f_fSy(Cf)he zzlC&$T^C9Qdg8Q|*^K4^8b+PFhNKZy#1>rt?#7BTL5@NS*^duQTo7iczu zQc4(25?Bb`6x;|Ng03=n=*ihS){SnIxQMeH>@5)!w`L1g+%8;U5$n7r+AEAVbstV2 zYtw^%^}=t)X1&*w>;`y^=bME#+OR*_!dW||wi#szNK8j|FD5rgC`?jQ=umNw-lv^; zePO$@((=fe*A_f#{GK|^8M4UsrdMcV@6yPvW6Kb2AfsaFg4d4srp>U zmJH`YVvlI~`CP`-m7_1=H8JVnakt-x5}tyWP=qrDxQDh?PbE@pT@=J%REY*gK+|3Z zz9#D{s@%3b`n>P$qQ+mUMz4G&^xC0PBli2b&F@k79)3;F`?bbJsS4E9ro1&>Bg}eO z1*_f^YPHNh(^K3IuL5CevZMZXI!UY8f)PjQ=)^3=d2A~J{S1!AL#@wiopIRXx02mJd0>EM}#}1&h=v$*ASV z^3M_4a5Kr|r#lGtUjE4e;t`8U8*7+t0*E0#P|*vc2EU6lSz#Gmf=u^b zi;=c(;y*9za&?BtZq^|gcJzjQufP0E{v+gE=ge{VJ3xPpA( zo~xtw5nux@S_5Nq#tz9gzT2*4HB63(`;+*CxXVQO@-gd6c=S;Q{qO%c zrn5g(M-RSiU8s5bq;)!aaOW#AYiu!`$a}8-Xh&Xd-u|XrW`b+0|4nAPd&nnm-LAJ! zPieqv{mF1HdhNO;?R zBvmclm)mtp%*8OdH$co2s%P>& zebZ9CH1fJy|E+$pI{R1le!o`Ow-2Zhn<}~OX>Z=0o1Se{cL_=_?*Dkt(;vT}1a7xq z*(siB1?&%~^N#s>0C~^>hkx5A2n{6OfsHk576)^`gUdlBRpS}WOJjv@6+y6&3JUa5 z-*;7rpR|HqFN$1}osL*g-Xfaftw}DVSC-|s+&zVCh05)RQxo}-%V5X{0oHUqYU^=+ zB)}s9JznLcVNee>IA{4Cgyhn4?W;q2y7nab2Srk2TR-cN`x)AKVzl$<&eZD$8y7*1ZtB3=tS+7vZ7Fth2p_X)B zCJyUK1tpr{u^a^Xw=5qpOLANY@0 zBd*h`jHg4Y6Edd4t-ArgH~Z9Fj(cLEjyVs*)?2Xej$^NgaA@Sr2y&%CuL!GSZI z?a_pr)E+I)N7alGu)XJ-1mToEzFt1xO6IweL-d%y-zvN z7AEl2^h;eCY*#}~W>gFgS?hTK$)iL8ilca%p|?H=`8`*F=6jlwT*M9ZC)8ZQyGOJ0 zw7N+s{I%H08e~PB`d$?YMO&s7>5%(0pN+6ZMi1INQ!q;|%jct*Gutqk z4xDjplkjdg*KMFuKlns&Zu=`75-i-f@48;kQq0>IKKmzc$xY8rXk7$tZt+ zI(|mY9R>KMLdNfK&s!(QcIybN!R+Mm07G_?MecKW((C6ryuvL62dILJgq47WThAi`GcQGsa+8Rrcg#ZjuC8VYTH~6JxOR4Lr6%BZ#lt<*s znsa_gqZw+&6<0<;gr0C6v_smaA8F6qH?t7vpvo4r*3sy=X%Ztu?AS`ZR1 zpyvd&#?7g9OfNw+Kuk__!!0gyL{9428iUkvPXtuP@1ebH=XU+k&R_ym=qT+e18Fmg zjj44f+_;J^jeS?R-atLNQ>M6Tl(13`C`x2zAY|5BUN(QlT6c7y{Dy3~+kOV9jFCYCO$s?LgWU zix1=Fs z^xT6aha<4)X#jIz7E5{8bJpXX7pws8RH-a_n2c0n zFT>dxs2ToqSIje%H;k>VKKvNo-ij1&dv`TKulK5cfa*`cPiX%1!!cZt5Y!*r1 z0C*OUQF+%dF^CWya?l|4|1xrx>8wYAk4t0$;6PEW1Y5l{n+ z?nEcSHzeJcrmP7e<2H&E$w)@@fyz$Uhzz?SH&`v??s_0QaEa%#x1B|ZFhvh;Y7u^$ zR1UE)IdJ7(F-Hq)MfouETvk6iU=-cU+oDw#Z(>yPGEA-LVq1Po?qZqd`T4KW1g>IN zMoAR;_Y!&B_GtcB?a_p<(*+gp*51v-Pd6saJKd`{j1#cBqnlk;_DX@nHJbngSnBKG_{SZkfEl*T4T;`?JaTn6FL| z&v$K`m$<5edE}|;|Iw~#!cjQhR|`=L#wEZ=jFgg$vl=JvcCliO?m}SOn>IQL>D=P> z(oQf@YsjYM%s|C<4m(N+Ft${50zjnGrOnS+yPWqcF;;QZv(LYuBEHUh`HH@N1bRk* zm$Z&x8eo7^rH*IMyI6lJWW#=2T!H$YEeVUA7iduD)5`o2g`e z^yZsy{o`$azKM>Z#Kv1}7;iURMnUcBOsweg`BogK6^1(~(s?s0K&~Gd71*ljDs>#o zpRbF$f2fLTINH>iWk~gj&X4?@gU2>G@;7*2#zsH+zo^`}(yPVQ|FK z_lqCFX_eM-r_ksv34Ug=(_Yo7cjL)tva$0g@tZ_r^<|Z)&Q4i(>Y_JSUG%z(U3c;8 zE^*!Me(oNR7JPKyj#X%``t7TJ=W>5@$?YY7Z`J%i*{Zogt-m*E{@$ed>o;j`OvJyp zXPV8+|AXzBThzL&{&$?r=qq8mC!jT*j*Vk-{wA@yj0gmTL=nO&U=Vpj(UFL56SC(f zYcilvay;^YOfN`4EDrQOqGJeh_r=05<5)ltE$S^WiSI;u*R$?;LGf4k=>)Wn^gA|MM=%YDq*0~kO}oQA zA1*MQLfg`q#!z~!M8h@)K`X{nZB4QARfrr45Zx&Z@5H;U7wr9PyySs_X?D6g!S+2! zC2$%IdQ%vB?yUHZ;}7k##__rLGL9eGu5ewa`UM^5+IT%dX@KIjXCdfhSnjvuC^xbq z9?WSnN=Cgv%nE}jmmt*d^b6VRAR-RpVK&XhU6*3*fsw1@)LD9oYHeL@jz{_$p(cJe zm-v@<<>H5trf1Fl1+-kEOwX;>2~q>pY*BtWpgBG-O>U;FgLNMcvx(wp3d-lciZOex zL;9iEV5L=&`_&$GV!ORC;yJBPUKiTbfo z0bkO1wy)Lv_O+J(msuZgcg>Hc40j^<-yHXpbrjoJ#oAIHtX5!fcya z&)d2pTw-MoFr3X%`%DNxjssmTRY3t41Gv41SCiPHgDondIjMo5g`%iRP2+y2BXm1z zGD@Js7~Dkd(R82d-+V|vVzz%&Ur>EXg)QUcJ@|eO=21z(qx0D`YQ=G<1l1@fzJ2lB z{xRcj=ar1RHOE))asO;GR2MUP!DM>}Toe1!Zk?btAb0{rB^465iOPeZXH7c#UYzfyzjb4e{If1><%Bu4t*N_@eYHmxzs2eZl zhyH*V>t;&NM0{zLd{Ii1@qXXt+q&Q8BV<^(XqVuZdf$%IQk>GB!-%VnU38~_MFOr; zNii3~)>En=eu*_*L${Px{UOn527fhqUCT9&*N=?*KgU94F9jht&%#`frni(hHttt# zsEzLKYqYz7J`?cLJ?>9;8xV0gnQRiJpy3~e+4n<|&=3AoOMyt+e4djlI@!C%FJK!^p z&YN3k!@Xvg>#U++5UVt&<@2t_beK&R5zusD46}FV08Pb;6~|S)AC2+-gzon-ZY_>C zN4qrtv*}E3=#i>PrCAST&P$$+6V!U%9viI_oCY)2nh_{2>O#K&3nX{ONFfCPHk(YR z*kJ*=?ncX{S!9JaU?iZHugD~KIo8Bhw%?ny`$Lc%>$Cvs=DOr^3y7F;wBJ9Uv5)lK zI{eQv3s6mC)jz)L`RMmMew&iyC|nxqr>SQh_d_+s^Q)%fTp|#QR-LOiZW)@ZJYFzf z41@f^$VUPS1r-hq3oWm%Frwph5ayG&Jc7NjJl~a7R{Lh@z6SUfo?wwc3GG9 zxeb#?2CneF((RBk78~OsyPTlUY4dXX9Lg;lbWd6D-_sL0677c}zp=q2wXb4$2wPF%J}Uu#+xr7V|7v z!;%645$Wpd_Ou{{_`)5%LXdudY95D zn%ktifkc>?#>+lt2L!JiqP}lW+5?vJxn8?%ajff?xk5{|9F4NLN!yaZX8-Zqn|{A^IQC?j7`rc<8&Q#Mnv%jhtg}(aSJ$D0vL?1s4kBo3v8_^eb1a*+51X&^JDVzh4QZDT0jQ32uy>)(q;lK*+iZ=LFzNmp7v0678=dBO+MO&43 zvp6;Ll{3sm4R8=`f&+QVJ3}ljAzA19f-~)@4z~9}*%7Uds}jm~VJ~TdV(=v~NlT*; zC!u7=B(f`$;d5?yiqAUJOfzf-dL3G?Mt&YwSUlzy)gSDT)wyI|K<~{_YINVca5`+$ zWb@!)s3HN+CYqQ|0#QUNRIcEOygqP9bSU_eL4qC@4?6ok?t|PKSS7O{_m&GF%K z*pQCwTxN>9`%uHkWQjqYo%(z}|8@SJ&zSjs3M&eHsQWL!{biCSH3BtD7zdn^2RN9nGcz8Ct&<^t~$uUs=DefY)fg`r#<_nyle{v4@6mx-OUlAJEarqczwYcpI>19$xUhv9hI0&R$RAg>3du(Y_{e22-pn)3p2IpYXV|PKguX8PFLzhctg5!8|H_R!EW;y8>!6|v zL=+o(MH$=(T0#0wfx-LjrPyqBH|jpmw=2#_mL!?3{8r{_Br|od0C?GTR}LZ>p^B|~ zm}L!cJg&M?#Yu{cmztIihhd*=RoOIiH?4WNl$NDv&jPG%|NgFeUp(gFftNeRXL`l1 zV;~;Z>yG7Kp}UV}&Ef$~Hkf7F;mxUBHU=`q_Wf=V1jw*QMu3O%1c~|{R!wI9sL=&^ zn4thB)cZ-WbtQK(rx<4ewyda!sFsM4w$@rzsDPUHE%^hFd(g)@K<%KQhg7-Qt%z%P zy;DVVpH5EQ4JFUf&EWIQkT(%3kE-}9Q9IRtb-UgwLk~bgMq|G-b6N$1wubz;mqkhu z3Nm3UT?KICtXvJSMQ_FMnBtK^k@LQ6uVDmPV-^GTaH9I9k)Y9=$45eMWgZA$q zNPOX3)5s{AdYJ6o*5Q=!g940u60_JBg{q?}>c6ZmXul8SSH~LPtX}Y`oX;Svk2)T$ zZ?MeA;ey0%Vp%Lv(PGENkRU^`>@$=p!}ASI^HE0{@VS#=t7wc&16k!wj~Eweh<3=Z zkQ7TXbPklez$A`Dcg0n|SA^ymRCZVe!9RJXk>l9>EMW zd14uWIpb8#b{Dg`53I2~-w6Fuvf*$es4b%mw=E*ZHDy%x8n88M&=t>CK0dCN@lwEP zF%)crPe7AaTHGSO@AV#-KOWq~ZJf^+E714q_3c^i^|OogP)Agv81#y|+E ziAv$W<*MEinb*fc*i~78-Tf#`GyPad2iv*h&ULVNvfGR0(a~>p&__eQk8sp4X6&!O z6-!-P7c_Kmdt4_Y6F%>NvBUH|=IzfQ^8zu3fBskt$OLzL3LI`uN;14egt zLdR^m7vsKt{Q~7~gx3=O>-yV$^i;6x`3b-FVf%D74XGbJnP#PzfAoF6+D%g*+_)-6 z0DTO@BU$;cI(ofrek`;8Q4`;K^jcltVUeoefApmCZ#{g*>*#KiC*8`WHUn6)xM<{A~-ZB^SOBsVyt zvM~#b*X~-6^1rXn$o}4I<t3k=`;r^#3Eq_a@o)h0FSVz!B&_0yzR* zgN{H?z|K@qGSYQ>KxTbr4w%#Nj8TzEyHi!2iXa!cy>89db{ne(F#$n@gHDO5xLB|9 zV6<8bcF!NP>wwFZ2%2gLJC3vI@Mb~!A?yhBrvhL6CtxqGKrfzx92<~^XL2JPBazBe zmZN!V9V7zoAPMU*YOmKC>7Krbh{l-CHx|J_;dZiPyX4+H;FGrtgW0s3=>o~>ko<8nSVK*1-Jt(pwxLxtaD zmDMNM#ANcKKOIxL0h1~jbU2MDtnEZ!Lk-moLL1eyg|01pmZt-3NF#nv+``izG4!7W z+;f7wcS!%o;Q|S1*UCVUW6{{lhka=L;9c%;Fb(- zCqRc26$f^yXgN-zj7(QrN5)6=M$k#W5!0K6)l#F)y=B`=HfVM4e;VjlTK0vIOR%4^ z?9Nh4b*eF&pdydY=_rsl%k8uQPExldea<$)cGO2(YA8*q@wlS(t~b%j!7TFkFBD<8 zQ?L`Ho$@W8vcYwKJzP>7q;f)b0aD+uLmfMC}kZH^ah^k&RqZBCwx4@t@vwJJIvx5FW@S{k7z0KD`&al_5Coq?X zTxp8B!00~C1QXtk5!@;l0+qld!gSK{%B8{%6|Zs*f|zZ`EJ;t33}tI{2TQk$k;r0Ih9ETVp<8%k zGQrqg=U_z$lRnQZQGWyb8Q~{fYr1BL9`2>nP7d27;fWwK&?PEs zx5jgl3d|w0&hXKM8mQLp=2T!2vKk@yW-+eJ?!=;|2|b+O^X><|{DFYK^cdzW;tck4 zM=-Nx?8K%Y*(04vsebC}D7fZPqPt#g*K#7NWub0GWHzUift=uY=2q)MjDt}3dW%BN ztnI|8W{r&$>CDoO0tn2x_PtZLmmIy;th|ovqgoRe+n4_pUF?K?l_UB@sn|6+N;w#l{v8 zR07C7PyQ0D58eMEu=kNIFGu@A$PVs{))RP}un8^2H0P}aq!)U*+O}prj_z~FR--44 z)CALlGkVTcqb7u$1E!;}BUBE_MwIm?iN98eaa(p#8X;RW$gI5CfGzHA&|ZS~vHw2= zc$x=c`dYZpB6eV(ub+V0B{fQ*B48Ow{Cu9oGXtiir7wpNTn*HP2`sRFd(fJUsUEPw z3Sc8AHY*S6gKgT64*Z z+lD%qc*f3XICM;D;|iRmBqn#yvR`z(T5I4(0e|iB>YI!++)o~_${Um?9FQhkiNHz# zCgOx7qUId37ab&>8+lB!lG&ba2D`nN0ruBy1!-tynguN&oqjX4GJMD!)ml=GsdM zP!Kk7+V3VpXc8PPs!B92hW$w;6iPYSFj?B>I;ae8=M8LS{)ij@0icf{{M*qzf!jP? zJprh0#zklvvqV=*8(pHx0$~hIBddYHI^~>L^&l>BMv_g8#W^Pj0X0-`*P`3rNWyr^ zWw%2pX2p&;az$vni3T1h1ZHrmtT+evjNIw6$eFMqNBWd-I0eL&T5py?rm|G3rM+pZ}|Uobq9=$4T-L(zk!G z9-+SY+v5@P(?R(ov~Opuk5Hcu<{qJa1dXdhfv-ugx0GMgUhYP|ro3LxK0^Bt$d~iz zneuG$hl`JW_I96oY#({}_a{EO&cOe?hd%S&PrIk9kYKIVa4Wl{$5W|mi(FFj zi%lX;i*+&JpoSwaLp7g-#Ks~cH(}LWX#kEAk@x4-dzEg~eF_Xmf6JKtE;YxOy4AOi zk$qbC>6aWNSbyniPA@Myi%cGLd{>81X4Sz_ zl;HDjgN$i*0ukTJPw%m&0hshwT2lpKnedU?qU)Z-w z)g0L#^ijLz1E&Yn5SJF+YXcFRpuoJbcKzJIvZBmJB~d`z@l1=sSkRRwD@Y?ZRQtoSP zU-*G5nw>`Wj>6ZxayMesbCs-i`xpEbO@ zH64FnO8V&8_9Obps(aI`+hjodc?r6arrSyA*Cn6#72Nh=w`Uby7YH;1`%nh*INEA5 z_*Wag5o)H#va(IjEY7{WEf0H(8~iS<(pw1dKj3w#n7_U~D|ardBmA{5H+xDVQFpzm znOSBghmzihXKpGz|FwVXNi}vfNgf2p-a+qv-gSA1I#bY12zX$IJN(K(KN29fEQ=2DCkGy>41V_wvHgZLKxfa~>f^H<8m>kNPzx^KY zqb1J!?d+R7tGBbq=C`8PKUg8XJ^FFT`u&7y52Q;wb>Rc44@796^rw5y^_{=o9pk*+ zdn{o1#CqpFce^*k@XW1Rm$LtG=0L88$&(YujgX6ZoV8Q@d_mf50661NR!6K$Q$15`KBN=FdOf)bBxFy8-{*1LJAtDm0JoVPeABm12C(xtw>4DXnLT)Im5Cax%xnLD>lxo!{x?&` z)(H;|?)m?%t$gk%K2IR?xV^p7*3M;8KD4u1@4sni2MISucKEV+;QxSy!M28{8EAt& zaDr_S8RELg1m37~fGb3QWEaXt9xrKQRj|B|MT`O)eb)EI2{Dg23>HkY6fy)C+x&=v?jb3FJeIu*Y*>rY4wK($Y-dN)mVVdnW5c-jFUz{HJkT%ra^+EK$a1{8V z)&(Nj@)1@Wx6?E zXV_{11<)>-tmknG$Nnhi#G5qSnip)z8BRTHOMQu?r%mlr(qfh$6t0xJ=5FfLg)jIA_672#Bgbqt&5<- zS2HIav5`7Tq&%`z!x_Z#a82*op;(pPEL`I#2JY0NhoNbAV<0GBnQf>+o%zp2HP<%p zFBjDOt<`Y*z83z`WVssga$+1TDE5j9+nsXed8_{a29Rf`Z3_ey3Fl&iz!f);)IF5R z`;pIPAvk4VuUJnkMdVbSg4aahtM-^(=tI?z2}5C|J?R4$mKeJcKSMe(9YS_lJrCrc zVFhY8wRJZn%))h@?1XB7MnVUJ<`gzx86>HPr?f1knAQw@X}&MF3hFV>E&SBa*=>rtGp;2es zJD(lqAhazbdvn!aRF=0Bpoxq>lDv1NT<3jX7V??;g_zIZv`&N@$Qh)n(Ll^7PvCiu zX}i&Ovjn^Ato}yj{_WWd^T@v=16r5Q`e=UrWP05l>rxK)uD4EuHjqkgSo35Kls1u} zGd{1nqb&=r!EJvtU^4=0euL3bpRnesQ~2$L;8~#a5MXL$E4gJ|KDL2uH6x1xqXCS?D#y`_aS^Bc>wC+Z>y%z0FO(=)dX*=Bpnzx z;!3ZEBBSU-lL5AIEbH4rJL*Ky%7PRgh|6A@u1I0T32kG6+GePc!_n9CyDx8H1LyE{xi-_`I3S>8?{*GT$7ldxt}IaB1sZzwTwy>U(SVdXpJP zZr5)9=X&V-<}P)r>@KLkcA-D-zSCsy9VbmpCv*0zi{;l|!c}YKRJ$azzc5anS6W6c zNuPoCcG^0TYyh}Uip`X9o3a%~lUJCwvT;gJ7Pb*uu3=JmP=Am0MW=RM*ouZ@in%K)7FV( z1Lmb;uo8P)iv&8E+=&Mhrr2dmA=I~mVv>OwFCY%@LxK_X_TB!Z9}c?A$QyvpT0`0r zZVYAB#VI?8DsYmUx(G6v#{5Wyo@*x;kT`)G|9x8;`GEbwTy$scP1VlFh-pWGND|`U(iC&ORGzIlt@dmp_7A zT^Ty1wa#|)nBwf*rnU^%Y1Q$2eanrX{_Et^oq6Jv8z;`+TDFelp!>T&JOkeW@!tqG z?v4Hc2hh)O@G-;{7Cyc{Z7JFW58~RfC5{o@oC*^JQpY>pB>z$|qumqD zBWsVx#+&Ohp`lj;vyD?ysgu0V@6(W+^@p2nxv&I2lX>le z8*bJ^m9BWe8OHmN=s|J7cCezr`H|6?)7d7_fSz2iA`;_N&c+WngZh#;nUS`REewyC zgI%{VHfGKn-6MD2KDSQ98n7qBLdohgIR8;<@bvSKyO%hZ<&Z10a*F#} zZ*L*g@05JL<(=Dg|HMmK!lp&LcfMOUP5bA~)Bfi}`X7T|$R2-D<=vG%-ca@F8pAE& zl@SS3rQBiTe6dXWr90i_al5i?Cyy*N1!NeqI(w;DKxqh!-BPnlX=Ah7Xsn4cHlOMY z+EX{x2BZU=g0Sat+22L>&^O%I$DzLE8{z6hIQKSyYK*L#sQ-#t4=m|RA<_lqW6b|? z)}LX#feU z65y!Bx22FyVHncoh2EBx#M`%|XKjpL0LI-+>1(*S;O!qo#_hBI zNn3nH`_!~?ao*S}PbLFW%9nUhfTh_Ll@er_sn> ziy|c%TcXR506C#jmj~4jfx06PAr>rY48jJRxIe|mo4WoNbn^CJ00;gJZ|Ru?zuI{d zdMzCJAp9=7)83j;!_dPPD*)*gGsJ**V{^fB#b}W#mbYXIK?RGx02ZdTpu6JSq!Pk) zQIV*$w9|LnjyolaL82#}HAiEqIi%q#x6Fo;3X?1!ZyGgkxM5if8O>!s6x;p_IY&95A3OU9Qd$f|4 z3ouW+^Off-15@krp)`d`HD4eF4sx=H?#hit_fgYJWocqf5SiRMd&zn!;(llXh~ulJ zFW7*K?yqLGe^z3UoosjWv79K~lC8$%JfTzrnD0Q%*+zPoPS{EYJRr+PF}lPKj~=J^ zqAmKi;w?*T;L|Xo4?8^JfbCY)`gRAT6uo; zGyg!x^ydK%0Q~%A70Xnf0d2GY|cuKXPP!t#a)#Zqe-a) zc>uw&tnae`*_!(eq1lQu*#>KiFRdyJX(R9K;pgd|XLxM?Mw{A*3L@f1OglkTS2Z)~~j`P`Vaw^IO# z8E(9m>~_1C`s?8YYzuyGtWGfyz^A0yC3MmKIU}K_Tr|S-o9}lSdDDE+n2|NrBQNVu ztrMXJ>@-l7k&T(ecDj)`SM|8Zz|JnVRx&WSI0uKn`nEFPe78IZrStH4-wC zl~y^e;6B1*ikPV57*0)mlFZA8Jt2>3%SL2iQ1~tPbcXc4nF!iTZ6p%V&O^ z7>EZ%Fl&W)=lmU&L51m7N7xlug%w7X(4NL_$JJkXll@1f(0JyOvmL z5dlTIyOEUcMnpnMNs(GgLb_W*>R(CAnc9#a~zCWH;ink6z;mhN~ew!Wx#>zi#`;6v-y%s6it zwsYgVeReza98*F18Uh{w06+%ND6^_Z&mj+fy#@gAq5%Lzu>V4AY^)$4TSkb9wXKx_ z#DrPN#K2hAgvr{tRn5R=oD=Jml>Gd2w&AFSN_xe-w01!=6zuNdcx^26odVho>J(}U zJi72`lY`++3CXfyiU)CqDR2+cA#Yp{HridgO8W8Kj!#z>5s|NrJ)yNMrbp0|MzYMq zLSb-T#L7HxgWIfw3j+BNF&@zBTgzS}O;qc%hXZ|`*)t}rgHBe18`Y_wP2AJ~5xvT< z+nHe_ET}Q-CJ-c2#=%=rOZDztevTof`h+U+44MoN4zV?7c>|?II{3iC{SX(F178h^ z5OuUL;fPc|;pBI(6vyTz-?23a7mfm0hYc}5%Bxs~45d3eU+$1UqI>CdZ(Nxh4Df`Z2DS=dkTpi(G% z>QEZvRQ4r^3$j(PbnC)dJ8d)6QRX9)-0ZUzKlD^NU|7$7qFnR1{{}5&T<$sD_)Ei3 zOT~C=8gvKB{$7C=;tjqrKj|g`rVdO?p2p-8_oJg$4Ms$Zh6q)@x4XM+dPZI~)B77% z50VqB@teOebmu-DQ#;>{<*|>*S>e-Oq9#Uaj6@We>3+I{;8w03$ML50DO|;uPSk8Ra*v^#Kj3RCP8X5&M&-NsgBTEmaPrx~wGM~Lp$m+^*MjwpUgvBVVC#R@VS z284iJOlGat+GVc~Gx_6s;?sSlFz#z6jaTDcvK)MV4Ohh{MwH7ld)K~6%toM-g1ANp zw8$tcyE4|k$t+GcfYdJhfTS)-Da1`&KgeJwN8#RzVcOTG*EhBV<^Uer5i8{(gW3^q z`kMAWca4va58$R7Lbhn_S<6Y22h}GNJ~S&d4@4;m#hwN+^1}zZ0G}S)ew6IX!rH&L z)nsL>^f-E@w%Sg`qiovAdYX<0!wk=Omf~sMSML}zkGT%rYS}`#M}hG73ZK+SYqbDH zH1F5l-5rckdqtY=&AmnXGUTgtLS(@h*W1^JU;#5Y$)RV zQcq4i-P2DZ2j?QYPxz?meJWd$W>iRW^MhN`qtgbHPFnEJ`4)p)>h@G1H%$`q=7m_Y zGSg3XW(Fy!b&E9-0pBG804^kg3Gw5)348R54Rf$JV*Ya%!asE}u(kcs4H*!q!K%)% zt|I>m9sn3c0RZU#TQ^u&*!W>(DX<9`!ekDyw(3#Sksk-*Jxi@Tw>4w`LdUo^i^!2M z;@d_w5-!A7IMZk+WAS+;W>)B0K?~;S+3mN+k7r)f8CwjOSv)g$Sa;~IByQjX4(MjesVrR(8pSeQmkYc_42ciS#qCs+sl{OLs zIH55zD24-fm_Cc*2Y&pV)(JvEm&poE*Buk#h?Vm~u)H14qDJ&;C6&cwS>4av%=MVs z(=v9+4mX(LO|dH}1#ucTNf&0O;r&-Q=QJj-m~FfB%IrOyg!n5YnhH>0U=5mzWu^%rOt zF;`7D=UQqH=4ls;NEoA{C2<;^VY1u^4q)p>B?9w~wI;n!*FzAN{m}CP!Fj$%5!#3W zZ>>5y~Oiwtr*PU2$8 zkG?~<{Y0Dulb}UNTBCi9x@;77TrIKDRLOJf({UFvJ#{} z$RH``6;bAh;Iv6tbb0L7D!7Ehgab-T#+p{)O*b`A;Algm5ZxzkRMWDoP3?9KBg-e& zobcJ$bYpK=mztV74F=mVnoLc+uh1xHMK|K`$FCj7fi}kz%Mr}KnX8niid(6(>w8{m zfaUwKV%P|C(!)zX9kqL^fP$=NHsPS36>^_%QcPZ_^GC7n9$ji$FP!mEdgWu_aq zzV903e>NJ`sLnG(nA+RJ+W$lS9gG|tZiaAUxC7A;T&d2cU%($!^4(!BwGWrL5m3%F zeGqS$Ib_9BhrL&XO~t0Pj$=sP6QRwCy#xtW$~&JIll3QEjZ{U#FwHgJcC8tRE_lcJ zc#2psBQRTl*wy`xwYtZ!37f#BsLrsR${ZB(;3XUYa0>Hn=>C4ELL5ROr=**KSnsD$ zPsu_B=pYl&A~jwFF~wAs=pzb&B#lp=8cI9YNQ};FJD_BVXlAtY_BF@a8?FYsO7~!& zhl%`vqe7tG=ojhW&!iy3_;83?sm~nmdSNI@ko=vuEvWX=WHs!*0idY1Y)?W9jU1`X z!DR#6K0IzsU%1y(tQ1RC>F0A5gE==cVxZiM;$ zk*Vo6{ZKil$s2%Oey-IbdKiYBEBz zF0(JvLSaKSxKDDVw}N1U@iSiX2x#T8Q&2!8B3e0V;f&xk8;$0ELa%m(&wQPyO}B4D zv0k5i|C;>QsG%2ChYYJEZHw#ken?w!&>KNd3z~rAl%WS4CvIoY?b^4CZ90)Kj4U<5=y0e*)%SU#2Sw5Yvt40pNC7q-8E zgXAU$Y@Ib=>rC^%*4f&|*wM;_3F6?WBn)l>V%0tDBx8^(!fUUu7gAOgu{id~M~Y%- z#M#$eMMu1IHc4=oJ-dUYf-NdpgWftqJ*m~~)I+rb$qrjfgwa$Qv|`Fk#~h)*pG1?N z({KlLzjgAffhe?Mcq@O6<4DThtdbA{hp7nkWqO519UTScV1;CjX4fI$YQio(0Qi)ARh!T8(4S`xKNaB~*%~vgk-~3Uzo- zCR>1N=6QXrxEVxBbK_2Np%i(+jt^DMY1pSwG$4#~r^u zbBK29omg1X8yQo^gt^Yl6%a=QaaaMVLLhDzVz9WQTbop2#S`Kz?gVd~`|+!`iqzM< z+Cb2(4vrN!ZISjY$`U@pBwxcs*D-tni~GV4oY78~d#K+w28E{{&?h-a-0gh|``G|+`T&^_%Nu}om!E>T8~%u3lalw zgHxCEsX~&HV{ElR%JUjzT{*!$a0#0vuyM>qCV(s%KS7g=@^mO@)r_ls^U5J)Y9RzFcEl4obeIqY|_h8TNgzFtSVH65joV~BcB-l+y!C;z_dsp`B9 zJeBP0al))6GdUMLro)tRCUwEGgB-o#Y-stHRO8uoFl|s3!{on}47KL5Rw8Whv#~R;-OplIuR-_+$ zQaR*l#xoCDyYi5HO8F?P&jVR}(epI8ibH0xLbWC*!$R>EV?u??xLL<`q|(1o%6us-Q%-;Q^xupGW*-Ha3T%MZu*UM217$RE;9&Z0DEu59sJfmCQ9>=6V~sdar{;PpI}V3 z_BO__lg#9at&Kf|9A+gQAml$iPtH&7ijG1~e(^F#BM8U_%tH>bcQipqdB%&5@^7V* z?4`>LfbFJinC1GTQvJksVE*Y3m<*~)UEp!pX-d2$*v%+}C4F$6ACD0QVJUA5$)DyC zj!_`}mce_vubUHDk(~7rGaoD;J`0;&V-qJshKeR32SD{1xL?0`nq-?Vz?B5f)hIEc zLE|}hNYtW@<$ITD44!ZsJ|H;r#PH)NBc7yVyB>HemFr%v^2ku!(RoSW$DEK=T8qX- zc+&e(%U&zBvk{h%Eo`pR+HK)CD`+KFgedfF{1ZIcbkaD%FS{+Wj`@Ch2 zCpI49n7b-V_Z4c+c4ELEzC=p4uason>ySf5LMl=#}hY_R>o?V0?k#% zo6nngXHLTVLlSWHjCKdAQKsrXRT1>oI4PNx#64*K#1GH<1`(dy0vnq=`6oavijuV)7sB%0^f~h@Dh{oDZ2g`_or#WX z(1$&I(0iXVR=oe!@yoSBlY+hXPR86X{k(COVE2WW*cD(aaJsc=ALsK*ToExN&Sr|? zjgEP#3DL_Cu7PDx2YIx)!T9COJWv~t*Ehn%h&o7*{VVi=Aw)jMV@Fs4-J|ZY+paNw_j<|{ z3ESTLu|XdRdxX+m3t3(oOj6rll&nK}nT<+E2RH~nnUIgs!n7Tf(BH3G_2e zzq`a1&hio_w8XfzXwi`kS}3BhYZWFJ5t3W7BENo}|o*5N*( z&!8c7l2I0N@ot-Q#IniubMpy*enpv> z`JwCvLQV?Ok3+#koV~V8sP4tm*3A*vuew6gfS_f(cP;K}*SNV95X7aG5F^CIAMg|A zn13z&wB_;Us|7x)u4t}0t`id+-fE{)ycN1=2h!GL zID#Hdu-i$PHY7OqucxF6-@+#b-HAgHj?K$wt5g70<=pQS35YkiUcism=~(0qr)VmK zA%*(fy@nGR>_wh`Z{Ix?f}Te!Y)rW3Xf3oU^{)4WKdydG2OYvbIIKp!eNN3DO(SyK zvNWD2Pug{!5$-EX9fylq-)#dU5g}>q;Khu&2nyWTc_Oy~>W0)~_K{AD*%t_p(Bng{ zovjjFM~gtgKrPR0kEW=jbm2UqmXF{y#8Q|L=PD)Ep$|RIm1w~C2{%C&>YZJ~?jIvy zxPhRfV|TMXMnXJKAux^SwO9qGzex`D)Ag#d?+LN`b_o)R3}faoj&4!Jwc#De(t(^or#FDcrjCilF3!z9Z<_P=*&sz zrjeTWZtZ|-NkosaoWhxz5M_Z#2`QdIaMPAnvx|3#LrlFCPG2r_ERV);W+0XEt%7Y_AV=91hg>J>koVL-(LEzs5sHjXg1ru#Op^I}zo^ zJM2Lj?E4aDF9Y-Xd2W{Qs%5NY)?TP(SN&V9DJ4rrZ_yg#UA^aUD(c~Kh4Q?TW8qc> znU34_>)O|_h?V0?845f*K_rf(>Ft4xbn7h;!gCwl6I0)s^g?|gNvlUYTgUU%__mF3 zel$!9fk1XqL-im=b!*Ap+l=I*h&;mOHw!}!GQ`j_k`@Ee4S*W&5S53scs2^q0s?Hu zM!Hh&&kq@we$>LBK%H8pU^e1MiO4I-R>zR+K6S(1W|wV3 zx!#s7`b0Oc2`h5b`*? zVsP0Gdm|w*a}W<}8ueI^&W-JL7+-mCf&Yb0ryAZhBiH_pGO> z=4J}^-5O_K4Gj18-|gtqS7a68I>^;J2(O;=uOcpUj9EGQvVrt(LsrrI!dV+8>4kUx zM?(g2wgrLB9GEWL)PZ3oBxOHH zGDxY?N;7!omnv;_$xD7gtSEA>VcnHd3hKv+QjYMxneSYKhsUa1h!-dw$hzC_(P`ma z^TR9u7C3l8Vy`p60RUXE(~IhR!4dn zhT&F~tF3i{9w6@#pX%xu#;P88F?vJO+Dd*+*uUdy7nUm0NL7nuHP z&DAwGmBXXnQ9W{7$22T3bl*(Gj50`WYyWmBsMYuI=-N8-NPm=clASj$IxAZU6)?aA@US;BGo6O$1?9*HZ**rtLN{io7vA$CBFf36Ku1W zx_76%mtZ;Q8db(9Tp}>~s5&rb`$59GCPA9>>%`fHS}g;n>Rew5yS=3LDD)e_t#=l1*GaDG#eyCnV^%U+bw zzFku>n6A0RWH#V3g7nqB% z|KA0-pTQTCcC~nM3BJ|!*We5D`!o1=rG`sz)8B(3|HA$*vwexp@A)6{{>XD*iu&ss zUAXq&u8TFI?EM4tM+*0HnJ%Qen#8>zeOo4-|3Ug;f4^sHE`|JN!LKG#FVXBD|GSVs z&_B|uSJ_vShnMW6zQ1JuNF`onU(L;3vJ?9MlKoSr?kfFiLhO?6Iq-M%f2GGR@xN-u zcT)!dTxbUM;2-cmC4nwdTi^BL8}Djz>rz~kzvBG_|DNi)e2Z^-ay4yr`4$`h@3;7M z`(4eRT+&;if0&TVT*_5ZuZGl@u+x!0!2T0pUnN})Aumaf#{NM1IiS3XyXtyg;=q%C z!2RTiUZq`i3omKpQ-7fS>?B^rU3KLyakan0{n-5%j-7%u;`NKy6T^OrkYV=iGt4Cb F{2yqrLiqpy literal 0 HcmV?d00001 diff --git a/samples/charts/data-chart/tooltip-template/angular.json b/samples/charts/data-chart/tooltip-template/angular.json index 11ffb8c9c..c86d9a6a7 100644 --- a/samples/charts/data-chart/tooltip-template/angular.json +++ b/samples/charts/data-chart/tooltip-template/angular.json @@ -102,5 +102,8 @@ "@schematics/angular:directive": { "prefix": "app" } + }, + "cli": { + "analytics": "ef0b952f-13da-4cca-bbb2-5b2fdd7f34e1" } } diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/tooltip-template/src/app/app.component.html b/samples/charts/data-chart/tooltip-template/src/app/app.component.html index 42684d448..a4c716982 100644 --- a/samples/charts/data-chart/tooltip-template/src/app/app.component.html +++ b/samples/charts/data-chart/tooltip-template/src/app/app.component.html @@ -4,21 +4,22 @@
+ isHorizontalZoomEnabled="false" isVerticalZoomEnabled="false" + computedPlotAreaMarginMode="Series"> - - - - - + + +
diff --git a/samples/charts/data-chart/tooltip-template/src/app/app.component.ts b/samples/charts/data-chart/tooltip-template/src/app/app.component.ts index 5e1cc2f59..e0d2d2125 100644 --- a/samples/charts/data-chart/tooltip-template/src/app/app.component.ts +++ b/samples/charts/data-chart/tooltip-template/src/app/app.component.ts @@ -1,4 +1,5 @@ import { Component } from "@angular/core"; +import { UnknownValuePlotting } from "igniteui-angular-core"; @Component({ selector: "app-root", @@ -8,12 +9,13 @@ import { Component } from "@angular/core"; export class AppComponent { public data: any; - + public unknownValuePlotting: UnknownValuePlotting = UnknownValuePlotting.DontPlot; + constructor() { this.data = [ { Country: "Canada", Coal: 400, Oil: 100, Gas: 175, Nuclear: 225, Hydro: 350 }, - { Country: "China", Coal: 925, Oil: 200, Gas: 350, Nuclear: 400, Hydro: 625 }, - { Country: "Russia", Coal: 550, Oil: 200, Gas: 250, Nuclear: 475, Hydro: 425 }, + { Country: "China", Coal: 925, Oil: null, Gas: null, Nuclear: 400, Hydro: 625 }, + { Country: "Russia", Coal: 550, Oil: null, Gas: null, Nuclear: 475, Hydro: 425 }, { Country: "Australia", Coal: 450, Oil: 100, Gas: 150, Nuclear: 175, Hydro: 350 }, { Country: "United States", Coal: 800, Oil: 250, Gas: 475, Nuclear: 575, Hydro: 750 }, { Country: "France", Coal: 375, Oil: 150, Gas: 350, Nuclear: 275, Hydro: 325 } diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 2ac14f415..f4e12c524 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 143e02559..0bf7028d7 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "igniteui-theming": "3.3.1", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 2ac14f415..f4e12c524 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 2ac14f415..f4e12c524 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 05f444317..ea5a6e33b 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 2ac14f415..f4e12c524 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 2ac14f415..f4e12c524 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 45cc33550..28a06a930 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index cb59b7ad2..1b3c2b4cb 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-inputs": "17.2.0", - "igniteui-angular-layouts": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 80bb9874b..f2b27864d 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 85eb89ba1..b8207a98b 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index ac7a7d7a5..6de26005b 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -21,8 +21,8 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 5acdce180..5f32dad66 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 5acdce180..5f32dad66 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 5acdce180..5f32dad66 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 1acae5f6a..bc2d43f68 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 1acae5f6a..bc2d43f68 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index a9d7e8841..91a263286 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -20,10 +20,10 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", - "igniteui-angular-spreadsheet": "17.2.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", + "igniteui-angular-spreadsheet": "17.2.1", + "igniteui-angular-spreadsheet-chart-adapter": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 0bf62c38b..ea29eeea9 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", - "igniteui-angular-spreadsheet": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", + "igniteui-angular-spreadsheet": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 634bd7d03..cdf7dcda3 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", - "igniteui-angular-spreadsheet": "17.2.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", + "igniteui-angular-spreadsheet": "17.2.1", + "igniteui-angular-spreadsheet-chart-adapter": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index 634bd7d03..cdf7dcda3 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", - "igniteui-angular-spreadsheet": "17.2.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", + "igniteui-angular-spreadsheet": "17.2.1", + "igniteui-angular-spreadsheet-chart-adapter": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index 0bf62c38b..ea29eeea9 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", - "igniteui-angular-spreadsheet": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", + "igniteui-angular-spreadsheet": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 0bf62c38b..ea29eeea9 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", - "igniteui-angular-spreadsheet": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", + "igniteui-angular-spreadsheet": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index 0bf62c38b..ea29eeea9 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", - "igniteui-angular-spreadsheet": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", + "igniteui-angular-spreadsheet": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 0bf62c38b..ea29eeea9 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", - "igniteui-angular-spreadsheet": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", + "igniteui-angular-spreadsheet": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 0bf62c38b..ea29eeea9 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", - "igniteui-angular-spreadsheet": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", + "igniteui-angular-spreadsheet": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 0bf62c38b..ea29eeea9 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", - "igniteui-angular-spreadsheet": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", + "igniteui-angular-spreadsheet": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index 0bf62c38b..ea29eeea9 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-excel": "17.2.0", - "igniteui-angular-spreadsheet": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-excel": "17.2.1", + "igniteui-angular-spreadsheet": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index e99d06b0f..72a84ef2a 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index e99d06b0f..72a84ef2a 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index e99d06b0f..72a84ef2a 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 1878e345b..0e82e6be0 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-gauges": "17.2.0", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-gauges": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 959bb3a53..97750c15c 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.0", - "igniteui-angular-core": "17.2.0", - "igniteui-angular-maps": "17.2.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-maps": "17.2.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", From a302d6aa1c6ab6ac10cf0ed4959bec4dbd11cf16 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 17:12:34 -0500 Subject: [PATCH 045/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.1.19.1 (#120) Co-authored-by: tfsbuild --- .../data-aggregations/src/app.component.html | 10 ++----- .../data-aggregations/src/app.component.ts | 30 ++++++++++++++----- 2 files changed, 25 insertions(+), 15 deletions(-) diff --git a/samples/charts/category-chart/data-aggregations/src/app.component.html b/samples/charts/category-chart/data-aggregations/src/app.component.html index 4a421c959..788e73621 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.component.html +++ b/samples/charts/category-chart/data-aggregations/src/app.component.html @@ -1,13 +1,13 @@
+ isWrappingEnabled="true"> @@ -39,8 +37,6 @@ label="Sort Groups" valueType="EnumValue" shouldOverrideDefaultEditor="true" - dropDownNames="Sales Desc, Sales Asc" - dropDownValues="Sales Desc, Sales Asc" primitiveValue="Sales Desc" (changed)="this.editorChangeUpdateGroupSorts($event)"> diff --git a/samples/charts/category-chart/data-aggregations/src/app.component.ts b/samples/charts/category-chart/data-aggregations/src/app.component.ts index a4e8c9aa3..8cc6476c2 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.component.ts +++ b/samples/charts/category-chart/data-aggregations/src/app.component.ts @@ -1,10 +1,9 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; import { SalesData } from './SalesData'; -import { IgxPropertyEditorPropertyDescriptionChangedEventArgs, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionChangedEventArgs, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; import { IgxCategoryChartComponent, MarkerType, MarkerType_$type } from 'igniteui-angular-charts'; import { EnumUtil } from 'igniteui-angular-core'; -import { IgxPropertyEditorPanelComponent } from 'igniteui-angular-layouts'; import { defineAllComponents } from 'igniteui-webcomponents'; @@ -20,8 +19,8 @@ defineAllComponents(); export class AppComponent implements AfterViewInit { - @ViewChild("propertyEditorPanel1", { static: true } ) - private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("editor", { static: true } ) + private editor: IgxPropertyEditorPanelComponent @ViewChild("initialGroups", { static: true } ) private initialGroups: IgxPropertyEditorPropertyDescriptionComponent @ViewChild("initialSummaries", { static: true } ) @@ -57,24 +56,39 @@ export class AppComponent implements AfterViewInit public ngAfterViewInit(): void { + this.propertyEditorInitAggregationsOnViewInit(); + } + + public propertyEditorInitAggregationsOnViewInit(): void { + + var editor = this.editor; + var initialSummaries = editor.actualProperties.filter((p) => p.label == "Initial Summaries")[0]; + initialSummaries.dropDownNames = ["Sum(Sales) as Sales", "Avg(Sales) as Sales", "Min(Sales) as Sales", "Max(Sales) as Sales", "Count(Sales) as Sales" ]; + initialSummaries.dropDownValues = ["Sum(Sales) as Sales", "Avg(Sales) as Sales", "Min(Sales) as Sales", "Max(Sales) as Sales", "Count(Sales) as Sales" ]; + + var groupSorts = editor.actualProperties.filter((p) => p.label == "Sort Groups")[0]; + groupSorts.dropDownNames = ["Sales Desc", "Sales Asc"]; + groupSorts.dropDownValues = ["Sales Desc", "Sales Asc"]; } public editorChangeUpdateInitialGroups({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { + var chart = this.chart; var intialGroupVal = args.newValue.toString(); - this.chart.initialGroups = intialGroupVal; + chart.initialGroups = intialGroupVal; } public editorChangeUpdateInitialSummaries({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { + var chart = this.chart; var intialSummaryVal = args.newValue.toString(); - this.chart.initialSummaries = intialSummaryVal; + chart.initialSummaries = intialSummaryVal; } public editorChangeUpdateGroupSorts({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { - + var chart = this.chart; var groupSortsVal = args.newValue.toString(); - this.chart.groupSorts = groupSortsVal; + chart.groupSorts = groupSortsVal; } } From afc589727af951ed314b300d60b716332de65971 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Tue, 23 Jan 2024 12:03:20 -0500 Subject: [PATCH 046/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.1.23.1 (#121) Co-authored-by: tfsbuild --- .../data-aggregations/src/app.component.html | 20 ------- .../data-aggregations/src/app.component.ts | 55 +++++++++++-------- 2 files changed, 31 insertions(+), 44 deletions(-) diff --git a/samples/charts/category-chart/data-aggregations/src/app.component.html b/samples/charts/category-chart/data-aggregations/src/app.component.html index 788e73621..52f50db14 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.component.html +++ b/samples/charts/category-chart/data-aggregations/src/app.component.html @@ -20,26 +20,6 @@ primitiveValue="Country" (changed)="this.editorChangeUpdateInitialGroups($event)"> - - - -
diff --git a/samples/charts/category-chart/data-aggregations/src/app.component.ts b/samples/charts/category-chart/data-aggregations/src/app.component.ts index 8cc6476c2..e2e02748c 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.component.ts +++ b/samples/charts/category-chart/data-aggregations/src/app.component.ts @@ -1,7 +1,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; import { SalesData } from './SalesData'; -import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionChangedEventArgs, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxPropertyEditorPanelComponent, PropertyEditorValueType, IgxPropertyEditorPropertyDescriptionChangedEventArgs, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; import { IgxCategoryChartComponent, MarkerType, MarkerType_$type } from 'igniteui-angular-charts'; import { EnumUtil } from 'igniteui-angular-core'; @@ -23,10 +23,6 @@ export class AppComponent implements AfterViewInit private editor: IgxPropertyEditorPanelComponent @ViewChild("initialGroups", { static: true } ) private initialGroups: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("initialSummaries", { static: true } ) - private initialSummaries: IgxPropertyEditorPropertyDescriptionComponent - @ViewChild("groupSorts", { static: true } ) - private groupSorts: IgxPropertyEditorPropertyDescriptionComponent @ViewChild("chart", { static: true } ) private chart: IgxCategoryChartComponent private _salesData: SalesData = null; @@ -62,33 +58,44 @@ export class AppComponent implements AfterViewInit public propertyEditorInitAggregationsOnViewInit(): void { var editor = this.editor; - var initialSummaries = editor.actualProperties.filter((p) => p.label == "Initial Summaries")[0]; - initialSummaries.dropDownNames = ["Sum(Sales) as Sales", "Avg(Sales) as Sales", "Min(Sales) as Sales", "Max(Sales) as Sales", "Count(Sales) as Sales" ]; - initialSummaries.dropDownValues = ["Sum(Sales) as Sales", "Avg(Sales) as Sales", "Min(Sales) as Sales", "Max(Sales) as Sales", "Count(Sales) as Sales" ]; + var initialSummariesDropdown = new IgxPropertyEditorPropertyDescriptionComponent(); + var sortGroupsDropdown = new IgxPropertyEditorPropertyDescriptionComponent(); - var groupSorts = editor.actualProperties.filter((p) => p.label == "Sort Groups")[0]; - groupSorts.dropDownNames = ["Sales Desc", "Sales Asc"]; - groupSorts.dropDownValues = ["Sales Desc", "Sales Asc"]; - } + initialSummariesDropdown.label = "Initial Summaries"; + initialSummariesDropdown.valueType = PropertyEditorValueType.EnumValue; + initialSummariesDropdown.shouldOverrideDefaultEditor = true; + initialSummariesDropdown.dropDownNames = ["Sum(Sales) as Sales", "Avg(Sales) as Sales", "Min(Sales) as Sales", "Max(Sales) as Sales", "Count(Sales) as Sales" ]; + initialSummariesDropdown.dropDownValues = ["Sum(Sales) as Sales", "Avg(Sales) as Sales", "Min(Sales) as Sales", "Max(Sales) as Sales", "Count(Sales) as Sales" ]; - public editorChangeUpdateInitialGroups({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { + sortGroupsDropdown.label = "Sort Groups" + sortGroupsDropdown.valueType = PropertyEditorValueType.EnumValue; + sortGroupsDropdown.shouldOverrideDefaultEditor = true; + sortGroupsDropdown.dropDownNames = ["Sales Asc", "Sales Desc"]; + sortGroupsDropdown.dropDownValues = ["Sales Asc","Sales Desc"]; - var chart = this.chart; - var intialGroupVal = args.newValue.toString(); - chart.initialGroups = intialGroupVal; - } + editor.properties.add(initialSummariesDropdown); + editor.properties.add(sortGroupsDropdown); - public editorChangeUpdateInitialSummaries({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { + initialSummariesDropdown.changed.subscribe((event: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }) => { - var chart = this.chart; - var intialSummaryVal = args.newValue.toString(); - chart.initialSummaries = intialSummaryVal; + var chart = this.chart; + var intialSummaryVal = event.args.newValue.toString(); + chart.initialSummaries = intialSummaryVal; + }); + + sortGroupsDropdown.changed.subscribe((event: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }) => { + + var chart = this.chart; + var groupSortsVal = event.args.newValue.toString(); + chart.groupSorts = groupSortsVal; + }); } - public editorChangeUpdateGroupSorts({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { + public editorChangeUpdateInitialGroups({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { + var chart = this.chart; - var groupSortsVal = args.newValue.toString(); - chart.groupSorts = groupSortsVal; + var intialGroupVal = args.newValue.toString(); + chart.initialGroups = intialGroupVal; } } From a989f49fb26ea1e2070db8e65352e574d3585a29 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Tue, 23 Jan 2024 16:49:59 -0500 Subject: [PATCH 047/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.1.23.2 (#122) Co-authored-by: tfsbuild --- .../category-chart/data-aggregations/src/app.component.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/samples/charts/category-chart/data-aggregations/src/app.component.ts b/samples/charts/category-chart/data-aggregations/src/app.component.ts index e2e02748c..058bbe74e 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.component.ts +++ b/samples/charts/category-chart/data-aggregations/src/app.component.ts @@ -92,10 +92,8 @@ export class AppComponent implements AfterViewInit } public editorChangeUpdateInitialGroups({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { - var chart = this.chart; - var intialGroupVal = args.newValue.toString(); - chart.initialGroups = intialGroupVal; + chart.initialGroups = args.newValue.toString(); } } From 7ecf2bbbdfa7bb9f7a40901a7543d1ec155c0a01 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 09:14:32 -0500 Subject: [PATCH 048/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.1.24.2 (#124) Co-authored-by: tfsbuild --- .../data-aggregations/src/app.component.html | 2 +- .../category-chart/data-filter/.stackblitzrc | 1 + .../category-chart/data-filter/angular.json | 106 + .../category-chart/data-filter/package.json | 47 + .../data-filter/sandbox.config.json | 5 + .../data-filter/src/SalesData.ts | 16700 ++++++++++++++++ .../data-filter/src/app.component.html | 47 + .../data-filter/src/app.component.scss | 3 + .../data-filter/src/app.component.ts | 69 + .../data-filter/src/app.module.ts | 28 + .../src/config/tsconfig-es5.app.json | 6 + .../data-filter/src/config/tsconfig.app.json | 12 + .../data-filter/src/config/tsconfig.base.json | 24 + .../data-filter/src/config/tsconfig.spec.json | 19 + .../src/config/tsconfig.worker.json | 14 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../category-chart/data-filter/src/index.html | 23 + .../category-chart/data-filter/src/main.ts | 15 + .../data-filter/src/polyfills.ts | 65 + .../data-filter/src/styles.scss | 9 + .../data-filter/src/typings.d.ts | 5 + .../category-chart/data-filter/tsconfig.json | 21 + .../category-chart/data-filter/tslint.json | 31 + 24 files changed, 17270 insertions(+), 1 deletion(-) create mode 100644 samples/charts/category-chart/data-filter/.stackblitzrc create mode 100644 samples/charts/category-chart/data-filter/angular.json create mode 100644 samples/charts/category-chart/data-filter/package.json create mode 100644 samples/charts/category-chart/data-filter/sandbox.config.json create mode 100644 samples/charts/category-chart/data-filter/src/SalesData.ts create mode 100644 samples/charts/category-chart/data-filter/src/app.component.html create mode 100644 samples/charts/category-chart/data-filter/src/app.component.scss create mode 100644 samples/charts/category-chart/data-filter/src/app.component.ts create mode 100644 samples/charts/category-chart/data-filter/src/app.module.ts create mode 100644 samples/charts/category-chart/data-filter/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/category-chart/data-filter/src/config/tsconfig.app.json create mode 100644 samples/charts/category-chart/data-filter/src/config/tsconfig.base.json create mode 100644 samples/charts/category-chart/data-filter/src/config/tsconfig.spec.json create mode 100644 samples/charts/category-chart/data-filter/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/data-filter/src/environments/environment.prod.ts create mode 100644 samples/charts/category-chart/data-filter/src/environments/environment.ts create mode 100644 samples/charts/category-chart/data-filter/src/index.html create mode 100644 samples/charts/category-chart/data-filter/src/main.ts create mode 100644 samples/charts/category-chart/data-filter/src/polyfills.ts create mode 100644 samples/charts/category-chart/data-filter/src/styles.scss create mode 100644 samples/charts/category-chart/data-filter/src/typings.d.ts create mode 100644 samples/charts/category-chart/data-filter/tsconfig.json create mode 100644 samples/charts/category-chart/data-filter/tslint.json diff --git a/samples/charts/category-chart/data-aggregations/src/app.component.html b/samples/charts/category-chart/data-aggregations/src/app.component.html index 52f50db14..5832fb19d 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.component.html +++ b/samples/charts/category-chart/data-aggregations/src/app.component.html @@ -23,7 +23,7 @@
- Renewable Electricity Generated + Sales Aggregated by Country and Product
{ + public constructor() { + super(); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `501`, + ManufacturingPrice: 15, + SalePrice: 23, + GrossSales: 26440, + Discounts: 0, + Sales: 26440, + COGS: 16185, + Profit: 11255, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1372`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 27440, + Discounts: 0, + Sales: 27440, + COGS: 16185, + Profit: 11255, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2762`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 55240, + Discounts: 0, + Sales: 55240, + COGS: 13210, + Profit: 42030, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1464`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 21960, + Discounts: 0, + Sales: 21960, + COGS: 21780, + Profit: 180, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `719`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 10785, + Discounts: 0, + Sales: 10785, + COGS: 8880, + Profit: 1905, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3576`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 53640, + Discounts: 0, + Sales: 53640, + COGS: 24700, + Profit: 28940, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `4422`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1547700, + Discounts: 0, + Sales: 1547700, + COGS: 393380, + Profit: 1154320, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3649`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 54735, + Discounts: 0, + Sales: 54735, + COGS: 9210, + Profit: 45525, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `4172`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 50064, + Discounts: 0, + Sales: 50064, + COGS: 7554, + Profit: 42510, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3841`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 76820, + Discounts: 0, + Sales: 76820, + COGS: 18990, + Profit: 57830, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3726`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 44712, + Discounts: 0, + Sales: 44712, + COGS: 4635, + Profit: 40077, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `2625`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 39375, + Discounts: 0, + Sales: 39375, + COGS: 24700, + Profit: 14675, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1958`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 244750, + Discounts: 0, + Sales: 244750, + COGS: 319860, + Profit: 75110, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `3271`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 981300, + Discounts: 0, + Sales: 981300, + COGS: 239500, + Profit: 741800, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2091`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 14637, + Discounts: 0, + Sales: 14637, + COGS: 10730, + Profit: 3907, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `2825`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 42375, + Discounts: 0, + Sales: 42375, + COGS: 6150, + Profit: 36225, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2513`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 50260, + Discounts: 0, + Sales: 50260, + COGS: 2920, + Profit: 47340, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `883`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 13245, + Discounts: 0, + Sales: 13245, + COGS: 9740, + Profit: 3505, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2087`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 25044, + Discounts: 0, + Sales: 25044, + COGS: 7554, + Profit: 17490, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2563`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 897050, + Discounts: 0, + Sales: 897050, + COGS: 261560, + Profit: 635490, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2846`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 34152, + Discounts: 0, + Sales: 34152, + COGS: 1101, + Profit: 33051, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `997`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 6979, + Discounts: 0, + Sales: 6979, + COGS: 4415, + Profit: 2564, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2290`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 34350, + Discounts: 0, + Sales: 34350, + COGS: 24720, + Profit: 9630, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2133`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14931, + Discounts: 0, + Sales: 14931, + COGS: 5715, + Profit: 9216, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3617`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 72340, + Discounts: 0, + Sales: 72340, + COGS: 18170, + Profit: 54170, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1266`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 443100, + Discounts: 0, + Sales: 443100, + COGS: 393380, + Profit: 49720, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `894`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 6258, + Discounts: 0, + Sales: 6258, + COGS: 7465, + Profit: 1207, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `2725`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 340625, + Discounts: 0, + Sales: 340625, + COGS: 216480, + Profit: 124145, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3061`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 36732, + Discounts: 0, + Sales: 36732, + COGS: 6483, + Profit: 30249, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3958`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1385300, + Discounts: 0, + Sales: 1385300, + COGS: 261560, + Profit: 1123740, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3920`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 47040, + Discounts: 0, + Sales: 47040, + COGS: 4635, + Profit: 42405, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3381`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 422625, + Discounts: 0, + Sales: 422625, + COGS: 338520, + Profit: 84105, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `4307`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 1292100, + Discounts: 0, + Sales: 1292100, + COGS: 500250, + Profit: 791850, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `878`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10536, + Discounts: 0, + Sales: 10536, + COGS: 8514, + Profit: 2022, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `496`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 7440, + Discounts: 0, + Sales: 7440, + COGS: 21780, + Profit: 14340, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3367`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 50505, + Discounts: 0, + Sales: 50505, + COGS: 8880, + Profit: 41625, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2055`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 616500, + Discounts: 0, + Sales: 616500, + COGS: 537750, + Profit: 78750, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `4041`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 80820, + Discounts: 0, + Sales: 80820, + COGS: 18170, + Profit: 62650, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `3237`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1132950, + Discounts: 0, + Sales: 1132950, + COGS: 715000, + Profit: 417950, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `630`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 7560, + Discounts: 0, + Sales: 7560, + COGS: 5859, + Profit: 1701, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `4210`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 526250, + Discounts: 0, + Sales: 526250, + COGS: 506340, + Profit: 19910, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1127`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 22540, + Discounts: 0, + Sales: 22540, + COGS: 18990, + Profit: 3550, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `3438`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 24066, + Discounts: 0, + Sales: 24066, + COGS: 8430, + Profit: 15636, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2015`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 24180, + Discounts: 0, + Sales: 24180, + COGS: 6423, + Profit: 17757, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2534`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 17738, + Discounts: 0, + Sales: 17738, + COGS: 5715, + Profit: 12023, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1384`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 20760, + Discounts: 0, + Sales: 20760, + COGS: 6150, + Profit: 14610, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3561`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 24927, + Discounts: 276.15, + Sales: 24650.85, + COGS: 19725, + Profit: 4925.85, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1823`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27345, + Discounts: 344.4, + Sales: 27000.6, + COGS: 22960, + Profit: 4040.6, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2795`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19565, + Discounts: 72.1, + Sales: 19492.9, + COGS: 5150, + Profit: 14342.9, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `457`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 3199, + Discounts: 44.73, + Sales: 3154.27, + COGS: 3195, + Profit: 40.73, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3785`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26495, + Discounts: 92.82, + Sales: 26402.18, + COGS: 6630, + Profit: 19772.18, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `748`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 8976, + Discounts: 222.96, + Sales: 8753.04, + COGS: 5574, + Profit: 3179.04, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1021`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 357350, + Discounts: 4235, + Sales: 353115, + COGS: 314600, + Profit: 38515, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `2076`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 14532, + Discounts: 177.03, + Sales: 14354.97, + COGS: 12645, + Profit: 1709.97, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `4316`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 51792, + Discounts: 173.4, + Sales: 51618.6, + COGS: 4335, + Profit: 47283.6, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `4174`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50088, + Discounts: 320.52, + Sales: 49767.48, + COGS: 8013, + Profit: 41754.48, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3736`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1307600, + Discounts: 4889.5, + Sales: 1302710.5, + COGS: 363220, + Profit: 939490.5, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1914`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 669900, + Discounts: 7542.5, + Sales: 662357.5, + COGS: 560300, + Profit: 102057.5, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `2742`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 41130, + Discounts: 332.1, + Sales: 40797.9, + COGS: 22140, + Profit: 18657.9, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1499`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 449700, + Discounts: 6903, + Sales: 442797, + COGS: 575250, + Profit: 132453, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3772`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 75440, + Discounts: 275.1, + Sales: 75164.9, + COGS: 13755, + Profit: 61409.9, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1112`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 7784, + Discounts: 128.1, + Sales: 7655.9, + COGS: 9150, + Profit: 1494.1, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2368`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 35520, + Discounts: 227.1, + Sales: 35292.9, + COGS: 15140, + Profit: 20152.9, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1586`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 11102, + Discounts: 314.48, + Sales: 10787.52, + COGS: 22462.5, + Profit: 11674.98, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3386`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 423250, + Discounts: 908.75, + Sales: 422341.25, + COGS: 87240, + Profit: 335101.25, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `852`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 106500, + Discounts: 983.75, + Sales: 105516.25, + COGS: 94440, + Profit: 11076.25, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2783`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 347875, + Discounts: 2278.75, + Sales: 345596.25, + COGS: 218760, + Profit: 126836.25, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2684`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 40260, + Discounts: 112.05, + Sales: 40147.95, + COGS: 7470, + Profit: 32677.95, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4083`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1224900, + Discounts: 8715, + Sales: 1216185, + COGS: 726250, + Profit: 489935, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2816`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 985600, + Discounts: 7542.5, + Sales: 978057.5, + COGS: 560300, + Profit: 417757.5, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `4294`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 85880, + Discounts: 772.8, + Sales: 85107.2, + COGS: 38640, + Profit: 46467.2, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2856`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 19992, + Discounts: 25.34, + Sales: 19966.66, + COGS: 1810, + Profit: 18156.66, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `1407`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 175875, + Discounts: 1153.75, + Sales: 174721.25, + COGS: 110760, + Profit: 63961.25, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `1265`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 8855, + Discounts: 18.41, + Sales: 8836.59, + COGS: 1315, + Profit: 7521.59, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3892`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1362200, + Discounts: 3302.25, + Sales: 1358897.75, + COGS: 245310, + Profit: 1113587.75, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `3068`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 383500, + Discounts: 908.75, + Sales: 382591.25, + COGS: 87240, + Profit: 295351.25, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2181`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 272625, + Discounts: 983.75, + Sales: 271641.25, + COGS: 94440, + Profit: 177201.25, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `1356`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 406800, + Discounts: 2958, + Sales: 403842, + COGS: 246500, + Profit: 177201.25, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1814`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 634900, + Discounts: 4889.5, + Sales: 630010.5, + COGS: 363220, + Profit: 266790.5, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `1495`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 186875, + Discounts: 2180, + Sales: 184695, + COGS: 209280, + Profit: 24585, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1463`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 182875, + Discounts: 1856.25, + Sales: 181018.75, + COGS: 89100, + Profit: 91918.75, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `215`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 2580, + Discounts: 310.8, + Sales: 2269.2, + COGS: 3885, + Profit: 1615.8, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `566`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 198100, + Discounts: 19964, + Sales: 178136, + COGS: 741520, + Profit: 563384, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `3255`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 39060, + Discounts: 274.08, + Sales: 38785.92, + COGS: 3426, + Profit: 35359.92, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `772`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 15440, + Discounts: 626.4, + Sales: 14813.6, + COGS: 15660, + Profit: 846.4, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1135`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13620, + Discounts: 165.6, + Sales: 13454.4, + COGS: 2070, + Profit: 11384.4, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1193`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 17895, + Discounts: 708.9, + Sales: 17186.1, + COGS: 23630, + Profit: 6443.9, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2530`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 759000, + Discounts: 5508, + Sales: 753492, + COGS: 229500, + Profit: 523992, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3451`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1035300, + Discounts: 10368, + Sales: 1024932, + COGS: 432000, + Profit: 592932, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3059`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 36708, + Discounts: 274.08, + Sales: 36433.92, + COGS: 3426, + Profit: 33007.92, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3957`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 494625, + Discounts: 1655, + Sales: 492970, + COGS: 79440, + Profit: 413530, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3444`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 41328, + Discounts: 310.8, + Sales: 41017.2, + COGS: 3885, + Profit: 37132.2, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3154`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 946200, + Discounts: 11496, + Sales: 934704, + COGS: 479000, + Profit: 455704, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `4108`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1437800, + Discounts: 19964, + Sales: 1417836, + COGS: 741520, + Profit: 676316, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3760`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 470000, + Discounts: 6822.5, + Sales: 463177.5, + COGS: 327480, + Profit: 135697.5, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2334`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 28008, + Discounts: 253.2, + Sales: 27754.8, + COGS: 3165, + Profit: 24589.8, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `580`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 6960, + Discounts: 260.16, + Sales: 6699.84, + COGS: 3252, + Profit: 3447.84, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2610`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 52200, + Discounts: 626.4, + Sales: 51573.6, + COGS: 15660, + Profit: 35913.6, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `1459`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 510650, + Discounts: 20139, + Sales: 490511, + COGS: 748020, + Profit: 257509, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `3774`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 45288, + Discounts: 253.2, + Sales: 45034.8, + COGS: 3165, + Profit: 41869.8, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2572`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 30864, + Discounts: 260.16, + Sales: 30603.84, + COGS: 3252, + Profit: 27351.84, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `320`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 40000, + Discounts: 1655, + Sales: 38345, + COGS: 79440, + Profit: 41095, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3275`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1146250, + Discounts: 20139, + Sales: 1126111, + COGS: 748020, + Profit: 378091, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3582`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 447750, + Discounts: 6822.5, + Sales: 440927.5, + COGS: 327480, + Profit: 113447.5, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `4056`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1216800, + Discounts: 1554, + Sales: 1215246, + COGS: 64750, + Profit: 1150496, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2144`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 643200, + Discounts: 6606, + Sales: 636594, + COGS: 275250, + Profit: 361344, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `3502`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 437750, + Discounts: 5690, + Sales: 432060, + COGS: 273120, + Profit: 158940, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `679`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 13580, + Discounts: 494.4, + Sales: 13085.6, + COGS: 12360, + Profit: 725.6, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `2351`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 47020, + Discounts: 376.4, + Sales: 46643.6, + COGS: 9410, + Profit: 37233.6, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `2043`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 612900, + Discounts: 11496, + Sales: 601404, + COGS: 479000, + Profit: 122404, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `3565`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 445625, + Discounts: 15913.13, + Sales: 429711.88, + COGS: 509220, + Profit: 79508.13, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1401`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 28020, + Discounts: 1548, + Sales: 26472, + COGS: 25800, + Profit: 672, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2077`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 623100, + Discounts: 6201, + Sales: 616899, + COGS: 172250, + Profit: 444649, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `3643`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 43716, + Discounts: 700.92, + Sales: 43015.08, + COGS: 5841, + Profit: 37174.08, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2960`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20720, + Discounts: 411.18, + Sales: 20308.82, + COGS: 9790, + Profit: 10518.82, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1201`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 14412, + Discounts: 684.36, + Sales: 13727.64, + COGS: 5703, + Profit: 8024.64, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `2321`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 16247, + Discounts: 114.24, + Sales: 16132.76, + COGS: 2720, + Profit: 13412.76, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3972`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 496500, + Discounts: 4826.25, + Sales: 491673.75, + COGS: 154440, + Profit: 337233.75, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3878`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 484750, + Discounts: 6397.5, + Sales: 478352.5, + COGS: 204720, + Profit: 273632.5, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2278`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 683400, + Discounts: 21910.5, + Sales: 661489.5, + COGS: 608625, + Profit: 52864.5, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1075`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 134375, + Discounts: 6652.5, + Sales: 127722.5, + COGS: 212880, + Profit: 85157.5, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `4050`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 48600, + Discounts: 684.36, + Sales: 47915.64, + COGS: 5703, + Profit: 42212.64, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3035`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 910500, + Discounts: 6201, + Sales: 904299, + COGS: 172250, + Profit: 732049, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3636`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 454500, + Discounts: 5887.5, + Sales: 448612.5, + COGS: 188400, + Profit: 260212.5, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1379`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 16548, + Discounts: 493.02, + Sales: 16054.98, + COGS: 4108.5, + Profit: 11946.48, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `4492`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 561500, + Discounts: 7533.75, + Sales: 553966.25, + COGS: 241080, + Profit: 312886.25, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1744`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 218000, + Discounts: 4826.25, + Sales: 213173.75, + COGS: 154440, + Profit: 58733.75, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2341`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 292625, + Discounts: 6397.5, + Sales: 286227.5, + COGS: 204720, + Profit: 81507.5, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3835`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 479375, + Discounts: 7533.75, + Sales: 471841.25, + COGS: 241080, + Profit: 230761.25, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1161`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 348300, + Discounts: 25596, + Sales: 322704, + COGS: 711000, + Profit: 388296, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `876`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10512, + Discounts: 689.76, + Sales: 9822.24, + COGS: 5748, + Profit: 4074.24, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `1705`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 213125, + Discounts: 5887.5, + Sales: 207237.5, + COGS: 188400, + Profit: 18837.5, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1805`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 541500, + Discounts: 16866, + Sales: 524634, + COGS: 468500, + Profit: 56134, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `389`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 136150, + Discounts: 17241, + Sales: 118909, + COGS: 426920, + Profit: 308011, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1459`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 29180, + Discounts: 498.6, + Sales: 28681.4, + COGS: 8310, + Profit: 20371.4, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `4236`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 84720, + Discounts: 2310.3, + Sales: 82409.7, + COGS: 38505, + Profit: 43904.7, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3627`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 43524, + Discounts: 892.44, + Sales: 42631.56, + COGS: 7437, + Profit: 35194.56, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1756`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 26340, + Discounts: 1218.6, + Sales: 25121.4, + COGS: 20310, + Profit: 4811.4, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `307`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 4605, + Discounts: 1218.6, + Sales: 3386.4, + COGS: 20310, + Profit: 16923.6, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1222`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 366600, + Discounts: 24252, + Sales: 342348, + COGS: 505250, + Profit: 162902, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `489`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 171150, + Discounts: 3836, + Sales: 167314, + COGS: 71240, + Profit: 96074, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `4133`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 61995, + Discounts: 1180.2, + Sales: 60814.8, + COGS: 19670, + Profit: 41144.8, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2743`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 822900, + Discounts: 22308, + Sales: 800592, + COGS: 464750, + Profit: 335842, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `4460`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1338000, + Discounts: 24252, + Sales: 1313748, + COGS: 505250, + Profit: 808498, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1232`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 154000, + Discounts: 5690, + Sales: 148310, + COGS: 136560, + Profit: 11750, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2586`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 18102, + Discounts: 1190.28, + Sales: 16911.72, + COGS: 21255, + Profit: 4343.28, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1332`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 166500, + Discounts: 3975, + Sales: 162525, + COGS: 95400, + Profit: 67125, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4487`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1346100, + Discounts: 16974, + Sales: 1329126, + COGS: 353625, + Profit: 975501, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3862`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1158600, + Discounts: 35016, + Sales: 1123584, + COGS: 729500, + Profit: 394084, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1765`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 617750, + Discounts: 48300, + Sales: 569450, + COGS: 897000, + Profit: 327550, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3533`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 441625, + Discounts: 14940, + Sales: 426685, + COGS: 358560, + Profit: 68125, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2016`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 30240, + Discounts: 130.8, + Sales: 30109.2, + COGS: 2180, + Profit: 27929.2, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2938`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 58760, + Discounts: 1659.2, + Sales: 57100.8, + COGS: 20740, + Profit: 36360.8, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3352`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67040, + Discounts: 844.8, + Sales: 66195.2, + COGS: 10560, + Profit: 55635.2, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2430`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 850500, + Discounts: 3836, + Sales: 846664, + COGS: 71240, + Profit: 775424, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `535`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 66875, + Discounts: 5690, + Sales: 61185, + COGS: 136560, + Profit: 75375, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1523`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 18276, + Discounts: 703.2, + Sales: 17572.8, + COGS: 4395, + Profit: 13177.8, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1782`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 623700, + Discounts: 30478, + Sales: 593222, + COGS: 566020, + Profit: 27202, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `347`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 4164, + Discounts: 415.68, + Sales: 3748.32, + COGS: 2598, + Profit: 1150.32, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3509`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1228150, + Discounts: 30478, + Sales: 1197672, + COGS: 566020, + Profit: 631652, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2943`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1030050, + Discounts: 26110, + Sales: 1003940, + COGS: 484900, + Profit: 519040, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `4037`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 504625, + Discounts: 5370, + Sales: 499255, + COGS: 128880, + Profit: 370375, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `4146`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1451100, + Discounts: 26698, + Sales: 1424402, + COGS: 495820, + Profit: 928582, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `725`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 5075, + Discounts: 480.2, + Sales: 4594.8, + COGS: 6860, + Profit: 2265.2, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2325`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 16275, + Discounts: 941.15, + Sales: 15333.85, + COGS: 13445, + Profit: 1888.85, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `675`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 8100, + Discounts: 1458.6, + Sales: 6641.4, + COGS: 7293, + Profit: 651.6, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2990`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 35880, + Discounts: 1458.6, + Sales: 34421.4, + COGS: 7293, + Profit: 27128.4, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1072`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 7504, + Discounts: 941.15, + Sales: 6562.85, + COGS: 13445, + Profit: 6882.15, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `1048`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 7336, + Discounts: 589.05, + Sales: 6746.95, + COGS: 8415, + Profit: 1668.05, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `469`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 5628, + Discounts: 673.8, + Sales: 4954.2, + COGS: 3369, + Profit: 1585.2, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `4240`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50880, + Discounts: 1119, + Sales: 49761, + COGS: 5595, + Profit: 44166, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1976`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 23712, + Discounts: 669.6, + Sales: 23042.4, + COGS: 3348, + Profit: 19694.4, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1984`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39680, + Discounts: 1563, + Sales: 38117, + COGS: 15630, + Profit: 22487, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `480`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 144000, + Discounts: 14865, + Sales: 129135, + COGS: 247750, + Profit: 118615, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1205`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 18075, + Discounts: 2093.25, + Sales: 15981.75, + COGS: 27910, + Profit: 11928.25, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `2480`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 17360, + Discounts: 199.5, + Sales: 17160.5, + COGS: 2850, + Profit: 14310.5, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `2926`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 20482, + Discounts: 870.45, + Sales: 19611.55, + COGS: 12435, + Profit: 7176.55, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3210`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1123500, + Discounts: 24228.75, + Sales: 1099271.25, + COGS: 359970, + Profit: 739301.25, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `3221`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 402625, + Discounts: 22668.75, + Sales: 379956.25, + COGS: 435240, + Profit: 55283.75, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `1127`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13524, + Discounts: 1405.2, + Sales: 12118.8, + COGS: 7026, + Profit: 5092.8, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1610`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 32200, + Discounts: 1303, + Sales: 30897, + COGS: 13030, + Profit: 17867, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4100`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 512500, + Discounts: 18700, + Sales: 493800, + COGS: 359040, + Profit: 134760, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1012`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 126500, + Discounts: 14906.25, + Sales: 111593.75, + COGS: 286200, + Profit: 174606.25, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3337`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1001100, + Discounts: 24105, + Sales: 976995, + COGS: 401750, + Profit: 575245, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3955`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 27685, + Discounts: 814.45, + Sales: 26870.55, + COGS: 11635, + Profit: 15235.55, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4347`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1304100, + Discounts: 14865, + Sales: 1289235, + COGS: 247750, + Profit: 1041485, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1548`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 541800, + Discounts: 10535, + Sales: 531265, + COGS: 156520, + Profit: 374745, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2153`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 32295, + Discounts: 1965, + Sales: 30330, + COGS: 26200, + Profit: 4130, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4126`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 515750, + Discounts: 5381.25, + Sales: 510368.75, + COGS: 103320, + Profit: 407048.75, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3376`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67520, + Discounts: 2663, + Sales: 64857, + COGS: 26630, + Profit: 38227, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2244`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 33660, + Discounts: 416.25, + Sales: 33243.75, + COGS: 5550, + Profit: 27693.75, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `1360`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 20400, + Discounts: 2145.75, + Sales: 18254.25, + COGS: 28610, + Profit: 10355.75, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `279`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 34875, + Discounts: 5043.75, + Sales: 29831.25, + COGS: 96840, + Profit: 67008.75, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2521`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 882350, + Discounts: 10535, + Sales: 871815, + COGS: 156520, + Profit: 715295, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2433`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 48660, + Discounts: 2832, + Sales: 45828, + COGS: 28320, + Profit: 17508, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1738`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 34760, + Discounts: 1579, + Sales: 33181, + COGS: 15790, + Profit: 17391, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1106`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 138250, + Discounts: 5381.25, + Sales: 132868.75, + COGS: 103320, + Profit: 29548.75, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `213`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 63900, + Discounts: 18750, + Sales: 45150, + COGS: 312500, + Profit: 267350, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2929`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 58580, + Discounts: 2663, + Sales: 55917, + COGS: 26630, + Profit: 29287, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2389`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 16723, + Discounts: 199.5, + Sales: 16523.5, + COGS: 2850, + Profit: 13673.5, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3086`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 21602, + Discounts: 870.45, + Sales: 20731.55, + COGS: 12435, + Profit: 8296.55, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `745`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 260750, + Discounts: 23625, + Sales: 237125, + COGS: 351000, + Profit: 113875, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `1266`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 443100, + Discounts: 9660, + Sales: 433440, + COGS: 143520, + Profit: 289920, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `4287`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1286100, + Discounts: 18750, + Sales: 1267350, + COGS: 312500, + Profit: 954850, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3193`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 47895, + Discounts: 3420.9, + Sales: 44474.1, + COGS: 38010, + Profit: 6464.1, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `1967`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39340, + Discounts: 1341, + Sales: 37999, + COGS: 11175, + Profit: 26824, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `631`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 9465, + Discounts: 2559.6, + Sales: 6905.4, + COGS: 28440, + Profit: 21534.6, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3469`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 41628, + Discounts: 404.64, + Sales: 41223.36, + COGS: 1686, + Profit: 39537.36, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `3215`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 48225, + Discounts: 1827, + Sales: 46398, + COGS: 20300, + Profit: 26098, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1959`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 685650, + Discounts: 20580, + Sales: 665070, + COGS: 254800, + Profit: 410270, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2181`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 763350, + Discounts: 30660, + Sales: 732690, + COGS: 379600, + Profit: 353090, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `2205`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 26460, + Discounts: 1960.56, + Sales: 24499.44, + COGS: 8169, + Profit: 16330.44, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1890`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 661500, + Discounts: 31416, + Sales: 630084, + COGS: 388960, + Profit: 241124, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2417`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 302125, + Discounts: 7140, + Sales: 294985, + COGS: 114240, + Profit: 180745, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1158`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 144750, + Discounts: 20662.5, + Sales: 124087.5, + COGS: 330600, + Profit: 206512.5, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `803`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 12045, + Discounts: 1377, + Sales: 10668, + COGS: 15300, + Profit: 4632, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `3705`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1296750, + Discounts: 31416, + Sales: 1265334, + COGS: 388960, + Profit: 876374, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `589`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 4123, + Discounts: 629.16, + Sales: 3493.84, + COGS: 7490, + Profit: 3996.16, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3999`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 59985, + Discounts: 2559.6, + Sales: 57425.4, + COGS: 28440, + Profit: 28985.4, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `4256`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 29792, + Discounts: 629.16, + Sales: 29162.84, + COGS: 7490, + Profit: 21672.84, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `2160`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 270000, + Discounts: 14906.25, + Sales: 255093.75, + COGS: 238500, + Profit: 16593.75, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `466`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 163100, + Discounts: 35259, + Sales: 127841, + COGS: 436540, + Profit: 308699, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1478`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 22170, + Discounts: 1978.2, + Sales: 20191.8, + COGS: 21980, + Profit: 1788.2, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3798`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 56970, + Discounts: 1568.7, + Sales: 55401.3, + COGS: 17430, + Profit: 37971.3, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `447`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 6705, + Discounts: 1037.7, + Sales: 5667.3, + COGS: 11530, + Profit: 5862.7, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `745`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 14900, + Discounts: 1201.2, + Sales: 13698.8, + COGS: 10010, + Profit: 3688.8, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `1732`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 12124, + Discounts: 559.86, + Sales: 11564.14, + COGS: 6665, + Profit: 4899.14, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1759`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 26385, + Discounts: 1037.7, + Sales: 25347.3, + COGS: 11530, + Profit: 13817.3, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `338`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 4056, + Discounts: 610.68, + Sales: 3445.32, + COGS: 2181, + Profit: 1264.32, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `3911`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 46932, + Discounts: 1582.56, + Sales: 45349.44, + COGS: 5652, + Profit: 39697.44, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `4473`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 53676, + Discounts: 1965.6, + Sales: 51710.4, + COGS: 7020, + Profit: 44690.4, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `383`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 4596, + Discounts: 1967.28, + Sales: 2628.72, + COGS: 7026, + Profit: 4397.28, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `1062`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 15930, + Discounts: 1325.1, + Sales: 14604.9, + COGS: 12620, + Profit: 1984.9, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `4083`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 28581, + Discounts: 556.15, + Sales: 28024.85, + COGS: 5675, + Profit: 22349.85, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3974`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 27818, + Discounts: 268.03, + Sales: 27549.97, + COGS: 2735, + Profit: 24814.97, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3723`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 26061, + Discounts: 775.18, + Sales: 25285.82, + COGS: 7910, + Profit: 17375.82, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2435`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 29220, + Discounts: 1460.34, + Sales: 27759.66, + COGS: 5215.5, + Profit: 22544.16, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1763`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 12341, + Discounts: 775.18, + Sales: 11565.82, + COGS: 7910, + Profit: 3655.82, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `4473`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 31311, + Discounts: 556.15, + Sales: 30754.85, + COGS: 5675, + Profit: 25079.85, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `1246`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 436100, + Discounts: 43144.5, + Sales: 392955.5, + COGS: 457860, + Profit: 64904.5, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1615`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 484500, + Discounts: 9408, + Sales: 475092, + COGS: 112000, + Profit: 363092, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `749`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 224700, + Discounts: 45801, + Sales: 178899, + COGS: 545250, + Profit: 366351, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1318`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 26360, + Discounts: 2766.4, + Sales: 23593.6, + COGS: 19760, + Profit: 3833.6, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `2882`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 864600, + Discounts: 45801, + Sales: 818799, + COGS: 545250, + Profit: 273549, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2484`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 745200, + Discounts: 35742, + Sales: 709458, + COGS: 425500, + Profit: 283958, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3169`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 950700, + Discounts: 9408, + Sales: 941292, + COGS: 112000, + Profit: 829292, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4080`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 510000, + Discounts: 30738.75, + Sales: 479261.25, + COGS: 421560, + Profit: 57701.25, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3943`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 59145, + Discounts: 2206.05, + Sales: 56938.95, + COGS: 21010, + Profit: 35928.95, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `253`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 5060, + Discounts: 2149, + Sales: 2911, + COGS: 15350, + Profit: 12439, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `799`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 239700, + Discounts: 34839, + Sales: 204861, + COGS: 414750, + Profit: 209889, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `3942`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 78840, + Discounts: 852.6, + Sales: 77987.4, + COGS: 6090, + Profit: 71897.4, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `2498`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 312250, + Discounts: 18261.25, + Sales: 293988.75, + COGS: 250440, + Profit: 43548.75, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `2517`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 50340, + Discounts: 2766.4, + Sales: 47573.6, + COGS: 19760, + Profit: 27813.6, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1145`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 343500, + Discounts: 28812, + Sales: 314688, + COGS: 343000, + Profit: 28312, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3814`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 45768, + Discounts: 2725.38, + Sales: 43042.62, + COGS: 9733.5, + Profit: 33309.12, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `1188`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 356400, + Discounts: 20139, + Sales: 336261, + COGS: 239750, + Profit: 96511, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `2233`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 669900, + Discounts: 57687, + Sales: 612213, + COGS: 686750, + Profit: 74537, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `421`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 52625, + Discounts: 14393.75, + Sales: 38231.25, + COGS: 197400, + Profit: 159168.75, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `269`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 94150, + Discounts: 70462, + Sales: 23688, + COGS: 747760, + Profit: 724072, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `952`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19040, + Discounts: 1565.2, + Sales: 17474.8, + COGS: 11180, + Profit: 6294.8, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2964`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 889200, + Discounts: 28812, + Sales: 860388, + COGS: 343000, + Profit: 517388, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1505`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 10535, + Discounts: 273.28, + Sales: 10261.72, + COGS: 2440, + Profit: 7821.72, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1678`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 33560, + Discounts: 2051.2, + Sales: 31508.8, + COGS: 12820, + Profit: 18688.8, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `4249`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 29743, + Discounts: 143.92, + Sales: 29599.08, + COGS: 1285, + Profit: 28314.08, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1677`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 33540, + Discounts: 2051.2, + Sales: 31488.8, + COGS: 12820, + Profit: 18668.8, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3051`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 381375, + Discounts: 15400, + Sales: 365975, + COGS: 184800, + Profit: 181175, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `3372`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 50580, + Discounts: 588, + Sales: 49992, + COGS: 4900, + Profit: 45092, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1686`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 590100, + Discounts: 38136, + Sales: 551964, + COGS: 354120, + Profit: 197844, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3086`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 46290, + Discounts: 3001.2, + Sales: 43288.8, + COGS: 25010, + Profit: 18278.8, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `4150`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 83000, + Discounts: 1132.8, + Sales: 81867.2, + COGS: 7080, + Profit: 74787.2, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3027`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 60540, + Discounts: 1032, + Sales: 59508, + COGS: 6450, + Profit: 53058, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `4359`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1307700, + Discounts: 37488, + Sales: 1270212, + COGS: 390500, + Profit: 879712, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `1589`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 23835, + Discounts: 853.2, + Sales: 22981.8, + COGS: 7110, + Profit: 15871.8, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2679`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 334875, + Discounts: 11140, + Sales: 323735, + COGS: 133680, + Profit: 190055, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3401`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 23807, + Discounts: 705.04, + Sales: 23101.96, + COGS: 6295, + Profit: 16806.96, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2815`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19705, + Discounts: 613.2, + Sales: 19091.8, + COGS: 5475, + Profit: 13616.8, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2964`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 59280, + Discounts: 2185.6, + Sales: 57094.4, + COGS: 13660, + Profit: 43434.4, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `4173`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1251900, + Discounts: 59040, + Sales: 1192860, + COGS: 615000, + Profit: 577860, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1157`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 8099, + Discounts: 379.68, + Sales: 7719.32, + COGS: 3390, + Profit: 4329.32, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3065`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 21455, + Discounts: 894.88, + Sales: 20560.12, + COGS: 7990, + Profit: 12570.12, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4080`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 81600, + Discounts: 3094.4, + Sales: 78505.6, + COGS: 19340, + Profit: 59165.6, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1713`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34260, + Discounts: 4788.8, + Sales: 29471.2, + COGS: 29930, + Profit: 458.8, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1691`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 591850, + Discounts: 38136, + Sales: 553714, + COGS: 354120, + Profit: 199594, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2305`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 27660, + Discounts: 574.08, + Sales: 27085.92, + COGS: 1794, + Profit: 25291.92, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3401`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 23807, + Discounts: 1627.92, + Sales: 22179.08, + COGS: 14535, + Profit: 7644.08, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `2288`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 16016, + Discounts: 1309.28, + Sales: 14706.72, + COGS: 11690, + Profit: 3016.72, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `4086`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1225800, + Discounts: 15240, + Sales: 1210560, + COGS: 158750, + Profit: 1051810, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2651`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 927850, + Discounts: 16086, + Sales: 911764, + COGS: 149370, + Profit: 762394, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3971`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27797, + Discounts: 1309.28, + Sales: 26487.72, + COGS: 11690, + Profit: 14797.72, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2512`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 879200, + Discounts: 10668, + Sales: 868532, + COGS: 99060, + Profit: 769472, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `2745`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 960750, + Discounts: 11816, + Sales: 948934, + COGS: 109720, + Profit: 839214, + Date: `8/1/20`, + MonthName: `August`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1903`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 570900, + Discounts: 51216, + Sales: 519684, + COGS: 533500, + Profit: 13816, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `2914`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 58280, + Discounts: 1132.8, + Sales: 57147.2, + COGS: 7080, + Profit: 50067.2, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1889`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 13223, + Discounts: 1627.92, + Sales: 11595.08, + COGS: 14535, + Profit: 2939.92, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `1466`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 29320, + Discounts: 2185.6, + Sales: 27134.4, + COGS: 13660, + Profit: 13474.4, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `887`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 266100, + Discounts: 59040, + Sales: 207060, + COGS: 615000, + Profit: 407940, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `395`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 7900, + Discounts: 2432, + Sales: 5468, + COGS: 15200, + Profit: 9732, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `1693`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 25395, + Discounts: 853.2, + Sales: 24541.8, + COGS: 7110, + Profit: 17431.8, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2649`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 794700, + Discounts: 15240, + Sales: 779460, + COGS: 158750, + Profit: 620710, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `3608`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 72160, + Discounts: 698.4, + Sales: 71461.6, + COGS: 4365, + Profit: 67096.6, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1073`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 321900, + Discounts: 29538, + Sales: 292362, + COGS: 273500, + Profit: 18862, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `2167`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 650100, + Discounts: 102667.5, + Sales: 547432.5, + COGS: 950625, + Profit: 403192.5, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1319`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 461650, + Discounts: 52479, + Sales: 409171, + COGS: 433160, + Profit: 23989, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1252`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 15024, + Discounts: 2506.68, + Sales: 12517.32, + COGS: 6963, + Profit: 5554.32, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1156`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 144500, + Discounts: 31466.25, + Sales: 113033.75, + COGS: 335640, + Profit: 222606.25, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1153`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 345900, + Discounts: 69255, + Sales: 276645, + COGS: 641250, + Profit: 364605, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2720`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 952000, + Discounts: 76135.5, + Sales: 875864.5, + COGS: 628420, + Profit: 247444.5, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3658`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 54870, + Discounts: 4961.25, + Sales: 49908.75, + COGS: 36750, + Profit: 13158.75, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2950`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 885000, + Discounts: 29538, + Sales: 855462, + COGS: 273500, + Profit: 581962, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1821`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27315, + Discounts: 1656.45, + Sales: 25658.55, + COGS: 12270, + Profit: 13388.55, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1127`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 338100, + Discounts: 35748, + Sales: 302352, + COGS: 331000, + Profit: 28648, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `862`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 107750, + Discounts: 31466.25, + Sales: 76283.75, + COGS: 335640, + Profit: 259356.25, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `3805`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 57075, + Discounts: 330.75, + Sales: 56744.25, + COGS: 2450, + Profit: 54294.25, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `1415`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 424500, + Discounts: 102424.5, + Sales: 322075.5, + COGS: 948375, + Profit: 626299.5, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `2231`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 780850, + Discounts: 41170.5, + Sales: 739679.5, + COGS: 339820, + Profit: 399859.5, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3649`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 456125, + Discounts: 6378.75, + Sales: 449746.25, + COGS: 68040, + Profit: 381706.25, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2948`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 368500, + Discounts: 23737.5, + Sales: 344762.5, + COGS: 253200, + Profit: 91562.5, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3395`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1188250, + Discounts: 39973.5, + Sales: 1148276.5, + COGS: 329940, + Profit: 818336.5, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2650`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 31800, + Discounts: 2112.48, + Sales: 29687.52, + COGS: 5868, + Profit: 23819.52, + Date: `1/1/20`, + MonthName: `January`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `585`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 175500, + Discounts: 71793, + Sales: 103707, + COGS: 664750, + Profit: 561043, + Date: `2/1/20`, + MonthName: `February`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1316`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 460600, + Discounts: 42572.25, + Sales: 418027.75, + COGS: 351390, + Profit: 66637.75, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `4459`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 53508, + Discounts: 950.4, + Sales: 52557.6, + COGS: 2640, + Profit: 49917.6, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2711`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 813300, + Discounts: 50409, + Sales: 762891, + COGS: 466750, + Profit: 296141, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3613`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 54195, + Discounts: 1656.45, + Sales: 52538.55, + COGS: 12270, + Profit: 40268.55, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1847`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 230875, + Discounts: 9866.25, + Sales: 221008.75, + COGS: 105240, + Profit: 115768.75, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2996`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1048600, + Discounts: 65236.5, + Sales: 983363.5, + COGS: 538460, + Profit: 444903.5, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `2838`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 993300, + Discounts: 39973.5, + Sales: 953326.5, + COGS: 329940, + Profit: 623386.5, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `1536`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 30720, + Discounts: 3049.2, + Sales: 27670.8, + COGS: 16940, + Profit: 10730.8, + Date: `11/1/20`, + MonthName: `November`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1291`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 25820, + Discounts: 1193.4, + Sales: 24626.6, + COGS: 6630, + Profit: 17996.6, + Date: `5/1/20`, + MonthName: `May`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1213`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 8491, + Discounts: 515.97, + Sales: 7975.03, + COGS: 4095, + Profit: 3880.03, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2370`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 28440, + Discounts: 1706.4, + Sales: 26733.6, + COGS: 4740, + Profit: 21993.6, + Date: `9/1/20`, + MonthName: `September`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1979`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 13853, + Discounts: 328.23, + Sales: 13524.77, + COGS: 2605, + Profit: 10919.77, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2879`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 57580, + Discounts: 1751.4, + Sales: 55828.6, + COGS: 9730, + Profit: 46098.6, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1707`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34140, + Discounts: 1868.4, + Sales: 32271.6, + COGS: 10380, + Profit: 21891.6, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2933`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 20531, + Discounts: 226.8, + Sales: 20304.2, + COGS: 1800, + Profit: 18504.2, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1014`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 12168, + Discounts: 2124.36, + Sales: 10043.64, + COGS: 5901, + Profit: 4142.64, + Date: `3/1/20`, + MonthName: `March`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `693`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 10395, + Discounts: 3547.8, + Sales: 6847.2, + COGS: 26280, + Profit: 19432.8, + Date: `4/1/20`, + MonthName: `April`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3741`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26187, + Discounts: 226.8, + Sales: 25960.2, + COGS: 1800, + Profit: 24160.2, + Date: `10/1/20`, + MonthName: `October`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `3995`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27965, + Discounts: 328.23, + Sales: 27636.77, + COGS: 2605, + Profit: 25031.77, + Date: `12/1/20`, + MonthName: `December`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `953`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19060, + Discounts: 1868.4, + Sales: 17191.6, + COGS: 10380, + Profit: 6811.6, + Date: `6/1/20`, + MonthName: `June`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `2530`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 37950, + Discounts: 2201.18, + Sales: 35748.82, + COGS: 16305, + Profit: 19443.82, + Date: `7/1/20`, + MonthName: `July`, + Year: `2020` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1372`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 27440, + Discounts: 0, + Sales: 27440, + COGS: 16185, + Profit: 11255, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2762`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 55240, + Discounts: 0, + Sales: 55240, + COGS: 13210, + Profit: 42030, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1464`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 21960, + Discounts: 0, + Sales: 21960, + COGS: 21780, + Profit: 180, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `719`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 10785, + Discounts: 0, + Sales: 10785, + COGS: 8880, + Profit: 1905, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3576`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 53640, + Discounts: 0, + Sales: 53640, + COGS: 24700, + Profit: 28940, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `4422`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1547700, + Discounts: 0, + Sales: 1547700, + COGS: 393380, + Profit: 1154320, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3649`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 54735, + Discounts: 0, + Sales: 54735, + COGS: 9210, + Profit: 45525, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `4172`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 50064, + Discounts: 0, + Sales: 50064, + COGS: 7554, + Profit: 42510, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3841`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 76820, + Discounts: 0, + Sales: 76820, + COGS: 18990, + Profit: 57830, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3726`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 44712, + Discounts: 0, + Sales: 44712, + COGS: 4635, + Profit: 40077, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `2625`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 39375, + Discounts: 0, + Sales: 39375, + COGS: 24700, + Profit: 14675, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1958`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 244750, + Discounts: 0, + Sales: 244750, + COGS: 319860, + Profit: 75110, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `3271`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 981300, + Discounts: 0, + Sales: 981300, + COGS: 239500, + Profit: 741800, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2091`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 14637, + Discounts: 0, + Sales: 14637, + COGS: 10730, + Profit: 3907, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `2530`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 316250, + Discounts: 0, + Sales: 316250, + COGS: 41400, + Profit: 274850, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `2825`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 42375, + Discounts: 0, + Sales: 42375, + COGS: 6150, + Profit: 36225, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2513`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 50260, + Discounts: 0, + Sales: 50260, + COGS: 2920, + Profit: 47340, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `883`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 13245, + Discounts: 0, + Sales: 13245, + COGS: 9740, + Profit: 3505, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2087`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 25044, + Discounts: 0, + Sales: 25044, + COGS: 7554, + Profit: 17490, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2563`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 897050, + Discounts: 0, + Sales: 897050, + COGS: 261560, + Profit: 635490, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2846`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 34152, + Discounts: 0, + Sales: 34152, + COGS: 1101, + Profit: 33051, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `997`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 6979, + Discounts: 0, + Sales: 6979, + COGS: 4415, + Profit: 2564, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3421`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 51315, + Discounts: 0, + Sales: 51315, + COGS: 5490, + Profit: 45825, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Marchesa`, + UnitsSold: `70000`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 1050000, + Discounts: 0, + Sales: 1050000, + COGS: 5490, + Profit: 1044510, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2291`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 687300, + Discounts: 0, + Sales: 687300, + COGS: 197000, + Profit: 490300, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2290`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 34350, + Discounts: 0, + Sales: 34350, + COGS: 24720, + Profit: 9630, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2133`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14931, + Discounts: 0, + Sales: 14931, + COGS: 5715, + Profit: 9216, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3475`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1216250, + Discounts: 0, + Sales: 1216250, + COGS: 448500, + Profit: 767750, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3686`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 44232, + Discounts: 0, + Sales: 44232, + COGS: 2736, + Profit: 41496, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3319`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 49785, + Discounts: 0, + Sales: 49785, + COGS: 21520, + Profit: 28265, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3617`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 72340, + Discounts: 0, + Sales: 72340, + COGS: 18170, + Profit: 54170, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1266`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 443100, + Discounts: 0, + Sales: 443100, + COGS: 393380, + Profit: 49720, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `894`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 6258, + Discounts: 0, + Sales: 6258, + COGS: 7465, + Profit: 1207, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `2725`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 340625, + Discounts: 0, + Sales: 340625, + COGS: 216480, + Profit: 124145, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3061`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 36732, + Discounts: 0, + Sales: 36732, + COGS: 6483, + Profit: 30249, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3958`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1385300, + Discounts: 0, + Sales: 1385300, + COGS: 261560, + Profit: 1123740, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3920`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 47040, + Discounts: 0, + Sales: 47040, + COGS: 4635, + Profit: 42405, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3381`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 422625, + Discounts: 0, + Sales: 422625, + COGS: 338520, + Profit: 84105, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `1094`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 136750, + Discounts: 0, + Sales: 136750, + COGS: 41400, + Profit: 95350, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `4307`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 1292100, + Discounts: 0, + Sales: 1292100, + COGS: 500250, + Profit: 791850, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `878`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10536, + Discounts: 0, + Sales: 10536, + COGS: 8514, + Profit: 2022, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `496`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 7440, + Discounts: 0, + Sales: 7440, + COGS: 21780, + Profit: 14340, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3367`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 50505, + Discounts: 0, + Sales: 50505, + COGS: 8880, + Profit: 41625, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3880`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1358000, + Discounts: 0, + Sales: 1358000, + COGS: 397020, + Profit: 960980, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2055`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 616500, + Discounts: 0, + Sales: 616500, + COGS: 537750, + Profit: 78750, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `4041`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 80820, + Discounts: 0, + Sales: 80820, + COGS: 18170, + Profit: 62650, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `3237`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1132950, + Discounts: 0, + Sales: 1132950, + COGS: 715000, + Profit: 417950, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `630`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 7560, + Discounts: 0, + Sales: 7560, + COGS: 5859, + Profit: 1701, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `4210`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 526250, + Discounts: 0, + Sales: 526250, + COGS: 506340, + Profit: 19910, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1127`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 22540, + Discounts: 0, + Sales: 22540, + COGS: 18990, + Profit: 3550, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `3438`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 24066, + Discounts: 0, + Sales: 24066, + COGS: 8430, + Profit: 15636, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2015`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 24180, + Discounts: 0, + Sales: 24180, + COGS: 6423, + Profit: 17757, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2534`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 17738, + Discounts: 0, + Sales: 17738, + COGS: 5715, + Profit: 12023, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1384`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 20760, + Discounts: 0, + Sales: 20760, + COGS: 6150, + Profit: 14610, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3561`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 24927, + Discounts: 276.15, + Sales: 24650.85, + COGS: 19725, + Profit: 4925.85, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1823`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27345, + Discounts: 344.4, + Sales: 27000.6, + COGS: 22960, + Profit: 4040.6, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2795`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19565, + Discounts: 72.1, + Sales: 19492.9, + COGS: 5150, + Profit: 14342.9, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `457`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 3199, + Discounts: 44.73, + Sales: 3154.27, + COGS: 3195, + Profit: 40.73, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3785`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26495, + Discounts: 92.82, + Sales: 26402.18, + COGS: 6630, + Profit: 19772.18, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `748`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 8976, + Discounts: 222.96, + Sales: 8753.04, + COGS: 5574, + Profit: 3179.04, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1021`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 357350, + Discounts: 4235, + Sales: 353115, + COGS: 314600, + Profit: 38515, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `2076`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 14532, + Discounts: 177.03, + Sales: 14354.97, + COGS: 12645, + Profit: 1709.97, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `4316`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 51792, + Discounts: 173.4, + Sales: 51618.6, + COGS: 4335, + Profit: 47283.6, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `2654`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 331750, + Discounts: 412.5, + Sales: 331337.5, + COGS: 39600, + Profit: 291737.5, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `4174`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50088, + Discounts: 320.52, + Sales: 49767.48, + COGS: 8013, + Profit: 41754.48, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1675`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 20100, + Discounts: 91.92, + Sales: 20008.08, + COGS: 2298, + Profit: 17710.08, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1572`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 471600, + Discounts: 1482, + Sales: 470118, + COGS: 123500, + Profit: 346618, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3736`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1307600, + Discounts: 4889.5, + Sales: 1302710.5, + COGS: 363220, + Profit: 939490.5, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1914`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 669900, + Discounts: 7542.5, + Sales: 662357.5, + COGS: 560300, + Profit: 102057.5, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `2742`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 41130, + Discounts: 332.1, + Sales: 40797.9, + COGS: 22140, + Profit: 18657.9, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1499`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 449700, + Discounts: 6903, + Sales: 442797, + COGS: 575250, + Profit: 132453, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3772`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 75440, + Discounts: 275.1, + Sales: 75164.9, + COGS: 13755, + Profit: 61409.9, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1112`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 7784, + Discounts: 128.1, + Sales: 7655.9, + COGS: 9150, + Profit: 1494.1, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1723`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 516900, + Discounts: 7494, + Sales: 509406, + COGS: 624500, + Profit: 115094, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `423`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 52875, + Discounts: 828.75, + Sales: 52046.25, + COGS: 79560, + Profit: 27513.75, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2368`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 35520, + Discounts: 227.1, + Sales: 35292.9, + COGS: 15140, + Profit: 20152.9, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1586`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 11102, + Discounts: 314.48, + Sales: 10787.52, + COGS: 22462.5, + Profit: 11674.98, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3386`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 423250, + Discounts: 908.75, + Sales: 422341.25, + COGS: 87240, + Profit: 335101.25, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `852`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 106500, + Discounts: 983.75, + Sales: 105516.25, + COGS: 94440, + Profit: 11076.25, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2783`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 347875, + Discounts: 2278.75, + Sales: 345596.25, + COGS: 218760, + Profit: 126836.25, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2684`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 40260, + Discounts: 112.05, + Sales: 40147.95, + COGS: 7470, + Profit: 32677.95, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4393`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 52716, + Discounts: 91.92, + Sales: 52624.08, + COGS: 2298, + Profit: 50326.08, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4083`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1224900, + Discounts: 8715, + Sales: 1216185, + COGS: 726250, + Profit: 489935, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2816`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 985600, + Discounts: 7542.5, + Sales: 978057.5, + COGS: 560300, + Profit: 417757.5, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `4294`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 85880, + Discounts: 772.8, + Sales: 85107.2, + COGS: 38640, + Profit: 46467.2, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2856`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 19992, + Discounts: 25.34, + Sales: 19966.66, + COGS: 1810, + Profit: 18156.66, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `1407`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 175875, + Discounts: 1153.75, + Sales: 174721.25, + COGS: 110760, + Profit: 63961.25, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3850`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 481250, + Discounts: 828.75, + Sales: 480421.25, + COGS: 79560, + Profit: 400861.25, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2856`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 19992, + Discounts: 146.44, + Sales: 19845.56, + COGS: 10460, + Profit: 9385.56, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `1265`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 8855, + Discounts: 18.41, + Sales: 8836.59, + COGS: 1315, + Profit: 7521.59, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3892`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1362200, + Discounts: 3302.25, + Sales: 1358897.75, + COGS: 245310, + Profit: 1113587.75, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `3068`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 383500, + Discounts: 908.75, + Sales: 382591.25, + COGS: 87240, + Profit: 295351.25, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2181`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 272625, + Discounts: 983.75, + Sales: 271641.25, + COGS: 94440, + Profit: 177201.25, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `1356`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 406800, + Discounts: 2958, + Sales: 403842, + COGS: 246500, + Profit: 157342, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `2545`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 763500, + Discounts: 1482, + Sales: 762018, + COGS: 123500, + Profit: 638518, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1814`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 634900, + Discounts: 4889.5, + Sales: 630010.5, + COGS: 363220, + Profit: 266790.5, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `1495`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 186875, + Discounts: 2180, + Sales: 184695, + COGS: 209280, + Profit: 24585, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1154`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 13848, + Discounts: 238.68, + Sales: 13609.32, + COGS: 5967, + Profit: 7642.32, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `4180`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 62700, + Discounts: 48.15, + Sales: 62651.85, + COGS: 3210, + Profit: 59441.85, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1463`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 182875, + Discounts: 1856.25, + Sales: 181018.75, + COGS: 89100, + Profit: 91918.75, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `215`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 2580, + Discounts: 310.8, + Sales: 2269.2, + COGS: 3885, + Profit: 1615.8, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `4099`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 1229700, + Discounts: 1284, + Sales: 1228416, + COGS: 53500, + Profit: 1174916, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `2660`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 18620, + Discounts: 300.3, + Sales: 18319.7, + COGS: 10725, + Profit: 7594.7, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `566`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 198100, + Discounts: 19964, + Sales: 178136, + COGS: 741520, + Profit: 563384, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `3255`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 39060, + Discounts: 274.08, + Sales: 38785.92, + COGS: 3426, + Profit: 35359.92, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `772`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 15440, + Discounts: 626.4, + Sales: 14813.6, + COGS: 15660, + Profit: 846.4, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1135`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13620, + Discounts: 165.6, + Sales: 13454.4, + COGS: 2070, + Profit: 11384.4, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `3826`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 478250, + Discounts: 4150, + Sales: 474100, + COGS: 199200, + Profit: 274900, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1193`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 17895, + Discounts: 708.9, + Sales: 17186.1, + COGS: 23630, + Profit: 6443.9, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2530`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 759000, + Discounts: 5508, + Sales: 753492, + COGS: 229500, + Profit: 523992, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3451`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1035300, + Discounts: 10368, + Sales: 1024932, + COGS: 432000, + Profit: 592932, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3059`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 36708, + Discounts: 274.08, + Sales: 36433.92, + COGS: 3426, + Profit: 33007.92, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3957`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 494625, + Discounts: 1655, + Sales: 492970, + COGS: 79440, + Profit: 413530, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3444`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 41328, + Discounts: 310.8, + Sales: 41017.2, + COGS: 3885, + Profit: 37132.2, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4388`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 548500, + Discounts: 2022.5, + Sales: 546477.5, + COGS: 97080, + Profit: 449397.5, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2106`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 263250, + Discounts: 5362.5, + Sales: 257887.5, + COGS: 257400, + Profit: 487.5, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `799`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 9588, + Discounts: 428.4, + Sales: 9159.6, + COGS: 5355, + Profit: 3804.6, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3154`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 946200, + Discounts: 11496, + Sales: 934704, + COGS: 479000, + Profit: 455704, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `4108`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1437800, + Discounts: 19964, + Sales: 1417836, + COGS: 741520, + Profit: 676316, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3760`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 470000, + Discounts: 6822.5, + Sales: 463177.5, + COGS: 327480, + Profit: 135697.5, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `377`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 5655, + Discounts: 577.5, + Sales: 5077.5, + COGS: 19250, + Profit: 14172.5, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2110`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14770, + Discounts: 281.82, + Sales: 14488.18, + COGS: 10065, + Profit: 4423.18, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2334`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 28008, + Discounts: 253.2, + Sales: 27754.8, + COGS: 3165, + Profit: 24589.8, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `580`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 6960, + Discounts: 260.16, + Sales: 6699.84, + COGS: 3252, + Profit: 3447.84, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2610`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 52200, + Discounts: 626.4, + Sales: 51573.6, + COGS: 15660, + Profit: 35913.6, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `1598`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 559300, + Discounts: 20762, + Sales: 538538, + COGS: 771160, + Profit: 232622, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `1459`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 510650, + Discounts: 20139, + Sales: 490511, + COGS: 748020, + Profit: 257509, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3284`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 410500, + Discounts: 2022.5, + Sales: 408477.5, + COGS: 97080, + Profit: 311397.5, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `1197`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 149625, + Discounts: 5362.5, + Sales: 144262.5, + COGS: 257400, + Profit: 113137.5, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `3774`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 45288, + Discounts: 253.2, + Sales: 45034.8, + COGS: 3165, + Profit: 41869.8, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2303`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 46060, + Discounts: 217.6, + Sales: 45842.4, + COGS: 5440, + Profit: 40402.4, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2572`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 30864, + Discounts: 260.16, + Sales: 30603.84, + COGS: 3252, + Profit: 27351.84, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `320`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 40000, + Discounts: 1655, + Sales: 38345, + COGS: 79440, + Profit: 41095, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `2126`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 637800, + Discounts: 1284, + Sales: 636516, + COGS: 53500, + Profit: 583016, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3275`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1146250, + Discounts: 20139, + Sales: 1126111, + COGS: 748020, + Profit: 378091, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3582`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 447750, + Discounts: 6822.5, + Sales: 440927.5, + COGS: 327480, + Profit: 113447.5, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `783`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 274050, + Discounts: 1862, + Sales: 272188, + COGS: 69160, + Profit: 203028, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1202`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 420700, + Discounts: 13580, + Sales: 407120, + COGS: 504400, + Profit: 97280, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `4056`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1216800, + Discounts: 1554, + Sales: 1215246, + COGS: 64750, + Profit: 1150496, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2144`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 643200, + Discounts: 6606, + Sales: 636594, + COGS: 275250, + Profit: 361344, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `3502`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 437750, + Discounts: 5690, + Sales: 432060, + COGS: 273120, + Profit: 158940, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `1397`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 488950, + Discounts: 20762, + Sales: 468188, + COGS: 771160, + Profit: 302972, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `679`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 13580, + Discounts: 494.4, + Sales: 13085.6, + COGS: 12360, + Profit: 725.6, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `2351`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 47020, + Discounts: 376.4, + Sales: 46643.6, + COGS: 9410, + Profit: 37233.6, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `2043`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 612900, + Discounts: 11496, + Sales: 601404, + COGS: 479000, + Profit: 122404, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `3565`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 445625, + Discounts: 15913.13, + Sales: 429711.88, + COGS: 509220, + Profit: 79508.13, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1401`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 28020, + Discounts: 1548, + Sales: 26472, + COGS: 25800, + Profit: 672, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2077`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 623100, + Discounts: 6201, + Sales: 616899, + COGS: 172250, + Profit: 444649, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `3643`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 43716, + Discounts: 700.92, + Sales: 43015.08, + COGS: 5841, + Profit: 37174.08, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1105`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 13260, + Discounts: 326.88, + Sales: 12933.12, + COGS: 2724, + Profit: 10209.12, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2960`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20720, + Discounts: 411.18, + Sales: 20308.82, + COGS: 9790, + Profit: 10518.82, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1201`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 14412, + Discounts: 684.36, + Sales: 13727.64, + COGS: 5703, + Profit: 8024.64, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `2321`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 16247, + Discounts: 114.24, + Sales: 16132.76, + COGS: 2720, + Profit: 13412.76, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3640`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1274000, + Discounts: 18868.5, + Sales: 1255131.5, + COGS: 467220, + Profit: 787911.5, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3972`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 496500, + Discounts: 4826.25, + Sales: 491673.75, + COGS: 154440, + Profit: 337233.75, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3878`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 484750, + Discounts: 6397.5, + Sales: 478352.5, + COGS: 204720, + Profit: 273632.5, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2278`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 683400, + Discounts: 21910.5, + Sales: 661489.5, + COGS: 608625, + Profit: 52864.5, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1075`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 134375, + Discounts: 6652.5, + Sales: 127722.5, + COGS: 212880, + Profit: 85157.5, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `4050`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 48600, + Discounts: 684.36, + Sales: 47915.64, + COGS: 5703, + Profit: 42212.64, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3035`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 910500, + Discounts: 6201, + Sales: 904299, + COGS: 172250, + Profit: 732049, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3636`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 454500, + Discounts: 5887.5, + Sales: 448612.5, + COGS: 188400, + Profit: 260212.5, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1379`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 16548, + Discounts: 493.02, + Sales: 16054.98, + COGS: 4108.5, + Profit: 11946.48, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `4492`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 561500, + Discounts: 7533.75, + Sales: 553966.25, + COGS: 241080, + Profit: 312886.25, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `764`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 11460, + Discounts: 875.25, + Sales: 10584.75, + COGS: 19450, + Profit: 8865.25, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1744`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 218000, + Discounts: 4826.25, + Sales: 213173.75, + COGS: 154440, + Profit: 58733.75, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2341`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 292625, + Discounts: 6397.5, + Sales: 286227.5, + COGS: 204720, + Profit: 81507.5, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3835`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 479375, + Discounts: 7533.75, + Sales: 471841.25, + COGS: 241080, + Profit: 230761.25, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1161`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 348300, + Discounts: 25596, + Sales: 322704, + COGS: 711000, + Profit: 388296, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `876`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10512, + Discounts: 689.76, + Sales: 9822.24, + COGS: 5748, + Profit: 4074.24, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `1705`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 213125, + Discounts: 5887.5, + Sales: 207237.5, + COGS: 188400, + Profit: 18837.5, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1805`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 541500, + Discounts: 16866, + Sales: 524634, + COGS: 468500, + Profit: 56134, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `389`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 136150, + Discounts: 17241, + Sales: 118909, + COGS: 426920, + Profit: 308011, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `2745`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 41175, + Discounts: 875.25, + Sales: 40299.75, + COGS: 19450, + Profit: 20849.75, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1459`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 29180, + Discounts: 498.6, + Sales: 28681.4, + COGS: 8310, + Profit: 20371.4, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3938`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 27566, + Discounts: 369.6, + Sales: 27196.4, + COGS: 8800, + Profit: 18396.4, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `4236`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 84720, + Discounts: 2310.3, + Sales: 82409.7, + COGS: 38505, + Profit: 43904.7, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3627`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 43524, + Discounts: 892.44, + Sales: 42631.56, + COGS: 7437, + Profit: 35194.56, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1756`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 26340, + Discounts: 1218.6, + Sales: 25121.4, + COGS: 20310, + Profit: 4811.4, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `307`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 4605, + Discounts: 1218.6, + Sales: 3386.4, + COGS: 20310, + Profit: 16923.6, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `4489`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 67335, + Discounts: 1356.6, + Sales: 65978.4, + COGS: 22610, + Profit: 43368.4, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2167`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 43340, + Discounts: 588.8, + Sales: 42751.2, + COGS: 7360, + Profit: 35391.2, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1137`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 7959, + Discounts: 798.28, + Sales: 7160.72, + COGS: 14255, + Profit: 7094.28, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1222`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 366600, + Discounts: 24252, + Sales: 342348, + COGS: 505250, + Profit: 162902, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `489`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 171150, + Discounts: 3836, + Sales: 167314, + COGS: 71240, + Profit: 96074, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `4133`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 61995, + Discounts: 1180.2, + Sales: 60814.8, + COGS: 19670, + Profit: 41144.8, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2743`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 822900, + Discounts: 22308, + Sales: 800592, + COGS: 464750, + Profit: 335842, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `3699`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 25893, + Discounts: 798.28, + Sales: 25094.72, + COGS: 14255, + Profit: 10839.72, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `4460`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1338000, + Discounts: 24252, + Sales: 1313748, + COGS: 505250, + Profit: 808498, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1232`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 154000, + Discounts: 5690, + Sales: 148310, + COGS: 136560, + Profit: 11750, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2586`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 18102, + Discounts: 1190.28, + Sales: 16911.72, + COGS: 21255, + Profit: 4343.28, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1332`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 166500, + Discounts: 3975, + Sales: 162525, + COGS: 95400, + Profit: 67125, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4487`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1346100, + Discounts: 16974, + Sales: 1329126, + COGS: 353625, + Profit: 975501, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3862`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1158600, + Discounts: 35016, + Sales: 1123584, + COGS: 729500, + Profit: 394084, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1765`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 617750, + Discounts: 48300, + Sales: 569450, + COGS: 897000, + Profit: 327550, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3533`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 441625, + Discounts: 14940, + Sales: 426685, + COGS: 358560, + Profit: 68125, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2016`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 30240, + Discounts: 130.8, + Sales: 30109.2, + COGS: 2180, + Profit: 27929.2, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2938`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 58760, + Discounts: 1659.2, + Sales: 57100.8, + COGS: 20740, + Profit: 36360.8, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3352`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67040, + Discounts: 844.8, + Sales: 66195.2, + COGS: 10560, + Profit: 55635.2, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4409`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 66135, + Discounts: 402.6, + Sales: 65732.4, + COGS: 6710, + Profit: 59022.4, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3323`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 49845, + Discounts: 908.4, + Sales: 48936.6, + COGS: 15140, + Profit: 33796.6, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2430`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 850500, + Discounts: 3836, + Sales: 846664, + COGS: 71240, + Profit: 775424, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `535`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 66875, + Discounts: 5690, + Sales: 61185, + COGS: 136560, + Profit: 75375, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1523`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 18276, + Discounts: 703.2, + Sales: 17572.8, + COGS: 4395, + Profit: 13177.8, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3631`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 72620, + Discounts: 2116.8, + Sales: 70503.2, + COGS: 26460, + Profit: 44043.2, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1782`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 623700, + Discounts: 30478, + Sales: 593222, + COGS: 566020, + Profit: 27202, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `347`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 4164, + Discounts: 415.68, + Sales: 3748.32, + COGS: 2598, + Profit: 1150.32, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `4147`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1451450, + Discounts: 4886, + Sales: 1446564, + COGS: 90740, + Profit: 1355824, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3509`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1228150, + Discounts: 30478, + Sales: 1197672, + COGS: 566020, + Profit: 631652, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `2774`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 41610, + Discounts: 908.4, + Sales: 40701.6, + COGS: 15140, + Profit: 25561.6, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2943`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1030050, + Discounts: 26110, + Sales: 1003940, + COGS: 484900, + Profit: 519040, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `4037`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 504625, + Discounts: 5370, + Sales: 499255, + COGS: 128880, + Profit: 370375, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `4146`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1451100, + Discounts: 26698, + Sales: 1424402, + COGS: 495820, + Profit: 928582, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `4123`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 61845, + Discounts: 402.6, + Sales: 61442.4, + COGS: 6710, + Profit: 54732.4, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `1337`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 467950, + Discounts: 24892, + Sales: 443058, + COGS: 462280, + Profit: 19222, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `599`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 4193, + Discounts: 405.65, + Sales: 3787.35, + COGS: 5795, + Profit: 2007.65, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `725`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 5075, + Discounts: 480.2, + Sales: 4594.8, + COGS: 6860, + Profit: 2265.2, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `477`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 3339, + Discounts: 822.15, + Sales: 2516.85, + COGS: 11745, + Profit: 9228.15, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2325`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 16275, + Discounts: 941.15, + Sales: 15333.85, + COGS: 13445, + Profit: 1888.85, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `675`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 8100, + Discounts: 1458.6, + Sales: 6641.4, + COGS: 7293, + Profit: 651.6, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2990`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 35880, + Discounts: 1458.6, + Sales: 34421.4, + COGS: 7293, + Profit: 27128.4, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1072`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 7504, + Discounts: 941.15, + Sales: 6562.85, + COGS: 13445, + Profit: 6882.15, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `1048`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 7336, + Discounts: 589.05, + Sales: 6746.95, + COGS: 8415, + Profit: 1668.05, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `469`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 5628, + Discounts: 673.8, + Sales: 4954.2, + COGS: 3369, + Profit: 1585.2, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `804`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 5628, + Discounts: 405.65, + Sales: 5222.35, + COGS: 5795, + Profit: 572.65, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `4240`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50880, + Discounts: 1119, + Sales: 49761, + COGS: 5595, + Profit: 44166, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1976`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 23712, + Discounts: 669.6, + Sales: 23042.4, + COGS: 3348, + Profit: 19694.4, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1984`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39680, + Discounts: 1563, + Sales: 38117, + COGS: 15630, + Profit: 22487, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `480`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 144000, + Discounts: 14865, + Sales: 129135, + COGS: 247750, + Profit: 118615, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `3551`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 24857, + Discounts: 355.6, + Sales: 24501.4, + COGS: 5080, + Profit: 19421.4, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1205`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 18075, + Discounts: 2093.25, + Sales: 15981.75, + COGS: 27910, + Profit: 11928.25, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `2480`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 17360, + Discounts: 199.5, + Sales: 17160.5, + COGS: 2850, + Profit: 14310.5, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `2926`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 20482, + Discounts: 870.45, + Sales: 19611.55, + COGS: 12435, + Profit: 7176.55, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3210`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1123500, + Discounts: 24228.75, + Sales: 1099271.25, + COGS: 359970, + Profit: 739301.25, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `3221`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 402625, + Discounts: 22668.75, + Sales: 379956.25, + COGS: 435240, + Profit: 55283.75, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `2389`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 836150, + Discounts: 12600, + Sales: 823550, + COGS: 187200, + Profit: 636350, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `1127`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13524, + Discounts: 1405.2, + Sales: 12118.8, + COGS: 7026, + Profit: 5092.8, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `319`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 95700, + Discounts: 16500, + Sales: 79200, + COGS: 275000, + Profit: 195800, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1610`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 32200, + Discounts: 1303, + Sales: 30897, + COGS: 13030, + Profit: 17867, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4100`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 512500, + Discounts: 18700, + Sales: 493800, + COGS: 359040, + Profit: 134760, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1012`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 126500, + Discounts: 14906.25, + Sales: 111593.75, + COGS: 286200, + Profit: 174606.25, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3337`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1001100, + Discounts: 24105, + Sales: 976995, + COGS: 401750, + Profit: 575245, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3955`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 27685, + Discounts: 814.45, + Sales: 26870.55, + COGS: 11635, + Profit: 15235.55, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4347`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1304100, + Discounts: 14865, + Sales: 1289235, + COGS: 247750, + Profit: 1041485, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1548`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 541800, + Discounts: 10535, + Sales: 531265, + COGS: 156520, + Profit: 374745, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2153`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 32295, + Discounts: 1965, + Sales: 30330, + COGS: 26200, + Profit: 4130, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3789`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1326150, + Discounts: 21490, + Sales: 1304660, + COGS: 319280, + Profit: 985380, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `4364`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 87280, + Discounts: 1389, + Sales: 85891, + COGS: 13890, + Profit: 72001, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4126`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 515750, + Discounts: 5381.25, + Sales: 510368.75, + COGS: 103320, + Profit: 407048.75, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1343`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 167875, + Discounts: 4400, + Sales: 163475, + COGS: 84480, + Profit: 78995, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `245`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 4900, + Discounts: 1802, + Sales: 3098, + COGS: 18020, + Profit: 14922, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3376`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67520, + Discounts: 2663, + Sales: 64857, + COGS: 26630, + Profit: 38227, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1401`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 9807, + Discounts: 747.6, + Sales: 9059.4, + COGS: 10680, + Profit: 1620.6, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3483`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 52245, + Discounts: 1587, + Sales: 50658, + COGS: 21160, + Profit: 29498, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2244`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 33660, + Discounts: 416.25, + Sales: 33243.75, + COGS: 5550, + Profit: 27693.75, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `1360`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 20400, + Discounts: 2145.75, + Sales: 18254.25, + COGS: 28610, + Profit: 10355.75, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `279`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 34875, + Discounts: 5043.75, + Sales: 29831.25, + COGS: 96840, + Profit: 67008.75, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2521`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 882350, + Discounts: 10535, + Sales: 871815, + COGS: 156520, + Profit: 715295, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2433`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 48660, + Discounts: 2832, + Sales: 45828, + COGS: 28320, + Profit: 17508, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1738`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 34760, + Discounts: 1579, + Sales: 33181, + COGS: 15790, + Profit: 17391, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1106`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 138250, + Discounts: 5381.25, + Sales: 132868.75, + COGS: 103320, + Profit: 29548.75, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `3379`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 422375, + Discounts: 4400, + Sales: 417975, + COGS: 84480, + Profit: 333495, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1221`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 24420, + Discounts: 1033, + Sales: 23387, + COGS: 10330, + Profit: 13057, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `213`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 63900, + Discounts: 18750, + Sales: 45150, + COGS: 312500, + Profit: 267350, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3335`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 66700, + Discounts: 1389, + Sales: 65311, + COGS: 13890, + Profit: 51421, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1260`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 25200, + Discounts: 1265, + Sales: 23935, + COGS: 12650, + Profit: 11285, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3034`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 60680, + Discounts: 2297, + Sales: 58383, + COGS: 22970, + Profit: 35413, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2929`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 58580, + Discounts: 2663, + Sales: 55917, + COGS: 26630, + Profit: 29287, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2389`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 16723, + Discounts: 199.5, + Sales: 16523.5, + COGS: 2850, + Profit: 13673.5, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3086`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 21602, + Discounts: 870.45, + Sales: 20731.55, + COGS: 12435, + Profit: 8296.55, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `745`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 260750, + Discounts: 23625, + Sales: 237125, + COGS: 351000, + Profit: 113875, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `1266`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 443100, + Discounts: 9660, + Sales: 433440, + COGS: 143520, + Profit: 289920, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `3790`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1326500, + Discounts: 21490, + Sales: 1305010, + COGS: 319280, + Profit: 985730, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `4287`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1286100, + Discounts: 18750, + Sales: 1267350, + COGS: 312500, + Profit: 954850, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3193`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 47895, + Discounts: 3420.9, + Sales: 44474.1, + COGS: 38010, + Profit: 6464.1, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `1967`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39340, + Discounts: 1341, + Sales: 37999, + COGS: 11175, + Profit: 26824, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `631`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 9465, + Discounts: 2559.6, + Sales: 6905.4, + COGS: 28440, + Profit: 21534.6, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3469`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 41628, + Discounts: 404.64, + Sales: 41223.36, + COGS: 1686, + Profit: 39537.36, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `570`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 6840, + Discounts: 1655.28, + Sales: 5184.72, + COGS: 6897, + Profit: 1712.28, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `3215`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 48225, + Discounts: 1827, + Sales: 46398, + COGS: 20300, + Profit: 26098, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `3754`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 26278, + Discounts: 110.46, + Sales: 26167.54, + COGS: 1315, + Profit: 24852.54, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2187`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 273375, + Discounts: 6652.5, + Sales: 266722.5, + COGS: 106440, + Profit: 160282.5, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1959`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 685650, + Discounts: 20580, + Sales: 665070, + COGS: 254800, + Profit: 410270, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2181`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 763350, + Discounts: 30660, + Sales: 732690, + COGS: 379600, + Profit: 353090, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3559`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 24913, + Discounts: 589.26, + Sales: 24323.74, + COGS: 7015, + Profit: 17308.74, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `2205`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 26460, + Discounts: 1960.56, + Sales: 24499.44, + COGS: 8169, + Profit: 16330.44, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1890`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 661500, + Discounts: 31416, + Sales: 630084, + COGS: 388960, + Profit: 241124, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1296`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 15552, + Discounts: 1655.28, + Sales: 13896.72, + COGS: 6897, + Profit: 6999.72, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `775`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 271250, + Discounts: 15267, + Sales: 255983, + COGS: 189020, + Profit: 66963, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2417`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 302125, + Discounts: 7140, + Sales: 294985, + COGS: 114240, + Profit: 180745, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1158`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 144750, + Discounts: 20662.5, + Sales: 124087.5, + COGS: 330600, + Profit: 206512.5, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `803`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 12045, + Discounts: 1377, + Sales: 10668, + COGS: 15300, + Profit: 4632, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `3705`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1296750, + Discounts: 31416, + Sales: 1265334, + COGS: 388960, + Profit: 876374, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `589`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 4123, + Discounts: 629.16, + Sales: 3493.84, + COGS: 7490, + Profit: 3996.16, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `3797`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1139100, + Discounts: 21978, + Sales: 1117122, + COGS: 305250, + Profit: 811872, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1321`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 462350, + Discounts: 43596, + Sales: 418754, + COGS: 539760, + Profit: 121006, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3999`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 59985, + Discounts: 2559.6, + Sales: 57425.4, + COGS: 28440, + Profit: 28985.4, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `4256`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 29792, + Discounts: 629.16, + Sales: 29162.84, + COGS: 7490, + Profit: 21672.84, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `1643`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 492900, + Discounts: 21978, + Sales: 470922, + COGS: 305250, + Profit: 165672, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1912`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 38240, + Discounts: 1347.6, + Sales: 36892.4, + COGS: 11230, + Profit: 25662.4, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1610`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 483000, + Discounts: 43848, + Sales: 439152, + COGS: 609000, + Profit: 169848, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `2160`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 270000, + Discounts: 14906.25, + Sales: 255093.75, + COGS: 238500, + Profit: 16593.75, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `466`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 163100, + Discounts: 35259, + Sales: 127841, + COGS: 436540, + Profit: 308699, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `328`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 114800, + Discounts: 15267, + Sales: 99533, + COGS: 189020, + Profit: 89487, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `4099`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 28693, + Discounts: 589.26, + Sales: 28103.74, + COGS: 7015, + Profit: 21088.74, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `990`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 346500, + Discounts: 43596, + Sales: 302904, + COGS: 539760, + Profit: 236856, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1433`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 28660, + Discounts: 2108.4, + Sales: 26551.6, + COGS: 17570, + Profit: 8981.6, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1478`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 22170, + Discounts: 1978.2, + Sales: 20191.8, + COGS: 21980, + Profit: 1788.2, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3798`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 56970, + Discounts: 1568.7, + Sales: 55401.3, + COGS: 17430, + Profit: 37971.3, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `447`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 6705, + Discounts: 1037.7, + Sales: 5667.3, + COGS: 11530, + Profit: 5862.7, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1711`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34220, + Discounts: 2108.4, + Sales: 32111.6, + COGS: 17570, + Profit: 14541.6, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `745`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 14900, + Discounts: 1201.2, + Sales: 13698.8, + COGS: 10010, + Profit: 3688.8, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `1732`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 12124, + Discounts: 559.86, + Sales: 11564.14, + COGS: 6665, + Profit: 4899.14, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1759`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 26385, + Discounts: 1037.7, + Sales: 25347.3, + COGS: 11530, + Profit: 13817.3, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `338`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 4056, + Discounts: 610.68, + Sales: 3445.32, + COGS: 2181, + Profit: 1264.32, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `3911`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 46932, + Discounts: 1582.56, + Sales: 45349.44, + COGS: 5652, + Profit: 39697.44, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3691`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 73820, + Discounts: 2567.6, + Sales: 71252.4, + COGS: 18340, + Profit: 52912.4, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `4473`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 53676, + Discounts: 1965.6, + Sales: 51710.4, + COGS: 7020, + Profit: 44690.4, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `383`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 4596, + Discounts: 1967.28, + Sales: 2628.72, + COGS: 7026, + Profit: 4397.28, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3105`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 21735, + Discounts: 505.19, + Sales: 21229.81, + COGS: 5155, + Profit: 16074.81, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `1062`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 15930, + Discounts: 1325.1, + Sales: 14604.9, + COGS: 12620, + Profit: 1984.9, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `4083`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 28581, + Discounts: 556.15, + Sales: 28024.85, + COGS: 5675, + Profit: 22349.85, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3974`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 27818, + Discounts: 268.03, + Sales: 27549.97, + COGS: 2735, + Profit: 24814.97, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3723`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 26061, + Discounts: 775.18, + Sales: 25285.82, + COGS: 7910, + Profit: 17375.82, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2435`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 29220, + Discounts: 1460.34, + Sales: 27759.66, + COGS: 5215.5, + Profit: 22544.16, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `1678`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 20136, + Discounts: 1860.6, + Sales: 18275.4, + COGS: 6645, + Profit: 11630.4, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1763`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 12341, + Discounts: 775.18, + Sales: 11565.82, + COGS: 7910, + Profit: 3655.82, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `4473`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 31311, + Discounts: 556.15, + Sales: 30754.85, + COGS: 5675, + Profit: 25079.85, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `1246`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 436100, + Discounts: 43144.5, + Sales: 392955.5, + COGS: 457860, + Profit: 64904.5, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1615`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 484500, + Discounts: 9408, + Sales: 475092, + COGS: 112000, + Profit: 363092, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `749`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 224700, + Discounts: 45801, + Sales: 178899, + COGS: 545250, + Profit: 366351, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1318`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 26360, + Discounts: 2766.4, + Sales: 23593.6, + COGS: 19760, + Profit: 3833.6, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `2882`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 864600, + Discounts: 45801, + Sales: 818799, + COGS: 545250, + Profit: 273549, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3039`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 379875, + Discounts: 21875, + Sales: 358000, + COGS: 300000, + Profit: 58000, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2484`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 745200, + Discounts: 35742, + Sales: 709458, + COGS: 425500, + Profit: 283958, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3169`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 950700, + Discounts: 9408, + Sales: 941292, + COGS: 112000, + Profit: 829292, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4080`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 510000, + Discounts: 30738.75, + Sales: 479261.25, + COGS: 421560, + Profit: 57701.25, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3943`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 59145, + Discounts: 2206.05, + Sales: 56938.95, + COGS: 21010, + Profit: 35928.95, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `784`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 11760, + Discounts: 3077.55, + Sales: 8682.45, + COGS: 29310, + Profit: 20627.55, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `253`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 5060, + Discounts: 2149, + Sales: 2911, + COGS: 15350, + Profit: 12439, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1316`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 394800, + Discounts: 23583, + Sales: 371217, + COGS: 280750, + Profit: 90467, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `808`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 242400, + Discounts: 29484, + Sales: 212916, + COGS: 351000, + Profit: 138084, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3295`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 39540, + Discounts: 2320.92, + Sales: 37219.08, + COGS: 8289, + Profit: 28930.08, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `520`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 3640, + Discounts: 1041.25, + Sales: 2598.75, + COGS: 10625, + Profit: 8026.25, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `799`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 239700, + Discounts: 34839, + Sales: 204861, + COGS: 414750, + Profit: 209889, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `3942`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 78840, + Discounts: 852.6, + Sales: 77987.4, + COGS: 6090, + Profit: 71897.4, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `2498`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 312250, + Discounts: 18261.25, + Sales: 293988.75, + COGS: 250440, + Profit: 43548.75, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `2517`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 50340, + Discounts: 2766.4, + Sales: 47573.6, + COGS: 19760, + Profit: 27813.6, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3182`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 63640, + Discounts: 1989.4, + Sales: 61650.6, + COGS: 14210, + Profit: 47440.6, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1145`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 343500, + Discounts: 28812, + Sales: 314688, + COGS: 343000, + Profit: 28312, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `895`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 17900, + Discounts: 823.2, + Sales: 17076.8, + COGS: 5880, + Profit: 11196.8, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3814`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 45768, + Discounts: 2725.38, + Sales: 43042.62, + COGS: 9733.5, + Profit: 33309.12, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `1188`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 356400, + Discounts: 20139, + Sales: 336261, + COGS: 239750, + Profit: 96511, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `2233`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 669900, + Discounts: 57687, + Sales: 612213, + COGS: 686750, + Profit: 74537, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `421`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 52625, + Discounts: 14393.75, + Sales: 38231.25, + COGS: 197400, + Profit: 159168.75, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `269`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 94150, + Discounts: 70462, + Sales: 23688, + COGS: 747760, + Profit: 724072, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `3766`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 470750, + Discounts: 8697.5, + Sales: 462052.5, + COGS: 119280, + Profit: 342772.5, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `952`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19040, + Discounts: 1565.2, + Sales: 17474.8, + COGS: 11180, + Profit: 6294.8, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2964`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 889200, + Discounts: 28812, + Sales: 860388, + COGS: 343000, + Profit: 517388, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1505`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 10535, + Discounts: 273.28, + Sales: 10261.72, + COGS: 2440, + Profit: 7821.72, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1678`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 33560, + Discounts: 2051.2, + Sales: 31508.8, + COGS: 12820, + Profit: 18688.8, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `4249`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 29743, + Discounts: 143.92, + Sales: 29599.08, + COGS: 1285, + Profit: 28314.08, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1677`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 33540, + Discounts: 2051.2, + Sales: 31488.8, + COGS: 12820, + Profit: 18668.8, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3051`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 381375, + Discounts: 15400, + Sales: 365975, + COGS: 184800, + Profit: 181175, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `3372`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 50580, + Discounts: 588, + Sales: 49992, + COGS: 4900, + Profit: 45092, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1686`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 590100, + Discounts: 38136, + Sales: 551964, + COGS: 354120, + Profit: 197844, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3086`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 46290, + Discounts: 3001.2, + Sales: 43288.8, + COGS: 25010, + Profit: 18278.8, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `4150`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 83000, + Discounts: 1132.8, + Sales: 81867.2, + COGS: 7080, + Profit: 74787.2, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3027`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 60540, + Discounts: 1032, + Sales: 59508, + COGS: 6450, + Profit: 53058, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `4359`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1307700, + Discounts: 37488, + Sales: 1270212, + COGS: 390500, + Profit: 879712, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `3628`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1088400, + Discounts: 30792, + Sales: 1057608, + COGS: 320750, + Profit: 736858, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `1589`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 23835, + Discounts: 853.2, + Sales: 22981.8, + COGS: 7110, + Profit: 15871.8, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2679`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 334875, + Discounts: 11140, + Sales: 323735, + COGS: 133680, + Profit: 190055, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3401`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 23807, + Discounts: 705.04, + Sales: 23101.96, + COGS: 6295, + Profit: 16806.96, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2815`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19705, + Discounts: 613.2, + Sales: 19091.8, + COGS: 5475, + Profit: 13616.8, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2964`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 59280, + Discounts: 2185.6, + Sales: 57094.4, + COGS: 13660, + Profit: 43434.4, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `4173`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1251900, + Discounts: 59040, + Sales: 1192860, + COGS: 615000, + Profit: 577860, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1157`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 8099, + Discounts: 379.68, + Sales: 7719.32, + COGS: 3390, + Profit: 4329.32, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3065`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 21455, + Discounts: 894.88, + Sales: 20560.12, + COGS: 7990, + Profit: 12570.12, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1962`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 13734, + Discounts: 1349.04, + Sales: 12384.96, + COGS: 12045, + Profit: 339.96, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4080`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 81600, + Discounts: 3094.4, + Sales: 78505.6, + COGS: 19340, + Profit: 59165.6, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1713`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34260, + Discounts: 4788.8, + Sales: 29471.2, + COGS: 29930, + Profit: 458.8, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2795`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 978250, + Discounts: 60088, + Sales: 918162, + COGS: 557960, + Profit: 360202, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `4082`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 28574, + Discounts: 1089.76, + Sales: 27484.24, + COGS: 9730, + Profit: 17754.24, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1691`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 591850, + Discounts: 38136, + Sales: 553714, + COGS: 354120, + Profit: 199594, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2305`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 27660, + Discounts: 574.08, + Sales: 27085.92, + COGS: 1794, + Profit: 25291.92, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3401`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 23807, + Discounts: 1627.92, + Sales: 22179.08, + COGS: 14535, + Profit: 7644.08, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `2288`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 16016, + Discounts: 1309.28, + Sales: 14706.72, + COGS: 11690, + Profit: 3016.72, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `2399`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 719700, + Discounts: 9264, + Sales: 710436, + COGS: 96500, + Profit: 613936, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `4086`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1225800, + Discounts: 15240, + Sales: 1210560, + COGS: 158750, + Profit: 1051810, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2651`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 927850, + Discounts: 16086, + Sales: 911764, + COGS: 149370, + Profit: 762394, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3971`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27797, + Discounts: 1309.28, + Sales: 26487.72, + COGS: 11690, + Profit: 14797.72, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2512`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 879200, + Discounts: 10668, + Sales: 868532, + COGS: 99060, + Profit: 769472, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `2745`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 960750, + Discounts: 11816, + Sales: 948934, + COGS: 109720, + Profit: 839214, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1903`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 570900, + Discounts: 51216, + Sales: 519684, + COGS: 533500, + Profit: 13816, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `647`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 194100, + Discounts: 19392, + Sales: 174708, + COGS: 202000, + Profit: 27292, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `2914`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 58280, + Discounts: 1132.8, + Sales: 57147.2, + COGS: 7080, + Profit: 50067.2, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1889`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 13223, + Discounts: 1627.92, + Sales: 11595.08, + COGS: 14535, + Profit: 2939.92, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `1466`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 29320, + Discounts: 2185.6, + Sales: 27134.4, + COGS: 13660, + Profit: 13474.4, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `887`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 266100, + Discounts: 59040, + Sales: 207060, + COGS: 615000, + Profit: 407940, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `395`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 7900, + Discounts: 2432, + Sales: 5468, + COGS: 15200, + Profit: 9732, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `1693`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 25395, + Discounts: 853.2, + Sales: 24541.8, + COGS: 7110, + Profit: 17431.8, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2459`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 29508, + Discounts: 1320, + Sales: 28188, + COGS: 4125, + Profit: 24063, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2649`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 794700, + Discounts: 15240, + Sales: 779460, + COGS: 158750, + Profit: 620710, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `3608`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 72160, + Discounts: 698.4, + Sales: 71461.6, + COGS: 4365, + Profit: 67096.6, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1073`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 321900, + Discounts: 29538, + Sales: 292362, + COGS: 273500, + Profit: 18862, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1754`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 21048, + Discounts: 396.36, + Sales: 20651.64, + COGS: 1101, + Profit: 19550.64, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `2167`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 650100, + Discounts: 102667.5, + Sales: 547432.5, + COGS: 950625, + Profit: 403192.5, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1319`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 461650, + Discounts: 52479, + Sales: 409171, + COGS: 433160, + Profit: 23989, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1679`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 503700, + Discounts: 8694, + Sales: 495006, + COGS: 80500, + Profit: 414506, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1252`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 15024, + Discounts: 2506.68, + Sales: 12517.32, + COGS: 6963, + Profit: 5554.32, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3493`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 436625, + Discounts: 20891.25, + Sales: 415733.75, + COGS: 222840, + Profit: 192893.75, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1697`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 11879, + Discounts: 1014.93, + Sales: 10864.07, + COGS: 8055, + Profit: 2809.07, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1156`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 144500, + Discounts: 31466.25, + Sales: 113033.75, + COGS: 335640, + Profit: 222606.25, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `726`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 217800, + Discounts: 9018, + Sales: 208782, + COGS: 83500, + Profit: 125282, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1153`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 345900, + Discounts: 69255, + Sales: 276645, + COGS: 641250, + Profit: 364605, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2720`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 952000, + Discounts: 76135.5, + Sales: 875864.5, + COGS: 628420, + Profit: 247444.5, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3658`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 54870, + Discounts: 4961.25, + Sales: 49908.75, + COGS: 36750, + Profit: 13158.75, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2950`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 885000, + Discounts: 29538, + Sales: 855462, + COGS: 273500, + Profit: 581962, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1821`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27315, + Discounts: 1656.45, + Sales: 25658.55, + COGS: 12270, + Profit: 13388.55, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `4174`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 50088, + Discounts: 396.36, + Sales: 49691.64, + COGS: 1101, + Profit: 48590.64, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1127`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 338100, + Discounts: 35748, + Sales: 302352, + COGS: 331000, + Profit: 28648, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2209`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 26508, + Discounts: 1917, + Sales: 24591, + COGS: 5325, + Profit: 19266, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `862`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 107750, + Discounts: 31466.25, + Sales: 76283.75, + COGS: 335640, + Profit: 259356.25, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `3805`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 57075, + Discounts: 330.75, + Sales: 56744.25, + COGS: 2450, + Profit: 54294.25, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `1415`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 424500, + Discounts: 102424.5, + Sales: 322075.5, + COGS: 948375, + Profit: 626299.5, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `2231`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 780850, + Discounts: 41170.5, + Sales: 739679.5, + COGS: 339820, + Profit: 399859.5, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3649`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 456125, + Discounts: 6378.75, + Sales: 449746.25, + COGS: 68040, + Profit: 381706.25, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2948`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 368500, + Discounts: 23737.5, + Sales: 344762.5, + COGS: 253200, + Profit: 91562.5, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `3395`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1188250, + Discounts: 39973.5, + Sales: 1148276.5, + COGS: 329940, + Profit: 818336.5, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2650`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 31800, + Discounts: 2112.48, + Sales: 29687.52, + COGS: 5868, + Profit: 23819.52, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `585`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 175500, + Discounts: 71793, + Sales: 103707, + COGS: 664750, + Profit: 561043, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1316`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 460600, + Discounts: 42572.25, + Sales: 418027.75, + COGS: 351390, + Profit: 66637.75, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `4459`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 53508, + Discounts: 950.4, + Sales: 52557.6, + COGS: 2640, + Profit: 49917.6, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2711`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 813300, + Discounts: 50409, + Sales: 762891, + COGS: 466750, + Profit: 296141, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2621`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 31452, + Discounts: 2412.72, + Sales: 29039.28, + COGS: 6702, + Profit: 22337.28, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3613`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 54195, + Discounts: 1656.45, + Sales: 52538.55, + COGS: 12270, + Profit: 40268.55, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1847`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 230875, + Discounts: 9866.25, + Sales: 221008.75, + COGS: 105240, + Profit: 115768.75, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2996`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1048600, + Discounts: 65236.5, + Sales: 983363.5, + COGS: 538460, + Profit: 444903.5, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `2838`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 993300, + Discounts: 39973.5, + Sales: 953326.5, + COGS: 329940, + Profit: 623386.5, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `1302`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 19530, + Discounts: 1309.5, + Sales: 18220.5, + COGS: 9700, + Profit: 8520.5, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `1536`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 30720, + Discounts: 3049.2, + Sales: 27670.8, + COGS: 16940, + Profit: 10730.8, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1291`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 25820, + Discounts: 1193.4, + Sales: 24626.6, + COGS: 6630, + Profit: 17996.6, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1213`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 8491, + Discounts: 515.97, + Sales: 7975.03, + COGS: 4095, + Profit: 3880.03, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2370`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 28440, + Discounts: 1706.4, + Sales: 26733.6, + COGS: 4740, + Profit: 21993.6, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1979`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 13853, + Discounts: 328.23, + Sales: 13524.77, + COGS: 2605, + Profit: 10919.77, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2879`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 57580, + Discounts: 1751.4, + Sales: 55828.6, + COGS: 9730, + Profit: 46098.6, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1707`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34140, + Discounts: 1868.4, + Sales: 32271.6, + COGS: 10380, + Profit: 21891.6, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2933`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 20531, + Discounts: 226.8, + Sales: 20304.2, + COGS: 1800, + Profit: 18504.2, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1014`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 12168, + Discounts: 2124.36, + Sales: 10043.64, + COGS: 5901, + Profit: 4142.64, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `693`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 10395, + Discounts: 3547.8, + Sales: 6847.2, + COGS: 26280, + Profit: 19432.8, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3741`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26187, + Discounts: 226.8, + Sales: 25960.2, + COGS: 1800, + Profit: 24160.2, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3116`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 62320, + Discounts: 4827.6, + Sales: 57492.4, + COGS: 26820, + Profit: 30672.4, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `3995`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27965, + Discounts: 328.23, + Sales: 27636.77, + COGS: 2605, + Profit: 25031.77, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `953`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19060, + Discounts: 1868.4, + Sales: 17191.6, + COGS: 10380, + Profit: 6811.6, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `2530`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 37950, + Discounts: 2201.18, + Sales: 35748.82, + COGS: 16305, + Profit: 19443.82, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `2565`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 30780, + Discounts: 330.48, + Sales: 30449.52, + COGS: 918, + Profit: 29531.52, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `4297`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 51564, + Discounts: 463.2, + Sales: 51100.8, + COGS: 1158, + Profit: 49942.8, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `2871`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20097, + Discounts: 1629.6, + Sales: 18467.4, + COGS: 11640, + Profit: 6827.4, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3537`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 42444, + Discounts: 463.2, + Sales: 41980.8, + COGS: 1158, + Profit: 40822.8, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `1598`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 199750, + Discounts: 43068.75, + Sales: 156681.25, + COGS: 413460, + Profit: 256778.75, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `2616`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 327000, + Discounts: 18525, + Sales: 308475, + COGS: 177840, + Profit: 130635, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `2836`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 992600, + Discounts: 80955, + Sales: 911645, + COGS: 601380, + Profit: 310265, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `4023`, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 502875, + Discounts: 22550, + Sales: 480325, + COGS: 216480, + Profit: 263845, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3994`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 59910, + Discounts: 3108, + Sales: 56802, + COGS: 20720, + Profit: 36082, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2928`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 58560, + Discounts: 3908, + Sales: 54652, + COGS: 19540, + Profit: 35112, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2912`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 873600, + Discounts: 17730, + Sales: 855870, + COGS: 147750, + Profit: 708120, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3671`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 55065, + Discounts: 3250.5, + Sales: 51814.5, + COGS: 21670, + Profit: 30144.5, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2778`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 55560, + Discounts: 482, + Sales: 55078, + COGS: 2410, + Profit: 52668, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `405`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 6075, + Discounts: 1021.5, + Sales: 5053.5, + COGS: 6810, + Profit: 1756.5, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `2013`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 30195, + Discounts: 765, + Sales: 29430, + COGS: 5100, + Profit: 24330, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2634`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 39510, + Discounts: 1185, + Sales: 38325, + COGS: 7900, + Profit: 30425, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `4166`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1458100, + Discounts: 22365, + Sales: 1435735, + COGS: 166140, + Profit: 1269595, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `355`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 44375, + Discounts: 19950, + Sales: 24425, + COGS: 191520, + Profit: 167095, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2382`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 714600, + Discounts: 68820, + Sales: 645780, + COGS: 573500, + Profit: 72280, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `4170`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 83400, + Discounts: 482, + Sales: 82918, + COGS: 2410, + Profit: 80508, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `892`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 6244, + Discounts: 1865.5, + Sales: 4378.5, + COGS: 13325, + Profit: 8946.5, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2200`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 275000, + Discounts: 23950, + Sales: 251050, + COGS: 229920, + Profit: 21130, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `3389`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1016700, + Discounts: 25590, + Sales: 991110, + COGS: 213250, + Profit: 777860, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `2990`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 373750, + Discounts: 4262.5, + Sales: 369487.5, + COGS: 40920, + Profit: 328567.5, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `4013`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 60195, + Discounts: 961.5, + Sales: 59233.5, + COGS: 6410, + Profit: 52823.5, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `739`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 258650, + Discounts: 98245, + Sales: 160405, + COGS: 729820, + Profit: 569415, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `1989`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 596700, + Discounts: 12960, + Sales: 583740, + COGS: 108000, + Profit: 475740, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2991`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 897300, + Discounts: 68820, + Sales: 828480, + COGS: 573500, + Profit: 254980, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `4237`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 63555, + Discounts: 3250.5, + Sales: 60304.5, + COGS: 21670, + Profit: 38634.5, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1442`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 180250, + Discounts: 31612.5, + Sales: 148637.5, + COGS: 303480, + Profit: 154842.5, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `2712`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 949200, + Discounts: 65450, + Sales: 883750, + COGS: 486200, + Profit: 397550, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1508`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 188500, + Discounts: 7237.5, + Sales: 181262.5, + COGS: 69480, + Profit: 111782.5, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `4245`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1485750, + Discounts: 78400, + Sales: 1407350, + COGS: 582400, + Profit: 824950, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2630`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 789000, + Discounts: 89790, + Sales: 699210, + COGS: 748250, + Profit: 49040, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `1182`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 14184, + Discounts: 4224.6, + Sales: 9959.4, + COGS: 10561.5, + Profit: 602.1, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `1221`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 24420, + Discounts: 4078, + Sales: 20342, + COGS: 20390, + Profit: 48, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `963`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 11556, + Discounts: 3088.8, + Sales: 8467.2, + COGS: 7722, + Profit: 745.2, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `3243`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1135050, + Discounts: 24745, + Sales: 1110305, + COGS: 183820, + Profit: 926485, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1120`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 16800, + Discounts: 3108, + Sales: 13692, + COGS: 20720, + Profit: 7028, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1174`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 352200, + Discounts: 25590, + Sales: 326610, + COGS: 213250, + Profit: 113360, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `2541`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 30492, + Discounts: 1581.36, + Sales: 28910.64, + COGS: 3594, + Profit: 25316.64, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3246`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 22722, + Discounts: 1949.64, + Sales: 20772.36, + COGS: 12660, + Profit: 8112.36, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1531`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 18372, + Discounts: 1581.36, + Sales: 16790.64, + COGS: 3594, + Profit: 13196.64, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2526`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 37890, + Discounts: 633.6, + Sales: 37256.4, + COGS: 3840, + Profit: 33416.4, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `1136`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 13632, + Discounts: 623.04, + Sales: 13008.96, + COGS: 1416, + Profit: 11592.96, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1983`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 13881, + Discounts: 1215.83, + Sales: 12665.17, + COGS: 7895, + Profit: 4770.17, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `3259`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 39108, + Discounts: 1326.6, + Sales: 37781.4, + COGS: 3015, + Profit: 34766.4, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `3267`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 49005, + Discounts: 5279.17, + Sales: 43725.82, + COGS: 31995, + Profit: 11730.82, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `2454`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 29448, + Discounts: 623.04, + Sales: 28824.96, + COGS: 1416, + Profit: 27408.96, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `2643`, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 31716, + Discounts: 2556.84, + Sales: 29159.16, + COGS: 5811, + Profit: 23348.16, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `383`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 134050, + Discounts: 30492, + Sales: 103558, + COGS: 205920, + Profit: 102362, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2801`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 840300, + Discounts: 92763, + Sales: 747537, + COGS: 702750, + Profit: 44787, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1667`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 208375, + Discounts: 33563.75, + Sales: 174811.25, + COGS: 292920, + Profit: 118108.75, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `3539`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 53085, + Discounts: 2574, + Sales: 50511, + COGS: 15600, + Profit: 34911, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `4226`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 29582, + Discounts: 2083.62, + Sales: 27498.38, + COGS: 13530, + Profit: 13968.38, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `2220`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 777000, + Discounts: 29491, + Sales: 747509, + COGS: 199160, + Profit: 548349, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `776`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 15520, + Discounts: 6582.4, + Sales: 8937.6, + COGS: 29920, + Profit: 20982.4, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `553`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 8295, + Discounts: 3559.05, + Sales: 4735.95, + COGS: 21570, + Profit: 16834.05, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2107`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 632100, + Discounts: 28809, + Sales: 603291, + COGS: 218250, + Profit: 385041, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2468`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 49360, + Discounts: 2468.4, + Sales: 46891.6, + COGS: 11220, + Profit: 35671.6, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1905`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 666750, + Discounts: 81023.25, + Sales: 585726.75, + COGS: 547170, + Profit: 38556.75, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3658`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 43896, + Discounts: 5314.32, + Sales: 38581.68, + COGS: 12078, + Profit: 26503.68, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `4301`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 51612, + Discounts: 3201.66, + Sales: 48410.34, + COGS: 7276.5, + Profit: 41133.84, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2446`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 48920, + Discounts: 5266.8, + Sales: 43653.2, + COGS: 23940, + Profit: 19713.2, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `4209`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 63135, + Discounts: 3273.6, + Sales: 59861.4, + COGS: 19840, + Profit: 40021.4, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3353`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 419125, + Discounts: 33563.75, + Sales: 385561.25, + COGS: 292920, + Profit: 92641.25, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1401`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 28020, + Discounts: 6582.4, + Sales: 21437.6, + COGS: 29920, + Profit: 8482.4, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1865`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 559500, + Discounts: 45078, + Sales: 514422, + COGS: 341500, + Profit: 172922, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `463`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 9260, + Discounts: 6171, + Sales: 3089, + COGS: 28050, + Profit: 24961, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `4177`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 62655, + Discounts: 1080.75, + Sales: 61574.25, + COGS: 6550, + Profit: 55024.25, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2523`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 883050, + Discounts: 13244, + Sales: 869806, + COGS: 89440, + Profit: 780366, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `1930`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 13510, + Discounts: 1392.16, + Sales: 12117.84, + COGS: 9040, + Profit: 3077.84, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `1301`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 15612, + Discounts: 2288.88, + Sales: 13323.12, + COGS: 5202, + Profit: 8121.12, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `4125`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 515625, + Discounts: 7617.5, + Sales: 508007.5, + COGS: 66480, + Profit: 441527.5, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `607`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 12140, + Discounts: 6457, + Sales: 5683, + COGS: 29350, + Profit: 23667, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `478`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 59750, + Discounts: 43518.75, + Sales: 16231.25, + COGS: 379800, + Profit: 363568.75, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `4489`, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 89780, + Discounts: 5783.8, + Sales: 83996.2, + COGS: 26290, + Profit: 57706.2, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1504`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 188000, + Discounts: 19703.75, + Sales: 168296.25, + COGS: 171960, + Profit: 3663.75, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `3763`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 470375, + Discounts: 13021.25, + Sales: 457353.75, + COGS: 113640, + Profit: 343713.75, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2412`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 844200, + Discounts: 13244, + Sales: 830956, + COGS: 89440, + Profit: 741516, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `2342`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 35130, + Discounts: 3559.05, + Sales: 31570.95, + COGS: 21570, + Profit: 10000.95, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4451`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 31157, + Discounts: 292.6, + Sales: 30864.4, + COGS: 1900, + Profit: 28964.4, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3796`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1328600, + Discounts: 37212, + Sales: 1291388, + COGS: 230360, + Profit: 1061028, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `2286`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 285750, + Discounts: 36240, + Sales: 249510, + COGS: 289920, + Profit: 40410, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `3614`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 451750, + Discounts: 32340, + Sales: 419410, + COGS: 258720, + Profit: 160690, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1716`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 25740, + Discounts: 4840.2, + Sales: 20899.8, + COGS: 26890, + Profit: 5990.2, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1301`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 19515, + Discounts: 1218.6, + Sales: 18296.4, + COGS: 6770, + Profit: 11526.4, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `4175`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1252500, + Discounts: 63828, + Sales: 1188672, + COGS: 443250, + Profit: 745422, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `975`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 6825, + Discounts: 2032.8, + Sales: 4792.2, + COGS: 12100, + Profit: 7307.8, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `1154`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 8078, + Discounts: 2296.56, + Sales: 5781.44, + COGS: 13670, + Profit: 7888.56, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1873`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 37460, + Discounts: 4116, + Sales: 33344, + COGS: 17150, + Profit: 16194, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `3766`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1129800, + Discounts: 42696, + Sales: 1087104, + COGS: 296500, + Profit: 790604, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3558`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1067400, + Discounts: 125820, + Sales: 941580, + COGS: 873750, + Profit: 67830, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3156`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1104600, + Discounts: 37212, + Sales: 1067388, + COGS: 230360, + Profit: 837028, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2994`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 374250, + Discounts: 32340, + Sales: 341910, + COGS: 258720, + Profit: 83190, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2087`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 41740, + Discounts: 2172, + Sales: 39568, + COGS: 9050, + Profit: 30518, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1056`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 21120, + Discounts: 4116, + Sales: 17004, + COGS: 17150, + Profit: 146, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1353`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 473550, + Discounts: 66948, + Sales: 406602, + COGS: 414440, + Profit: 7838, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `416`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 124800, + Discounts: 48924, + Sales: 75876, + COGS: 339750, + Profit: 263874, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `3880`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1164000, + Discounts: 77400, + Sales: 1086600, + COGS: 537500, + Profit: 549100, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `809`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 283150, + Discounts: 50274, + Sales: 232876, + COGS: 311220, + Profit: 78344, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1892`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 28380, + Discounts: 684, + Sales: 27696, + COGS: 3800, + Profit: 23896, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2072`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 41440, + Discounts: 2959.2, + Sales: 38480.8, + COGS: 12330, + Profit: 26150.8, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `3052`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1068200, + Discounts: 58590, + Sales: 1009610, + COGS: 362700, + Profit: 646910, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `3121`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1092350, + Discounts: 41412, + Sales: 1050938, + COGS: 256360, + Profit: 794578, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2059`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 41180, + Discounts: 2172, + Sales: 39008, + COGS: 9050, + Profit: 29958, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `4254`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 51048, + Discounts: 3036.96, + Sales: 48011.04, + COGS: 6327, + Profit: 41684.04, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `1293`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 19395, + Discounts: 6974.1, + Sales: 12420.9, + COGS: 38745, + Profit: 26324.1, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1293`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 452550, + Discounts: 26166, + Sales: 426384, + COGS: 161980, + Profit: 264404, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `230`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 80500, + Discounts: 41412, + Sales: 39088, + COGS: 256360, + Profit: 217272, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1723`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 215375, + Discounts: 35805, + Sales: 179570, + COGS: 286440, + Profit: 106870, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `240`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 4800, + Discounts: 2959.2, + Sales: 1840.8, + COGS: 12330, + Profit: 10489.2, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `2571`, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 899850, + Discounts: 11340, + Sales: 888510, + COGS: 70200, + Profit: 818310, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1661`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 11627, + Discounts: 2874.06, + Sales: 8752.94, + COGS: 17107.5, + Profit: 8354.56, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `4474`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 31318, + Discounts: 2296.56, + Sales: 29021.44, + COGS: 13670, + Profit: 15351.44, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `833`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 12495, + Discounts: 4586.4, + Sales: 7908.6, + COGS: 25480, + Profit: 17571.4, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `674`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 13480, + Discounts: 6051.6, + Sales: 7428.4, + COGS: 25215, + Profit: 17786.6, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `778`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 9336, + Discounts: 3831.84, + Sales: 5504.16, + COGS: 7983, + Profit: 2478.84, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1457`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 29140, + Discounts: 3674.4, + Sales: 25465.6, + COGS: 15310, + Profit: 10155.6, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `3158`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 22106, + Discounts: 1252.44, + Sales: 20853.56, + COGS: 7455, + Profit: 13398.56, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `4095`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 81900, + Discounts: 3674.4, + Sales: 78225.6, + COGS: 15310, + Profit: 62915.6, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `3170`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 38040, + Discounts: 3975.84, + Sales: 34064.16, + COGS: 8283, + Profit: 25781.16, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `493`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 7395, + Discounts: 5005.65, + Sales: 2389.35, + COGS: 25670, + Profit: 23280.65, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `3286`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 49290, + Discounts: 5005.65, + Sales: 44284.35, + COGS: 25670, + Profit: 18614.35, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `3563`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1247050, + Discounts: 41996.5, + Sales: 1205053.5, + COGS: 239980, + Profit: 965073.5, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `4109`, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1438150, + Discounts: 81445, + Sales: 1356705, + COGS: 465400, + Profit: 891305, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `3653`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 73060, + Discounts: 1149.2, + Sales: 71910.8, + COGS: 4420, + Profit: 67490.8, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `2203`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 771050, + Discounts: 44703.75, + Sales: 726346.25, + COGS: 255450, + Profit: 470896.25, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `2924`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20468, + Discounts: 1181.18, + Sales: 19286.82, + COGS: 6490, + Profit: 12796.82, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `2650`, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 31800, + Discounts: 942.24, + Sales: 30857.76, + COGS: 1812, + Profit: 29045.76, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `1194`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 23880, + Discounts: 5863, + Sales: 18017, + COGS: 22550, + Profit: 4533, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `3366`, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 67320, + Discounts: 3247.4, + Sales: 64072.6, + COGS: 12490, + Profit: 51582.6, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1325`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 9275, + Discounts: 1309.04, + Sales: 7965.97, + COGS: 7192.5, + Profit: 773.47, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `4243`, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1272900, + Discounts: 31473, + Sales: 1241427, + COGS: 201750, + Profit: 1039677, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2887`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 57740, + Discounts: 6866.6, + Sales: 50873.4, + COGS: 26410, + Profit: 24463.4, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3839`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 76780, + Discounts: 7040.8, + Sales: 69739.2, + COGS: 27080, + Profit: 42659.2, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1863`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 652050, + Discounts: 119756, + Sales: 532294, + COGS: 684320, + Profit: 152026, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2858`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 357250, + Discounts: 25723.75, + Sales: 331526.25, + COGS: 189960, + Profit: 141566.25, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2868`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 34416, + Discounts: 890.76, + Sales: 33525.24, + COGS: 1713, + Profit: 31812.24, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `3805`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 26635, + Discounts: 2453.36, + Sales: 24181.64, + COGS: 13480, + Profit: 10701.64, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3914`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 58710, + Discounts: 3051.75, + Sales: 55658.25, + COGS: 15650, + Profit: 40008.25, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `524`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 10480, + Discounts: 3247.4, + Sales: 7232.6, + COGS: 12490, + Profit: 5257.4, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `3095`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1083250, + Discounts: 16243.5, + Sales: 1067006.5, + COGS: 92820, + Profit: 974186.5, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2410`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 28920, + Discounts: 1580.28, + Sales: 27339.72, + COGS: 3039, + Profit: 24300.72, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `4263`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 63945, + Discounts: 7795.13, + Sales: 56149.88, + COGS: 39975, + Profit: 16174.88, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2239`, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 783650, + Discounts: 119756, + Sales: 663894, + COGS: 684320, + Profit: 20426, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `569`, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 3983, + Discounts: 1082.9, + Sales: 2900.1, + COGS: 5950, + Profit: 3049.9, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `3889`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 46668, + Discounts: 942.24, + Sales: 45725.76, + COGS: 1812, + Profit: 43913.76, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `1378`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 20670, + Discounts: 1287, + Sales: 19383, + COGS: 6600, + Profit: 12783, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2253`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 27036, + Discounts: 639.6, + Sales: 26396.4, + COGS: 1230, + Profit: 25166.4, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `3202`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 960600, + Discounts: 101595, + Sales: 859005, + COGS: 651250, + Profit: 207755, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3835`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 46020, + Discounts: 1580.28, + Sales: 44439.72, + COGS: 3039, + Profit: 41400.72, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `2487`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 310875, + Discounts: 25723.75, + Sales: 285151.25, + COGS: 189960, + Profit: 95191.25, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `4428`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 66420, + Discounts: 3051.75, + Sales: 63368.25, + COGS: 15650, + Profit: 47718.25, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `1200`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 150000, + Discounts: 26958.75, + Sales: 123041.25, + COGS: 199080, + Profit: 76038.75, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `2953`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 20671, + Discounts: 1082.9, + Sales: 19588.1, + COGS: 5950, + Profit: 13638.1, + Date: `6/1/19`, + MonthName: `June`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `1453`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 17436, + Discounts: 639.6, + Sales: 16796.4, + COGS: 1230, + Profit: 15566.4, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: `865`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 10380, + Discounts: 2761.2, + Sales: 7618.8, + COGS: 5310, + Profit: 2308.8, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `1072`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 21440, + Discounts: 7221.2, + Sales: 14218.8, + COGS: 25790, + Profit: 11571.2, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `1737`, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 34740, + Discounts: 4880.4, + Sales: 29859.6, + COGS: 17430, + Profit: 12429.6, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `1535`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 10745, + Discounts: 2936.08, + Sales: 7808.92, + COGS: 14980, + Profit: 7171.08, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2532`, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 17724, + Discounts: 274.4, + Sales: 17449.6, + COGS: 1400, + Profit: 16049.6, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: `1765`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 12355, + Discounts: 287.14, + Sales: 12067.86, + COGS: 1465, + Profit: 10602.86, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: `1567`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 10969, + Discounts: 2936.08, + Sales: 8032.92, + COGS: 14980, + Profit: 6947.08, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2640`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 39600, + Discounts: 583.8, + Sales: 39016.2, + COGS: 2780, + Profit: 36236.2, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3079`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 61580, + Discounts: 6798.4, + Sales: 54781.6, + COGS: 24280, + Profit: 30501.6, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `4130`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 61950, + Discounts: 3710.7, + Sales: 58239.3, + COGS: 17670, + Profit: 40569.3, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2938`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 35256, + Discounts: 2340.24, + Sales: 32915.76, + COGS: 4179, + Profit: 28736.76, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `3080`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 21560, + Discounts: 274.4, + Sales: 21285.6, + COGS: 1400, + Profit: 19885.6, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1530`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 18360, + Discounts: 2340.24, + Sales: 16019.76, + COGS: 4179, + Profit: 11840.76, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `3537`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 42444, + Discounts: 3385.2, + Sales: 39058.8, + COGS: 6045, + Profit: 33013.8, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `2021`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 606300, + Discounts: 33642, + Sales: 572658, + COGS: 200250, + Profit: 372408, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1804`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 225500, + Discounts: 17902.5, + Sales: 207597.5, + COGS: 122760, + Profit: 84837.5, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1014`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 304200, + Discounts: 62832, + Sales: 241368, + COGS: 374000, + Profit: 132632, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: `2913`, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 873900, + Discounts: 42420, + Sales: 831480, + COGS: 252500, + Profit: 578980, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `763`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 11445, + Discounts: 3177.3, + Sales: 8267.7, + COGS: 15130, + Profit: 6862.3, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: `1425`, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 21375, + Discounts: 4830, + Sales: 16545, + COGS: 23000, + Profit: 6455, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: `4357`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 544625, + Discounts: 49367.5, + Sales: 495257.5, + COGS: 338520, + Profit: 156737.5, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `2138`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 748300, + Discounts: 109147.5, + Sales: 639152.5, + COGS: 579150, + Profit: 60002.5, + Date: `1/1/19`, + MonthName: `January`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: `3825`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1338750, + Discounts: 58751, + Sales: 1279999, + COGS: 311740, + Profit: 968259, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `3393`, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1187550, + Discounts: 9800, + Sales: 1177750, + COGS: 52000, + Profit: 1125750, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `2215`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 15505, + Discounts: 380.24, + Sales: 15124.76, + COGS: 1940, + Profit: 13184.76, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `2278`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 15946, + Discounts: 1692.46, + Sales: 14253.54, + COGS: 8635, + Profit: 5618.54, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: `403`, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 6045, + Discounts: 4830, + Sales: 1215, + COGS: 23000, + Profit: 21785, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `289`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 5780, + Discounts: 728, + Sales: 5052, + COGS: 2600, + Profit: 2452, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `749`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 11235, + Discounts: 5187, + Sales: 6048, + COGS: 24700, + Profit: 18652, + Date: `9/1/18`, + MonthName: `September`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `372`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 5580, + Discounts: 3660.3, + Sales: 1919.7, + COGS: 17430, + Profit: 15510.3, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3781`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 45372, + Discounts: 4895.52, + Sales: 40476.48, + COGS: 8742, + Profit: 31734.48, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1785`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 12495, + Discounts: 1696.38, + Sales: 10798.62, + COGS: 8655, + Profit: 2143.62, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `4029`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1410150, + Discounts: 34300, + Sales: 1375850, + COGS: 182000, + Profit: 1193850, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2813`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 33756, + Discounts: 3732.96, + Sales: 30023.04, + COGS: 6666, + Profit: 23357.04, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `2150`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 752500, + Discounts: 57673, + Sales: 694827, + COGS: 306020, + Profit: 388807, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `2093`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 732550, + Discounts: 94178, + Sales: 638372, + COGS: 499720, + Profit: 138652, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `4391`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 548875, + Discounts: 27562.5, + Sales: 521312.5, + COGS: 189000, + Profit: 332312.5, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2695`, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 53900, + Discounts: 1696.8, + Sales: 52203.2, + COGS: 6060, + Profit: 46143.2, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1337`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 401100, + Discounts: 103320, + Sales: 297780, + COGS: 615000, + Profit: 317220, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: `2621`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 786300, + Discounts: 11298, + Sales: 775002, + COGS: 67250, + Profit: 707752, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: `3735`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1120500, + Discounts: 106512, + Sales: 1013988, + COGS: 634000, + Profit: 379988, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: `4320`, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 30240, + Discounts: 2844.94, + Sales: 27395.06, + COGS: 14515, + Profit: 12880.06, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `2828`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 848400, + Discounts: 106722, + Sales: 741678, + COGS: 635250, + Profit: 106428, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `2586`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 775800, + Discounts: 11298, + Sales: 764502, + COGS: 67250, + Profit: 697252, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `1248`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 374400, + Discounts: 62832, + Sales: 311568, + COGS: 374000, + Profit: 62432, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `4035`, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 1210500, + Discounts: 42420, + Sales: 1168080, + COGS: 252500, + Profit: 915580, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `359`, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 125650, + Discounts: 62769, + Sales: 62881, + COGS: 333060, + Profit: 270179, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `3926`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1177800, + Discounts: 37296, + Sales: 1140504, + COGS: 222000, + Profit: 918504, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `4247`, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 530875, + Discounts: 49770, + Sales: 481105, + COGS: 341280, + Profit: 139825, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `2695`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 32340, + Discounts: 4158, + Sales: 28182, + COGS: 7425, + Profit: 20757, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: `1104`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 16560, + Discounts: 3660.3, + Sales: 12899.7, + COGS: 17430, + Profit: 4530.3, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: `1449`, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 17388, + Discounts: 4895.52, + Sales: 12492.48, + COGS: 8742, + Profit: 3750.48, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1131`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 7917, + Discounts: 1696.38, + Sales: 6220.62, + COGS: 8655, + Profit: 2434.38, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `1468`, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 10276, + Discounts: 1692.46, + Sales: 8583.54, + COGS: 8635, + Profit: 51.46, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `1272`, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 19080, + Discounts: 3927, + Sales: 15153, + COGS: 18700, + Profit: 3547, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: `1403`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 175375, + Discounts: 22012.5, + Sales: 153362.5, + COGS: 140880, + Profit: 12482.5, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `2161`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 270125, + Discounts: 51881.25, + Sales: 218243.75, + COGS: 332040, + Profit: 113796.25, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: `1937`, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 242125, + Discounts: 20343.75, + Sales: 221781.25, + COGS: 130200, + Profit: 91581.25, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `2879`, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 863700, + Discounts: 24570, + Sales: 839130, + COGS: 136500, + Profit: 702630, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1330`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 26600, + Discounts: 3474, + Sales: 23126, + COGS: 11580, + Profit: 11546, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `2426`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 36390, + Discounts: 3631.5, + Sales: 32758.5, + COGS: 16140, + Profit: 16618.5, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2033`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14231, + Discounts: 2661.75, + Sales: 11569.25, + COGS: 12675, + Profit: 1105.75, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `2029`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 710150, + Discounts: 149677.5, + Sales: 560472.5, + COGS: 741260, + Profit: 180787.5, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `1049`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 15735, + Discounts: 5757.75, + Sales: 9977.25, + COGS: 25590, + Profit: 15612.75, + Date: `8/1/19`, + MonthName: `August`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `1062`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 21240, + Discounts: 801, + Sales: 20439, + COGS: 2670, + Profit: 17769, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `2509`, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 313625, + Discounts: 20343.75, + Sales: 293281.25, + COGS: 130200, + Profit: 163081.25, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: `1743`, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 26145, + Discounts: 2643.75, + Sales: 23501.25, + COGS: 11750, + Profit: 11751.25, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3418`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1196300, + Discounts: 105367.5, + Sales: 1090932.5, + COGS: 521820, + Profit: 569112.5, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: `1751`, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 612850, + Discounts: 112927.5, + Sales: 499922.5, + COGS: 559260, + Profit: 59337.5, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: `3228`, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 38736, + Discounts: 1645.2, + Sales: 37090.8, + COGS: 2742, + Profit: 34348.8, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: `1105`, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 22100, + Discounts: 879, + Sales: 21221, + COGS: 2930, + Profit: 18291, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: `2778`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 33336, + Discounts: 900, + Sales: 32436, + COGS: 1500, + Profit: 30936, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `1173`, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 17595, + Discounts: 6358.5, + Sales: 11236.5, + COGS: 28260, + Profit: 17023.5, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: `3160`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 395000, + Discounts: 12431.25, + Sales: 382568.75, + COGS: 79560, + Profit: 303008.75, + Date: `9/1/19`, + MonthName: `September`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `4322`, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1296600, + Discounts: 115830, + Sales: 1180770, + COGS: 643500, + Profit: 537270, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `1901`, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 237625, + Discounts: 45712.5, + Sales: 191912.5, + COGS: 292560, + Profit: 100647.5, + Date: `12/1/18`, + MonthName: `December`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: `2980`, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 35760, + Discounts: 1645.2, + Sales: 34114.8, + COGS: 2742, + Profit: 31372.8, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `4068`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 81360, + Discounts: 2596.5, + Sales: 78763.5, + COGS: 8655, + Profit: 70108.5, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `2105`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 31575, + Discounts: 1107, + Sales: 30468, + COGS: 4920, + Profit: 25548, + Date: `7/1/19`, + MonthName: `July`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `1647`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 32940, + Discounts: 801, + Sales: 32139, + COGS: 2670, + Profit: 29469, + Date: `10/1/18`, + MonthName: `October`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `235`, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 3525, + Discounts: 2643.75, + Sales: 881.25, + COGS: 11750, + Profit: 10868.75, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: `3617`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 452125, + Discounts: 55387.5, + Sales: 396737.5, + COGS: 354480, + Profit: 42257.5, + Date: `11/1/18`, + MonthName: `November`, + Year: `2018` + })); + this.push(new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: `2106`, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 263250, + Discounts: 10350, + Sales: 252900, + COGS: 66240, + Profit: 186660, + Date: `11/1/19`, + MonthName: `November`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: `2351`, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 47020, + Discounts: 879, + Sales: 46141, + COGS: 2930, + Profit: 43211, + Date: `12/1/19`, + MonthName: `December`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: `1897`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 569100, + Discounts: 111375, + Sales: 457725, + COGS: 618750, + Profit: 161025, + Date: `3/1/19`, + MonthName: `March`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: `647`, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 194100, + Discounts: 24570, + Sales: 169530, + COGS: 136500, + Profit: 33030, + Date: `10/1/19`, + MonthName: `October`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: `3621`, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 25347, + Discounts: 1436.4, + Sales: 23910.6, + COGS: 6840, + Profit: 17070.6, + Date: `2/1/19`, + MonthName: `February`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: `3221`, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 22547, + Discounts: 759.15, + Sales: 21787.85, + COGS: 3615, + Profit: 18172.85, + Date: `4/1/19`, + MonthName: `April`, + Year: `2019` + })); + this.push(new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: `493`, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 5916, + Discounts: 3250.8, + Sales: 2665.2, + COGS: 5418, + Profit: 2752.8, + Date: `5/1/19`, + MonthName: `May`, + Year: `2019` + })); + } +} + +export class SalesDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public Country: string; + public Product: string; + public UnitsSold: string; + public ManufacturingPrice: number; + public SalePrice: number; + public GrossSales: number; + public Discounts: number; + public Sales: number; + public COGS: number; + public Profit: number; + public Date: string; + public MonthName: string; + public Year: string; + +} +//end data \ No newline at end of file diff --git a/samples/charts/category-chart/data-filter/src/app.component.html b/samples/charts/category-chart/data-filter/src/app.component.html new file mode 100644 index 000000000..9d582d744 --- /dev/null +++ b/samples/charts/category-chart/data-filter/src/app.component.html @@ -0,0 +1,47 @@ +
+
+ + + + +
+
+ Sales Filtered by Country, Product, and Dates +
+
+ + +
+
+ + +
+
diff --git a/samples/charts/category-chart/data-filter/src/app.component.scss b/samples/charts/category-chart/data-filter/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/category-chart/data-filter/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/category-chart/data-filter/src/app.component.ts b/samples/charts/category-chart/data-filter/src/app.component.ts new file mode 100644 index 000000000..8c01c4b48 --- /dev/null +++ b/samples/charts/category-chart/data-filter/src/app.component.ts @@ -0,0 +1,69 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; +import { SalesData } from './SalesData'; +import { IgxPropertyEditorPropertyDescriptionChangedEventArgs, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxCategoryChartComponent, MarkerType, MarkerType_$type } from 'igniteui-angular-charts'; +import { EnumUtil } from 'igniteui-angular-core'; +import { IgxLegendComponent } from 'igniteui-angular-charts'; +import { IgxPropertyEditorPanelComponent } from 'igniteui-angular-layouts'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("editor", { static: true } ) + private editor: IgxPropertyEditorPanelComponent + @ViewChild("initialFilter", { static: true } ) + private initialFilter: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent + private _salesData: SalesData = null; + public get salesData(): SalesData { + if (this._salesData == null) + { + this._salesData = new SalesData(); + } + return this._salesData; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + LegendDescriptionModule.register(context); + CategoryChartDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + + public editorChangeUpdateInitialFilter({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { + + var chart = this.chart; + var intialFilterVal = args.newValue.toString(); + chart.initialFilter = intialFilterVal; + } + +} + diff --git a/samples/charts/category-chart/data-filter/src/app.module.ts b/samples/charts/category-chart/data-filter/src/app.module.ts new file mode 100644 index 000000000..b4febf5b8 --- /dev/null +++ b/samples/charts/category-chart/data-filter/src/app.module.ts @@ -0,0 +1,28 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxLegendModule, + IgxCategoryChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/category-chart/data-filter/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/data-filter/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/samples/charts/category-chart/data-filter/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/samples/charts/category-chart/data-filter/src/config/tsconfig.app.json b/samples/charts/category-chart/data-filter/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/category-chart/data-filter/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/category-chart/data-filter/src/config/tsconfig.base.json b/samples/charts/category-chart/data-filter/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/samples/charts/category-chart/data-filter/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/samples/charts/category-chart/data-filter/src/config/tsconfig.spec.json b/samples/charts/category-chart/data-filter/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/category-chart/data-filter/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/category-chart/data-filter/src/config/tsconfig.worker.json b/samples/charts/category-chart/data-filter/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/samples/charts/category-chart/data-filter/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/category-chart/data-filter/src/environments/environment.prod.ts b/samples/charts/category-chart/data-filter/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/category-chart/data-filter/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/category-chart/data-filter/src/environments/environment.ts b/samples/charts/category-chart/data-filter/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/category-chart/data-filter/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/category-chart/data-filter/src/index.html b/samples/charts/category-chart/data-filter/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/category-chart/data-filter/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/category-chart/data-filter/src/main.ts b/samples/charts/category-chart/data-filter/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/category-chart/data-filter/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/category-chart/data-filter/src/polyfills.ts b/samples/charts/category-chart/data-filter/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/category-chart/data-filter/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/category-chart/data-filter/src/styles.scss b/samples/charts/category-chart/data-filter/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/category-chart/data-filter/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/category-chart/data-filter/src/typings.d.ts b/samples/charts/category-chart/data-filter/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/category-chart/data-filter/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/category-chart/data-filter/tsconfig.json b/samples/charts/category-chart/data-filter/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/charts/category-chart/data-filter/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/category-chart/data-filter/tslint.json b/samples/charts/category-chart/data-filter/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/category-chart/data-filter/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} From f38b7f79ca177d8a1bffbc1440e267f422991be0 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 14:09:56 -0500 Subject: [PATCH 049/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.1.25.2 (#126) Co-authored-by: tfsbuild --- .../chart-highlight-filter/src/app.component.html | 3 +++ .../charts/category-chart/data-filter/src/app.component.html | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/samples/charts/category-chart/chart-highlight-filter/src/app.component.html b/samples/charts/category-chart/chart-highlight-filter/src/app.component.html index 4dc5ba354..3d50767da 100644 --- a/samples/charts/category-chart/chart-highlight-filter/src/app.component.html +++ b/samples/charts/category-chart/chart-highlight-filter/src/app.component.html @@ -17,6 +17,9 @@
+
+ Sales Filtered by Country +
From 3de7d4cfc3457924c46f402bd1915524ff735bb1 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 09:23:56 -0400 Subject: [PATCH 050/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.3.27.3 (#139) Co-authored-by: tfsbuild --- .../OlympicMedalsTopCountriesWithTotals.ts | 21 + .../data-legend/src/app.component.html | 14 +- .../data-legend/src/app.component.ts | 30 +- .../data-tooltip/src/app.component.html | 14 +- .../data-tooltip/src/app.component.ts | 30 +- .../.stackblitzrc | 1 + .../angular.json | 106 + .../package.json | 47 + .../sandbox.config.json | 5 + .../src/WorldDebtAndPopulation.ts | 1845 +++++++++++++++++ .../src/app.component.html | 73 + .../src/app.component.scss | 3 + .../src/app.component.ts | 112 + .../src/app.module.ts | 32 + .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 + .../src/config/tsconfig.base.json | 24 + .../src/config/tsconfig.spec.json | 19 + .../src/config/tsconfig.worker.json | 14 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../src/index.html | 23 + .../src/main.ts | 15 + .../src/polyfills.ts | 65 + .../src/styles.scss | 9 + .../src/typings.d.ts | 5 + .../tsconfig.json | 21 + .../tslint.json | 31 + .../package.json | 4 +- .../src/CountryStatsAfrica.ts | 660 +++--- .../src/CountryStatsEurope.ts | 580 +++--- .../src/app.component.html | 40 +- .../src/app.component.ts | 67 +- .../src/app.module.ts | 3 +- .../src/index.html | 1 + .../src/styles.scss | 1 - .../tslint.json | 26 +- .../package.json | 4 +- .../src/WorldDebtAndPopulation.ts | 1845 +++++++++++++++++ .../src/app.component.html | 40 +- .../src/app.component.ts | 64 +- .../src/app.module.ts | 8 +- .../src/index.html | 1 + .../src/styles.scss | 1 - .../tslint.json | 26 +- .../scatter-bubble-chart-styling/package.json | 4 +- .../src/CountryStatsAfrica.ts | 660 +++--- .../src/CountryStatsEurope.ts | 580 +++--- .../src/app.component.html | 52 +- .../src/app.component.ts | 69 +- .../src/app.module.ts | 8 +- .../src/index.html | 1 + .../src/styles.scss | 1 - .../scatter-bubble-chart-styling/tslint.json | 26 +- 54 files changed, 6189 insertions(+), 1179 deletions(-) create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/.stackblitzrc create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/angular.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/sandbox.config.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldDebtAndPopulation.ts create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.scss create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.module.ts create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.app.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.base.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.spec.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/environments/environment.ts create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/index.html create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/main.ts create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/polyfills.ts create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/styles.scss create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/typings.d.ts create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/tslint.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldDebtAndPopulation.ts diff --git a/samples/charts/data-chart/chart-highlight-filter/src/OlympicMedalsTopCountriesWithTotals.ts b/samples/charts/data-chart/chart-highlight-filter/src/OlympicMedalsTopCountriesWithTotals.ts index 9dbc1eada..63183e6f0 100644 --- a/samples/charts/data-chart/chart-highlight-filter/src/OlympicMedalsTopCountriesWithTotals.ts +++ b/samples/charts/data-chart/chart-highlight-filter/src/OlympicMedalsTopCountriesWithTotals.ts @@ -5,8 +5,11 @@ export class OlympicMedalsTopCountriesWithTotalsItem { public year: string; public america: number; + public americaGold: number; public china: number; + public chinaGold: number; public russia: number; + public russiaGold: number; public total: number; } @@ -20,48 +23,66 @@ export class OlympicMedalsTopCountriesWithTotals extends Array - - - - - - - - ) { + Object.assign(this, init); + } + + public countryCode: string; + public countryName: string; + public gdpPerCapita: number; + public unemploymentRate: number; + public televisions: number; + public publicDebt: number; + public population: number; + public oilProduction: number; + public medianAge: number; + public internetUsers: number; + public electricityProduction: number; + public birthRate: number; + +} +export class WorldDebtAndPopulation extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new WorldDebtAndPopulationItem( + { + countryCode: `AL`, + countryName: `Albania`, + gdpPerCapita: 5800, + unemploymentRate: 13, + televisions: 700000, + publicDebt: 51, + population: 3619778, + oilProduction: 7006, + medianAge: 30, + internetUsers: 471200, + electricityProduction: 5385, + birthRate: 15 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `DZ`, + countryName: `Algeria`, + gdpPerCapita: 6700, + unemploymentRate: 12, + televisions: 3100000, + publicDebt: 18, + population: 33769668, + oilProduction: 1358000, + medianAge: 26, + internetUsers: 3500000, + electricityProduction: 31910, + birthRate: 17 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `AO`, + countryName: `Angola`, + gdpPerCapita: 7800, + unemploymentRate: 0, + televisions: 196000, + publicDebt: 12, + population: 12531357, + oilProduction: 1712000, + medianAge: 18, + internetUsers: 100000, + electricityProduction: 2585, + birthRate: 44 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `AR`, + countryName: `Argentina`, + gdpPerCapita: 13100, + unemploymentRate: 9, + televisions: 7950000, + publicDebt: 56, + population: 40134425, + oilProduction: 730000, + medianAge: 30, + internetUsers: 9309000, + electricityProduction: 101100, + birthRate: 18 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `AW`, + countryName: `Aruba`, + gdpPerCapita: 21800, + unemploymentRate: 7, + televisions: 20000, + publicDebt: 46, + population: 101541, + oilProduction: 2356, + medianAge: 38, + internetUsers: 24000, + electricityProduction: 770, + birthRate: 13 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `AU`, + countryName: `Australia`, + gdpPerCapita: 37300, + unemploymentRate: 4, + televisions: 10150000, + publicDebt: 16, + population: 21007310, + oilProduction: 540000, + medianAge: 37, + internetUsers: 11240000, + electricityProduction: 236700, + birthRate: 13 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `AT`, + countryName: `Austria`, + gdpPerCapita: 39300, + unemploymentRate: 4, + televisions: 10150000, + publicDebt: 59, + population: 8205533, + oilProduction: 23320, + medianAge: 42, + internetUsers: 4277000, + electricityProduction: 61020, + birthRate: 9 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `AZ`, + countryName: `Azerbaijan`, + gdpPerCapita: 8000, + unemploymentRate: 1, + televisions: 170000, + publicDebt: 7, + population: 8177717, + oilProduction: 934700, + medianAge: 28, + internetUsers: 1036000, + electricityProduction: 23800, + birthRate: 18 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BH`, + countryName: `Bahrain`, + gdpPerCapita: 33900, + unemploymentRate: 15, + televisions: 275000, + publicDebt: 31, + population: 718306, + oilProduction: 184300, + medianAge: 30, + internetUsers: 250000, + electricityProduction: 8187, + birthRate: 17 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BD`, + countryName: `Bangladesh`, + gdpPerCapita: 1400, + unemploymentRate: 3, + televisions: 770000, + publicDebt: 37, + population: 153546896, + oilProduction: 6746, + medianAge: 23, + internetUsers: 500000, + electricityProduction: 21350, + birthRate: 29 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BE`, + countryName: `Belgium`, + gdpPerCapita: 36200, + unemploymentRate: 8, + televisions: 4720000, + publicDebt: 85, + population: 10403951, + oilProduction: 9000, + medianAge: 41, + internetUsers: 5220000, + electricityProduction: 80840, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BT`, + countryName: `Bhutan`, + gdpPerCapita: 5200, + unemploymentRate: 3, + televisions: 11000, + publicDebt: 81, + population: 682321, + oilProduction: 0, + medianAge: 24, + internetUsers: 40000, + electricityProduction: 2000, + birthRate: 21 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BO`, + countryName: `Bolivia`, + gdpPerCapita: 4400, + unemploymentRate: 8, + televisions: 900000, + publicDebt: 46, + population: 9247816, + oilProduction: 46470, + medianAge: 23, + internetUsers: 1000000, + electricityProduction: 5293, + birthRate: 22 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BA`, + countryName: `Bosnia and Herzegovina`, + gdpPerCapita: 6100, + unemploymentRate: 46, + televisions: 0, + publicDebt: 34, + population: 4590310, + oilProduction: 0, + medianAge: 39, + internetUsers: 1055000, + electricityProduction: 12220, + birthRate: 9 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BW`, + countryName: `Botswana`, + gdpPerCapita: 14300, + unemploymentRate: 8, + televisions: 31000, + publicDebt: 5, + population: 1842323, + oilProduction: 0, + medianAge: 21, + internetUsers: 80000, + electricityProduction: 912, + birthRate: 23 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BR`, + countryName: `Brazil`, + gdpPerCapita: 9500, + unemploymentRate: 9, + televisions: 36500000, + publicDebt: 45, + population: 196342592, + oilProduction: 1797000, + medianAge: 28, + internetUsers: 50000000, + electricityProduction: 396400, + birthRate: 19 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BG`, + countryName: `Bulgaria`, + gdpPerCapita: 11800, + unemploymentRate: 8, + televisions: 3310000, + publicDebt: 11, + population: 7262675, + oilProduction: 3661, + medianAge: 41, + internetUsers: 1899000, + electricityProduction: 45700, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CM`, + countryName: `Cameroon`, + gdpPerCapita: 2200, + unemploymentRate: 30, + televisions: 450000, + publicDebt: 16, + population: 18467692, + oilProduction: 85300, + medianAge: 19, + internetUsers: 370000, + electricityProduction: 4090, + birthRate: 35 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CA`, + countryName: `Canada`, + gdpPerCapita: 38600, + unemploymentRate: 6, + televisions: 21500000, + publicDebt: 64, + population: 33212696, + oilProduction: 3310000, + medianAge: 40, + internetUsers: 28000000, + electricityProduction: 609600, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CL`, + countryName: `Chile`, + gdpPerCapita: 14300, + unemploymentRate: 7, + televisions: 3150000, + publicDebt: 4, + population: 16454143, + oilProduction: 15100, + medianAge: 31, + internetUsers: 557000, + electricityProduction: 47600, + birthRate: 15 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CN`, + countryName: `China`, + gdpPerCapita: 5400, + unemploymentRate: 4, + televisions: 400000000, + publicDebt: 18, + population: 1330044544, + oilProduction: 3725000, + medianAge: 34, + internetUsers: 253000000, + electricityProduction: 3256000, + birthRate: 14 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CO`, + countryName: `Colombia`, + gdpPerCapita: 7400, + unemploymentRate: 11, + televisions: 4590000, + publicDebt: 53, + population: 45013672, + oilProduction: 531300, + medianAge: 27, + internetUsers: 12100000, + electricityProduction: 50470, + birthRate: 20 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CR`, + countryName: `Costa Rica`, + gdpPerCapita: 11100, + unemploymentRate: 5, + televisions: 525000, + publicDebt: 47, + population: 4195914, + oilProduction: 0, + medianAge: 27, + internetUsers: 1500000, + electricityProduction: 8349, + birthRate: 18 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `IV`, + countryName: `Ivory Coast`, + gdpPerCapita: 1700, + unemploymentRate: 0, + televisions: 1090000, + publicDebt: 75, + population: 20179602, + oilProduction: 48370, + medianAge: 19, + internetUsers: 300000, + electricityProduction: 5305, + birthRate: 33 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `HR`, + countryName: `Croatia`, + gdpPerCapita: 15500, + unemploymentRate: 12, + televisions: 1220000, + publicDebt: 48, + population: 4491543, + oilProduction: 17100, + medianAge: 41, + internetUsers: 1995000, + electricityProduction: 11990, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CU`, + countryName: `Cuba`, + gdpPerCapita: 11000, + unemploymentRate: 2, + televisions: 2640000, + publicDebt: 37, + population: 11423952, + oilProduction: 58300, + medianAge: 37, + internetUsers: 1310000, + electricityProduction: 16450, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CY`, + countryName: `Cyprus`, + gdpPerCapita: 27100, + unemploymentRate: 4, + televisions: 0, + publicDebt: 60, + population: 792604, + oilProduction: 0, + medianAge: 35, + internetUsers: 380000, + electricityProduction: 4618, + birthRate: 13 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CZ`, + countryName: `Czech Republic`, + gdpPerCapita: 24500, + unemploymentRate: 7, + televisions: 3405834, + publicDebt: 26, + population: 10220911, + oilProduction: 18030, + medianAge: 40, + internetUsers: 4400000, + electricityProduction: 77380, + birthRate: 9 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `DK`, + countryName: `Denmark`, + gdpPerCapita: 37200, + unemploymentRate: 3, + televisions: 3121000, + publicDebt: 26, + population: 5484723, + oilProduction: 342000, + medianAge: 40, + internetUsers: 3500000, + electricityProduction: 43350, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `DO`, + countryName: `Dominican Republic`, + gdpPerCapita: 6600, + unemploymentRate: 16, + televisions: 770000, + publicDebt: 41, + population: 9507133, + oilProduction: 12, + medianAge: 25, + internetUsers: 1677000, + electricityProduction: 12220, + birthRate: 23 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `EC`, + countryName: `Ecuador`, + gdpPerCapita: 7200, + unemploymentRate: 9, + televisions: 2500000, + publicDebt: 33, + population: 13927650, + oilProduction: 511100, + medianAge: 24, + internetUsers: 1549000, + electricityProduction: 12940, + birthRate: 22 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `EG`, + countryName: `Egypt`, + gdpPerCapita: 5000, + unemploymentRate: 9, + televisions: 7700000, + publicDebt: 106, + population: 81713520, + oilProduction: 665000, + medianAge: 25, + internetUsers: 8620000, + electricityProduction: 102500, + birthRate: 22 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SV`, + countryName: `El Salvador`, + gdpPerCapita: 6000, + unemploymentRate: 6, + televisions: 600000, + publicDebt: 37, + population: 7066403, + oilProduction: 0, + medianAge: 22, + internetUsers: 700000, + electricityProduction: 5316, + birthRate: 26 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `GQ`, + countryName: `Equatorial Guinea`, + gdpPerCapita: 28200, + unemploymentRate: 30, + televisions: 4000, + publicDebt: 2, + population: 616459, + oilProduction: 385500, + medianAge: 19, + internetUsers: 8000, + electricityProduction: 28, + birthRate: 37 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `EE`, + countryName: `Estonia`, + gdpPerCapita: 21800, + unemploymentRate: 5, + televisions: 605000, + publicDebt: 3, + population: 1307605, + oilProduction: 6930, + medianAge: 40, + internetUsers: 780000, + electricityProduction: 9599, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `ET`, + countryName: `Ethiopia`, + gdpPerCapita: 700, + unemploymentRate: 0, + televisions: 682000, + publicDebt: 45, + population: 82544840, + oilProduction: 7, + medianAge: 17, + internetUsers: 291000, + electricityProduction: 2864, + birthRate: 44 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `FI`, + countryName: `Finland`, + gdpPerCapita: 36000, + unemploymentRate: 7, + televisions: 3200000, + publicDebt: 36, + population: 5244749, + oilProduction: 8951, + medianAge: 42, + internetUsers: 3600000, + electricityProduction: 73470, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `GA`, + countryName: `Gabon`, + gdpPerCapita: 14000, + unemploymentRate: 21, + televisions: 63000, + publicDebt: 53, + population: 1485832, + oilProduction: 240000, + medianAge: 19, + internetUsers: 145000, + electricityProduction: 1520, + birthRate: 36 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `DE`, + countryName: `Germany`, + gdpPerCapita: 34100, + unemploymentRate: 9, + televisions: 51400000, + publicDebt: 65, + population: 82369552, + oilProduction: 141700, + medianAge: 43, + internetUsers: 42500000, + electricityProduction: 579400, + birthRate: 8 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `GH`, + countryName: `Ghana`, + gdpPerCapita: 1400, + unemploymentRate: 11, + televisions: 1900000, + publicDebt: 59, + population: 23382848, + oilProduction: 700, + medianAge: 20, + internetUsers: 650000, + electricityProduction: 7042, + birthRate: 29 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `GI`, + countryName: `Gibraltar`, + gdpPerCapita: 38200, + unemploymentRate: 3, + televisions: 10000, + publicDebt: 16, + population: 28002, + oilProduction: 0, + medianAge: 40, + internetUsers: 6200, + electricityProduction: 141, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `GR`, + countryName: `Greece`, + gdpPerCapita: 30600, + unemploymentRate: 8, + televisions: 2540000, + publicDebt: 90, + population: 10722816, + oilProduction: 5687, + medianAge: 42, + internetUsers: 2540000, + electricityProduction: 56130, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `GT`, + countryName: `Guatemala`, + gdpPerCapita: 5100, + unemploymentRate: 3, + televisions: 1323000, + publicDebt: 21, + population: 13002206, + oilProduction: 13000, + medianAge: 19, + internetUsers: 1320000, + electricityProduction: 7281, + birthRate: 29 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `HN`, + countryName: `Honduras`, + gdpPerCapita: 4300, + unemploymentRate: 28, + televisions: 570000, + publicDebt: 24, + population: 7639327, + oilProduction: 0, + medianAge: 20, + internetUsers: 344100, + electricityProduction: 5339, + birthRate: 27 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `HU`, + countryName: `Hungary`, + gdpPerCapita: 19300, + unemploymentRate: 7, + televisions: 4420000, + publicDebt: 67, + population: 9930915, + oilProduction: 42180, + medianAge: 39, + internetUsers: 4200000, + electricityProduction: 33690, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `IS`, + countryName: `Iceland`, + gdpPerCapita: 40400, + unemploymentRate: 1, + televisions: 98000, + publicDebt: 28, + population: 304367, + oilProduction: 0, + medianAge: 35, + internetUsers: 202300, + electricityProduction: 8533, + birthRate: 14 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `IN`, + countryName: `India`, + gdpPerCapita: 2600, + unemploymentRate: 7, + televisions: 63000000, + publicDebt: 58, + population: 1147995904, + oilProduction: 810000, + medianAge: 25, + internetUsers: 80000000, + electricityProduction: 661600, + birthRate: 22 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `ID`, + countryName: `Indonesia`, + gdpPerCapita: 3600, + unemploymentRate: 9, + televisions: 13750000, + publicDebt: 34, + population: 237512352, + oilProduction: 837500, + medianAge: 27, + internetUsers: 13000000, + electricityProduction: 125900, + birthRate: 19 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `IR`, + countryName: `Iran`, + gdpPerCapita: 11700, + unemploymentRate: 12, + televisions: 4610000, + publicDebt: 17, + population: 65875224, + oilProduction: 3956000, + medianAge: 26, + internetUsers: 23000000, + electricityProduction: 170400, + birthRate: 17 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `IE`, + countryName: `Ireland`, + gdpPerCapita: 46600, + unemploymentRate: 5, + televisions: 1820000, + publicDebt: 25, + population: 4156119, + oilProduction: 0, + medianAge: 35, + internetUsers: 1708000, + electricityProduction: 24130, + birthRate: 14 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `IL`, + countryName: `Israel`, + gdpPerCapita: 26600, + unemploymentRate: 7, + televisions: 1690000, + publicDebt: 81, + population: 7112359, + oilProduction: 100, + medianAge: 29, + internetUsers: 2000000, + electricityProduction: 46850, + birthRate: 20 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `IT`, + countryName: `Italy`, + gdpPerCapita: 30900, + unemploymentRate: 6, + televisions: 30300000, + publicDebt: 104, + population: 58145320, + oilProduction: 164800, + medianAge: 43, + internetUsers: 32000000, + electricityProduction: 278500, + birthRate: 8 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `JM`, + countryName: `Jamaica`, + gdpPerCapita: 7400, + unemploymentRate: 10, + televisions: 460000, + publicDebt: 127, + population: 2804332, + oilProduction: 0, + medianAge: 23, + internetUsers: 1500000, + electricityProduction: 6985, + birthRate: 20 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `JP`, + countryName: `Japan`, + gdpPerCapita: 33500, + unemploymentRate: 4, + televisions: 86500000, + publicDebt: 170, + population: 127288416, + oilProduction: 125000, + medianAge: 44, + internetUsers: 88110000, + electricityProduction: 1025000, + birthRate: 8 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `JO`, + countryName: `Jordan`, + gdpPerCapita: 4700, + unemploymentRate: 14, + televisions: 500000, + publicDebt: 72, + population: 6198677, + oilProduction: 0, + medianAge: 24, + internetUsers: 1127000, + electricityProduction: 9074, + birthRate: 20 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `KZ`, + countryName: `Kazakhstan`, + gdpPerCapita: 11000, + unemploymentRate: 7, + televisions: 3880000, + publicDebt: 8, + population: 15340533, + oilProduction: 1355000, + medianAge: 29, + internetUsers: 1901000, + electricityProduction: 76340, + birthRate: 16 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `KE`, + countryName: `Kenya`, + gdpPerCapita: 1700, + unemploymentRate: 40, + televisions: 730000, + publicDebt: 49, + population: 37953840, + oilProduction: 0, + medianAge: 19, + internetUsers: 3000000, + electricityProduction: 5502, + birthRate: 38 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `KR`, + countryName: `Korea, South`, + gdpPerCapita: 25000, + unemploymentRate: 3, + televisions: 15900000, + publicDebt: 28, + population: 48379392, + oilProduction: 17050, + medianAge: 37, + internetUsers: 35590000, + electricityProduction: 403200, + birthRate: 9 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `KW`, + countryName: `Kuwait`, + gdpPerCapita: 55900, + unemploymentRate: 2, + televisions: 875000, + publicDebt: 10, + population: 2596799, + oilProduction: 2440000, + medianAge: 26, + internetUsers: 900000, + electricityProduction: 41110, + birthRate: 22 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `LV`, + countryName: `Latvia`, + gdpPerCapita: 17700, + unemploymentRate: 6, + televisions: 1220000, + publicDebt: 7, + population: 2245423, + oilProduction: 0, + medianAge: 40, + internetUsers: 1770000, + electricityProduction: 4778, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `LB`, + countryName: `Lebanon`, + gdpPerCapita: 10300, + unemploymentRate: 20, + televisions: 1180000, + publicDebt: 187, + population: 3971941, + oilProduction: 0, + medianAge: 29, + internetUsers: 950000, + electricityProduction: 9183, + birthRate: 18 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `LY`, + countryName: `Libya`, + gdpPerCapita: 12400, + unemploymentRate: 30, + televisions: 730000, + publicDebt: 5, + population: 6173579, + oilProduction: 1712000, + medianAge: 24, + internetUsers: 260000, + electricityProduction: 21150, + birthRate: 26 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `LT`, + countryName: `Lithuania`, + gdpPerCapita: 16800, + unemploymentRate: 4, + televisions: 1700000, + publicDebt: 17, + population: 3565205, + oilProduction: 13160, + medianAge: 39, + internetUsers: 1330000, + electricityProduction: 13480, + birthRate: 9 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `LU`, + countryName: `Luxembourg`, + gdpPerCapita: 79400, + unemploymentRate: 4, + televisions: 285000, + publicDebt: 6, + population: 486006, + oilProduction: 0, + medianAge: 39, + internetUsers: 345000, + electricityProduction: 3156, + birthRate: 12 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `MK`, + countryName: `Macedonia`, + gdpPerCapita: 8400, + unemploymentRate: 35, + televisions: 510000, + publicDebt: 31, + population: 2061315, + oilProduction: 0, + medianAge: 35, + internetUsers: 685000, + electricityProduction: 6051, + birthRate: 12 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `MW`, + countryName: `Malawi`, + gdpPerCapita: 800, + unemploymentRate: 0, + televisions: 0, + publicDebt: 51, + population: 13931831, + oilProduction: 0, + medianAge: 17, + internetUsers: 139500, + electricityProduction: 1397, + birthRate: 42 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `MY`, + countryName: `Malaysia`, + gdpPerCapita: 14500, + unemploymentRate: 3, + televisions: 10800000, + publicDebt: 42, + population: 25274132, + oilProduction: 757500, + medianAge: 25, + internetUsers: 15868000, + electricityProduction: 82360, + birthRate: 22 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `MU`, + countryName: `Mauritius`, + gdpPerCapita: 11300, + unemploymentRate: 9, + televisions: 258000, + publicDebt: 63, + population: 1274189, + oilProduction: 0, + medianAge: 32, + internetUsers: 340000, + electricityProduction: 2350, + birthRate: 15 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `MX`, + countryName: `Mexico`, + gdpPerCapita: 12400, + unemploymentRate: 4, + televisions: 25600000, + publicDebt: 23, + population: 109955400, + oilProduction: 3083000, + medianAge: 26, + internetUsers: 22812000, + electricityProduction: 222400, + birthRate: 20 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `MD`, + countryName: `Moldova`, + gdpPerCapita: 2300, + unemploymentRate: 2, + televisions: 1260000, + publicDebt: 23, + population: 4324450, + oilProduction: 0, + medianAge: 34, + internetUsers: 700000, + electricityProduction: 3881, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `MA`, + countryName: `Morocco`, + gdpPerCapita: 3700, + unemploymentRate: 10, + televisions: 3100000, + publicDebt: 67, + population: 34343220, + oilProduction: 300, + medianAge: 25, + internetUsers: 7300000, + electricityProduction: 21370, + birthRate: 21 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `MZ`, + countryName: `Mozambique`, + gdpPerCapita: 800, + unemploymentRate: 21, + televisions: 67600, + publicDebt: 22, + population: 21284700, + oilProduction: 0, + medianAge: 17, + internetUsers: 200000, + electricityProduction: 13170, + birthRate: 38 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `NA`, + countryName: `Namibia`, + gdpPerCapita: 5200, + unemploymentRate: 5, + televisions: 60000, + publicDebt: 22, + population: 2088669, + oilProduction: 0, + medianAge: 21, + internetUsers: 101000, + electricityProduction: 1688, + birthRate: 23 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `NL`, + countryName: `Netherlands`, + gdpPerCapita: 39000, + unemploymentRate: 5, + televisions: 8100000, + publicDebt: 46, + population: 16645313, + oilProduction: 76000, + medianAge: 40, + internetUsers: 15000000, + electricityProduction: 94340, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `NZ`, + countryName: `New Zealand`, + gdpPerCapita: 27200, + unemploymentRate: 4, + televisions: 1926000, + publicDebt: 21, + population: 4173460, + oilProduction: 25880, + medianAge: 36, + internetUsers: 3360000, + electricityProduction: 42060, + birthRate: 14 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `NI`, + countryName: `Nicaragua`, + gdpPerCapita: 2800, + unemploymentRate: 5, + televisions: 320000, + publicDebt: 63, + population: 5785846, + oilProduction: 0, + medianAge: 22, + internetUsers: 155000, + electricityProduction: 2778, + birthRate: 24 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `NG`, + countryName: `Nigeria`, + gdpPerCapita: 2100, + unemploymentRate: 5, + televisions: 6900000, + publicDebt: 14, + population: 146255312, + oilProduction: 2166000, + medianAge: 19, + internetUsers: 10000000, + electricityProduction: 22530, + birthRate: 37 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `NO`, + countryName: `Norway`, + gdpPerCapita: 53300, + unemploymentRate: 3, + televisions: 2030000, + publicDebt: 83, + population: 4644457, + oilProduction: 2560000, + medianAge: 39, + internetUsers: 3800000, + electricityProduction: 135800, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `OM`, + countryName: `Oman`, + gdpPerCapita: 1900, + unemploymentRate: 15, + televisions: 1600000, + publicDebt: 4, + population: 3311640, + oilProduction: 710800, + medianAge: 19, + internetUsers: 340000, + electricityProduction: 11890, + birthRate: 35 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `PK`, + countryName: `Pakistan`, + gdpPerCapita: 2400, + unemploymentRate: 6, + televisions: 3100000, + publicDebt: 51, + population: 172800048, + oilProduction: 62000, + medianAge: 21, + internetUsers: 17500000, + electricityProduction: 89820, + birthRate: 28 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `PA`, + countryName: `Panama`, + gdpPerCapita: 10700, + unemploymentRate: 6, + televisions: 510000, + publicDebt: 53, + population: 3309679, + oilProduction: 0, + medianAge: 27, + internetUsers: 525200, + electricityProduction: 5661, + birthRate: 21 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `PG`, + countryName: `Papua New Guinea`, + gdpPerCapita: 2100, + unemploymentRate: 2, + televisions: 59841, + publicDebt: 40, + population: 5931769, + oilProduction: 47800, + medianAge: 22, + internetUsers: 110000, + electricityProduction: 3698, + birthRate: 28 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `PY`, + countryName: `Paraguay`, + gdpPerCapita: 4000, + unemploymentRate: 6, + televisions: 990000, + publicDebt: 27, + population: 6831306, + oilProduction: 0, + medianAge: 22, + internetUsers: 280000, + electricityProduction: 70000, + birthRate: 28 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `PE`, + countryName: `Peru`, + gdpPerCapita: 7600, + unemploymentRate: 7, + televisions: 3060000, + publicDebt: 29, + population: 29180900, + oilProduction: 119000, + medianAge: 26, + internetUsers: 7636000, + electricityProduction: 24970, + birthRate: 20 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `PH`, + countryName: `Philippines`, + gdpPerCapita: 3200, + unemploymentRate: 7, + televisions: 3700000, + publicDebt: 56, + population: 96061680, + oilProduction: 0, + medianAge: 22, + internetUsers: 5300000, + electricityProduction: 53670, + birthRate: 26 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `PL`, + countryName: `Poland`, + gdpPerCapita: 16200, + unemploymentRate: 13, + televisions: 13050000, + publicDebt: 43, + population: 38500696, + oilProduction: 0, + medianAge: 38, + internetUsers: 16000000, + electricityProduction: 146200, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `PT`, + countryName: `Portugal`, + gdpPerCapita: 21800, + unemploymentRate: 8, + televisions: 3310000, + publicDebt: 64, + population: 10676910, + oilProduction: 9500, + medianAge: 39, + internetUsers: 3549000, + electricityProduction: 49040, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `QA`, + countryName: `Qatar`, + gdpPerCapita: 87600, + unemploymentRate: 1, + televisions: 230000, + publicDebt: 11, + population: 824789, + oilProduction: 797500, + medianAge: 31, + internetUsers: 351000, + electricityProduction: 13540, + birthRate: 16 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `RO`, + countryName: `Romania`, + gdpPerCapita: 11100, + unemploymentRate: 4, + televisions: 5250000, + publicDebt: 13, + population: 22246862, + oilProduction: 115000, + medianAge: 37, + internetUsers: 12000000, + electricityProduction: 60520, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `RU`, + countryName: `Russia`, + gdpPerCapita: 14800, + unemploymentRate: 6, + televisions: 60500000, + publicDebt: 6, + population: 140702096, + oilProduction: 9870000, + medianAge: 38, + internetUsers: 30000000, + electricityProduction: 1000000, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SA`, + countryName: `Saudi Arabia`, + gdpPerCapita: 19800, + unemploymentRate: 13, + televisions: 5100000, + publicDebt: 24, + population: 28146656, + oilProduction: 11000000, + medianAge: 22, + internetUsers: 6200000, + electricityProduction: 165600, + birthRate: 29 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SN`, + countryName: `Senegal`, + gdpPerCapita: 1700, + unemploymentRate: 48, + televisions: 361000, + publicDebt: 23, + population: 12853259, + oilProduction: 0, + medianAge: 19, + internetUsers: 820000, + electricityProduction: 2159, + birthRate: 37 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SC`, + countryName: `Seychelles`, + gdpPerCapita: 16600, + unemploymentRate: 2, + televisions: 11000, + publicDebt: 92, + population: 82247, + oilProduction: 0, + medianAge: 29, + internetUsers: 32000, + electricityProduction: 252, + birthRate: 16 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SG`, + countryName: `Singapore`, + gdpPerCapita: 49900, + unemploymentRate: 2, + televisions: 1330000, + publicDebt: 96, + population: 4608167, + oilProduction: 9836, + medianAge: 38, + internetUsers: 3105000, + electricityProduction: 39440, + birthRate: 9 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SK`, + countryName: `Slovakia`, + gdpPerCapita: 20200, + unemploymentRate: 8, + televisions: 2620000, + publicDebt: 36, + population: 5455407, + oilProduction: 12840, + medianAge: 37, + internetUsers: 2350000, + electricityProduction: 29890, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SI`, + countryName: `Slovenia`, + gdpPerCapita: 28000, + unemploymentRate: 8, + televisions: 710000, + publicDebt: 24, + population: 2007711, + oilProduction: 5, + medianAge: 41, + internetUsers: 1300000, + electricityProduction: 14900, + birthRate: 9 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `ZA`, + countryName: `South Africa`, + gdpPerCapita: 9700, + unemploymentRate: 24, + televisions: 6000000, + publicDebt: 31, + population: 48782756, + oilProduction: 200000, + medianAge: 24, + internetUsers: 5100000, + electricityProduction: 264000, + birthRate: 20 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `ES`, + countryName: `Spain`, + gdpPerCapita: 33600, + unemploymentRate: 8, + televisions: 16200000, + publicDebt: 36, + population: 40491052, + oilProduction: 29350, + medianAge: 41, + internetUsers: 19690000, + electricityProduction: 270300, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `LK`, + countryName: `Sri Lanka`, + gdpPerCapita: 4000, + unemploymentRate: 6, + televisions: 1530000, + publicDebt: 86, + population: 21128772, + oilProduction: 0, + medianAge: 30, + internetUsers: 771700, + electricityProduction: 8411, + birthRate: 17 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SD`, + countryName: `Sudan`, + gdpPerCapita: 1900, + unemploymentRate: 19, + televisions: 2380000, + publicDebt: 106, + population: 40218456, + oilProduction: 484500, + medianAge: 19, + internetUsers: 1500000, + electricityProduction: 3944, + birthRate: 34 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SE`, + countryName: `Sweden`, + gdpPerCapita: 37500, + unemploymentRate: 6, + televisions: 4600000, + publicDebt: 42, + population: 9045389, + oilProduction: 2350, + medianAge: 41, + internetUsers: 7000000, + electricityProduction: 153200, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CH`, + countryName: `Switzerland`, + gdpPerCapita: 40100, + unemploymentRate: 3, + televisions: 3310000, + publicDebt: 44, + population: 7581520, + oilProduction: 3202, + medianAge: 41, + internetUsers: 4610000, + electricityProduction: 56100, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SY`, + countryName: `Syria`, + gdpPerCapita: 4700, + unemploymentRate: 9, + televisions: 1050000, + publicDebt: 38, + population: 19747586, + oilProduction: 379000, + medianAge: 21, + internetUsers: 3470000, + electricityProduction: 153200, + birthRate: 27 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `TW`, + countryName: `Taiwan`, + gdpPerCapita: 30100, + unemploymentRate: 4, + televisions: 8800000, + publicDebt: 28, + population: 22920946, + oilProduction: 600, + medianAge: 36, + internetUsers: 14760000, + electricityProduction: 235000, + birthRate: 9 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `TZ`, + countryName: `Tanzania`, + gdpPerCapita: 1300, + unemploymentRate: 0, + televisions: 103000, + publicDebt: 20, + population: 40213160, + oilProduction: 0, + medianAge: 18, + internetUsers: 400000, + electricityProduction: 1880, + birthRate: 35 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `TH`, + countryName: `Thailand`, + gdpPerCapita: 8000, + unemploymentRate: 1, + televisions: 15190000, + publicDebt: 38, + population: 65493296, + oilProduction: 310000, + medianAge: 33, + internetUsers: 13416000, + electricityProduction: 124600, + birthRate: 14 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `TN`, + countryName: `Tunisia`, + gdpPerCapita: 7400, + unemploymentRate: 14, + televisions: 920000, + publicDebt: 55, + population: 10383577, + oilProduction: 76900, + medianAge: 29, + internetUsers: 1722000, + electricityProduction: 12850, + birthRate: 16 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `TR`, + countryName: `Turkey`, + gdpPerCapita: 12000, + unemploymentRate: 10, + televisions: 20900000, + publicDebt: 39, + population: 71892808, + oilProduction: 45460, + medianAge: 29, + internetUsers: 13150000, + electricityProduction: 154200, + birthRate: 16 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `UG`, + countryName: `Uganda`, + gdpPerCapita: 1000, + unemploymentRate: 0, + televisions: 500000, + publicDebt: 21, + population: 31367972, + oilProduction: 0, + medianAge: 15, + internetUsers: 2000000, + electricityProduction: 1983, + birthRate: 48 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `UA`, + countryName: `Ukraine`, + gdpPerCapita: 7000, + unemploymentRate: 2, + televisions: 18050000, + publicDebt: 12, + population: 45994288, + oilProduction: 90400, + medianAge: 39, + internetUsers: 10000000, + electricityProduction: 192100, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `AE`, + countryName: `United Arab Emirates`, + gdpPerCapita: 37000, + unemploymentRate: 2, + televisions: 310000, + publicDebt: 21, + population: 4621399, + oilProduction: 2510000, + medianAge: 30, + internetUsers: 2300000, + electricityProduction: 57060, + birthRate: 16 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `UK`, + countryName: `United Kingdom`, + gdpPerCapita: 35000, + unemploymentRate: 5, + televisions: 30500000, + publicDebt: 44, + population: 60943912, + oilProduction: 1636000, + medianAge: 40, + internetUsers: 40200000, + electricityProduction: 372600, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `US`, + countryName: `United States`, + gdpPerCapita: 45800, + unemploymentRate: 5, + televisions: 219000000, + publicDebt: 61, + population: 303824640, + oilProduction: 7460000, + medianAge: 37, + internetUsers: 223000000, + electricityProduction: 4062000, + birthRate: 14 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `UY`, + countryName: `Uruguay`, + gdpPerCapita: 10800, + unemploymentRate: 9, + televisions: 782000, + publicDebt: 65, + population: 3477778, + oilProduction: 27830, + medianAge: 33, + internetUsers: 968000, + electricityProduction: 9200, + birthRate: 14 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `UZ`, + countryName: `Uzbekistan`, + gdpPerCapita: 2400, + unemploymentRate: 1, + televisions: 6400000, + publicDebt: 19, + population: 27345026, + oilProduction: 109400, + medianAge: 24, + internetUsers: 1200000, + electricityProduction: 49000, + birthRate: 18 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `VE`, + countryName: `Venezuela`, + gdpPerCapita: 12800, + unemploymentRate: 9, + televisions: 4100000, + publicDebt: 19, + population: 26414816, + oilProduction: 2398000, + medianAge: 25, + internetUsers: 5720000, + electricityProduction: 99200, + birthRate: 21 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `VN`, + countryName: `Vietnam`, + gdpPerCapita: 2600, + unemploymentRate: 4, + televisions: 3570000, + publicDebt: 42, + population: 86116560, + oilProduction: 324000, + medianAge: 27, + internetUsers: 17870000, + electricityProduction: 59010, + birthRate: 16 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `WF`, + countryName: `Wallis and Futuna`, + gdpPerCapita: 3800, + unemploymentRate: 15, + televisions: 0, + publicDebt: 6, + population: 15237, + oilProduction: 0, + medianAge: 0, + internetUsers: 900, + electricityProduction: 0, + birthRate: 0 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `YE`, + countryName: `Yemen`, + gdpPerCapita: 2500, + unemploymentRate: 35, + televisions: 470000, + publicDebt: 34, + population: 23013376, + oilProduction: 339200, + medianAge: 17, + internetUsers: 320000, + electricityProduction: 4456, + birthRate: 42 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `ZM`, + countryName: `Zambia`, + gdpPerCapita: 1400, + unemploymentRate: 50, + televisions: 277000, + publicDebt: 28, + population: 11669534, + oilProduction: 150, + medianAge: 17, + internetUsers: 500000, + electricityProduction: 8850, + birthRate: 41 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `ZW`, + countryName: `Zimbabwe`, + gdpPerCapita: 200, + unemploymentRate: 80, + televisions: 370000, + publicDebt: 218, + population: 11350111, + oilProduction: 0, + medianAge: 18, + internetUsers: 1351000, + electricityProduction: 9950, + birthRate: 32 + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html new file mode 100644 index 000000000..8ef10c444 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html @@ -0,0 +1,73 @@ +
+
+ + + + + + +
+
+ + + + + + + + +
+
diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.scss b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts new file mode 100644 index 000000000..8621fb96e --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts @@ -0,0 +1,112 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, NumberAbbreviatorDescriptionModule, DataChartCoreDescriptionModule, DataChartScatterDescriptionModule, DataChartScatterCoreDescriptionModule, DataChartInteractivityDescriptionModule, DataChartAnnotationDescriptionModule, PropertyEditorPanelDescriptionModule } from 'igniteui-angular-core'; +import { WorldDebtAndPopulationItem, WorldDebtAndPopulation } from './WorldDebtAndPopulation'; +import { IgxPropertyEditorPropertyDescriptionChangedEventArgs, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxBubbleSeriesComponent } from 'igniteui-angular-charts'; +import { EnumUtil } from 'igniteui-angular-core'; +import { IgxPropertyEditorPanelComponent } from 'igniteui-angular-layouts'; +import { IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxSizeScaleComponent, IgxValueBrushScaleComponent } from 'igniteui-angular-charts'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("fillScaleMinimumValueEditor", { static: true } ) + private fillScaleMinimumValueEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("fillScaleMaximumValueEditor", { static: true } ) + private fillScaleMaximumValueEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("bubbleSeries1", { static: true } ) + private bubbleSeries1: IgxBubbleSeriesComponent + private _sizeScale1: IgxSizeScaleComponent | null = null; + public get sizeScale1(): IgxSizeScaleComponent { + if (this._sizeScale1 == null) + { + var sizeScale1 = new IgxSizeScaleComponent(); + sizeScale1.isLogarithmic = false; + sizeScale1.minimumValue = 10; + sizeScale1.maximumValue = 120; + + this._sizeScale1 = sizeScale1; + } + return this._sizeScale1; + } + private _valueBrushScale1: IgxValueBrushScaleComponent | null = null; + public get valueBrushScale1(): IgxValueBrushScaleComponent { + if (this._valueBrushScale1 == null) + { + var valueBrushScale1 = new IgxValueBrushScaleComponent(); + valueBrushScale1.isLogarithmic = false; + valueBrushScale1.minimumValue = 0; + valueBrushScale1.maximumValue = 100000; + valueBrushScale1.brushes = "rgba(26, 161, 226, 1) rgba(24, 154, 217, 1) rgba(22, 146, 206, 1) rgba(19, 133, 188, 1) rgba(15, 121, 171, 1) rgba(12, 107, 153, 1) rgba(9, 94, 136, 1) rgba(5, 82, 119, 1) rgba(2, 70, 105, 1) rgba(0, 63, 94, 1)"; + + this._valueBrushScale1 = valueBrushScale1; + } + return this._valueBrushScale1; + } + private _worldDebtAndPopulation: WorldDebtAndPopulation = null; + public get worldDebtAndPopulation(): WorldDebtAndPopulation { + if (this._worldDebtAndPopulation == null) + { + this._worldDebtAndPopulation = new WorldDebtAndPopulation(); + } + return this._worldDebtAndPopulation; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + NumberAbbreviatorDescriptionModule.register(context); + DataChartCoreDescriptionModule.register(context); + DataChartScatterDescriptionModule.register(context); + DataChartScatterCoreDescriptionModule.register(context); + DataChartInteractivityDescriptionModule.register(context); + DataChartAnnotationDescriptionModule.register(context); + PropertyEditorPanelDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + + public scatterBubbleSeriesFillScaleSliderChanged({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { + let series: IgxBubbleSeriesComponent = this.chart.actualSeries[0] as IgxBubbleSeriesComponent; + + let fillScale = (series.fillScale as any); + + if(args.newValue >= 25000){ + fillScale.maximumValue = args.newValue; + } + else{ + fillScale.minimumValue = args.newValue; + } + } + +} + diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.module.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.module.ts new file mode 100644 index 000000000..47d634286 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.module.ts @@ -0,0 +1,32 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxNumberAbbreviatorModule, IgxDataChartCoreModule, IgxDataChartScatterModule, IgxDataChartScatterCoreModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule } from 'igniteui-angular-charts'; +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxNumberAbbreviatorModule, + IgxDataChartCoreModule, + IgxDataChartScatterModule, + IgxDataChartScatterCoreModule, + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule, + IgxPropertyEditorPanelModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.app.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.base.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.spec.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.worker.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/environments/environment.prod.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/environments/environment.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/index.html b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/main.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/polyfills.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/styles.scss b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/typings.d.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tslint.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index b8207a98b..f2b27864d 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsAfrica.ts b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsAfrica.ts index e9c3510a6..cf0f8cd80 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsAfrica.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsAfrica.ts @@ -2,7 +2,7 @@ export class CountryStatsAfricaItem { public constructor(init: Partial) { Object.assign(this, init); } - + public code: string; public population: number; public workedHours: number; @@ -11,247 +11,421 @@ export class CountryStatsAfricaItem { } export class CountryStatsAfrica extends Array { - public constructor() { - super(); - this.push(new CountryStatsAfricaItem( - { - code: `DZA`, - population: 39728000, - workedHours: 47.5, - gDP: 13725, - name: `Algeria` - })); - this.push(new CountryStatsAfricaItem( - { - code: `AGO`, - population: 27884000, - workedHours: 39.8, - gDP: 6228, - name: `Angola` - })); - this.push(new CountryStatsAfricaItem( - { - code: `BEN`, - population: 10576000, - workedHours: 43.7, - gDP: 1987, - name: `Benin` - })); - this.push(new CountryStatsAfricaItem( - { - code: `BWA`, - population: 2121000, - workedHours: 41.2, - gDP: 15357, - name: `Botswana` - })); - this.push(new CountryStatsAfricaItem( - { - code: `BFA`, - population: 18111000, - workedHours: 39.3, - gDP: 1596, - name: `Burkina Faso` - })); - this.push(new CountryStatsAfricaItem( - { - code: `BDI`, - population: 10160000, - workedHours: 36.4, - gDP: 748, - name: `Burundi` - })); - this.push(new CountryStatsAfricaItem( - { - code: `CMR`, - population: 23298000, - workedHours: 42, - gDP: 3289, - name: `Cameroon` - })); - this.push(new CountryStatsAfricaItem( - { - code: `CPV`, - population: 525000, - workedHours: 45, - gDP: 5915, - name: `Cape Verde` - })); - this.push(new CountryStatsAfricaItem( - { - code: `CAF`, - population: 4493000, - workedHours: 38, - gDP: 622, - name: `C.A.R` - })); - this.push(new CountryStatsAfricaItem( - { - code: `TCD`, - population: 14111000, - workedHours: 40.4, - gDP: 2067, - name: `Chad` - })); - this.push(new CountryStatsAfricaItem( - { - code: `COM`, - population: 777000, - workedHours: 40.1, - gDP: 1413, - name: `Comoros` - })); - this.push(new CountryStatsAfricaItem( - { - code: `COG`, - population: 4856000, - workedHours: 38.1, - gDP: 5543, - name: `Congo` - })); - this.push(new CountryStatsAfricaItem( - { - code: `CIV`, - population: 23226000, - workedHours: 39.7, - gDP: 3242, - name: `Cote Ivoire` - })); - this.push(new CountryStatsAfricaItem( - { - code: `COD`, - population: 76245000, - workedHours: 44, - gDP: 812, - name: `DRC` - })); - this.push(new CountryStatsAfricaItem( - { - code: `EGY`, - population: 92443000, - workedHours: 39.7, - gDP: 10096, - name: `Egypt` - })); - this.push(new CountryStatsAfricaItem( - { - code: `GNQ`, - population: 1169000, - workedHours: 38.8, - gDP: 27554, - name: `Equatorial Guinea` - })); - this.push(new CountryStatsAfricaItem( - { - code: `SWZ`, - population: 1104000, - workedHours: 45.7, - gDP: 7759, - name: `Eswatini` - })); - this.push(new CountryStatsAfricaItem( - { - code: `ETH`, - population: 101000000, - workedHours: 40.1, - gDP: 1533, - name: `Ethiopia` - })); - this.push(new CountryStatsAfricaItem( - { - code: `GAB`, - population: 1948000, - workedHours: 40.5, - gDP: 16837, - name: `Gabon` - })); - this.push(new CountryStatsAfricaItem( - { - code: `GMB`, - population: 2086000, - workedHours: 40.3, - gDP: 1568, - name: `Gambia` - })); - this.push(new CountryStatsAfricaItem( - { - code: `GHA`, - population: 27849000, - workedHours: 47.6, - gDP: 3927, - name: `Ghana` - })); - this.push(new CountryStatsAfricaItem( - { - code: `GIN`, - population: 11432000, - workedHours: 43.4, - gDP: 1758, - name: `Guinea` - })); - this.push(new CountryStatsAfricaItem( - { - code: `GNB`, - population: 1737000, - workedHours: 35.1, - gDP: 1446, - name: `Guinea-Bissau` - })); - this.push(new CountryStatsAfricaItem( - { - code: `KEN`, - population: 47878000, - workedHours: 43.9, - gDP: 2836, - name: `Kenya` - })); - this.push(new CountryStatsAfricaItem( - { - code: `LSO`, - population: 2059000, - workedHours: 47.6, - gDP: 2708, - name: `Lesotho` - })); - this.push(new CountryStatsAfricaItem( - { - code: `LBR`, - population: 4472000, - workedHours: 40.3, - gDP: 785, - name: `Liberia` - })); - this.push(new CountryStatsAfricaItem( - { - code: `LBY`, - population: 6418000, - workedHours: 42.5, - gDP: 14847, - name: `Libya` - })); - this.push(new CountryStatsAfricaItem( - { - code: `MDG`, - population: 24234000, - workedHours: 40.8, - gDP: 1377, - name: `Madagascar` - })); - this.push(new CountryStatsAfricaItem( - { - code: `MWI`, - population: 16745000, - workedHours: 44.5, - gDP: 1089, - name: `Malawi` - })); - this.push(new CountryStatsAfricaItem( - { - code: `MLI`, - population: 17439000, - workedHours: 40.6, - gDP: 1919, - name: `Mali` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryStatsAfricaItem( + { + code: `DZA`, + population: 39728000, + workedHours: 47.5, + gDP: 13725, + name: `Algeria` + }), + new CountryStatsAfricaItem( + { + code: `AGO`, + population: 27884000, + workedHours: 39.8, + gDP: 6228, + name: `Angola` + }), + new CountryStatsAfricaItem( + { + code: `BEN`, + population: 10576000, + workedHours: 43.7, + gDP: 1987, + name: `Benin` + }), + new CountryStatsAfricaItem( + { + code: `BWA`, + population: 2121000, + workedHours: 41.2, + gDP: 15357, + name: `Botswana` + }), + new CountryStatsAfricaItem( + { + code: `BFA`, + population: 18111000, + workedHours: 39.3, + gDP: 1596, + name: `Burkina Faso` + }), + new CountryStatsAfricaItem( + { + code: `BDI`, + population: 10160000, + workedHours: 36.4, + gDP: 748, + name: `Burundi` + }), + new CountryStatsAfricaItem( + { + code: `CMR`, + population: 23298000, + workedHours: 42, + gDP: 3289, + name: `Cameroon` + }), + new CountryStatsAfricaItem( + { + code: `CPV`, + population: 525000, + workedHours: 45, + gDP: 5915, + name: `Cape Verde` + }), + new CountryStatsAfricaItem( + { + code: `CAF`, + population: 4493000, + workedHours: 38, + gDP: 622, + name: `Central African Republic` + }), + new CountryStatsAfricaItem( + { + code: `TCD`, + population: 14111000, + workedHours: 40.4, + gDP: 2067, + name: `Chad` + }), + new CountryStatsAfricaItem( + { + code: `COM`, + population: 777000, + workedHours: 40.1, + gDP: 1413, + name: `Comoros` + }), + new CountryStatsAfricaItem( + { + code: `COG`, + population: 4856000, + workedHours: 38.1, + gDP: 5543, + name: `Congo` + }), + new CountryStatsAfricaItem( + { + code: `CIV`, + population: 23226000, + workedHours: 39.7, + gDP: 3242, + name: `Cote Ivoire` + }), + new CountryStatsAfricaItem( + { + code: `COD`, + population: 76245000, + workedHours: 44, + gDP: 812, + name: `Democratic Republic of Congo` + }), + new CountryStatsAfricaItem( + { + code: `EGY`, + population: 92443000, + workedHours: 39.7, + gDP: 10096, + name: `Egypt` + }), + new CountryStatsAfricaItem( + { + code: `GNQ`, + population: 1169000, + workedHours: 38.8, + gDP: 27554, + name: `Equatorial Guinea` + }), + new CountryStatsAfricaItem( + { + code: `SWZ`, + population: 1104000, + workedHours: 45.7, + gDP: 7759, + name: `Eswatini` + }), + new CountryStatsAfricaItem( + { + code: `ETH`, + population: 101000000, + workedHours: 40.1, + gDP: 1533, + name: `Ethiopia` + }), + new CountryStatsAfricaItem( + { + code: `GAB`, + population: 1948000, + workedHours: 40.5, + gDP: 16837, + name: `Gabon` + }), + new CountryStatsAfricaItem( + { + code: `GMB`, + population: 2086000, + workedHours: 40.3, + gDP: 1568, + name: `Gambia` + }), + new CountryStatsAfricaItem( + { + code: `GHA`, + population: 27849000, + workedHours: 47.6, + gDP: 3927, + name: `Ghana` + }), + new CountryStatsAfricaItem( + { + code: `GIN`, + population: 11432000, + workedHours: 43.4, + gDP: 1758, + name: `Guinea` + }), + new CountryStatsAfricaItem( + { + code: `GNB`, + population: 1737000, + workedHours: 35.1, + gDP: 1446, + name: `Guinea-Bissau` + }), + new CountryStatsAfricaItem( + { + code: `KEN`, + population: 47878000, + workedHours: 43.9, + gDP: 2836, + name: `Kenya` + }), + new CountryStatsAfricaItem( + { + code: `LSO`, + population: 2059000, + workedHours: 47.6, + gDP: 2708, + name: `Lesotho` + }), + new CountryStatsAfricaItem( + { + code: `LBR`, + population: 4472000, + workedHours: 40.3, + gDP: 785, + name: `Liberia` + }), + new CountryStatsAfricaItem( + { + code: `LBY`, + population: 6418000, + workedHours: 42.5, + gDP: 14847, + name: `Libya` + }), + new CountryStatsAfricaItem( + { + code: `MDG`, + population: 24234000, + workedHours: 40.8, + gDP: 1377, + name: `Madagascar` + }), + new CountryStatsAfricaItem( + { + code: `MWI`, + population: 16745000, + workedHours: 44.5, + gDP: 1089, + name: `Malawi` + }), + new CountryStatsAfricaItem( + { + code: `MLI`, + population: 17439000, + workedHours: 40.6, + gDP: 1919, + name: `Mali` + }), + new CountryStatsAfricaItem( + { + code: `MRT`, + population: 4046000, + workedHours: 45.9, + gDP: 3602, + name: `Mauritania` + }), + new CountryStatsAfricaItem( + { + code: `MUS`, + population: 1259000, + workedHours: 44.4, + gDP: 18864, + name: `Mauritius` + }), + new CountryStatsAfricaItem( + { + code: `MAR`, + population: 34664000, + workedHours: 39.6, + gDP: 7297, + name: `Morocco` + }), + new CountryStatsAfricaItem( + { + code: `MOZ`, + population: 27042000, + workedHours: 46.7, + gDP: 1118, + name: `Mozambique` + }), + new CountryStatsAfricaItem( + { + code: `NAM`, + population: 2315000, + workedHours: 43.1, + gDP: 9975, + name: `Namibia` + }), + new CountryStatsAfricaItem( + { + code: `NER`, + population: 20002000, + workedHours: 45, + gDP: 908, + name: `Niger` + }), + new CountryStatsAfricaItem( + { + code: `NGA`, + population: 181000000, + workedHours: 32.76, + gDP: 5671, + name: `Nigeria` + }), + new CountryStatsAfricaItem( + { + code: `RWA`, + population: 11369000, + workedHours: 46.3, + gDP: 1731, + name: `Rwanda` + }), + new CountryStatsAfricaItem( + { + code: `STP`, + population: 199000, + workedHours: 38.2, + gDP: 2948, + name: `Sao Tome` + }), + new CountryStatsAfricaItem( + { + code: `SEN`, + population: 14578000, + workedHours: 46.8, + gDP: 2294, + name: `Senegal` + }), + new CountryStatsAfricaItem( + { + code: `SYC`, + population: 95000, + workedHours: 39.8, + gDP: 24857, + name: `Seychelles` + }), + new CountryStatsAfricaItem( + { + code: `SLE`, + population: 7172000, + workedHours: 35.4, + gDP: 1314, + name: `Sierra Leone` + }), + new CountryStatsAfricaItem( + { + code: `ZAF`, + population: 55386000, + workedHours: 42.48, + gDP: 12378, + name: `South Africa` + }), + new CountryStatsAfricaItem( + { + code: `SSD`, + population: 10716000, + workedHours: 39.3, + gDP: 1875, + name: `South Sudan` + }), + new CountryStatsAfricaItem( + { + code: `SDN`, + population: 38903000, + workedHours: 36.3, + gDP: 4290, + name: `Sudan` + }), + new CountryStatsAfricaItem( + { + code: `TZA`, + population: 51483000, + workedHours: 38, + gDP: 2491, + name: `Tanzania` + }), + new CountryStatsAfricaItem( + { + code: `TGO`, + population: 7323000, + workedHours: 38.8, + gDP: 1351, + name: `Togo` + }), + new CountryStatsAfricaItem( + { + code: `TUN`, + population: 11180000, + workedHours: 35.2, + gDP: 10766, + name: `Tunisia` + }), + new CountryStatsAfricaItem( + { + code: `UGA`, + population: 38225000, + workedHours: 38.6, + gDP: 1666, + name: `Uganda` + }), + new CountryStatsAfricaItem( + { + code: `ZMB`, + population: 15879000, + workedHours: 46.6, + gDP: 3627, + name: `Zambia` + }), + new CountryStatsAfricaItem( + { + code: `ZWE`, + population: 13815000, + workedHours: 41.4, + gDP: 1912, + name: `Zimbabwe` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsEurope.ts b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsEurope.ts index d49d40fe1..1a6694629 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsEurope.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsEurope.ts @@ -2,7 +2,7 @@ export class CountryStatsEuropeItem { public constructor(init: Partial) { Object.assign(this, init); } - + public code: string; public population: number; public workedHours: number; @@ -11,247 +11,341 @@ export class CountryStatsEuropeItem { } export class CountryStatsEurope extends Array { - public constructor() { - super(); - this.push(new CountryStatsEuropeItem( - { - code: `ALB`, - population: 2891000, - workedHours: 41, - gDP: 10970, - name: `Albania` - })); - this.push(new CountryStatsEuropeItem( - { - code: `AUT`, - population: 8679000, - workedHours: 30.75, - gDP: 44305, - name: `Austria` - })); - this.push(new CountryStatsEuropeItem( - { - code: `BLR`, - population: 9439000, - workedHours: 43.5, - gDP: 17230, - name: `Belarus` - })); - this.push(new CountryStatsEuropeItem( - { - code: `BEL`, - population: 11288000, - workedHours: 29.7, - gDP: 41708, - name: `Belgium` - })); - this.push(new CountryStatsEuropeItem( - { - code: `BIH`, - population: 3429000, - workedHours: 46.5, - gDP: 10932, - name: `Bosnia and Herzegovina` - })); - this.push(new CountryStatsEuropeItem( - { - code: `BGR`, - population: 7200000, - workedHours: 31.62, - gDP: 17000, - name: `Bulgaria` - })); - this.push(new CountryStatsEuropeItem( - { - code: `HRV`, - population: 4233000, - workedHours: 35.15, - gDP: 20984, - name: `Croatia` - })); - this.push(new CountryStatsEuropeItem( - { - code: `CYP`, - population: 1161000, - workedHours: 34.42, - gDP: 30549, - name: `Cyprus` - })); - this.push(new CountryStatsEuropeItem( - { - code: `CZE`, - population: 10601000, - workedHours: 33.77, - gDP: 30605, - name: `Czechia` - })); - this.push(new CountryStatsEuropeItem( - { - code: `DNK`, - population: 5689000, - workedHours: 27.16, - gDP: 45459, - name: `Denmark` - })); - this.push(new CountryStatsEuropeItem( - { - code: `EST`, - population: 1315000, - workedHours: 35.61, - gDP: 27550, - name: `Estonia` - })); - this.push(new CountryStatsEuropeItem( - { - code: `FIN`, - population: 5481000, - workedHours: 31.48, - gDP: 38942, - name: `Finland` - })); - this.push(new CountryStatsEuropeItem( - { - code: `FRA`, - population: 64453000, - workedHours: 29.03, - gDP: 37766, - name: `France` - })); - this.push(new CountryStatsEuropeItem( - { - code: `DEU`, - population: 81787000, - workedHours: 26.31, - gDP: 43938, - name: `Germany` - })); - this.push(new CountryStatsEuropeItem( - { - code: `GRC`, - population: 10660000, - workedHours: 39.06, - gDP: 24170, - name: `Greece` - })); - this.push(new CountryStatsEuropeItem( - { - code: `HUN`, - population: 9778000, - workedHours: 36.99, - gDP: 25034, - name: `Hungary` - })); - this.push(new CountryStatsEuropeItem( - { - code: `ISL`, - population: 330000, - workedHours: 29.02, - gDP: 43048, - name: `Iceland` - })); - this.push(new CountryStatsEuropeItem( - { - code: `IRL`, - population: 4652000, - workedHours: 33.47, - gDP: 60818, - name: `Ireland` - })); - this.push(new CountryStatsEuropeItem( - { - code: `ITA`, - population: 60578000, - workedHours: 33.04, - gDP: 34302, - name: `Italy` - })); - this.push(new CountryStatsEuropeItem( - { - code: `LVA`, - population: 1998000, - workedHours: 36.57, - gDP: 23019, - name: `Latvia` - })); - this.push(new CountryStatsEuropeItem( - { - code: `LTU`, - population: 2932000, - workedHours: 35.76, - gDP: 27046, - name: `Lithuania` - })); - this.push(new CountryStatsEuropeItem( - { - code: `LUX`, - population: 567000, - workedHours: 29.25, - gDP: 94089, - name: `Luxembourg` - })); - this.push(new CountryStatsEuropeItem( - { - code: `MLT`, - population: 434000, - workedHours: 37.78, - gDP: 34087, - name: `Malta` - })); - this.push(new CountryStatsEuropeItem( - { - code: `MDA`, - population: 4071000, - workedHours: 41, - gDP: 4747, - name: `Moldova` - })); - this.push(new CountryStatsEuropeItem( - { - code: `MNE`, - population: 627000, - workedHours: 47.2, - gDP: 15290, - name: `Montenegro` - })); - this.push(new CountryStatsEuropeItem( - { - code: `NLD`, - population: 16938000, - workedHours: 27.38, - gDP: 46494, - name: `Netherlands` - })); - this.push(new CountryStatsEuropeItem( - { - code: `MKD`, - population: 2079000, - workedHours: 36.6, - gDP: 12760, - name: `North Macedonia` - })); - this.push(new CountryStatsEuropeItem( - { - code: `NOR`, - population: 5200000, - workedHours: 27.36, - gDP: 64008, - name: `Norway` - })); - this.push(new CountryStatsEuropeItem( - { - code: `POL`, - population: 38034000, - workedHours: 39.4, - gDP: 25300, - name: `Poland` - })); - this.push(new CountryStatsEuropeItem( - { - code: `PRT`, - population: 10368000, - workedHours: 36.06, - gDP: 26608, - name: `Portugal` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryStatsEuropeItem( + { + code: `ALB`, + population: 2891000, + workedHours: 41, + gDP: 10970, + name: `Albania` + }), + new CountryStatsEuropeItem( + { + code: `AUT`, + population: 8679000, + workedHours: 30.75, + gDP: 44305, + name: `Austria` + }), + new CountryStatsEuropeItem( + { + code: `BLR`, + population: 9439000, + workedHours: 43.5, + gDP: 17230, + name: `Belarus` + }), + new CountryStatsEuropeItem( + { + code: `BEL`, + population: 11288000, + workedHours: 29.7, + gDP: 41708, + name: `Belgium` + }), + new CountryStatsEuropeItem( + { + code: `BIH`, + population: 3429000, + workedHours: 46.5, + gDP: 10932, + name: `Bosnia` + }), + new CountryStatsEuropeItem( + { + code: `BGR`, + population: 7200000, + workedHours: 31.62, + gDP: 17000, + name: `Bulgaria` + }), + new CountryStatsEuropeItem( + { + code: `HRV`, + population: 4233000, + workedHours: 35.15, + gDP: 20984, + name: `Croatia` + }), + new CountryStatsEuropeItem( + { + code: `CYP`, + population: 1161000, + workedHours: 34.42, + gDP: 30549, + name: `Cyprus` + }), + new CountryStatsEuropeItem( + { + code: `CZE`, + population: 10601000, + workedHours: 33.77, + gDP: 30605, + name: `Czechia` + }), + new CountryStatsEuropeItem( + { + code: `DNK`, + population: 5689000, + workedHours: 27.16, + gDP: 45459, + name: `Denmark` + }), + new CountryStatsEuropeItem( + { + code: `EST`, + population: 1315000, + workedHours: 35.61, + gDP: 27550, + name: `Estonia` + }), + new CountryStatsEuropeItem( + { + code: `FIN`, + population: 5481000, + workedHours: 31.48, + gDP: 38942, + name: `Finland` + }), + new CountryStatsEuropeItem( + { + code: `FRA`, + population: 64453000, + workedHours: 29.03, + gDP: 37766, + name: `France` + }), + new CountryStatsEuropeItem( + { + code: `DEU`, + population: 81787000, + workedHours: 26.31, + gDP: 43938, + name: `Germany` + }), + new CountryStatsEuropeItem( + { + code: `GRC`, + population: 10660000, + workedHours: 39.06, + gDP: 24170, + name: `Greece` + }), + new CountryStatsEuropeItem( + { + code: `HUN`, + population: 9778000, + workedHours: 36.99, + gDP: 25034, + name: `Hungary` + }), + new CountryStatsEuropeItem( + { + code: `ISL`, + population: 330000, + workedHours: 29.02, + gDP: 43048, + name: `Iceland` + }), + new CountryStatsEuropeItem( + { + code: `IRL`, + population: 4652000, + workedHours: 33.47, + gDP: 60818, + name: `Ireland` + }), + new CountryStatsEuropeItem( + { + code: `ITA`, + population: 60578000, + workedHours: 33.04, + gDP: 34302, + name: `Italy` + }), + new CountryStatsEuropeItem( + { + code: `LVA`, + population: 1998000, + workedHours: 36.57, + gDP: 23019, + name: `Latvia` + }), + new CountryStatsEuropeItem( + { + code: `LTU`, + population: 2932000, + workedHours: 35.76, + gDP: 27046, + name: `Lithuania` + }), + new CountryStatsEuropeItem( + { + code: `LUX`, + population: 567000, + workedHours: 29.25, + gDP: 94089, + name: `Luxembourg` + }), + new CountryStatsEuropeItem( + { + code: `MLT`, + population: 434000, + workedHours: 37.78, + gDP: 34087, + name: `Malta` + }), + new CountryStatsEuropeItem( + { + code: `MDA`, + population: 4071000, + workedHours: 41, + gDP: 4747, + name: `Moldova` + }), + new CountryStatsEuropeItem( + { + code: `MNE`, + population: 627000, + workedHours: 47.2, + gDP: 15290, + name: `Montenegro` + }), + new CountryStatsEuropeItem( + { + code: `NLD`, + population: 16938000, + workedHours: 27.38, + gDP: 46494, + name: `Netherlands` + }), + new CountryStatsEuropeItem( + { + code: `MKD`, + population: 2079000, + workedHours: 36.6, + gDP: 12760, + name: `North Macedonia` + }), + new CountryStatsEuropeItem( + { + code: `NOR`, + population: 5200000, + workedHours: 27.36, + gDP: 64008, + name: `Norway` + }), + new CountryStatsEuropeItem( + { + code: `POL`, + population: 38034000, + workedHours: 39.4, + gDP: 25300, + name: `Poland` + }), + new CountryStatsEuropeItem( + { + code: `PRT`, + population: 10368000, + workedHours: 36.06, + gDP: 26608, + name: `Portugal` + }), + new CountryStatsEuropeItem( + { + code: `ROU`, + population: 19925000, + workedHours: 34.34, + gDP: 20556, + name: `Romania` + }), + new CountryStatsEuropeItem( + { + code: `RUS`, + population: 145000000, + workedHours: 38.04, + gDP: 24517, + name: `Russia` + }), + new CountryStatsEuropeItem( + { + code: `SMR`, + population: 33000, + workedHours: 40.1, + gDP: 56372, + name: `San Marino` + }), + new CountryStatsEuropeItem( + { + code: `SRB`, + population: 8877000, + workedHours: 46.5, + gDP: 13278, + name: `Serbia` + }), + new CountryStatsEuropeItem( + { + code: `SVK`, + population: 5436000, + workedHours: 33.73, + gDP: 28309, + name: `Slovakia` + }), + new CountryStatsEuropeItem( + { + code: `SVN`, + population: 2071000, + workedHours: 32.46, + gDP: 29038, + name: `Slovenia` + }), + new CountryStatsEuropeItem( + { + code: `ESP`, + population: 46672000, + workedHours: 32.68, + gDP: 32291, + name: `Spain` + }), + new CountryStatsEuropeItem( + { + code: `SWE`, + population: 9765000, + workedHours: 30.96, + gDP: 45679, + name: `Sweden` + }), + new CountryStatsEuropeItem( + { + code: `CHE`, + population: 8297000, + workedHours: 30.57, + gDP: 57264, + name: `Switzerland` + }), + new CountryStatsEuropeItem( + { + code: `UKR`, + population: 44922000, + workedHours: 38.6, + gDP: 7465, + name: `Ukraine` + }), + new CountryStatsEuropeItem( + { + code: `GBR`, + population: 65860000, + workedHours: 32.1, + gDP: 38839, + name: `United Kingdom` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html index e7f0828a2..ac81e3df9 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html @@ -1,47 +1,50 @@ -
+
Total Population of Selected Countries
+ #legend + orientation="Horizontal">
+ #chart + [legend]="legend"> + title="Population"> + #yAxis + title="GDP per Capita" + isLogarithmic="true" + abbreviateLargeNumbers="true"> + [radiusScale]="SizeScale1"> + [radiusScale]="SizeScale2">
diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.ts index 32610fad1..1c3d15717 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.ts @@ -1,9 +1,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { CountryStatsAfricaItem, CountryStatsAfrica } from './CountryStatsAfrica'; import { CountryStatsEuropeItem, CountryStatsEurope } from './CountryStatsEurope'; -import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent } from 'igniteui-angular-charts'; - - +import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent, IgxSizeScaleComponent } from 'igniteui-angular-charts'; @Component({ selector: "app-root", @@ -11,25 +9,48 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, Ig templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { +export class AppComponent implements AfterViewInit +{ - } + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("bubbleSeries1", { static: true } ) + private bubbleSeries1: IgxBubbleSeriesComponent + private _sizeScale1: IgxSizeScaleComponent | null = null; + public get sizeScale1(): IgxSizeScaleComponent { + if (this._sizeScale1 == null) + { + var sizeScale1 = new IgxSizeScaleComponent(); + sizeScale1.isLogarithmic = false; + sizeScale1.minimumValue = 10; + sizeScale1.maximumValue = 50; - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxNumericXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("bubbleSeries1", { static: true } ) - private bubbleSeries1: IgxBubbleSeriesComponent - @ViewChild("bubbleSeries2", { static: true } ) - private bubbleSeries2: IgxBubbleSeriesComponent + this._sizeScale1 = sizeScale1; + } + return this._sizeScale1; + } + @ViewChild("bubbleSeries2", { static: true } ) + private bubbleSeries2: IgxBubbleSeriesComponent + private _sizeScale2: IgxSizeScaleComponent | null = null; + public get sizeScale2(): IgxSizeScaleComponent { + if (this._sizeScale2 == null) + { + var sizeScale2 = new IgxSizeScaleComponent(); + sizeScale2.isLogarithmic = false; + sizeScale2.minimumValue = 10; + sizeScale2.maximumValue = 50; + this._sizeScale2 = sizeScale2; + } + return this._sizeScale2; + } private _countryStatsAfrica: CountryStatsAfrica = null; public get countryStatsAfrica(): CountryStatsAfrica { if (this._countryStatsAfrica == null) @@ -38,7 +59,7 @@ export class AppComponent { } return this._countryStatsAfrica; } - + private _countryStatsEurope: CountryStatsEurope = null; public get countryStatsEurope(): CountryStatsEurope { if (this._countryStatsEurope == null) @@ -47,8 +68,14 @@ export class AppComponent { } return this._countryStatsEurope; } - + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.module.ts b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.module.ts index 6717c1807..acb21ea18 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.module.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.module.ts @@ -5,13 +5,12 @@ import { BrowserModule } from "@angular/platform-browser"; import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; import { AppComponent } from "./app.component"; - import { IgxLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCoreModule, IgxDataChartScatterModule, IgxDataChartScatterCoreModule, IgxDataChartInteractivityModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.html b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.html index 67a35017e..7650dfb64 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.html +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.html @@ -12,6 +12,7 @@ + diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/styles.scss b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/styles.scss index 96c748c09..9b431e92d 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/styles.scss +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/styles.scss @@ -7,4 +7,3 @@ body { margin: 0; box-sizing: border-box; } - diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tslint.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tslint.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index b8207a98b..f2b27864d 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldDebtAndPopulation.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldDebtAndPopulation.ts new file mode 100644 index 000000000..d93f37f2b --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldDebtAndPopulation.ts @@ -0,0 +1,1845 @@ +export class WorldDebtAndPopulationItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public countryCode: string; + public countryName: string; + public gdpPerCapita: number; + public unemploymentRate: number; + public televisions: number; + public publicDebt: number; + public population: number; + public oilProduction: number; + public medianAge: number; + public internetUsers: number; + public electricityProduction: number; + public birthRate: number; + +} +export class WorldDebtAndPopulation extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new WorldDebtAndPopulationItem( + { + countryCode: `AL`, + countryName: `Albania`, + gdpPerCapita: 5800, + unemploymentRate: 13, + televisions: 700000, + publicDebt: 51, + population: 3619778, + oilProduction: 7006, + medianAge: 30, + internetUsers: 471200, + electricityProduction: 5385, + birthRate: 15 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `DZ`, + countryName: `Algeria`, + gdpPerCapita: 6700, + unemploymentRate: 12, + televisions: 3100000, + publicDebt: 18, + population: 33769668, + oilProduction: 1358000, + medianAge: 26, + internetUsers: 3500000, + electricityProduction: 31910, + birthRate: 17 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `AO`, + countryName: `Angola`, + gdpPerCapita: 7800, + unemploymentRate: 0, + televisions: 196000, + publicDebt: 12, + population: 12531357, + oilProduction: 1712000, + medianAge: 18, + internetUsers: 100000, + electricityProduction: 2585, + birthRate: 44 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `AR`, + countryName: `Argentina`, + gdpPerCapita: 13100, + unemploymentRate: 9, + televisions: 7950000, + publicDebt: 56, + population: 40134425, + oilProduction: 730000, + medianAge: 30, + internetUsers: 9309000, + electricityProduction: 101100, + birthRate: 18 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `AW`, + countryName: `Aruba`, + gdpPerCapita: 21800, + unemploymentRate: 7, + televisions: 20000, + publicDebt: 46, + population: 101541, + oilProduction: 2356, + medianAge: 38, + internetUsers: 24000, + electricityProduction: 770, + birthRate: 13 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `AU`, + countryName: `Australia`, + gdpPerCapita: 37300, + unemploymentRate: 4, + televisions: 10150000, + publicDebt: 16, + population: 21007310, + oilProduction: 540000, + medianAge: 37, + internetUsers: 11240000, + electricityProduction: 236700, + birthRate: 13 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `AT`, + countryName: `Austria`, + gdpPerCapita: 39300, + unemploymentRate: 4, + televisions: 10150000, + publicDebt: 59, + population: 8205533, + oilProduction: 23320, + medianAge: 42, + internetUsers: 4277000, + electricityProduction: 61020, + birthRate: 9 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `AZ`, + countryName: `Azerbaijan`, + gdpPerCapita: 8000, + unemploymentRate: 1, + televisions: 170000, + publicDebt: 7, + population: 8177717, + oilProduction: 934700, + medianAge: 28, + internetUsers: 1036000, + electricityProduction: 23800, + birthRate: 18 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BH`, + countryName: `Bahrain`, + gdpPerCapita: 33900, + unemploymentRate: 15, + televisions: 275000, + publicDebt: 31, + population: 718306, + oilProduction: 184300, + medianAge: 30, + internetUsers: 250000, + electricityProduction: 8187, + birthRate: 17 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BD`, + countryName: `Bangladesh`, + gdpPerCapita: 1400, + unemploymentRate: 3, + televisions: 770000, + publicDebt: 37, + population: 153546896, + oilProduction: 6746, + medianAge: 23, + internetUsers: 500000, + electricityProduction: 21350, + birthRate: 29 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BE`, + countryName: `Belgium`, + gdpPerCapita: 36200, + unemploymentRate: 8, + televisions: 4720000, + publicDebt: 85, + population: 10403951, + oilProduction: 9000, + medianAge: 41, + internetUsers: 5220000, + electricityProduction: 80840, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BT`, + countryName: `Bhutan`, + gdpPerCapita: 5200, + unemploymentRate: 3, + televisions: 11000, + publicDebt: 81, + population: 682321, + oilProduction: 0, + medianAge: 24, + internetUsers: 40000, + electricityProduction: 2000, + birthRate: 21 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BO`, + countryName: `Bolivia`, + gdpPerCapita: 4400, + unemploymentRate: 8, + televisions: 900000, + publicDebt: 46, + population: 9247816, + oilProduction: 46470, + medianAge: 23, + internetUsers: 1000000, + electricityProduction: 5293, + birthRate: 22 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BA`, + countryName: `Bosnia and Herzegovina`, + gdpPerCapita: 6100, + unemploymentRate: 46, + televisions: 0, + publicDebt: 34, + population: 4590310, + oilProduction: 0, + medianAge: 39, + internetUsers: 1055000, + electricityProduction: 12220, + birthRate: 9 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BW`, + countryName: `Botswana`, + gdpPerCapita: 14300, + unemploymentRate: 8, + televisions: 31000, + publicDebt: 5, + population: 1842323, + oilProduction: 0, + medianAge: 21, + internetUsers: 80000, + electricityProduction: 912, + birthRate: 23 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BR`, + countryName: `Brazil`, + gdpPerCapita: 9500, + unemploymentRate: 9, + televisions: 36500000, + publicDebt: 45, + population: 196342592, + oilProduction: 1797000, + medianAge: 28, + internetUsers: 50000000, + electricityProduction: 396400, + birthRate: 19 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `BG`, + countryName: `Bulgaria`, + gdpPerCapita: 11800, + unemploymentRate: 8, + televisions: 3310000, + publicDebt: 11, + population: 7262675, + oilProduction: 3661, + medianAge: 41, + internetUsers: 1899000, + electricityProduction: 45700, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CM`, + countryName: `Cameroon`, + gdpPerCapita: 2200, + unemploymentRate: 30, + televisions: 450000, + publicDebt: 16, + population: 18467692, + oilProduction: 85300, + medianAge: 19, + internetUsers: 370000, + electricityProduction: 4090, + birthRate: 35 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CA`, + countryName: `Canada`, + gdpPerCapita: 38600, + unemploymentRate: 6, + televisions: 21500000, + publicDebt: 64, + population: 33212696, + oilProduction: 3310000, + medianAge: 40, + internetUsers: 28000000, + electricityProduction: 609600, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CL`, + countryName: `Chile`, + gdpPerCapita: 14300, + unemploymentRate: 7, + televisions: 3150000, + publicDebt: 4, + population: 16454143, + oilProduction: 15100, + medianAge: 31, + internetUsers: 557000, + electricityProduction: 47600, + birthRate: 15 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CN`, + countryName: `China`, + gdpPerCapita: 5400, + unemploymentRate: 4, + televisions: 400000000, + publicDebt: 18, + population: 1330044544, + oilProduction: 3725000, + medianAge: 34, + internetUsers: 253000000, + electricityProduction: 3256000, + birthRate: 14 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CO`, + countryName: `Colombia`, + gdpPerCapita: 7400, + unemploymentRate: 11, + televisions: 4590000, + publicDebt: 53, + population: 45013672, + oilProduction: 531300, + medianAge: 27, + internetUsers: 12100000, + electricityProduction: 50470, + birthRate: 20 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CR`, + countryName: `Costa Rica`, + gdpPerCapita: 11100, + unemploymentRate: 5, + televisions: 525000, + publicDebt: 47, + population: 4195914, + oilProduction: 0, + medianAge: 27, + internetUsers: 1500000, + electricityProduction: 8349, + birthRate: 18 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `IV`, + countryName: `Ivory Coast`, + gdpPerCapita: 1700, + unemploymentRate: 0, + televisions: 1090000, + publicDebt: 75, + population: 20179602, + oilProduction: 48370, + medianAge: 19, + internetUsers: 300000, + electricityProduction: 5305, + birthRate: 33 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `HR`, + countryName: `Croatia`, + gdpPerCapita: 15500, + unemploymentRate: 12, + televisions: 1220000, + publicDebt: 48, + population: 4491543, + oilProduction: 17100, + medianAge: 41, + internetUsers: 1995000, + electricityProduction: 11990, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CU`, + countryName: `Cuba`, + gdpPerCapita: 11000, + unemploymentRate: 2, + televisions: 2640000, + publicDebt: 37, + population: 11423952, + oilProduction: 58300, + medianAge: 37, + internetUsers: 1310000, + electricityProduction: 16450, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CY`, + countryName: `Cyprus`, + gdpPerCapita: 27100, + unemploymentRate: 4, + televisions: 0, + publicDebt: 60, + population: 792604, + oilProduction: 0, + medianAge: 35, + internetUsers: 380000, + electricityProduction: 4618, + birthRate: 13 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CZ`, + countryName: `Czech Republic`, + gdpPerCapita: 24500, + unemploymentRate: 7, + televisions: 3405834, + publicDebt: 26, + population: 10220911, + oilProduction: 18030, + medianAge: 40, + internetUsers: 4400000, + electricityProduction: 77380, + birthRate: 9 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `DK`, + countryName: `Denmark`, + gdpPerCapita: 37200, + unemploymentRate: 3, + televisions: 3121000, + publicDebt: 26, + population: 5484723, + oilProduction: 342000, + medianAge: 40, + internetUsers: 3500000, + electricityProduction: 43350, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `DO`, + countryName: `Dominican Republic`, + gdpPerCapita: 6600, + unemploymentRate: 16, + televisions: 770000, + publicDebt: 41, + population: 9507133, + oilProduction: 12, + medianAge: 25, + internetUsers: 1677000, + electricityProduction: 12220, + birthRate: 23 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `EC`, + countryName: `Ecuador`, + gdpPerCapita: 7200, + unemploymentRate: 9, + televisions: 2500000, + publicDebt: 33, + population: 13927650, + oilProduction: 511100, + medianAge: 24, + internetUsers: 1549000, + electricityProduction: 12940, + birthRate: 22 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `EG`, + countryName: `Egypt`, + gdpPerCapita: 5000, + unemploymentRate: 9, + televisions: 7700000, + publicDebt: 106, + population: 81713520, + oilProduction: 665000, + medianAge: 25, + internetUsers: 8620000, + electricityProduction: 102500, + birthRate: 22 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SV`, + countryName: `El Salvador`, + gdpPerCapita: 6000, + unemploymentRate: 6, + televisions: 600000, + publicDebt: 37, + population: 7066403, + oilProduction: 0, + medianAge: 22, + internetUsers: 700000, + electricityProduction: 5316, + birthRate: 26 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `GQ`, + countryName: `Equatorial Guinea`, + gdpPerCapita: 28200, + unemploymentRate: 30, + televisions: 4000, + publicDebt: 2, + population: 616459, + oilProduction: 385500, + medianAge: 19, + internetUsers: 8000, + electricityProduction: 28, + birthRate: 37 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `EE`, + countryName: `Estonia`, + gdpPerCapita: 21800, + unemploymentRate: 5, + televisions: 605000, + publicDebt: 3, + population: 1307605, + oilProduction: 6930, + medianAge: 40, + internetUsers: 780000, + electricityProduction: 9599, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `ET`, + countryName: `Ethiopia`, + gdpPerCapita: 700, + unemploymentRate: 0, + televisions: 682000, + publicDebt: 45, + population: 82544840, + oilProduction: 7, + medianAge: 17, + internetUsers: 291000, + electricityProduction: 2864, + birthRate: 44 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `FI`, + countryName: `Finland`, + gdpPerCapita: 36000, + unemploymentRate: 7, + televisions: 3200000, + publicDebt: 36, + population: 5244749, + oilProduction: 8951, + medianAge: 42, + internetUsers: 3600000, + electricityProduction: 73470, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `GA`, + countryName: `Gabon`, + gdpPerCapita: 14000, + unemploymentRate: 21, + televisions: 63000, + publicDebt: 53, + population: 1485832, + oilProduction: 240000, + medianAge: 19, + internetUsers: 145000, + electricityProduction: 1520, + birthRate: 36 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `DE`, + countryName: `Germany`, + gdpPerCapita: 34100, + unemploymentRate: 9, + televisions: 51400000, + publicDebt: 65, + population: 82369552, + oilProduction: 141700, + medianAge: 43, + internetUsers: 42500000, + electricityProduction: 579400, + birthRate: 8 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `GH`, + countryName: `Ghana`, + gdpPerCapita: 1400, + unemploymentRate: 11, + televisions: 1900000, + publicDebt: 59, + population: 23382848, + oilProduction: 700, + medianAge: 20, + internetUsers: 650000, + electricityProduction: 7042, + birthRate: 29 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `GI`, + countryName: `Gibraltar`, + gdpPerCapita: 38200, + unemploymentRate: 3, + televisions: 10000, + publicDebt: 16, + population: 28002, + oilProduction: 0, + medianAge: 40, + internetUsers: 6200, + electricityProduction: 141, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `GR`, + countryName: `Greece`, + gdpPerCapita: 30600, + unemploymentRate: 8, + televisions: 2540000, + publicDebt: 90, + population: 10722816, + oilProduction: 5687, + medianAge: 42, + internetUsers: 2540000, + electricityProduction: 56130, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `GT`, + countryName: `Guatemala`, + gdpPerCapita: 5100, + unemploymentRate: 3, + televisions: 1323000, + publicDebt: 21, + population: 13002206, + oilProduction: 13000, + medianAge: 19, + internetUsers: 1320000, + electricityProduction: 7281, + birthRate: 29 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `HN`, + countryName: `Honduras`, + gdpPerCapita: 4300, + unemploymentRate: 28, + televisions: 570000, + publicDebt: 24, + population: 7639327, + oilProduction: 0, + medianAge: 20, + internetUsers: 344100, + electricityProduction: 5339, + birthRate: 27 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `HU`, + countryName: `Hungary`, + gdpPerCapita: 19300, + unemploymentRate: 7, + televisions: 4420000, + publicDebt: 67, + population: 9930915, + oilProduction: 42180, + medianAge: 39, + internetUsers: 4200000, + electricityProduction: 33690, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `IS`, + countryName: `Iceland`, + gdpPerCapita: 40400, + unemploymentRate: 1, + televisions: 98000, + publicDebt: 28, + population: 304367, + oilProduction: 0, + medianAge: 35, + internetUsers: 202300, + electricityProduction: 8533, + birthRate: 14 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `IN`, + countryName: `India`, + gdpPerCapita: 2600, + unemploymentRate: 7, + televisions: 63000000, + publicDebt: 58, + population: 1147995904, + oilProduction: 810000, + medianAge: 25, + internetUsers: 80000000, + electricityProduction: 661600, + birthRate: 22 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `ID`, + countryName: `Indonesia`, + gdpPerCapita: 3600, + unemploymentRate: 9, + televisions: 13750000, + publicDebt: 34, + population: 237512352, + oilProduction: 837500, + medianAge: 27, + internetUsers: 13000000, + electricityProduction: 125900, + birthRate: 19 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `IR`, + countryName: `Iran`, + gdpPerCapita: 11700, + unemploymentRate: 12, + televisions: 4610000, + publicDebt: 17, + population: 65875224, + oilProduction: 3956000, + medianAge: 26, + internetUsers: 23000000, + electricityProduction: 170400, + birthRate: 17 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `IE`, + countryName: `Ireland`, + gdpPerCapita: 46600, + unemploymentRate: 5, + televisions: 1820000, + publicDebt: 25, + population: 4156119, + oilProduction: 0, + medianAge: 35, + internetUsers: 1708000, + electricityProduction: 24130, + birthRate: 14 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `IL`, + countryName: `Israel`, + gdpPerCapita: 26600, + unemploymentRate: 7, + televisions: 1690000, + publicDebt: 81, + population: 7112359, + oilProduction: 100, + medianAge: 29, + internetUsers: 2000000, + electricityProduction: 46850, + birthRate: 20 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `IT`, + countryName: `Italy`, + gdpPerCapita: 30900, + unemploymentRate: 6, + televisions: 30300000, + publicDebt: 104, + population: 58145320, + oilProduction: 164800, + medianAge: 43, + internetUsers: 32000000, + electricityProduction: 278500, + birthRate: 8 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `JM`, + countryName: `Jamaica`, + gdpPerCapita: 7400, + unemploymentRate: 10, + televisions: 460000, + publicDebt: 127, + population: 2804332, + oilProduction: 0, + medianAge: 23, + internetUsers: 1500000, + electricityProduction: 6985, + birthRate: 20 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `JP`, + countryName: `Japan`, + gdpPerCapita: 33500, + unemploymentRate: 4, + televisions: 86500000, + publicDebt: 170, + population: 127288416, + oilProduction: 125000, + medianAge: 44, + internetUsers: 88110000, + electricityProduction: 1025000, + birthRate: 8 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `JO`, + countryName: `Jordan`, + gdpPerCapita: 4700, + unemploymentRate: 14, + televisions: 500000, + publicDebt: 72, + population: 6198677, + oilProduction: 0, + medianAge: 24, + internetUsers: 1127000, + electricityProduction: 9074, + birthRate: 20 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `KZ`, + countryName: `Kazakhstan`, + gdpPerCapita: 11000, + unemploymentRate: 7, + televisions: 3880000, + publicDebt: 8, + population: 15340533, + oilProduction: 1355000, + medianAge: 29, + internetUsers: 1901000, + electricityProduction: 76340, + birthRate: 16 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `KE`, + countryName: `Kenya`, + gdpPerCapita: 1700, + unemploymentRate: 40, + televisions: 730000, + publicDebt: 49, + population: 37953840, + oilProduction: 0, + medianAge: 19, + internetUsers: 3000000, + electricityProduction: 5502, + birthRate: 38 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `KR`, + countryName: `Korea, South`, + gdpPerCapita: 25000, + unemploymentRate: 3, + televisions: 15900000, + publicDebt: 28, + population: 48379392, + oilProduction: 17050, + medianAge: 37, + internetUsers: 35590000, + electricityProduction: 403200, + birthRate: 9 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `KW`, + countryName: `Kuwait`, + gdpPerCapita: 55900, + unemploymentRate: 2, + televisions: 875000, + publicDebt: 10, + population: 2596799, + oilProduction: 2440000, + medianAge: 26, + internetUsers: 900000, + electricityProduction: 41110, + birthRate: 22 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `LV`, + countryName: `Latvia`, + gdpPerCapita: 17700, + unemploymentRate: 6, + televisions: 1220000, + publicDebt: 7, + population: 2245423, + oilProduction: 0, + medianAge: 40, + internetUsers: 1770000, + electricityProduction: 4778, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `LB`, + countryName: `Lebanon`, + gdpPerCapita: 10300, + unemploymentRate: 20, + televisions: 1180000, + publicDebt: 187, + population: 3971941, + oilProduction: 0, + medianAge: 29, + internetUsers: 950000, + electricityProduction: 9183, + birthRate: 18 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `LY`, + countryName: `Libya`, + gdpPerCapita: 12400, + unemploymentRate: 30, + televisions: 730000, + publicDebt: 5, + population: 6173579, + oilProduction: 1712000, + medianAge: 24, + internetUsers: 260000, + electricityProduction: 21150, + birthRate: 26 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `LT`, + countryName: `Lithuania`, + gdpPerCapita: 16800, + unemploymentRate: 4, + televisions: 1700000, + publicDebt: 17, + population: 3565205, + oilProduction: 13160, + medianAge: 39, + internetUsers: 1330000, + electricityProduction: 13480, + birthRate: 9 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `LU`, + countryName: `Luxembourg`, + gdpPerCapita: 79400, + unemploymentRate: 4, + televisions: 285000, + publicDebt: 6, + population: 486006, + oilProduction: 0, + medianAge: 39, + internetUsers: 345000, + electricityProduction: 3156, + birthRate: 12 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `MK`, + countryName: `Macedonia`, + gdpPerCapita: 8400, + unemploymentRate: 35, + televisions: 510000, + publicDebt: 31, + population: 2061315, + oilProduction: 0, + medianAge: 35, + internetUsers: 685000, + electricityProduction: 6051, + birthRate: 12 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `MW`, + countryName: `Malawi`, + gdpPerCapita: 800, + unemploymentRate: 0, + televisions: 0, + publicDebt: 51, + population: 13931831, + oilProduction: 0, + medianAge: 17, + internetUsers: 139500, + electricityProduction: 1397, + birthRate: 42 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `MY`, + countryName: `Malaysia`, + gdpPerCapita: 14500, + unemploymentRate: 3, + televisions: 10800000, + publicDebt: 42, + population: 25274132, + oilProduction: 757500, + medianAge: 25, + internetUsers: 15868000, + electricityProduction: 82360, + birthRate: 22 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `MU`, + countryName: `Mauritius`, + gdpPerCapita: 11300, + unemploymentRate: 9, + televisions: 258000, + publicDebt: 63, + population: 1274189, + oilProduction: 0, + medianAge: 32, + internetUsers: 340000, + electricityProduction: 2350, + birthRate: 15 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `MX`, + countryName: `Mexico`, + gdpPerCapita: 12400, + unemploymentRate: 4, + televisions: 25600000, + publicDebt: 23, + population: 109955400, + oilProduction: 3083000, + medianAge: 26, + internetUsers: 22812000, + electricityProduction: 222400, + birthRate: 20 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `MD`, + countryName: `Moldova`, + gdpPerCapita: 2300, + unemploymentRate: 2, + televisions: 1260000, + publicDebt: 23, + population: 4324450, + oilProduction: 0, + medianAge: 34, + internetUsers: 700000, + electricityProduction: 3881, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `MA`, + countryName: `Morocco`, + gdpPerCapita: 3700, + unemploymentRate: 10, + televisions: 3100000, + publicDebt: 67, + population: 34343220, + oilProduction: 300, + medianAge: 25, + internetUsers: 7300000, + electricityProduction: 21370, + birthRate: 21 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `MZ`, + countryName: `Mozambique`, + gdpPerCapita: 800, + unemploymentRate: 21, + televisions: 67600, + publicDebt: 22, + population: 21284700, + oilProduction: 0, + medianAge: 17, + internetUsers: 200000, + electricityProduction: 13170, + birthRate: 38 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `NA`, + countryName: `Namibia`, + gdpPerCapita: 5200, + unemploymentRate: 5, + televisions: 60000, + publicDebt: 22, + population: 2088669, + oilProduction: 0, + medianAge: 21, + internetUsers: 101000, + electricityProduction: 1688, + birthRate: 23 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `NL`, + countryName: `Netherlands`, + gdpPerCapita: 39000, + unemploymentRate: 5, + televisions: 8100000, + publicDebt: 46, + population: 16645313, + oilProduction: 76000, + medianAge: 40, + internetUsers: 15000000, + electricityProduction: 94340, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `NZ`, + countryName: `New Zealand`, + gdpPerCapita: 27200, + unemploymentRate: 4, + televisions: 1926000, + publicDebt: 21, + population: 4173460, + oilProduction: 25880, + medianAge: 36, + internetUsers: 3360000, + electricityProduction: 42060, + birthRate: 14 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `NI`, + countryName: `Nicaragua`, + gdpPerCapita: 2800, + unemploymentRate: 5, + televisions: 320000, + publicDebt: 63, + population: 5785846, + oilProduction: 0, + medianAge: 22, + internetUsers: 155000, + electricityProduction: 2778, + birthRate: 24 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `NG`, + countryName: `Nigeria`, + gdpPerCapita: 2100, + unemploymentRate: 5, + televisions: 6900000, + publicDebt: 14, + population: 146255312, + oilProduction: 2166000, + medianAge: 19, + internetUsers: 10000000, + electricityProduction: 22530, + birthRate: 37 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `NO`, + countryName: `Norway`, + gdpPerCapita: 53300, + unemploymentRate: 3, + televisions: 2030000, + publicDebt: 83, + population: 4644457, + oilProduction: 2560000, + medianAge: 39, + internetUsers: 3800000, + electricityProduction: 135800, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `OM`, + countryName: `Oman`, + gdpPerCapita: 1900, + unemploymentRate: 15, + televisions: 1600000, + publicDebt: 4, + population: 3311640, + oilProduction: 710800, + medianAge: 19, + internetUsers: 340000, + electricityProduction: 11890, + birthRate: 35 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `PK`, + countryName: `Pakistan`, + gdpPerCapita: 2400, + unemploymentRate: 6, + televisions: 3100000, + publicDebt: 51, + population: 172800048, + oilProduction: 62000, + medianAge: 21, + internetUsers: 17500000, + electricityProduction: 89820, + birthRate: 28 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `PA`, + countryName: `Panama`, + gdpPerCapita: 10700, + unemploymentRate: 6, + televisions: 510000, + publicDebt: 53, + population: 3309679, + oilProduction: 0, + medianAge: 27, + internetUsers: 525200, + electricityProduction: 5661, + birthRate: 21 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `PG`, + countryName: `Papua New Guinea`, + gdpPerCapita: 2100, + unemploymentRate: 2, + televisions: 59841, + publicDebt: 40, + population: 5931769, + oilProduction: 47800, + medianAge: 22, + internetUsers: 110000, + electricityProduction: 3698, + birthRate: 28 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `PY`, + countryName: `Paraguay`, + gdpPerCapita: 4000, + unemploymentRate: 6, + televisions: 990000, + publicDebt: 27, + population: 6831306, + oilProduction: 0, + medianAge: 22, + internetUsers: 280000, + electricityProduction: 70000, + birthRate: 28 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `PE`, + countryName: `Peru`, + gdpPerCapita: 7600, + unemploymentRate: 7, + televisions: 3060000, + publicDebt: 29, + population: 29180900, + oilProduction: 119000, + medianAge: 26, + internetUsers: 7636000, + electricityProduction: 24970, + birthRate: 20 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `PH`, + countryName: `Philippines`, + gdpPerCapita: 3200, + unemploymentRate: 7, + televisions: 3700000, + publicDebt: 56, + population: 96061680, + oilProduction: 0, + medianAge: 22, + internetUsers: 5300000, + electricityProduction: 53670, + birthRate: 26 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `PL`, + countryName: `Poland`, + gdpPerCapita: 16200, + unemploymentRate: 13, + televisions: 13050000, + publicDebt: 43, + population: 38500696, + oilProduction: 0, + medianAge: 38, + internetUsers: 16000000, + electricityProduction: 146200, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `PT`, + countryName: `Portugal`, + gdpPerCapita: 21800, + unemploymentRate: 8, + televisions: 3310000, + publicDebt: 64, + population: 10676910, + oilProduction: 9500, + medianAge: 39, + internetUsers: 3549000, + electricityProduction: 49040, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `QA`, + countryName: `Qatar`, + gdpPerCapita: 87600, + unemploymentRate: 1, + televisions: 230000, + publicDebt: 11, + population: 824789, + oilProduction: 797500, + medianAge: 31, + internetUsers: 351000, + electricityProduction: 13540, + birthRate: 16 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `RO`, + countryName: `Romania`, + gdpPerCapita: 11100, + unemploymentRate: 4, + televisions: 5250000, + publicDebt: 13, + population: 22246862, + oilProduction: 115000, + medianAge: 37, + internetUsers: 12000000, + electricityProduction: 60520, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `RU`, + countryName: `Russia`, + gdpPerCapita: 14800, + unemploymentRate: 6, + televisions: 60500000, + publicDebt: 6, + population: 140702096, + oilProduction: 9870000, + medianAge: 38, + internetUsers: 30000000, + electricityProduction: 1000000, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SA`, + countryName: `Saudi Arabia`, + gdpPerCapita: 19800, + unemploymentRate: 13, + televisions: 5100000, + publicDebt: 24, + population: 28146656, + oilProduction: 11000000, + medianAge: 22, + internetUsers: 6200000, + electricityProduction: 165600, + birthRate: 29 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SN`, + countryName: `Senegal`, + gdpPerCapita: 1700, + unemploymentRate: 48, + televisions: 361000, + publicDebt: 23, + population: 12853259, + oilProduction: 0, + medianAge: 19, + internetUsers: 820000, + electricityProduction: 2159, + birthRate: 37 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SC`, + countryName: `Seychelles`, + gdpPerCapita: 16600, + unemploymentRate: 2, + televisions: 11000, + publicDebt: 92, + population: 82247, + oilProduction: 0, + medianAge: 29, + internetUsers: 32000, + electricityProduction: 252, + birthRate: 16 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SG`, + countryName: `Singapore`, + gdpPerCapita: 49900, + unemploymentRate: 2, + televisions: 1330000, + publicDebt: 96, + population: 4608167, + oilProduction: 9836, + medianAge: 38, + internetUsers: 3105000, + electricityProduction: 39440, + birthRate: 9 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SK`, + countryName: `Slovakia`, + gdpPerCapita: 20200, + unemploymentRate: 8, + televisions: 2620000, + publicDebt: 36, + population: 5455407, + oilProduction: 12840, + medianAge: 37, + internetUsers: 2350000, + electricityProduction: 29890, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SI`, + countryName: `Slovenia`, + gdpPerCapita: 28000, + unemploymentRate: 8, + televisions: 710000, + publicDebt: 24, + population: 2007711, + oilProduction: 5, + medianAge: 41, + internetUsers: 1300000, + electricityProduction: 14900, + birthRate: 9 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `ZA`, + countryName: `South Africa`, + gdpPerCapita: 9700, + unemploymentRate: 24, + televisions: 6000000, + publicDebt: 31, + population: 48782756, + oilProduction: 200000, + medianAge: 24, + internetUsers: 5100000, + electricityProduction: 264000, + birthRate: 20 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `ES`, + countryName: `Spain`, + gdpPerCapita: 33600, + unemploymentRate: 8, + televisions: 16200000, + publicDebt: 36, + population: 40491052, + oilProduction: 29350, + medianAge: 41, + internetUsers: 19690000, + electricityProduction: 270300, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `LK`, + countryName: `Sri Lanka`, + gdpPerCapita: 4000, + unemploymentRate: 6, + televisions: 1530000, + publicDebt: 86, + population: 21128772, + oilProduction: 0, + medianAge: 30, + internetUsers: 771700, + electricityProduction: 8411, + birthRate: 17 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SD`, + countryName: `Sudan`, + gdpPerCapita: 1900, + unemploymentRate: 19, + televisions: 2380000, + publicDebt: 106, + population: 40218456, + oilProduction: 484500, + medianAge: 19, + internetUsers: 1500000, + electricityProduction: 3944, + birthRate: 34 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SE`, + countryName: `Sweden`, + gdpPerCapita: 37500, + unemploymentRate: 6, + televisions: 4600000, + publicDebt: 42, + population: 9045389, + oilProduction: 2350, + medianAge: 41, + internetUsers: 7000000, + electricityProduction: 153200, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `CH`, + countryName: `Switzerland`, + gdpPerCapita: 40100, + unemploymentRate: 3, + televisions: 3310000, + publicDebt: 44, + population: 7581520, + oilProduction: 3202, + medianAge: 41, + internetUsers: 4610000, + electricityProduction: 56100, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `SY`, + countryName: `Syria`, + gdpPerCapita: 4700, + unemploymentRate: 9, + televisions: 1050000, + publicDebt: 38, + population: 19747586, + oilProduction: 379000, + medianAge: 21, + internetUsers: 3470000, + electricityProduction: 153200, + birthRate: 27 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `TW`, + countryName: `Taiwan`, + gdpPerCapita: 30100, + unemploymentRate: 4, + televisions: 8800000, + publicDebt: 28, + population: 22920946, + oilProduction: 600, + medianAge: 36, + internetUsers: 14760000, + electricityProduction: 235000, + birthRate: 9 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `TZ`, + countryName: `Tanzania`, + gdpPerCapita: 1300, + unemploymentRate: 0, + televisions: 103000, + publicDebt: 20, + population: 40213160, + oilProduction: 0, + medianAge: 18, + internetUsers: 400000, + electricityProduction: 1880, + birthRate: 35 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `TH`, + countryName: `Thailand`, + gdpPerCapita: 8000, + unemploymentRate: 1, + televisions: 15190000, + publicDebt: 38, + population: 65493296, + oilProduction: 310000, + medianAge: 33, + internetUsers: 13416000, + electricityProduction: 124600, + birthRate: 14 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `TN`, + countryName: `Tunisia`, + gdpPerCapita: 7400, + unemploymentRate: 14, + televisions: 920000, + publicDebt: 55, + population: 10383577, + oilProduction: 76900, + medianAge: 29, + internetUsers: 1722000, + electricityProduction: 12850, + birthRate: 16 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `TR`, + countryName: `Turkey`, + gdpPerCapita: 12000, + unemploymentRate: 10, + televisions: 20900000, + publicDebt: 39, + population: 71892808, + oilProduction: 45460, + medianAge: 29, + internetUsers: 13150000, + electricityProduction: 154200, + birthRate: 16 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `UG`, + countryName: `Uganda`, + gdpPerCapita: 1000, + unemploymentRate: 0, + televisions: 500000, + publicDebt: 21, + population: 31367972, + oilProduction: 0, + medianAge: 15, + internetUsers: 2000000, + electricityProduction: 1983, + birthRate: 48 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `UA`, + countryName: `Ukraine`, + gdpPerCapita: 7000, + unemploymentRate: 2, + televisions: 18050000, + publicDebt: 12, + population: 45994288, + oilProduction: 90400, + medianAge: 39, + internetUsers: 10000000, + electricityProduction: 192100, + birthRate: 10 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `AE`, + countryName: `United Arab Emirates`, + gdpPerCapita: 37000, + unemploymentRate: 2, + televisions: 310000, + publicDebt: 21, + population: 4621399, + oilProduction: 2510000, + medianAge: 30, + internetUsers: 2300000, + electricityProduction: 57060, + birthRate: 16 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `UK`, + countryName: `United Kingdom`, + gdpPerCapita: 35000, + unemploymentRate: 5, + televisions: 30500000, + publicDebt: 44, + population: 60943912, + oilProduction: 1636000, + medianAge: 40, + internetUsers: 40200000, + electricityProduction: 372600, + birthRate: 11 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `US`, + countryName: `United States`, + gdpPerCapita: 45800, + unemploymentRate: 5, + televisions: 219000000, + publicDebt: 61, + population: 303824640, + oilProduction: 7460000, + medianAge: 37, + internetUsers: 223000000, + electricityProduction: 4062000, + birthRate: 14 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `UY`, + countryName: `Uruguay`, + gdpPerCapita: 10800, + unemploymentRate: 9, + televisions: 782000, + publicDebt: 65, + population: 3477778, + oilProduction: 27830, + medianAge: 33, + internetUsers: 968000, + electricityProduction: 9200, + birthRate: 14 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `UZ`, + countryName: `Uzbekistan`, + gdpPerCapita: 2400, + unemploymentRate: 1, + televisions: 6400000, + publicDebt: 19, + population: 27345026, + oilProduction: 109400, + medianAge: 24, + internetUsers: 1200000, + electricityProduction: 49000, + birthRate: 18 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `VE`, + countryName: `Venezuela`, + gdpPerCapita: 12800, + unemploymentRate: 9, + televisions: 4100000, + publicDebt: 19, + population: 26414816, + oilProduction: 2398000, + medianAge: 25, + internetUsers: 5720000, + electricityProduction: 99200, + birthRate: 21 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `VN`, + countryName: `Vietnam`, + gdpPerCapita: 2600, + unemploymentRate: 4, + televisions: 3570000, + publicDebt: 42, + population: 86116560, + oilProduction: 324000, + medianAge: 27, + internetUsers: 17870000, + electricityProduction: 59010, + birthRate: 16 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `WF`, + countryName: `Wallis and Futuna`, + gdpPerCapita: 3800, + unemploymentRate: 15, + televisions: 0, + publicDebt: 6, + population: 15237, + oilProduction: 0, + medianAge: 0, + internetUsers: 900, + electricityProduction: 0, + birthRate: 0 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `YE`, + countryName: `Yemen`, + gdpPerCapita: 2500, + unemploymentRate: 35, + televisions: 470000, + publicDebt: 34, + population: 23013376, + oilProduction: 339200, + medianAge: 17, + internetUsers: 320000, + electricityProduction: 4456, + birthRate: 42 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `ZM`, + countryName: `Zambia`, + gdpPerCapita: 1400, + unemploymentRate: 50, + televisions: 277000, + publicDebt: 28, + population: 11669534, + oilProduction: 150, + medianAge: 17, + internetUsers: 500000, + electricityProduction: 8850, + birthRate: 41 + }), + new WorldDebtAndPopulationItem( + { + countryCode: `ZW`, + countryName: `Zimbabwe`, + gdpPerCapita: 200, + unemploymentRate: 80, + televisions: 370000, + publicDebt: 218, + population: 11350111, + oilProduction: 0, + medianAge: 18, + internetUsers: 1351000, + electricityProduction: 9950, + birthRate: 32 + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html index c6747fcc0..346190e03 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html @@ -1,38 +1,44 @@ -
+
- GDP per Capita vs Population + Total Population of Selected Countries
+ #xAxis + title="Population" + isLogarithmic="true" + abbreviateLargeNumbers="true"> + maximumValue="120"> + showDefaultTooltip="true"> + +
diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.ts index cbfdbc2d7..0b1b2d4e5 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.ts @@ -1,8 +1,6 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; -import { CountryStatsEuropeItem, CountryStatsEurope } from './CountryStatsEurope'; -import { IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent } from 'igniteui-angular-charts'; - - +import { WorldDebtAndPopulationItem, WorldDebtAndPopulation } from './WorldDebtAndPopulation'; +import { IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent, IgxSizeScaleComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ selector: "app-root", @@ -10,31 +8,49 @@ import { IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisCompone templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - - public constructor(private _detector: ChangeDetectorRef) { - } - - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxNumericXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("bubbleSeries1", { static: true } ) - private bubbleSeries1: IgxBubbleSeriesComponent - - private _countryStatsEurope: CountryStatsEurope = null; - public get countryStatsEurope(): CountryStatsEurope { - if (this._countryStatsEurope == null) +export class AppComponent implements AfterViewInit +{ + + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("bubbleSeries1", { static: true } ) + private bubbleSeries1: IgxBubbleSeriesComponent + private _sizeScale1: IgxSizeScaleComponent | null = null; + public get sizeScale1(): IgxSizeScaleComponent { + if (this._sizeScale1 == null) + { + var sizeScale1 = new IgxSizeScaleComponent(); + sizeScale1.isLogarithmic = false; + sizeScale1.minimumValue = 10; + sizeScale1.maximumValue = 50; + + this._sizeScale1 = sizeScale1; + } + return this._sizeScale1; + } + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent + private _worldDebtAndPopulation: WorldDebtAndPopulation = null; + public get worldDebtAndPopulation(): WorldDebtAndPopulation { + if (this._worldDebtAndPopulation == null) { - this._countryStatsEurope = new CountryStatsEurope(); + this._worldDebtAndPopulation = new WorldDebtAndPopulation(); } - return this._countryStatsEurope; + return this._worldDebtAndPopulation; } - + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.module.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.module.ts index f42d89914..db571d6e9 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.module.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.module.ts @@ -5,13 +5,12 @@ import { BrowserModule } from "@angular/platform-browser"; import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; import { AppComponent } from "./app.component"; - -import { IgxNumberAbbreviatorModule, IgxDataChartCoreModule, IgxDataChartScatterModule, IgxDataChartScatterCoreModule, IgxDataChartInteractivityModule } from 'igniteui-angular-charts'; +import { IgxNumberAbbreviatorModule, IgxDataChartCoreModule, IgxDataChartScatterModule, IgxDataChartScatterCoreModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -22,7 +21,8 @@ import { IgxNumberAbbreviatorModule, IgxDataChartCoreModule, IgxDataChartScatter IgxDataChartCoreModule, IgxDataChartScatterModule, IgxDataChartScatterCoreModule, - IgxDataChartInteractivityModule + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule ], providers: [], schemas: [] diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/index.html b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/index.html index 67a35017e..7650dfb64 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/index.html +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/index.html @@ -12,6 +12,7 @@ + diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/styles.scss b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/styles.scss index 96c748c09..9b431e92d 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/styles.scss +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/styles.scss @@ -7,4 +7,3 @@ body { margin: 0; box-sizing: border-box; } - diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/tslint.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/tslint.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index b8207a98b..f2b27864d 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts index e9c3510a6..cf0f8cd80 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts @@ -2,7 +2,7 @@ export class CountryStatsAfricaItem { public constructor(init: Partial) { Object.assign(this, init); } - + public code: string; public population: number; public workedHours: number; @@ -11,247 +11,421 @@ export class CountryStatsAfricaItem { } export class CountryStatsAfrica extends Array { - public constructor() { - super(); - this.push(new CountryStatsAfricaItem( - { - code: `DZA`, - population: 39728000, - workedHours: 47.5, - gDP: 13725, - name: `Algeria` - })); - this.push(new CountryStatsAfricaItem( - { - code: `AGO`, - population: 27884000, - workedHours: 39.8, - gDP: 6228, - name: `Angola` - })); - this.push(new CountryStatsAfricaItem( - { - code: `BEN`, - population: 10576000, - workedHours: 43.7, - gDP: 1987, - name: `Benin` - })); - this.push(new CountryStatsAfricaItem( - { - code: `BWA`, - population: 2121000, - workedHours: 41.2, - gDP: 15357, - name: `Botswana` - })); - this.push(new CountryStatsAfricaItem( - { - code: `BFA`, - population: 18111000, - workedHours: 39.3, - gDP: 1596, - name: `Burkina Faso` - })); - this.push(new CountryStatsAfricaItem( - { - code: `BDI`, - population: 10160000, - workedHours: 36.4, - gDP: 748, - name: `Burundi` - })); - this.push(new CountryStatsAfricaItem( - { - code: `CMR`, - population: 23298000, - workedHours: 42, - gDP: 3289, - name: `Cameroon` - })); - this.push(new CountryStatsAfricaItem( - { - code: `CPV`, - population: 525000, - workedHours: 45, - gDP: 5915, - name: `Cape Verde` - })); - this.push(new CountryStatsAfricaItem( - { - code: `CAF`, - population: 4493000, - workedHours: 38, - gDP: 622, - name: `C.A.R` - })); - this.push(new CountryStatsAfricaItem( - { - code: `TCD`, - population: 14111000, - workedHours: 40.4, - gDP: 2067, - name: `Chad` - })); - this.push(new CountryStatsAfricaItem( - { - code: `COM`, - population: 777000, - workedHours: 40.1, - gDP: 1413, - name: `Comoros` - })); - this.push(new CountryStatsAfricaItem( - { - code: `COG`, - population: 4856000, - workedHours: 38.1, - gDP: 5543, - name: `Congo` - })); - this.push(new CountryStatsAfricaItem( - { - code: `CIV`, - population: 23226000, - workedHours: 39.7, - gDP: 3242, - name: `Cote Ivoire` - })); - this.push(new CountryStatsAfricaItem( - { - code: `COD`, - population: 76245000, - workedHours: 44, - gDP: 812, - name: `DRC` - })); - this.push(new CountryStatsAfricaItem( - { - code: `EGY`, - population: 92443000, - workedHours: 39.7, - gDP: 10096, - name: `Egypt` - })); - this.push(new CountryStatsAfricaItem( - { - code: `GNQ`, - population: 1169000, - workedHours: 38.8, - gDP: 27554, - name: `Equatorial Guinea` - })); - this.push(new CountryStatsAfricaItem( - { - code: `SWZ`, - population: 1104000, - workedHours: 45.7, - gDP: 7759, - name: `Eswatini` - })); - this.push(new CountryStatsAfricaItem( - { - code: `ETH`, - population: 101000000, - workedHours: 40.1, - gDP: 1533, - name: `Ethiopia` - })); - this.push(new CountryStatsAfricaItem( - { - code: `GAB`, - population: 1948000, - workedHours: 40.5, - gDP: 16837, - name: `Gabon` - })); - this.push(new CountryStatsAfricaItem( - { - code: `GMB`, - population: 2086000, - workedHours: 40.3, - gDP: 1568, - name: `Gambia` - })); - this.push(new CountryStatsAfricaItem( - { - code: `GHA`, - population: 27849000, - workedHours: 47.6, - gDP: 3927, - name: `Ghana` - })); - this.push(new CountryStatsAfricaItem( - { - code: `GIN`, - population: 11432000, - workedHours: 43.4, - gDP: 1758, - name: `Guinea` - })); - this.push(new CountryStatsAfricaItem( - { - code: `GNB`, - population: 1737000, - workedHours: 35.1, - gDP: 1446, - name: `Guinea-Bissau` - })); - this.push(new CountryStatsAfricaItem( - { - code: `KEN`, - population: 47878000, - workedHours: 43.9, - gDP: 2836, - name: `Kenya` - })); - this.push(new CountryStatsAfricaItem( - { - code: `LSO`, - population: 2059000, - workedHours: 47.6, - gDP: 2708, - name: `Lesotho` - })); - this.push(new CountryStatsAfricaItem( - { - code: `LBR`, - population: 4472000, - workedHours: 40.3, - gDP: 785, - name: `Liberia` - })); - this.push(new CountryStatsAfricaItem( - { - code: `LBY`, - population: 6418000, - workedHours: 42.5, - gDP: 14847, - name: `Libya` - })); - this.push(new CountryStatsAfricaItem( - { - code: `MDG`, - population: 24234000, - workedHours: 40.8, - gDP: 1377, - name: `Madagascar` - })); - this.push(new CountryStatsAfricaItem( - { - code: `MWI`, - population: 16745000, - workedHours: 44.5, - gDP: 1089, - name: `Malawi` - })); - this.push(new CountryStatsAfricaItem( - { - code: `MLI`, - population: 17439000, - workedHours: 40.6, - gDP: 1919, - name: `Mali` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryStatsAfricaItem( + { + code: `DZA`, + population: 39728000, + workedHours: 47.5, + gDP: 13725, + name: `Algeria` + }), + new CountryStatsAfricaItem( + { + code: `AGO`, + population: 27884000, + workedHours: 39.8, + gDP: 6228, + name: `Angola` + }), + new CountryStatsAfricaItem( + { + code: `BEN`, + population: 10576000, + workedHours: 43.7, + gDP: 1987, + name: `Benin` + }), + new CountryStatsAfricaItem( + { + code: `BWA`, + population: 2121000, + workedHours: 41.2, + gDP: 15357, + name: `Botswana` + }), + new CountryStatsAfricaItem( + { + code: `BFA`, + population: 18111000, + workedHours: 39.3, + gDP: 1596, + name: `Burkina Faso` + }), + new CountryStatsAfricaItem( + { + code: `BDI`, + population: 10160000, + workedHours: 36.4, + gDP: 748, + name: `Burundi` + }), + new CountryStatsAfricaItem( + { + code: `CMR`, + population: 23298000, + workedHours: 42, + gDP: 3289, + name: `Cameroon` + }), + new CountryStatsAfricaItem( + { + code: `CPV`, + population: 525000, + workedHours: 45, + gDP: 5915, + name: `Cape Verde` + }), + new CountryStatsAfricaItem( + { + code: `CAF`, + population: 4493000, + workedHours: 38, + gDP: 622, + name: `Central African Republic` + }), + new CountryStatsAfricaItem( + { + code: `TCD`, + population: 14111000, + workedHours: 40.4, + gDP: 2067, + name: `Chad` + }), + new CountryStatsAfricaItem( + { + code: `COM`, + population: 777000, + workedHours: 40.1, + gDP: 1413, + name: `Comoros` + }), + new CountryStatsAfricaItem( + { + code: `COG`, + population: 4856000, + workedHours: 38.1, + gDP: 5543, + name: `Congo` + }), + new CountryStatsAfricaItem( + { + code: `CIV`, + population: 23226000, + workedHours: 39.7, + gDP: 3242, + name: `Cote Ivoire` + }), + new CountryStatsAfricaItem( + { + code: `COD`, + population: 76245000, + workedHours: 44, + gDP: 812, + name: `Democratic Republic of Congo` + }), + new CountryStatsAfricaItem( + { + code: `EGY`, + population: 92443000, + workedHours: 39.7, + gDP: 10096, + name: `Egypt` + }), + new CountryStatsAfricaItem( + { + code: `GNQ`, + population: 1169000, + workedHours: 38.8, + gDP: 27554, + name: `Equatorial Guinea` + }), + new CountryStatsAfricaItem( + { + code: `SWZ`, + population: 1104000, + workedHours: 45.7, + gDP: 7759, + name: `Eswatini` + }), + new CountryStatsAfricaItem( + { + code: `ETH`, + population: 101000000, + workedHours: 40.1, + gDP: 1533, + name: `Ethiopia` + }), + new CountryStatsAfricaItem( + { + code: `GAB`, + population: 1948000, + workedHours: 40.5, + gDP: 16837, + name: `Gabon` + }), + new CountryStatsAfricaItem( + { + code: `GMB`, + population: 2086000, + workedHours: 40.3, + gDP: 1568, + name: `Gambia` + }), + new CountryStatsAfricaItem( + { + code: `GHA`, + population: 27849000, + workedHours: 47.6, + gDP: 3927, + name: `Ghana` + }), + new CountryStatsAfricaItem( + { + code: `GIN`, + population: 11432000, + workedHours: 43.4, + gDP: 1758, + name: `Guinea` + }), + new CountryStatsAfricaItem( + { + code: `GNB`, + population: 1737000, + workedHours: 35.1, + gDP: 1446, + name: `Guinea-Bissau` + }), + new CountryStatsAfricaItem( + { + code: `KEN`, + population: 47878000, + workedHours: 43.9, + gDP: 2836, + name: `Kenya` + }), + new CountryStatsAfricaItem( + { + code: `LSO`, + population: 2059000, + workedHours: 47.6, + gDP: 2708, + name: `Lesotho` + }), + new CountryStatsAfricaItem( + { + code: `LBR`, + population: 4472000, + workedHours: 40.3, + gDP: 785, + name: `Liberia` + }), + new CountryStatsAfricaItem( + { + code: `LBY`, + population: 6418000, + workedHours: 42.5, + gDP: 14847, + name: `Libya` + }), + new CountryStatsAfricaItem( + { + code: `MDG`, + population: 24234000, + workedHours: 40.8, + gDP: 1377, + name: `Madagascar` + }), + new CountryStatsAfricaItem( + { + code: `MWI`, + population: 16745000, + workedHours: 44.5, + gDP: 1089, + name: `Malawi` + }), + new CountryStatsAfricaItem( + { + code: `MLI`, + population: 17439000, + workedHours: 40.6, + gDP: 1919, + name: `Mali` + }), + new CountryStatsAfricaItem( + { + code: `MRT`, + population: 4046000, + workedHours: 45.9, + gDP: 3602, + name: `Mauritania` + }), + new CountryStatsAfricaItem( + { + code: `MUS`, + population: 1259000, + workedHours: 44.4, + gDP: 18864, + name: `Mauritius` + }), + new CountryStatsAfricaItem( + { + code: `MAR`, + population: 34664000, + workedHours: 39.6, + gDP: 7297, + name: `Morocco` + }), + new CountryStatsAfricaItem( + { + code: `MOZ`, + population: 27042000, + workedHours: 46.7, + gDP: 1118, + name: `Mozambique` + }), + new CountryStatsAfricaItem( + { + code: `NAM`, + population: 2315000, + workedHours: 43.1, + gDP: 9975, + name: `Namibia` + }), + new CountryStatsAfricaItem( + { + code: `NER`, + population: 20002000, + workedHours: 45, + gDP: 908, + name: `Niger` + }), + new CountryStatsAfricaItem( + { + code: `NGA`, + population: 181000000, + workedHours: 32.76, + gDP: 5671, + name: `Nigeria` + }), + new CountryStatsAfricaItem( + { + code: `RWA`, + population: 11369000, + workedHours: 46.3, + gDP: 1731, + name: `Rwanda` + }), + new CountryStatsAfricaItem( + { + code: `STP`, + population: 199000, + workedHours: 38.2, + gDP: 2948, + name: `Sao Tome` + }), + new CountryStatsAfricaItem( + { + code: `SEN`, + population: 14578000, + workedHours: 46.8, + gDP: 2294, + name: `Senegal` + }), + new CountryStatsAfricaItem( + { + code: `SYC`, + population: 95000, + workedHours: 39.8, + gDP: 24857, + name: `Seychelles` + }), + new CountryStatsAfricaItem( + { + code: `SLE`, + population: 7172000, + workedHours: 35.4, + gDP: 1314, + name: `Sierra Leone` + }), + new CountryStatsAfricaItem( + { + code: `ZAF`, + population: 55386000, + workedHours: 42.48, + gDP: 12378, + name: `South Africa` + }), + new CountryStatsAfricaItem( + { + code: `SSD`, + population: 10716000, + workedHours: 39.3, + gDP: 1875, + name: `South Sudan` + }), + new CountryStatsAfricaItem( + { + code: `SDN`, + population: 38903000, + workedHours: 36.3, + gDP: 4290, + name: `Sudan` + }), + new CountryStatsAfricaItem( + { + code: `TZA`, + population: 51483000, + workedHours: 38, + gDP: 2491, + name: `Tanzania` + }), + new CountryStatsAfricaItem( + { + code: `TGO`, + population: 7323000, + workedHours: 38.8, + gDP: 1351, + name: `Togo` + }), + new CountryStatsAfricaItem( + { + code: `TUN`, + population: 11180000, + workedHours: 35.2, + gDP: 10766, + name: `Tunisia` + }), + new CountryStatsAfricaItem( + { + code: `UGA`, + population: 38225000, + workedHours: 38.6, + gDP: 1666, + name: `Uganda` + }), + new CountryStatsAfricaItem( + { + code: `ZMB`, + population: 15879000, + workedHours: 46.6, + gDP: 3627, + name: `Zambia` + }), + new CountryStatsAfricaItem( + { + code: `ZWE`, + population: 13815000, + workedHours: 41.4, + gDP: 1912, + name: `Zimbabwe` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts index d49d40fe1..1a6694629 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts @@ -2,7 +2,7 @@ export class CountryStatsEuropeItem { public constructor(init: Partial) { Object.assign(this, init); } - + public code: string; public population: number; public workedHours: number; @@ -11,247 +11,341 @@ export class CountryStatsEuropeItem { } export class CountryStatsEurope extends Array { - public constructor() { - super(); - this.push(new CountryStatsEuropeItem( - { - code: `ALB`, - population: 2891000, - workedHours: 41, - gDP: 10970, - name: `Albania` - })); - this.push(new CountryStatsEuropeItem( - { - code: `AUT`, - population: 8679000, - workedHours: 30.75, - gDP: 44305, - name: `Austria` - })); - this.push(new CountryStatsEuropeItem( - { - code: `BLR`, - population: 9439000, - workedHours: 43.5, - gDP: 17230, - name: `Belarus` - })); - this.push(new CountryStatsEuropeItem( - { - code: `BEL`, - population: 11288000, - workedHours: 29.7, - gDP: 41708, - name: `Belgium` - })); - this.push(new CountryStatsEuropeItem( - { - code: `BIH`, - population: 3429000, - workedHours: 46.5, - gDP: 10932, - name: `Bosnia and Herzegovina` - })); - this.push(new CountryStatsEuropeItem( - { - code: `BGR`, - population: 7200000, - workedHours: 31.62, - gDP: 17000, - name: `Bulgaria` - })); - this.push(new CountryStatsEuropeItem( - { - code: `HRV`, - population: 4233000, - workedHours: 35.15, - gDP: 20984, - name: `Croatia` - })); - this.push(new CountryStatsEuropeItem( - { - code: `CYP`, - population: 1161000, - workedHours: 34.42, - gDP: 30549, - name: `Cyprus` - })); - this.push(new CountryStatsEuropeItem( - { - code: `CZE`, - population: 10601000, - workedHours: 33.77, - gDP: 30605, - name: `Czechia` - })); - this.push(new CountryStatsEuropeItem( - { - code: `DNK`, - population: 5689000, - workedHours: 27.16, - gDP: 45459, - name: `Denmark` - })); - this.push(new CountryStatsEuropeItem( - { - code: `EST`, - population: 1315000, - workedHours: 35.61, - gDP: 27550, - name: `Estonia` - })); - this.push(new CountryStatsEuropeItem( - { - code: `FIN`, - population: 5481000, - workedHours: 31.48, - gDP: 38942, - name: `Finland` - })); - this.push(new CountryStatsEuropeItem( - { - code: `FRA`, - population: 64453000, - workedHours: 29.03, - gDP: 37766, - name: `France` - })); - this.push(new CountryStatsEuropeItem( - { - code: `DEU`, - population: 81787000, - workedHours: 26.31, - gDP: 43938, - name: `Germany` - })); - this.push(new CountryStatsEuropeItem( - { - code: `GRC`, - population: 10660000, - workedHours: 39.06, - gDP: 24170, - name: `Greece` - })); - this.push(new CountryStatsEuropeItem( - { - code: `HUN`, - population: 9778000, - workedHours: 36.99, - gDP: 25034, - name: `Hungary` - })); - this.push(new CountryStatsEuropeItem( - { - code: `ISL`, - population: 330000, - workedHours: 29.02, - gDP: 43048, - name: `Iceland` - })); - this.push(new CountryStatsEuropeItem( - { - code: `IRL`, - population: 4652000, - workedHours: 33.47, - gDP: 60818, - name: `Ireland` - })); - this.push(new CountryStatsEuropeItem( - { - code: `ITA`, - population: 60578000, - workedHours: 33.04, - gDP: 34302, - name: `Italy` - })); - this.push(new CountryStatsEuropeItem( - { - code: `LVA`, - population: 1998000, - workedHours: 36.57, - gDP: 23019, - name: `Latvia` - })); - this.push(new CountryStatsEuropeItem( - { - code: `LTU`, - population: 2932000, - workedHours: 35.76, - gDP: 27046, - name: `Lithuania` - })); - this.push(new CountryStatsEuropeItem( - { - code: `LUX`, - population: 567000, - workedHours: 29.25, - gDP: 94089, - name: `Luxembourg` - })); - this.push(new CountryStatsEuropeItem( - { - code: `MLT`, - population: 434000, - workedHours: 37.78, - gDP: 34087, - name: `Malta` - })); - this.push(new CountryStatsEuropeItem( - { - code: `MDA`, - population: 4071000, - workedHours: 41, - gDP: 4747, - name: `Moldova` - })); - this.push(new CountryStatsEuropeItem( - { - code: `MNE`, - population: 627000, - workedHours: 47.2, - gDP: 15290, - name: `Montenegro` - })); - this.push(new CountryStatsEuropeItem( - { - code: `NLD`, - population: 16938000, - workedHours: 27.38, - gDP: 46494, - name: `Netherlands` - })); - this.push(new CountryStatsEuropeItem( - { - code: `MKD`, - population: 2079000, - workedHours: 36.6, - gDP: 12760, - name: `North Macedonia` - })); - this.push(new CountryStatsEuropeItem( - { - code: `NOR`, - population: 5200000, - workedHours: 27.36, - gDP: 64008, - name: `Norway` - })); - this.push(new CountryStatsEuropeItem( - { - code: `POL`, - population: 38034000, - workedHours: 39.4, - gDP: 25300, - name: `Poland` - })); - this.push(new CountryStatsEuropeItem( - { - code: `PRT`, - population: 10368000, - workedHours: 36.06, - gDP: 26608, - name: `Portugal` - })); + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryStatsEuropeItem( + { + code: `ALB`, + population: 2891000, + workedHours: 41, + gDP: 10970, + name: `Albania` + }), + new CountryStatsEuropeItem( + { + code: `AUT`, + population: 8679000, + workedHours: 30.75, + gDP: 44305, + name: `Austria` + }), + new CountryStatsEuropeItem( + { + code: `BLR`, + population: 9439000, + workedHours: 43.5, + gDP: 17230, + name: `Belarus` + }), + new CountryStatsEuropeItem( + { + code: `BEL`, + population: 11288000, + workedHours: 29.7, + gDP: 41708, + name: `Belgium` + }), + new CountryStatsEuropeItem( + { + code: `BIH`, + population: 3429000, + workedHours: 46.5, + gDP: 10932, + name: `Bosnia` + }), + new CountryStatsEuropeItem( + { + code: `BGR`, + population: 7200000, + workedHours: 31.62, + gDP: 17000, + name: `Bulgaria` + }), + new CountryStatsEuropeItem( + { + code: `HRV`, + population: 4233000, + workedHours: 35.15, + gDP: 20984, + name: `Croatia` + }), + new CountryStatsEuropeItem( + { + code: `CYP`, + population: 1161000, + workedHours: 34.42, + gDP: 30549, + name: `Cyprus` + }), + new CountryStatsEuropeItem( + { + code: `CZE`, + population: 10601000, + workedHours: 33.77, + gDP: 30605, + name: `Czechia` + }), + new CountryStatsEuropeItem( + { + code: `DNK`, + population: 5689000, + workedHours: 27.16, + gDP: 45459, + name: `Denmark` + }), + new CountryStatsEuropeItem( + { + code: `EST`, + population: 1315000, + workedHours: 35.61, + gDP: 27550, + name: `Estonia` + }), + new CountryStatsEuropeItem( + { + code: `FIN`, + population: 5481000, + workedHours: 31.48, + gDP: 38942, + name: `Finland` + }), + new CountryStatsEuropeItem( + { + code: `FRA`, + population: 64453000, + workedHours: 29.03, + gDP: 37766, + name: `France` + }), + new CountryStatsEuropeItem( + { + code: `DEU`, + population: 81787000, + workedHours: 26.31, + gDP: 43938, + name: `Germany` + }), + new CountryStatsEuropeItem( + { + code: `GRC`, + population: 10660000, + workedHours: 39.06, + gDP: 24170, + name: `Greece` + }), + new CountryStatsEuropeItem( + { + code: `HUN`, + population: 9778000, + workedHours: 36.99, + gDP: 25034, + name: `Hungary` + }), + new CountryStatsEuropeItem( + { + code: `ISL`, + population: 330000, + workedHours: 29.02, + gDP: 43048, + name: `Iceland` + }), + new CountryStatsEuropeItem( + { + code: `IRL`, + population: 4652000, + workedHours: 33.47, + gDP: 60818, + name: `Ireland` + }), + new CountryStatsEuropeItem( + { + code: `ITA`, + population: 60578000, + workedHours: 33.04, + gDP: 34302, + name: `Italy` + }), + new CountryStatsEuropeItem( + { + code: `LVA`, + population: 1998000, + workedHours: 36.57, + gDP: 23019, + name: `Latvia` + }), + new CountryStatsEuropeItem( + { + code: `LTU`, + population: 2932000, + workedHours: 35.76, + gDP: 27046, + name: `Lithuania` + }), + new CountryStatsEuropeItem( + { + code: `LUX`, + population: 567000, + workedHours: 29.25, + gDP: 94089, + name: `Luxembourg` + }), + new CountryStatsEuropeItem( + { + code: `MLT`, + population: 434000, + workedHours: 37.78, + gDP: 34087, + name: `Malta` + }), + new CountryStatsEuropeItem( + { + code: `MDA`, + population: 4071000, + workedHours: 41, + gDP: 4747, + name: `Moldova` + }), + new CountryStatsEuropeItem( + { + code: `MNE`, + population: 627000, + workedHours: 47.2, + gDP: 15290, + name: `Montenegro` + }), + new CountryStatsEuropeItem( + { + code: `NLD`, + population: 16938000, + workedHours: 27.38, + gDP: 46494, + name: `Netherlands` + }), + new CountryStatsEuropeItem( + { + code: `MKD`, + population: 2079000, + workedHours: 36.6, + gDP: 12760, + name: `North Macedonia` + }), + new CountryStatsEuropeItem( + { + code: `NOR`, + population: 5200000, + workedHours: 27.36, + gDP: 64008, + name: `Norway` + }), + new CountryStatsEuropeItem( + { + code: `POL`, + population: 38034000, + workedHours: 39.4, + gDP: 25300, + name: `Poland` + }), + new CountryStatsEuropeItem( + { + code: `PRT`, + population: 10368000, + workedHours: 36.06, + gDP: 26608, + name: `Portugal` + }), + new CountryStatsEuropeItem( + { + code: `ROU`, + population: 19925000, + workedHours: 34.34, + gDP: 20556, + name: `Romania` + }), + new CountryStatsEuropeItem( + { + code: `RUS`, + population: 145000000, + workedHours: 38.04, + gDP: 24517, + name: `Russia` + }), + new CountryStatsEuropeItem( + { + code: `SMR`, + population: 33000, + workedHours: 40.1, + gDP: 56372, + name: `San Marino` + }), + new CountryStatsEuropeItem( + { + code: `SRB`, + population: 8877000, + workedHours: 46.5, + gDP: 13278, + name: `Serbia` + }), + new CountryStatsEuropeItem( + { + code: `SVK`, + population: 5436000, + workedHours: 33.73, + gDP: 28309, + name: `Slovakia` + }), + new CountryStatsEuropeItem( + { + code: `SVN`, + population: 2071000, + workedHours: 32.46, + gDP: 29038, + name: `Slovenia` + }), + new CountryStatsEuropeItem( + { + code: `ESP`, + population: 46672000, + workedHours: 32.68, + gDP: 32291, + name: `Spain` + }), + new CountryStatsEuropeItem( + { + code: `SWE`, + population: 9765000, + workedHours: 30.96, + gDP: 45679, + name: `Sweden` + }), + new CountryStatsEuropeItem( + { + code: `CHE`, + population: 8297000, + workedHours: 30.57, + gDP: 57264, + name: `Switzerland` + }), + new CountryStatsEuropeItem( + { + code: `UKR`, + population: 44922000, + workedHours: 38.6, + gDP: 7465, + name: `Ukraine` + }), + new CountryStatsEuropeItem( + { + code: `GBR`, + population: 65860000, + workedHours: 32.1, + gDP: 38839, + name: `United Kingdom` + }), + ]; + super(...(newItems.slice(0, items))); + } } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html index 017fb8239..d7da0190e 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html @@ -1,51 +1,54 @@ -
+
Total Population of Selected Countries
+ #legend + orientation="Horizontal">
+ #chart + [legend]="legend"> + #xAxis + title="Population" + isLogarithmic="true" + abbreviateLargeNumbers="true"> + #yAxis + title="GDP per Capita" + isLogarithmic="true" + abbreviateLargeNumbers="true"> + [radiusScale]="SizeScale1"> + [radiusScale]="SizeScale2"> + +
diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.ts index 32610fad1..1da857659 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.ts @@ -1,9 +1,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { CountryStatsAfricaItem, CountryStatsAfrica } from './CountryStatsAfrica'; import { CountryStatsEuropeItem, CountryStatsEurope } from './CountryStatsEurope'; -import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent } from 'igniteui-angular-charts'; - - +import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent, IgxSizeScaleComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ selector: "app-root", @@ -11,25 +9,50 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, Ig templateUrl: "./app.component.html", changeDetection: ChangeDetectionStrategy.OnPush }) -export class AppComponent { - public constructor(private _detector: ChangeDetectorRef) { +export class AppComponent implements AfterViewInit +{ - } + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("bubbleSeries1", { static: true } ) + private bubbleSeries1: IgxBubbleSeriesComponent + private _sizeScale1: IgxSizeScaleComponent | null = null; + public get sizeScale1(): IgxSizeScaleComponent { + if (this._sizeScale1 == null) + { + var sizeScale1 = new IgxSizeScaleComponent(); + sizeScale1.isLogarithmic = false; + sizeScale1.minimumValue = 10; + sizeScale1.maximumValue = 50; - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent - @ViewChild("chart", { static: true } ) - private chart: IgxDataChartComponent - @ViewChild("xAxis", { static: true } ) - private xAxis: IgxNumericXAxisComponent - @ViewChild("yAxis", { static: true } ) - private yAxis: IgxNumericYAxisComponent - @ViewChild("bubbleSeries1", { static: true } ) - private bubbleSeries1: IgxBubbleSeriesComponent - @ViewChild("bubbleSeries2", { static: true } ) - private bubbleSeries2: IgxBubbleSeriesComponent + this._sizeScale1 = sizeScale1; + } + return this._sizeScale1; + } + @ViewChild("bubbleSeries2", { static: true } ) + private bubbleSeries2: IgxBubbleSeriesComponent + private _sizeScale2: IgxSizeScaleComponent | null = null; + public get sizeScale2(): IgxSizeScaleComponent { + if (this._sizeScale2 == null) + { + var sizeScale2 = new IgxSizeScaleComponent(); + sizeScale2.isLogarithmic = false; + sizeScale2.minimumValue = 10; + sizeScale2.maximumValue = 50; + this._sizeScale2 = sizeScale2; + } + return this._sizeScale2; + } + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _countryStatsAfrica: CountryStatsAfrica = null; public get countryStatsAfrica(): CountryStatsAfrica { if (this._countryStatsAfrica == null) @@ -38,7 +61,7 @@ export class AppComponent { } return this._countryStatsAfrica; } - + private _countryStatsEurope: CountryStatsEurope = null; public get countryStatsEurope(): CountryStatsEurope { if (this._countryStatsEurope == null) @@ -47,8 +70,14 @@ export class AppComponent { } return this._countryStatsEurope; } - + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.module.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.module.ts index 6717c1807..1b1ee4232 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.module.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.module.ts @@ -5,13 +5,12 @@ import { BrowserModule } from "@angular/platform-browser"; import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; import { AppComponent } from "./app.component"; - -import { IgxLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCoreModule, IgxDataChartScatterModule, IgxDataChartScatterCoreModule, IgxDataChartInteractivityModule } from 'igniteui-angular-charts'; +import { IgxLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCoreModule, IgxDataChartScatterModule, IgxDataChartScatterCoreModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule } from 'igniteui-angular-charts'; @NgModule({ bootstrap: [AppComponent], declarations: [ - AppComponent, + AppComponent ], imports: [ BrowserModule, @@ -23,7 +22,8 @@ import { IgxLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCoreModule, Ig IgxDataChartCoreModule, IgxDataChartScatterModule, IgxDataChartScatterCoreModule, - IgxDataChartInteractivityModule + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule ], providers: [], schemas: [] diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/index.html b/samples/charts/data-chart/scatter-bubble-chart-styling/src/index.html index 67a35017e..7650dfb64 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/index.html +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/index.html @@ -12,6 +12,7 @@ + diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/styles.scss b/samples/charts/data-chart/scatter-bubble-chart-styling/src/styles.scss index 96c748c09..9b431e92d 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/styles.scss +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/styles.scss @@ -7,4 +7,3 @@ body { margin: 0; box-sizing: border-box; } - diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/tslint.json b/samples/charts/data-chart/scatter-bubble-chart-styling/tslint.json index 5a3f18e0c..777c777d9 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/tslint.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/tslint.json @@ -4,24 +4,28 @@ "deprecation": { "severity": "warning" }, + "arrow-parens": false, "indent": [true, "spaces"], - "variable-name": [true, "allow-leading-underscore"], "interface-name": [true, "always-prefix"], - "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], - "no-empty": false, + "max-classes-per-file": false, "no-bitwise": false, - "no-object-literal-type-assertion": false, - "no-string-literal": false, + "no-console": false, + "no-empty": false, "no-duplicate-imports": false, - "no-trailing-whitespace": false, "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, "no-submodule-imports": [false], - "max-classes-per-file": false, - "prefer-object-spread": false, - "no-console": false, + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, "prefer-conditional-expression": false, + "prefer-const": false, "prefer-for-of": false, - "arrow-parens": false, - "object-literal-sort-keys": false + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] } } From 16cf4027f670aa9b3b0396f5a254b5811374c14c Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Thu, 28 Mar 2024 14:20:46 -0400 Subject: [PATCH 051/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.3.28.1 (#141) Co-authored-by: tfsbuild --- .../highlighting-behavior/.stackblitzrc | 1 + .../highlighting-behavior/angular.json | 106 ++++++++ .../highlighting-behavior/package.json | 47 ++++ .../highlighting-behavior/sandbox.config.json | 5 + .../src/TemperatureAnnotatedData.ts | 106 ++++++++ .../src/app.component.html | 36 +++ .../src/app.component.scss | 3 + .../src/app.component.ts | 56 ++++ .../highlighting-behavior/src/app.module.ts | 27 ++ .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 + .../src/config/tsconfig.base.json | 24 ++ .../src/config/tsconfig.spec.json | 19 ++ .../src/config/tsconfig.worker.json | 14 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 ++ .../highlighting-behavior/src/index.html | 23 ++ .../highlighting-behavior/src/main.ts | 15 + .../highlighting-behavior/src/polyfills.ts | 65 +++++ .../highlighting-behavior/src/styles.scss | 9 + .../highlighting-behavior/src/typings.d.ts | 5 + .../highlighting-behavior/tsconfig.json | 21 ++ .../highlighting-behavior/tslint.json | 31 +++ .../highlighting-mode/.stackblitzrc | 1 + .../highlighting-mode/angular.json | 106 ++++++++ .../highlighting-mode/package.json | 47 ++++ .../highlighting-mode/sandbox.config.json | 5 + .../src/TemperatureAnnotatedData.ts | 106 ++++++++ .../highlighting-mode/src/app.component.html | 35 +++ .../highlighting-mode/src/app.component.scss | 3 + .../highlighting-mode/src/app.component.ts | 56 ++++ .../highlighting-mode/src/app.module.ts | 27 ++ .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 + .../src/config/tsconfig.base.json | 24 ++ .../src/config/tsconfig.spec.json | 19 ++ .../src/config/tsconfig.worker.json | 14 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 ++ .../highlighting-mode/src/index.html | 23 ++ .../highlighting-mode/src/main.ts | 15 + .../highlighting-mode/src/polyfills.ts | 65 +++++ .../highlighting-mode/src/styles.scss | 9 + .../highlighting-mode/src/typings.d.ts | 5 + .../highlighting-mode/tsconfig.json | 21 ++ .../highlighting-mode/tslint.json | 31 +++ .../legend-highlighting/.stackblitzrc | 1 + .../legend-highlighting/angular.json | 106 ++++++++ .../legend-highlighting/package.json | 44 +++ .../legend-highlighting/sandbox.config.json | 5 + .../src/HighestGrossingMovies.ts | 57 ++++ .../src/app.component.html | 29 ++ .../src/app.component.scss | 3 + .../legend-highlighting/src/app.component.ts | 37 +++ .../legend-highlighting/src/app.module.ts | 26 ++ .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 + .../src/config/tsconfig.base.json | 24 ++ .../src/config/tsconfig.spec.json | 19 ++ .../src/config/tsconfig.worker.json | 14 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 ++ .../legend-highlighting/src/index.html | 23 ++ .../legend-highlighting/src/main.ts | 15 + .../legend-highlighting/src/polyfills.ts | 65 +++++ .../legend-highlighting/src/styles.scss | 9 + .../legend-highlighting/src/typings.d.ts | 5 + .../legend-highlighting/tsconfig.json | 21 ++ .../legend-highlighting/tslint.json | 31 +++ .../data-legend/src/app.component.ts | 1 - .../data-tooltip/src/app.component.ts | 1 - .../src/CountryStatsEurope.ts | 257 ------------------ 72 files changed, 1870 insertions(+), 259 deletions(-) create mode 100644 samples/charts/category-chart/highlighting-behavior/.stackblitzrc create mode 100644 samples/charts/category-chart/highlighting-behavior/angular.json create mode 100644 samples/charts/category-chart/highlighting-behavior/package.json create mode 100644 samples/charts/category-chart/highlighting-behavior/sandbox.config.json create mode 100644 samples/charts/category-chart/highlighting-behavior/src/TemperatureAnnotatedData.ts create mode 100644 samples/charts/category-chart/highlighting-behavior/src/app.component.html create mode 100644 samples/charts/category-chart/highlighting-behavior/src/app.component.scss create mode 100644 samples/charts/category-chart/highlighting-behavior/src/app.component.ts create mode 100644 samples/charts/category-chart/highlighting-behavior/src/app.module.ts create mode 100644 samples/charts/category-chart/highlighting-behavior/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.app.json create mode 100644 samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.base.json create mode 100644 samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.spec.json create mode 100644 samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/highlighting-behavior/src/environments/environment.prod.ts create mode 100644 samples/charts/category-chart/highlighting-behavior/src/environments/environment.ts create mode 100644 samples/charts/category-chart/highlighting-behavior/src/index.html create mode 100644 samples/charts/category-chart/highlighting-behavior/src/main.ts create mode 100644 samples/charts/category-chart/highlighting-behavior/src/polyfills.ts create mode 100644 samples/charts/category-chart/highlighting-behavior/src/styles.scss create mode 100644 samples/charts/category-chart/highlighting-behavior/src/typings.d.ts create mode 100644 samples/charts/category-chart/highlighting-behavior/tsconfig.json create mode 100644 samples/charts/category-chart/highlighting-behavior/tslint.json create mode 100644 samples/charts/category-chart/highlighting-mode/.stackblitzrc create mode 100644 samples/charts/category-chart/highlighting-mode/angular.json create mode 100644 samples/charts/category-chart/highlighting-mode/package.json create mode 100644 samples/charts/category-chart/highlighting-mode/sandbox.config.json create mode 100644 samples/charts/category-chart/highlighting-mode/src/TemperatureAnnotatedData.ts create mode 100644 samples/charts/category-chart/highlighting-mode/src/app.component.html create mode 100644 samples/charts/category-chart/highlighting-mode/src/app.component.scss create mode 100644 samples/charts/category-chart/highlighting-mode/src/app.component.ts create mode 100644 samples/charts/category-chart/highlighting-mode/src/app.module.ts create mode 100644 samples/charts/category-chart/highlighting-mode/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/category-chart/highlighting-mode/src/config/tsconfig.app.json create mode 100644 samples/charts/category-chart/highlighting-mode/src/config/tsconfig.base.json create mode 100644 samples/charts/category-chart/highlighting-mode/src/config/tsconfig.spec.json create mode 100644 samples/charts/category-chart/highlighting-mode/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/highlighting-mode/src/environments/environment.prod.ts create mode 100644 samples/charts/category-chart/highlighting-mode/src/environments/environment.ts create mode 100644 samples/charts/category-chart/highlighting-mode/src/index.html create mode 100644 samples/charts/category-chart/highlighting-mode/src/main.ts create mode 100644 samples/charts/category-chart/highlighting-mode/src/polyfills.ts create mode 100644 samples/charts/category-chart/highlighting-mode/src/styles.scss create mode 100644 samples/charts/category-chart/highlighting-mode/src/typings.d.ts create mode 100644 samples/charts/category-chart/highlighting-mode/tsconfig.json create mode 100644 samples/charts/category-chart/highlighting-mode/tslint.json create mode 100644 samples/charts/category-chart/legend-highlighting/.stackblitzrc create mode 100644 samples/charts/category-chart/legend-highlighting/angular.json create mode 100644 samples/charts/category-chart/legend-highlighting/package.json create mode 100644 samples/charts/category-chart/legend-highlighting/sandbox.config.json create mode 100644 samples/charts/category-chart/legend-highlighting/src/HighestGrossingMovies.ts create mode 100644 samples/charts/category-chart/legend-highlighting/src/app.component.html create mode 100644 samples/charts/category-chart/legend-highlighting/src/app.component.scss create mode 100644 samples/charts/category-chart/legend-highlighting/src/app.component.ts create mode 100644 samples/charts/category-chart/legend-highlighting/src/app.module.ts create mode 100644 samples/charts/category-chart/legend-highlighting/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/category-chart/legend-highlighting/src/config/tsconfig.app.json create mode 100644 samples/charts/category-chart/legend-highlighting/src/config/tsconfig.base.json create mode 100644 samples/charts/category-chart/legend-highlighting/src/config/tsconfig.spec.json create mode 100644 samples/charts/category-chart/legend-highlighting/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/legend-highlighting/src/environments/environment.prod.ts create mode 100644 samples/charts/category-chart/legend-highlighting/src/environments/environment.ts create mode 100644 samples/charts/category-chart/legend-highlighting/src/index.html create mode 100644 samples/charts/category-chart/legend-highlighting/src/main.ts create mode 100644 samples/charts/category-chart/legend-highlighting/src/polyfills.ts create mode 100644 samples/charts/category-chart/legend-highlighting/src/styles.scss create mode 100644 samples/charts/category-chart/legend-highlighting/src/typings.d.ts create mode 100644 samples/charts/category-chart/legend-highlighting/tsconfig.json create mode 100644 samples/charts/category-chart/legend-highlighting/tslint.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-single-source/src/CountryStatsEurope.ts diff --git a/samples/charts/category-chart/highlighting-behavior/.stackblitzrc b/samples/charts/category-chart/highlighting-behavior/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-behavior/angular.json b/samples/charts/category-chart/highlighting-behavior/angular.json new file mode 100644 index 000000000..11ffb8c9c --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json new file mode 100644 index 000000000..1b3c2b4cb --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -0,0 +1,47 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", + "igniteui-webcomponents": "4.7.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "9.1.1", + "typescript": "5.2.2" + } +} diff --git a/samples/charts/category-chart/highlighting-behavior/sandbox.config.json b/samples/charts/category-chart/highlighting-behavior/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-behavior/src/TemperatureAnnotatedData.ts b/samples/charts/category-chart/highlighting-behavior/src/TemperatureAnnotatedData.ts new file mode 100644 index 000000000..8524db1df --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/src/TemperatureAnnotatedData.ts @@ -0,0 +1,106 @@ +export class TemperatureAnnotatedDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public index: number; + public tempInfo: string; + public temperature: number; + public month: string; + +} +export class TemperatureAnnotatedData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new TemperatureAnnotatedDataItem( + { + index: 0, + tempInfo: `27°C`, + temperature: 27, + month: `Jan` + }), + new TemperatureAnnotatedDataItem( + { + index: 1, + tempInfo: `25°C`, + temperature: 25, + month: `Feb` + }), + new TemperatureAnnotatedDataItem( + { + index: 2, + tempInfo: `21°C`, + temperature: 21, + month: `Mar` + }), + new TemperatureAnnotatedDataItem( + { + index: 3, + tempInfo: `19°C`, + temperature: 19, + month: `Apr` + }), + new TemperatureAnnotatedDataItem( + { + index: 4, + tempInfo: `16°C`, + temperature: 16, + month: `May` + }), + new TemperatureAnnotatedDataItem( + { + index: 5, + tempInfo: `13°C`, + temperature: 13, + month: `Jun` + }), + new TemperatureAnnotatedDataItem( + { + index: 6, + tempInfo: `14°C`, + temperature: 14, + month: `Jul` + }), + new TemperatureAnnotatedDataItem( + { + index: 7, + tempInfo: `15°C`, + temperature: 15, + month: `Aug` + }), + new TemperatureAnnotatedDataItem( + { + index: 8, + tempInfo: `19°C`, + temperature: 19, + month: `Sep` + }), + new TemperatureAnnotatedDataItem( + { + index: 9, + tempInfo: `22°C`, + temperature: 22, + month: `Oct` + }), + new TemperatureAnnotatedDataItem( + { + index: 10, + tempInfo: `26°C`, + temperature: 26, + month: `Nov` + }), + new TemperatureAnnotatedDataItem( + { + index: 11, + tempInfo: `30°C`, + temperature: 30, + month: `Dec` + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/category-chart/highlighting-behavior/src/app.component.html b/samples/charts/category-chart/highlighting-behavior/src/app.component.html new file mode 100644 index 000000000..6fa8551eb --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/src/app.component.html @@ -0,0 +1,36 @@ +
+
+ + + + +
+
+ + +
+
diff --git a/samples/charts/category-chart/highlighting-behavior/src/app.component.scss b/samples/charts/category-chart/highlighting-behavior/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/category-chart/highlighting-behavior/src/app.component.ts b/samples/charts/category-chart/highlighting-behavior/src/app.component.ts new file mode 100644 index 000000000..daf7721f3 --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/src/app.component.ts @@ -0,0 +1,56 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; +import { TemperatureAnnotatedDataItem, TemperatureAnnotatedData } from './TemperatureAnnotatedData'; +import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("highlightingBehaviorEditor", { static: true } ) + private highlightingBehaviorEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent + private _temperatureAnnotatedData: TemperatureAnnotatedData = null; + public get temperatureAnnotatedData(): TemperatureAnnotatedData { + if (this._temperatureAnnotatedData == null) + { + this._temperatureAnnotatedData = new TemperatureAnnotatedData(); + } + return this._temperatureAnnotatedData; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + CategoryChartDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/category-chart/highlighting-behavior/src/app.module.ts b/samples/charts/category-chart/highlighting-behavior/src/app.module.ts new file mode 100644 index 000000000..1cdbd60b2 --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/src/app.module.ts @@ -0,0 +1,27 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxCategoryChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxCategoryChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.app.json b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.base.json b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.spec.json b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.worker.json b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/category-chart/highlighting-behavior/src/environments/environment.prod.ts b/samples/charts/category-chart/highlighting-behavior/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/category-chart/highlighting-behavior/src/environments/environment.ts b/samples/charts/category-chart/highlighting-behavior/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/category-chart/highlighting-behavior/src/index.html b/samples/charts/category-chart/highlighting-behavior/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/category-chart/highlighting-behavior/src/main.ts b/samples/charts/category-chart/highlighting-behavior/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/category-chart/highlighting-behavior/src/polyfills.ts b/samples/charts/category-chart/highlighting-behavior/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/category-chart/highlighting-behavior/src/styles.scss b/samples/charts/category-chart/highlighting-behavior/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/category-chart/highlighting-behavior/src/typings.d.ts b/samples/charts/category-chart/highlighting-behavior/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/category-chart/highlighting-behavior/tsconfig.json b/samples/charts/category-chart/highlighting-behavior/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-behavior/tslint.json b/samples/charts/category-chart/highlighting-behavior/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/category-chart/highlighting-mode/.stackblitzrc b/samples/charts/category-chart/highlighting-mode/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-mode/angular.json b/samples/charts/category-chart/highlighting-mode/angular.json new file mode 100644 index 000000000..11ffb8c9c --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json new file mode 100644 index 000000000..1b3c2b4cb --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -0,0 +1,47 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "igniteui-angular-inputs": "17.2.1", + "igniteui-angular-layouts": "17.2.1", + "igniteui-webcomponents": "4.7.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "9.1.1", + "typescript": "5.2.2" + } +} diff --git a/samples/charts/category-chart/highlighting-mode/sandbox.config.json b/samples/charts/category-chart/highlighting-mode/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-mode/src/TemperatureAnnotatedData.ts b/samples/charts/category-chart/highlighting-mode/src/TemperatureAnnotatedData.ts new file mode 100644 index 000000000..8524db1df --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/src/TemperatureAnnotatedData.ts @@ -0,0 +1,106 @@ +export class TemperatureAnnotatedDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public index: number; + public tempInfo: string; + public temperature: number; + public month: string; + +} +export class TemperatureAnnotatedData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new TemperatureAnnotatedDataItem( + { + index: 0, + tempInfo: `27°C`, + temperature: 27, + month: `Jan` + }), + new TemperatureAnnotatedDataItem( + { + index: 1, + tempInfo: `25°C`, + temperature: 25, + month: `Feb` + }), + new TemperatureAnnotatedDataItem( + { + index: 2, + tempInfo: `21°C`, + temperature: 21, + month: `Mar` + }), + new TemperatureAnnotatedDataItem( + { + index: 3, + tempInfo: `19°C`, + temperature: 19, + month: `Apr` + }), + new TemperatureAnnotatedDataItem( + { + index: 4, + tempInfo: `16°C`, + temperature: 16, + month: `May` + }), + new TemperatureAnnotatedDataItem( + { + index: 5, + tempInfo: `13°C`, + temperature: 13, + month: `Jun` + }), + new TemperatureAnnotatedDataItem( + { + index: 6, + tempInfo: `14°C`, + temperature: 14, + month: `Jul` + }), + new TemperatureAnnotatedDataItem( + { + index: 7, + tempInfo: `15°C`, + temperature: 15, + month: `Aug` + }), + new TemperatureAnnotatedDataItem( + { + index: 8, + tempInfo: `19°C`, + temperature: 19, + month: `Sep` + }), + new TemperatureAnnotatedDataItem( + { + index: 9, + tempInfo: `22°C`, + temperature: 22, + month: `Oct` + }), + new TemperatureAnnotatedDataItem( + { + index: 10, + tempInfo: `26°C`, + temperature: 26, + month: `Nov` + }), + new TemperatureAnnotatedDataItem( + { + index: 11, + tempInfo: `30°C`, + temperature: 30, + month: `Dec` + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/category-chart/highlighting-mode/src/app.component.html b/samples/charts/category-chart/highlighting-mode/src/app.component.html new file mode 100644 index 000000000..3ff4b3a23 --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/src/app.component.html @@ -0,0 +1,35 @@ +
+
+ + + + +
+
+ + +
+
diff --git a/samples/charts/category-chart/highlighting-mode/src/app.component.scss b/samples/charts/category-chart/highlighting-mode/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/category-chart/highlighting-mode/src/app.component.ts b/samples/charts/category-chart/highlighting-mode/src/app.component.ts new file mode 100644 index 000000000..f4c1df6dd --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/src/app.component.ts @@ -0,0 +1,56 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; +import { TemperatureAnnotatedDataItem, TemperatureAnnotatedData } from './TemperatureAnnotatedData'; +import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("highlightingModeEditor", { static: true } ) + private highlightingModeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent + private _temperatureAnnotatedData: TemperatureAnnotatedData = null; + public get temperatureAnnotatedData(): TemperatureAnnotatedData { + if (this._temperatureAnnotatedData == null) + { + this._temperatureAnnotatedData = new TemperatureAnnotatedData(); + } + return this._temperatureAnnotatedData; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + CategoryChartDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/category-chart/highlighting-mode/src/app.module.ts b/samples/charts/category-chart/highlighting-mode/src/app.module.ts new file mode 100644 index 000000000..1cdbd60b2 --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/src/app.module.ts @@ -0,0 +1,27 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxCategoryChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxCategoryChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.app.json b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.base.json b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.spec.json b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.worker.json b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/category-chart/highlighting-mode/src/environments/environment.prod.ts b/samples/charts/category-chart/highlighting-mode/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/category-chart/highlighting-mode/src/environments/environment.ts b/samples/charts/category-chart/highlighting-mode/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/category-chart/highlighting-mode/src/index.html b/samples/charts/category-chart/highlighting-mode/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/category-chart/highlighting-mode/src/main.ts b/samples/charts/category-chart/highlighting-mode/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/category-chart/highlighting-mode/src/polyfills.ts b/samples/charts/category-chart/highlighting-mode/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/category-chart/highlighting-mode/src/styles.scss b/samples/charts/category-chart/highlighting-mode/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/category-chart/highlighting-mode/src/typings.d.ts b/samples/charts/category-chart/highlighting-mode/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/category-chart/highlighting-mode/tsconfig.json b/samples/charts/category-chart/highlighting-mode/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-mode/tslint.json b/samples/charts/category-chart/highlighting-mode/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/category-chart/legend-highlighting/.stackblitzrc b/samples/charts/category-chart/legend-highlighting/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/category-chart/legend-highlighting/angular.json b/samples/charts/category-chart/legend-highlighting/angular.json new file mode 100644 index 000000000..11ffb8c9c --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json new file mode 100644 index 000000000..f2b27864d --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "9.1.1", + "typescript": "5.2.2" + } +} diff --git a/samples/charts/category-chart/legend-highlighting/sandbox.config.json b/samples/charts/category-chart/legend-highlighting/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/category-chart/legend-highlighting/src/HighestGrossingMovies.ts b/samples/charts/category-chart/legend-highlighting/src/HighestGrossingMovies.ts new file mode 100644 index 000000000..dea3e62a4 --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/src/HighestGrossingMovies.ts @@ -0,0 +1,57 @@ +export class HighestGrossingMoviesItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public franchise: string; + public totalRevenue: number; + public highestGrossing: number; + +} +export class HighestGrossingMovies extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new HighestGrossingMoviesItem( + { + franchise: `Marvel Universe`, + totalRevenue: 22.55, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Star Wars`, + totalRevenue: 10.32, + highestGrossing: 2.07 + }), + new HighestGrossingMoviesItem( + { + franchise: `Harry Potter`, + totalRevenue: 9.19, + highestGrossing: 1.34 + }), + new HighestGrossingMoviesItem( + { + franchise: `Avengers`, + totalRevenue: 7.76, + highestGrossing: 2.8 + }), + new HighestGrossingMoviesItem( + { + franchise: `Spider Man`, + totalRevenue: 7.22, + highestGrossing: 1.28 + }), + new HighestGrossingMoviesItem( + { + franchise: `James Bond`, + totalRevenue: 7.12, + highestGrossing: 1.11 + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/category-chart/legend-highlighting/src/app.component.html b/samples/charts/category-chart/legend-highlighting/src/app.component.html new file mode 100644 index 000000000..b27619e74 --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/src/app.component.html @@ -0,0 +1,29 @@ +
+
+ Highest Grossing Movie Franchises +
+
+ + +
+
+ + +
+
diff --git a/samples/charts/category-chart/legend-highlighting/src/app.component.scss b/samples/charts/category-chart/legend-highlighting/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/category-chart/legend-highlighting/src/app.component.ts b/samples/charts/category-chart/legend-highlighting/src/app.component.ts new file mode 100644 index 000000000..05ffc0780 --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/src/app.component.ts @@ -0,0 +1,37 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGrossingMovies'; +import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent + private _highestGrossingMovies: HighestGrossingMovies = null; + public get highestGrossingMovies(): HighestGrossingMovies { + if (this._highestGrossingMovies == null) + { + this._highestGrossingMovies = new HighestGrossingMovies(); + } + return this._highestGrossingMovies; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/category-chart/legend-highlighting/src/app.module.ts b/samples/charts/category-chart/legend-highlighting/src/app.module.ts new file mode 100644 index 000000000..8024e2ea7 --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/src/app.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxLegendModule, + IgxCategoryChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.app.json b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.base.json b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.spec.json b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.worker.json b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/category-chart/legend-highlighting/src/environments/environment.prod.ts b/samples/charts/category-chart/legend-highlighting/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/category-chart/legend-highlighting/src/environments/environment.ts b/samples/charts/category-chart/legend-highlighting/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/category-chart/legend-highlighting/src/index.html b/samples/charts/category-chart/legend-highlighting/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/category-chart/legend-highlighting/src/main.ts b/samples/charts/category-chart/legend-highlighting/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/category-chart/legend-highlighting/src/polyfills.ts b/samples/charts/category-chart/legend-highlighting/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/category-chart/legend-highlighting/src/styles.scss b/samples/charts/category-chart/legend-highlighting/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/category-chart/legend-highlighting/src/typings.d.ts b/samples/charts/category-chart/legend-highlighting/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/category-chart/legend-highlighting/tsconfig.json b/samples/charts/category-chart/legend-highlighting/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/category-chart/legend-highlighting/tslint.json b/samples/charts/category-chart/legend-highlighting/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/data-legend/src/app.component.ts b/samples/charts/data-chart/data-legend/src/app.component.ts index bfaa317a5..60b1c7c1e 100644 --- a/samples/charts/data-chart/data-legend/src/app.component.ts +++ b/samples/charts/data-chart/data-legend/src/app.component.ts @@ -51,7 +51,6 @@ export class AppComponent implements AfterViewInit } return this._sizeScale2; } - @ViewChild("crosshairLayer", { static: true } ) private crosshairLayer: IgxCrosshairLayerComponent private _countryDemographicAfrican: CountryDemographicAfrican = null; diff --git a/samples/charts/data-chart/data-tooltip/src/app.component.ts b/samples/charts/data-chart/data-tooltip/src/app.component.ts index 8cf2d2ec8..f24bc5055 100644 --- a/samples/charts/data-chart/data-tooltip/src/app.component.ts +++ b/samples/charts/data-chart/data-tooltip/src/app.component.ts @@ -49,7 +49,6 @@ export class AppComponent implements AfterViewInit } return this._sizeScale2; } - @ViewChild("dataToolTipLayer", { static: true } ) private dataToolTipLayer: IgxDataToolTipLayerComponent private _countryDemographicAfrican: CountryDemographicAfrican = null; diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/CountryStatsEurope.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/CountryStatsEurope.ts deleted file mode 100644 index d49d40fe1..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/CountryStatsEurope.ts +++ /dev/null @@ -1,257 +0,0 @@ -export class CountryStatsEuropeItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public code: string; - public population: number; - public workedHours: number; - public gDP: number; - public name: string; - -} -export class CountryStatsEurope extends Array { - public constructor() { - super(); - this.push(new CountryStatsEuropeItem( - { - code: `ALB`, - population: 2891000, - workedHours: 41, - gDP: 10970, - name: `Albania` - })); - this.push(new CountryStatsEuropeItem( - { - code: `AUT`, - population: 8679000, - workedHours: 30.75, - gDP: 44305, - name: `Austria` - })); - this.push(new CountryStatsEuropeItem( - { - code: `BLR`, - population: 9439000, - workedHours: 43.5, - gDP: 17230, - name: `Belarus` - })); - this.push(new CountryStatsEuropeItem( - { - code: `BEL`, - population: 11288000, - workedHours: 29.7, - gDP: 41708, - name: `Belgium` - })); - this.push(new CountryStatsEuropeItem( - { - code: `BIH`, - population: 3429000, - workedHours: 46.5, - gDP: 10932, - name: `Bosnia and Herzegovina` - })); - this.push(new CountryStatsEuropeItem( - { - code: `BGR`, - population: 7200000, - workedHours: 31.62, - gDP: 17000, - name: `Bulgaria` - })); - this.push(new CountryStatsEuropeItem( - { - code: `HRV`, - population: 4233000, - workedHours: 35.15, - gDP: 20984, - name: `Croatia` - })); - this.push(new CountryStatsEuropeItem( - { - code: `CYP`, - population: 1161000, - workedHours: 34.42, - gDP: 30549, - name: `Cyprus` - })); - this.push(new CountryStatsEuropeItem( - { - code: `CZE`, - population: 10601000, - workedHours: 33.77, - gDP: 30605, - name: `Czechia` - })); - this.push(new CountryStatsEuropeItem( - { - code: `DNK`, - population: 5689000, - workedHours: 27.16, - gDP: 45459, - name: `Denmark` - })); - this.push(new CountryStatsEuropeItem( - { - code: `EST`, - population: 1315000, - workedHours: 35.61, - gDP: 27550, - name: `Estonia` - })); - this.push(new CountryStatsEuropeItem( - { - code: `FIN`, - population: 5481000, - workedHours: 31.48, - gDP: 38942, - name: `Finland` - })); - this.push(new CountryStatsEuropeItem( - { - code: `FRA`, - population: 64453000, - workedHours: 29.03, - gDP: 37766, - name: `France` - })); - this.push(new CountryStatsEuropeItem( - { - code: `DEU`, - population: 81787000, - workedHours: 26.31, - gDP: 43938, - name: `Germany` - })); - this.push(new CountryStatsEuropeItem( - { - code: `GRC`, - population: 10660000, - workedHours: 39.06, - gDP: 24170, - name: `Greece` - })); - this.push(new CountryStatsEuropeItem( - { - code: `HUN`, - population: 9778000, - workedHours: 36.99, - gDP: 25034, - name: `Hungary` - })); - this.push(new CountryStatsEuropeItem( - { - code: `ISL`, - population: 330000, - workedHours: 29.02, - gDP: 43048, - name: `Iceland` - })); - this.push(new CountryStatsEuropeItem( - { - code: `IRL`, - population: 4652000, - workedHours: 33.47, - gDP: 60818, - name: `Ireland` - })); - this.push(new CountryStatsEuropeItem( - { - code: `ITA`, - population: 60578000, - workedHours: 33.04, - gDP: 34302, - name: `Italy` - })); - this.push(new CountryStatsEuropeItem( - { - code: `LVA`, - population: 1998000, - workedHours: 36.57, - gDP: 23019, - name: `Latvia` - })); - this.push(new CountryStatsEuropeItem( - { - code: `LTU`, - population: 2932000, - workedHours: 35.76, - gDP: 27046, - name: `Lithuania` - })); - this.push(new CountryStatsEuropeItem( - { - code: `LUX`, - population: 567000, - workedHours: 29.25, - gDP: 94089, - name: `Luxembourg` - })); - this.push(new CountryStatsEuropeItem( - { - code: `MLT`, - population: 434000, - workedHours: 37.78, - gDP: 34087, - name: `Malta` - })); - this.push(new CountryStatsEuropeItem( - { - code: `MDA`, - population: 4071000, - workedHours: 41, - gDP: 4747, - name: `Moldova` - })); - this.push(new CountryStatsEuropeItem( - { - code: `MNE`, - population: 627000, - workedHours: 47.2, - gDP: 15290, - name: `Montenegro` - })); - this.push(new CountryStatsEuropeItem( - { - code: `NLD`, - population: 16938000, - workedHours: 27.38, - gDP: 46494, - name: `Netherlands` - })); - this.push(new CountryStatsEuropeItem( - { - code: `MKD`, - population: 2079000, - workedHours: 36.6, - gDP: 12760, - name: `North Macedonia` - })); - this.push(new CountryStatsEuropeItem( - { - code: `NOR`, - population: 5200000, - workedHours: 27.36, - gDP: 64008, - name: `Norway` - })); - this.push(new CountryStatsEuropeItem( - { - code: `POL`, - population: 38034000, - workedHours: 39.4, - gDP: 25300, - name: `Poland` - })); - this.push(new CountryStatsEuropeItem( - { - code: `PRT`, - population: 10368000, - workedHours: 36.06, - gDP: 26608, - name: `Portugal` - })); - } -} From a3f24d6d6f9be3e43d30bd554c83325974f36614 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Thu, 28 Mar 2024 14:21:14 -0400 Subject: [PATCH 052/154] mdd-optical-scaling (#142) mdd-optical-scaling --- .../optical-scaling/.stackblitzrc | 1 + .../radial-gauge/optical-scaling/ReadMe.md | 58 ++++++++++ .../radial-gauge/optical-scaling/angular.json | 109 ++++++++++++++++++ .../radial-gauge/optical-scaling/package.json | 44 +++++++ .../optical-scaling/sandbox.config.json | 5 + .../src/app/app.component.html | 19 +++ .../src/app/app.component.scss | 3 + .../optical-scaling/src/app/app.component.ts | 39 +++++++ .../optical-scaling/src/app/app.module.ts | 26 +++++ .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 ++ .../src/config/tsconfig.base.json | 24 ++++ .../src/config/tsconfig.spec.json | 19 +++ .../src/config/tsconfig.worker.json | 14 +++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../optical-scaling/src/index.html | 22 ++++ .../radial-gauge/optical-scaling/src/main.ts | 15 +++ .../optical-scaling/src/polyfills.ts | 65 +++++++++++ .../optical-scaling/src/styles.scss | 9 ++ .../optical-scaling/src/typings.d.ts | 5 + .../optical-scaling/tsconfig.json | 21 ++++ 22 files changed, 535 insertions(+) create mode 100644 samples/gauges/radial-gauge/optical-scaling/.stackblitzrc create mode 100644 samples/gauges/radial-gauge/optical-scaling/ReadMe.md create mode 100644 samples/gauges/radial-gauge/optical-scaling/angular.json create mode 100644 samples/gauges/radial-gauge/optical-scaling/package.json create mode 100644 samples/gauges/radial-gauge/optical-scaling/sandbox.config.json create mode 100644 samples/gauges/radial-gauge/optical-scaling/src/app/app.component.html create mode 100644 samples/gauges/radial-gauge/optical-scaling/src/app/app.component.scss create mode 100644 samples/gauges/radial-gauge/optical-scaling/src/app/app.component.ts create mode 100644 samples/gauges/radial-gauge/optical-scaling/src/app/app.module.ts create mode 100644 samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig-es5.app.json create mode 100644 samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.app.json create mode 100644 samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.base.json create mode 100644 samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.spec.json create mode 100644 samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.worker.json create mode 100644 samples/gauges/radial-gauge/optical-scaling/src/environments/environment.prod.ts create mode 100644 samples/gauges/radial-gauge/optical-scaling/src/environments/environment.ts create mode 100644 samples/gauges/radial-gauge/optical-scaling/src/index.html create mode 100644 samples/gauges/radial-gauge/optical-scaling/src/main.ts create mode 100644 samples/gauges/radial-gauge/optical-scaling/src/polyfills.ts create mode 100644 samples/gauges/radial-gauge/optical-scaling/src/styles.scss create mode 100644 samples/gauges/radial-gauge/optical-scaling/src/typings.d.ts create mode 100644 samples/gauges/radial-gauge/optical-scaling/tsconfig.json diff --git a/samples/gauges/radial-gauge/optical-scaling/.stackblitzrc b/samples/gauges/radial-gauge/optical-scaling/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/optical-scaling/ReadMe.md b/samples/gauges/radial-gauge/optical-scaling/ReadMe.md new file mode 100644 index 000000000..fdb669f58 --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Labels feature using [RadialGauge](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/gauges/radial-gauge/labels +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/gauges/radial-gauge/optical-scaling/angular.json b/samples/gauges/radial-gauge/optical-scaling/angular.json new file mode 100644 index 000000000..0e17c5c1f --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/angular.json @@ -0,0 +1,109 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + }, + "cli": { + "analytics": false + } +} diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json new file mode 100644 index 000000000..3091bc2ec --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "@infragistics/igniteui-angular-core": "23.2.174", + "@infragistics/igniteui-angular-gauges": "23.2.174", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "9.1.1", + "tslint": "~6.1.3", + "typescript": "5.2.2" + } +} diff --git a/samples/gauges/radial-gauge/optical-scaling/sandbox.config.json b/samples/gauges/radial-gauge/optical-scaling/sandbox.config.json new file mode 100644 index 000000000..00acba0c1 --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/optical-scaling/src/app/app.component.html b/samples/gauges/radial-gauge/optical-scaling/src/app/app.component.html new file mode 100644 index 000000000..e01224849 --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/src/app/app.component.html @@ -0,0 +1,19 @@ +
+
+ + + +
+ + + +
diff --git a/samples/gauges/radial-gauge/optical-scaling/src/app/app.component.scss b/samples/gauges/radial-gauge/optical-scaling/src/app/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/src/app/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/gauges/radial-gauge/optical-scaling/src/app/app.component.ts b/samples/gauges/radial-gauge/optical-scaling/src/app/app.component.ts new file mode 100644 index 000000000..0bf6e36a3 --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/src/app/app.component.ts @@ -0,0 +1,39 @@ +import { Component, OnInit, ViewChild } from "@angular/core"; +// radial gauge imports +import { IgxRadialGaugeComponent } from "igniteui-angular-gauges"; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html" +}) +export class AppComponent implements OnInit { + + @ViewChild("radialGauge", { static: true }) + public radialGauge: IgxRadialGaugeComponent; + + public ngOnInit(): void { + + // changing defaults to highlight current feature + this.radialGauge.scaleBrush = "#e8e8e8"; + } + + public onOpticalScalingChanged = (e: any) => { + const isEnabled = e.target.checked; + this.radialGauge.opticalScalingEnabled = isEnabled; + + if (isEnabled) { + this.radialGauge.opticalScalingEnabled = true; + } + else { + this.radialGauge.opticalScalingEnabled = false; + } + } + + public onGaugeSizeChanged = (e: any) => { + + let num: number = parseInt(e.target.value); + this.radialGauge.width = num.toString() + "%"; + this.radialGauge.height = num.toString() + "%"; + } +} diff --git a/samples/gauges/radial-gauge/optical-scaling/src/app/app.module.ts b/samples/gauges/radial-gauge/optical-scaling/src/app/app.module.ts new file mode 100644 index 000000000..475cc318f --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/src/app/app.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; +import { IgxRadialGaugeModule } from "igniteui-angular-gauges"; + + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent, + +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxRadialGaugeModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.app.json b/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.spec.json b/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/gauges/radial-gauge/optical-scaling/src/environments/environment.prod.ts b/samples/gauges/radial-gauge/optical-scaling/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/gauges/radial-gauge/optical-scaling/src/environments/environment.ts b/samples/gauges/radial-gauge/optical-scaling/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/gauges/radial-gauge/optical-scaling/src/index.html b/samples/gauges/radial-gauge/optical-scaling/src/index.html new file mode 100644 index 000000000..67a35017e --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/src/index.html @@ -0,0 +1,22 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + diff --git a/samples/gauges/radial-gauge/optical-scaling/src/main.ts b/samples/gauges/radial-gauge/optical-scaling/src/main.ts new file mode 100644 index 000000000..8b0ce4164 --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app/app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/gauges/radial-gauge/optical-scaling/src/polyfills.ts b/samples/gauges/radial-gauge/optical-scaling/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/gauges/radial-gauge/optical-scaling/src/styles.scss b/samples/gauges/radial-gauge/optical-scaling/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/gauges/radial-gauge/optical-scaling/src/typings.d.ts b/samples/gauges/radial-gauge/optical-scaling/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/gauges/radial-gauge/optical-scaling/tsconfig.json b/samples/gauges/radial-gauge/optical-scaling/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file From cce9d13aaaf23942c5ab012c05bc065599f21023 Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Thu, 28 Mar 2024 16:38:40 -0400 Subject: [PATCH 053/154] export fix --- .../scatter-bubble-chart-fill-scale/src/app.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts index 8621fb96e..4348e8d6a 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts @@ -56,7 +56,7 @@ export class AppComponent implements AfterViewInit valueBrushScale1.isLogarithmic = false; valueBrushScale1.minimumValue = 0; valueBrushScale1.maximumValue = 100000; - valueBrushScale1.brushes = "rgba(26, 161, 226, 1) rgba(24, 154, 217, 1) rgba(22, 146, 206, 1) rgba(19, 133, 188, 1) rgba(15, 121, 171, 1) rgba(12, 107, 153, 1) rgba(9, 94, 136, 1) rgba(5, 82, 119, 1) rgba(2, 70, 105, 1) rgba(0, 63, 94, 1)"; + valueBrushScale1.brushes = ["rgba(26, 161, 226, 1)", "rgba(24, 154, 217, 1)", "rgba(22, 146, 206, 1)", "rgba(19, 133, 188, 1)", "rgba(15, 121, 171, 1)", "rgba(12, 107, 153, 1)", "rgba(9, 94, 136, 1)", "rgba(5, 82, 119, 1)", "rgba(2, 70, 105, 1)", "rgba(0, 63, 94, 1)"]; this._valueBrushScale1 = valueBrushScale1; } From 7839a96ebfbe4aa2d9158b75a42496dcf3dceba9 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Fri, 29 Mar 2024 12:58:23 -0400 Subject: [PATCH 054/154] mdd-update-17.3 beta (#145) mdd-update-17.3 beta --- browser/package.json | 18 +++--- browser/scripts/browser.js | 20 +++---- browser/src/browser-info.json | 18 +++--- .../annotations-all/package.json | 8 +-- .../annotations-callouts/package.json | 8 +-- .../annotations-crosshairs/package.json | 8 +-- .../annotations-custom/package.json | 8 +-- .../annotations-final-value/package.json | 8 +-- .../annotations-highlighting/package.json | 8 +-- .../category-chart/annotations/package.json | 4 +- .../area-chart-multiple-sources/package.json | 4 +- .../area-chart-single-source/package.json | 4 +- .../area-chart-styling/package.json | 4 +- .../category-chart/axis-gap/package.json | 8 +-- .../axis-gridlines/package.json | 8 +-- .../category-chart/axis-inverted/package.json | 8 +-- .../category-chart/axis-labels/package.json | 8 +-- .../axis-locations/package.json | 8 +-- .../category-chart/axis-options/package.json | 4 +- .../category-chart/axis-overlap/package.json | 8 +-- .../category-chart/axis-range/package.json | 8 +-- .../axis-tickmarks/package.json | 8 +-- .../category-chart/axis-titles/package.json | 4 +- .../chart-highlight-filter/package.json | 8 +-- .../package.json | 4 +- .../column-chart-single-source/package.json | 4 +- .../column-chart-styling/package.json | 4 +- .../package.json | 4 +- .../column-chart-with-tooltips/package.json | 8 +-- .../custom-selection/package.json | 4 +- .../data-aggregations/package.json | 8 +-- .../category-chart/data-filter/ReadMe.md | 58 +++++++++++++++++++ .../category-chart/data-filter/package.json | 8 +-- .../package.json | 4 +- .../category-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-positioning/package.json | 8 +-- .../category-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 8 +-- .../high-frequency/package.json | 4 +- .../category-chart/high-volume/package.json | 4 +- .../highlighting-behavior/ReadMe.md | 58 +++++++++++++++++++ .../highlighting-behavior/package.json | 8 +-- .../highlighting-mode/ReadMe.md | 58 +++++++++++++++++++ .../highlighting-mode/package.json | 8 +-- .../category-chart/highlighting/package.json | 4 +- .../legend-highlighting/ReadMe.md | 58 +++++++++++++++++++ .../legend-highlighting/package.json | 4 +- .../line-chart-multiple-sources/package.json | 4 +- .../line-chart-single-source/package.json | 4 +- .../line-chart-styling/package.json | 4 +- .../line-chart-with-animations/package.json | 4 +- .../line-chart-with-annotations/package.json | 4 +- .../line-chart-with-legend/package.json | 4 +- .../marker-options/package.json | 8 +-- .../marker-templates/package.json | 4 +- .../category-chart/overview/package.json | 4 +- .../point-chart-multiple-sources/package.json | 4 +- .../point-chart-single-source/package.json | 4 +- .../point-chart-styling/package.json | 4 +- .../spline-area-multiple-sources/package.json | 4 +- .../spline-area-single-source/package.json | 4 +- .../spline-area-styling/package.json | 4 +- .../spline-multiple-sources/package.json | 4 +- .../spline-single-source/package.json | 4 +- .../spline-styling/package.json | 4 +- .../category-chart/stack-columns/package.json | 4 +- .../step-area-multiple-sources/package.json | 4 +- .../step-area-single-source/package.json | 4 +- .../step-area-styling/package.json | 4 +- .../step-line-multiple-sources/package.json | 4 +- .../step-line-single-source/package.json | 4 +- .../step-line-styling/package.json | 4 +- .../tooltip-template/package.json | 4 +- .../category-chart/tooltip-types/package.json | 4 +- .../category-chart/trendline/package.json | 4 +- .../category-chart/value-lines/package.json | 8 +-- .../annotations-custom/package.json | 4 +- .../package.json | 4 +- .../data-chart/axis-annotations/package.json | 4 +- .../data-chart/axis-crossing/package.json | 4 +- .../axis-label-rotation/package.json | 8 +-- .../data-chart/axis-locations/package.json | 4 +- .../data-chart/axis-min-max-gap/package.json | 4 +- .../data-chart/axis-settings/package.json | 4 +- .../data-chart/axis-sharing/package.json | 4 +- .../charts/data-chart/axis-types/package.json | 4 +- .../bar-chart-multiple-sources/package.json | 4 +- .../bar-chart-overlapping/package.json | 4 +- .../bar-chart-single-source/package.json | 4 +- .../data-chart/bar-chart-styling/package.json | 4 +- .../callout-layer-styling/package.json | 4 +- .../package.json | 8 +-- .../package.json | 8 +-- .../chart-highlight-filter/package.json | 8 +-- .../data-chart/chart-navigation/package.json | 4 +- .../data-chart/chart-overview/package.json | 4 +- .../data-chart/chart-performance/package.json | 4 +- .../chart-synchronization/package.json | 4 +- .../data-chart/chart-titles/package.json | 4 +- .../column-chart-styling/package.json | 4 +- .../data-chart/composite-chart/package.json | 4 +- .../crosshair-layer-styling/package.json | 4 +- .../custom-drawing-annotations/package.json | 8 +-- .../custom-editing-data/package.json | 4 +- .../data-chart/dash-array-axes/package.json | 4 +- .../data-chart/dash-array-series/package.json | 4 +- .../dash-array-tickmarks/package.json | 4 +- .../dash-array-trendline/package.json | 4 +- .../data-chart/data-legend/package.json | 4 +- .../data-legend/src/app.component.html | 4 +- .../data-chart/data-tooltip/package.json | 4 +- .../data-tooltip/src/app.component.html | 4 +- .../final-value-layer-styling/package.json | 4 +- .../financial-price-series/package.json | 4 +- .../data-chart/format-specifiers/package.json | 4 +- .../charts/data-chart/legends/package.json | 4 +- .../polar-area-chart-styling/package.json | 4 +- .../data-chart/polar-area-chart/package.json | 4 +- .../data-chart/polar-chart-types/package.json | 4 +- .../data-chart/polar-line-chart/package.json | 4 +- .../polar-scatter-chart/package.json | 4 +- .../polar-spline-area-chart/package.json | 4 +- .../polar-spline-chart/package.json | 4 +- .../radial-area-chart-styling/package.json | 4 +- .../data-chart/radial-area-chart/package.json | 4 +- .../radial-chart-types/package.json | 4 +- .../radial-column-chart/package.json | 4 +- .../data-chart/radial-line-chart/package.json | 4 +- .../data-chart/radial-pie-chart/package.json | 4 +- .../data-chart/range-area-chart/package.json | 4 +- .../range-column-chart/package.json | 4 +- .../scatter-bubble-chart-fill-scale/ReadMe.md | 58 +++++++++++++++++++ .../package.json | 8 +-- .../src/app.component.html | 4 +- .../package.json | 4 +- .../src/app.component.html | 4 +- .../package.json | 4 +- .../src/app.component.html | 2 +- .../scatter-bubble-chart-styling/package.json | 4 +- .../src/app.component.html | 4 +- .../scatter-line-chart/package.json | 4 +- .../scatter-point-chart/package.json | 4 +- .../scatter-spline-chart/package.json | 4 +- .../data-chart/series-animations/package.json | 4 +- .../series-annotations/package.json | 4 +- .../series-highlighting/package.json | 4 +- .../series-marker-template/package.json | 4 +- .../data-chart/series-markers/package.json | 4 +- .../data-chart/series-tooltips/package.json | 4 +- .../data-chart/series-trendlines/package.json | 4 +- .../series-value-overlay/package.json | 4 +- .../stacked-100-area-chart/package.json | 4 +- .../stacked-100-bar-chart/package.json | 4 +- .../stacked-100-column-chart/package.json | 4 +- .../stacked-100-line-chart/package.json | 4 +- .../package.json | 4 +- .../stacked-100-spline-chart/package.json | 4 +- .../stacked-area-chart/package.json | 4 +- .../data-chart/stacked-bar-chart/package.json | 4 +- .../stacked-chart-types/package.json | 4 +- .../stacked-column-chart/package.json | 4 +- .../stacked-line-chart/package.json | 4 +- .../stacked-spline-area-chart/package.json | 4 +- .../stacked-spline-chart/package.json | 4 +- .../data-chart/tooltip-template/package.json | 4 +- .../data-chart/transition-event/package.json | 8 +-- .../type-category-area-series/package.json | 4 +- .../type-category-bar-series/package.json | 4 +- .../type-category-column-series/package.json | 4 +- .../type-category-line-series/package.json | 4 +- .../type-category-point-series/package.json | 4 +- .../type-category-series/package.json | 4 +- .../package.json | 4 +- .../type-category-spline-series/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../type-financial-ohlc-series/package.json | 4 +- .../type-financial-overlays/package.json | 4 +- .../type-financial-series/package.json | 4 +- .../type-radial-area-series/package.json | 4 +- .../type-radial-column-series/package.json | 4 +- .../type-radial-line-series/package.json | 4 +- .../type-radial-pie-series/package.json | 4 +- .../type-range-area-series/package.json | 4 +- .../type-range-column-series/package.json | 4 +- .../data-chart/type-range-series/package.json | 4 +- .../type-scatter-area-series/package.json | 4 +- .../type-scatter-bubble-series/package.json | 4 +- .../type-scatter-contour-series/package.json | 4 +- .../type-scatter-hd-series/package.json | 4 +- .../type-scatter-line-series/package.json | 4 +- .../type-scatter-point-series/package.json | 4 +- .../type-scatter-polygon-series/package.json | 4 +- .../type-scatter-polyline-series/package.json | 4 +- .../type-scatter-series/package.json | 4 +- .../type-scatter-spline-series/package.json | 4 +- .../data-chart/type-shape-series/package.json | 4 +- .../type-stacked-100-area-series/package.json | 4 +- .../type-stacked-100-bar-series/package.json | 4 +- .../package.json | 4 +- .../type-stacked-100-line-series/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../type-stacked-area-series/package.json | 4 +- .../type-stacked-bar-series/package.json | 4 +- .../type-stacked-column-series/package.json | 4 +- .../type-stacked-line-series/package.json | 4 +- .../package.json | 4 +- .../type-stacked-spline-series/package.json | 4 +- .../data-chart/waterfall-chart/package.json | 4 +- .../doughnut-chart/animation/package.json | 4 +- .../doughnut-chart/explosion/package.json | 4 +- .../charts/doughnut-chart/legend/package.json | 4 +- .../doughnut-chart/overview/package.json | 4 +- .../charts/doughnut-chart/rings/package.json | 4 +- .../doughnut-chart/selection/package.json | 4 +- .../financial-chart/annotations/package.json | 4 +- .../financial-chart/axis-types/package.json | 4 +- .../package.json | 4 +- .../data-legend-styling-props/package.json | 4 +- .../financial-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-styling-props/package.json | 4 +- .../financial-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 4 +- .../high-frequency/package.json | 4 +- .../financial-chart/high-volume/package.json | 4 +- .../indicator-customization/package.json | 4 +- .../indicator-types/package.json | 4 +- .../multiple-data/package.json | 4 +- .../multiple-feeds/package.json | 4 +- .../financial-chart/overview/package.json | 4 +- .../charts/financial-chart/panes/package.json | 4 +- .../financial-chart/performance/package.json | 4 +- .../financial-chart/scrollbars/package.json | 4 +- .../stock-index-chart/package.json | 4 +- .../financial-chart/styling/package.json | 4 +- .../financial-chart/theming/package.json | 4 +- .../time-based-data/package.json | 4 +- .../financial-chart/titles/package.json | 4 +- .../tooltip-template/package.json | 4 +- .../tooltip-types/package.json | 4 +- .../financial-chart/trendlines/package.json | 4 +- .../financial-chart/volume-types/package.json | 4 +- .../charts/pie-chart/animation/package.json | 4 +- .../charts/pie-chart/explosion/package.json | 4 +- samples/charts/pie-chart/legend/package.json | 4 +- samples/charts/pie-chart/others/package.json | 4 +- .../charts/pie-chart/overview/package.json | 4 +- .../charts/pie-chart/selection/package.json | 4 +- samples/charts/pie-chart/styling/package.json | 4 +- .../sparkline/display-area/package.json | 4 +- .../sparkline/display-column/package.json | 4 +- .../sparkline/display-lines/package.json | 8 +-- .../sparkline/display-types/package.json | 4 +- .../sparkline/display-winloss/package.json | 4 +- samples/charts/sparkline/grid/package.json | 4 +- samples/charts/sparkline/markers/package.json | 8 +-- .../sparkline/normal-range/package.json | 8 +-- .../charts/sparkline/trendlines/package.json | 8 +-- .../sparkline/unknown-values/package.json | 8 +-- .../package.json | 8 +-- .../actions-built-in-data-chart/package.json | 8 +-- .../charts/toolbar/custom-tool/package.json | 6 +- .../package.json | 8 +-- .../package.json | 8 +-- samples/charts/toolbar/theming/package.json | 8 +-- samples/charts/tree-map/events/package.json | 4 +- samples/charts/tree-map/layout/package.json | 8 +-- samples/charts/tree-map/overview/package.json | 4 +- samples/charts/tree-map/styling/package.json | 4 +- .../charts/zoomslider/overview/package.json | 4 +- .../operations-on-workbooks/package.json | 4 +- .../operations-on-worksheets/package.json | 4 +- .../excel/excel-library/overview/package.json | 4 +- .../working-with-cells/package.json | 4 +- .../working-with-charts/package.json | 6 +- .../working-with-sparklines/package.json | 6 +- .../working-with-tables/package.json | 8 +-- .../excel/spreadsheet/activation/package.json | 6 +- .../spreadsheet/adapter-chart/package.json | 10 ++-- .../spreadsheet/adapter-combo/package.json | 10 ++-- .../excel/spreadsheet/clipboard/package.json | 6 +- .../excel/spreadsheet/commands/package.json | 6 +- .../conditional-formatting/package.json | 6 +- .../spreadsheet/config-options/package.json | 6 +- .../spreadsheet/data-validation/package.json | 6 +- .../excel/spreadsheet/hyperlinks/package.json | 6 +- .../excel/spreadsheet/overview/package.json | 6 +- .../bullet-graph/animation/package.json | 4 +- .../bullet-graph/background/package.json | 4 +- .../gauges/bullet-graph/labels/package.json | 4 +- .../gauges/bullet-graph/measures/package.json | 4 +- .../gauges/bullet-graph/ranges/package.json | 4 +- .../gauges/bullet-graph/scale/package.json | 4 +- .../bullet-graph/tickmarks/package.json | 4 +- .../linear-gauge/animation/package.json | 4 +- .../gauges/linear-gauge/backing/package.json | 4 +- .../gauges/linear-gauge/labels/package.json | 4 +- .../gauges/linear-gauge/needle/package.json | 4 +- .../gauges/linear-gauge/ranges/package.json | 4 +- .../gauges/linear-gauge/scale/package.json | 4 +- .../linear-gauge/tickmarks/package.json | 4 +- .../radial-gauge/animation/package.json | 4 +- .../gauges/radial-gauge/backing/package.json | 4 +- .../gauges/radial-gauge/labels/package.json | 4 +- .../gauges/radial-gauge/needle/package.json | 4 +- .../radial-gauge/optical-scaling/ReadMe.md | 8 +-- .../radial-gauge/optical-scaling/package.json | 4 +- .../gauges/radial-gauge/ranges/package.json | 4 +- .../gauges/radial-gauge/scale/package.json | 4 +- .../radial-gauge/tickmarks/package.json | 4 +- .../geo-map/binding-data-csv/package.json | 6 +- .../binding-data-json-points/package.json | 6 +- .../geo-map/binding-data-model/package.json | 6 +- .../binding-multiple-shapes/package.json | 6 +- .../binding-multiple-sources/package.json | 6 +- .../geo-map/binding-shp-points/package.json | 6 +- .../geo-map/binding-shp-polygons/package.json | 6 +- .../binding-shp-polylines/package.json | 6 +- .../maps/geo-map/custom-tooltips/package.json | 6 +- .../geo-map/display-bing-imagery/package.json | 6 +- .../geo-map/display-esri-imagery/package.json | 6 +- .../geo-map/display-heat-imagery/package.json | 6 +- .../geo-map/display-osm-imagery/package.json | 6 +- .../maps/geo-map/marker-layouts/package.json | 6 +- .../maps/geo-map/marker-template/package.json | 6 +- samples/maps/geo-map/marker-type/package.json | 6 +- samples/maps/geo-map/navigation/package.json | 6 +- samples/maps/geo-map/overview/package.json | 6 +- .../maps/geo-map/shape-styling/package.json | 6 +- .../geo-map/triangulating-data/package.json | 6 +- .../type-scatter-area-series/package.json | 6 +- .../type-scatter-bubble-series/package.json | 6 +- .../type-scatter-contour-series/package.json | 6 +- .../type-scatter-density-series/package.json | 6 +- .../type-scatter-symbol-series/package.json | 6 +- .../type-shape-polygon-series/package.json | 6 +- .../type-shape-polyline-series/package.json | 6 +- 345 files changed, 1123 insertions(+), 833 deletions(-) create mode 100644 samples/charts/category-chart/data-filter/ReadMe.md create mode 100644 samples/charts/category-chart/highlighting-behavior/ReadMe.md create mode 100644 samples/charts/category-chart/highlighting-mode/ReadMe.md create mode 100644 samples/charts/category-chart/legend-highlighting/ReadMe.md create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/ReadMe.md diff --git a/browser/package.json b/browser/package.json index b731415b7..32a909713 100644 --- a/browser/package.json +++ b/browser/package.json @@ -39,15 +39,15 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-excel": "17.2.1", - "igniteui-angular-gauges": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", - "igniteui-angular-maps": "17.2.1", - "igniteui-angular-spreadsheet": "17.2.1", - "igniteui-angular-spreadsheet-chart-adapter": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-excel": "17.3.0-beta.0", + "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-spreadsheet": "17.3.0-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.3.0-beta.0", "igniteui-theming": "3.3.1", "igniteui-webcomponents": "4.7.0", "immediate": "3.2.3", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 8b0e25ea4..8ae561da7 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1071,16 +1071,16 @@ function updateIG(cb) { // { name: "igniteui-angular-charts", version: "14.1.0" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { name: "igniteui-angular-core" , version: "17.2.1" }, - { name: "igniteui-angular-charts" , version: "17.2.1" }, - { name: "igniteui-angular-excel" , version: "17.2.1" }, - { name: "igniteui-angular-gauges" , version: "17.2.1" }, - { name: "igniteui-angular-inputs" , version: "17.2.1" }, - { name: "igniteui-angular-layouts" , version: "17.2.1" }, - { name: "igniteui-angular-maps" , version: "17.2.1" }, - { name: "igniteui-angular-spreadsheet-chart-adapter", version: "17.2.1" }, - { name: "igniteui-angular-spreadsheet" , version: "17.2.1" }, - { name: "igniteui-angular-datasources" , version: "17.2.1" }, + { name: "igniteui-angular-core" , version: "17.3.0-beta.0" }, + { name: "igniteui-angular-charts" , version: "17.3.0-beta.0" }, + { name: "igniteui-angular-excel" , version: "17.3.0-beta.0" }, + { name: "igniteui-angular-gauges" , version: "17.3.0-beta.0" }, + { name: "igniteui-angular-inputs" , version: "17.3.0-beta.0" }, + { name: "igniteui-angular-layouts" , version: "17.3.0-beta.0" }, + { name: "igniteui-angular-maps" , version: "17.3.0-beta.0" }, + { name: "igniteui-angular-spreadsheet-chart-adapter", version: "17.3.0-beta.0" }, + { name: "igniteui-angular-spreadsheet" , version: "17.3.0-beta.0" }, + { name: "igniteui-angular-datasources" , version: "17.3.0-beta.0" }, // these IG packages are sometimes updated: { name: "igniteui-webcomponents", version: "4.7.0" }, { name: "igniteui-theming", version: "3.3.1" }, diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index 33c0d8d79..9b0daa508 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,14 +1,14 @@ [ {"ver":"17.0.0","name":"igniteui-angular"}, -{"ver":"17.2.1","name":"igniteui-angular-charts"}, -{"ver":"17.2.1","name":"igniteui-angular-core"}, -{"ver":"17.2.1","name":"igniteui-angular-excel"}, -{"ver":"17.2.1","name":"igniteui-angular-gauges"}, -{"ver":"17.2.1","name":"igniteui-angular-inputs"}, -{"ver":"17.2.1","name":"igniteui-angular-layouts"}, -{"ver":"17.2.1","name":"igniteui-angular-maps"}, -{"ver":"17.2.1","name":"igniteui-angular-spreadsheet"}, -{"ver":"17.2.1","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"17.3.0-beta.0","name":"igniteui-angular-charts"}, +{"ver":"17.3.0-beta.0","name":"igniteui-angular-core"}, +{"ver":"17.3.0-beta.0","name":"igniteui-angular-excel"}, +{"ver":"17.3.0-beta.0","name":"igniteui-angular-gauges"}, +{"ver":"17.3.0-beta.0","name":"igniteui-angular-inputs"}, +{"ver":"17.3.0-beta.0","name":"igniteui-angular-layouts"}, +{"ver":"17.3.0-beta.0","name":"igniteui-angular-maps"}, +{"ver":"17.3.0-beta.0","name":"igniteui-angular-spreadsheet"}, +{"ver":"17.3.0-beta.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, {"ver":"3.3.1","name":"igniteui-theming"}, {"ver":"4.7.0","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-filter/ReadMe.md b/samples/charts/category-chart/data-filter/ReadMe.md new file mode 100644 index 000000000..6fddbf76a --- /dev/null +++ b/samples/charts/category-chart/data-filter/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Data Filter feature using [CategoryChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/category-chart/data-filter +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index f4e12c524..632873a59 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 28a06a930..3f89920d8 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 28a06a930..3f89920d8 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/highlighting-behavior/ReadMe.md b/samples/charts/category-chart/highlighting-behavior/ReadMe.md new file mode 100644 index 000000000..3900da99f --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Highlighting Behavior feature using [CategoryChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/category-chart/highlighting-behavior +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/highlighting-mode/ReadMe.md b/samples/charts/category-chart/highlighting-mode/ReadMe.md new file mode 100644 index 000000000..3be4194ac --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Highlighting Mode feature using [CategoryChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/category-chart/highlighting-mode +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/legend-highlighting/ReadMe.md b/samples/charts/category-chart/legend-highlighting/ReadMe.md new file mode 100644 index 000000000..53dbc6468 --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Legend Highlighting feature using [CategoryChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/category-chart/legend-highlighting +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 034d56709..2f591a834 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-legend/src/app.component.html b/samples/charts/data-chart/data-legend/src/app.component.html index 34688ac31..555001940 100644 --- a/samples/charts/data-chart/data-legend/src/app.component.html +++ b/samples/charts/data-chart/data-legend/src/app.component.html @@ -38,7 +38,7 @@ xMemberPath="deathRate" yMemberPath="birthRate" radiusMemberPath="population" - [radiusScale]="SizeScale1" + [radiusScale]="sizeScale1" title="Africa" radiusMemberAsLegendLabel="Population: " xMemberAsLegendLabel="Death Rate: " @@ -53,7 +53,7 @@ xMemberPath="deathRate" yMemberPath="birthRate" radiusMemberPath="population" - [radiusScale]="SizeScale2" + [radiusScale]="sizeScale2" title="Europe" radiusMemberAsLegendLabel="Population: " xMemberAsLegendLabel="Death Rate: " diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-tooltip/src/app.component.html b/samples/charts/data-chart/data-tooltip/src/app.component.html index 778bd3970..fd3c33ce7 100644 --- a/samples/charts/data-chart/data-tooltip/src/app.component.html +++ b/samples/charts/data-chart/data-tooltip/src/app.component.html @@ -31,7 +31,7 @@ xMemberPath="deathRate" yMemberPath="birthRate" radiusMemberPath="population" - [radiusScale]="SizeScale1" + [radiusScale]="sizeScale1" title="Africa" radiusMemberAsLegendLabel="Population: " xMemberAsLegendLabel="Death Rate: " @@ -46,7 +46,7 @@ xMemberPath="deathRate" yMemberPath="birthRate" radiusMemberPath="population" - [radiusScale]="SizeScale2" + [radiusScale]="sizeScale2" title="Europe" radiusMemberAsLegendLabel="Population: " xMemberAsLegendLabel="Death Rate: " diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index b8207a98b..42a1a28ff 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/ReadMe.md b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/ReadMe.md new file mode 100644 index 000000000..3088d07ad --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Scatter Bubble Chart Fill Scale feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/scatter-bubble-chart-fill-scale +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 1b3c2b4cb..45bc6e299 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-inputs": "17.2.1", - "igniteui-angular-layouts": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html index 8ef10c444..5334a49f7 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html @@ -58,7 +58,7 @@ xMemberPath="population" yMemberPath="publicDebt" radiusMemberPath="gdpPerCapita" - [radiusScale]="SizeScale1" + [radiusScale]="sizeScale1" fillMemberPath="gdpPerCapita" [xAxis]="xAxis" [yAxis]="yAxis" @@ -66,7 +66,7 @@ markerType="Circle" markerOutline="black" showDefaultTooltip="true" - [fillScale]="ValueBrushScale1"> + [fillScale]="valueBrushScale1">
diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html index ac81e3df9..fc39d6b1b 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html @@ -40,7 +40,7 @@ [dataSource]="countryStatsAfrica" markerType="Circle" showDefaultTooltip="true" - [radiusScale]="SizeScale1"> + [radiusScale]="sizeScale1"> + [radiusScale]="sizeScale2">
diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html index 346190e03..672b6b1c7 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html @@ -27,7 +27,7 @@ xMemberPath="population" yMemberPath="publicDebt" radiusMemberPath="gdpPerCapita" - [radiusScale]="SizeScale1" + [radiusScale]="sizeScale1" fillMemberPath="gdpPerCapita" [xAxis]="xAxis" [yAxis]="yAxis" diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index f2b27864d..1be6b88e2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html index d7da0190e..7ec0ba1aa 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html @@ -44,7 +44,7 @@ markerFillOpacity="0.5" markerThickness="2" showDefaultTooltip="true" - [radiusScale]="SizeScale1"> + [radiusScale]="sizeScale1"> + [radiusScale]="sizeScale2"> -This folder contains Angular application with example of Labels feature using [RadialGauge](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. +This folder contains Angular application with example of Optical Scaling feature using [RadialGauge](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains Angular application with example of Labels feature using [R View Code - + Run Sample - + Run Sample @@ -35,7 +35,7 @@ Follow these instructions to run this example: ``` git clone https://github.com/IgniteUI/igniteui-angular-examples.git git checkout master -cd ../samples/gauges/radial-gauge/labels +cd ../samples/gauges/radial-gauge/optical-scaling ``` diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 3091bc2ec..db1b119c6 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "@infragistics/igniteui-angular-core": "23.2.174", - "@infragistics/igniteui-angular-gauges": "23.2.174", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-gauges": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 0e82e6be0..db1b119c6 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-gauges": "17.2.1", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-gauges": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 0e82e6be0..db1b119c6 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-gauges": "17.2.1", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-gauges": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 0e82e6be0..db1b119c6 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-gauges": "17.2.1", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-gauges": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 97750c15c..fbd684198 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.2.1", - "igniteui-angular-core": "17.2.1", - "igniteui-angular-maps": "17.2.1", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-maps": "17.3.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", From 23d0016a500bc2105c72e5f999a7afa703a3bf07 Mon Sep 17 00:00:00 2001 From: agoldenbaum Date: Mon, 1 Apr 2024 15:42:20 -0400 Subject: [PATCH 055/154] Treemap highlighting sample --- .../tree-map/highlighting/.stackblitzrc | 1 + .../charts/tree-map/highlighting/angular.json | 109 ++ .../charts/tree-map/highlighting/package.json | 47 + .../tree-map/highlighting/sandbox.config.json | 5 + .../src/CountyHierarchicalData.ts | 1576 +++++++++++++++++ .../highlighting/src/app.component.html | 36 + .../highlighting/src/app.component.scss | 3 + .../highlighting/src/app.component.ts | 53 + .../tree-map/highlighting/src/app.module.ts | 27 + .../src/config/tsconfig-es5.app.json | 6 + .../highlighting/src/config/tsconfig.app.json | 12 + .../src/config/tsconfig.base.json | 24 + .../src/config/tsconfig.spec.json | 19 + .../src/config/tsconfig.worker.json | 14 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../tree-map/highlighting/src/index.html | 23 + .../charts/tree-map/highlighting/src/main.ts | 15 + .../tree-map/highlighting/src/polyfills.ts | 65 + .../tree-map/highlighting/src/styles.scss | 9 + .../tree-map/highlighting/src/typings.d.ts | 5 + .../tree-map/highlighting/tsconfig.json | 21 + .../charts/tree-map/highlighting/tslint.json | 31 + 23 files changed, 2120 insertions(+) create mode 100644 samples/charts/tree-map/highlighting/.stackblitzrc create mode 100644 samples/charts/tree-map/highlighting/angular.json create mode 100644 samples/charts/tree-map/highlighting/package.json create mode 100644 samples/charts/tree-map/highlighting/sandbox.config.json create mode 100644 samples/charts/tree-map/highlighting/src/CountyHierarchicalData.ts create mode 100644 samples/charts/tree-map/highlighting/src/app.component.html create mode 100644 samples/charts/tree-map/highlighting/src/app.component.scss create mode 100644 samples/charts/tree-map/highlighting/src/app.component.ts create mode 100644 samples/charts/tree-map/highlighting/src/app.module.ts create mode 100644 samples/charts/tree-map/highlighting/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/tree-map/highlighting/src/config/tsconfig.app.json create mode 100644 samples/charts/tree-map/highlighting/src/config/tsconfig.base.json create mode 100644 samples/charts/tree-map/highlighting/src/config/tsconfig.spec.json create mode 100644 samples/charts/tree-map/highlighting/src/config/tsconfig.worker.json create mode 100644 samples/charts/tree-map/highlighting/src/environments/environment.prod.ts create mode 100644 samples/charts/tree-map/highlighting/src/environments/environment.ts create mode 100644 samples/charts/tree-map/highlighting/src/index.html create mode 100644 samples/charts/tree-map/highlighting/src/main.ts create mode 100644 samples/charts/tree-map/highlighting/src/polyfills.ts create mode 100644 samples/charts/tree-map/highlighting/src/styles.scss create mode 100644 samples/charts/tree-map/highlighting/src/typings.d.ts create mode 100644 samples/charts/tree-map/highlighting/tsconfig.json create mode 100644 samples/charts/tree-map/highlighting/tslint.json diff --git a/samples/charts/tree-map/highlighting/.stackblitzrc b/samples/charts/tree-map/highlighting/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/tree-map/highlighting/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting/angular.json b/samples/charts/tree-map/highlighting/angular.json new file mode 100644 index 000000000..0e17c5c1f --- /dev/null +++ b/samples/charts/tree-map/highlighting/angular.json @@ -0,0 +1,109 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + }, + "cli": { + "analytics": false + } +} diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json new file mode 100644 index 000000000..b2a463978 --- /dev/null +++ b/samples/charts/tree-map/highlighting/package.json @@ -0,0 +1,47 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-inputs": "17.3.0-beta.0", + "igniteui-angular-layouts": "17.3.0-beta.0", + "igniteui-webcomponents": "4.8.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "9.1.1", + "tslint": "~6.1.3", + "typescript": "5.2.2" + } +} diff --git a/samples/charts/tree-map/highlighting/sandbox.config.json b/samples/charts/tree-map/highlighting/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/samples/charts/tree-map/highlighting/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting/src/CountyHierarchicalData.ts b/samples/charts/tree-map/highlighting/src/CountyHierarchicalData.ts new file mode 100644 index 000000000..e475830fc --- /dev/null +++ b/samples/charts/tree-map/highlighting/src/CountyHierarchicalData.ts @@ -0,0 +1,1576 @@ +export class CountyHierarchicalDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public code: string; + public parent: string; + public name: string; + public population: number; + +} +export class CountyHierarchicalData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountyHierarchicalDataItem( + { + code: `AFC`, + parent: null, + name: `Africa`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `ASA`, + parent: null, + name: `Asia`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `EUR`, + parent: null, + name: `Europe`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `MDE`, + parent: null, + name: `Middle East`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `NAM`, + parent: null, + name: `North America`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `CAM`, + parent: null, + name: `Central America`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `SAM`, + parent: null, + name: `South America`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `OCE`, + parent: null, + name: `Oceania`, + population: null + }), + new CountyHierarchicalDataItem( + { + code: `ANG`, + parent: `Africa`, + name: `Angola`, + population: 19618432 + }), + new CountyHierarchicalDataItem( + { + code: `BEN`, + parent: `Africa`, + name: `Benin`, + population: 9099922 + }), + new CountyHierarchicalDataItem( + { + code: `BOT`, + parent: `Africa`, + name: `Botswana`, + population: 2030738 + }), + new CountyHierarchicalDataItem( + { + code: `BUR`, + parent: `Africa`, + name: `Burkina Faso`, + population: 16967845 + }), + new CountyHierarchicalDataItem( + { + code: `BUR`, + parent: `Africa`, + name: `Burundi`, + population: 8575172 + }), + new CountyHierarchicalDataItem( + { + code: `CAM`, + parent: `Africa`, + name: `Cameroon`, + population: 20030362 + }), + new CountyHierarchicalDataItem( + { + code: `CPV`, + parent: `Africa`, + name: `Cape Verde`, + population: 500585 + }), + new CountyHierarchicalDataItem( + { + code: `CAR`, + parent: `Africa`, + name: `Central African Republic`, + population: 4486837 + }), + new CountyHierarchicalDataItem( + { + code: `CHD`, + parent: `Africa`, + name: `Chad`, + population: 11525496 + }), + new CountyHierarchicalDataItem( + { + code: `COM`, + parent: `Africa`, + name: `Comoros`, + population: 753943 + }), + new CountyHierarchicalDataItem( + { + code: `DRC`, + parent: `Africa`, + name: `Congo DRC`, + population: 67757577 + }), + new CountyHierarchicalDataItem( + { + code: `CRP`, + parent: `Africa`, + name: `Congo Republic`, + population: 4139748 + }), + new CountyHierarchicalDataItem( + { + code: `CIR`, + parent: `Africa`, + name: `Cote Ivoire`, + population: 20152894 + }), + new CountyHierarchicalDataItem( + { + code: `DBT`, + parent: `Africa`, + name: `Djibouti`, + population: 905564 + }), + new CountyHierarchicalDataItem( + { + code: `ETG`, + parent: `Africa`, + name: `Equatorial Guinea`, + population: 720213 + }), + new CountyHierarchicalDataItem( + { + code: `ERT`, + parent: `Africa`, + name: `Eritrea`, + population: 5415280 + }), + new CountyHierarchicalDataItem( + { + code: `ETH`, + parent: `Africa`, + name: `Ethiopia`, + population: 84734262 + }), + new CountyHierarchicalDataItem( + { + code: `GBN`, + parent: `Africa`, + name: `Gabon`, + population: 1534262 + }), + new CountyHierarchicalDataItem( + { + code: `GMB`, + parent: `Africa`, + name: `Gambia`, + population: 1776103 + }), + new CountyHierarchicalDataItem( + { + code: `GHN`, + parent: `Africa`, + name: `Ghana`, + population: 24965816 + }), + new CountyHierarchicalDataItem( + { + code: `GUN`, + parent: `Africa`, + name: `Guinea`, + population: 10221808 + }), + new CountyHierarchicalDataItem( + { + code: `GNB`, + parent: `Africa`, + name: `Guinea-Bissau`, + population: 1547061 + }), + new CountyHierarchicalDataItem( + { + code: `KEN`, + parent: `Africa`, + name: `Kenya`, + population: 41609728 + }), + new CountyHierarchicalDataItem( + { + code: `LES`, + parent: `Africa`, + name: `Lesotho`, + population: 2193843 + }), + new CountyHierarchicalDataItem( + { + code: `LBR`, + parent: `Africa`, + name: `Liberia`, + population: 4128572 + }), + new CountyHierarchicalDataItem( + { + code: `MDG`, + parent: `Africa`, + name: `Madagascar`, + population: 21315135 + }), + new CountyHierarchicalDataItem( + { + code: `MLW`, + parent: `Africa`, + name: `Malawi`, + population: 15380888 + }), + new CountyHierarchicalDataItem( + { + code: `MAL`, + parent: `Africa`, + name: `Mali`, + population: 15839538 + }), + new CountyHierarchicalDataItem( + { + code: `MRT`, + parent: `Africa`, + name: `Mauritania`, + population: 3541540 + }), + new CountyHierarchicalDataItem( + { + code: `MUS`, + parent: `Africa`, + name: `Mauritius`, + population: 1286051 + }), + new CountyHierarchicalDataItem( + { + code: `MOZ`, + parent: `Africa`, + name: `Mozambique`, + population: 23929708 + }), + new CountyHierarchicalDataItem( + { + code: `NMB`, + parent: `Africa`, + name: `Namibia`, + population: 2324004 + }), + new CountyHierarchicalDataItem( + { + code: `NER`, + parent: `Africa`, + name: `Niger`, + population: 16068994 + }), + new CountyHierarchicalDataItem( + { + code: `NGA`, + parent: `Africa`, + name: `Nigeria`, + population: 162470737 + }), + new CountyHierarchicalDataItem( + { + code: `RWD`, + parent: `Africa`, + name: `Rwanda`, + population: 10942950 + }), + new CountyHierarchicalDataItem( + { + code: `STM`, + parent: `Africa`, + name: `Sao Tome`, + population: 168526 + }), + new CountyHierarchicalDataItem( + { + code: `SEN`, + parent: `Africa`, + name: `Senegal`, + population: 12767556 + }), + new CountyHierarchicalDataItem( + { + code: `SYC`, + parent: `Africa`, + name: `Seychelles`, + population: 86000 + }), + new CountyHierarchicalDataItem( + { + code: `SRL`, + parent: `Africa`, + name: `Sierra Leone`, + population: 5997486 + }), + new CountyHierarchicalDataItem( + { + code: `ZAF`, + parent: `Africa`, + name: `South Africa`, + population: 50586757 + }), + new CountyHierarchicalDataItem( + { + code: `SSD`, + parent: `Africa`, + name: `South Sudan`, + population: 10314021 + }), + new CountyHierarchicalDataItem( + { + code: `SDN`, + parent: `Africa`, + name: `Sudan`, + population: 34318385 + }), + new CountyHierarchicalDataItem( + { + code: `SWZ`, + parent: `Africa`, + name: `Swaziland`, + population: 1067773 + }), + new CountyHierarchicalDataItem( + { + code: `TNZ`, + parent: `Africa`, + name: `Tanzania`, + population: 46218486 + }), + new CountyHierarchicalDataItem( + { + code: `TOG`, + parent: `Africa`, + name: `Togo`, + population: 6154813 + }), + new CountyHierarchicalDataItem( + { + code: `UGN`, + parent: `Africa`, + name: `Uganda`, + population: 34509205 + }), + new CountyHierarchicalDataItem( + { + code: `ZMB`, + parent: `Africa`, + name: `Zambia`, + population: 13474959 + }), + new CountyHierarchicalDataItem( + { + code: `ZWE`, + parent: `Africa`, + name: `Zimbabwe`, + population: 12754378 + }), + new CountyHierarchicalDataItem( + { + code: `AFG`, + parent: `Asia`, + name: `Afghanistan`, + population: 35320445 + }), + new CountyHierarchicalDataItem( + { + code: `BAN`, + parent: `Asia`, + name: `Bangladesh`, + population: 150493658 + }), + new CountyHierarchicalDataItem( + { + code: `BHT`, + parent: `Asia`, + name: `Bhutan`, + population: 738267 + }), + new CountyHierarchicalDataItem( + { + code: `BRN`, + parent: `Asia`, + name: `Brunei`, + population: 405938 + }), + new CountyHierarchicalDataItem( + { + code: `CAM`, + parent: `Asia`, + name: `Cambodia`, + population: 14305183 + }), + new CountyHierarchicalDataItem( + { + code: `CHI`, + parent: `Asia`, + name: `China`, + population: 1344130000 + }), + new CountyHierarchicalDataItem( + { + code: `HNK`, + parent: `Asia`, + name: `Hong Kong`, + population: 7071600 + }), + new CountyHierarchicalDataItem( + { + code: `IND`, + parent: `Asia`, + name: `India`, + population: 1241491960 + }), + new CountyHierarchicalDataItem( + { + code: `IDN`, + parent: `Asia`, + name: `Indonesia`, + population: 242325638 + }), + new CountyHierarchicalDataItem( + { + code: `JPN`, + parent: `Asia`, + name: `Japan`, + population: 127817277 + }), + new CountyHierarchicalDataItem( + { + code: `KZH`, + parent: `Asia`, + name: `Kazakhstan`, + population: 16558676 + }), + new CountyHierarchicalDataItem( + { + code: `NKO`, + parent: `Asia`, + name: `North Korea`, + population: 24451285 + }), + new CountyHierarchicalDataItem( + { + code: `SKO`, + parent: `Asia`, + name: `South Korea`, + population: 49779000 + }), + new CountyHierarchicalDataItem( + { + code: `KGZ`, + parent: `Asia`, + name: `Kyrgyzstan`, + population: 5514600 + }), + new CountyHierarchicalDataItem( + { + code: `LAO`, + parent: `Asia`, + name: `Lao PDR`, + population: 6288037 + }), + new CountyHierarchicalDataItem( + { + code: `MAC`, + parent: `Asia`, + name: `Macao`, + population: 555731 + }), + new CountyHierarchicalDataItem( + { + code: `MYS`, + parent: `Asia`, + name: `Malaysia`, + population: 28859154 + }), + new CountyHierarchicalDataItem( + { + code: `MDV`, + parent: `Asia`, + name: `Maldives`, + population: 320081 + }), + new CountyHierarchicalDataItem( + { + code: `MNG`, + parent: `Asia`, + name: `Mongolia`, + population: 2800114 + }), + new CountyHierarchicalDataItem( + { + code: `MYM`, + parent: `Asia`, + name: `Myanmar`, + population: 48336763 + }), + new CountyHierarchicalDataItem( + { + code: `NPL`, + parent: `Asia`, + name: `Nepal`, + population: 30485798 + }), + new CountyHierarchicalDataItem( + { + code: `PHP`, + parent: `Asia`, + name: `Philippines`, + population: 94852030 + }), + new CountyHierarchicalDataItem( + { + code: `SNG`, + parent: `Asia`, + name: `Singapore`, + population: 5183700 + }), + new CountyHierarchicalDataItem( + { + code: `SRL`, + parent: `Asia`, + name: `Sri Lanka`, + population: 20869000 + }), + new CountyHierarchicalDataItem( + { + code: `TKS`, + parent: `Asia`, + name: `Tajikistan`, + population: 6976958 + }), + new CountyHierarchicalDataItem( + { + code: `THL`, + parent: `Asia`, + name: `Thailand`, + population: 69518555 + }), + new CountyHierarchicalDataItem( + { + code: `TRK`, + parent: `Asia`, + name: `Turkmenistan`, + population: 5105301 + }), + new CountyHierarchicalDataItem( + { + code: `UZB`, + parent: `Asia`, + name: `Uzbekistan`, + population: 29341200 + }), + new CountyHierarchicalDataItem( + { + code: `VTN`, + parent: `Asia`, + name: `Vietnam`, + population: 87840000 + }), + new CountyHierarchicalDataItem( + { + code: `ANT`, + parent: `Central America`, + name: `Antigua`, + population: 89612 + }), + new CountyHierarchicalDataItem( + { + code: `ARB`, + parent: `Central America`, + name: `Aruba`, + population: 108141 + }), + new CountyHierarchicalDataItem( + { + code: `BHM`, + parent: `Central America`, + name: `Bahamas`, + population: 347176 + }), + new CountyHierarchicalDataItem( + { + code: `BRB`, + parent: `Central America`, + name: `Barbados`, + population: 273925 + }), + new CountyHierarchicalDataItem( + { + code: `BLZ`, + parent: `Central America`, + name: `Belize`, + population: 356600 + }), + new CountyHierarchicalDataItem( + { + code: `BRM`, + parent: `Central America`, + name: `Bermuda`, + population: 64700 + }), + new CountyHierarchicalDataItem( + { + code: `CYI`, + parent: `Central America`, + name: `Cayman Islands`, + population: 56729 + }), + new CountyHierarchicalDataItem( + { + code: `CSR`, + parent: `Central America`, + name: `Costa Rica`, + population: 4726575 + }), + new CountyHierarchicalDataItem( + { + code: `CUB`, + parent: `Central America`, + name: `Cuba`, + population: 11253665 + }), + new CountyHierarchicalDataItem( + { + code: `CUR`, + parent: `Central America`, + name: `Curacao`, + population: 145619 + }), + new CountyHierarchicalDataItem( + { + code: `DMA`, + parent: `Central America`, + name: `Dominica`, + population: 67675 + }), + new CountyHierarchicalDataItem( + { + code: `DOM`, + parent: `Central America`, + name: `Dominican Republic`, + population: 10056181 + }), + new CountyHierarchicalDataItem( + { + code: `SLV`, + parent: `Central America`, + name: `El Salvador`, + population: 6227491 + }), + new CountyHierarchicalDataItem( + { + code: `FIS`, + parent: `Central America`, + name: `Faeroe Islands`, + population: 48863 + }), + new CountyHierarchicalDataItem( + { + code: `GND`, + parent: `Central America`, + name: `Grenada`, + population: 104890 + }), + new CountyHierarchicalDataItem( + { + code: `GUA`, + parent: `Central America`, + name: `Guam`, + population: 182111 + }), + new CountyHierarchicalDataItem( + { + code: `GTM`, + parent: `Central America`, + name: `Guatemala`, + population: 14757316 + }), + new CountyHierarchicalDataItem( + { + code: `HAT`, + parent: `Central America`, + name: `Haiti`, + population: 10123787 + }), + new CountyHierarchicalDataItem( + { + code: `HON`, + parent: `Central America`, + name: `Honduras`, + population: 7754687 + }), + new CountyHierarchicalDataItem( + { + code: `JAM`, + parent: `Central America`, + name: `Jamaica`, + population: 2706500 + }), + new CountyHierarchicalDataItem( + { + code: `NCR`, + parent: `Central America`, + name: `Nicaragua`, + population: 5869859 + }), + new CountyHierarchicalDataItem( + { + code: `NMI`, + parent: `Central America`, + name: `Northern Mariana Islands`, + population: 61174 + }), + new CountyHierarchicalDataItem( + { + code: `PAN`, + parent: `Central America`, + name: `Panama`, + population: 3571185 + }), + new CountyHierarchicalDataItem( + { + code: `PRT`, + parent: `Central America`, + name: `Puerto Rico`, + population: 3706690 + }), + new CountyHierarchicalDataItem( + { + code: `STK`, + parent: `Central America`, + name: `St. Kitts`, + population: 53051 + }), + new CountyHierarchicalDataItem( + { + code: `STL`, + parent: `Central America`, + name: `St. Lucia`, + population: 176000 + }), + new CountyHierarchicalDataItem( + { + code: `STV`, + parent: `Central America`, + name: `St. Vincent`, + population: 109365 + }), + new CountyHierarchicalDataItem( + { + code: `TAB`, + parent: `Central America`, + name: `Trinidad and Tobago`, + population: 1346350 + }), + new CountyHierarchicalDataItem( + { + code: `RCI`, + parent: `Central America`, + name: `Turks and Caicos Islands`, + population: 39184 + }), + new CountyHierarchicalDataItem( + { + code: `ISV`, + parent: `Central America`, + name: `US Virgin Islands`, + population: 109666 + }), + new CountyHierarchicalDataItem( + { + code: `ALB`, + parent: `Europe`, + name: `Albania`, + population: 3215988 + }), + new CountyHierarchicalDataItem( + { + code: `AND`, + parent: `Europe`, + name: `Andorra`, + population: 86165 + }), + new CountyHierarchicalDataItem( + { + code: `ARM`, + parent: `Europe`, + name: `Armenia`, + population: 3100236 + }), + new CountyHierarchicalDataItem( + { + code: `AUT`, + parent: `Europe`, + name: `Austria`, + population: 8423635 + }), + new CountyHierarchicalDataItem( + { + code: `BER`, + parent: `Europe`, + name: `Belarus`, + population: 9473000 + }), + new CountyHierarchicalDataItem( + { + code: `BEL`, + parent: `Europe`, + name: `Belgium`, + population: 11020952 + }), + new CountyHierarchicalDataItem( + { + code: `BIH`, + parent: `Europe`, + name: `Bosnia`, + population: 3752228 + }), + new CountyHierarchicalDataItem( + { + code: `BUL`, + parent: `Europe`, + name: `Bulgaria`, + population: 7348328 + }), + new CountyHierarchicalDataItem( + { + code: `CHI`, + parent: `Europe`, + name: `Channel Islands`, + population: 153876 + }), + new CountyHierarchicalDataItem( + { + code: `CRO`, + parent: `Europe`, + name: `Croatia`, + population: 4403000 + }), + new CountyHierarchicalDataItem( + { + code: `CYP`, + parent: `Europe`, + name: `Cyprus`, + population: 1116564 + }), + new CountyHierarchicalDataItem( + { + code: `CZE`, + parent: `Europe`, + name: `Czechia`, + population: 10496088 + }), + new CountyHierarchicalDataItem( + { + code: `DEN`, + parent: `Europe`, + name: `Denmark`, + population: 5570572 + }), + new CountyHierarchicalDataItem( + { + code: `EST`, + parent: `Europe`, + name: `Estonia`, + population: 1339928 + }), + new CountyHierarchicalDataItem( + { + code: `FIN`, + parent: `Europe`, + name: `Finland`, + population: 5388272 + }), + new CountyHierarchicalDataItem( + { + code: `FRA`, + parent: `Europe`, + name: `France`, + population: 65433714 + }), + new CountyHierarchicalDataItem( + { + code: `GEO`, + parent: `Europe`, + name: `Georgia`, + population: 4486000 + }), + new CountyHierarchicalDataItem( + { + code: `DEU`, + parent: `Europe`, + name: `Germany`, + population: 81797673 + }), + new CountyHierarchicalDataItem( + { + code: `GRC`, + parent: `Europe`, + name: `Greece`, + population: 11300410 + }), + new CountyHierarchicalDataItem( + { + code: `HUN`, + parent: `Europe`, + name: `Hungary`, + population: 9971727 + }), + new CountyHierarchicalDataItem( + { + code: `ICE`, + parent: `Europe`, + name: `Iceland`, + population: 319014 + }), + new CountyHierarchicalDataItem( + { + code: `IRE`, + parent: `Europe`, + name: `Ireland`, + population: 4576317 + }), + new CountyHierarchicalDataItem( + { + code: `IOM`, + parent: `Europe`, + name: `Isle of Man`, + population: 83327 + }), + new CountyHierarchicalDataItem( + { + code: `ITA`, + parent: `Europe`, + name: `Italy`, + population: 60723603 + }), + new CountyHierarchicalDataItem( + { + code: `KOS`, + parent: `Europe`, + name: `Kosovo`, + population: 1802765 + }), + new CountyHierarchicalDataItem( + { + code: `LAT`, + parent: `Europe`, + name: `Latvia`, + population: 2058184 + }), + new CountyHierarchicalDataItem( + { + code: `LVA`, + parent: `Europe`, + name: `Liechtenstein`, + population: 36304 + }), + new CountyHierarchicalDataItem( + { + code: `LTU`, + parent: `Europe`, + name: `Lithuania`, + population: 3030173 + }), + new CountyHierarchicalDataItem( + { + code: `LUX`, + parent: `Europe`, + name: `Luxembourg`, + population: 518252 + }), + new CountyHierarchicalDataItem( + { + code: `MKD`, + parent: `Europe`, + name: `North Macedonia`, + population: 2063893 + }), + new CountyHierarchicalDataItem( + { + code: `MLT`, + parent: `Europe`, + name: `Malta`, + population: 415654 + }), + new CountyHierarchicalDataItem( + { + code: `MDA`, + parent: `Europe`, + name: `Moldova`, + population: 3559000 + }), + new CountyHierarchicalDataItem( + { + code: `MON`, + parent: `Europe`, + name: `Monaco`, + population: 35427 + }), + new CountyHierarchicalDataItem( + { + code: `MNE`, + parent: `Europe`, + name: `Montenegro`, + population: 632261 + }), + new CountyHierarchicalDataItem( + { + code: `MLD`, + parent: `Europe`, + name: `Netherlands`, + population: 16693074 + }), + new CountyHierarchicalDataItem( + { + code: `NOR`, + parent: `Europe`, + name: `Norway`, + population: 4953088 + }), + new CountyHierarchicalDataItem( + { + code: `POL`, + parent: `Europe`, + name: `Poland`, + population: 38534157 + }), + new CountyHierarchicalDataItem( + { + code: `POR`, + parent: `Europe`, + name: `Portugal`, + population: 10556999 + }), + new CountyHierarchicalDataItem( + { + code: `ROM`, + parent: `Europe`, + name: `Romania`, + population: 21384832 + }), + new CountyHierarchicalDataItem( + { + code: `RUS`, + parent: `Europe`, + name: `Russia`, + population: 142960000 + }), + new CountyHierarchicalDataItem( + { + code: `SMR`, + parent: `Europe`, + name: `San Marino`, + population: 31735 + }), + new CountyHierarchicalDataItem( + { + code: `SBR`, + parent: `Europe`, + name: `Serbia`, + population: 7258745 + }), + new CountyHierarchicalDataItem( + { + code: `STM`, + parent: `Europe`, + name: `Sint Maarten`, + population: 36609 + }), + new CountyHierarchicalDataItem( + { + code: `SVK`, + parent: `Europe`, + name: `Slovakia`, + population: 5398384 + }), + new CountyHierarchicalDataItem( + { + code: `SLO`, + parent: `Europe`, + name: `Slovenia`, + population: 2052843 + }), + new CountyHierarchicalDataItem( + { + code: `ESP`, + parent: `Europe`, + name: `Spain`, + population: 46174601 + }), + new CountyHierarchicalDataItem( + { + code: `STM`, + parent: `Europe`, + name: `St. Martin`, + population: 30615 + }), + new CountyHierarchicalDataItem( + { + code: `SWE`, + parent: `Europe`, + name: `Sweden`, + population: 9449213 + }), + new CountyHierarchicalDataItem( + { + code: `CHE`, + parent: `Europe`, + name: `Switzerland`, + population: 7912398 + }), + new CountyHierarchicalDataItem( + { + code: `UKR`, + parent: `Europe`, + name: `Ukraine`, + population: 45706100 + }), + new CountyHierarchicalDataItem( + { + code: `GBR`, + parent: `Europe`, + name: `United Kingdom`, + population: 62744081 + }), + new CountyHierarchicalDataItem( + { + code: `DZA`, + parent: `Middle East`, + name: `Algeria`, + population: 35980193 + }), + new CountyHierarchicalDataItem( + { + code: `AZE`, + parent: `Middle East`, + name: `Azerbaijan`, + population: 9173082 + }), + new CountyHierarchicalDataItem( + { + code: `BHR`, + parent: `Middle East`, + name: `Bahrain`, + population: 1323535 + }), + new CountyHierarchicalDataItem( + { + code: `EGY`, + parent: `Middle East`, + name: `Egypt`, + population: 82536770 + }), + new CountyHierarchicalDataItem( + { + code: `IRN`, + parent: `Middle East`, + name: `Iran`, + population: 74798599 + }), + new CountyHierarchicalDataItem( + { + code: `IRQ`, + parent: `Middle East`, + name: `Iraq`, + population: 32961959 + }), + new CountyHierarchicalDataItem( + { + code: `ISR`, + parent: `Middle East`, + name: `Israel`, + population: 7765900 + }), + new CountyHierarchicalDataItem( + { + code: `JOR`, + parent: `Middle East`, + name: `Jordan`, + population: 6181000 + }), + new CountyHierarchicalDataItem( + { + code: `KWT`, + parent: `Middle East`, + name: `Kuwait`, + population: 2818042 + }), + new CountyHierarchicalDataItem( + { + code: `LBN`, + parent: `Middle East`, + name: `Lebanon`, + population: 4259405 + }), + new CountyHierarchicalDataItem( + { + code: `LBY`, + parent: `Middle East`, + name: `Libya`, + population: 6422772 + }), + new CountyHierarchicalDataItem( + { + code: `MAR`, + parent: `Middle East`, + name: `Morocco`, + population: 32272974 + }), + new CountyHierarchicalDataItem( + { + code: `OMN`, + parent: `Middle East`, + name: `Oman`, + population: 2846145 + }), + new CountyHierarchicalDataItem( + { + code: `PKS`, + parent: `Middle East`, + name: `Pakistan`, + population: 176745364 + }), + new CountyHierarchicalDataItem( + { + code: `QTR`, + parent: `Middle East`, + name: `Qatar`, + population: 1870041 + }), + new CountyHierarchicalDataItem( + { + code: `SAR`, + parent: `Middle East`, + name: `Saudi Arabia`, + population: 28082541 + }), + new CountyHierarchicalDataItem( + { + code: `SOM`, + parent: `Middle East`, + name: `Somalia`, + population: 9556873 + }), + new CountyHierarchicalDataItem( + { + code: `SYR`, + parent: `Middle East`, + name: `Syria`, + population: 20820311 + }), + new CountyHierarchicalDataItem( + { + code: `TUN`, + parent: `Middle East`, + name: `Tunisia`, + population: 10673800 + }), + new CountyHierarchicalDataItem( + { + code: `TUR`, + parent: `Middle East`, + name: `Turkey`, + population: 73639596 + }), + new CountyHierarchicalDataItem( + { + code: `UAE`, + parent: `Middle East`, + name: `United Arab Emirates`, + population: 7890924 + }), + new CountyHierarchicalDataItem( + { + code: `WTB`, + parent: `Middle East`, + name: `West Bank`, + population: 3927051 + }), + new CountyHierarchicalDataItem( + { + code: `YEM`, + parent: `Middle East`, + name: `Yemen`, + population: 24799880 + }), + new CountyHierarchicalDataItem( + { + code: `CAN`, + parent: `North America`, + name: `Canada`, + population: 34483975 + }), + new CountyHierarchicalDataItem( + { + code: `GRL`, + parent: `North America`, + name: `Greenland`, + population: 56840 + }), + new CountyHierarchicalDataItem( + { + code: `MEX`, + parent: `North America`, + name: `Mexico`, + population: 114793341 + }), + new CountyHierarchicalDataItem( + { + code: `USA`, + parent: `North America`, + name: `United States`, + population: 311591917 + }), + new CountyHierarchicalDataItem( + { + code: `AMS`, + parent: `Oceania`, + name: `American Samoa`, + population: 69543 + }), + new CountyHierarchicalDataItem( + { + code: `AUS`, + parent: `Oceania`, + name: `Australia`, + population: 22323900 + }), + new CountyHierarchicalDataItem( + { + code: `FIJ`, + parent: `Oceania`, + name: `Fiji`, + population: 868406 + }), + new CountyHierarchicalDataItem( + { + code: `FRP`, + parent: `Oceania`, + name: `French Polynesia`, + population: 273777 + }), + new CountyHierarchicalDataItem( + { + code: `KIR`, + parent: `Oceania`, + name: `Kiribati`, + population: 101093 + }), + new CountyHierarchicalDataItem( + { + code: `MIS`, + parent: `Oceania`, + name: `Marshall Islands`, + population: 54816 + }), + new CountyHierarchicalDataItem( + { + code: `MCR`, + parent: `Oceania`, + name: `Micronesia`, + population: 111542 + }), + new CountyHierarchicalDataItem( + { + code: `NCD`, + parent: `Oceania`, + name: `New Caledonia`, + population: 254024 + }), + new CountyHierarchicalDataItem( + { + code: `NZL`, + parent: `Oceania`, + name: `New Zealand`, + population: 4405200 + }), + new CountyHierarchicalDataItem( + { + code: `PAL`, + parent: `Oceania`, + name: `Palau`, + population: 20609 + }), + new CountyHierarchicalDataItem( + { + code: `PNG`, + parent: `Oceania`, + name: `Papua New Guinea`, + population: 7013829 + }), + new CountyHierarchicalDataItem( + { + code: `SAM`, + parent: `Oceania`, + name: `Samoa`, + population: 183874 + }), + new CountyHierarchicalDataItem( + { + code: `SIS`, + parent: `Oceania`, + name: `Solomon Islands`, + population: 552267 + }), + new CountyHierarchicalDataItem( + { + code: `TML`, + parent: `Oceania`, + name: `Timor-Leste`, + population: 1175880 + }), + new CountyHierarchicalDataItem( + { + code: `TON`, + parent: `Oceania`, + name: `Tonga`, + population: 104509 + }), + new CountyHierarchicalDataItem( + { + code: `TUV`, + parent: `Oceania`, + name: `Tuvalu`, + population: 9847 + }), + new CountyHierarchicalDataItem( + { + code: `VNT`, + parent: `Oceania`, + name: `Vanuatu`, + population: 245619 + }), + new CountyHierarchicalDataItem( + { + code: `ARG`, + parent: `South America`, + name: `Argentina`, + population: 40764561 + }), + new CountyHierarchicalDataItem( + { + code: `BOL`, + parent: `South America`, + name: `Bolivia`, + population: 10088108 + }), + new CountyHierarchicalDataItem( + { + code: `BRA`, + parent: `South America`, + name: `Brazil`, + population: 196655014 + }), + new CountyHierarchicalDataItem( + { + code: `CHI`, + parent: `South America`, + name: `Chile`, + population: 17269525 + }), + new CountyHierarchicalDataItem( + { + code: `COL`, + parent: `South America`, + name: `Colombia`, + population: 46927125 + }), + new CountyHierarchicalDataItem( + { + code: `ECU`, + parent: `South America`, + name: `Ecuador`, + population: 14666055 + }), + new CountyHierarchicalDataItem( + { + code: `GUY`, + parent: `South America`, + name: `Guyana`, + population: 756040 + }), + new CountyHierarchicalDataItem( + { + code: `PAR`, + parent: `South America`, + name: `Paraguay`, + population: 6568290 + }), + new CountyHierarchicalDataItem( + { + code: `PER`, + parent: `South America`, + name: `Peru`, + population: 29399817 + }), + new CountyHierarchicalDataItem( + { + code: `SUR`, + parent: `South America`, + name: `Suriname`, + population: 529419 + }), + new CountyHierarchicalDataItem( + { + code: `URG`, + parent: `South America`, + name: `Uruguay`, + population: 3368595 + }), + new CountyHierarchicalDataItem( + { + code: `VEN`, + parent: `South America`, + name: `Venezuela`, + population: 29278000 + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/tree-map/highlighting/src/app.component.html b/samples/charts/tree-map/highlighting/src/app.component.html new file mode 100644 index 000000000..f9b4360f3 --- /dev/null +++ b/samples/charts/tree-map/highlighting/src/app.component.html @@ -0,0 +1,36 @@ +
+
+ +
+
+ Comparing Population of Countries +
+
+ + +
+
diff --git a/samples/charts/tree-map/highlighting/src/app.component.scss b/samples/charts/tree-map/highlighting/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/tree-map/highlighting/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/tree-map/highlighting/src/app.component.ts b/samples/charts/tree-map/highlighting/src/app.component.ts new file mode 100644 index 000000000..9f1828f32 --- /dev/null +++ b/samples/charts/tree-map/highlighting/src/app.component.ts @@ -0,0 +1,53 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, TreemapDescriptionModule } from 'igniteui-angular-core'; +import { CountyHierarchicalDataItem, CountyHierarchicalData } from './CountyHierarchicalData'; +import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxTreemapComponent, TreemapHighlightingMode } from 'igniteui-angular-charts'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + + +export class AppComponent implements AfterViewInit +{ + @ViewChild("treemap", { static: true } ) + private treemap: IgxTreemapComponent + private _countyHierarchicalData: CountyHierarchicalData = null; + public get countyHierarchicalData(): CountyHierarchicalData { + if (this._countyHierarchicalData == null) + { + this._countyHierarchicalData = new CountyHierarchicalData(); + } + return this._countyHierarchicalData; + } + + public onHighlightingModeChange(args: any){ + let value = args.target.value; + + if(value === "Brighten"){ + this.treemap.highlightingMode = TreemapHighlightingMode.Brighten; + } + else{ + this.treemap.highlightingMode = TreemapHighlightingMode.FadeOthers; + } + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + + +} + diff --git a/samples/charts/tree-map/highlighting/src/app.module.ts b/samples/charts/tree-map/highlighting/src/app.module.ts new file mode 100644 index 000000000..92e86c22f --- /dev/null +++ b/samples/charts/tree-map/highlighting/src/app.module.ts @@ -0,0 +1,27 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxTreemapModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxTreemapModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/tree-map/highlighting/src/config/tsconfig-es5.app.json b/samples/charts/tree-map/highlighting/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/samples/charts/tree-map/highlighting/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/samples/charts/tree-map/highlighting/src/config/tsconfig.app.json b/samples/charts/tree-map/highlighting/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/tree-map/highlighting/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/tree-map/highlighting/src/config/tsconfig.base.json b/samples/charts/tree-map/highlighting/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/samples/charts/tree-map/highlighting/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/samples/charts/tree-map/highlighting/src/config/tsconfig.spec.json b/samples/charts/tree-map/highlighting/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/tree-map/highlighting/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/tree-map/highlighting/src/config/tsconfig.worker.json b/samples/charts/tree-map/highlighting/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/samples/charts/tree-map/highlighting/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/tree-map/highlighting/src/environments/environment.prod.ts b/samples/charts/tree-map/highlighting/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/tree-map/highlighting/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/tree-map/highlighting/src/environments/environment.ts b/samples/charts/tree-map/highlighting/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/tree-map/highlighting/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/tree-map/highlighting/src/index.html b/samples/charts/tree-map/highlighting/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/tree-map/highlighting/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/tree-map/highlighting/src/main.ts b/samples/charts/tree-map/highlighting/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/tree-map/highlighting/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/tree-map/highlighting/src/polyfills.ts b/samples/charts/tree-map/highlighting/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/tree-map/highlighting/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/tree-map/highlighting/src/styles.scss b/samples/charts/tree-map/highlighting/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/tree-map/highlighting/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/tree-map/highlighting/src/typings.d.ts b/samples/charts/tree-map/highlighting/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/tree-map/highlighting/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/tree-map/highlighting/tsconfig.json b/samples/charts/tree-map/highlighting/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/charts/tree-map/highlighting/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting/tslint.json b/samples/charts/tree-map/highlighting/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/tree-map/highlighting/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} From 1a1ade974719bab658140a30d85e7b721ddd171f Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 1 Apr 2024 16:56:05 -0400 Subject: [PATCH 056/154] mdd-highlight-needle-gauges mdd-highlight-needle-gauges --- .../highlight-needle/.stackblitzrc | 1 + .../radial-gauge/highlight-needle/ReadMe.md | 58 ++++++++++ .../highlight-needle/angular.json | 109 ++++++++++++++++++ .../highlight-needle/package.json | 44 +++++++ .../highlight-needle/sandbox.config.json | 5 + .../src/app/app.component.html | 14 +++ .../src/app/app.component.scss | 3 + .../highlight-needle/src/app/app.component.ts | 21 ++++ .../highlight-needle/src/app/app.module.ts | 26 +++++ .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 ++ .../src/config/tsconfig.base.json | 24 ++++ .../src/config/tsconfig.spec.json | 19 +++ .../src/config/tsconfig.worker.json | 14 +++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../highlight-needle/src/index.html | 22 ++++ .../radial-gauge/highlight-needle/src/main.ts | 15 +++ .../highlight-needle/src/polyfills.ts | 65 +++++++++++ .../highlight-needle/src/styles.scss | 9 ++ .../highlight-needle/src/typings.d.ts | 5 + .../highlight-needle/tsconfig.json | 21 ++++ 22 files changed, 512 insertions(+) create mode 100644 samples/gauges/radial-gauge/highlight-needle/.stackblitzrc create mode 100644 samples/gauges/radial-gauge/highlight-needle/ReadMe.md create mode 100644 samples/gauges/radial-gauge/highlight-needle/angular.json create mode 100644 samples/gauges/radial-gauge/highlight-needle/package.json create mode 100644 samples/gauges/radial-gauge/highlight-needle/sandbox.config.json create mode 100644 samples/gauges/radial-gauge/highlight-needle/src/app/app.component.html create mode 100644 samples/gauges/radial-gauge/highlight-needle/src/app/app.component.scss create mode 100644 samples/gauges/radial-gauge/highlight-needle/src/app/app.component.ts create mode 100644 samples/gauges/radial-gauge/highlight-needle/src/app/app.module.ts create mode 100644 samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig-es5.app.json create mode 100644 samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.app.json create mode 100644 samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.base.json create mode 100644 samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.spec.json create mode 100644 samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.worker.json create mode 100644 samples/gauges/radial-gauge/highlight-needle/src/environments/environment.prod.ts create mode 100644 samples/gauges/radial-gauge/highlight-needle/src/environments/environment.ts create mode 100644 samples/gauges/radial-gauge/highlight-needle/src/index.html create mode 100644 samples/gauges/radial-gauge/highlight-needle/src/main.ts create mode 100644 samples/gauges/radial-gauge/highlight-needle/src/polyfills.ts create mode 100644 samples/gauges/radial-gauge/highlight-needle/src/styles.scss create mode 100644 samples/gauges/radial-gauge/highlight-needle/src/typings.d.ts create mode 100644 samples/gauges/radial-gauge/highlight-needle/tsconfig.json diff --git a/samples/gauges/radial-gauge/highlight-needle/.stackblitzrc b/samples/gauges/radial-gauge/highlight-needle/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/highlight-needle/ReadMe.md b/samples/gauges/radial-gauge/highlight-needle/ReadMe.md new file mode 100644 index 000000000..ec31454ab --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of highlight needle feature using [RadialGauge](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/gauges/radial-gauge/highlight-needle +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/gauges/radial-gauge/highlight-needle/angular.json b/samples/gauges/radial-gauge/highlight-needle/angular.json new file mode 100644 index 000000000..0e17c5c1f --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/angular.json @@ -0,0 +1,109 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + }, + "cli": { + "analytics": false + } +} diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json new file mode 100644 index 000000000..db1b119c6 --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-gauges": "17.3.0-beta.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "9.1.1", + "tslint": "~6.1.3", + "typescript": "5.2.2" + } +} diff --git a/samples/gauges/radial-gauge/highlight-needle/sandbox.config.json b/samples/gauges/radial-gauge/highlight-needle/sandbox.config.json new file mode 100644 index 000000000..00acba0c1 --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/highlight-needle/src/app/app.component.html b/samples/gauges/radial-gauge/highlight-needle/src/app/app.component.html new file mode 100644 index 000000000..b1e991c4b --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/src/app/app.component.html @@ -0,0 +1,14 @@ +
+ + +
diff --git a/samples/gauges/radial-gauge/highlight-needle/src/app/app.component.scss b/samples/gauges/radial-gauge/highlight-needle/src/app/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/src/app/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/gauges/radial-gauge/highlight-needle/src/app/app.component.ts b/samples/gauges/radial-gauge/highlight-needle/src/app/app.component.ts new file mode 100644 index 000000000..437784cc1 --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/src/app/app.component.ts @@ -0,0 +1,21 @@ +import { Component, OnInit, ViewChild } from "@angular/core"; +import { HighlightedValueDisplayMode } from "igniteui-angular-core"; +// radial gauge imports +import { IgxRadialGaugeComponent } from "igniteui-angular-gauges"; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html" +}) +export class AppComponent implements OnInit { + + @ViewChild("radialGauge", { static: true }) + public radialGauge: IgxRadialGaugeComponent; + + public ngOnInit(): void { + + // changing defaults to highlight current feature + this.radialGauge.scaleBrush = "#e8e8e8"; + } +} diff --git a/samples/gauges/radial-gauge/highlight-needle/src/app/app.module.ts b/samples/gauges/radial-gauge/highlight-needle/src/app/app.module.ts new file mode 100644 index 000000000..475cc318f --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/src/app/app.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; +import { IgxRadialGaugeModule } from "igniteui-angular-gauges"; + + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent, + +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxRadialGaugeModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.app.json b/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.spec.json b/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/gauges/radial-gauge/highlight-needle/src/environments/environment.prod.ts b/samples/gauges/radial-gauge/highlight-needle/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/gauges/radial-gauge/highlight-needle/src/environments/environment.ts b/samples/gauges/radial-gauge/highlight-needle/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/gauges/radial-gauge/highlight-needle/src/index.html b/samples/gauges/radial-gauge/highlight-needle/src/index.html new file mode 100644 index 000000000..67a35017e --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/src/index.html @@ -0,0 +1,22 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + diff --git a/samples/gauges/radial-gauge/highlight-needle/src/main.ts b/samples/gauges/radial-gauge/highlight-needle/src/main.ts new file mode 100644 index 000000000..8b0ce4164 --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app/app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/gauges/radial-gauge/highlight-needle/src/polyfills.ts b/samples/gauges/radial-gauge/highlight-needle/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/gauges/radial-gauge/highlight-needle/src/styles.scss b/samples/gauges/radial-gauge/highlight-needle/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/gauges/radial-gauge/highlight-needle/src/typings.d.ts b/samples/gauges/radial-gauge/highlight-needle/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/gauges/radial-gauge/highlight-needle/tsconfig.json b/samples/gauges/radial-gauge/highlight-needle/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file From 55921aa9467ccd5cebefa4ed1137f21fe28b8628 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 1 Apr 2024 17:22:05 -0400 Subject: [PATCH 057/154] mdd-linear-bullet mdd-linear-bullet --- .../highlight-needle/.stackblitzrc | 1 + .../bullet-graph/highlight-needle/ReadMe.md | 58 ++++++++++ .../highlight-needle/angular.json | 109 ++++++++++++++++++ .../highlight-needle/package.json | 44 +++++++ .../highlight-needle/sandbox.config.json | 5 + .../src/app/app.component.html | 22 ++++ .../src/app/app.component.scss | 3 + .../highlight-needle/src/app/app.component.ts | 16 +++ .../highlight-needle/src/app/app.module.ts | 26 +++++ .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 ++ .../src/config/tsconfig.base.json | 24 ++++ .../src/config/tsconfig.spec.json | 19 +++ .../src/config/tsconfig.worker.json | 14 +++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../highlight-needle/src/index.html | 22 ++++ .../bullet-graph/highlight-needle/src/main.ts | 15 +++ .../highlight-needle/src/polyfills.ts | 65 +++++++++++ .../highlight-needle/src/styles.scss | 9 ++ .../highlight-needle/src/typings.d.ts | 5 + .../highlight-needle/tsconfig.json | 21 ++++ .../highlight-needle/.stackblitzrc | 1 + .../linear-gauge/highlight-needle/ReadMe.md | 58 ++++++++++ .../highlight-needle/angular.json | 109 ++++++++++++++++++ .../highlight-needle/package.json | 44 +++++++ .../highlight-needle/sandbox.config.json | 5 + .../src/app/app.component.html | 20 ++++ .../src/app/app.component.scss | 3 + .../highlight-needle/src/app/app.component.ts | 14 +++ .../highlight-needle/src/app/app.module.ts | 26 +++++ .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 ++ .../src/config/tsconfig.base.json | 24 ++++ .../src/config/tsconfig.spec.json | 19 +++ .../src/config/tsconfig.worker.json | 14 +++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../highlight-needle/src/index.html | 22 ++++ .../linear-gauge/highlight-needle/src/main.ts | 15 +++ .../highlight-needle/src/polyfills.ts | 65 +++++++++++ .../highlight-needle/src/styles.scss | 9 ++ .../highlight-needle/src/typings.d.ts | 5 + .../highlight-needle/tsconfig.json | 21 ++++ 44 files changed, 1026 insertions(+) create mode 100644 samples/gauges/bullet-graph/highlight-needle/.stackblitzrc create mode 100644 samples/gauges/bullet-graph/highlight-needle/ReadMe.md create mode 100644 samples/gauges/bullet-graph/highlight-needle/angular.json create mode 100644 samples/gauges/bullet-graph/highlight-needle/package.json create mode 100644 samples/gauges/bullet-graph/highlight-needle/sandbox.config.json create mode 100644 samples/gauges/bullet-graph/highlight-needle/src/app/app.component.html create mode 100644 samples/gauges/bullet-graph/highlight-needle/src/app/app.component.scss create mode 100644 samples/gauges/bullet-graph/highlight-needle/src/app/app.component.ts create mode 100644 samples/gauges/bullet-graph/highlight-needle/src/app/app.module.ts create mode 100644 samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig-es5.app.json create mode 100644 samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.app.json create mode 100644 samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.base.json create mode 100644 samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.spec.json create mode 100644 samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.worker.json create mode 100644 samples/gauges/bullet-graph/highlight-needle/src/environments/environment.prod.ts create mode 100644 samples/gauges/bullet-graph/highlight-needle/src/environments/environment.ts create mode 100644 samples/gauges/bullet-graph/highlight-needle/src/index.html create mode 100644 samples/gauges/bullet-graph/highlight-needle/src/main.ts create mode 100644 samples/gauges/bullet-graph/highlight-needle/src/polyfills.ts create mode 100644 samples/gauges/bullet-graph/highlight-needle/src/styles.scss create mode 100644 samples/gauges/bullet-graph/highlight-needle/src/typings.d.ts create mode 100644 samples/gauges/bullet-graph/highlight-needle/tsconfig.json create mode 100644 samples/gauges/linear-gauge/highlight-needle/.stackblitzrc create mode 100644 samples/gauges/linear-gauge/highlight-needle/ReadMe.md create mode 100644 samples/gauges/linear-gauge/highlight-needle/angular.json create mode 100644 samples/gauges/linear-gauge/highlight-needle/package.json create mode 100644 samples/gauges/linear-gauge/highlight-needle/sandbox.config.json create mode 100644 samples/gauges/linear-gauge/highlight-needle/src/app/app.component.html create mode 100644 samples/gauges/linear-gauge/highlight-needle/src/app/app.component.scss create mode 100644 samples/gauges/linear-gauge/highlight-needle/src/app/app.component.ts create mode 100644 samples/gauges/linear-gauge/highlight-needle/src/app/app.module.ts create mode 100644 samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig-es5.app.json create mode 100644 samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.app.json create mode 100644 samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.base.json create mode 100644 samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.spec.json create mode 100644 samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.worker.json create mode 100644 samples/gauges/linear-gauge/highlight-needle/src/environments/environment.prod.ts create mode 100644 samples/gauges/linear-gauge/highlight-needle/src/environments/environment.ts create mode 100644 samples/gauges/linear-gauge/highlight-needle/src/index.html create mode 100644 samples/gauges/linear-gauge/highlight-needle/src/main.ts create mode 100644 samples/gauges/linear-gauge/highlight-needle/src/polyfills.ts create mode 100644 samples/gauges/linear-gauge/highlight-needle/src/styles.scss create mode 100644 samples/gauges/linear-gauge/highlight-needle/src/typings.d.ts create mode 100644 samples/gauges/linear-gauge/highlight-needle/tsconfig.json diff --git a/samples/gauges/bullet-graph/highlight-needle/.stackblitzrc b/samples/gauges/bullet-graph/highlight-needle/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/highlight-needle/ReadMe.md b/samples/gauges/bullet-graph/highlight-needle/ReadMe.md new file mode 100644 index 000000000..a441d215d --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of highlight needle feature using [BulletGraph](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/gauges/bullet-graph/highlight-needle +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/gauges/bullet-graph/highlight-needle/angular.json b/samples/gauges/bullet-graph/highlight-needle/angular.json new file mode 100644 index 000000000..0e17c5c1f --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/angular.json @@ -0,0 +1,109 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + }, + "cli": { + "analytics": false + } +} diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json new file mode 100644 index 000000000..db1b119c6 --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-gauges": "17.3.0-beta.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "9.1.1", + "tslint": "~6.1.3", + "typescript": "5.2.2" + } +} diff --git a/samples/gauges/bullet-graph/highlight-needle/sandbox.config.json b/samples/gauges/bullet-graph/highlight-needle/sandbox.config.json new file mode 100644 index 000000000..00acba0c1 --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/highlight-needle/src/app/app.component.html b/samples/gauges/bullet-graph/highlight-needle/src/app/app.component.html new file mode 100644 index 000000000..d755edb80 --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/src/app/app.component.html @@ -0,0 +1,22 @@ +
+ + + + + +
diff --git a/samples/gauges/bullet-graph/highlight-needle/src/app/app.component.scss b/samples/gauges/bullet-graph/highlight-needle/src/app/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/src/app/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/gauges/bullet-graph/highlight-needle/src/app/app.component.ts b/samples/gauges/bullet-graph/highlight-needle/src/app/app.component.ts new file mode 100644 index 000000000..b96c4429b --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/src/app/app.component.ts @@ -0,0 +1,16 @@ +import { Component, OnInit, ViewChild } from "@angular/core"; +import { IgxBulletGraphComponent } from "igniteui-angular-gauges"; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html" +}) + +export class AppComponent implements OnInit { + + @ViewChild("bulletGraph", { static: true }) + public bulletGraph: IgxBulletGraphComponent; + public ngOnInit(): void { + } +} diff --git a/samples/gauges/bullet-graph/highlight-needle/src/app/app.module.ts b/samples/gauges/bullet-graph/highlight-needle/src/app/app.module.ts new file mode 100644 index 000000000..5a475ba9e --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/src/app/app.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; +import { IgxBulletGraphModule } from "igniteui-angular-gauges"; + + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent, + +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxBulletGraphModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig-es5.app.json b/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.app.json b/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.base.json b/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.spec.json b/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.worker.json b/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/gauges/bullet-graph/highlight-needle/src/environments/environment.prod.ts b/samples/gauges/bullet-graph/highlight-needle/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/gauges/bullet-graph/highlight-needle/src/environments/environment.ts b/samples/gauges/bullet-graph/highlight-needle/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/gauges/bullet-graph/highlight-needle/src/index.html b/samples/gauges/bullet-graph/highlight-needle/src/index.html new file mode 100644 index 000000000..67a35017e --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/src/index.html @@ -0,0 +1,22 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + diff --git a/samples/gauges/bullet-graph/highlight-needle/src/main.ts b/samples/gauges/bullet-graph/highlight-needle/src/main.ts new file mode 100644 index 000000000..8b0ce4164 --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app/app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/gauges/bullet-graph/highlight-needle/src/polyfills.ts b/samples/gauges/bullet-graph/highlight-needle/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/gauges/bullet-graph/highlight-needle/src/styles.scss b/samples/gauges/bullet-graph/highlight-needle/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/gauges/bullet-graph/highlight-needle/src/typings.d.ts b/samples/gauges/bullet-graph/highlight-needle/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/gauges/bullet-graph/highlight-needle/tsconfig.json b/samples/gauges/bullet-graph/highlight-needle/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/highlight-needle/.stackblitzrc b/samples/gauges/linear-gauge/highlight-needle/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/highlight-needle/ReadMe.md b/samples/gauges/linear-gauge/highlight-needle/ReadMe.md new file mode 100644 index 000000000..460d62fa4 --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of highlight needle feature using [LinearGauge](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/gauges/linear-gauge/highlight-needle +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/gauges/linear-gauge/highlight-needle/angular.json b/samples/gauges/linear-gauge/highlight-needle/angular.json new file mode 100644 index 000000000..0e17c5c1f --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/angular.json @@ -0,0 +1,109 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + }, + "cli": { + "analytics": false + } +} diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json new file mode 100644 index 000000000..db1b119c6 --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-gauges": "17.3.0-beta.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "9.1.1", + "tslint": "~6.1.3", + "typescript": "5.2.2" + } +} diff --git a/samples/gauges/linear-gauge/highlight-needle/sandbox.config.json b/samples/gauges/linear-gauge/highlight-needle/sandbox.config.json new file mode 100644 index 000000000..00acba0c1 --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/highlight-needle/src/app/app.component.html b/samples/gauges/linear-gauge/highlight-needle/src/app/app.component.html new file mode 100644 index 000000000..be60c04f0 --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/src/app/app.component.html @@ -0,0 +1,20 @@ +
+ + + +
diff --git a/samples/gauges/linear-gauge/highlight-needle/src/app/app.component.scss b/samples/gauges/linear-gauge/highlight-needle/src/app/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/src/app/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/gauges/linear-gauge/highlight-needle/src/app/app.component.ts b/samples/gauges/linear-gauge/highlight-needle/src/app/app.component.ts new file mode 100644 index 000000000..8a89c9cb6 --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/src/app/app.component.ts @@ -0,0 +1,14 @@ +import { Component, ViewChild } from "@angular/core"; +import { IgxLinearGaugeComponent } from "igniteui-angular-gauges"; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html" +}) + +export class AppComponent { + + @ViewChild("linearGauge", { static: true }) + public linearGauge: IgxLinearGaugeComponent; +} diff --git a/samples/gauges/linear-gauge/highlight-needle/src/app/app.module.ts b/samples/gauges/linear-gauge/highlight-needle/src/app/app.module.ts new file mode 100644 index 000000000..fa0236237 --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/src/app/app.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; +import { IgxLinearGaugeModule } from "igniteui-angular-gauges"; + + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent, + +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxLinearGaugeModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig-es5.app.json b/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.app.json b/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.base.json b/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.spec.json b/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.worker.json b/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/gauges/linear-gauge/highlight-needle/src/environments/environment.prod.ts b/samples/gauges/linear-gauge/highlight-needle/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/gauges/linear-gauge/highlight-needle/src/environments/environment.ts b/samples/gauges/linear-gauge/highlight-needle/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/gauges/linear-gauge/highlight-needle/src/index.html b/samples/gauges/linear-gauge/highlight-needle/src/index.html new file mode 100644 index 000000000..67a35017e --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/src/index.html @@ -0,0 +1,22 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + diff --git a/samples/gauges/linear-gauge/highlight-needle/src/main.ts b/samples/gauges/linear-gauge/highlight-needle/src/main.ts new file mode 100644 index 000000000..8b0ce4164 --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app/app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/gauges/linear-gauge/highlight-needle/src/polyfills.ts b/samples/gauges/linear-gauge/highlight-needle/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/gauges/linear-gauge/highlight-needle/src/styles.scss b/samples/gauges/linear-gauge/highlight-needle/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/gauges/linear-gauge/highlight-needle/src/typings.d.ts b/samples/gauges/linear-gauge/highlight-needle/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/gauges/linear-gauge/highlight-needle/tsconfig.json b/samples/gauges/linear-gauge/highlight-needle/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file From e625b2e20461bf13369d506f66a09dd6d121c2a4 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Tue, 2 Apr 2024 09:29:47 -0400 Subject: [PATCH 058/154] Update app.component.html --- .../src/app/app.component.html | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/samples/gauges/linear-gauge/highlight-needle/src/app/app.component.html b/samples/gauges/linear-gauge/highlight-needle/src/app/app.component.html index be60c04f0..1305268ef 100644 --- a/samples/gauges/linear-gauge/highlight-needle/src/app/app.component.html +++ b/samples/gauges/linear-gauge/highlight-needle/src/app/app.component.html @@ -1,20 +1,20 @@
- - + +
From dae224a07e1cf62b614f3d0a42d0ec8718cf4a93 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Tue, 2 Apr 2024 10:33:00 -0400 Subject: [PATCH 059/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.4.2.1 (#150) Co-authored-by: tfsbuild --- samples/charts/category-chart/annotations-all/package.json | 2 +- .../charts/category-chart/annotations-callouts/package.json | 2 +- .../charts/category-chart/annotations-crosshairs/package.json | 2 +- samples/charts/category-chart/annotations-custom/package.json | 2 +- .../category-chart/annotations-final-value/package.json | 2 +- .../category-chart/annotations-highlighting/package.json | 2 +- samples/charts/category-chart/axis-gap/package.json | 2 +- samples/charts/category-chart/axis-gridlines/package.json | 2 +- samples/charts/category-chart/axis-inverted/package.json | 2 +- samples/charts/category-chart/axis-labels/package.json | 2 +- samples/charts/category-chart/axis-locations/package.json | 2 +- samples/charts/category-chart/axis-overlap/package.json | 2 +- samples/charts/category-chart/axis-range/package.json | 2 +- samples/charts/category-chart/axis-tickmarks/package.json | 2 +- .../charts/category-chart/chart-highlight-filter/package.json | 2 +- .../category-chart/column-chart-with-tooltips/package.json | 2 +- samples/charts/category-chart/data-aggregations/package.json | 2 +- samples/charts/category-chart/data-filter/package.json | 2 +- .../category-chart/data-tooltip-positioning/package.json | 2 +- .../charts/category-chart/highlighting-behavior/package.json | 2 +- samples/charts/category-chart/highlighting-mode/package.json | 2 +- samples/charts/category-chart/marker-options/package.json | 2 +- samples/charts/category-chart/value-lines/package.json | 2 +- samples/charts/data-chart/axis-label-rotation/package.json | 2 +- .../data-chart/chart-highlight-filter-datasource/package.json | 2 +- .../chart-highlight-filter-multiple-series/package.json | 2 +- samples/charts/data-chart/chart-highlight-filter/package.json | 2 +- samples/charts/data-chart/data-legend/src/app.component.html | 4 ++-- samples/charts/data-chart/data-tooltip/src/app.component.html | 4 ++-- .../data-chart/scatter-bubble-chart-fill-scale/package.json | 2 +- .../scatter-bubble-chart-fill-scale/src/app.component.html | 4 ++-- .../scatter-bubble-chart-fill-scale/src/app.component.ts | 2 +- .../src/app.component.html | 4 ++-- .../scatter-bubble-chart-single-source/src/app.component.html | 2 +- .../scatter-bubble-chart-styling/src/app.component.html | 4 ++-- samples/charts/data-chart/transition-event/package.json | 2 +- samples/charts/sparkline/markers/package.json | 2 +- samples/charts/sparkline/normal-range/package.json | 2 +- samples/charts/sparkline/trendlines/package.json | 2 +- samples/charts/sparkline/unknown-values/package.json | 2 +- samples/charts/toolbar/theming/package.json | 2 +- samples/charts/tree-map/layout/package.json | 2 +- 42 files changed, 47 insertions(+), 47 deletions(-) diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-legend/src/app.component.html b/samples/charts/data-chart/data-legend/src/app.component.html index 555001940..34688ac31 100644 --- a/samples/charts/data-chart/data-legend/src/app.component.html +++ b/samples/charts/data-chart/data-legend/src/app.component.html @@ -38,7 +38,7 @@ xMemberPath="deathRate" yMemberPath="birthRate" radiusMemberPath="population" - [radiusScale]="sizeScale1" + [radiusScale]="SizeScale1" title="Africa" radiusMemberAsLegendLabel="Population: " xMemberAsLegendLabel="Death Rate: " @@ -53,7 +53,7 @@ xMemberPath="deathRate" yMemberPath="birthRate" radiusMemberPath="population" - [radiusScale]="sizeScale2" + [radiusScale]="SizeScale2" title="Europe" radiusMemberAsLegendLabel="Population: " xMemberAsLegendLabel="Death Rate: " diff --git a/samples/charts/data-chart/data-tooltip/src/app.component.html b/samples/charts/data-chart/data-tooltip/src/app.component.html index fd3c33ce7..778bd3970 100644 --- a/samples/charts/data-chart/data-tooltip/src/app.component.html +++ b/samples/charts/data-chart/data-tooltip/src/app.component.html @@ -31,7 +31,7 @@ xMemberPath="deathRate" yMemberPath="birthRate" radiusMemberPath="population" - [radiusScale]="sizeScale1" + [radiusScale]="SizeScale1" title="Africa" radiusMemberAsLegendLabel="Population: " xMemberAsLegendLabel="Death Rate: " @@ -46,7 +46,7 @@ xMemberPath="deathRate" yMemberPath="birthRate" radiusMemberPath="population" - [radiusScale]="sizeScale2" + [radiusScale]="SizeScale2" title="Europe" radiusMemberAsLegendLabel="Population: " xMemberAsLegendLabel="Death Rate: " diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 45bc6e299..2323c210d 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0-beta.0", "igniteui-angular-inputs": "17.3.0-beta.0", "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html index 5334a49f7..8ef10c444 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html @@ -58,7 +58,7 @@ xMemberPath="population" yMemberPath="publicDebt" radiusMemberPath="gdpPerCapita" - [radiusScale]="sizeScale1" + [radiusScale]="SizeScale1" fillMemberPath="gdpPerCapita" [xAxis]="xAxis" [yAxis]="yAxis" @@ -66,7 +66,7 @@ markerType="Circle" markerOutline="black" showDefaultTooltip="true" - [fillScale]="valueBrushScale1"> + [fillScale]="ValueBrushScale1">
diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts index 4348e8d6a..8621fb96e 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts @@ -56,7 +56,7 @@ export class AppComponent implements AfterViewInit valueBrushScale1.isLogarithmic = false; valueBrushScale1.minimumValue = 0; valueBrushScale1.maximumValue = 100000; - valueBrushScale1.brushes = ["rgba(26, 161, 226, 1)", "rgba(24, 154, 217, 1)", "rgba(22, 146, 206, 1)", "rgba(19, 133, 188, 1)", "rgba(15, 121, 171, 1)", "rgba(12, 107, 153, 1)", "rgba(9, 94, 136, 1)", "rgba(5, 82, 119, 1)", "rgba(2, 70, 105, 1)", "rgba(0, 63, 94, 1)"]; + valueBrushScale1.brushes = "rgba(26, 161, 226, 1) rgba(24, 154, 217, 1) rgba(22, 146, 206, 1) rgba(19, 133, 188, 1) rgba(15, 121, 171, 1) rgba(12, 107, 153, 1) rgba(9, 94, 136, 1) rgba(5, 82, 119, 1) rgba(2, 70, 105, 1) rgba(0, 63, 94, 1)"; this._valueBrushScale1 = valueBrushScale1; } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html index fc39d6b1b..ac81e3df9 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html @@ -40,7 +40,7 @@ [dataSource]="countryStatsAfrica" markerType="Circle" showDefaultTooltip="true" - [radiusScale]="sizeScale1"> + [radiusScale]="SizeScale1"> + [radiusScale]="SizeScale2">
diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html index 672b6b1c7..346190e03 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html @@ -27,7 +27,7 @@ xMemberPath="population" yMemberPath="publicDebt" radiusMemberPath="gdpPerCapita" - [radiusScale]="sizeScale1" + [radiusScale]="SizeScale1" fillMemberPath="gdpPerCapita" [xAxis]="xAxis" [yAxis]="yAxis" diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html index 7ec0ba1aa..d7da0190e 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html @@ -44,7 +44,7 @@ markerFillOpacity="0.5" markerThickness="2" showDefaultTooltip="true" - [radiusScale]="sizeScale1"> + [radiusScale]="SizeScale1"> + [radiusScale]="SizeScale2"> Date: Mon, 8 Apr 2024 17:24:18 -0400 Subject: [PATCH 060/154] updateIG 17.3.0 updateIG 17.3.0 --- browser/package.json | 18 ++++++++--------- browser/scripts/browser.js | 20 +++++++++---------- .../annotations-all/package.json | 10 +++++----- .../annotations-callouts/package.json | 10 +++++----- .../annotations-crosshairs/package.json | 10 +++++----- .../annotations-custom/package.json | 10 +++++----- .../annotations-final-value/package.json | 10 +++++----- .../annotations-highlighting/package.json | 10 +++++----- .../category-chart/annotations/package.json | 4 ++-- .../area-chart-multiple-sources/package.json | 4 ++-- .../area-chart-single-source/package.json | 4 ++-- .../area-chart-styling/package.json | 4 ++-- .../category-chart/axis-gap/package.json | 10 +++++----- .../axis-gridlines/package.json | 10 +++++----- .../category-chart/axis-inverted/package.json | 10 +++++----- .../category-chart/axis-labels/package.json | 10 +++++----- .../axis-locations/package.json | 10 +++++----- .../category-chart/axis-options/package.json | 4 ++-- .../category-chart/axis-overlap/package.json | 10 +++++----- .../category-chart/axis-range/package.json | 10 +++++----- .../axis-tickmarks/package.json | 10 +++++----- .../category-chart/axis-titles/package.json | 4 ++-- .../chart-highlight-filter/package.json | 10 +++++----- .../package.json | 4 ++-- .../column-chart-single-source/package.json | 4 ++-- .../column-chart-styling/package.json | 4 ++-- .../package.json | 4 ++-- .../column-chart-with-tooltips/package.json | 10 +++++----- .../custom-selection/package.json | 4 ++-- .../data-aggregations/package.json | 10 +++++----- .../category-chart/data-filter/package.json | 10 +++++----- .../package.json | 4 ++-- .../category-chart/data-legend/package.json | 4 ++-- .../package.json | 4 ++-- .../data-tooltip-positioning/package.json | 10 +++++----- .../category-chart/data-tooltip/package.json | 4 ++-- .../format-specifiers/package.json | 8 ++++---- .../high-frequency/package.json | 4 ++-- .../category-chart/high-volume/package.json | 4 ++-- .../highlighting-behavior/package.json | 10 +++++----- .../highlighting-mode/package.json | 10 +++++----- .../category-chart/highlighting/package.json | 4 ++-- .../legend-highlighting/package.json | 4 ++-- .../line-chart-multiple-sources/package.json | 4 ++-- .../line-chart-single-source/package.json | 4 ++-- .../line-chart-styling/package.json | 4 ++-- .../line-chart-with-animations/package.json | 4 ++-- .../line-chart-with-annotations/package.json | 4 ++-- .../line-chart-with-legend/package.json | 4 ++-- .../marker-options/package.json | 10 +++++----- .../marker-templates/package.json | 4 ++-- .../category-chart/overview/package.json | 4 ++-- .../point-chart-multiple-sources/package.json | 4 ++-- .../point-chart-single-source/package.json | 4 ++-- .../point-chart-styling/package.json | 4 ++-- .../spline-area-multiple-sources/package.json | 4 ++-- .../spline-area-single-source/package.json | 4 ++-- .../spline-area-styling/package.json | 4 ++-- .../spline-multiple-sources/package.json | 4 ++-- .../spline-single-source/package.json | 4 ++-- .../spline-styling/package.json | 4 ++-- .../category-chart/stack-columns/package.json | 4 ++-- .../step-area-multiple-sources/package.json | 4 ++-- .../step-area-single-source/package.json | 4 ++-- .../step-area-styling/package.json | 4 ++-- .../step-line-multiple-sources/package.json | 4 ++-- .../step-line-single-source/package.json | 4 ++-- .../step-line-styling/package.json | 4 ++-- .../tooltip-template/package.json | 4 ++-- .../category-chart/tooltip-types/package.json | 4 ++-- .../category-chart/trendline/package.json | 4 ++-- .../category-chart/value-lines/package.json | 10 +++++----- .../annotations-custom/package.json | 4 ++-- .../package.json | 4 ++-- .../data-chart/axis-annotations/package.json | 4 ++-- .../data-chart/axis-crossing/package.json | 4 ++-- .../axis-label-rotation/package.json | 10 +++++----- .../data-chart/axis-locations/package.json | 4 ++-- .../data-chart/axis-min-max-gap/package.json | 4 ++-- .../data-chart/axis-settings/package.json | 4 ++-- .../data-chart/axis-sharing/package.json | 4 ++-- .../charts/data-chart/axis-types/package.json | 4 ++-- .../bar-chart-multiple-sources/package.json | 4 ++-- .../bar-chart-overlapping/package.json | 4 ++-- .../bar-chart-single-source/package.json | 4 ++-- .../data-chart/bar-chart-styling/package.json | 4 ++-- .../callout-layer-styling/package.json | 4 ++-- .../package.json | 10 +++++----- .../package.json | 10 +++++----- .../chart-highlight-filter/package.json | 10 +++++----- .../data-chart/chart-navigation/package.json | 4 ++-- .../data-chart/chart-overview/package.json | 4 ++-- .../data-chart/chart-performance/package.json | 4 ++-- .../chart-synchronization/package.json | 4 ++-- .../data-chart/chart-titles/package.json | 4 ++-- .../column-chart-styling/package.json | 4 ++-- .../data-chart/composite-chart/package.json | 4 ++-- .../crosshair-layer-styling/package.json | 4 ++-- .../custom-drawing-annotations/package.json | 8 ++++---- .../custom-editing-data/package.json | 4 ++-- .../data-chart/dash-array-axes/package.json | 4 ++-- .../data-chart/dash-array-series/package.json | 4 ++-- .../dash-array-tickmarks/package.json | 4 ++-- .../dash-array-trendline/package.json | 4 ++-- .../data-chart/data-legend/package.json | 4 ++-- .../data-chart/data-tooltip/package.json | 4 ++-- .../final-value-layer-styling/package.json | 4 ++-- .../financial-price-series/package.json | 4 ++-- .../data-chart/format-specifiers/package.json | 4 ++-- .../charts/data-chart/legends/package.json | 4 ++-- .../polar-area-chart-styling/package.json | 4 ++-- .../data-chart/polar-area-chart/package.json | 4 ++-- .../data-chart/polar-chart-types/package.json | 4 ++-- .../data-chart/polar-line-chart/package.json | 4 ++-- .../polar-scatter-chart/package.json | 4 ++-- .../polar-spline-area-chart/package.json | 4 ++-- .../polar-spline-chart/package.json | 4 ++-- .../radial-area-chart-styling/package.json | 4 ++-- .../data-chart/radial-area-chart/package.json | 4 ++-- .../radial-chart-types/package.json | 4 ++-- .../radial-column-chart/package.json | 4 ++-- .../data-chart/radial-line-chart/package.json | 4 ++-- .../data-chart/radial-pie-chart/package.json | 4 ++-- .../data-chart/range-area-chart/package.json | 4 ++-- .../range-column-chart/package.json | 4 ++-- .../package.json | 10 +++++----- .../package.json | 4 ++-- .../package.json | 4 ++-- .../scatter-bubble-chart-styling/package.json | 4 ++-- .../scatter-line-chart/package.json | 4 ++-- .../scatter-point-chart/package.json | 4 ++-- .../scatter-spline-chart/package.json | 4 ++-- .../data-chart/series-animations/package.json | 4 ++-- .../series-annotations/package.json | 4 ++-- .../series-highlighting/package.json | 4 ++-- .../series-marker-template/package.json | 4 ++-- .../data-chart/series-markers/package.json | 4 ++-- .../data-chart/series-tooltips/package.json | 4 ++-- .../data-chart/series-trendlines/package.json | 4 ++-- .../series-value-overlay/package.json | 4 ++-- .../stacked-100-area-chart/package.json | 4 ++-- .../stacked-100-bar-chart/package.json | 4 ++-- .../stacked-100-column-chart/package.json | 4 ++-- .../stacked-100-line-chart/package.json | 4 ++-- .../package.json | 4 ++-- .../stacked-100-spline-chart/package.json | 4 ++-- .../stacked-area-chart/package.json | 4 ++-- .../data-chart/stacked-bar-chart/package.json | 4 ++-- .../stacked-chart-types/package.json | 4 ++-- .../stacked-column-chart/package.json | 4 ++-- .../stacked-line-chart/package.json | 4 ++-- .../stacked-spline-area-chart/package.json | 4 ++-- .../stacked-spline-chart/package.json | 4 ++-- .../data-chart/tooltip-template/package.json | 4 ++-- .../data-chart/transition-event/package.json | 10 +++++----- .../type-category-area-series/package.json | 4 ++-- .../type-category-bar-series/package.json | 4 ++-- .../type-category-column-series/package.json | 4 ++-- .../type-category-line-series/package.json | 4 ++-- .../type-category-point-series/package.json | 4 ++-- .../type-category-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-category-spline-series/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../type-financial-ohlc-series/package.json | 4 ++-- .../type-financial-overlays/package.json | 4 ++-- .../type-financial-series/package.json | 4 ++-- .../type-radial-area-series/package.json | 4 ++-- .../type-radial-column-series/package.json | 4 ++-- .../type-radial-line-series/package.json | 4 ++-- .../type-radial-pie-series/package.json | 4 ++-- .../type-range-area-series/package.json | 4 ++-- .../type-range-column-series/package.json | 4 ++-- .../data-chart/type-range-series/package.json | 4 ++-- .../type-scatter-area-series/package.json | 4 ++-- .../type-scatter-bubble-series/package.json | 4 ++-- .../type-scatter-contour-series/package.json | 4 ++-- .../type-scatter-hd-series/package.json | 4 ++-- .../type-scatter-line-series/package.json | 4 ++-- .../type-scatter-point-series/package.json | 4 ++-- .../type-scatter-polygon-series/package.json | 4 ++-- .../type-scatter-polyline-series/package.json | 4 ++-- .../type-scatter-series/package.json | 4 ++-- .../type-scatter-spline-series/package.json | 4 ++-- .../data-chart/type-shape-series/package.json | 4 ++-- .../type-stacked-100-area-series/package.json | 4 ++-- .../type-stacked-100-bar-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-100-line-series/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-area-series/package.json | 4 ++-- .../type-stacked-bar-series/package.json | 4 ++-- .../type-stacked-column-series/package.json | 4 ++-- .../type-stacked-line-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-spline-series/package.json | 4 ++-- .../data-chart/waterfall-chart/package.json | 4 ++-- .../doughnut-chart/animation/package.json | 4 ++-- .../doughnut-chart/explosion/package.json | 4 ++-- .../charts/doughnut-chart/legend/package.json | 4 ++-- .../doughnut-chart/overview/package.json | 4 ++-- .../charts/doughnut-chart/rings/package.json | 4 ++-- .../doughnut-chart/selection/package.json | 4 ++-- .../financial-chart/annotations/package.json | 4 ++-- .../financial-chart/axis-types/package.json | 4 ++-- .../package.json | 4 ++-- .../data-legend-styling-props/package.json | 4 ++-- .../financial-chart/data-legend/package.json | 4 ++-- .../package.json | 4 ++-- .../data-tooltip-styling-props/package.json | 4 ++-- .../financial-chart/data-tooltip/package.json | 4 ++-- .../format-specifiers/package.json | 4 ++-- .../high-frequency/package.json | 4 ++-- .../financial-chart/high-volume/package.json | 4 ++-- .../indicator-customization/package.json | 4 ++-- .../indicator-types/package.json | 4 ++-- .../multiple-data/package.json | 4 ++-- .../multiple-feeds/package.json | 4 ++-- .../financial-chart/overview/package.json | 4 ++-- .../charts/financial-chart/panes/package.json | 4 ++-- .../financial-chart/performance/package.json | 4 ++-- .../financial-chart/scrollbars/package.json | 4 ++-- .../stock-index-chart/package.json | 4 ++-- .../financial-chart/styling/package.json | 4 ++-- .../financial-chart/theming/package.json | 4 ++-- .../time-based-data/package.json | 4 ++-- .../financial-chart/titles/package.json | 4 ++-- .../tooltip-template/package.json | 4 ++-- .../tooltip-types/package.json | 4 ++-- .../financial-chart/trendlines/package.json | 4 ++-- .../financial-chart/volume-types/package.json | 4 ++-- .../charts/pie-chart/animation/package.json | 4 ++-- .../charts/pie-chart/explosion/package.json | 4 ++-- samples/charts/pie-chart/legend/package.json | 4 ++-- samples/charts/pie-chart/others/package.json | 4 ++-- .../charts/pie-chart/overview/package.json | 4 ++-- .../charts/pie-chart/selection/package.json | 4 ++-- samples/charts/pie-chart/styling/package.json | 4 ++-- .../sparkline/display-area/package.json | 4 ++-- .../sparkline/display-column/package.json | 4 ++-- .../sparkline/display-lines/package.json | 8 ++++---- .../sparkline/display-types/package.json | 4 ++-- .../sparkline/display-winloss/package.json | 4 ++-- samples/charts/sparkline/grid/package.json | 4 ++-- samples/charts/sparkline/markers/package.json | 10 +++++----- .../sparkline/normal-range/package.json | 10 +++++----- .../charts/sparkline/trendlines/package.json | 10 +++++----- .../sparkline/unknown-values/package.json | 10 +++++----- .../package.json | 8 ++++---- .../actions-built-in-data-chart/package.json | 8 ++++---- .../charts/toolbar/custom-tool/package.json | 6 +++--- .../package.json | 8 ++++---- .../package.json | 8 ++++---- samples/charts/toolbar/theming/package.json | 10 +++++----- samples/charts/tree-map/events/package.json | 4 ++-- .../charts/tree-map/highlighting/package.json | 10 +++++----- samples/charts/tree-map/layout/package.json | 10 +++++----- samples/charts/tree-map/overview/package.json | 4 ++-- samples/charts/tree-map/styling/package.json | 4 ++-- .../charts/zoomslider/overview/package.json | 4 ++-- .../operations-on-workbooks/package.json | 4 ++-- .../operations-on-worksheets/package.json | 4 ++-- .../excel/excel-library/overview/package.json | 4 ++-- .../working-with-cells/package.json | 4 ++-- .../working-with-charts/package.json | 6 +++--- .../working-with-sparklines/package.json | 6 +++--- .../working-with-tables/package.json | 8 ++++---- .../excel/spreadsheet/activation/package.json | 6 +++--- .../spreadsheet/adapter-chart/package.json | 10 +++++----- .../spreadsheet/adapter-combo/package.json | 10 +++++----- .../excel/spreadsheet/clipboard/package.json | 6 +++--- .../excel/spreadsheet/commands/package.json | 6 +++--- .../conditional-formatting/package.json | 6 +++--- .../spreadsheet/config-options/package.json | 6 +++--- .../spreadsheet/data-validation/package.json | 6 +++--- .../excel/spreadsheet/hyperlinks/package.json | 6 +++--- .../excel/spreadsheet/overview/package.json | 6 +++--- .../bullet-graph/animation/package.json | 4 ++-- .../bullet-graph/background/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/bullet-graph/labels/package.json | 4 ++-- .../gauges/bullet-graph/measures/package.json | 4 ++-- .../gauges/bullet-graph/ranges/package.json | 4 ++-- .../gauges/bullet-graph/scale/package.json | 4 ++-- .../bullet-graph/tickmarks/package.json | 4 ++-- .../linear-gauge/animation/package.json | 4 ++-- .../gauges/linear-gauge/backing/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/linear-gauge/labels/package.json | 4 ++-- .../gauges/linear-gauge/needle/package.json | 4 ++-- .../gauges/linear-gauge/ranges/package.json | 4 ++-- .../gauges/linear-gauge/scale/package.json | 4 ++-- .../linear-gauge/tickmarks/package.json | 4 ++-- .../radial-gauge/animation/package.json | 4 ++-- .../gauges/radial-gauge/backing/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/radial-gauge/labels/package.json | 4 ++-- .../gauges/radial-gauge/needle/package.json | 4 ++-- .../radial-gauge/optical-scaling/package.json | 4 ++-- .../gauges/radial-gauge/ranges/package.json | 4 ++-- .../gauges/radial-gauge/scale/package.json | 4 ++-- .../radial-gauge/tickmarks/package.json | 4 ++-- .../geo-map/binding-data-csv/package.json | 6 +++--- .../binding-data-json-points/package.json | 6 +++--- .../geo-map/binding-data-model/package.json | 6 +++--- .../binding-multiple-shapes/package.json | 6 +++--- .../binding-multiple-sources/package.json | 6 +++--- .../geo-map/binding-shp-points/package.json | 6 +++--- .../geo-map/binding-shp-polygons/package.json | 6 +++--- .../binding-shp-polylines/package.json | 6 +++--- .../maps/geo-map/custom-tooltips/package.json | 6 +++--- .../geo-map/display-bing-imagery/package.json | 6 +++--- .../geo-map/display-esri-imagery/package.json | 6 +++--- .../geo-map/display-heat-imagery/package.json | 6 +++--- .../geo-map/display-osm-imagery/package.json | 6 +++--- .../maps/geo-map/marker-layouts/package.json | 6 +++--- .../maps/geo-map/marker-template/package.json | 6 +++--- samples/maps/geo-map/marker-type/package.json | 6 +++--- samples/maps/geo-map/navigation/package.json | 6 +++--- samples/maps/geo-map/overview/package.json | 6 +++--- .../maps/geo-map/shape-styling/package.json | 6 +++--- .../geo-map/triangulating-data/package.json | 6 +++--- .../type-scatter-area-series/package.json | 6 +++--- .../type-scatter-bubble-series/package.json | 6 +++--- .../type-scatter-contour-series/package.json | 6 +++--- .../type-scatter-density-series/package.json | 6 +++--- .../type-scatter-symbol-series/package.json | 6 +++--- .../type-shape-polygon-series/package.json | 6 +++--- .../type-shape-polyline-series/package.json | 6 +++--- 336 files changed, 855 insertions(+), 855 deletions(-) diff --git a/browser/package.json b/browser/package.json index 32a909713..904b2ec9a 100644 --- a/browser/package.json +++ b/browser/package.json @@ -39,15 +39,15 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", - "igniteui-angular-spreadsheet": "17.3.0-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", + "igniteui-angular-gauges": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-angular-maps": "17.3.0", + "igniteui-angular-spreadsheet": "17.3.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.3.0", "igniteui-theming": "3.3.1", "igniteui-webcomponents": "4.7.0", "immediate": "3.2.3", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 8ae561da7..72554861b 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1071,16 +1071,16 @@ function updateIG(cb) { // { name: "igniteui-angular-charts", version: "14.1.0" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { name: "igniteui-angular-core" , version: "17.3.0-beta.0" }, - { name: "igniteui-angular-charts" , version: "17.3.0-beta.0" }, - { name: "igniteui-angular-excel" , version: "17.3.0-beta.0" }, - { name: "igniteui-angular-gauges" , version: "17.3.0-beta.0" }, - { name: "igniteui-angular-inputs" , version: "17.3.0-beta.0" }, - { name: "igniteui-angular-layouts" , version: "17.3.0-beta.0" }, - { name: "igniteui-angular-maps" , version: "17.3.0-beta.0" }, - { name: "igniteui-angular-spreadsheet-chart-adapter", version: "17.3.0-beta.0" }, - { name: "igniteui-angular-spreadsheet" , version: "17.3.0-beta.0" }, - { name: "igniteui-angular-datasources" , version: "17.3.0-beta.0" }, + { name: "igniteui-angular-core" , version: "17.3.0" }, + { name: "igniteui-angular-charts" , version: "17.3.0" }, + { name: "igniteui-angular-excel" , version: "17.3.0" }, + { name: "igniteui-angular-gauges" , version: "17.3.0" }, + { name: "igniteui-angular-inputs" , version: "17.3.0" }, + { name: "igniteui-angular-layouts" , version: "17.3.0" }, + { name: "igniteui-angular-maps" , version: "17.3.0" }, + { name: "igniteui-angular-spreadsheet-chart-adapter", version: "17.3.0" }, + { name: "igniteui-angular-spreadsheet" , version: "17.3.0" }, + { name: "igniteui-angular-datasources" , version: "17.3.0" }, // these IG packages are sometimes updated: { name: "igniteui-webcomponents", version: "4.7.0" }, { name: "igniteui-theming", version: "3.3.1" }, diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 632873a59..ce1218318 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 3f89920d8..5b5b92791 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 3f89920d8..5b5b92791 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 2f591a834..85a502ef3 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 632873a59..ce1218318 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 54b796790..7db519de7 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "igniteui-theming": "3.3.1", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 632873a59..ce1218318 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 632873a59..ce1218318 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index c16540840..173f84277 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 632873a59..ce1218318 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 632873a59..ce1218318 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 3f89920d8..5b5b92791 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index b2a463978..2581600e3 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 2323c210d..d4b1281e9 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -18,11 +18,11 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-inputs": "17.3.0-beta.0", - "igniteui-angular-layouts": "17.3.0-beta.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-inputs": "17.3.0", + "igniteui-angular-layouts": "17.3.0", + "igniteui-webcomponents": "4.7.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 1be6b88e2..aab01e53b 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 42a1a28ff..0a881a436 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 1aa5594db..18eb42fce 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -21,8 +21,8 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 647137bb8..bea44b966 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 647137bb8..bea44b966 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 647137bb8..bea44b966 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 346e42c13..a394f3006 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 346e42c13..a394f3006 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index 40664e302..26459cbfb 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -20,10 +20,10 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", - "igniteui-angular-spreadsheet": "17.3.0-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", + "igniteui-angular-spreadsheet": "17.3.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index a82121c16..bb42b47f5 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", - "igniteui-angular-spreadsheet": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", + "igniteui-angular-spreadsheet": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 4c6689a18..68f587425 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", - "igniteui-angular-spreadsheet": "17.3.0-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", + "igniteui-angular-spreadsheet": "17.3.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index 4c6689a18..68f587425 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", - "igniteui-angular-spreadsheet": "17.3.0-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", + "igniteui-angular-spreadsheet": "17.3.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index a82121c16..bb42b47f5 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", - "igniteui-angular-spreadsheet": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", + "igniteui-angular-spreadsheet": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index a82121c16..bb42b47f5 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", - "igniteui-angular-spreadsheet": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", + "igniteui-angular-spreadsheet": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index a82121c16..bb42b47f5 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", - "igniteui-angular-spreadsheet": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", + "igniteui-angular-spreadsheet": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index a82121c16..bb42b47f5 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", - "igniteui-angular-spreadsheet": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", + "igniteui-angular-spreadsheet": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index a82121c16..bb42b47f5 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", - "igniteui-angular-spreadsheet": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", + "igniteui-angular-spreadsheet": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index a82121c16..bb42b47f5 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", - "igniteui-angular-spreadsheet": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", + "igniteui-angular-spreadsheet": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index a82121c16..bb42b47f5 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-excel": "17.3.0-beta.0", - "igniteui-angular-spreadsheet": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-excel": "17.3.0", + "igniteui-angular-spreadsheet": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index f5dbdbcf1..f671b5c32 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index f5dbdbcf1..f671b5c32 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index f5dbdbcf1..f671b5c32 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index db1b119c6..38e3054c5 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-gauges": "17.3.0-beta.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index fbd684198..501fd226e 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0-beta.0", - "igniteui-angular-core": "17.3.0-beta.0", - "igniteui-angular-maps": "17.3.0-beta.0", + "igniteui-angular-charts": "17.3.0", + "igniteui-angular-core": "17.3.0", + "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", From bcb783b5ba0a120bec47c4f5d3a7da3fb3238e2f Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Fri, 12 Apr 2024 07:45:13 -0400 Subject: [PATCH 061/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.4.12.6 --- .../annotations-all/package.json | 2 +- .../annotations-callouts/package.json | 2 +- .../annotations-crosshairs/package.json | 2 +- .../annotations-custom/package.json | 2 +- .../annotations-final-value/package.json | 2 +- .../annotations-highlighting/package.json | 2 +- .../category-chart/axis-gap/package.json | 2 +- .../axis-gridlines/package.json | 2 +- .../category-chart/axis-inverted/package.json | 2 +- .../category-chart/axis-labels/package.json | 2 +- .../axis-locations/package.json | 2 +- .../category-chart/axis-overlap/package.json | 2 +- .../category-chart/axis-range/package.json | 2 +- .../axis-tickmarks/package.json | 2 +- .../chart-highlight-filter/package.json | 2 +- .../chart-highlight-filter/src/SalesData.ts | 17714 +--------------- .../column-chart-with-tooltips/package.json | 2 +- .../data-aggregations/package.json | 2 +- .../data-aggregations/src/SalesData.ts | 17714 +--------------- .../category-chart/data-filter/package.json | 2 +- .../data-filter/src/SalesData.ts | 17714 +--------------- .../data-tooltip-positioning/package.json | 2 +- .../highlighting-behavior/package.json | 2 +- .../highlighting-mode/package.json | 2 +- .../marker-options/package.json | 2 +- .../category-chart/value-lines/package.json | 2 +- .../axis-label-rotation/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../chart-highlight-filter/package.json | 2 +- .../package.json | 2 +- .../data-chart/transition-event/package.json | 2 +- samples/charts/sparkline/markers/package.json | 2 +- .../sparkline/normal-range/package.json | 2 +- .../charts/sparkline/trendlines/package.json | 2 +- .../sparkline/unknown-values/package.json | 2 +- samples/charts/toolbar/theming/package.json | 2 +- samples/charts/tree-map/layout/package.json | 2 +- 38 files changed, 3161 insertions(+), 50051 deletions(-) diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/chart-highlight-filter/src/SalesData.ts b/samples/charts/category-chart/chart-highlight-filter/src/SalesData.ts index 2da064b31..25697b809 100644 --- a/samples/charts/category-chart/chart-highlight-filter/src/SalesData.ts +++ b/samples/charts/category-chart/chart-highlight-filter/src/SalesData.ts @@ -2,16678 +2,1048 @@ export class SalesData extends Array { public constructor() { super(); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `501`, - ManufacturingPrice: 15, - SalePrice: 23, - GrossSales: 26440, - Discounts: 0, - Sales: 26440, - COGS: 16185, - Profit: 11255, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1372`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 27440, - Discounts: 0, - Sales: 27440, - COGS: 16185, - Profit: 11255, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2762`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 55240, - Discounts: 0, - Sales: 55240, - COGS: 13210, - Profit: 42030, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1464`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 21960, - Discounts: 0, - Sales: 21960, - COGS: 21780, - Profit: 180, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `719`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 10785, - Discounts: 0, - Sales: 10785, - COGS: 8880, - Profit: 1905, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3576`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 53640, - Discounts: 0, - Sales: 53640, - COGS: 24700, - Profit: 28940, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `4422`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1547700, - Discounts: 0, - Sales: 1547700, - COGS: 393380, - Profit: 1154320, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3649`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 54735, - Discounts: 0, - Sales: 54735, - COGS: 9210, - Profit: 45525, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4172`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 50064, - Discounts: 0, - Sales: 50064, - COGS: 7554, - Profit: 42510, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3841`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 76820, - Discounts: 0, - Sales: 76820, - COGS: 18990, - Profit: 57830, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3726`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 44712, - Discounts: 0, - Sales: 44712, - COGS: 4635, - Profit: 40077, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2625`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 39375, - Discounts: 0, - Sales: 39375, - COGS: 24700, - Profit: 14675, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1958`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 244750, - Discounts: 0, - Sales: 244750, - COGS: 319860, - Profit: 75110, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `3271`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 981300, - Discounts: 0, - Sales: 981300, - COGS: 239500, - Profit: 741800, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2091`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 14637, - Discounts: 0, - Sales: 14637, - COGS: 10730, - Profit: 3907, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2825`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 42375, - Discounts: 0, - Sales: 42375, - COGS: 6150, - Profit: 36225, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2513`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 50260, - Discounts: 0, - Sales: 50260, - COGS: 2920, - Profit: 47340, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `883`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 13245, - Discounts: 0, - Sales: 13245, - COGS: 9740, - Profit: 3505, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2087`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 25044, - Discounts: 0, - Sales: 25044, - COGS: 7554, - Profit: 17490, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2563`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 897050, - Discounts: 0, - Sales: 897050, - COGS: 261560, - Profit: 635490, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2846`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 34152, - Discounts: 0, - Sales: 34152, - COGS: 1101, - Profit: 33051, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `997`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 6979, - Discounts: 0, - Sales: 6979, - COGS: 4415, - Profit: 2564, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2290`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 34350, - Discounts: 0, - Sales: 34350, - COGS: 24720, - Profit: 9630, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2133`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 14931, - Discounts: 0, - Sales: 14931, - COGS: 5715, - Profit: 9216, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3617`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 72340, - Discounts: 0, - Sales: 72340, - COGS: 18170, - Profit: 54170, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1266`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 443100, - Discounts: 0, - Sales: 443100, - COGS: 393380, - Profit: 49720, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `894`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 6258, - Discounts: 0, - Sales: 6258, - COGS: 7465, - Profit: 1207, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `2725`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 340625, - Discounts: 0, - Sales: 340625, - COGS: 216480, - Profit: 124145, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3061`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 36732, - Discounts: 0, - Sales: 36732, - COGS: 6483, - Profit: 30249, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3958`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1385300, - Discounts: 0, - Sales: 1385300, - COGS: 261560, - Profit: 1123740, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3920`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 47040, - Discounts: 0, - Sales: 47040, - COGS: 4635, - Profit: 42405, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3381`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 422625, - Discounts: 0, - Sales: 422625, - COGS: 338520, - Profit: 84105, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4307`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 1292100, - Discounts: 0, - Sales: 1292100, - COGS: 500250, - Profit: 791850, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `878`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 10536, - Discounts: 0, - Sales: 10536, - COGS: 8514, - Profit: 2022, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `496`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 7440, - Discounts: 0, - Sales: 7440, - COGS: 21780, - Profit: 14340, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3367`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 50505, - Discounts: 0, - Sales: 50505, - COGS: 8880, - Profit: 41625, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2055`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 616500, - Discounts: 0, - Sales: 616500, - COGS: 537750, - Profit: 78750, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4041`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 80820, - Discounts: 0, - Sales: 80820, - COGS: 18170, - Profit: 62650, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `3237`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1132950, - Discounts: 0, - Sales: 1132950, - COGS: 715000, - Profit: 417950, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `630`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 7560, - Discounts: 0, - Sales: 7560, - COGS: 5859, - Profit: 1701, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4210`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 526250, - Discounts: 0, - Sales: 526250, - COGS: 506340, - Profit: 19910, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1127`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 22540, - Discounts: 0, - Sales: 22540, - COGS: 18990, - Profit: 3550, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `3438`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 24066, - Discounts: 0, - Sales: 24066, - COGS: 8430, - Profit: 15636, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2015`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 24180, - Discounts: 0, - Sales: 24180, - COGS: 6423, - Profit: 17757, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2534`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 17738, - Discounts: 0, - Sales: 17738, - COGS: 5715, - Profit: 12023, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1384`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 20760, - Discounts: 0, - Sales: 20760, - COGS: 6150, - Profit: 14610, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3561`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 24927, - Discounts: 276.15, - Sales: 24650.85, - COGS: 19725, - Profit: 4925.85, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1823`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 27345, - Discounts: 344.4, - Sales: 27000.6, - COGS: 22960, - Profit: 4040.6, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2795`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 19565, - Discounts: 72.1, - Sales: 19492.9, - COGS: 5150, - Profit: 14342.9, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `457`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 3199, - Discounts: 44.73, - Sales: 3154.27, - COGS: 3195, - Profit: 40.73, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3785`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 26495, - Discounts: 92.82, - Sales: 26402.18, - COGS: 6630, - Profit: 19772.18, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `748`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 8976, - Discounts: 222.96, - Sales: 8753.04, - COGS: 5574, - Profit: 3179.04, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1021`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 357350, - Discounts: 4235, - Sales: 353115, - COGS: 314600, - Profit: 38515, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2076`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 14532, - Discounts: 177.03, - Sales: 14354.97, - COGS: 12645, - Profit: 1709.97, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `4316`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 51792, - Discounts: 173.4, - Sales: 51618.6, - COGS: 4335, - Profit: 47283.6, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `4174`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 50088, - Discounts: 320.52, - Sales: 49767.48, - COGS: 8013, - Profit: 41754.48, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3736`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1307600, - Discounts: 4889.5, - Sales: 1302710.5, - COGS: 363220, - Profit: 939490.5, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1914`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 669900, - Discounts: 7542.5, - Sales: 662357.5, - COGS: 560300, - Profit: 102057.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2742`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 41130, - Discounts: 332.1, - Sales: 40797.9, - COGS: 22140, - Profit: 18657.9, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1499`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 449700, - Discounts: 6903, - Sales: 442797, - COGS: 575250, - Profit: 132453, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3772`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 75440, - Discounts: 275.1, - Sales: 75164.9, - COGS: 13755, - Profit: 61409.9, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1112`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 7784, - Discounts: 128.1, - Sales: 7655.9, - COGS: 9150, - Profit: 1494.1, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2368`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 35520, - Discounts: 227.1, - Sales: 35292.9, - COGS: 15140, - Profit: 20152.9, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1586`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 11102, - Discounts: 314.48, - Sales: 10787.52, - COGS: 22462.5, - Profit: 11674.98, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3386`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 423250, - Discounts: 908.75, - Sales: 422341.25, - COGS: 87240, - Profit: 335101.25, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `852`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 106500, - Discounts: 983.75, - Sales: 105516.25, - COGS: 94440, - Profit: 11076.25, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2783`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 347875, - Discounts: 2278.75, - Sales: 345596.25, - COGS: 218760, - Profit: 126836.25, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2684`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 40260, - Discounts: 112.05, - Sales: 40147.95, - COGS: 7470, - Profit: 32677.95, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4083`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1224900, - Discounts: 8715, - Sales: 1216185, - COGS: 726250, - Profit: 489935, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2816`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 985600, - Discounts: 7542.5, - Sales: 978057.5, - COGS: 560300, - Profit: 417757.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `4294`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 85880, - Discounts: 772.8, - Sales: 85107.2, - COGS: 38640, - Profit: 46467.2, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2856`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 19992, - Discounts: 25.34, - Sales: 19966.66, - COGS: 1810, - Profit: 18156.66, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1407`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 175875, - Discounts: 1153.75, - Sales: 174721.25, - COGS: 110760, - Profit: 63961.25, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1265`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 8855, - Discounts: 18.41, - Sales: 8836.59, - COGS: 1315, - Profit: 7521.59, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3892`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1362200, - Discounts: 3302.25, - Sales: 1358897.75, - COGS: 245310, - Profit: 1113587.75, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `3068`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 383500, - Discounts: 908.75, - Sales: 382591.25, - COGS: 87240, - Profit: 295351.25, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2181`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 272625, - Discounts: 983.75, - Sales: 271641.25, - COGS: 94440, - Profit: 177201.25, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1356`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 406800, - Discounts: 2958, - Sales: 403842, - COGS: 246500, - Profit: 177201.25, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1814`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 634900, - Discounts: 4889.5, - Sales: 630010.5, - COGS: 363220, - Profit: 266790.5, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1495`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 186875, - Discounts: 2180, - Sales: 184695, - COGS: 209280, - Profit: 24585, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1463`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 182875, - Discounts: 1856.25, - Sales: 181018.75, - COGS: 89100, - Profit: 91918.75, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `215`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 2580, - Discounts: 310.8, - Sales: 2269.2, - COGS: 3885, - Profit: 1615.8, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `566`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 198100, - Discounts: 19964, - Sales: 178136, - COGS: 741520, - Profit: 563384, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `3255`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 39060, - Discounts: 274.08, - Sales: 38785.92, - COGS: 3426, - Profit: 35359.92, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `772`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 15440, - Discounts: 626.4, - Sales: 14813.6, - COGS: 15660, - Profit: 846.4, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1135`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 13620, - Discounts: 165.6, - Sales: 13454.4, - COGS: 2070, - Profit: 11384.4, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1193`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 17895, - Discounts: 708.9, - Sales: 17186.1, - COGS: 23630, - Profit: 6443.9, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2530`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 759000, - Discounts: 5508, - Sales: 753492, - COGS: 229500, - Profit: 523992, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3451`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1035300, - Discounts: 10368, - Sales: 1024932, - COGS: 432000, - Profit: 592932, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3059`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 36708, - Discounts: 274.08, - Sales: 36433.92, - COGS: 3426, - Profit: 33007.92, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3957`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 494625, - Discounts: 1655, - Sales: 492970, - COGS: 79440, - Profit: 413530, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3444`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 41328, - Discounts: 310.8, - Sales: 41017.2, - COGS: 3885, - Profit: 37132.2, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3154`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 946200, - Discounts: 11496, - Sales: 934704, - COGS: 479000, - Profit: 455704, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4108`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1437800, - Discounts: 19964, - Sales: 1417836, - COGS: 741520, - Profit: 676316, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3760`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 470000, - Discounts: 6822.5, - Sales: 463177.5, - COGS: 327480, - Profit: 135697.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2334`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 28008, - Discounts: 253.2, - Sales: 27754.8, - COGS: 3165, - Profit: 24589.8, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `580`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 6960, - Discounts: 260.16, - Sales: 6699.84, - COGS: 3252, - Profit: 3447.84, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2610`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 52200, - Discounts: 626.4, - Sales: 51573.6, - COGS: 15660, - Profit: 35913.6, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `1459`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 510650, - Discounts: 20139, - Sales: 490511, - COGS: 748020, - Profit: 257509, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3774`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 45288, - Discounts: 253.2, - Sales: 45034.8, - COGS: 3165, - Profit: 41869.8, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2572`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 30864, - Discounts: 260.16, - Sales: 30603.84, - COGS: 3252, - Profit: 27351.84, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `320`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 40000, - Discounts: 1655, - Sales: 38345, - COGS: 79440, - Profit: 41095, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3275`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1146250, - Discounts: 20139, - Sales: 1126111, - COGS: 748020, - Profit: 378091, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3582`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 447750, - Discounts: 6822.5, - Sales: 440927.5, - COGS: 327480, - Profit: 113447.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4056`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1216800, - Discounts: 1554, - Sales: 1215246, - COGS: 64750, - Profit: 1150496, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2144`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 643200, - Discounts: 6606, - Sales: 636594, - COGS: 275250, - Profit: 361344, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `3502`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 437750, - Discounts: 5690, - Sales: 432060, - COGS: 273120, - Profit: 158940, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `679`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 13580, - Discounts: 494.4, - Sales: 13085.6, - COGS: 12360, - Profit: 725.6, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2351`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 47020, - Discounts: 376.4, - Sales: 46643.6, - COGS: 9410, - Profit: 37233.6, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2043`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 612900, - Discounts: 11496, - Sales: 601404, - COGS: 479000, - Profit: 122404, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `3565`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 445625, - Discounts: 15913.13, - Sales: 429711.88, - COGS: 509220, - Profit: 79508.13, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1401`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 28020, - Discounts: 1548, - Sales: 26472, - COGS: 25800, - Profit: 672, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2077`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 623100, - Discounts: 6201, - Sales: 616899, - COGS: 172250, - Profit: 444649, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `3643`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 43716, - Discounts: 700.92, - Sales: 43015.08, - COGS: 5841, - Profit: 37174.08, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2960`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 20720, - Discounts: 411.18, - Sales: 20308.82, - COGS: 9790, - Profit: 10518.82, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1201`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 14412, - Discounts: 684.36, - Sales: 13727.64, - COGS: 5703, - Profit: 8024.64, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `2321`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 16247, - Discounts: 114.24, - Sales: 16132.76, - COGS: 2720, - Profit: 13412.76, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3972`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 496500, - Discounts: 4826.25, - Sales: 491673.75, - COGS: 154440, - Profit: 337233.75, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3878`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 484750, - Discounts: 6397.5, - Sales: 478352.5, - COGS: 204720, - Profit: 273632.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2278`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 683400, - Discounts: 21910.5, - Sales: 661489.5, - COGS: 608625, - Profit: 52864.5, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1075`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 134375, - Discounts: 6652.5, - Sales: 127722.5, - COGS: 212880, - Profit: 85157.5, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `4050`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 48600, - Discounts: 684.36, - Sales: 47915.64, - COGS: 5703, - Profit: 42212.64, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3035`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 910500, - Discounts: 6201, - Sales: 904299, - COGS: 172250, - Profit: 732049, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3636`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 454500, - Discounts: 5887.5, - Sales: 448612.5, - COGS: 188400, - Profit: 260212.5, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1379`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 16548, - Discounts: 493.02, - Sales: 16054.98, - COGS: 4108.5, - Profit: 11946.48, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4492`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 561500, - Discounts: 7533.75, - Sales: 553966.25, - COGS: 241080, - Profit: 312886.25, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1744`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 218000, - Discounts: 4826.25, - Sales: 213173.75, - COGS: 154440, - Profit: 58733.75, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2341`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 292625, - Discounts: 6397.5, - Sales: 286227.5, - COGS: 204720, - Profit: 81507.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3835`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 479375, - Discounts: 7533.75, - Sales: 471841.25, - COGS: 241080, - Profit: 230761.25, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1161`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 348300, - Discounts: 25596, - Sales: 322704, - COGS: 711000, - Profit: 388296, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `876`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 10512, - Discounts: 689.76, - Sales: 9822.24, - COGS: 5748, - Profit: 4074.24, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1705`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 213125, - Discounts: 5887.5, - Sales: 207237.5, - COGS: 188400, - Profit: 18837.5, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1805`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 541500, - Discounts: 16866, - Sales: 524634, - COGS: 468500, - Profit: 56134, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `389`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 136150, - Discounts: 17241, - Sales: 118909, - COGS: 426920, - Profit: 308011, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1459`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 29180, - Discounts: 498.6, - Sales: 28681.4, - COGS: 8310, - Profit: 20371.4, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `4236`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 84720, - Discounts: 2310.3, - Sales: 82409.7, - COGS: 38505, - Profit: 43904.7, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3627`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 43524, - Discounts: 892.44, - Sales: 42631.56, - COGS: 7437, - Profit: 35194.56, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1756`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 26340, - Discounts: 1218.6, - Sales: 25121.4, - COGS: 20310, - Profit: 4811.4, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `307`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 4605, - Discounts: 1218.6, - Sales: 3386.4, - COGS: 20310, - Profit: 16923.6, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1222`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 366600, - Discounts: 24252, - Sales: 342348, - COGS: 505250, - Profit: 162902, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `489`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 171150, - Discounts: 3836, - Sales: 167314, - COGS: 71240, - Profit: 96074, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4133`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 61995, - Discounts: 1180.2, - Sales: 60814.8, - COGS: 19670, - Profit: 41144.8, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2743`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 822900, - Discounts: 22308, - Sales: 800592, - COGS: 464750, - Profit: 335842, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `4460`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1338000, - Discounts: 24252, - Sales: 1313748, - COGS: 505250, - Profit: 808498, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1232`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 154000, - Discounts: 5690, - Sales: 148310, - COGS: 136560, - Profit: 11750, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2586`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 18102, - Discounts: 1190.28, - Sales: 16911.72, - COGS: 21255, - Profit: 4343.28, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1332`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 166500, - Discounts: 3975, - Sales: 162525, - COGS: 95400, - Profit: 67125, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4487`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1346100, - Discounts: 16974, - Sales: 1329126, - COGS: 353625, - Profit: 975501, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3862`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1158600, - Discounts: 35016, - Sales: 1123584, - COGS: 729500, - Profit: 394084, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1765`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 617750, - Discounts: 48300, - Sales: 569450, - COGS: 897000, - Profit: 327550, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3533`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 441625, - Discounts: 14940, - Sales: 426685, - COGS: 358560, - Profit: 68125, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2016`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 30240, - Discounts: 130.8, - Sales: 30109.2, - COGS: 2180, - Profit: 27929.2, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2938`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 58760, - Discounts: 1659.2, - Sales: 57100.8, - COGS: 20740, - Profit: 36360.8, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3352`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 67040, - Discounts: 844.8, - Sales: 66195.2, - COGS: 10560, - Profit: 55635.2, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2430`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 850500, - Discounts: 3836, - Sales: 846664, - COGS: 71240, - Profit: 775424, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `535`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 66875, - Discounts: 5690, - Sales: 61185, - COGS: 136560, - Profit: 75375, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1523`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 18276, - Discounts: 703.2, - Sales: 17572.8, - COGS: 4395, - Profit: 13177.8, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1782`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 623700, - Discounts: 30478, - Sales: 593222, - COGS: 566020, - Profit: 27202, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `347`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 4164, - Discounts: 415.68, - Sales: 3748.32, - COGS: 2598, - Profit: 1150.32, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3509`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1228150, - Discounts: 30478, - Sales: 1197672, - COGS: 566020, - Profit: 631652, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2943`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1030050, - Discounts: 26110, - Sales: 1003940, - COGS: 484900, - Profit: 519040, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `4037`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 504625, - Discounts: 5370, - Sales: 499255, - COGS: 128880, - Profit: 370375, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4146`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1451100, - Discounts: 26698, - Sales: 1424402, - COGS: 495820, - Profit: 928582, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `725`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 5075, - Discounts: 480.2, - Sales: 4594.8, - COGS: 6860, - Profit: 2265.2, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2325`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 16275, - Discounts: 941.15, - Sales: 15333.85, - COGS: 13445, - Profit: 1888.85, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `675`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 8100, - Discounts: 1458.6, - Sales: 6641.4, - COGS: 7293, - Profit: 651.6, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2990`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 35880, - Discounts: 1458.6, - Sales: 34421.4, - COGS: 7293, - Profit: 27128.4, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1072`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 7504, - Discounts: 941.15, - Sales: 6562.85, - COGS: 13445, - Profit: 6882.15, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1048`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 7336, - Discounts: 589.05, - Sales: 6746.95, - COGS: 8415, - Profit: 1668.05, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `469`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 5628, - Discounts: 673.8, - Sales: 4954.2, - COGS: 3369, - Profit: 1585.2, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `4240`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 50880, - Discounts: 1119, - Sales: 49761, - COGS: 5595, - Profit: 44166, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1976`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 23712, - Discounts: 669.6, - Sales: 23042.4, - COGS: 3348, - Profit: 19694.4, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1984`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 39680, - Discounts: 1563, - Sales: 38117, - COGS: 15630, - Profit: 22487, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `480`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 144000, - Discounts: 14865, - Sales: 129135, - COGS: 247750, - Profit: 118615, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1205`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 18075, - Discounts: 2093.25, - Sales: 15981.75, - COGS: 27910, - Profit: 11928.25, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2480`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 17360, - Discounts: 199.5, - Sales: 17160.5, - COGS: 2850, - Profit: 14310.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `2926`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 20482, - Discounts: 870.45, - Sales: 19611.55, - COGS: 12435, - Profit: 7176.55, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3210`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1123500, - Discounts: 24228.75, - Sales: 1099271.25, - COGS: 359970, - Profit: 739301.25, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `3221`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 402625, - Discounts: 22668.75, - Sales: 379956.25, - COGS: 435240, - Profit: 55283.75, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `1127`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 13524, - Discounts: 1405.2, - Sales: 12118.8, - COGS: 7026, - Profit: 5092.8, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1610`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 32200, - Discounts: 1303, - Sales: 30897, - COGS: 13030, - Profit: 17867, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4100`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 512500, - Discounts: 18700, - Sales: 493800, - COGS: 359040, - Profit: 134760, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1012`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 126500, - Discounts: 14906.25, - Sales: 111593.75, - COGS: 286200, - Profit: 174606.25, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3337`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1001100, - Discounts: 24105, - Sales: 976995, - COGS: 401750, - Profit: 575245, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3955`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 27685, - Discounts: 814.45, - Sales: 26870.55, - COGS: 11635, - Profit: 15235.55, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4347`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1304100, - Discounts: 14865, - Sales: 1289235, - COGS: 247750, - Profit: 1041485, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1548`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 541800, - Discounts: 10535, - Sales: 531265, - COGS: 156520, - Profit: 374745, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2153`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 32295, - Discounts: 1965, - Sales: 30330, - COGS: 26200, - Profit: 4130, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4126`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 515750, - Discounts: 5381.25, - Sales: 510368.75, - COGS: 103320, - Profit: 407048.75, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3376`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 67520, - Discounts: 2663, - Sales: 64857, - COGS: 26630, - Profit: 38227, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2244`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 33660, - Discounts: 416.25, - Sales: 33243.75, - COGS: 5550, - Profit: 27693.75, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `1360`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 20400, - Discounts: 2145.75, - Sales: 18254.25, - COGS: 28610, - Profit: 10355.75, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `279`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 34875, - Discounts: 5043.75, - Sales: 29831.25, - COGS: 96840, - Profit: 67008.75, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2521`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 882350, - Discounts: 10535, - Sales: 871815, - COGS: 156520, - Profit: 715295, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2433`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 48660, - Discounts: 2832, - Sales: 45828, - COGS: 28320, - Profit: 17508, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1738`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 34760, - Discounts: 1579, - Sales: 33181, - COGS: 15790, - Profit: 17391, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1106`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 138250, - Discounts: 5381.25, - Sales: 132868.75, - COGS: 103320, - Profit: 29548.75, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `213`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 63900, - Discounts: 18750, - Sales: 45150, - COGS: 312500, - Profit: 267350, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2929`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 58580, - Discounts: 2663, - Sales: 55917, - COGS: 26630, - Profit: 29287, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2389`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 16723, - Discounts: 199.5, - Sales: 16523.5, - COGS: 2850, - Profit: 13673.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3086`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 21602, - Discounts: 870.45, - Sales: 20731.55, - COGS: 12435, - Profit: 8296.55, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `745`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 260750, - Discounts: 23625, - Sales: 237125, - COGS: 351000, - Profit: 113875, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1266`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 443100, - Discounts: 9660, - Sales: 433440, - COGS: 143520, - Profit: 289920, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4287`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1286100, - Discounts: 18750, - Sales: 1267350, - COGS: 312500, - Profit: 954850, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3193`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 47895, - Discounts: 3420.9, - Sales: 44474.1, - COGS: 38010, - Profit: 6464.1, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1967`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 39340, - Discounts: 1341, - Sales: 37999, - COGS: 11175, - Profit: 26824, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `631`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 9465, - Discounts: 2559.6, - Sales: 6905.4, - COGS: 28440, - Profit: 21534.6, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3469`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 41628, - Discounts: 404.64, - Sales: 41223.36, - COGS: 1686, - Profit: 39537.36, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `3215`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 48225, - Discounts: 1827, - Sales: 46398, - COGS: 20300, - Profit: 26098, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1959`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 685650, - Discounts: 20580, - Sales: 665070, - COGS: 254800, - Profit: 410270, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2181`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 763350, - Discounts: 30660, - Sales: 732690, - COGS: 379600, - Profit: 353090, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2205`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 26460, - Discounts: 1960.56, - Sales: 24499.44, - COGS: 8169, - Profit: 16330.44, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1890`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 661500, - Discounts: 31416, - Sales: 630084, - COGS: 388960, - Profit: 241124, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2417`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 302125, - Discounts: 7140, - Sales: 294985, - COGS: 114240, - Profit: 180745, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1158`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 144750, - Discounts: 20662.5, - Sales: 124087.5, - COGS: 330600, - Profit: 206512.5, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `803`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 12045, - Discounts: 1377, - Sales: 10668, - COGS: 15300, - Profit: 4632, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3705`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1296750, - Discounts: 31416, - Sales: 1265334, - COGS: 388960, - Profit: 876374, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `589`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 4123, - Discounts: 629.16, - Sales: 3493.84, - COGS: 7490, - Profit: 3996.16, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3999`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 59985, - Discounts: 2559.6, - Sales: 57425.4, - COGS: 28440, - Profit: 28985.4, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `4256`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 29792, - Discounts: 629.16, - Sales: 29162.84, - COGS: 7490, - Profit: 21672.84, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2160`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 270000, - Discounts: 14906.25, - Sales: 255093.75, - COGS: 238500, - Profit: 16593.75, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `466`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 163100, - Discounts: 35259, - Sales: 127841, - COGS: 436540, - Profit: 308699, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1478`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 22170, - Discounts: 1978.2, - Sales: 20191.8, - COGS: 21980, - Profit: 1788.2, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3798`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 56970, - Discounts: 1568.7, - Sales: 55401.3, - COGS: 17430, - Profit: 37971.3, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `447`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 6705, - Discounts: 1037.7, - Sales: 5667.3, - COGS: 11530, - Profit: 5862.7, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `745`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 14900, - Discounts: 1201.2, - Sales: 13698.8, - COGS: 10010, - Profit: 3688.8, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `1732`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 12124, - Discounts: 559.86, - Sales: 11564.14, - COGS: 6665, - Profit: 4899.14, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1759`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 26385, - Discounts: 1037.7, - Sales: 25347.3, - COGS: 11530, - Profit: 13817.3, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `338`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 4056, - Discounts: 610.68, - Sales: 3445.32, - COGS: 2181, - Profit: 1264.32, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `3911`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 46932, - Discounts: 1582.56, - Sales: 45349.44, - COGS: 5652, - Profit: 39697.44, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `4473`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 53676, - Discounts: 1965.6, - Sales: 51710.4, - COGS: 7020, - Profit: 44690.4, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `383`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 4596, - Discounts: 1967.28, - Sales: 2628.72, - COGS: 7026, - Profit: 4397.28, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1062`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 15930, - Discounts: 1325.1, - Sales: 14604.9, - COGS: 12620, - Profit: 1984.9, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `4083`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 28581, - Discounts: 556.15, - Sales: 28024.85, - COGS: 5675, - Profit: 22349.85, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3974`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 27818, - Discounts: 268.03, - Sales: 27549.97, - COGS: 2735, - Profit: 24814.97, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3723`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 26061, - Discounts: 775.18, - Sales: 25285.82, - COGS: 7910, - Profit: 17375.82, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2435`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 29220, - Discounts: 1460.34, - Sales: 27759.66, - COGS: 5215.5, - Profit: 22544.16, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1763`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 12341, - Discounts: 775.18, - Sales: 11565.82, - COGS: 7910, - Profit: 3655.82, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `4473`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 31311, - Discounts: 556.15, - Sales: 30754.85, - COGS: 5675, - Profit: 25079.85, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1246`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 436100, - Discounts: 43144.5, - Sales: 392955.5, - COGS: 457860, - Profit: 64904.5, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1615`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 484500, - Discounts: 9408, - Sales: 475092, - COGS: 112000, - Profit: 363092, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `749`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 224700, - Discounts: 45801, - Sales: 178899, - COGS: 545250, - Profit: 366351, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1318`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 26360, - Discounts: 2766.4, - Sales: 23593.6, - COGS: 19760, - Profit: 3833.6, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `2882`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 864600, - Discounts: 45801, - Sales: 818799, - COGS: 545250, - Profit: 273549, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2484`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 745200, - Discounts: 35742, - Sales: 709458, - COGS: 425500, - Profit: 283958, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3169`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 950700, - Discounts: 9408, - Sales: 941292, - COGS: 112000, - Profit: 829292, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4080`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 510000, - Discounts: 30738.75, - Sales: 479261.25, - COGS: 421560, - Profit: 57701.25, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3943`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 59145, - Discounts: 2206.05, - Sales: 56938.95, - COGS: 21010, - Profit: 35928.95, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `253`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 5060, - Discounts: 2149, - Sales: 2911, - COGS: 15350, - Profit: 12439, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `799`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 239700, - Discounts: 34839, - Sales: 204861, - COGS: 414750, - Profit: 209889, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3942`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 78840, - Discounts: 852.6, - Sales: 77987.4, - COGS: 6090, - Profit: 71897.4, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2498`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 312250, - Discounts: 18261.25, - Sales: 293988.75, - COGS: 250440, - Profit: 43548.75, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `2517`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 50340, - Discounts: 2766.4, - Sales: 47573.6, - COGS: 19760, - Profit: 27813.6, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1145`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 343500, - Discounts: 28812, - Sales: 314688, - COGS: 343000, - Profit: 28312, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3814`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 45768, - Discounts: 2725.38, - Sales: 43042.62, - COGS: 9733.5, - Profit: 33309.12, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1188`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 356400, - Discounts: 20139, - Sales: 336261, - COGS: 239750, - Profit: 96511, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `2233`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 669900, - Discounts: 57687, - Sales: 612213, - COGS: 686750, - Profit: 74537, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `421`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 52625, - Discounts: 14393.75, - Sales: 38231.25, - COGS: 197400, - Profit: 159168.75, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `269`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 94150, - Discounts: 70462, - Sales: 23688, - COGS: 747760, - Profit: 724072, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `952`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 19040, - Discounts: 1565.2, - Sales: 17474.8, - COGS: 11180, - Profit: 6294.8, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2964`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 889200, - Discounts: 28812, - Sales: 860388, - COGS: 343000, - Profit: 517388, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1505`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 10535, - Discounts: 273.28, - Sales: 10261.72, - COGS: 2440, - Profit: 7821.72, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1678`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 33560, - Discounts: 2051.2, - Sales: 31508.8, - COGS: 12820, - Profit: 18688.8, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4249`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 29743, - Discounts: 143.92, - Sales: 29599.08, - COGS: 1285, - Profit: 28314.08, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1677`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 33540, - Discounts: 2051.2, - Sales: 31488.8, - COGS: 12820, - Profit: 18668.8, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3051`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 381375, - Discounts: 15400, - Sales: 365975, - COGS: 184800, - Profit: 181175, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `3372`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 50580, - Discounts: 588, - Sales: 49992, - COGS: 4900, - Profit: 45092, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1686`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 590100, - Discounts: 38136, - Sales: 551964, - COGS: 354120, - Profit: 197844, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3086`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 46290, - Discounts: 3001.2, - Sales: 43288.8, - COGS: 25010, - Profit: 18278.8, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4150`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 83000, - Discounts: 1132.8, - Sales: 81867.2, - COGS: 7080, - Profit: 74787.2, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3027`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 60540, - Discounts: 1032, - Sales: 59508, - COGS: 6450, - Profit: 53058, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `4359`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1307700, - Discounts: 37488, - Sales: 1270212, - COGS: 390500, - Profit: 879712, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `1589`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 23835, - Discounts: 853.2, - Sales: 22981.8, - COGS: 7110, - Profit: 15871.8, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2679`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 334875, - Discounts: 11140, - Sales: 323735, - COGS: 133680, - Profit: 190055, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3401`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 23807, - Discounts: 705.04, - Sales: 23101.96, - COGS: 6295, - Profit: 16806.96, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2815`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 19705, - Discounts: 613.2, - Sales: 19091.8, - COGS: 5475, - Profit: 13616.8, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2964`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 59280, - Discounts: 2185.6, - Sales: 57094.4, - COGS: 13660, - Profit: 43434.4, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `4173`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1251900, - Discounts: 59040, - Sales: 1192860, - COGS: 615000, - Profit: 577860, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1157`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 8099, - Discounts: 379.68, - Sales: 7719.32, - COGS: 3390, - Profit: 4329.32, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3065`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 21455, - Discounts: 894.88, - Sales: 20560.12, - COGS: 7990, - Profit: 12570.12, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4080`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 81600, - Discounts: 3094.4, - Sales: 78505.6, - COGS: 19340, - Profit: 59165.6, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1713`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34260, - Discounts: 4788.8, - Sales: 29471.2, - COGS: 29930, - Profit: 458.8, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1691`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 591850, - Discounts: 38136, - Sales: 553714, - COGS: 354120, - Profit: 199594, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2305`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 27660, - Discounts: 574.08, - Sales: 27085.92, - COGS: 1794, - Profit: 25291.92, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3401`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 23807, - Discounts: 1627.92, - Sales: 22179.08, - COGS: 14535, - Profit: 7644.08, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2288`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 16016, - Discounts: 1309.28, - Sales: 14706.72, - COGS: 11690, - Profit: 3016.72, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `4086`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1225800, - Discounts: 15240, - Sales: 1210560, - COGS: 158750, - Profit: 1051810, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2651`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 927850, - Discounts: 16086, - Sales: 911764, - COGS: 149370, - Profit: 762394, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3971`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 27797, - Discounts: 1309.28, - Sales: 26487.72, - COGS: 11690, - Profit: 14797.72, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2512`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 879200, - Discounts: 10668, - Sales: 868532, - COGS: 99060, - Profit: 769472, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2745`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 960750, - Discounts: 11816, - Sales: 948934, - COGS: 109720, - Profit: 839214, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1903`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 570900, - Discounts: 51216, - Sales: 519684, - COGS: 533500, - Profit: 13816, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2914`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 58280, - Discounts: 1132.8, - Sales: 57147.2, - COGS: 7080, - Profit: 50067.2, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1889`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 13223, - Discounts: 1627.92, - Sales: 11595.08, - COGS: 14535, - Profit: 2939.92, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1466`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 29320, - Discounts: 2185.6, - Sales: 27134.4, - COGS: 13660, - Profit: 13474.4, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `887`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 266100, - Discounts: 59040, - Sales: 207060, - COGS: 615000, - Profit: 407940, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `395`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 7900, - Discounts: 2432, - Sales: 5468, - COGS: 15200, - Profit: 9732, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1693`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 25395, - Discounts: 853.2, - Sales: 24541.8, - COGS: 7110, - Profit: 17431.8, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2649`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 794700, - Discounts: 15240, - Sales: 779460, - COGS: 158750, - Profit: 620710, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `3608`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 72160, - Discounts: 698.4, - Sales: 71461.6, - COGS: 4365, - Profit: 67096.6, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1073`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 321900, - Discounts: 29538, - Sales: 292362, - COGS: 273500, - Profit: 18862, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `2167`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 650100, - Discounts: 102667.5, - Sales: 547432.5, - COGS: 950625, - Profit: 403192.5, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1319`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 461650, - Discounts: 52479, - Sales: 409171, - COGS: 433160, - Profit: 23989, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1252`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 15024, - Discounts: 2506.68, - Sales: 12517.32, - COGS: 6963, - Profit: 5554.32, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1156`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 144500, - Discounts: 31466.25, - Sales: 113033.75, - COGS: 335640, - Profit: 222606.25, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1153`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 345900, - Discounts: 69255, - Sales: 276645, - COGS: 641250, - Profit: 364605, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2720`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 952000, - Discounts: 76135.5, - Sales: 875864.5, - COGS: 628420, - Profit: 247444.5, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3658`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 54870, - Discounts: 4961.25, - Sales: 49908.75, - COGS: 36750, - Profit: 13158.75, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2950`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 885000, - Discounts: 29538, - Sales: 855462, - COGS: 273500, - Profit: 581962, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1821`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 27315, - Discounts: 1656.45, - Sales: 25658.55, - COGS: 12270, - Profit: 13388.55, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1127`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 338100, - Discounts: 35748, - Sales: 302352, - COGS: 331000, - Profit: 28648, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `862`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 107750, - Discounts: 31466.25, - Sales: 76283.75, - COGS: 335640, - Profit: 259356.25, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3805`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 57075, - Discounts: 330.75, - Sales: 56744.25, - COGS: 2450, - Profit: 54294.25, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1415`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 424500, - Discounts: 102424.5, - Sales: 322075.5, - COGS: 948375, - Profit: 626299.5, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2231`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 780850, - Discounts: 41170.5, - Sales: 739679.5, - COGS: 339820, - Profit: 399859.5, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3649`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 456125, - Discounts: 6378.75, - Sales: 449746.25, - COGS: 68040, - Profit: 381706.25, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2948`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 368500, - Discounts: 23737.5, - Sales: 344762.5, - COGS: 253200, - Profit: 91562.5, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3395`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1188250, - Discounts: 39973.5, - Sales: 1148276.5, - COGS: 329940, - Profit: 818336.5, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2650`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 31800, - Discounts: 2112.48, - Sales: 29687.52, - COGS: 5868, - Profit: 23819.52, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `585`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 175500, - Discounts: 71793, - Sales: 103707, - COGS: 664750, - Profit: 561043, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1316`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 460600, - Discounts: 42572.25, - Sales: 418027.75, - COGS: 351390, - Profit: 66637.75, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `4459`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 53508, - Discounts: 950.4, - Sales: 52557.6, - COGS: 2640, - Profit: 49917.6, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2711`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 813300, - Discounts: 50409, - Sales: 762891, - COGS: 466750, - Profit: 296141, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3613`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 54195, - Discounts: 1656.45, - Sales: 52538.55, - COGS: 12270, - Profit: 40268.55, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1847`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 230875, - Discounts: 9866.25, - Sales: 221008.75, - COGS: 105240, - Profit: 115768.75, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2996`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1048600, - Discounts: 65236.5, - Sales: 983363.5, - COGS: 538460, - Profit: 444903.5, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2838`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 993300, - Discounts: 39973.5, - Sales: 953326.5, - COGS: 329940, - Profit: 623386.5, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1536`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 30720, - Discounts: 3049.2, - Sales: 27670.8, - COGS: 16940, - Profit: 10730.8, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1291`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 25820, - Discounts: 1193.4, - Sales: 24626.6, - COGS: 6630, - Profit: 17996.6, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1213`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 8491, - Discounts: 515.97, - Sales: 7975.03, - COGS: 4095, - Profit: 3880.03, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2370`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 28440, - Discounts: 1706.4, - Sales: 26733.6, - COGS: 4740, - Profit: 21993.6, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1979`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 13853, - Discounts: 328.23, - Sales: 13524.77, - COGS: 2605, - Profit: 10919.77, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2879`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 57580, - Discounts: 1751.4, - Sales: 55828.6, - COGS: 9730, - Profit: 46098.6, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1707`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34140, - Discounts: 1868.4, - Sales: 32271.6, - COGS: 10380, - Profit: 21891.6, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2933`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 20531, - Discounts: 226.8, - Sales: 20304.2, - COGS: 1800, - Profit: 18504.2, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1014`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 12168, - Discounts: 2124.36, - Sales: 10043.64, - COGS: 5901, - Profit: 4142.64, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `693`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 10395, - Discounts: 3547.8, - Sales: 6847.2, - COGS: 26280, - Profit: 19432.8, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3741`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 26187, - Discounts: 226.8, - Sales: 25960.2, - COGS: 1800, - Profit: 24160.2, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `3995`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 27965, - Discounts: 328.23, - Sales: 27636.77, - COGS: 2605, - Profit: 25031.77, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `953`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 19060, - Discounts: 1868.4, - Sales: 17191.6, - COGS: 10380, - Profit: 6811.6, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2530`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 37950, - Discounts: 2201.18, - Sales: 35748.82, - COGS: 16305, - Profit: 19443.82, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1372`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 27440, - Discounts: 0, - Sales: 27440, - COGS: 16185, - Profit: 11255, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2762`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 55240, - Discounts: 0, - Sales: 55240, - COGS: 13210, - Profit: 42030, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1464`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 21960, - Discounts: 0, - Sales: 21960, - COGS: 21780, - Profit: 180, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `719`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 10785, - Discounts: 0, - Sales: 10785, - COGS: 8880, - Profit: 1905, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3576`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 53640, - Discounts: 0, - Sales: 53640, - COGS: 24700, - Profit: 28940, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `4422`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1547700, - Discounts: 0, - Sales: 1547700, - COGS: 393380, - Profit: 1154320, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3649`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 54735, - Discounts: 0, - Sales: 54735, - COGS: 9210, - Profit: 45525, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4172`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 50064, - Discounts: 0, - Sales: 50064, - COGS: 7554, - Profit: 42510, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3841`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 76820, - Discounts: 0, - Sales: 76820, - COGS: 18990, - Profit: 57830, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3726`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 44712, - Discounts: 0, - Sales: 44712, - COGS: 4635, - Profit: 40077, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2625`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 39375, - Discounts: 0, - Sales: 39375, - COGS: 24700, - Profit: 14675, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1958`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 244750, - Discounts: 0, - Sales: 244750, - COGS: 319860, - Profit: 75110, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `3271`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 981300, - Discounts: 0, - Sales: 981300, - COGS: 239500, - Profit: 741800, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2091`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 14637, - Discounts: 0, - Sales: 14637, - COGS: 10730, - Profit: 3907, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `2530`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 316250, - Discounts: 0, - Sales: 316250, - COGS: 41400, - Profit: 274850, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2825`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 42375, - Discounts: 0, - Sales: 42375, - COGS: 6150, - Profit: 36225, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2513`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 50260, - Discounts: 0, - Sales: 50260, - COGS: 2920, - Profit: 47340, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `883`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 13245, - Discounts: 0, - Sales: 13245, - COGS: 9740, - Profit: 3505, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2087`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 25044, - Discounts: 0, - Sales: 25044, - COGS: 7554, - Profit: 17490, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2563`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 897050, - Discounts: 0, - Sales: 897050, - COGS: 261560, - Profit: 635490, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2846`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 34152, - Discounts: 0, - Sales: 34152, - COGS: 1101, - Profit: 33051, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `997`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 6979, - Discounts: 0, - Sales: 6979, - COGS: 4415, - Profit: 2564, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3421`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 51315, - Discounts: 0, - Sales: 51315, - COGS: 5490, - Profit: 45825, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Marchesa`, - UnitsSold: `70000`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 1050000, - Discounts: 0, - Sales: 1050000, - COGS: 5490, - Profit: 1044510, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2291`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 687300, - Discounts: 0, - Sales: 687300, - COGS: 197000, - Profit: 490300, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2290`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 34350, - Discounts: 0, - Sales: 34350, - COGS: 24720, - Profit: 9630, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2133`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 14931, - Discounts: 0, - Sales: 14931, - COGS: 5715, - Profit: 9216, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3475`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1216250, - Discounts: 0, - Sales: 1216250, - COGS: 448500, - Profit: 767750, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3686`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 44232, - Discounts: 0, - Sales: 44232, - COGS: 2736, - Profit: 41496, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3319`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 49785, - Discounts: 0, - Sales: 49785, - COGS: 21520, - Profit: 28265, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3617`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 72340, - Discounts: 0, - Sales: 72340, - COGS: 18170, - Profit: 54170, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1266`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 443100, - Discounts: 0, - Sales: 443100, - COGS: 393380, - Profit: 49720, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `894`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 6258, - Discounts: 0, - Sales: 6258, - COGS: 7465, - Profit: 1207, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `2725`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 340625, - Discounts: 0, - Sales: 340625, - COGS: 216480, - Profit: 124145, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3061`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 36732, - Discounts: 0, - Sales: 36732, - COGS: 6483, - Profit: 30249, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3958`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1385300, - Discounts: 0, - Sales: 1385300, - COGS: 261560, - Profit: 1123740, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3920`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 47040, - Discounts: 0, - Sales: 47040, - COGS: 4635, - Profit: 42405, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3381`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 422625, - Discounts: 0, - Sales: 422625, - COGS: 338520, - Profit: 84105, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1094`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 136750, - Discounts: 0, - Sales: 136750, - COGS: 41400, - Profit: 95350, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4307`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 1292100, - Discounts: 0, - Sales: 1292100, - COGS: 500250, - Profit: 791850, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `878`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 10536, - Discounts: 0, - Sales: 10536, - COGS: 8514, - Profit: 2022, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `496`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 7440, - Discounts: 0, - Sales: 7440, - COGS: 21780, - Profit: 14340, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3367`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 50505, - Discounts: 0, - Sales: 50505, - COGS: 8880, - Profit: 41625, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3880`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1358000, - Discounts: 0, - Sales: 1358000, - COGS: 397020, - Profit: 960980, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2055`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 616500, - Discounts: 0, - Sales: 616500, - COGS: 537750, - Profit: 78750, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4041`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 80820, - Discounts: 0, - Sales: 80820, - COGS: 18170, - Profit: 62650, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `3237`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1132950, - Discounts: 0, - Sales: 1132950, - COGS: 715000, - Profit: 417950, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `630`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 7560, - Discounts: 0, - Sales: 7560, - COGS: 5859, - Profit: 1701, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4210`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 526250, - Discounts: 0, - Sales: 526250, - COGS: 506340, - Profit: 19910, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1127`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 22540, - Discounts: 0, - Sales: 22540, - COGS: 18990, - Profit: 3550, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `3438`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 24066, - Discounts: 0, - Sales: 24066, - COGS: 8430, - Profit: 15636, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2015`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 24180, - Discounts: 0, - Sales: 24180, - COGS: 6423, - Profit: 17757, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2534`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 17738, - Discounts: 0, - Sales: 17738, - COGS: 5715, - Profit: 12023, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1384`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 20760, - Discounts: 0, - Sales: 20760, - COGS: 6150, - Profit: 14610, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3561`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 24927, - Discounts: 276.15, - Sales: 24650.85, - COGS: 19725, - Profit: 4925.85, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1823`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 27345, - Discounts: 344.4, - Sales: 27000.6, - COGS: 22960, - Profit: 4040.6, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2795`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 19565, - Discounts: 72.1, - Sales: 19492.9, - COGS: 5150, - Profit: 14342.9, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `457`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 3199, - Discounts: 44.73, - Sales: 3154.27, - COGS: 3195, - Profit: 40.73, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3785`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 26495, - Discounts: 92.82, - Sales: 26402.18, - COGS: 6630, - Profit: 19772.18, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `748`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 8976, - Discounts: 222.96, - Sales: 8753.04, - COGS: 5574, - Profit: 3179.04, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1021`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 357350, - Discounts: 4235, - Sales: 353115, - COGS: 314600, - Profit: 38515, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2076`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 14532, - Discounts: 177.03, - Sales: 14354.97, - COGS: 12645, - Profit: 1709.97, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `4316`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 51792, - Discounts: 173.4, - Sales: 51618.6, - COGS: 4335, - Profit: 47283.6, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2654`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 331750, - Discounts: 412.5, - Sales: 331337.5, - COGS: 39600, - Profit: 291737.5, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `4174`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 50088, - Discounts: 320.52, - Sales: 49767.48, - COGS: 8013, - Profit: 41754.48, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1675`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 20100, - Discounts: 91.92, - Sales: 20008.08, - COGS: 2298, - Profit: 17710.08, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1572`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 471600, - Discounts: 1482, - Sales: 470118, - COGS: 123500, - Profit: 346618, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3736`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1307600, - Discounts: 4889.5, - Sales: 1302710.5, - COGS: 363220, - Profit: 939490.5, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1914`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 669900, - Discounts: 7542.5, - Sales: 662357.5, - COGS: 560300, - Profit: 102057.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2742`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 41130, - Discounts: 332.1, - Sales: 40797.9, - COGS: 22140, - Profit: 18657.9, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1499`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 449700, - Discounts: 6903, - Sales: 442797, - COGS: 575250, - Profit: 132453, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3772`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 75440, - Discounts: 275.1, - Sales: 75164.9, - COGS: 13755, - Profit: 61409.9, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1112`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 7784, - Discounts: 128.1, - Sales: 7655.9, - COGS: 9150, - Profit: 1494.1, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1723`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 516900, - Discounts: 7494, - Sales: 509406, - COGS: 624500, - Profit: 115094, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `423`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 52875, - Discounts: 828.75, - Sales: 52046.25, - COGS: 79560, - Profit: 27513.75, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2368`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 35520, - Discounts: 227.1, - Sales: 35292.9, - COGS: 15140, - Profit: 20152.9, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1586`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 11102, - Discounts: 314.48, - Sales: 10787.52, - COGS: 22462.5, - Profit: 11674.98, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3386`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 423250, - Discounts: 908.75, - Sales: 422341.25, - COGS: 87240, - Profit: 335101.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `852`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 106500, - Discounts: 983.75, - Sales: 105516.25, - COGS: 94440, - Profit: 11076.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2783`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 347875, - Discounts: 2278.75, - Sales: 345596.25, - COGS: 218760, - Profit: 126836.25, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2684`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 40260, - Discounts: 112.05, - Sales: 40147.95, - COGS: 7470, - Profit: 32677.95, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4393`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 52716, - Discounts: 91.92, - Sales: 52624.08, - COGS: 2298, - Profit: 50326.08, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4083`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1224900, - Discounts: 8715, - Sales: 1216185, - COGS: 726250, - Profit: 489935, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2816`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 985600, - Discounts: 7542.5, - Sales: 978057.5, - COGS: 560300, - Profit: 417757.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `4294`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 85880, - Discounts: 772.8, - Sales: 85107.2, - COGS: 38640, - Profit: 46467.2, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2856`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 19992, - Discounts: 25.34, - Sales: 19966.66, - COGS: 1810, - Profit: 18156.66, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1407`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 175875, - Discounts: 1153.75, - Sales: 174721.25, - COGS: 110760, - Profit: 63961.25, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3850`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 481250, - Discounts: 828.75, - Sales: 480421.25, - COGS: 79560, - Profit: 400861.25, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2856`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 19992, - Discounts: 146.44, - Sales: 19845.56, - COGS: 10460, - Profit: 9385.56, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1265`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 8855, - Discounts: 18.41, - Sales: 8836.59, - COGS: 1315, - Profit: 7521.59, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3892`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1362200, - Discounts: 3302.25, - Sales: 1358897.75, - COGS: 245310, - Profit: 1113587.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `3068`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 383500, - Discounts: 908.75, - Sales: 382591.25, - COGS: 87240, - Profit: 295351.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2181`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 272625, - Discounts: 983.75, - Sales: 271641.25, - COGS: 94440, - Profit: 177201.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1356`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 406800, - Discounts: 2958, - Sales: 403842, - COGS: 246500, - Profit: 157342, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `2545`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 763500, - Discounts: 1482, - Sales: 762018, - COGS: 123500, - Profit: 638518, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1814`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 634900, - Discounts: 4889.5, - Sales: 630010.5, - COGS: 363220, - Profit: 266790.5, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1495`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 186875, - Discounts: 2180, - Sales: 184695, - COGS: 209280, - Profit: 24585, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1154`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 13848, - Discounts: 238.68, - Sales: 13609.32, - COGS: 5967, - Profit: 7642.32, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `4180`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 62700, - Discounts: 48.15, - Sales: 62651.85, - COGS: 3210, - Profit: 59441.85, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1463`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 182875, - Discounts: 1856.25, - Sales: 181018.75, - COGS: 89100, - Profit: 91918.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `215`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 2580, - Discounts: 310.8, - Sales: 2269.2, - COGS: 3885, - Profit: 1615.8, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `4099`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 1229700, - Discounts: 1284, - Sales: 1228416, - COGS: 53500, - Profit: 1174916, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `2660`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 18620, - Discounts: 300.3, - Sales: 18319.7, - COGS: 10725, - Profit: 7594.7, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `566`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 198100, - Discounts: 19964, - Sales: 178136, - COGS: 741520, - Profit: 563384, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `3255`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 39060, - Discounts: 274.08, - Sales: 38785.92, - COGS: 3426, - Profit: 35359.92, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `772`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 15440, - Discounts: 626.4, - Sales: 14813.6, - COGS: 15660, - Profit: 846.4, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1135`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 13620, - Discounts: 165.6, - Sales: 13454.4, - COGS: 2070, - Profit: 11384.4, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `3826`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 478250, - Discounts: 4150, - Sales: 474100, - COGS: 199200, - Profit: 274900, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1193`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 17895, - Discounts: 708.9, - Sales: 17186.1, - COGS: 23630, - Profit: 6443.9, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2530`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 759000, - Discounts: 5508, - Sales: 753492, - COGS: 229500, - Profit: 523992, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3451`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1035300, - Discounts: 10368, - Sales: 1024932, - COGS: 432000, - Profit: 592932, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3059`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 36708, - Discounts: 274.08, - Sales: 36433.92, - COGS: 3426, - Profit: 33007.92, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3957`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 494625, - Discounts: 1655, - Sales: 492970, - COGS: 79440, - Profit: 413530, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3444`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 41328, - Discounts: 310.8, - Sales: 41017.2, - COGS: 3885, - Profit: 37132.2, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4388`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 548500, - Discounts: 2022.5, - Sales: 546477.5, - COGS: 97080, - Profit: 449397.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2106`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 263250, - Discounts: 5362.5, - Sales: 257887.5, - COGS: 257400, - Profit: 487.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `799`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 9588, - Discounts: 428.4, - Sales: 9159.6, - COGS: 5355, - Profit: 3804.6, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3154`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 946200, - Discounts: 11496, - Sales: 934704, - COGS: 479000, - Profit: 455704, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4108`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1437800, - Discounts: 19964, - Sales: 1417836, - COGS: 741520, - Profit: 676316, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3760`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 470000, - Discounts: 6822.5, - Sales: 463177.5, - COGS: 327480, - Profit: 135697.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `377`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 5655, - Discounts: 577.5, - Sales: 5077.5, - COGS: 19250, - Profit: 14172.5, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2110`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 14770, - Discounts: 281.82, - Sales: 14488.18, - COGS: 10065, - Profit: 4423.18, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2334`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 28008, - Discounts: 253.2, - Sales: 27754.8, - COGS: 3165, - Profit: 24589.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `580`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 6960, - Discounts: 260.16, - Sales: 6699.84, - COGS: 3252, - Profit: 3447.84, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2610`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 52200, - Discounts: 626.4, - Sales: 51573.6, - COGS: 15660, - Profit: 35913.6, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `1598`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 559300, - Discounts: 20762, - Sales: 538538, - COGS: 771160, - Profit: 232622, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `1459`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 510650, - Discounts: 20139, - Sales: 490511, - COGS: 748020, - Profit: 257509, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3284`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 410500, - Discounts: 2022.5, - Sales: 408477.5, - COGS: 97080, - Profit: 311397.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `1197`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 149625, - Discounts: 5362.5, - Sales: 144262.5, - COGS: 257400, - Profit: 113137.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3774`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 45288, - Discounts: 253.2, - Sales: 45034.8, - COGS: 3165, - Profit: 41869.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2303`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 46060, - Discounts: 217.6, - Sales: 45842.4, - COGS: 5440, - Profit: 40402.4, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2572`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 30864, - Discounts: 260.16, - Sales: 30603.84, - COGS: 3252, - Profit: 27351.84, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `320`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 40000, - Discounts: 1655, - Sales: 38345, - COGS: 79440, - Profit: 41095, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2126`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 637800, - Discounts: 1284, - Sales: 636516, - COGS: 53500, - Profit: 583016, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3275`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1146250, - Discounts: 20139, - Sales: 1126111, - COGS: 748020, - Profit: 378091, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3582`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 447750, - Discounts: 6822.5, - Sales: 440927.5, - COGS: 327480, - Profit: 113447.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `783`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 274050, - Discounts: 1862, - Sales: 272188, - COGS: 69160, - Profit: 203028, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1202`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 420700, - Discounts: 13580, - Sales: 407120, - COGS: 504400, - Profit: 97280, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4056`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1216800, - Discounts: 1554, - Sales: 1215246, - COGS: 64750, - Profit: 1150496, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2144`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 643200, - Discounts: 6606, - Sales: 636594, - COGS: 275250, - Profit: 361344, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `3502`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 437750, - Discounts: 5690, - Sales: 432060, - COGS: 273120, - Profit: 158940, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1397`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 488950, - Discounts: 20762, - Sales: 468188, - COGS: 771160, - Profit: 302972, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `679`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 13580, - Discounts: 494.4, - Sales: 13085.6, - COGS: 12360, - Profit: 725.6, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2351`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 47020, - Discounts: 376.4, - Sales: 46643.6, - COGS: 9410, - Profit: 37233.6, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2043`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 612900, - Discounts: 11496, - Sales: 601404, - COGS: 479000, - Profit: 122404, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `3565`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 445625, - Discounts: 15913.13, - Sales: 429711.88, - COGS: 509220, - Profit: 79508.13, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1401`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 28020, - Discounts: 1548, - Sales: 26472, - COGS: 25800, - Profit: 672, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2077`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 623100, - Discounts: 6201, - Sales: 616899, - COGS: 172250, - Profit: 444649, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `3643`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 43716, - Discounts: 700.92, - Sales: 43015.08, - COGS: 5841, - Profit: 37174.08, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1105`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 13260, - Discounts: 326.88, - Sales: 12933.12, - COGS: 2724, - Profit: 10209.12, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2960`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 20720, - Discounts: 411.18, - Sales: 20308.82, - COGS: 9790, - Profit: 10518.82, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1201`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 14412, - Discounts: 684.36, - Sales: 13727.64, - COGS: 5703, - Profit: 8024.64, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `2321`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 16247, - Discounts: 114.24, - Sales: 16132.76, - COGS: 2720, - Profit: 13412.76, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3640`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1274000, - Discounts: 18868.5, - Sales: 1255131.5, - COGS: 467220, - Profit: 787911.5, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3972`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 496500, - Discounts: 4826.25, - Sales: 491673.75, - COGS: 154440, - Profit: 337233.75, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3878`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 484750, - Discounts: 6397.5, - Sales: 478352.5, - COGS: 204720, - Profit: 273632.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2278`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 683400, - Discounts: 21910.5, - Sales: 661489.5, - COGS: 608625, - Profit: 52864.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1075`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 134375, - Discounts: 6652.5, - Sales: 127722.5, - COGS: 212880, - Profit: 85157.5, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `4050`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 48600, - Discounts: 684.36, - Sales: 47915.64, - COGS: 5703, - Profit: 42212.64, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3035`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 910500, - Discounts: 6201, - Sales: 904299, - COGS: 172250, - Profit: 732049, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3636`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 454500, - Discounts: 5887.5, - Sales: 448612.5, - COGS: 188400, - Profit: 260212.5, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1379`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 16548, - Discounts: 493.02, - Sales: 16054.98, - COGS: 4108.5, - Profit: 11946.48, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4492`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 561500, - Discounts: 7533.75, - Sales: 553966.25, - COGS: 241080, - Profit: 312886.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `764`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 11460, - Discounts: 875.25, - Sales: 10584.75, - COGS: 19450, - Profit: 8865.25, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1744`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 218000, - Discounts: 4826.25, - Sales: 213173.75, - COGS: 154440, - Profit: 58733.75, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2341`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 292625, - Discounts: 6397.5, - Sales: 286227.5, - COGS: 204720, - Profit: 81507.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3835`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 479375, - Discounts: 7533.75, - Sales: 471841.25, - COGS: 241080, - Profit: 230761.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1161`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 348300, - Discounts: 25596, - Sales: 322704, - COGS: 711000, - Profit: 388296, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `876`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 10512, - Discounts: 689.76, - Sales: 9822.24, - COGS: 5748, - Profit: 4074.24, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1705`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 213125, - Discounts: 5887.5, - Sales: 207237.5, - COGS: 188400, - Profit: 18837.5, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1805`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 541500, - Discounts: 16866, - Sales: 524634, - COGS: 468500, - Profit: 56134, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `389`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 136150, - Discounts: 17241, - Sales: 118909, - COGS: 426920, - Profit: 308011, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2745`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 41175, - Discounts: 875.25, - Sales: 40299.75, - COGS: 19450, - Profit: 20849.75, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1459`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 29180, - Discounts: 498.6, - Sales: 28681.4, - COGS: 8310, - Profit: 20371.4, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3938`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 27566, - Discounts: 369.6, - Sales: 27196.4, - COGS: 8800, - Profit: 18396.4, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `4236`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 84720, - Discounts: 2310.3, - Sales: 82409.7, - COGS: 38505, - Profit: 43904.7, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3627`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 43524, - Discounts: 892.44, - Sales: 42631.56, - COGS: 7437, - Profit: 35194.56, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1756`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 26340, - Discounts: 1218.6, - Sales: 25121.4, - COGS: 20310, - Profit: 4811.4, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `307`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 4605, - Discounts: 1218.6, - Sales: 3386.4, - COGS: 20310, - Profit: 16923.6, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `4489`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 67335, - Discounts: 1356.6, - Sales: 65978.4, - COGS: 22610, - Profit: 43368.4, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2167`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 43340, - Discounts: 588.8, - Sales: 42751.2, - COGS: 7360, - Profit: 35391.2, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1137`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 7959, - Discounts: 798.28, - Sales: 7160.72, - COGS: 14255, - Profit: 7094.28, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1222`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 366600, - Discounts: 24252, - Sales: 342348, - COGS: 505250, - Profit: 162902, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `489`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 171150, - Discounts: 3836, - Sales: 167314, - COGS: 71240, - Profit: 96074, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4133`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 61995, - Discounts: 1180.2, - Sales: 60814.8, - COGS: 19670, - Profit: 41144.8, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2743`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 822900, - Discounts: 22308, - Sales: 800592, - COGS: 464750, - Profit: 335842, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `3699`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 25893, - Discounts: 798.28, - Sales: 25094.72, - COGS: 14255, - Profit: 10839.72, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `4460`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1338000, - Discounts: 24252, - Sales: 1313748, - COGS: 505250, - Profit: 808498, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1232`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 154000, - Discounts: 5690, - Sales: 148310, - COGS: 136560, - Profit: 11750, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2586`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 18102, - Discounts: 1190.28, - Sales: 16911.72, - COGS: 21255, - Profit: 4343.28, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1332`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 166500, - Discounts: 3975, - Sales: 162525, - COGS: 95400, - Profit: 67125, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4487`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1346100, - Discounts: 16974, - Sales: 1329126, - COGS: 353625, - Profit: 975501, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3862`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1158600, - Discounts: 35016, - Sales: 1123584, - COGS: 729500, - Profit: 394084, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1765`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 617750, - Discounts: 48300, - Sales: 569450, - COGS: 897000, - Profit: 327550, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3533`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 441625, - Discounts: 14940, - Sales: 426685, - COGS: 358560, - Profit: 68125, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2016`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 30240, - Discounts: 130.8, - Sales: 30109.2, - COGS: 2180, - Profit: 27929.2, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2938`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 58760, - Discounts: 1659.2, - Sales: 57100.8, - COGS: 20740, - Profit: 36360.8, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3352`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 67040, - Discounts: 844.8, - Sales: 66195.2, - COGS: 10560, - Profit: 55635.2, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4409`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 66135, - Discounts: 402.6, - Sales: 65732.4, - COGS: 6710, - Profit: 59022.4, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3323`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 49845, - Discounts: 908.4, - Sales: 48936.6, - COGS: 15140, - Profit: 33796.6, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2430`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 850500, - Discounts: 3836, - Sales: 846664, - COGS: 71240, - Profit: 775424, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `535`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 66875, - Discounts: 5690, - Sales: 61185, - COGS: 136560, - Profit: 75375, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1523`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 18276, - Discounts: 703.2, - Sales: 17572.8, - COGS: 4395, - Profit: 13177.8, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3631`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 72620, - Discounts: 2116.8, - Sales: 70503.2, - COGS: 26460, - Profit: 44043.2, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1782`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 623700, - Discounts: 30478, - Sales: 593222, - COGS: 566020, - Profit: 27202, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `347`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 4164, - Discounts: 415.68, - Sales: 3748.32, - COGS: 2598, - Profit: 1150.32, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `4147`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1451450, - Discounts: 4886, - Sales: 1446564, - COGS: 90740, - Profit: 1355824, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3509`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1228150, - Discounts: 30478, - Sales: 1197672, - COGS: 566020, - Profit: 631652, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `2774`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 41610, - Discounts: 908.4, - Sales: 40701.6, - COGS: 15140, - Profit: 25561.6, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2943`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1030050, - Discounts: 26110, - Sales: 1003940, - COGS: 484900, - Profit: 519040, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `4037`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 504625, - Discounts: 5370, - Sales: 499255, - COGS: 128880, - Profit: 370375, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4146`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1451100, - Discounts: 26698, - Sales: 1424402, - COGS: 495820, - Profit: 928582, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `4123`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 61845, - Discounts: 402.6, - Sales: 61442.4, - COGS: 6710, - Profit: 54732.4, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1337`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 467950, - Discounts: 24892, - Sales: 443058, - COGS: 462280, - Profit: 19222, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `599`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 4193, - Discounts: 405.65, - Sales: 3787.35, - COGS: 5795, - Profit: 2007.65, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `725`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 5075, - Discounts: 480.2, - Sales: 4594.8, - COGS: 6860, - Profit: 2265.2, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `477`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 3339, - Discounts: 822.15, - Sales: 2516.85, - COGS: 11745, - Profit: 9228.15, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2325`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 16275, - Discounts: 941.15, - Sales: 15333.85, - COGS: 13445, - Profit: 1888.85, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `675`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 8100, - Discounts: 1458.6, - Sales: 6641.4, - COGS: 7293, - Profit: 651.6, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2990`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 35880, - Discounts: 1458.6, - Sales: 34421.4, - COGS: 7293, - Profit: 27128.4, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1072`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 7504, - Discounts: 941.15, - Sales: 6562.85, - COGS: 13445, - Profit: 6882.15, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1048`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 7336, - Discounts: 589.05, - Sales: 6746.95, - COGS: 8415, - Profit: 1668.05, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `469`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 5628, - Discounts: 673.8, - Sales: 4954.2, - COGS: 3369, - Profit: 1585.2, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `804`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 5628, - Discounts: 405.65, - Sales: 5222.35, - COGS: 5795, - Profit: 572.65, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `4240`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 50880, - Discounts: 1119, - Sales: 49761, - COGS: 5595, - Profit: 44166, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1976`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 23712, - Discounts: 669.6, - Sales: 23042.4, - COGS: 3348, - Profit: 19694.4, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1984`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 39680, - Discounts: 1563, - Sales: 38117, - COGS: 15630, - Profit: 22487, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `480`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 144000, - Discounts: 14865, - Sales: 129135, - COGS: 247750, - Profit: 118615, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `3551`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 24857, - Discounts: 355.6, - Sales: 24501.4, - COGS: 5080, - Profit: 19421.4, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1205`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 18075, - Discounts: 2093.25, - Sales: 15981.75, - COGS: 27910, - Profit: 11928.25, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2480`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 17360, - Discounts: 199.5, - Sales: 17160.5, - COGS: 2850, - Profit: 14310.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `2926`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 20482, - Discounts: 870.45, - Sales: 19611.55, - COGS: 12435, - Profit: 7176.55, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3210`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1123500, - Discounts: 24228.75, - Sales: 1099271.25, - COGS: 359970, - Profit: 739301.25, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `3221`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 402625, - Discounts: 22668.75, - Sales: 379956.25, - COGS: 435240, - Profit: 55283.75, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2389`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 836150, - Discounts: 12600, - Sales: 823550, - COGS: 187200, - Profit: 636350, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `1127`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 13524, - Discounts: 1405.2, - Sales: 12118.8, - COGS: 7026, - Profit: 5092.8, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `319`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 95700, - Discounts: 16500, - Sales: 79200, - COGS: 275000, - Profit: 195800, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1610`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 32200, - Discounts: 1303, - Sales: 30897, - COGS: 13030, - Profit: 17867, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4100`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 512500, - Discounts: 18700, - Sales: 493800, - COGS: 359040, - Profit: 134760, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1012`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 126500, - Discounts: 14906.25, - Sales: 111593.75, - COGS: 286200, - Profit: 174606.25, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3337`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1001100, - Discounts: 24105, - Sales: 976995, - COGS: 401750, - Profit: 575245, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3955`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 27685, - Discounts: 814.45, - Sales: 26870.55, - COGS: 11635, - Profit: 15235.55, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4347`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1304100, - Discounts: 14865, - Sales: 1289235, - COGS: 247750, - Profit: 1041485, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1548`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 541800, - Discounts: 10535, - Sales: 531265, - COGS: 156520, - Profit: 374745, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2153`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 32295, - Discounts: 1965, - Sales: 30330, - COGS: 26200, - Profit: 4130, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3789`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1326150, - Discounts: 21490, - Sales: 1304660, - COGS: 319280, - Profit: 985380, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4364`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 87280, - Discounts: 1389, - Sales: 85891, - COGS: 13890, - Profit: 72001, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4126`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 515750, - Discounts: 5381.25, - Sales: 510368.75, - COGS: 103320, - Profit: 407048.75, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1343`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 167875, - Discounts: 4400, - Sales: 163475, - COGS: 84480, - Profit: 78995, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `245`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 4900, - Discounts: 1802, - Sales: 3098, - COGS: 18020, - Profit: 14922, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3376`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 67520, - Discounts: 2663, - Sales: 64857, - COGS: 26630, - Profit: 38227, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1401`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 9807, - Discounts: 747.6, - Sales: 9059.4, - COGS: 10680, - Profit: 1620.6, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3483`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 52245, - Discounts: 1587, - Sales: 50658, - COGS: 21160, - Profit: 29498, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2244`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 33660, - Discounts: 416.25, - Sales: 33243.75, - COGS: 5550, - Profit: 27693.75, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `1360`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 20400, - Discounts: 2145.75, - Sales: 18254.25, - COGS: 28610, - Profit: 10355.75, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `279`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 34875, - Discounts: 5043.75, - Sales: 29831.25, - COGS: 96840, - Profit: 67008.75, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2521`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 882350, - Discounts: 10535, - Sales: 871815, - COGS: 156520, - Profit: 715295, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2433`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 48660, - Discounts: 2832, - Sales: 45828, - COGS: 28320, - Profit: 17508, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1738`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 34760, - Discounts: 1579, - Sales: 33181, - COGS: 15790, - Profit: 17391, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1106`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 138250, - Discounts: 5381.25, - Sales: 132868.75, - COGS: 103320, - Profit: 29548.75, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3379`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 422375, - Discounts: 4400, - Sales: 417975, - COGS: 84480, - Profit: 333495, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1221`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 24420, - Discounts: 1033, - Sales: 23387, - COGS: 10330, - Profit: 13057, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `213`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 63900, - Discounts: 18750, - Sales: 45150, - COGS: 312500, - Profit: 267350, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3335`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 66700, - Discounts: 1389, - Sales: 65311, - COGS: 13890, - Profit: 51421, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1260`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 25200, - Discounts: 1265, - Sales: 23935, - COGS: 12650, - Profit: 11285, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3034`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 60680, - Discounts: 2297, - Sales: 58383, - COGS: 22970, - Profit: 35413, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2929`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 58580, - Discounts: 2663, - Sales: 55917, - COGS: 26630, - Profit: 29287, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2389`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 16723, - Discounts: 199.5, - Sales: 16523.5, - COGS: 2850, - Profit: 13673.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3086`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 21602, - Discounts: 870.45, - Sales: 20731.55, - COGS: 12435, - Profit: 8296.55, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `745`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 260750, - Discounts: 23625, - Sales: 237125, - COGS: 351000, - Profit: 113875, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1266`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 443100, - Discounts: 9660, - Sales: 433440, - COGS: 143520, - Profit: 289920, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `3790`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1326500, - Discounts: 21490, - Sales: 1305010, - COGS: 319280, - Profit: 985730, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4287`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1286100, - Discounts: 18750, - Sales: 1267350, - COGS: 312500, - Profit: 954850, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3193`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 47895, - Discounts: 3420.9, - Sales: 44474.1, - COGS: 38010, - Profit: 6464.1, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1967`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 39340, - Discounts: 1341, - Sales: 37999, - COGS: 11175, - Profit: 26824, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `631`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 9465, - Discounts: 2559.6, - Sales: 6905.4, - COGS: 28440, - Profit: 21534.6, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3469`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 41628, - Discounts: 404.64, - Sales: 41223.36, - COGS: 1686, - Profit: 39537.36, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `570`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 6840, - Discounts: 1655.28, - Sales: 5184.72, - COGS: 6897, - Profit: 1712.28, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `3215`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 48225, - Discounts: 1827, - Sales: 46398, - COGS: 20300, - Profit: 26098, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `3754`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 26278, - Discounts: 110.46, - Sales: 26167.54, - COGS: 1315, - Profit: 24852.54, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2187`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 273375, - Discounts: 6652.5, - Sales: 266722.5, - COGS: 106440, - Profit: 160282.5, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1959`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 685650, - Discounts: 20580, - Sales: 665070, - COGS: 254800, - Profit: 410270, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2181`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 763350, - Discounts: 30660, - Sales: 732690, - COGS: 379600, - Profit: 353090, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3559`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 24913, - Discounts: 589.26, - Sales: 24323.74, - COGS: 7015, - Profit: 17308.74, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2205`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 26460, - Discounts: 1960.56, - Sales: 24499.44, - COGS: 8169, - Profit: 16330.44, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1890`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 661500, - Discounts: 31416, - Sales: 630084, - COGS: 388960, - Profit: 241124, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1296`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 15552, - Discounts: 1655.28, - Sales: 13896.72, - COGS: 6897, - Profit: 6999.72, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `775`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 271250, - Discounts: 15267, - Sales: 255983, - COGS: 189020, - Profit: 66963, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2417`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 302125, - Discounts: 7140, - Sales: 294985, - COGS: 114240, - Profit: 180745, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1158`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 144750, - Discounts: 20662.5, - Sales: 124087.5, - COGS: 330600, - Profit: 206512.5, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `803`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 12045, - Discounts: 1377, - Sales: 10668, - COGS: 15300, - Profit: 4632, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3705`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1296750, - Discounts: 31416, - Sales: 1265334, - COGS: 388960, - Profit: 876374, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `589`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 4123, - Discounts: 629.16, - Sales: 3493.84, - COGS: 7490, - Profit: 3996.16, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3797`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1139100, - Discounts: 21978, - Sales: 1117122, - COGS: 305250, - Profit: 811872, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1321`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 462350, - Discounts: 43596, - Sales: 418754, - COGS: 539760, - Profit: 121006, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3999`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 59985, - Discounts: 2559.6, - Sales: 57425.4, - COGS: 28440, - Profit: 28985.4, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `4256`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 29792, - Discounts: 629.16, - Sales: 29162.84, - COGS: 7490, - Profit: 21672.84, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1643`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 492900, - Discounts: 21978, - Sales: 470922, - COGS: 305250, - Profit: 165672, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1912`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 38240, - Discounts: 1347.6, - Sales: 36892.4, - COGS: 11230, - Profit: 25662.4, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1610`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 483000, - Discounts: 43848, - Sales: 439152, - COGS: 609000, - Profit: 169848, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2160`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 270000, - Discounts: 14906.25, - Sales: 255093.75, - COGS: 238500, - Profit: 16593.75, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `466`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 163100, - Discounts: 35259, - Sales: 127841, - COGS: 436540, - Profit: 308699, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `328`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 114800, - Discounts: 15267, - Sales: 99533, - COGS: 189020, - Profit: 89487, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `4099`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 28693, - Discounts: 589.26, - Sales: 28103.74, - COGS: 7015, - Profit: 21088.74, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `990`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 346500, - Discounts: 43596, - Sales: 302904, - COGS: 539760, - Profit: 236856, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1433`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 28660, - Discounts: 2108.4, - Sales: 26551.6, - COGS: 17570, - Profit: 8981.6, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1478`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 22170, - Discounts: 1978.2, - Sales: 20191.8, - COGS: 21980, - Profit: 1788.2, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3798`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 56970, - Discounts: 1568.7, - Sales: 55401.3, - COGS: 17430, - Profit: 37971.3, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `447`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 6705, - Discounts: 1037.7, - Sales: 5667.3, - COGS: 11530, - Profit: 5862.7, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1711`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34220, - Discounts: 2108.4, - Sales: 32111.6, - COGS: 17570, - Profit: 14541.6, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `745`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 14900, - Discounts: 1201.2, - Sales: 13698.8, - COGS: 10010, - Profit: 3688.8, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `1732`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 12124, - Discounts: 559.86, - Sales: 11564.14, - COGS: 6665, - Profit: 4899.14, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1759`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 26385, - Discounts: 1037.7, - Sales: 25347.3, - COGS: 11530, - Profit: 13817.3, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `338`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 4056, - Discounts: 610.68, - Sales: 3445.32, - COGS: 2181, - Profit: 1264.32, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `3911`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 46932, - Discounts: 1582.56, - Sales: 45349.44, - COGS: 5652, - Profit: 39697.44, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3691`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 73820, - Discounts: 2567.6, - Sales: 71252.4, - COGS: 18340, - Profit: 52912.4, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `4473`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 53676, - Discounts: 1965.6, - Sales: 51710.4, - COGS: 7020, - Profit: 44690.4, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `383`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 4596, - Discounts: 1967.28, - Sales: 2628.72, - COGS: 7026, - Profit: 4397.28, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3105`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 21735, - Discounts: 505.19, - Sales: 21229.81, - COGS: 5155, - Profit: 16074.81, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1062`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 15930, - Discounts: 1325.1, - Sales: 14604.9, - COGS: 12620, - Profit: 1984.9, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `4083`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 28581, - Discounts: 556.15, - Sales: 28024.85, - COGS: 5675, - Profit: 22349.85, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3974`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 27818, - Discounts: 268.03, - Sales: 27549.97, - COGS: 2735, - Profit: 24814.97, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3723`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 26061, - Discounts: 775.18, - Sales: 25285.82, - COGS: 7910, - Profit: 17375.82, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2435`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 29220, - Discounts: 1460.34, - Sales: 27759.66, - COGS: 5215.5, - Profit: 22544.16, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1678`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 20136, - Discounts: 1860.6, - Sales: 18275.4, - COGS: 6645, - Profit: 11630.4, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1763`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 12341, - Discounts: 775.18, - Sales: 11565.82, - COGS: 7910, - Profit: 3655.82, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `4473`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 31311, - Discounts: 556.15, - Sales: 30754.85, - COGS: 5675, - Profit: 25079.85, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1246`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 436100, - Discounts: 43144.5, - Sales: 392955.5, - COGS: 457860, - Profit: 64904.5, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1615`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 484500, - Discounts: 9408, - Sales: 475092, - COGS: 112000, - Profit: 363092, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `749`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 224700, - Discounts: 45801, - Sales: 178899, - COGS: 545250, - Profit: 366351, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1318`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 26360, - Discounts: 2766.4, - Sales: 23593.6, - COGS: 19760, - Profit: 3833.6, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `2882`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 864600, - Discounts: 45801, - Sales: 818799, - COGS: 545250, - Profit: 273549, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3039`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 379875, - Discounts: 21875, - Sales: 358000, - COGS: 300000, - Profit: 58000, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2484`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 745200, - Discounts: 35742, - Sales: 709458, - COGS: 425500, - Profit: 283958, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3169`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 950700, - Discounts: 9408, - Sales: 941292, - COGS: 112000, - Profit: 829292, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4080`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 510000, - Discounts: 30738.75, - Sales: 479261.25, - COGS: 421560, - Profit: 57701.25, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3943`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 59145, - Discounts: 2206.05, - Sales: 56938.95, - COGS: 21010, - Profit: 35928.95, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `784`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 11760, - Discounts: 3077.55, - Sales: 8682.45, - COGS: 29310, - Profit: 20627.55, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `253`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 5060, - Discounts: 2149, - Sales: 2911, - COGS: 15350, - Profit: 12439, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1316`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 394800, - Discounts: 23583, - Sales: 371217, - COGS: 280750, - Profit: 90467, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `808`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 242400, - Discounts: 29484, - Sales: 212916, - COGS: 351000, - Profit: 138084, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3295`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 39540, - Discounts: 2320.92, - Sales: 37219.08, - COGS: 8289, - Profit: 28930.08, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `520`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 3640, - Discounts: 1041.25, - Sales: 2598.75, - COGS: 10625, - Profit: 8026.25, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `799`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 239700, - Discounts: 34839, - Sales: 204861, - COGS: 414750, - Profit: 209889, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3942`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 78840, - Discounts: 852.6, - Sales: 77987.4, - COGS: 6090, - Profit: 71897.4, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2498`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 312250, - Discounts: 18261.25, - Sales: 293988.75, - COGS: 250440, - Profit: 43548.75, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `2517`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 50340, - Discounts: 2766.4, - Sales: 47573.6, - COGS: 19760, - Profit: 27813.6, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3182`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 63640, - Discounts: 1989.4, - Sales: 61650.6, - COGS: 14210, - Profit: 47440.6, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1145`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 343500, - Discounts: 28812, - Sales: 314688, - COGS: 343000, - Profit: 28312, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `895`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 17900, - Discounts: 823.2, - Sales: 17076.8, - COGS: 5880, - Profit: 11196.8, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3814`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 45768, - Discounts: 2725.38, - Sales: 43042.62, - COGS: 9733.5, - Profit: 33309.12, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1188`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 356400, - Discounts: 20139, - Sales: 336261, - COGS: 239750, - Profit: 96511, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `2233`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 669900, - Discounts: 57687, - Sales: 612213, - COGS: 686750, - Profit: 74537, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `421`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 52625, - Discounts: 14393.75, - Sales: 38231.25, - COGS: 197400, - Profit: 159168.75, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `269`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 94150, - Discounts: 70462, - Sales: 23688, - COGS: 747760, - Profit: 724072, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `3766`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 470750, - Discounts: 8697.5, - Sales: 462052.5, - COGS: 119280, - Profit: 342772.5, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `952`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 19040, - Discounts: 1565.2, - Sales: 17474.8, - COGS: 11180, - Profit: 6294.8, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2964`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 889200, - Discounts: 28812, - Sales: 860388, - COGS: 343000, - Profit: 517388, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1505`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 10535, - Discounts: 273.28, - Sales: 10261.72, - COGS: 2440, - Profit: 7821.72, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1678`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 33560, - Discounts: 2051.2, - Sales: 31508.8, - COGS: 12820, - Profit: 18688.8, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4249`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 29743, - Discounts: 143.92, - Sales: 29599.08, - COGS: 1285, - Profit: 28314.08, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1677`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 33540, - Discounts: 2051.2, - Sales: 31488.8, - COGS: 12820, - Profit: 18668.8, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3051`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 381375, - Discounts: 15400, - Sales: 365975, - COGS: 184800, - Profit: 181175, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `3372`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 50580, - Discounts: 588, - Sales: 49992, - COGS: 4900, - Profit: 45092, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1686`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 590100, - Discounts: 38136, - Sales: 551964, - COGS: 354120, - Profit: 197844, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3086`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 46290, - Discounts: 3001.2, - Sales: 43288.8, - COGS: 25010, - Profit: 18278.8, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4150`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 83000, - Discounts: 1132.8, - Sales: 81867.2, - COGS: 7080, - Profit: 74787.2, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3027`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 60540, - Discounts: 1032, - Sales: 59508, - COGS: 6450, - Profit: 53058, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `4359`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1307700, - Discounts: 37488, - Sales: 1270212, - COGS: 390500, - Profit: 879712, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `3628`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1088400, - Discounts: 30792, - Sales: 1057608, - COGS: 320750, - Profit: 736858, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `1589`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 23835, - Discounts: 853.2, - Sales: 22981.8, - COGS: 7110, - Profit: 15871.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2679`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 334875, - Discounts: 11140, - Sales: 323735, - COGS: 133680, - Profit: 190055, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3401`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 23807, - Discounts: 705.04, - Sales: 23101.96, - COGS: 6295, - Profit: 16806.96, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2815`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 19705, - Discounts: 613.2, - Sales: 19091.8, - COGS: 5475, - Profit: 13616.8, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2964`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 59280, - Discounts: 2185.6, - Sales: 57094.4, - COGS: 13660, - Profit: 43434.4, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `4173`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1251900, - Discounts: 59040, - Sales: 1192860, - COGS: 615000, - Profit: 577860, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1157`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 8099, - Discounts: 379.68, - Sales: 7719.32, - COGS: 3390, - Profit: 4329.32, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3065`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 21455, - Discounts: 894.88, - Sales: 20560.12, - COGS: 7990, - Profit: 12570.12, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1962`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 13734, - Discounts: 1349.04, - Sales: 12384.96, - COGS: 12045, - Profit: 339.96, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4080`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 81600, - Discounts: 3094.4, - Sales: 78505.6, - COGS: 19340, - Profit: 59165.6, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1713`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34260, - Discounts: 4788.8, - Sales: 29471.2, - COGS: 29930, - Profit: 458.8, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2795`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 978250, - Discounts: 60088, - Sales: 918162, - COGS: 557960, - Profit: 360202, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `4082`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 28574, - Discounts: 1089.76, - Sales: 27484.24, - COGS: 9730, - Profit: 17754.24, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1691`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 591850, - Discounts: 38136, - Sales: 553714, - COGS: 354120, - Profit: 199594, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2305`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 27660, - Discounts: 574.08, - Sales: 27085.92, - COGS: 1794, - Profit: 25291.92, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3401`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 23807, - Discounts: 1627.92, - Sales: 22179.08, - COGS: 14535, - Profit: 7644.08, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2288`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 16016, - Discounts: 1309.28, - Sales: 14706.72, - COGS: 11690, - Profit: 3016.72, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `2399`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 719700, - Discounts: 9264, - Sales: 710436, - COGS: 96500, - Profit: 613936, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `4086`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1225800, - Discounts: 15240, - Sales: 1210560, - COGS: 158750, - Profit: 1051810, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2651`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 927850, - Discounts: 16086, - Sales: 911764, - COGS: 149370, - Profit: 762394, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3971`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 27797, - Discounts: 1309.28, - Sales: 26487.72, - COGS: 11690, - Profit: 14797.72, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2512`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 879200, - Discounts: 10668, - Sales: 868532, - COGS: 99060, - Profit: 769472, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2745`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 960750, - Discounts: 11816, - Sales: 948934, - COGS: 109720, - Profit: 839214, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1903`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 570900, - Discounts: 51216, - Sales: 519684, - COGS: 533500, - Profit: 13816, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `647`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 194100, - Discounts: 19392, - Sales: 174708, - COGS: 202000, - Profit: 27292, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2914`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 58280, - Discounts: 1132.8, - Sales: 57147.2, - COGS: 7080, - Profit: 50067.2, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1889`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 13223, - Discounts: 1627.92, - Sales: 11595.08, - COGS: 14535, - Profit: 2939.92, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1466`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 29320, - Discounts: 2185.6, - Sales: 27134.4, - COGS: 13660, - Profit: 13474.4, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `887`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 266100, - Discounts: 59040, - Sales: 207060, - COGS: 615000, - Profit: 407940, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `395`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 7900, - Discounts: 2432, - Sales: 5468, - COGS: 15200, - Profit: 9732, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1693`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 25395, - Discounts: 853.2, - Sales: 24541.8, - COGS: 7110, - Profit: 17431.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2459`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 29508, - Discounts: 1320, - Sales: 28188, - COGS: 4125, - Profit: 24063, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2649`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 794700, - Discounts: 15240, - Sales: 779460, - COGS: 158750, - Profit: 620710, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `3608`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 72160, - Discounts: 698.4, - Sales: 71461.6, - COGS: 4365, - Profit: 67096.6, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1073`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 321900, - Discounts: 29538, - Sales: 292362, - COGS: 273500, - Profit: 18862, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1754`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 21048, - Discounts: 396.36, - Sales: 20651.64, - COGS: 1101, - Profit: 19550.64, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `2167`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 650100, - Discounts: 102667.5, - Sales: 547432.5, - COGS: 950625, - Profit: 403192.5, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1319`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 461650, - Discounts: 52479, - Sales: 409171, - COGS: 433160, - Profit: 23989, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1679`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 503700, - Discounts: 8694, - Sales: 495006, - COGS: 80500, - Profit: 414506, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1252`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 15024, - Discounts: 2506.68, - Sales: 12517.32, - COGS: 6963, - Profit: 5554.32, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3493`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 436625, - Discounts: 20891.25, - Sales: 415733.75, - COGS: 222840, - Profit: 192893.75, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1697`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 11879, - Discounts: 1014.93, - Sales: 10864.07, - COGS: 8055, - Profit: 2809.07, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1156`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 144500, - Discounts: 31466.25, - Sales: 113033.75, - COGS: 335640, - Profit: 222606.25, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `726`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 217800, - Discounts: 9018, - Sales: 208782, - COGS: 83500, - Profit: 125282, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1153`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 345900, - Discounts: 69255, - Sales: 276645, - COGS: 641250, - Profit: 364605, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2720`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 952000, - Discounts: 76135.5, - Sales: 875864.5, - COGS: 628420, - Profit: 247444.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3658`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 54870, - Discounts: 4961.25, - Sales: 49908.75, - COGS: 36750, - Profit: 13158.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2950`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 885000, - Discounts: 29538, - Sales: 855462, - COGS: 273500, - Profit: 581962, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1821`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 27315, - Discounts: 1656.45, - Sales: 25658.55, - COGS: 12270, - Profit: 13388.55, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `4174`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 50088, - Discounts: 396.36, - Sales: 49691.64, - COGS: 1101, - Profit: 48590.64, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1127`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 338100, - Discounts: 35748, - Sales: 302352, - COGS: 331000, - Profit: 28648, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2209`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 26508, - Discounts: 1917, - Sales: 24591, - COGS: 5325, - Profit: 19266, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `862`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 107750, - Discounts: 31466.25, - Sales: 76283.75, - COGS: 335640, - Profit: 259356.25, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3805`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 57075, - Discounts: 330.75, - Sales: 56744.25, - COGS: 2450, - Profit: 54294.25, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1415`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 424500, - Discounts: 102424.5, - Sales: 322075.5, - COGS: 948375, - Profit: 626299.5, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2231`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 780850, - Discounts: 41170.5, - Sales: 739679.5, - COGS: 339820, - Profit: 399859.5, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3649`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 456125, - Discounts: 6378.75, - Sales: 449746.25, - COGS: 68040, - Profit: 381706.25, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2948`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 368500, - Discounts: 23737.5, - Sales: 344762.5, - COGS: 253200, - Profit: 91562.5, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3395`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1188250, - Discounts: 39973.5, - Sales: 1148276.5, - COGS: 329940, - Profit: 818336.5, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2650`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 31800, - Discounts: 2112.48, - Sales: 29687.52, - COGS: 5868, - Profit: 23819.52, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `585`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 175500, - Discounts: 71793, - Sales: 103707, - COGS: 664750, - Profit: 561043, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1316`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 460600, - Discounts: 42572.25, - Sales: 418027.75, - COGS: 351390, - Profit: 66637.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `4459`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 53508, - Discounts: 950.4, - Sales: 52557.6, - COGS: 2640, - Profit: 49917.6, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2711`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 813300, - Discounts: 50409, - Sales: 762891, - COGS: 466750, - Profit: 296141, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2621`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 31452, - Discounts: 2412.72, - Sales: 29039.28, - COGS: 6702, - Profit: 22337.28, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3613`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 54195, - Discounts: 1656.45, - Sales: 52538.55, - COGS: 12270, - Profit: 40268.55, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1847`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 230875, - Discounts: 9866.25, - Sales: 221008.75, - COGS: 105240, - Profit: 115768.75, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2996`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1048600, - Discounts: 65236.5, - Sales: 983363.5, - COGS: 538460, - Profit: 444903.5, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2838`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 993300, - Discounts: 39973.5, - Sales: 953326.5, - COGS: 329940, - Profit: 623386.5, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1302`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 19530, - Discounts: 1309.5, - Sales: 18220.5, - COGS: 9700, - Profit: 8520.5, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1536`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 30720, - Discounts: 3049.2, - Sales: 27670.8, - COGS: 16940, - Profit: 10730.8, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1291`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 25820, - Discounts: 1193.4, - Sales: 24626.6, - COGS: 6630, - Profit: 17996.6, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1213`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 8491, - Discounts: 515.97, - Sales: 7975.03, - COGS: 4095, - Profit: 3880.03, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2370`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 28440, - Discounts: 1706.4, - Sales: 26733.6, - COGS: 4740, - Profit: 21993.6, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1979`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 13853, - Discounts: 328.23, - Sales: 13524.77, - COGS: 2605, - Profit: 10919.77, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2879`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 57580, - Discounts: 1751.4, - Sales: 55828.6, - COGS: 9730, - Profit: 46098.6, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1707`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34140, - Discounts: 1868.4, - Sales: 32271.6, - COGS: 10380, - Profit: 21891.6, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2933`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 20531, - Discounts: 226.8, - Sales: 20304.2, - COGS: 1800, - Profit: 18504.2, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1014`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 12168, - Discounts: 2124.36, - Sales: 10043.64, - COGS: 5901, - Profit: 4142.64, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `693`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 10395, - Discounts: 3547.8, - Sales: 6847.2, - COGS: 26280, - Profit: 19432.8, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3741`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 26187, - Discounts: 226.8, - Sales: 25960.2, - COGS: 1800, - Profit: 24160.2, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3116`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 62320, - Discounts: 4827.6, - Sales: 57492.4, - COGS: 26820, - Profit: 30672.4, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `3995`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 27965, - Discounts: 328.23, - Sales: 27636.77, - COGS: 2605, - Profit: 25031.77, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `953`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 19060, - Discounts: 1868.4, - Sales: 17191.6, - COGS: 10380, - Profit: 6811.6, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2530`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 37950, - Discounts: 2201.18, - Sales: 35748.82, - COGS: 16305, - Profit: 19443.82, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2565`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 30780, - Discounts: 330.48, - Sales: 30449.52, - COGS: 918, - Profit: 29531.52, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `4297`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 51564, - Discounts: 463.2, - Sales: 51100.8, - COGS: 1158, - Profit: 49942.8, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2871`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 20097, - Discounts: 1629.6, - Sales: 18467.4, - COGS: 11640, - Profit: 6827.4, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3537`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 42444, - Discounts: 463.2, - Sales: 41980.8, - COGS: 1158, - Profit: 40822.8, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1598`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 199750, - Discounts: 43068.75, - Sales: 156681.25, - COGS: 413460, - Profit: 256778.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `2616`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 327000, - Discounts: 18525, - Sales: 308475, - COGS: 177840, - Profit: 130635, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2836`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 992600, - Discounts: 80955, - Sales: 911645, - COGS: 601380, - Profit: 310265, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `4023`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 502875, - Discounts: 22550, - Sales: 480325, - COGS: 216480, - Profit: 263845, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3994`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 59910, - Discounts: 3108, - Sales: 56802, - COGS: 20720, - Profit: 36082, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2928`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 58560, - Discounts: 3908, - Sales: 54652, - COGS: 19540, - Profit: 35112, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2912`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 873600, - Discounts: 17730, - Sales: 855870, - COGS: 147750, - Profit: 708120, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3671`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 55065, - Discounts: 3250.5, - Sales: 51814.5, - COGS: 21670, - Profit: 30144.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2778`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 55560, - Discounts: 482, - Sales: 55078, - COGS: 2410, - Profit: 52668, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `405`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 6075, - Discounts: 1021.5, - Sales: 5053.5, - COGS: 6810, - Profit: 1756.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2013`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 30195, - Discounts: 765, - Sales: 29430, - COGS: 5100, - Profit: 24330, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2634`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 39510, - Discounts: 1185, - Sales: 38325, - COGS: 7900, - Profit: 30425, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `4166`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1458100, - Discounts: 22365, - Sales: 1435735, - COGS: 166140, - Profit: 1269595, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `355`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 44375, - Discounts: 19950, - Sales: 24425, - COGS: 191520, - Profit: 167095, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2382`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 714600, - Discounts: 68820, - Sales: 645780, - COGS: 573500, - Profit: 72280, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `4170`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 83400, - Discounts: 482, - Sales: 82918, - COGS: 2410, - Profit: 80508, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `892`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 6244, - Discounts: 1865.5, - Sales: 4378.5, - COGS: 13325, - Profit: 8946.5, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2200`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 275000, - Discounts: 23950, - Sales: 251050, - COGS: 229920, - Profit: 21130, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3389`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1016700, - Discounts: 25590, - Sales: 991110, - COGS: 213250, - Profit: 777860, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `2990`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 373750, - Discounts: 4262.5, - Sales: 369487.5, - COGS: 40920, - Profit: 328567.5, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `4013`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 60195, - Discounts: 961.5, - Sales: 59233.5, - COGS: 6410, - Profit: 52823.5, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `739`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 258650, - Discounts: 98245, - Sales: 160405, - COGS: 729820, - Profit: 569415, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1989`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 596700, - Discounts: 12960, - Sales: 583740, - COGS: 108000, - Profit: 475740, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2991`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 897300, - Discounts: 68820, - Sales: 828480, - COGS: 573500, - Profit: 254980, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `4237`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 63555, - Discounts: 3250.5, - Sales: 60304.5, - COGS: 21670, - Profit: 38634.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1442`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 180250, - Discounts: 31612.5, - Sales: 148637.5, - COGS: 303480, - Profit: 154842.5, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2712`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 949200, - Discounts: 65450, - Sales: 883750, - COGS: 486200, - Profit: 397550, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1508`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 188500, - Discounts: 7237.5, - Sales: 181262.5, - COGS: 69480, - Profit: 111782.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `4245`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1485750, - Discounts: 78400, - Sales: 1407350, - COGS: 582400, - Profit: 824950, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2630`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 789000, - Discounts: 89790, - Sales: 699210, - COGS: 748250, - Profit: 49040, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1182`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 14184, - Discounts: 4224.6, - Sales: 9959.4, - COGS: 10561.5, - Profit: 602.1, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1221`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 24420, - Discounts: 4078, - Sales: 20342, - COGS: 20390, - Profit: 48, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `963`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 11556, - Discounts: 3088.8, - Sales: 8467.2, - COGS: 7722, - Profit: 745.2, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `3243`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1135050, - Discounts: 24745, - Sales: 1110305, - COGS: 183820, - Profit: 926485, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1120`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 16800, - Discounts: 3108, - Sales: 13692, - COGS: 20720, - Profit: 7028, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1174`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 352200, - Discounts: 25590, - Sales: 326610, - COGS: 213250, - Profit: 113360, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `2541`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 30492, - Discounts: 1581.36, - Sales: 28910.64, - COGS: 3594, - Profit: 25316.64, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3246`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 22722, - Discounts: 1949.64, - Sales: 20772.36, - COGS: 12660, - Profit: 8112.36, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1531`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 18372, - Discounts: 1581.36, - Sales: 16790.64, - COGS: 3594, - Profit: 13196.64, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2526`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 37890, - Discounts: 633.6, - Sales: 37256.4, - COGS: 3840, - Profit: 33416.4, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `1136`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 13632, - Discounts: 623.04, - Sales: 13008.96, - COGS: 1416, - Profit: 11592.96, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1983`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 13881, - Discounts: 1215.83, - Sales: 12665.17, - COGS: 7895, - Profit: 4770.17, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `3259`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 39108, - Discounts: 1326.6, - Sales: 37781.4, - COGS: 3015, - Profit: 34766.4, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `3267`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 49005, - Discounts: 5279.17, - Sales: 43725.82, - COGS: 31995, - Profit: 11730.82, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `2454`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 29448, - Discounts: 623.04, - Sales: 28824.96, - COGS: 1416, - Profit: 27408.96, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `2643`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 31716, - Discounts: 2556.84, - Sales: 29159.16, - COGS: 5811, - Profit: 23348.16, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `383`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 134050, - Discounts: 30492, - Sales: 103558, - COGS: 205920, - Profit: 102362, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2801`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 840300, - Discounts: 92763, - Sales: 747537, - COGS: 702750, - Profit: 44787, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1667`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 208375, - Discounts: 33563.75, - Sales: 174811.25, - COGS: 292920, - Profit: 118108.75, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `3539`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 53085, - Discounts: 2574, - Sales: 50511, - COGS: 15600, - Profit: 34911, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `4226`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 29582, - Discounts: 2083.62, - Sales: 27498.38, - COGS: 13530, - Profit: 13968.38, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2220`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 777000, - Discounts: 29491, - Sales: 747509, - COGS: 199160, - Profit: 548349, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `776`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 15520, - Discounts: 6582.4, - Sales: 8937.6, - COGS: 29920, - Profit: 20982.4, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `553`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 8295, - Discounts: 3559.05, - Sales: 4735.95, - COGS: 21570, - Profit: 16834.05, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2107`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 632100, - Discounts: 28809, - Sales: 603291, - COGS: 218250, - Profit: 385041, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2468`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 49360, - Discounts: 2468.4, - Sales: 46891.6, - COGS: 11220, - Profit: 35671.6, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1905`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 666750, - Discounts: 81023.25, - Sales: 585726.75, - COGS: 547170, - Profit: 38556.75, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3658`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 43896, - Discounts: 5314.32, - Sales: 38581.68, - COGS: 12078, - Profit: 26503.68, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `4301`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 51612, - Discounts: 3201.66, - Sales: 48410.34, - COGS: 7276.5, - Profit: 41133.84, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2446`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 48920, - Discounts: 5266.8, - Sales: 43653.2, - COGS: 23940, - Profit: 19713.2, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `4209`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 63135, - Discounts: 3273.6, - Sales: 59861.4, - COGS: 19840, - Profit: 40021.4, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3353`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 419125, - Discounts: 33563.75, - Sales: 385561.25, - COGS: 292920, - Profit: 92641.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1401`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 28020, - Discounts: 6582.4, - Sales: 21437.6, - COGS: 29920, - Profit: 8482.4, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1865`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 559500, - Discounts: 45078, - Sales: 514422, - COGS: 341500, - Profit: 172922, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `463`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 9260, - Discounts: 6171, - Sales: 3089, - COGS: 28050, - Profit: 24961, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `4177`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 62655, - Discounts: 1080.75, - Sales: 61574.25, - COGS: 6550, - Profit: 55024.25, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2523`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 883050, - Discounts: 13244, - Sales: 869806, - COGS: 89440, - Profit: 780366, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1930`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 13510, - Discounts: 1392.16, - Sales: 12117.84, - COGS: 9040, - Profit: 3077.84, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1301`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 15612, - Discounts: 2288.88, - Sales: 13323.12, - COGS: 5202, - Profit: 8121.12, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `4125`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 515625, - Discounts: 7617.5, - Sales: 508007.5, - COGS: 66480, - Profit: 441527.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `607`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 12140, - Discounts: 6457, - Sales: 5683, - COGS: 29350, - Profit: 23667, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `478`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 59750, - Discounts: 43518.75, - Sales: 16231.25, - COGS: 379800, - Profit: 363568.75, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `4489`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 89780, - Discounts: 5783.8, - Sales: 83996.2, - COGS: 26290, - Profit: 57706.2, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1504`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 188000, - Discounts: 19703.75, - Sales: 168296.25, - COGS: 171960, - Profit: 3663.75, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `3763`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 470375, - Discounts: 13021.25, - Sales: 457353.75, - COGS: 113640, - Profit: 343713.75, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2412`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 844200, - Discounts: 13244, - Sales: 830956, - COGS: 89440, - Profit: 741516, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2342`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 35130, - Discounts: 3559.05, - Sales: 31570.95, - COGS: 21570, - Profit: 10000.95, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4451`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 31157, - Discounts: 292.6, - Sales: 30864.4, - COGS: 1900, - Profit: 28964.4, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3796`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1328600, - Discounts: 37212, - Sales: 1291388, - COGS: 230360, - Profit: 1061028, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `2286`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 285750, - Discounts: 36240, - Sales: 249510, - COGS: 289920, - Profit: 40410, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3614`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 451750, - Discounts: 32340, - Sales: 419410, - COGS: 258720, - Profit: 160690, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1716`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 25740, - Discounts: 4840.2, - Sales: 20899.8, - COGS: 26890, - Profit: 5990.2, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1301`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 19515, - Discounts: 1218.6, - Sales: 18296.4, - COGS: 6770, - Profit: 11526.4, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `4175`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1252500, - Discounts: 63828, - Sales: 1188672, - COGS: 443250, - Profit: 745422, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `975`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 6825, - Discounts: 2032.8, - Sales: 4792.2, - COGS: 12100, - Profit: 7307.8, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1154`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 8078, - Discounts: 2296.56, - Sales: 5781.44, - COGS: 13670, - Profit: 7888.56, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1873`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 37460, - Discounts: 4116, - Sales: 33344, - COGS: 17150, - Profit: 16194, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3766`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1129800, - Discounts: 42696, - Sales: 1087104, - COGS: 296500, - Profit: 790604, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3558`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1067400, - Discounts: 125820, - Sales: 941580, - COGS: 873750, - Profit: 67830, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3156`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1104600, - Discounts: 37212, - Sales: 1067388, - COGS: 230360, - Profit: 837028, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2994`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 374250, - Discounts: 32340, - Sales: 341910, - COGS: 258720, - Profit: 83190, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2087`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 41740, - Discounts: 2172, - Sales: 39568, - COGS: 9050, - Profit: 30518, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1056`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 21120, - Discounts: 4116, - Sales: 17004, - COGS: 17150, - Profit: 146, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1353`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 473550, - Discounts: 66948, - Sales: 406602, - COGS: 414440, - Profit: 7838, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `416`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 124800, - Discounts: 48924, - Sales: 75876, - COGS: 339750, - Profit: 263874, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3880`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1164000, - Discounts: 77400, - Sales: 1086600, - COGS: 537500, - Profit: 549100, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `809`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 283150, - Discounts: 50274, - Sales: 232876, - COGS: 311220, - Profit: 78344, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1892`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 28380, - Discounts: 684, - Sales: 27696, - COGS: 3800, - Profit: 23896, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2072`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 41440, - Discounts: 2959.2, - Sales: 38480.8, - COGS: 12330, - Profit: 26150.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3052`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1068200, - Discounts: 58590, - Sales: 1009610, - COGS: 362700, - Profit: 646910, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3121`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1092350, - Discounts: 41412, - Sales: 1050938, - COGS: 256360, - Profit: 794578, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2059`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 41180, - Discounts: 2172, - Sales: 39008, - COGS: 9050, - Profit: 29958, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4254`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 51048, - Discounts: 3036.96, - Sales: 48011.04, - COGS: 6327, - Profit: 41684.04, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1293`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 19395, - Discounts: 6974.1, - Sales: 12420.9, - COGS: 38745, - Profit: 26324.1, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1293`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 452550, - Discounts: 26166, - Sales: 426384, - COGS: 161980, - Profit: 264404, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `230`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 80500, - Discounts: 41412, - Sales: 39088, - COGS: 256360, - Profit: 217272, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1723`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 215375, - Discounts: 35805, - Sales: 179570, - COGS: 286440, - Profit: 106870, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `240`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 4800, - Discounts: 2959.2, - Sales: 1840.8, - COGS: 12330, - Profit: 10489.2, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2571`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 899850, - Discounts: 11340, - Sales: 888510, - COGS: 70200, - Profit: 818310, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1661`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 11627, - Discounts: 2874.06, - Sales: 8752.94, - COGS: 17107.5, - Profit: 8354.56, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `4474`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 31318, - Discounts: 2296.56, - Sales: 29021.44, - COGS: 13670, - Profit: 15351.44, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `833`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 12495, - Discounts: 4586.4, - Sales: 7908.6, - COGS: 25480, - Profit: 17571.4, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `674`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 13480, - Discounts: 6051.6, - Sales: 7428.4, - COGS: 25215, - Profit: 17786.6, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `778`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 9336, - Discounts: 3831.84, - Sales: 5504.16, - COGS: 7983, - Profit: 2478.84, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1457`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 29140, - Discounts: 3674.4, - Sales: 25465.6, - COGS: 15310, - Profit: 10155.6, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3158`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 22106, - Discounts: 1252.44, - Sales: 20853.56, - COGS: 7455, - Profit: 13398.56, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `4095`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 81900, - Discounts: 3674.4, - Sales: 78225.6, - COGS: 15310, - Profit: 62915.6, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `3170`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 38040, - Discounts: 3975.84, - Sales: 34064.16, - COGS: 8283, - Profit: 25781.16, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `493`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 7395, - Discounts: 5005.65, - Sales: 2389.35, - COGS: 25670, - Profit: 23280.65, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `3286`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 49290, - Discounts: 5005.65, - Sales: 44284.35, - COGS: 25670, - Profit: 18614.35, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `3563`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1247050, - Discounts: 41996.5, - Sales: 1205053.5, - COGS: 239980, - Profit: 965073.5, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `4109`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1438150, - Discounts: 81445, - Sales: 1356705, - COGS: 465400, - Profit: 891305, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `3653`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 73060, - Discounts: 1149.2, - Sales: 71910.8, - COGS: 4420, - Profit: 67490.8, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2203`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 771050, - Discounts: 44703.75, - Sales: 726346.25, - COGS: 255450, - Profit: 470896.25, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2924`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 20468, - Discounts: 1181.18, - Sales: 19286.82, - COGS: 6490, - Profit: 12796.82, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2650`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 31800, - Discounts: 942.24, - Sales: 30857.76, - COGS: 1812, - Profit: 29045.76, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1194`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 23880, - Discounts: 5863, - Sales: 18017, - COGS: 22550, - Profit: 4533, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `3366`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 67320, - Discounts: 3247.4, - Sales: 64072.6, - COGS: 12490, - Profit: 51582.6, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1325`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 9275, - Discounts: 1309.04, - Sales: 7965.97, - COGS: 7192.5, - Profit: 773.47, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4243`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1272900, - Discounts: 31473, - Sales: 1241427, - COGS: 201750, - Profit: 1039677, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2887`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 57740, - Discounts: 6866.6, - Sales: 50873.4, - COGS: 26410, - Profit: 24463.4, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3839`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 76780, - Discounts: 7040.8, - Sales: 69739.2, - COGS: 27080, - Profit: 42659.2, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1863`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 652050, - Discounts: 119756, - Sales: 532294, - COGS: 684320, - Profit: 152026, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2858`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 357250, - Discounts: 25723.75, - Sales: 331526.25, - COGS: 189960, - Profit: 141566.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2868`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 34416, - Discounts: 890.76, - Sales: 33525.24, - COGS: 1713, - Profit: 31812.24, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3805`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 26635, - Discounts: 2453.36, - Sales: 24181.64, - COGS: 13480, - Profit: 10701.64, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3914`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 58710, - Discounts: 3051.75, - Sales: 55658.25, - COGS: 15650, - Profit: 40008.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `524`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 10480, - Discounts: 3247.4, - Sales: 7232.6, - COGS: 12490, - Profit: 5257.4, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3095`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1083250, - Discounts: 16243.5, - Sales: 1067006.5, - COGS: 92820, - Profit: 974186.5, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2410`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 28920, - Discounts: 1580.28, - Sales: 27339.72, - COGS: 3039, - Profit: 24300.72, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `4263`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 63945, - Discounts: 7795.13, - Sales: 56149.88, - COGS: 39975, - Profit: 16174.88, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2239`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 783650, - Discounts: 119756, - Sales: 663894, - COGS: 684320, - Profit: 20426, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `569`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 3983, - Discounts: 1082.9, - Sales: 2900.1, - COGS: 5950, - Profit: 3049.9, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3889`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 46668, - Discounts: 942.24, - Sales: 45725.76, - COGS: 1812, - Profit: 43913.76, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `1378`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 20670, - Discounts: 1287, - Sales: 19383, - COGS: 6600, - Profit: 12783, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2253`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 27036, - Discounts: 639.6, - Sales: 26396.4, - COGS: 1230, - Profit: 25166.4, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3202`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 960600, - Discounts: 101595, - Sales: 859005, - COGS: 651250, - Profit: 207755, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3835`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 46020, - Discounts: 1580.28, - Sales: 44439.72, - COGS: 3039, - Profit: 41400.72, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `2487`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 310875, - Discounts: 25723.75, - Sales: 285151.25, - COGS: 189960, - Profit: 95191.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4428`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 66420, - Discounts: 3051.75, - Sales: 63368.25, - COGS: 15650, - Profit: 47718.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1200`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 150000, - Discounts: 26958.75, - Sales: 123041.25, - COGS: 199080, - Profit: 76038.75, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2953`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 20671, - Discounts: 1082.9, - Sales: 19588.1, - COGS: 5950, - Profit: 13638.1, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1453`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 17436, - Discounts: 639.6, - Sales: 16796.4, - COGS: 1230, - Profit: 15566.4, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `865`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 10380, - Discounts: 2761.2, - Sales: 7618.8, - COGS: 5310, - Profit: 2308.8, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1072`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 21440, - Discounts: 7221.2, - Sales: 14218.8, - COGS: 25790, - Profit: 11571.2, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1737`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 34740, - Discounts: 4880.4, - Sales: 29859.6, - COGS: 17430, - Profit: 12429.6, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1535`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 10745, - Discounts: 2936.08, - Sales: 7808.92, - COGS: 14980, - Profit: 7171.08, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2532`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 17724, - Discounts: 274.4, - Sales: 17449.6, - COGS: 1400, - Profit: 16049.6, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1765`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 12355, - Discounts: 287.14, - Sales: 12067.86, - COGS: 1465, - Profit: 10602.86, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1567`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 10969, - Discounts: 2936.08, - Sales: 8032.92, - COGS: 14980, - Profit: 6947.08, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2640`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 39600, - Discounts: 583.8, - Sales: 39016.2, - COGS: 2780, - Profit: 36236.2, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3079`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 61580, - Discounts: 6798.4, - Sales: 54781.6, - COGS: 24280, - Profit: 30501.6, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4130`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 61950, - Discounts: 3710.7, - Sales: 58239.3, - COGS: 17670, - Profit: 40569.3, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2938`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 35256, - Discounts: 2340.24, - Sales: 32915.76, - COGS: 4179, - Profit: 28736.76, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3080`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 21560, - Discounts: 274.4, - Sales: 21285.6, - COGS: 1400, - Profit: 19885.6, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1530`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 18360, - Discounts: 2340.24, - Sales: 16019.76, - COGS: 4179, - Profit: 11840.76, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `3537`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 42444, - Discounts: 3385.2, - Sales: 39058.8, - COGS: 6045, - Profit: 33013.8, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `2021`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 606300, - Discounts: 33642, - Sales: 572658, - COGS: 200250, - Profit: 372408, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1804`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 225500, - Discounts: 17902.5, - Sales: 207597.5, - COGS: 122760, - Profit: 84837.5, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1014`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 304200, - Discounts: 62832, - Sales: 241368, - COGS: 374000, - Profit: 132632, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2913`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 873900, - Discounts: 42420, - Sales: 831480, - COGS: 252500, - Profit: 578980, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `763`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 11445, - Discounts: 3177.3, - Sales: 8267.7, - COGS: 15130, - Profit: 6862.3, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1425`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 21375, - Discounts: 4830, - Sales: 16545, - COGS: 23000, - Profit: 6455, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `4357`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 544625, - Discounts: 49367.5, - Sales: 495257.5, - COGS: 338520, - Profit: 156737.5, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `2138`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 748300, - Discounts: 109147.5, - Sales: 639152.5, - COGS: 579150, - Profit: 60002.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3825`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1338750, - Discounts: 58751, - Sales: 1279999, - COGS: 311740, - Profit: 968259, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `3393`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1187550, - Discounts: 9800, - Sales: 1177750, - COGS: 52000, - Profit: 1125750, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `2215`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 15505, - Discounts: 380.24, - Sales: 15124.76, - COGS: 1940, - Profit: 13184.76, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2278`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 15946, - Discounts: 1692.46, - Sales: 14253.54, - COGS: 8635, - Profit: 5618.54, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `403`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 6045, - Discounts: 4830, - Sales: 1215, - COGS: 23000, - Profit: 21785, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `289`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 5780, - Discounts: 728, - Sales: 5052, - COGS: 2600, - Profit: 2452, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `749`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 11235, - Discounts: 5187, - Sales: 6048, - COGS: 24700, - Profit: 18652, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `372`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 5580, - Discounts: 3660.3, - Sales: 1919.7, - COGS: 17430, - Profit: 15510.3, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3781`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 45372, - Discounts: 4895.52, - Sales: 40476.48, - COGS: 8742, - Profit: 31734.48, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1785`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 12495, - Discounts: 1696.38, - Sales: 10798.62, - COGS: 8655, - Profit: 2143.62, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4029`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1410150, - Discounts: 34300, - Sales: 1375850, - COGS: 182000, - Profit: 1193850, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2813`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 33756, - Discounts: 3732.96, - Sales: 30023.04, - COGS: 6666, - Profit: 23357.04, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2150`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 752500, - Discounts: 57673, - Sales: 694827, - COGS: 306020, - Profit: 388807, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2093`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 732550, - Discounts: 94178, - Sales: 638372, - COGS: 499720, - Profit: 138652, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `4391`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 548875, - Discounts: 27562.5, - Sales: 521312.5, - COGS: 189000, - Profit: 332312.5, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2695`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 53900, - Discounts: 1696.8, - Sales: 52203.2, - COGS: 6060, - Profit: 46143.2, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1337`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 401100, - Discounts: 103320, - Sales: 297780, - COGS: 615000, - Profit: 317220, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2621`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 786300, - Discounts: 11298, - Sales: 775002, - COGS: 67250, - Profit: 707752, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3735`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1120500, - Discounts: 106512, - Sales: 1013988, - COGS: 634000, - Profit: 379988, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `4320`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 30240, - Discounts: 2844.94, - Sales: 27395.06, - COGS: 14515, - Profit: 12880.06, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2828`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 848400, - Discounts: 106722, - Sales: 741678, - COGS: 635250, - Profit: 106428, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `2586`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 775800, - Discounts: 11298, - Sales: 764502, - COGS: 67250, - Profit: 697252, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1248`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 374400, - Discounts: 62832, - Sales: 311568, - COGS: 374000, - Profit: 62432, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `4035`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 1210500, - Discounts: 42420, - Sales: 1168080, - COGS: 252500, - Profit: 915580, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `359`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 125650, - Discounts: 62769, - Sales: 62881, - COGS: 333060, - Profit: 270179, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `3926`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1177800, - Discounts: 37296, - Sales: 1140504, - COGS: 222000, - Profit: 918504, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `4247`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 530875, - Discounts: 49770, - Sales: 481105, - COGS: 341280, - Profit: 139825, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2695`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 32340, - Discounts: 4158, - Sales: 28182, - COGS: 7425, - Profit: 20757, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1104`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 16560, - Discounts: 3660.3, - Sales: 12899.7, - COGS: 17430, - Profit: 4530.3, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1449`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 17388, - Discounts: 4895.52, - Sales: 12492.48, - COGS: 8742, - Profit: 3750.48, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1131`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 7917, - Discounts: 1696.38, - Sales: 6220.62, - COGS: 8655, - Profit: 2434.38, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1468`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 10276, - Discounts: 1692.46, - Sales: 8583.54, - COGS: 8635, - Profit: 51.46, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1272`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 19080, - Discounts: 3927, - Sales: 15153, - COGS: 18700, - Profit: 3547, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1403`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 175375, - Discounts: 22012.5, - Sales: 153362.5, - COGS: 140880, - Profit: 12482.5, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2161`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 270125, - Discounts: 51881.25, - Sales: 218243.75, - COGS: 332040, - Profit: 113796.25, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1937`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 242125, - Discounts: 20343.75, - Sales: 221781.25, - COGS: 130200, - Profit: 91581.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2879`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 863700, - Discounts: 24570, - Sales: 839130, - COGS: 136500, - Profit: 702630, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1330`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 26600, - Discounts: 3474, - Sales: 23126, - COGS: 11580, - Profit: 11546, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2426`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 36390, - Discounts: 3631.5, - Sales: 32758.5, - COGS: 16140, - Profit: 16618.5, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2033`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 14231, - Discounts: 2661.75, - Sales: 11569.25, - COGS: 12675, - Profit: 1105.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2029`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 710150, - Discounts: 149677.5, - Sales: 560472.5, - COGS: 741260, - Profit: 180787.5, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1049`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 15735, - Discounts: 5757.75, - Sales: 9977.25, - COGS: 25590, - Profit: 15612.75, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1062`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 21240, - Discounts: 801, - Sales: 20439, - COGS: 2670, - Profit: 17769, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2509`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 313625, - Discounts: 20343.75, - Sales: 293281.25, - COGS: 130200, - Profit: 163081.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1743`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 26145, - Discounts: 2643.75, - Sales: 23501.25, - COGS: 11750, - Profit: 11751.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3418`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1196300, - Discounts: 105367.5, - Sales: 1090932.5, - COGS: 521820, - Profit: 569112.5, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1751`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 612850, - Discounts: 112927.5, - Sales: 499922.5, - COGS: 559260, - Profit: 59337.5, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3228`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 38736, - Discounts: 1645.2, - Sales: 37090.8, - COGS: 2742, - Profit: 34348.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1105`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 22100, - Discounts: 879, - Sales: 21221, - COGS: 2930, - Profit: 18291, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2778`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 33336, - Discounts: 900, - Sales: 32436, - COGS: 1500, - Profit: 30936, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1173`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 17595, - Discounts: 6358.5, - Sales: 11236.5, - COGS: 28260, - Profit: 17023.5, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3160`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 395000, - Discounts: 12431.25, - Sales: 382568.75, - COGS: 79560, - Profit: 303008.75, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `4322`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1296600, - Discounts: 115830, - Sales: 1180770, - COGS: 643500, - Profit: 537270, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1901`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 237625, - Discounts: 45712.5, - Sales: 191912.5, - COGS: 292560, - Profit: 100647.5, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2980`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 35760, - Discounts: 1645.2, - Sales: 34114.8, - COGS: 2742, - Profit: 31372.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4068`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 81360, - Discounts: 2596.5, - Sales: 78763.5, - COGS: 8655, - Profit: 70108.5, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2105`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 31575, - Discounts: 1107, - Sales: 30468, - COGS: 4920, - Profit: 25548, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1647`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 32940, - Discounts: 801, - Sales: 32139, - COGS: 2670, - Profit: 29469, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `235`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 3525, - Discounts: 2643.75, - Sales: 881.25, - COGS: 11750, - Profit: 10868.75, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3617`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 452125, - Discounts: 55387.5, - Sales: 396737.5, - COGS: 354480, - Profit: 42257.5, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2106`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 263250, - Discounts: 10350, - Sales: 252900, - COGS: 66240, - Profit: 186660, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2351`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 47020, - Discounts: 879, - Sales: 46141, - COGS: 2930, - Profit: 43211, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1897`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 569100, - Discounts: 111375, - Sales: 457725, - COGS: 618750, - Profit: 161025, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `647`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 194100, - Discounts: 24570, - Sales: 169530, - COGS: 136500, - Profit: 33030, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `3621`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 25347, - Discounts: 1436.4, - Sales: 23910.6, - COGS: 6840, - Profit: 17070.6, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3221`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 22547, - Discounts: 759.15, - Sales: 21787.85, - COGS: 3615, - Profit: 18172.85, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `493`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 5916, - Discounts: 3250.8, - Sales: 2665.2, - COGS: 5418, - Profit: 2752.8, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `501`,ManufacturingPrice: 15,SalePrice: 23,GrossSales: 26440,Discounts: 0,Sales: 26440,COGS: 16185,Profit: 11255,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1372`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 27440,Discounts: 0,Sales: 27440,COGS: 16185,Profit: 11255,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2762`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 55240,Discounts: 0,Sales: 55240,COGS: 13210,Profit: 42030,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1464`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21960,Discounts: 0,Sales: 21960,COGS: 21780,Profit: 180,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `719`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 10785,Discounts: 0,Sales: 10785,COGS: 8880,Profit: 1905,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3576`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53640,Discounts: 0,Sales: 53640,COGS: 24700,Profit: 28940,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4422`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1547700,Discounts: 0,Sales: 1547700,COGS: 393380,Profit: 1154320,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3649`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 54735,Discounts: 0,Sales: 54735,COGS: 9210,Profit: 45525,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4172`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 50064,Discounts: 0,Sales: 50064,COGS: 7554,Profit: 42510,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3841`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 76820,Discounts: 0,Sales: 76820,COGS: 18990,Profit: 57830,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3726`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 44712,Discounts: 0,Sales: 44712,COGS: 4635,Profit: 40077,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2625`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 39375,Discounts: 0,Sales: 39375,COGS: 24700,Profit: 14675,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1958`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 244750,Discounts: 0,Sales: 244750,COGS: 319860,Profit: 75110,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3271`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 981300,Discounts: 0,Sales: 981300,COGS: 239500,Profit: 741800,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2091`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 14637,Discounts: 0,Sales: 14637,COGS: 10730,Profit: 3907,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2825`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 42375,Discounts: 0,Sales: 42375,COGS: 6150,Profit: 36225,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2513`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 50260,Discounts: 0,Sales: 50260,COGS: 2920,Profit: 47340,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `883`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 13245,Discounts: 0,Sales: 13245,COGS: 9740,Profit: 3505,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 25044,Discounts: 0,Sales: 25044,COGS: 7554,Profit: 17490,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2563`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 897050,Discounts: 0,Sales: 897050,COGS: 261560,Profit: 635490,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2846`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34152,Discounts: 0,Sales: 34152,COGS: 1101,Profit: 33051,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `997`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 6979,Discounts: 0,Sales: 6979,COGS: 4415,Profit: 2564,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2290`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 34350,Discounts: 0,Sales: 34350,COGS: 24720,Profit: 9630,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2133`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14931,Discounts: 0,Sales: 14931,COGS: 5715,Profit: 9216,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3617`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 72340,Discounts: 0,Sales: 72340,COGS: 18170,Profit: 54170,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1266`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 443100,Discounts: 0,Sales: 443100,COGS: 393380,Profit: 49720,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `894`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6258,Discounts: 0,Sales: 6258,COGS: 7465,Profit: 1207,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2725`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 340625,Discounts: 0,Sales: 340625,COGS: 216480,Profit: 124145,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3061`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 36732,Discounts: 0,Sales: 36732,COGS: 6483,Profit: 30249,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3958`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1385300,Discounts: 0,Sales: 1385300,COGS: 261560,Profit: 1123740,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3920`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 47040,Discounts: 0,Sales: 47040,COGS: 4635,Profit: 42405,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3381`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422625,Discounts: 0,Sales: 422625,COGS: 338520,Profit: 84105,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4307`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1292100,Discounts: 0,Sales: 1292100,COGS: 500250,Profit: 791850,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `878`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10536,Discounts: 0,Sales: 10536,COGS: 8514,Profit: 2022,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `496`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 7440,Discounts: 0,Sales: 7440,COGS: 21780,Profit: 14340,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3367`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 50505,Discounts: 0,Sales: 50505,COGS: 8880,Profit: 41625,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2055`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 616500,Discounts: 0,Sales: 616500,COGS: 537750,Profit: 78750,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4041`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 80820,Discounts: 0,Sales: 80820,COGS: 18170,Profit: 62650,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `3237`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1132950,Discounts: 0,Sales: 1132950,COGS: 715000,Profit: 417950,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `630`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 7560,Discounts: 0,Sales: 7560,COGS: 5859,Profit: 1701,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4210`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 526250,Discounts: 0,Sales: 526250,COGS: 506340,Profit: 19910,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1127`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 22540,Discounts: 0,Sales: 22540,COGS: 18990,Profit: 3550,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3438`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 24066,Discounts: 0,Sales: 24066,COGS: 8430,Profit: 15636,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2015`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 24180,Discounts: 0,Sales: 24180,COGS: 6423,Profit: 17757,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2534`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 17738,Discounts: 0,Sales: 17738,COGS: 5715,Profit: 12023,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1384`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 20760,Discounts: 0,Sales: 20760,COGS: 6150,Profit: 14610,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3561`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 24927,Discounts: 276.15,Sales: 24650.85,COGS: 19725,Profit: 4925.85,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1823`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27345,Discounts: 344.4,Sales: 27000.6,COGS: 22960,Profit: 4040.6,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19565,Discounts: 72.1,Sales: 19492.9,COGS: 5150,Profit: 14342.9,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `457`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3199,Discounts: 44.73,Sales: 3154.27,COGS: 3195,Profit: 40.73,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3785`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26495,Discounts: 92.82,Sales: 26402.18,COGS: 6630,Profit: 19772.18,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `748`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 8976,Discounts: 222.96,Sales: 8753.04,COGS: 5574,Profit: 3179.04,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1021`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 357350,Discounts: 4235,Sales: 353115,COGS: 314600,Profit: 38515,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2076`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 14532,Discounts: 177.03,Sales: 14354.97,COGS: 12645,Profit: 1709.97,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `4316`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51792,Discounts: 173.4,Sales: 51618.6,COGS: 4335,Profit: 47283.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4174`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50088,Discounts: 320.52,Sales: 49767.48,COGS: 8013,Profit: 41754.48,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3736`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1307600,Discounts: 4889.5,Sales: 1302710.5,COGS: 363220,Profit: 939490.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1914`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 669900,Discounts: 7542.5,Sales: 662357.5,COGS: 560300,Profit: 102057.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2742`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 41130,Discounts: 332.1,Sales: 40797.9,COGS: 22140,Profit: 18657.9,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1499`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 449700,Discounts: 6903,Sales: 442797,COGS: 575250,Profit: 132453,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 75440,Discounts: 275.1,Sales: 75164.9,COGS: 13755,Profit: 61409.9,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1112`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 7784,Discounts: 128.1,Sales: 7655.9,COGS: 9150,Profit: 1494.1,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2368`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 35520,Discounts: 227.1,Sales: 35292.9,COGS: 15140,Profit: 20152.9,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 11102,Discounts: 314.48,Sales: 10787.52,COGS: 22462.5,Profit: 11674.98,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3386`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 423250,Discounts: 908.75,Sales: 422341.25,COGS: 87240,Profit: 335101.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `852`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 106500,Discounts: 983.75,Sales: 105516.25,COGS: 94440,Profit: 11076.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2783`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 347875,Discounts: 2278.75,Sales: 345596.25,COGS: 218760,Profit: 126836.25,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2684`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 40260,Discounts: 112.05,Sales: 40147.95,COGS: 7470,Profit: 32677.95,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4083`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1224900,Discounts: 8715,Sales: 1216185,COGS: 726250,Profit: 489935,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2816`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 985600,Discounts: 7542.5,Sales: 978057.5,COGS: 560300,Profit: 417757.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4294`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 85880,Discounts: 772.8,Sales: 85107.2,COGS: 38640,Profit: 46467.2,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 25.34,Sales: 19966.66,COGS: 1810,Profit: 18156.66,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1407`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 175875,Discounts: 1153.75,Sales: 174721.25,COGS: 110760,Profit: 63961.25,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1265`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 8855,Discounts: 18.41,Sales: 8836.59,COGS: 1315,Profit: 7521.59,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3892`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1362200,Discounts: 3302.25,Sales: 1358897.75,COGS: 245310,Profit: 1113587.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3068`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 383500,Discounts: 908.75,Sales: 382591.25,COGS: 87240,Profit: 295351.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2181`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 272625,Discounts: 983.75,Sales: 271641.25,COGS: 94440,Profit: 177201.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1356`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 406800,Discounts: 2958,Sales: 403842,COGS: 246500,Profit: 177201.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1814`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 634900,Discounts: 4889.5,Sales: 630010.5,COGS: 363220,Profit: 266790.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1495`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 186875,Discounts: 2180,Sales: 184695,COGS: 209280,Profit: 24585,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1463`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 182875,Discounts: 1856.25,Sales: 181018.75,COGS: 89100,Profit: 91918.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `215`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 2580,Discounts: 310.8,Sales: 2269.2,COGS: 3885,Profit: 1615.8,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `566`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 198100,Discounts: 19964,Sales: 178136,COGS: 741520,Profit: 563384,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3255`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 39060,Discounts: 274.08,Sales: 38785.92,COGS: 3426,Profit: 35359.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15440,Discounts: 626.4,Sales: 14813.6,COGS: 15660,Profit: 846.4,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1135`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13620,Discounts: 165.6,Sales: 13454.4,COGS: 2070,Profit: 11384.4,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 17895,Discounts: 708.9,Sales: 17186.1,COGS: 23630,Profit: 6443.9,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2530`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 759000,Discounts: 5508,Sales: 753492,COGS: 229500,Profit: 523992,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3451`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1035300,Discounts: 10368,Sales: 1024932,COGS: 432000,Profit: 592932,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3059`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 36708,Discounts: 274.08,Sales: 36433.92,COGS: 3426,Profit: 33007.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3957`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 494625,Discounts: 1655,Sales: 492970,COGS: 79440,Profit: 413530,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3444`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 41328,Discounts: 310.8,Sales: 41017.2,COGS: 3885,Profit: 37132.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3154`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 946200,Discounts: 11496,Sales: 934704,COGS: 479000,Profit: 455704,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4108`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1437800,Discounts: 19964,Sales: 1417836,COGS: 741520,Profit: 676316,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3760`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 470000,Discounts: 6822.5,Sales: 463177.5,COGS: 327480,Profit: 135697.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2334`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28008,Discounts: 253.2,Sales: 27754.8,COGS: 3165,Profit: 24589.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `580`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 6960,Discounts: 260.16,Sales: 6699.84,COGS: 3252,Profit: 3447.84,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2610`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 52200,Discounts: 626.4,Sales: 51573.6,COGS: 15660,Profit: 35913.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1459`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 510650,Discounts: 20139,Sales: 490511,COGS: 748020,Profit: 257509,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3774`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 45288,Discounts: 253.2,Sales: 45034.8,COGS: 3165,Profit: 41869.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2572`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 30864,Discounts: 260.16,Sales: 30603.84,COGS: 3252,Profit: 27351.84,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `320`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 40000,Discounts: 1655,Sales: 38345,COGS: 79440,Profit: 41095,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3275`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1146250,Discounts: 20139,Sales: 1126111,COGS: 748020,Profit: 378091,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3582`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 447750,Discounts: 6822.5,Sales: 440927.5,COGS: 327480,Profit: 113447.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4056`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1216800,Discounts: 1554,Sales: 1215246,COGS: 64750,Profit: 1150496,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2144`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 643200,Discounts: 6606,Sales: 636594,COGS: 275250,Profit: 361344,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3502`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 437750,Discounts: 5690,Sales: 432060,COGS: 273120,Profit: 158940,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `679`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 13580,Discounts: 494.4,Sales: 13085.6,COGS: 12360,Profit: 725.6,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2351`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 47020,Discounts: 376.4,Sales: 46643.6,COGS: 9410,Profit: 37233.6,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2043`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 612900,Discounts: 11496,Sales: 601404,COGS: 479000,Profit: 122404,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3565`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 445625,Discounts: 15913.13,Sales: 429711.88,COGS: 509220,Profit: 79508.13,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1401`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 28020,Discounts: 1548,Sales: 26472,COGS: 25800,Profit: 672,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2077`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 623100,Discounts: 6201,Sales: 616899,COGS: 172250,Profit: 444649,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 43716,Discounts: 700.92,Sales: 43015.08,COGS: 5841,Profit: 37174.08,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2960`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20720,Discounts: 411.18,Sales: 20308.82,COGS: 9790,Profit: 10518.82,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1201`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 14412,Discounts: 684.36,Sales: 13727.64,COGS: 5703,Profit: 8024.64,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2321`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 16247,Discounts: 114.24,Sales: 16132.76,COGS: 2720,Profit: 13412.76,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3972`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 496500,Discounts: 4826.25,Sales: 491673.75,COGS: 154440,Profit: 337233.75,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3878`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 484750,Discounts: 6397.5,Sales: 478352.5,COGS: 204720,Profit: 273632.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2278`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 683400,Discounts: 21910.5,Sales: 661489.5,COGS: 608625,Profit: 52864.5,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1075`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 134375,Discounts: 6652.5,Sales: 127722.5,COGS: 212880,Profit: 85157.5,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4050`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 48600,Discounts: 684.36,Sales: 47915.64,COGS: 5703,Profit: 42212.64,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3035`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 910500,Discounts: 6201,Sales: 904299,COGS: 172250,Profit: 732049,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3636`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 454500,Discounts: 5887.5,Sales: 448612.5,COGS: 188400,Profit: 260212.5,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1379`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 16548,Discounts: 493.02,Sales: 16054.98,COGS: 4108.5,Profit: 11946.48,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4492`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 561500,Discounts: 7533.75,Sales: 553966.25,COGS: 241080,Profit: 312886.25,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1744`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 218000,Discounts: 4826.25,Sales: 213173.75,COGS: 154440,Profit: 58733.75,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2341`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 292625,Discounts: 6397.5,Sales: 286227.5,COGS: 204720,Profit: 81507.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 479375,Discounts: 7533.75,Sales: 471841.25,COGS: 241080,Profit: 230761.25,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1161`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 348300,Discounts: 25596,Sales: 322704,COGS: 711000,Profit: 388296,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `876`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10512,Discounts: 689.76,Sales: 9822.24,COGS: 5748,Profit: 4074.24,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1705`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 213125,Discounts: 5887.5,Sales: 207237.5,COGS: 188400,Profit: 18837.5,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1805`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 541500,Discounts: 16866,Sales: 524634,COGS: 468500,Profit: 56134,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `389`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 136150,Discounts: 17241,Sales: 118909,COGS: 426920,Profit: 308011,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1459`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 29180,Discounts: 498.6,Sales: 28681.4,COGS: 8310,Profit: 20371.4,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4236`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 84720,Discounts: 2310.3,Sales: 82409.7,COGS: 38505,Profit: 43904.7,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3627`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 43524,Discounts: 892.44,Sales: 42631.56,COGS: 7437,Profit: 35194.56,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1756`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 26340,Discounts: 1218.6,Sales: 25121.4,COGS: 20310,Profit: 4811.4,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `307`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 4605,Discounts: 1218.6,Sales: 3386.4,COGS: 20310,Profit: 16923.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1222`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 366600,Discounts: 24252,Sales: 342348,COGS: 505250,Profit: 162902,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `489`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 171150,Discounts: 3836,Sales: 167314,COGS: 71240,Profit: 96074,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4133`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 61995,Discounts: 1180.2,Sales: 60814.8,COGS: 19670,Profit: 41144.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2743`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 822900,Discounts: 22308,Sales: 800592,COGS: 464750,Profit: 335842,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `4460`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1338000,Discounts: 24252,Sales: 1313748,COGS: 505250,Profit: 808498,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1232`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 154000,Discounts: 5690,Sales: 148310,COGS: 136560,Profit: 11750,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 18102,Discounts: 1190.28,Sales: 16911.72,COGS: 21255,Profit: 4343.28,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1332`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 166500,Discounts: 3975,Sales: 162525,COGS: 95400,Profit: 67125,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4487`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1346100,Discounts: 16974,Sales: 1329126,COGS: 353625,Profit: 975501,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3862`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1158600,Discounts: 35016,Sales: 1123584,COGS: 729500,Profit: 394084,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1765`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 617750,Discounts: 48300,Sales: 569450,COGS: 897000,Profit: 327550,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3533`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 441625,Discounts: 14940,Sales: 426685,COGS: 358560,Profit: 68125,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2016`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 30240,Discounts: 130.8,Sales: 30109.2,COGS: 2180,Profit: 27929.2,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58760,Discounts: 1659.2,Sales: 57100.8,COGS: 20740,Profit: 36360.8,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3352`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67040,Discounts: 844.8,Sales: 66195.2,COGS: 10560,Profit: 55635.2,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2430`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 850500,Discounts: 3836,Sales: 846664,COGS: 71240,Profit: 775424,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `535`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 66875,Discounts: 5690,Sales: 61185,COGS: 136560,Profit: 75375,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1523`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 18276,Discounts: 703.2,Sales: 17572.8,COGS: 4395,Profit: 13177.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1782`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 623700,Discounts: 30478,Sales: 593222,COGS: 566020,Profit: 27202,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `347`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 4164,Discounts: 415.68,Sales: 3748.32,COGS: 2598,Profit: 1150.32,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3509`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1228150,Discounts: 30478,Sales: 1197672,COGS: 566020,Profit: 631652,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2943`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1030050,Discounts: 26110,Sales: 1003940,COGS: 484900,Profit: 519040,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4037`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 504625,Discounts: 5370,Sales: 499255,COGS: 128880,Profit: 370375,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4146`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1451100,Discounts: 26698,Sales: 1424402,COGS: 495820,Profit: 928582,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `725`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 5075,Discounts: 480.2,Sales: 4594.8,COGS: 6860,Profit: 2265.2,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 16275,Discounts: 941.15,Sales: 15333.85,COGS: 13445,Profit: 1888.85,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `675`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 8100,Discounts: 1458.6,Sales: 6641.4,COGS: 7293,Profit: 651.6,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2990`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35880,Discounts: 1458.6,Sales: 34421.4,COGS: 7293,Profit: 27128.4,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1072`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 7504,Discounts: 941.15,Sales: 6562.85,COGS: 13445,Profit: 6882.15,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1048`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7336,Discounts: 589.05,Sales: 6746.95,COGS: 8415,Profit: 1668.05,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `469`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 5628,Discounts: 673.8,Sales: 4954.2,COGS: 3369,Profit: 1585.2,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4240`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50880,Discounts: 1119,Sales: 49761,COGS: 5595,Profit: 44166,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1976`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 23712,Discounts: 669.6,Sales: 23042.4,COGS: 3348,Profit: 19694.4,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1984`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39680,Discounts: 1563,Sales: 38117,COGS: 15630,Profit: 22487,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `480`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 144000,Discounts: 14865,Sales: 129135,COGS: 247750,Profit: 118615,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1205`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 18075,Discounts: 2093.25,Sales: 15981.75,COGS: 27910,Profit: 11928.25,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2480`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17360,Discounts: 199.5,Sales: 17160.5,COGS: 2850,Profit: 14310.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2926`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 20482,Discounts: 870.45,Sales: 19611.55,COGS: 12435,Profit: 7176.55,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3210`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1123500,Discounts: 24228.75,Sales: 1099271.25,COGS: 359970,Profit: 739301.25,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3221`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 402625,Discounts: 22668.75,Sales: 379956.25,COGS: 435240,Profit: 55283.75,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1127`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13524,Discounts: 1405.2,Sales: 12118.8,COGS: 7026,Profit: 5092.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1610`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 32200,Discounts: 1303,Sales: 30897,COGS: 13030,Profit: 17867,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4100`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 512500,Discounts: 18700,Sales: 493800,COGS: 359040,Profit: 134760,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1012`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 126500,Discounts: 14906.25,Sales: 111593.75,COGS: 286200,Profit: 174606.25,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3337`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1001100,Discounts: 24105,Sales: 976995,COGS: 401750,Profit: 575245,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3955`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27685,Discounts: 814.45,Sales: 26870.55,COGS: 11635,Profit: 15235.55,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4347`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1304100,Discounts: 14865,Sales: 1289235,COGS: 247750,Profit: 1041485,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1548`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 541800,Discounts: 10535,Sales: 531265,COGS: 156520,Profit: 374745,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2153`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 32295,Discounts: 1965,Sales: 30330,COGS: 26200,Profit: 4130,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4126`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 515750,Discounts: 5381.25,Sales: 510368.75,COGS: 103320,Profit: 407048.75,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3376`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67520,Discounts: 2663,Sales: 64857,COGS: 26630,Profit: 38227,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2244`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 33660,Discounts: 416.25,Sales: 33243.75,COGS: 5550,Profit: 27693.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1360`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20400,Discounts: 2145.75,Sales: 18254.25,COGS: 28610,Profit: 10355.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `279`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 34875,Discounts: 5043.75,Sales: 29831.25,COGS: 96840,Profit: 67008.75,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2521`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 882350,Discounts: 10535,Sales: 871815,COGS: 156520,Profit: 715295,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2433`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 48660,Discounts: 2832,Sales: 45828,COGS: 28320,Profit: 17508,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1738`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 34760,Discounts: 1579,Sales: 33181,COGS: 15790,Profit: 17391,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1106`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 138250,Discounts: 5381.25,Sales: 132868.75,COGS: 103320,Profit: 29548.75,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `213`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 63900,Discounts: 18750,Sales: 45150,COGS: 312500,Profit: 267350,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2929`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 58580,Discounts: 2663,Sales: 55917,COGS: 26630,Profit: 29287,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2389`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 16723,Discounts: 199.5,Sales: 16523.5,COGS: 2850,Profit: 13673.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3086`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21602,Discounts: 870.45,Sales: 20731.55,COGS: 12435,Profit: 8296.55,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `745`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 260750,Discounts: 23625,Sales: 237125,COGS: 351000,Profit: 113875,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1266`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 443100,Discounts: 9660,Sales: 433440,COGS: 143520,Profit: 289920,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4287`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1286100,Discounts: 18750,Sales: 1267350,COGS: 312500,Profit: 954850,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 47895,Discounts: 3420.9,Sales: 44474.1,COGS: 38010,Profit: 6464.1,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1967`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39340,Discounts: 1341,Sales: 37999,COGS: 11175,Profit: 26824,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `631`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 9465,Discounts: 2559.6,Sales: 6905.4,COGS: 28440,Profit: 21534.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3469`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 41628,Discounts: 404.64,Sales: 41223.36,COGS: 1686,Profit: 39537.36,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3215`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 48225,Discounts: 1827,Sales: 46398,COGS: 20300,Profit: 26098,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1959`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 685650,Discounts: 20580,Sales: 665070,COGS: 254800,Profit: 410270,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2181`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 763350,Discounts: 30660,Sales: 732690,COGS: 379600,Profit: 353090,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2205`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 26460,Discounts: 1960.56,Sales: 24499.44,COGS: 8169,Profit: 16330.44,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1890`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 661500,Discounts: 31416,Sales: 630084,COGS: 388960,Profit: 241124,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2417`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 302125,Discounts: 7140,Sales: 294985,COGS: 114240,Profit: 180745,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1158`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 144750,Discounts: 20662.5,Sales: 124087.5,COGS: 330600,Profit: 206512.5,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `803`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 12045,Discounts: 1377,Sales: 10668,COGS: 15300,Profit: 4632,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3705`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1296750,Discounts: 31416,Sales: 1265334,COGS: 388960,Profit: 876374,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `589`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 4123,Discounts: 629.16,Sales: 3493.84,COGS: 7490,Profit: 3996.16,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3999`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 59985,Discounts: 2559.6,Sales: 57425.4,COGS: 28440,Profit: 28985.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4256`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 29792,Discounts: 629.16,Sales: 29162.84,COGS: 7490,Profit: 21672.84,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2160`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 270000,Discounts: 14906.25,Sales: 255093.75,COGS: 238500,Profit: 16593.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `466`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 163100,Discounts: 35259,Sales: 127841,COGS: 436540,Profit: 308699,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1478`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 22170,Discounts: 1978.2,Sales: 20191.8,COGS: 21980,Profit: 1788.2,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3798`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 56970,Discounts: 1568.7,Sales: 55401.3,COGS: 17430,Profit: 37971.3,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `447`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 6705,Discounts: 1037.7,Sales: 5667.3,COGS: 11530,Profit: 5862.7,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `745`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 14900,Discounts: 1201.2,Sales: 13698.8,COGS: 10010,Profit: 3688.8,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1732`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 12124,Discounts: 559.86,Sales: 11564.14,COGS: 6665,Profit: 4899.14,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1759`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 26385,Discounts: 1037.7,Sales: 25347.3,COGS: 11530,Profit: 13817.3,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `338`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 4056,Discounts: 610.68,Sales: 3445.32,COGS: 2181,Profit: 1264.32,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3911`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 46932,Discounts: 1582.56,Sales: 45349.44,COGS: 5652,Profit: 39697.44,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `4473`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 53676,Discounts: 1965.6,Sales: 51710.4,COGS: 7020,Profit: 44690.4,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `383`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 4596,Discounts: 1967.28,Sales: 2628.72,COGS: 7026,Profit: 4397.28,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1062`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 15930,Discounts: 1325.1,Sales: 14604.9,COGS: 12620,Profit: 1984.9,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4083`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 28581,Discounts: 556.15,Sales: 28024.85,COGS: 5675,Profit: 22349.85,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3974`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 27818,Discounts: 268.03,Sales: 27549.97,COGS: 2735,Profit: 24814.97,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3723`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 26061,Discounts: 775.18,Sales: 25285.82,COGS: 7910,Profit: 17375.82,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2435`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 29220,Discounts: 1460.34,Sales: 27759.66,COGS: 5215.5,Profit: 22544.16,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1763`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 12341,Discounts: 775.18,Sales: 11565.82,COGS: 7910,Profit: 3655.82,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4473`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31311,Discounts: 556.15,Sales: 30754.85,COGS: 5675,Profit: 25079.85,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1246`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 436100,Discounts: 43144.5,Sales: 392955.5,COGS: 457860,Profit: 64904.5,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1615`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 484500,Discounts: 9408,Sales: 475092,COGS: 112000,Profit: 363092,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `749`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 224700,Discounts: 45801,Sales: 178899,COGS: 545250,Profit: 366351,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1318`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 26360,Discounts: 2766.4,Sales: 23593.6,COGS: 19760,Profit: 3833.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2882`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 864600,Discounts: 45801,Sales: 818799,COGS: 545250,Profit: 273549,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2484`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 745200,Discounts: 35742,Sales: 709458,COGS: 425500,Profit: 283958,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3169`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 950700,Discounts: 9408,Sales: 941292,COGS: 112000,Profit: 829292,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 510000,Discounts: 30738.75,Sales: 479261.25,COGS: 421560,Profit: 57701.25,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3943`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 59145,Discounts: 2206.05,Sales: 56938.95,COGS: 21010,Profit: 35928.95,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `253`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5060,Discounts: 2149,Sales: 2911,COGS: 15350,Profit: 12439,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `799`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 239700,Discounts: 34839,Sales: 204861,COGS: 414750,Profit: 209889,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3942`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 78840,Discounts: 852.6,Sales: 77987.4,COGS: 6090,Profit: 71897.4,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2498`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 312250,Discounts: 18261.25,Sales: 293988.75,COGS: 250440,Profit: 43548.75,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2517`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 50340,Discounts: 2766.4,Sales: 47573.6,COGS: 19760,Profit: 27813.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1145`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 343500,Discounts: 28812,Sales: 314688,COGS: 343000,Profit: 28312,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3814`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 45768,Discounts: 2725.38,Sales: 43042.62,COGS: 9733.5,Profit: 33309.12,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1188`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 356400,Discounts: 20139,Sales: 336261,COGS: 239750,Profit: 96511,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2233`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 669900,Discounts: 57687,Sales: 612213,COGS: 686750,Profit: 74537,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `421`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 52625,Discounts: 14393.75,Sales: 38231.25,COGS: 197400,Profit: 159168.75,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `269`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 94150,Discounts: 70462,Sales: 23688,COGS: 747760,Profit: 724072,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `952`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19040,Discounts: 1565.2,Sales: 17474.8,COGS: 11180,Profit: 6294.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2964`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 889200,Discounts: 28812,Sales: 860388,COGS: 343000,Profit: 517388,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1505`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10535,Discounts: 273.28,Sales: 10261.72,COGS: 2440,Profit: 7821.72,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1678`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 33560,Discounts: 2051.2,Sales: 31508.8,COGS: 12820,Profit: 18688.8,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4249`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 29743,Discounts: 143.92,Sales: 29599.08,COGS: 1285,Profit: 28314.08,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1677`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 33540,Discounts: 2051.2,Sales: 31488.8,COGS: 12820,Profit: 18668.8,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3051`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 381375,Discounts: 15400,Sales: 365975,COGS: 184800,Profit: 181175,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3372`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 50580,Discounts: 588,Sales: 49992,COGS: 4900,Profit: 45092,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1686`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 590100,Discounts: 38136,Sales: 551964,COGS: 354120,Profit: 197844,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3086`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 46290,Discounts: 3001.2,Sales: 43288.8,COGS: 25010,Profit: 18278.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4150`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 83000,Discounts: 1132.8,Sales: 81867.2,COGS: 7080,Profit: 74787.2,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3027`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 60540,Discounts: 1032,Sales: 59508,COGS: 6450,Profit: 53058,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4359`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1307700,Discounts: 37488,Sales: 1270212,COGS: 390500,Profit: 879712,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1589`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 23835,Discounts: 853.2,Sales: 22981.8,COGS: 7110,Profit: 15871.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2679`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 334875,Discounts: 11140,Sales: 323735,COGS: 133680,Profit: 190055,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 23807,Discounts: 705.04,Sales: 23101.96,COGS: 6295,Profit: 16806.96,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2815`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19705,Discounts: 613.2,Sales: 19091.8,COGS: 5475,Profit: 13616.8,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2964`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 59280,Discounts: 2185.6,Sales: 57094.4,COGS: 13660,Profit: 43434.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4173`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1251900,Discounts: 59040,Sales: 1192860,COGS: 615000,Profit: 577860,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1157`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 8099,Discounts: 379.68,Sales: 7719.32,COGS: 3390,Profit: 4329.32,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3065`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21455,Discounts: 894.88,Sales: 20560.12,COGS: 7990,Profit: 12570.12,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 81600,Discounts: 3094.4,Sales: 78505.6,COGS: 19340,Profit: 59165.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1713`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34260,Discounts: 4788.8,Sales: 29471.2,COGS: 29930,Profit: 458.8,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1691`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 591850,Discounts: 38136,Sales: 553714,COGS: 354120,Profit: 199594,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2305`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27660,Discounts: 574.08,Sales: 27085.92,COGS: 1794,Profit: 25291.92,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3401`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 23807,Discounts: 1627.92,Sales: 22179.08,COGS: 14535,Profit: 7644.08,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2288`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 16016,Discounts: 1309.28,Sales: 14706.72,COGS: 11690,Profit: 3016.72,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4086`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1225800,Discounts: 15240,Sales: 1210560,COGS: 158750,Profit: 1051810,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2651`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 927850,Discounts: 16086,Sales: 911764,COGS: 149370,Profit: 762394,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3971`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27797,Discounts: 1309.28,Sales: 26487.72,COGS: 11690,Profit: 14797.72,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2512`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 879200,Discounts: 10668,Sales: 868532,COGS: 99060,Profit: 769472,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 960750,Discounts: 11816,Sales: 948934,COGS: 109720,Profit: 839214,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1903`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 570900,Discounts: 51216,Sales: 519684,COGS: 533500,Profit: 13816,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2914`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 58280,Discounts: 1132.8,Sales: 57147.2,COGS: 7080,Profit: 50067.2,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1889`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 13223,Discounts: 1627.92,Sales: 11595.08,COGS: 14535,Profit: 2939.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1466`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 29320,Discounts: 2185.6,Sales: 27134.4,COGS: 13660,Profit: 13474.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `887`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 266100,Discounts: 59040,Sales: 207060,COGS: 615000,Profit: 407940,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `395`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 7900,Discounts: 2432,Sales: 5468,COGS: 15200,Profit: 9732,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1693`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 25395,Discounts: 853.2,Sales: 24541.8,COGS: 7110,Profit: 17431.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2649`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 794700,Discounts: 15240,Sales: 779460,COGS: 158750,Profit: 620710,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3608`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 72160,Discounts: 698.4,Sales: 71461.6,COGS: 4365,Profit: 67096.6,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1073`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 321900,Discounts: 29538,Sales: 292362,COGS: 273500,Profit: 18862,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2167`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 650100,Discounts: 102667.5,Sales: 547432.5,COGS: 950625,Profit: 403192.5,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1319`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 461650,Discounts: 52479,Sales: 409171,COGS: 433160,Profit: 23989,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1252`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 15024,Discounts: 2506.68,Sales: 12517.32,COGS: 6963,Profit: 5554.32,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1156`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 144500,Discounts: 31466.25,Sales: 113033.75,COGS: 335640,Profit: 222606.25,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1153`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 345900,Discounts: 69255,Sales: 276645,COGS: 641250,Profit: 364605,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2720`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 952000,Discounts: 76135.5,Sales: 875864.5,COGS: 628420,Profit: 247444.5,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 54870,Discounts: 4961.25,Sales: 49908.75,COGS: 36750,Profit: 13158.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2950`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 885000,Discounts: 29538,Sales: 855462,COGS: 273500,Profit: 581962,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1821`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27315,Discounts: 1656.45,Sales: 25658.55,COGS: 12270,Profit: 13388.55,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1127`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 338100,Discounts: 35748,Sales: 302352,COGS: 331000,Profit: 28648,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `862`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 107750,Discounts: 31466.25,Sales: 76283.75,COGS: 335640,Profit: 259356.25,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3805`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 57075,Discounts: 330.75,Sales: 56744.25,COGS: 2450,Profit: 54294.25,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1415`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 424500,Discounts: 102424.5,Sales: 322075.5,COGS: 948375,Profit: 626299.5,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2231`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 780850,Discounts: 41170.5,Sales: 739679.5,COGS: 339820,Profit: 399859.5,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3649`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 456125,Discounts: 6378.75,Sales: 449746.25,COGS: 68040,Profit: 381706.25,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2948`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 368500,Discounts: 23737.5,Sales: 344762.5,COGS: 253200,Profit: 91562.5,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3395`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1188250,Discounts: 39973.5,Sales: 1148276.5,COGS: 329940,Profit: 818336.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2650`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31800,Discounts: 2112.48,Sales: 29687.52,COGS: 5868,Profit: 23819.52,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `585`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 175500,Discounts: 71793,Sales: 103707,COGS: 664750,Profit: 561043,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1316`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 460600,Discounts: 42572.25,Sales: 418027.75,COGS: 351390,Profit: 66637.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4459`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 53508,Discounts: 950.4,Sales: 52557.6,COGS: 2640,Profit: 49917.6,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2711`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 813300,Discounts: 50409,Sales: 762891,COGS: 466750,Profit: 296141,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3613`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 54195,Discounts: 1656.45,Sales: 52538.55,COGS: 12270,Profit: 40268.55,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1847`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 230875,Discounts: 9866.25,Sales: 221008.75,COGS: 105240,Profit: 115768.75,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2996`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1048600,Discounts: 65236.5,Sales: 983363.5,COGS: 538460,Profit: 444903.5,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2838`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 993300,Discounts: 39973.5,Sales: 953326.5,COGS: 329940,Profit: 623386.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1536`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 30720,Discounts: 3049.2,Sales: 27670.8,COGS: 16940,Profit: 10730.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1291`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 25820,Discounts: 1193.4,Sales: 24626.6,COGS: 6630,Profit: 17996.6,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1213`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 8491,Discounts: 515.97,Sales: 7975.03,COGS: 4095,Profit: 3880.03,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2370`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 28440,Discounts: 1706.4,Sales: 26733.6,COGS: 4740,Profit: 21993.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1979`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 13853,Discounts: 328.23,Sales: 13524.77,COGS: 2605,Profit: 10919.77,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2879`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57580,Discounts: 1751.4,Sales: 55828.6,COGS: 9730,Profit: 46098.6,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1707`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34140,Discounts: 1868.4,Sales: 32271.6,COGS: 10380,Profit: 21891.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2933`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 20531,Discounts: 226.8,Sales: 20304.2,COGS: 1800,Profit: 18504.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1014`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 12168,Discounts: 2124.36,Sales: 10043.64,COGS: 5901,Profit: 4142.64,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `693`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 10395,Discounts: 3547.8,Sales: 6847.2,COGS: 26280,Profit: 19432.8,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3741`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26187,Discounts: 226.8,Sales: 25960.2,COGS: 1800,Profit: 24160.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3995`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27965,Discounts: 328.23,Sales: 27636.77,COGS: 2605,Profit: 25031.77,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `953`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19060,Discounts: 1868.4,Sales: 17191.6,COGS: 10380,Profit: 6811.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2530`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 37950,Discounts: 2201.18,Sales: 35748.82,COGS: 16305,Profit: 19443.82,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1372`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 27440,Discounts: 0,Sales: 27440,COGS: 16185,Profit: 11255,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2762`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 55240,Discounts: 0,Sales: 55240,COGS: 13210,Profit: 42030,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1464`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21960,Discounts: 0,Sales: 21960,COGS: 21780,Profit: 180,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `719`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 10785,Discounts: 0,Sales: 10785,COGS: 8880,Profit: 1905,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3576`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53640,Discounts: 0,Sales: 53640,COGS: 24700,Profit: 28940,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4422`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1547700,Discounts: 0,Sales: 1547700,COGS: 393380,Profit: 1154320,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3649`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 54735,Discounts: 0,Sales: 54735,COGS: 9210,Profit: 45525,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4172`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 50064,Discounts: 0,Sales: 50064,COGS: 7554,Profit: 42510,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3841`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 76820,Discounts: 0,Sales: 76820,COGS: 18990,Profit: 57830,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3726`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 44712,Discounts: 0,Sales: 44712,COGS: 4635,Profit: 40077,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2625`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 39375,Discounts: 0,Sales: 39375,COGS: 24700,Profit: 14675,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1958`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 244750,Discounts: 0,Sales: 244750,COGS: 319860,Profit: 75110,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3271`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 981300,Discounts: 0,Sales: 981300,COGS: 239500,Profit: 741800,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2091`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 14637,Discounts: 0,Sales: 14637,COGS: 10730,Profit: 3907,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2530`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 316250,Discounts: 0,Sales: 316250,COGS: 41400,Profit: 274850,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2825`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 42375,Discounts: 0,Sales: 42375,COGS: 6150,Profit: 36225,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2513`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 50260,Discounts: 0,Sales: 50260,COGS: 2920,Profit: 47340,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `883`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 13245,Discounts: 0,Sales: 13245,COGS: 9740,Profit: 3505,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 25044,Discounts: 0,Sales: 25044,COGS: 7554,Profit: 17490,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2563`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 897050,Discounts: 0,Sales: 897050,COGS: 261560,Profit: 635490,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2846`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34152,Discounts: 0,Sales: 34152,COGS: 1101,Profit: 33051,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `997`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 6979,Discounts: 0,Sales: 6979,COGS: 4415,Profit: 2564,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3421`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 51315,Discounts: 0,Sales: 51315,COGS: 5490,Profit: 45825,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Marchesa`,UnitsSold: `70000`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 1050000,Discounts: 0,Sales: 1050000,COGS: 5490,Profit: 1044510,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2291`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 687300,Discounts: 0,Sales: 687300,COGS: 197000,Profit: 490300,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2290`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 34350,Discounts: 0,Sales: 34350,COGS: 24720,Profit: 9630,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2133`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14931,Discounts: 0,Sales: 14931,COGS: 5715,Profit: 9216,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3475`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1216250,Discounts: 0,Sales: 1216250,COGS: 448500,Profit: 767750,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3686`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 44232,Discounts: 0,Sales: 44232,COGS: 2736,Profit: 41496,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3319`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 49785,Discounts: 0,Sales: 49785,COGS: 21520,Profit: 28265,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3617`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 72340,Discounts: 0,Sales: 72340,COGS: 18170,Profit: 54170,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1266`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 443100,Discounts: 0,Sales: 443100,COGS: 393380,Profit: 49720,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `894`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6258,Discounts: 0,Sales: 6258,COGS: 7465,Profit: 1207,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2725`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 340625,Discounts: 0,Sales: 340625,COGS: 216480,Profit: 124145,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3061`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 36732,Discounts: 0,Sales: 36732,COGS: 6483,Profit: 30249,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3958`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1385300,Discounts: 0,Sales: 1385300,COGS: 261560,Profit: 1123740,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3920`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 47040,Discounts: 0,Sales: 47040,COGS: 4635,Profit: 42405,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3381`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422625,Discounts: 0,Sales: 422625,COGS: 338520,Profit: 84105,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1094`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 136750,Discounts: 0,Sales: 136750,COGS: 41400,Profit: 95350,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4307`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1292100,Discounts: 0,Sales: 1292100,COGS: 500250,Profit: 791850,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `878`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10536,Discounts: 0,Sales: 10536,COGS: 8514,Profit: 2022,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `496`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 7440,Discounts: 0,Sales: 7440,COGS: 21780,Profit: 14340,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3367`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 50505,Discounts: 0,Sales: 50505,COGS: 8880,Profit: 41625,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3880`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1358000,Discounts: 0,Sales: 1358000,COGS: 397020,Profit: 960980,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2055`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 616500,Discounts: 0,Sales: 616500,COGS: 537750,Profit: 78750,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4041`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 80820,Discounts: 0,Sales: 80820,COGS: 18170,Profit: 62650,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `3237`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1132950,Discounts: 0,Sales: 1132950,COGS: 715000,Profit: 417950,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `630`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 7560,Discounts: 0,Sales: 7560,COGS: 5859,Profit: 1701,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4210`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 526250,Discounts: 0,Sales: 526250,COGS: 506340,Profit: 19910,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1127`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 22540,Discounts: 0,Sales: 22540,COGS: 18990,Profit: 3550,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3438`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 24066,Discounts: 0,Sales: 24066,COGS: 8430,Profit: 15636,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2015`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 24180,Discounts: 0,Sales: 24180,COGS: 6423,Profit: 17757,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2534`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 17738,Discounts: 0,Sales: 17738,COGS: 5715,Profit: 12023,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1384`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 20760,Discounts: 0,Sales: 20760,COGS: 6150,Profit: 14610,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3561`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 24927,Discounts: 276.15,Sales: 24650.85,COGS: 19725,Profit: 4925.85,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1823`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27345,Discounts: 344.4,Sales: 27000.6,COGS: 22960,Profit: 4040.6,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19565,Discounts: 72.1,Sales: 19492.9,COGS: 5150,Profit: 14342.9,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `457`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3199,Discounts: 44.73,Sales: 3154.27,COGS: 3195,Profit: 40.73,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3785`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26495,Discounts: 92.82,Sales: 26402.18,COGS: 6630,Profit: 19772.18,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `748`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 8976,Discounts: 222.96,Sales: 8753.04,COGS: 5574,Profit: 3179.04,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1021`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 357350,Discounts: 4235,Sales: 353115,COGS: 314600,Profit: 38515,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2076`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 14532,Discounts: 177.03,Sales: 14354.97,COGS: 12645,Profit: 1709.97,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `4316`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51792,Discounts: 173.4,Sales: 51618.6,COGS: 4335,Profit: 47283.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2654`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 331750,Discounts: 412.5,Sales: 331337.5,COGS: 39600,Profit: 291737.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4174`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50088,Discounts: 320.52,Sales: 49767.48,COGS: 8013,Profit: 41754.48,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1675`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 20100,Discounts: 91.92,Sales: 20008.08,COGS: 2298,Profit: 17710.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1572`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 471600,Discounts: 1482,Sales: 470118,COGS: 123500,Profit: 346618,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3736`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1307600,Discounts: 4889.5,Sales: 1302710.5,COGS: 363220,Profit: 939490.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1914`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 669900,Discounts: 7542.5,Sales: 662357.5,COGS: 560300,Profit: 102057.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2742`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 41130,Discounts: 332.1,Sales: 40797.9,COGS: 22140,Profit: 18657.9,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1499`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 449700,Discounts: 6903,Sales: 442797,COGS: 575250,Profit: 132453,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 75440,Discounts: 275.1,Sales: 75164.9,COGS: 13755,Profit: 61409.9,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1112`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 7784,Discounts: 128.1,Sales: 7655.9,COGS: 9150,Profit: 1494.1,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1723`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 516900,Discounts: 7494,Sales: 509406,COGS: 624500,Profit: 115094,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `423`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 52875,Discounts: 828.75,Sales: 52046.25,COGS: 79560,Profit: 27513.75,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2368`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 35520,Discounts: 227.1,Sales: 35292.9,COGS: 15140,Profit: 20152.9,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 11102,Discounts: 314.48,Sales: 10787.52,COGS: 22462.5,Profit: 11674.98,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3386`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 423250,Discounts: 908.75,Sales: 422341.25,COGS: 87240,Profit: 335101.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `852`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 106500,Discounts: 983.75,Sales: 105516.25,COGS: 94440,Profit: 11076.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2783`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 347875,Discounts: 2278.75,Sales: 345596.25,COGS: 218760,Profit: 126836.25,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2684`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 40260,Discounts: 112.05,Sales: 40147.95,COGS: 7470,Profit: 32677.95,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4393`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 52716,Discounts: 91.92,Sales: 52624.08,COGS: 2298,Profit: 50326.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4083`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1224900,Discounts: 8715,Sales: 1216185,COGS: 726250,Profit: 489935,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2816`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 985600,Discounts: 7542.5,Sales: 978057.5,COGS: 560300,Profit: 417757.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4294`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 85880,Discounts: 772.8,Sales: 85107.2,COGS: 38640,Profit: 46467.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 25.34,Sales: 19966.66,COGS: 1810,Profit: 18156.66,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1407`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 175875,Discounts: 1153.75,Sales: 174721.25,COGS: 110760,Profit: 63961.25,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3850`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 481250,Discounts: 828.75,Sales: 480421.25,COGS: 79560,Profit: 400861.25,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 146.44,Sales: 19845.56,COGS: 10460,Profit: 9385.56,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1265`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 8855,Discounts: 18.41,Sales: 8836.59,COGS: 1315,Profit: 7521.59,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3892`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1362200,Discounts: 3302.25,Sales: 1358897.75,COGS: 245310,Profit: 1113587.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3068`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 383500,Discounts: 908.75,Sales: 382591.25,COGS: 87240,Profit: 295351.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2181`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 272625,Discounts: 983.75,Sales: 271641.25,COGS: 94440,Profit: 177201.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1356`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 406800,Discounts: 2958,Sales: 403842,COGS: 246500,Profit: 157342,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2545`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 763500,Discounts: 1482,Sales: 762018,COGS: 123500,Profit: 638518,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1814`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 634900,Discounts: 4889.5,Sales: 630010.5,COGS: 363220,Profit: 266790.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1495`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 186875,Discounts: 2180,Sales: 184695,COGS: 209280,Profit: 24585,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1154`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 13848,Discounts: 238.68,Sales: 13609.32,COGS: 5967,Profit: 7642.32,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `4180`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 62700,Discounts: 48.15,Sales: 62651.85,COGS: 3210,Profit: 59441.85,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1463`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 182875,Discounts: 1856.25,Sales: 181018.75,COGS: 89100,Profit: 91918.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `215`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 2580,Discounts: 310.8,Sales: 2269.2,COGS: 3885,Profit: 1615.8,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4099`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 1229700,Discounts: 1284,Sales: 1228416,COGS: 53500,Profit: 1174916,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2660`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 18620,Discounts: 300.3,Sales: 18319.7,COGS: 10725,Profit: 7594.7,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `566`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 198100,Discounts: 19964,Sales: 178136,COGS: 741520,Profit: 563384,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3255`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 39060,Discounts: 274.08,Sales: 38785.92,COGS: 3426,Profit: 35359.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15440,Discounts: 626.4,Sales: 14813.6,COGS: 15660,Profit: 846.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1135`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13620,Discounts: 165.6,Sales: 13454.4,COGS: 2070,Profit: 11384.4,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3826`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 478250,Discounts: 4150,Sales: 474100,COGS: 199200,Profit: 274900,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 17895,Discounts: 708.9,Sales: 17186.1,COGS: 23630,Profit: 6443.9,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2530`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 759000,Discounts: 5508,Sales: 753492,COGS: 229500,Profit: 523992,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3451`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1035300,Discounts: 10368,Sales: 1024932,COGS: 432000,Profit: 592932,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3059`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 36708,Discounts: 274.08,Sales: 36433.92,COGS: 3426,Profit: 33007.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3957`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 494625,Discounts: 1655,Sales: 492970,COGS: 79440,Profit: 413530,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3444`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 41328,Discounts: 310.8,Sales: 41017.2,COGS: 3885,Profit: 37132.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4388`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 548500,Discounts: 2022.5,Sales: 546477.5,COGS: 97080,Profit: 449397.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2106`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 263250,Discounts: 5362.5,Sales: 257887.5,COGS: 257400,Profit: 487.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `799`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 9588,Discounts: 428.4,Sales: 9159.6,COGS: 5355,Profit: 3804.6,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3154`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 946200,Discounts: 11496,Sales: 934704,COGS: 479000,Profit: 455704,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4108`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1437800,Discounts: 19964,Sales: 1417836,COGS: 741520,Profit: 676316,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3760`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 470000,Discounts: 6822.5,Sales: 463177.5,COGS: 327480,Profit: 135697.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `377`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 5655,Discounts: 577.5,Sales: 5077.5,COGS: 19250,Profit: 14172.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2110`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14770,Discounts: 281.82,Sales: 14488.18,COGS: 10065,Profit: 4423.18,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2334`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28008,Discounts: 253.2,Sales: 27754.8,COGS: 3165,Profit: 24589.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `580`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 6960,Discounts: 260.16,Sales: 6699.84,COGS: 3252,Profit: 3447.84,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2610`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 52200,Discounts: 626.4,Sales: 51573.6,COGS: 15660,Profit: 35913.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1598`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 559300,Discounts: 20762,Sales: 538538,COGS: 771160,Profit: 232622,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1459`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 510650,Discounts: 20139,Sales: 490511,COGS: 748020,Profit: 257509,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3284`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 410500,Discounts: 2022.5,Sales: 408477.5,COGS: 97080,Profit: 311397.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1197`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 149625,Discounts: 5362.5,Sales: 144262.5,COGS: 257400,Profit: 113137.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3774`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 45288,Discounts: 253.2,Sales: 45034.8,COGS: 3165,Profit: 41869.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2303`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 46060,Discounts: 217.6,Sales: 45842.4,COGS: 5440,Profit: 40402.4,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2572`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 30864,Discounts: 260.16,Sales: 30603.84,COGS: 3252,Profit: 27351.84,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `320`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 40000,Discounts: 1655,Sales: 38345,COGS: 79440,Profit: 41095,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2126`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 637800,Discounts: 1284,Sales: 636516,COGS: 53500,Profit: 583016,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3275`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1146250,Discounts: 20139,Sales: 1126111,COGS: 748020,Profit: 378091,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3582`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 447750,Discounts: 6822.5,Sales: 440927.5,COGS: 327480,Profit: 113447.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `783`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 274050,Discounts: 1862,Sales: 272188,COGS: 69160,Profit: 203028,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1202`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 420700,Discounts: 13580,Sales: 407120,COGS: 504400,Profit: 97280,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4056`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1216800,Discounts: 1554,Sales: 1215246,COGS: 64750,Profit: 1150496,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2144`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 643200,Discounts: 6606,Sales: 636594,COGS: 275250,Profit: 361344,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3502`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 437750,Discounts: 5690,Sales: 432060,COGS: 273120,Profit: 158940,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1397`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 488950,Discounts: 20762,Sales: 468188,COGS: 771160,Profit: 302972,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `679`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 13580,Discounts: 494.4,Sales: 13085.6,COGS: 12360,Profit: 725.6,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2351`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 47020,Discounts: 376.4,Sales: 46643.6,COGS: 9410,Profit: 37233.6,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2043`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 612900,Discounts: 11496,Sales: 601404,COGS: 479000,Profit: 122404,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3565`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 445625,Discounts: 15913.13,Sales: 429711.88,COGS: 509220,Profit: 79508.13,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1401`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 28020,Discounts: 1548,Sales: 26472,COGS: 25800,Profit: 672,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2077`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 623100,Discounts: 6201,Sales: 616899,COGS: 172250,Profit: 444649,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 43716,Discounts: 700.92,Sales: 43015.08,COGS: 5841,Profit: 37174.08,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1105`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 13260,Discounts: 326.88,Sales: 12933.12,COGS: 2724,Profit: 10209.12,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2960`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20720,Discounts: 411.18,Sales: 20308.82,COGS: 9790,Profit: 10518.82,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1201`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 14412,Discounts: 684.36,Sales: 13727.64,COGS: 5703,Profit: 8024.64,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2321`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 16247,Discounts: 114.24,Sales: 16132.76,COGS: 2720,Profit: 13412.76,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3640`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1274000,Discounts: 18868.5,Sales: 1255131.5,COGS: 467220,Profit: 787911.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3972`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 496500,Discounts: 4826.25,Sales: 491673.75,COGS: 154440,Profit: 337233.75,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3878`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 484750,Discounts: 6397.5,Sales: 478352.5,COGS: 204720,Profit: 273632.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2278`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 683400,Discounts: 21910.5,Sales: 661489.5,COGS: 608625,Profit: 52864.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1075`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 134375,Discounts: 6652.5,Sales: 127722.5,COGS: 212880,Profit: 85157.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4050`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 48600,Discounts: 684.36,Sales: 47915.64,COGS: 5703,Profit: 42212.64,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3035`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 910500,Discounts: 6201,Sales: 904299,COGS: 172250,Profit: 732049,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3636`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 454500,Discounts: 5887.5,Sales: 448612.5,COGS: 188400,Profit: 260212.5,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1379`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 16548,Discounts: 493.02,Sales: 16054.98,COGS: 4108.5,Profit: 11946.48,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4492`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 561500,Discounts: 7533.75,Sales: 553966.25,COGS: 241080,Profit: 312886.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `764`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11460,Discounts: 875.25,Sales: 10584.75,COGS: 19450,Profit: 8865.25,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1744`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 218000,Discounts: 4826.25,Sales: 213173.75,COGS: 154440,Profit: 58733.75,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2341`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 292625,Discounts: 6397.5,Sales: 286227.5,COGS: 204720,Profit: 81507.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 479375,Discounts: 7533.75,Sales: 471841.25,COGS: 241080,Profit: 230761.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1161`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 348300,Discounts: 25596,Sales: 322704,COGS: 711000,Profit: 388296,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `876`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10512,Discounts: 689.76,Sales: 9822.24,COGS: 5748,Profit: 4074.24,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1705`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 213125,Discounts: 5887.5,Sales: 207237.5,COGS: 188400,Profit: 18837.5,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1805`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 541500,Discounts: 16866,Sales: 524634,COGS: 468500,Profit: 56134,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `389`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 136150,Discounts: 17241,Sales: 118909,COGS: 426920,Profit: 308011,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 41175,Discounts: 875.25,Sales: 40299.75,COGS: 19450,Profit: 20849.75,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1459`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 29180,Discounts: 498.6,Sales: 28681.4,COGS: 8310,Profit: 20371.4,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3938`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27566,Discounts: 369.6,Sales: 27196.4,COGS: 8800,Profit: 18396.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4236`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 84720,Discounts: 2310.3,Sales: 82409.7,COGS: 38505,Profit: 43904.7,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3627`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 43524,Discounts: 892.44,Sales: 42631.56,COGS: 7437,Profit: 35194.56,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1756`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 26340,Discounts: 1218.6,Sales: 25121.4,COGS: 20310,Profit: 4811.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `307`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 4605,Discounts: 1218.6,Sales: 3386.4,COGS: 20310,Profit: 16923.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4489`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 67335,Discounts: 1356.6,Sales: 65978.4,COGS: 22610,Profit: 43368.4,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2167`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 43340,Discounts: 588.8,Sales: 42751.2,COGS: 7360,Profit: 35391.2,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1137`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 7959,Discounts: 798.28,Sales: 7160.72,COGS: 14255,Profit: 7094.28,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1222`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 366600,Discounts: 24252,Sales: 342348,COGS: 505250,Profit: 162902,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `489`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 171150,Discounts: 3836,Sales: 167314,COGS: 71240,Profit: 96074,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4133`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 61995,Discounts: 1180.2,Sales: 60814.8,COGS: 19670,Profit: 41144.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2743`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 822900,Discounts: 22308,Sales: 800592,COGS: 464750,Profit: 335842,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3699`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 25893,Discounts: 798.28,Sales: 25094.72,COGS: 14255,Profit: 10839.72,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `4460`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1338000,Discounts: 24252,Sales: 1313748,COGS: 505250,Profit: 808498,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1232`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 154000,Discounts: 5690,Sales: 148310,COGS: 136560,Profit: 11750,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 18102,Discounts: 1190.28,Sales: 16911.72,COGS: 21255,Profit: 4343.28,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1332`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 166500,Discounts: 3975,Sales: 162525,COGS: 95400,Profit: 67125,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4487`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1346100,Discounts: 16974,Sales: 1329126,COGS: 353625,Profit: 975501,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3862`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1158600,Discounts: 35016,Sales: 1123584,COGS: 729500,Profit: 394084,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1765`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 617750,Discounts: 48300,Sales: 569450,COGS: 897000,Profit: 327550,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3533`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 441625,Discounts: 14940,Sales: 426685,COGS: 358560,Profit: 68125,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2016`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 30240,Discounts: 130.8,Sales: 30109.2,COGS: 2180,Profit: 27929.2,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58760,Discounts: 1659.2,Sales: 57100.8,COGS: 20740,Profit: 36360.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3352`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67040,Discounts: 844.8,Sales: 66195.2,COGS: 10560,Profit: 55635.2,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4409`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 66135,Discounts: 402.6,Sales: 65732.4,COGS: 6710,Profit: 59022.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3323`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 49845,Discounts: 908.4,Sales: 48936.6,COGS: 15140,Profit: 33796.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2430`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 850500,Discounts: 3836,Sales: 846664,COGS: 71240,Profit: 775424,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `535`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 66875,Discounts: 5690,Sales: 61185,COGS: 136560,Profit: 75375,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1523`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 18276,Discounts: 703.2,Sales: 17572.8,COGS: 4395,Profit: 13177.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3631`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 72620,Discounts: 2116.8,Sales: 70503.2,COGS: 26460,Profit: 44043.2,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1782`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 623700,Discounts: 30478,Sales: 593222,COGS: 566020,Profit: 27202,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `347`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 4164,Discounts: 415.68,Sales: 3748.32,COGS: 2598,Profit: 1150.32,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `4147`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1451450,Discounts: 4886,Sales: 1446564,COGS: 90740,Profit: 1355824,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3509`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1228150,Discounts: 30478,Sales: 1197672,COGS: 566020,Profit: 631652,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2774`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 41610,Discounts: 908.4,Sales: 40701.6,COGS: 15140,Profit: 25561.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2943`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1030050,Discounts: 26110,Sales: 1003940,COGS: 484900,Profit: 519040,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4037`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 504625,Discounts: 5370,Sales: 499255,COGS: 128880,Profit: 370375,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4146`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1451100,Discounts: 26698,Sales: 1424402,COGS: 495820,Profit: 928582,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `4123`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 61845,Discounts: 402.6,Sales: 61442.4,COGS: 6710,Profit: 54732.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1337`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 467950,Discounts: 24892,Sales: 443058,COGS: 462280,Profit: 19222,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `599`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 4193,Discounts: 405.65,Sales: 3787.35,COGS: 5795,Profit: 2007.65,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `725`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 5075,Discounts: 480.2,Sales: 4594.8,COGS: 6860,Profit: 2265.2,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `477`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 3339,Discounts: 822.15,Sales: 2516.85,COGS: 11745,Profit: 9228.15,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 16275,Discounts: 941.15,Sales: 15333.85,COGS: 13445,Profit: 1888.85,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `675`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 8100,Discounts: 1458.6,Sales: 6641.4,COGS: 7293,Profit: 651.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2990`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35880,Discounts: 1458.6,Sales: 34421.4,COGS: 7293,Profit: 27128.4,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1072`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 7504,Discounts: 941.15,Sales: 6562.85,COGS: 13445,Profit: 6882.15,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1048`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7336,Discounts: 589.05,Sales: 6746.95,COGS: 8415,Profit: 1668.05,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `469`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 5628,Discounts: 673.8,Sales: 4954.2,COGS: 3369,Profit: 1585.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `804`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 5628,Discounts: 405.65,Sales: 5222.35,COGS: 5795,Profit: 572.65,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4240`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50880,Discounts: 1119,Sales: 49761,COGS: 5595,Profit: 44166,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1976`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 23712,Discounts: 669.6,Sales: 23042.4,COGS: 3348,Profit: 19694.4,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1984`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39680,Discounts: 1563,Sales: 38117,COGS: 15630,Profit: 22487,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `480`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 144000,Discounts: 14865,Sales: 129135,COGS: 247750,Profit: 118615,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `3551`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 24857,Discounts: 355.6,Sales: 24501.4,COGS: 5080,Profit: 19421.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1205`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 18075,Discounts: 2093.25,Sales: 15981.75,COGS: 27910,Profit: 11928.25,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2480`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17360,Discounts: 199.5,Sales: 17160.5,COGS: 2850,Profit: 14310.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2926`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 20482,Discounts: 870.45,Sales: 19611.55,COGS: 12435,Profit: 7176.55,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3210`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1123500,Discounts: 24228.75,Sales: 1099271.25,COGS: 359970,Profit: 739301.25,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3221`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 402625,Discounts: 22668.75,Sales: 379956.25,COGS: 435240,Profit: 55283.75,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2389`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 836150,Discounts: 12600,Sales: 823550,COGS: 187200,Profit: 636350,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1127`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13524,Discounts: 1405.2,Sales: 12118.8,COGS: 7026,Profit: 5092.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `319`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 95700,Discounts: 16500,Sales: 79200,COGS: 275000,Profit: 195800,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1610`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 32200,Discounts: 1303,Sales: 30897,COGS: 13030,Profit: 17867,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4100`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 512500,Discounts: 18700,Sales: 493800,COGS: 359040,Profit: 134760,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1012`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 126500,Discounts: 14906.25,Sales: 111593.75,COGS: 286200,Profit: 174606.25,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3337`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1001100,Discounts: 24105,Sales: 976995,COGS: 401750,Profit: 575245,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3955`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27685,Discounts: 814.45,Sales: 26870.55,COGS: 11635,Profit: 15235.55,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4347`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1304100,Discounts: 14865,Sales: 1289235,COGS: 247750,Profit: 1041485,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1548`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 541800,Discounts: 10535,Sales: 531265,COGS: 156520,Profit: 374745,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2153`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 32295,Discounts: 1965,Sales: 30330,COGS: 26200,Profit: 4130,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3789`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1326150,Discounts: 21490,Sales: 1304660,COGS: 319280,Profit: 985380,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4364`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 87280,Discounts: 1389,Sales: 85891,COGS: 13890,Profit: 72001,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4126`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 515750,Discounts: 5381.25,Sales: 510368.75,COGS: 103320,Profit: 407048.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1343`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 167875,Discounts: 4400,Sales: 163475,COGS: 84480,Profit: 78995,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `245`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 4900,Discounts: 1802,Sales: 3098,COGS: 18020,Profit: 14922,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3376`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67520,Discounts: 2663,Sales: 64857,COGS: 26630,Profit: 38227,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 9807,Discounts: 747.6,Sales: 9059.4,COGS: 10680,Profit: 1620.6,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3483`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 52245,Discounts: 1587,Sales: 50658,COGS: 21160,Profit: 29498,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2244`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 33660,Discounts: 416.25,Sales: 33243.75,COGS: 5550,Profit: 27693.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1360`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20400,Discounts: 2145.75,Sales: 18254.25,COGS: 28610,Profit: 10355.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `279`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 34875,Discounts: 5043.75,Sales: 29831.25,COGS: 96840,Profit: 67008.75,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2521`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 882350,Discounts: 10535,Sales: 871815,COGS: 156520,Profit: 715295,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2433`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 48660,Discounts: 2832,Sales: 45828,COGS: 28320,Profit: 17508,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1738`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 34760,Discounts: 1579,Sales: 33181,COGS: 15790,Profit: 17391,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1106`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 138250,Discounts: 5381.25,Sales: 132868.75,COGS: 103320,Profit: 29548.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3379`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422375,Discounts: 4400,Sales: 417975,COGS: 84480,Profit: 333495,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1221`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 24420,Discounts: 1033,Sales: 23387,COGS: 10330,Profit: 13057,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `213`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 63900,Discounts: 18750,Sales: 45150,COGS: 312500,Profit: 267350,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3335`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 66700,Discounts: 1389,Sales: 65311,COGS: 13890,Profit: 51421,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1260`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 25200,Discounts: 1265,Sales: 23935,COGS: 12650,Profit: 11285,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3034`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 60680,Discounts: 2297,Sales: 58383,COGS: 22970,Profit: 35413,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2929`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 58580,Discounts: 2663,Sales: 55917,COGS: 26630,Profit: 29287,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2389`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 16723,Discounts: 199.5,Sales: 16523.5,COGS: 2850,Profit: 13673.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3086`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21602,Discounts: 870.45,Sales: 20731.55,COGS: 12435,Profit: 8296.55,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `745`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 260750,Discounts: 23625,Sales: 237125,COGS: 351000,Profit: 113875,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1266`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 443100,Discounts: 9660,Sales: 433440,COGS: 143520,Profit: 289920,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3790`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1326500,Discounts: 21490,Sales: 1305010,COGS: 319280,Profit: 985730,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4287`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1286100,Discounts: 18750,Sales: 1267350,COGS: 312500,Profit: 954850,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 47895,Discounts: 3420.9,Sales: 44474.1,COGS: 38010,Profit: 6464.1,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1967`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39340,Discounts: 1341,Sales: 37999,COGS: 11175,Profit: 26824,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `631`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 9465,Discounts: 2559.6,Sales: 6905.4,COGS: 28440,Profit: 21534.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3469`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 41628,Discounts: 404.64,Sales: 41223.36,COGS: 1686,Profit: 39537.36,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `570`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 6840,Discounts: 1655.28,Sales: 5184.72,COGS: 6897,Profit: 1712.28,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3215`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 48225,Discounts: 1827,Sales: 46398,COGS: 20300,Profit: 26098,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3754`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 26278,Discounts: 110.46,Sales: 26167.54,COGS: 1315,Profit: 24852.54,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2187`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 273375,Discounts: 6652.5,Sales: 266722.5,COGS: 106440,Profit: 160282.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1959`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 685650,Discounts: 20580,Sales: 665070,COGS: 254800,Profit: 410270,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2181`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 763350,Discounts: 30660,Sales: 732690,COGS: 379600,Profit: 353090,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3559`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 24913,Discounts: 589.26,Sales: 24323.74,COGS: 7015,Profit: 17308.74,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2205`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 26460,Discounts: 1960.56,Sales: 24499.44,COGS: 8169,Profit: 16330.44,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1890`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 661500,Discounts: 31416,Sales: 630084,COGS: 388960,Profit: 241124,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1296`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 15552,Discounts: 1655.28,Sales: 13896.72,COGS: 6897,Profit: 6999.72,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `775`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 271250,Discounts: 15267,Sales: 255983,COGS: 189020,Profit: 66963,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2417`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 302125,Discounts: 7140,Sales: 294985,COGS: 114240,Profit: 180745,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1158`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 144750,Discounts: 20662.5,Sales: 124087.5,COGS: 330600,Profit: 206512.5,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `803`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 12045,Discounts: 1377,Sales: 10668,COGS: 15300,Profit: 4632,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3705`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1296750,Discounts: 31416,Sales: 1265334,COGS: 388960,Profit: 876374,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `589`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 4123,Discounts: 629.16,Sales: 3493.84,COGS: 7490,Profit: 3996.16,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3797`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1139100,Discounts: 21978,Sales: 1117122,COGS: 305250,Profit: 811872,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1321`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 462350,Discounts: 43596,Sales: 418754,COGS: 539760,Profit: 121006,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3999`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 59985,Discounts: 2559.6,Sales: 57425.4,COGS: 28440,Profit: 28985.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4256`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 29792,Discounts: 629.16,Sales: 29162.84,COGS: 7490,Profit: 21672.84,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1643`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 492900,Discounts: 21978,Sales: 470922,COGS: 305250,Profit: 165672,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1912`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 38240,Discounts: 1347.6,Sales: 36892.4,COGS: 11230,Profit: 25662.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1610`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 483000,Discounts: 43848,Sales: 439152,COGS: 609000,Profit: 169848,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2160`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 270000,Discounts: 14906.25,Sales: 255093.75,COGS: 238500,Profit: 16593.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `466`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 163100,Discounts: 35259,Sales: 127841,COGS: 436540,Profit: 308699,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `328`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 114800,Discounts: 15267,Sales: 99533,COGS: 189020,Profit: 89487,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `4099`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 28693,Discounts: 589.26,Sales: 28103.74,COGS: 7015,Profit: 21088.74,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `990`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 346500,Discounts: 43596,Sales: 302904,COGS: 539760,Profit: 236856,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1433`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 28660,Discounts: 2108.4,Sales: 26551.6,COGS: 17570,Profit: 8981.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1478`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 22170,Discounts: 1978.2,Sales: 20191.8,COGS: 21980,Profit: 1788.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3798`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 56970,Discounts: 1568.7,Sales: 55401.3,COGS: 17430,Profit: 37971.3,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `447`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 6705,Discounts: 1037.7,Sales: 5667.3,COGS: 11530,Profit: 5862.7,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1711`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34220,Discounts: 2108.4,Sales: 32111.6,COGS: 17570,Profit: 14541.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `745`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 14900,Discounts: 1201.2,Sales: 13698.8,COGS: 10010,Profit: 3688.8,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1732`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 12124,Discounts: 559.86,Sales: 11564.14,COGS: 6665,Profit: 4899.14,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1759`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 26385,Discounts: 1037.7,Sales: 25347.3,COGS: 11530,Profit: 13817.3,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `338`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 4056,Discounts: 610.68,Sales: 3445.32,COGS: 2181,Profit: 1264.32,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3911`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 46932,Discounts: 1582.56,Sales: 45349.44,COGS: 5652,Profit: 39697.44,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3691`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 73820,Discounts: 2567.6,Sales: 71252.4,COGS: 18340,Profit: 52912.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `4473`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 53676,Discounts: 1965.6,Sales: 51710.4,COGS: 7020,Profit: 44690.4,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `383`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 4596,Discounts: 1967.28,Sales: 2628.72,COGS: 7026,Profit: 4397.28,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3105`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21735,Discounts: 505.19,Sales: 21229.81,COGS: 5155,Profit: 16074.81,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1062`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 15930,Discounts: 1325.1,Sales: 14604.9,COGS: 12620,Profit: 1984.9,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4083`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 28581,Discounts: 556.15,Sales: 28024.85,COGS: 5675,Profit: 22349.85,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3974`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 27818,Discounts: 268.03,Sales: 27549.97,COGS: 2735,Profit: 24814.97,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3723`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 26061,Discounts: 775.18,Sales: 25285.82,COGS: 7910,Profit: 17375.82,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2435`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 29220,Discounts: 1460.34,Sales: 27759.66,COGS: 5215.5,Profit: 22544.16,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1678`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 20136,Discounts: 1860.6,Sales: 18275.4,COGS: 6645,Profit: 11630.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1763`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 12341,Discounts: 775.18,Sales: 11565.82,COGS: 7910,Profit: 3655.82,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4473`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31311,Discounts: 556.15,Sales: 30754.85,COGS: 5675,Profit: 25079.85,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1246`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 436100,Discounts: 43144.5,Sales: 392955.5,COGS: 457860,Profit: 64904.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1615`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 484500,Discounts: 9408,Sales: 475092,COGS: 112000,Profit: 363092,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `749`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 224700,Discounts: 45801,Sales: 178899,COGS: 545250,Profit: 366351,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1318`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 26360,Discounts: 2766.4,Sales: 23593.6,COGS: 19760,Profit: 3833.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2882`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 864600,Discounts: 45801,Sales: 818799,COGS: 545250,Profit: 273549,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3039`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 379875,Discounts: 21875,Sales: 358000,COGS: 300000,Profit: 58000,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2484`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 745200,Discounts: 35742,Sales: 709458,COGS: 425500,Profit: 283958,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3169`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 950700,Discounts: 9408,Sales: 941292,COGS: 112000,Profit: 829292,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 510000,Discounts: 30738.75,Sales: 479261.25,COGS: 421560,Profit: 57701.25,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3943`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 59145,Discounts: 2206.05,Sales: 56938.95,COGS: 21010,Profit: 35928.95,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `784`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11760,Discounts: 3077.55,Sales: 8682.45,COGS: 29310,Profit: 20627.55,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `253`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5060,Discounts: 2149,Sales: 2911,COGS: 15350,Profit: 12439,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1316`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 394800,Discounts: 23583,Sales: 371217,COGS: 280750,Profit: 90467,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `808`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 242400,Discounts: 29484,Sales: 212916,COGS: 351000,Profit: 138084,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3295`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 39540,Discounts: 2320.92,Sales: 37219.08,COGS: 8289,Profit: 28930.08,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `520`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 3640,Discounts: 1041.25,Sales: 2598.75,COGS: 10625,Profit: 8026.25,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `799`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 239700,Discounts: 34839,Sales: 204861,COGS: 414750,Profit: 209889,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3942`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 78840,Discounts: 852.6,Sales: 77987.4,COGS: 6090,Profit: 71897.4,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2498`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 312250,Discounts: 18261.25,Sales: 293988.75,COGS: 250440,Profit: 43548.75,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2517`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 50340,Discounts: 2766.4,Sales: 47573.6,COGS: 19760,Profit: 27813.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3182`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 63640,Discounts: 1989.4,Sales: 61650.6,COGS: 14210,Profit: 47440.6,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1145`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 343500,Discounts: 28812,Sales: 314688,COGS: 343000,Profit: 28312,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `895`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 17900,Discounts: 823.2,Sales: 17076.8,COGS: 5880,Profit: 11196.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3814`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 45768,Discounts: 2725.38,Sales: 43042.62,COGS: 9733.5,Profit: 33309.12,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1188`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 356400,Discounts: 20139,Sales: 336261,COGS: 239750,Profit: 96511,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2233`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 669900,Discounts: 57687,Sales: 612213,COGS: 686750,Profit: 74537,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `421`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 52625,Discounts: 14393.75,Sales: 38231.25,COGS: 197400,Profit: 159168.75,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `269`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 94150,Discounts: 70462,Sales: 23688,COGS: 747760,Profit: 724072,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3766`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 470750,Discounts: 8697.5,Sales: 462052.5,COGS: 119280,Profit: 342772.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `952`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19040,Discounts: 1565.2,Sales: 17474.8,COGS: 11180,Profit: 6294.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2964`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 889200,Discounts: 28812,Sales: 860388,COGS: 343000,Profit: 517388,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1505`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10535,Discounts: 273.28,Sales: 10261.72,COGS: 2440,Profit: 7821.72,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1678`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 33560,Discounts: 2051.2,Sales: 31508.8,COGS: 12820,Profit: 18688.8,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4249`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 29743,Discounts: 143.92,Sales: 29599.08,COGS: 1285,Profit: 28314.08,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1677`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 33540,Discounts: 2051.2,Sales: 31488.8,COGS: 12820,Profit: 18668.8,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3051`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 381375,Discounts: 15400,Sales: 365975,COGS: 184800,Profit: 181175,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3372`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 50580,Discounts: 588,Sales: 49992,COGS: 4900,Profit: 45092,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1686`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 590100,Discounts: 38136,Sales: 551964,COGS: 354120,Profit: 197844,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3086`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 46290,Discounts: 3001.2,Sales: 43288.8,COGS: 25010,Profit: 18278.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4150`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 83000,Discounts: 1132.8,Sales: 81867.2,COGS: 7080,Profit: 74787.2,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3027`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 60540,Discounts: 1032,Sales: 59508,COGS: 6450,Profit: 53058,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4359`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1307700,Discounts: 37488,Sales: 1270212,COGS: 390500,Profit: 879712,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3628`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1088400,Discounts: 30792,Sales: 1057608,COGS: 320750,Profit: 736858,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1589`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 23835,Discounts: 853.2,Sales: 22981.8,COGS: 7110,Profit: 15871.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2679`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 334875,Discounts: 11140,Sales: 323735,COGS: 133680,Profit: 190055,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 23807,Discounts: 705.04,Sales: 23101.96,COGS: 6295,Profit: 16806.96,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2815`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19705,Discounts: 613.2,Sales: 19091.8,COGS: 5475,Profit: 13616.8,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2964`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 59280,Discounts: 2185.6,Sales: 57094.4,COGS: 13660,Profit: 43434.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4173`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1251900,Discounts: 59040,Sales: 1192860,COGS: 615000,Profit: 577860,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1157`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 8099,Discounts: 379.68,Sales: 7719.32,COGS: 3390,Profit: 4329.32,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3065`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21455,Discounts: 894.88,Sales: 20560.12,COGS: 7990,Profit: 12570.12,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1962`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 13734,Discounts: 1349.04,Sales: 12384.96,COGS: 12045,Profit: 339.96,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 81600,Discounts: 3094.4,Sales: 78505.6,COGS: 19340,Profit: 59165.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1713`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34260,Discounts: 4788.8,Sales: 29471.2,COGS: 29930,Profit: 458.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 978250,Discounts: 60088,Sales: 918162,COGS: 557960,Profit: 360202,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4082`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 28574,Discounts: 1089.76,Sales: 27484.24,COGS: 9730,Profit: 17754.24,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1691`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 591850,Discounts: 38136,Sales: 553714,COGS: 354120,Profit: 199594,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2305`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27660,Discounts: 574.08,Sales: 27085.92,COGS: 1794,Profit: 25291.92,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3401`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 23807,Discounts: 1627.92,Sales: 22179.08,COGS: 14535,Profit: 7644.08,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2288`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 16016,Discounts: 1309.28,Sales: 14706.72,COGS: 11690,Profit: 3016.72,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2399`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 719700,Discounts: 9264,Sales: 710436,COGS: 96500,Profit: 613936,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4086`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1225800,Discounts: 15240,Sales: 1210560,COGS: 158750,Profit: 1051810,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2651`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 927850,Discounts: 16086,Sales: 911764,COGS: 149370,Profit: 762394,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3971`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27797,Discounts: 1309.28,Sales: 26487.72,COGS: 11690,Profit: 14797.72,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2512`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 879200,Discounts: 10668,Sales: 868532,COGS: 99060,Profit: 769472,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 960750,Discounts: 11816,Sales: 948934,COGS: 109720,Profit: 839214,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1903`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 570900,Discounts: 51216,Sales: 519684,COGS: 533500,Profit: 13816,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `647`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 194100,Discounts: 19392,Sales: 174708,COGS: 202000,Profit: 27292,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2914`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 58280,Discounts: 1132.8,Sales: 57147.2,COGS: 7080,Profit: 50067.2,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1889`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 13223,Discounts: 1627.92,Sales: 11595.08,COGS: 14535,Profit: 2939.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1466`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 29320,Discounts: 2185.6,Sales: 27134.4,COGS: 13660,Profit: 13474.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `887`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 266100,Discounts: 59040,Sales: 207060,COGS: 615000,Profit: 407940,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `395`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 7900,Discounts: 2432,Sales: 5468,COGS: 15200,Profit: 9732,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1693`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 25395,Discounts: 853.2,Sales: 24541.8,COGS: 7110,Profit: 17431.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2459`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 29508,Discounts: 1320,Sales: 28188,COGS: 4125,Profit: 24063,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2649`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 794700,Discounts: 15240,Sales: 779460,COGS: 158750,Profit: 620710,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3608`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 72160,Discounts: 698.4,Sales: 71461.6,COGS: 4365,Profit: 67096.6,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1073`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 321900,Discounts: 29538,Sales: 292362,COGS: 273500,Profit: 18862,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1754`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 21048,Discounts: 396.36,Sales: 20651.64,COGS: 1101,Profit: 19550.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2167`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 650100,Discounts: 102667.5,Sales: 547432.5,COGS: 950625,Profit: 403192.5,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1319`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 461650,Discounts: 52479,Sales: 409171,COGS: 433160,Profit: 23989,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1679`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 503700,Discounts: 8694,Sales: 495006,COGS: 80500,Profit: 414506,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1252`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 15024,Discounts: 2506.68,Sales: 12517.32,COGS: 6963,Profit: 5554.32,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3493`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 436625,Discounts: 20891.25,Sales: 415733.75,COGS: 222840,Profit: 192893.75,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1697`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 11879,Discounts: 1014.93,Sales: 10864.07,COGS: 8055,Profit: 2809.07,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1156`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 144500,Discounts: 31466.25,Sales: 113033.75,COGS: 335640,Profit: 222606.25,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `726`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 217800,Discounts: 9018,Sales: 208782,COGS: 83500,Profit: 125282,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1153`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 345900,Discounts: 69255,Sales: 276645,COGS: 641250,Profit: 364605,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2720`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 952000,Discounts: 76135.5,Sales: 875864.5,COGS: 628420,Profit: 247444.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 54870,Discounts: 4961.25,Sales: 49908.75,COGS: 36750,Profit: 13158.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2950`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 885000,Discounts: 29538,Sales: 855462,COGS: 273500,Profit: 581962,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1821`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27315,Discounts: 1656.45,Sales: 25658.55,COGS: 12270,Profit: 13388.55,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4174`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 50088,Discounts: 396.36,Sales: 49691.64,COGS: 1101,Profit: 48590.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1127`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 338100,Discounts: 35748,Sales: 302352,COGS: 331000,Profit: 28648,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2209`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 26508,Discounts: 1917,Sales: 24591,COGS: 5325,Profit: 19266,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `862`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 107750,Discounts: 31466.25,Sales: 76283.75,COGS: 335640,Profit: 259356.25,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3805`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 57075,Discounts: 330.75,Sales: 56744.25,COGS: 2450,Profit: 54294.25,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1415`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 424500,Discounts: 102424.5,Sales: 322075.5,COGS: 948375,Profit: 626299.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2231`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 780850,Discounts: 41170.5,Sales: 739679.5,COGS: 339820,Profit: 399859.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3649`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 456125,Discounts: 6378.75,Sales: 449746.25,COGS: 68040,Profit: 381706.25,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2948`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 368500,Discounts: 23737.5,Sales: 344762.5,COGS: 253200,Profit: 91562.5,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3395`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1188250,Discounts: 39973.5,Sales: 1148276.5,COGS: 329940,Profit: 818336.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2650`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31800,Discounts: 2112.48,Sales: 29687.52,COGS: 5868,Profit: 23819.52,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `585`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 175500,Discounts: 71793,Sales: 103707,COGS: 664750,Profit: 561043,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1316`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 460600,Discounts: 42572.25,Sales: 418027.75,COGS: 351390,Profit: 66637.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4459`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 53508,Discounts: 950.4,Sales: 52557.6,COGS: 2640,Profit: 49917.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2711`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 813300,Discounts: 50409,Sales: 762891,COGS: 466750,Profit: 296141,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2621`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31452,Discounts: 2412.72,Sales: 29039.28,COGS: 6702,Profit: 22337.28,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3613`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 54195,Discounts: 1656.45,Sales: 52538.55,COGS: 12270,Profit: 40268.55,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1847`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 230875,Discounts: 9866.25,Sales: 221008.75,COGS: 105240,Profit: 115768.75,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2996`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1048600,Discounts: 65236.5,Sales: 983363.5,COGS: 538460,Profit: 444903.5,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2838`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 993300,Discounts: 39973.5,Sales: 953326.5,COGS: 329940,Profit: 623386.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1302`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 19530,Discounts: 1309.5,Sales: 18220.5,COGS: 9700,Profit: 8520.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1536`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 30720,Discounts: 3049.2,Sales: 27670.8,COGS: 16940,Profit: 10730.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1291`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 25820,Discounts: 1193.4,Sales: 24626.6,COGS: 6630,Profit: 17996.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1213`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 8491,Discounts: 515.97,Sales: 7975.03,COGS: 4095,Profit: 3880.03,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2370`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 28440,Discounts: 1706.4,Sales: 26733.6,COGS: 4740,Profit: 21993.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1979`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 13853,Discounts: 328.23,Sales: 13524.77,COGS: 2605,Profit: 10919.77,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2879`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57580,Discounts: 1751.4,Sales: 55828.6,COGS: 9730,Profit: 46098.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1707`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34140,Discounts: 1868.4,Sales: 32271.6,COGS: 10380,Profit: 21891.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2933`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 20531,Discounts: 226.8,Sales: 20304.2,COGS: 1800,Profit: 18504.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1014`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 12168,Discounts: 2124.36,Sales: 10043.64,COGS: 5901,Profit: 4142.64,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `693`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 10395,Discounts: 3547.8,Sales: 6847.2,COGS: 26280,Profit: 19432.8,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3741`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26187,Discounts: 226.8,Sales: 25960.2,COGS: 1800,Profit: 24160.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3116`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 62320,Discounts: 4827.6,Sales: 57492.4,COGS: 26820,Profit: 30672.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3995`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27965,Discounts: 328.23,Sales: 27636.77,COGS: 2605,Profit: 25031.77,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `953`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19060,Discounts: 1868.4,Sales: 17191.6,COGS: 10380,Profit: 6811.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2530`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 37950,Discounts: 2201.18,Sales: 35748.82,COGS: 16305,Profit: 19443.82,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2565`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 30780,Discounts: 330.48,Sales: 30449.52,COGS: 918,Profit: 29531.52,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `4297`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51564,Discounts: 463.2,Sales: 51100.8,COGS: 1158,Profit: 49942.8,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2871`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20097,Discounts: 1629.6,Sales: 18467.4,COGS: 11640,Profit: 6827.4,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3537`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 42444,Discounts: 463.2,Sales: 41980.8,COGS: 1158,Profit: 40822.8,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1598`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 199750,Discounts: 43068.75,Sales: 156681.25,COGS: 413460,Profit: 256778.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2616`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 327000,Discounts: 18525,Sales: 308475,COGS: 177840,Profit: 130635,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2836`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 992600,Discounts: 80955,Sales: 911645,COGS: 601380,Profit: 310265,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `4023`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 502875,Discounts: 22550,Sales: 480325,COGS: 216480,Profit: 263845,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3994`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 59910,Discounts: 3108,Sales: 56802,COGS: 20720,Profit: 36082,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2928`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58560,Discounts: 3908,Sales: 54652,COGS: 19540,Profit: 35112,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2912`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 873600,Discounts: 17730,Sales: 855870,COGS: 147750,Profit: 708120,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3671`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 55065,Discounts: 3250.5,Sales: 51814.5,COGS: 21670,Profit: 30144.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2778`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 55560,Discounts: 482,Sales: 55078,COGS: 2410,Profit: 52668,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `405`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 6075,Discounts: 1021.5,Sales: 5053.5,COGS: 6810,Profit: 1756.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2013`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 30195,Discounts: 765,Sales: 29430,COGS: 5100,Profit: 24330,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2634`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 39510,Discounts: 1185,Sales: 38325,COGS: 7900,Profit: 30425,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4166`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1458100,Discounts: 22365,Sales: 1435735,COGS: 166140,Profit: 1269595,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `355`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 44375,Discounts: 19950,Sales: 24425,COGS: 191520,Profit: 167095,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2382`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 714600,Discounts: 68820,Sales: 645780,COGS: 573500,Profit: 72280,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `4170`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 83400,Discounts: 482,Sales: 82918,COGS: 2410,Profit: 80508,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `892`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6244,Discounts: 1865.5,Sales: 4378.5,COGS: 13325,Profit: 8946.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2200`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 275000,Discounts: 23950,Sales: 251050,COGS: 229920,Profit: 21130,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3389`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1016700,Discounts: 25590,Sales: 991110,COGS: 213250,Profit: 777860,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2990`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 373750,Discounts: 4262.5,Sales: 369487.5,COGS: 40920,Profit: 328567.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4013`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 60195,Discounts: 961.5,Sales: 59233.5,COGS: 6410,Profit: 52823.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `739`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 258650,Discounts: 98245,Sales: 160405,COGS: 729820,Profit: 569415,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1989`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 596700,Discounts: 12960,Sales: 583740,COGS: 108000,Profit: 475740,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2991`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 897300,Discounts: 68820,Sales: 828480,COGS: 573500,Profit: 254980,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `4237`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 63555,Discounts: 3250.5,Sales: 60304.5,COGS: 21670,Profit: 38634.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1442`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 180250,Discounts: 31612.5,Sales: 148637.5,COGS: 303480,Profit: 154842.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2712`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 949200,Discounts: 65450,Sales: 883750,COGS: 486200,Profit: 397550,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1508`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 188500,Discounts: 7237.5,Sales: 181262.5,COGS: 69480,Profit: 111782.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4245`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1485750,Discounts: 78400,Sales: 1407350,COGS: 582400,Profit: 824950,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2630`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 789000,Discounts: 89790,Sales: 699210,COGS: 748250,Profit: 49040,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1182`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 14184,Discounts: 4224.6,Sales: 9959.4,COGS: 10561.5,Profit: 602.1,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1221`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 24420,Discounts: 4078,Sales: 20342,COGS: 20390,Profit: 48,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `963`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 11556,Discounts: 3088.8,Sales: 8467.2,COGS: 7722,Profit: 745.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3243`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1135050,Discounts: 24745,Sales: 1110305,COGS: 183820,Profit: 926485,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1120`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 16800,Discounts: 3108,Sales: 13692,COGS: 20720,Profit: 7028,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1174`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 352200,Discounts: 25590,Sales: 326610,COGS: 213250,Profit: 113360,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2541`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 30492,Discounts: 1581.36,Sales: 28910.64,COGS: 3594,Profit: 25316.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3246`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 22722,Discounts: 1949.64,Sales: 20772.36,COGS: 12660,Profit: 8112.36,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1531`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 18372,Discounts: 1581.36,Sales: 16790.64,COGS: 3594,Profit: 13196.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2526`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 37890,Discounts: 633.6,Sales: 37256.4,COGS: 3840,Profit: 33416.4,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1136`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 13632,Discounts: 623.04,Sales: 13008.96,COGS: 1416,Profit: 11592.96,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1983`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 13881,Discounts: 1215.83,Sales: 12665.17,COGS: 7895,Profit: 4770.17,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3259`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 39108,Discounts: 1326.6,Sales: 37781.4,COGS: 3015,Profit: 34766.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `3267`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 49005,Discounts: 5279.17,Sales: 43725.82,COGS: 31995,Profit: 11730.82,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `2454`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 29448,Discounts: 623.04,Sales: 28824.96,COGS: 1416,Profit: 27408.96,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `2643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 31716,Discounts: 2556.84,Sales: 29159.16,COGS: 5811,Profit: 23348.16,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `383`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 134050,Discounts: 30492,Sales: 103558,COGS: 205920,Profit: 102362,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2801`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 840300,Discounts: 92763,Sales: 747537,COGS: 702750,Profit: 44787,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1667`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 208375,Discounts: 33563.75,Sales: 174811.25,COGS: 292920,Profit: 118108.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3539`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53085,Discounts: 2574,Sales: 50511,COGS: 15600,Profit: 34911,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `4226`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 29582,Discounts: 2083.62,Sales: 27498.38,COGS: 13530,Profit: 13968.38,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2220`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 777000,Discounts: 29491,Sales: 747509,COGS: 199160,Profit: 548349,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `776`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15520,Discounts: 6582.4,Sales: 8937.6,COGS: 29920,Profit: 20982.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `553`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 8295,Discounts: 3559.05,Sales: 4735.95,COGS: 21570,Profit: 16834.05,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2107`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 632100,Discounts: 28809,Sales: 603291,COGS: 218250,Profit: 385041,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2468`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 49360,Discounts: 2468.4,Sales: 46891.6,COGS: 11220,Profit: 35671.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1905`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 666750,Discounts: 81023.25,Sales: 585726.75,COGS: 547170,Profit: 38556.75,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 43896,Discounts: 5314.32,Sales: 38581.68,COGS: 12078,Profit: 26503.68,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4301`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 51612,Discounts: 3201.66,Sales: 48410.34,COGS: 7276.5,Profit: 41133.84,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2446`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 48920,Discounts: 5266.8,Sales: 43653.2,COGS: 23940,Profit: 19713.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4209`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 63135,Discounts: 3273.6,Sales: 59861.4,COGS: 19840,Profit: 40021.4,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3353`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 419125,Discounts: 33563.75,Sales: 385561.25,COGS: 292920,Profit: 92641.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1401`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 28020,Discounts: 6582.4,Sales: 21437.6,COGS: 29920,Profit: 8482.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1865`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 559500,Discounts: 45078,Sales: 514422,COGS: 341500,Profit: 172922,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `463`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 9260,Discounts: 6171,Sales: 3089,COGS: 28050,Profit: 24961,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4177`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 62655,Discounts: 1080.75,Sales: 61574.25,COGS: 6550,Profit: 55024.25,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2523`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 883050,Discounts: 13244,Sales: 869806,COGS: 89440,Profit: 780366,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1930`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 13510,Discounts: 1392.16,Sales: 12117.84,COGS: 9040,Profit: 3077.84,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1301`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 15612,Discounts: 2288.88,Sales: 13323.12,COGS: 5202,Profit: 8121.12,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4125`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 515625,Discounts: 7617.5,Sales: 508007.5,COGS: 66480,Profit: 441527.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `607`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 12140,Discounts: 6457,Sales: 5683,COGS: 29350,Profit: 23667,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `478`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 59750,Discounts: 43518.75,Sales: 16231.25,COGS: 379800,Profit: 363568.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4489`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 89780,Discounts: 5783.8,Sales: 83996.2,COGS: 26290,Profit: 57706.2,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1504`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 188000,Discounts: 19703.75,Sales: 168296.25,COGS: 171960,Profit: 3663.75,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `3763`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 470375,Discounts: 13021.25,Sales: 457353.75,COGS: 113640,Profit: 343713.75,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2412`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 844200,Discounts: 13244,Sales: 830956,COGS: 89440,Profit: 741516,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2342`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 35130,Discounts: 3559.05,Sales: 31570.95,COGS: 21570,Profit: 10000.95,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4451`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 31157,Discounts: 292.6,Sales: 30864.4,COGS: 1900,Profit: 28964.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3796`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1328600,Discounts: 37212,Sales: 1291388,COGS: 230360,Profit: 1061028,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `2286`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 285750,Discounts: 36240,Sales: 249510,COGS: 289920,Profit: 40410,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3614`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 451750,Discounts: 32340,Sales: 419410,COGS: 258720,Profit: 160690,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1716`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 25740,Discounts: 4840.2,Sales: 20899.8,COGS: 26890,Profit: 5990.2,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1301`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 19515,Discounts: 1218.6,Sales: 18296.4,COGS: 6770,Profit: 11526.4,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4175`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1252500,Discounts: 63828,Sales: 1188672,COGS: 443250,Profit: 745422,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `975`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 6825,Discounts: 2032.8,Sales: 4792.2,COGS: 12100,Profit: 7307.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1154`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 8078,Discounts: 2296.56,Sales: 5781.44,COGS: 13670,Profit: 7888.56,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1873`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 37460,Discounts: 4116,Sales: 33344,COGS: 17150,Profit: 16194,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3766`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1129800,Discounts: 42696,Sales: 1087104,COGS: 296500,Profit: 790604,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3558`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1067400,Discounts: 125820,Sales: 941580,COGS: 873750,Profit: 67830,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3156`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1104600,Discounts: 37212,Sales: 1067388,COGS: 230360,Profit: 837028,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2994`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 374250,Discounts: 32340,Sales: 341910,COGS: 258720,Profit: 83190,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 41740,Discounts: 2172,Sales: 39568,COGS: 9050,Profit: 30518,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1056`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 21120,Discounts: 4116,Sales: 17004,COGS: 17150,Profit: 146,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1353`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 473550,Discounts: 66948,Sales: 406602,COGS: 414440,Profit: 7838,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `416`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 124800,Discounts: 48924,Sales: 75876,COGS: 339750,Profit: 263874,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3880`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1164000,Discounts: 77400,Sales: 1086600,COGS: 537500,Profit: 549100,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `809`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 283150,Discounts: 50274,Sales: 232876,COGS: 311220,Profit: 78344,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1892`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 28380,Discounts: 684,Sales: 27696,COGS: 3800,Profit: 23896,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2072`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 41440,Discounts: 2959.2,Sales: 38480.8,COGS: 12330,Profit: 26150.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3052`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1068200,Discounts: 58590,Sales: 1009610,COGS: 362700,Profit: 646910,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3121`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1092350,Discounts: 41412,Sales: 1050938,COGS: 256360,Profit: 794578,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2059`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 41180,Discounts: 2172,Sales: 39008,COGS: 9050,Profit: 29958,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4254`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 51048,Discounts: 3036.96,Sales: 48011.04,COGS: 6327,Profit: 41684.04,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1293`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 19395,Discounts: 6974.1,Sales: 12420.9,COGS: 38745,Profit: 26324.1,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1293`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 452550,Discounts: 26166,Sales: 426384,COGS: 161980,Profit: 264404,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `230`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 80500,Discounts: 41412,Sales: 39088,COGS: 256360,Profit: 217272,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1723`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 215375,Discounts: 35805,Sales: 179570,COGS: 286440,Profit: 106870,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `240`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 4800,Discounts: 2959.2,Sales: 1840.8,COGS: 12330,Profit: 10489.2,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2571`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 899850,Discounts: 11340,Sales: 888510,COGS: 70200,Profit: 818310,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1661`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 11627,Discounts: 2874.06,Sales: 8752.94,COGS: 17107.5,Profit: 8354.56,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4474`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31318,Discounts: 2296.56,Sales: 29021.44,COGS: 13670,Profit: 15351.44,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `833`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 12495,Discounts: 4586.4,Sales: 7908.6,COGS: 25480,Profit: 17571.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `674`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 13480,Discounts: 6051.6,Sales: 7428.4,COGS: 25215,Profit: 17786.6,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `778`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 9336,Discounts: 3831.84,Sales: 5504.16,COGS: 7983,Profit: 2478.84,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1457`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 29140,Discounts: 3674.4,Sales: 25465.6,COGS: 15310,Profit: 10155.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3158`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 22106,Discounts: 1252.44,Sales: 20853.56,COGS: 7455,Profit: 13398.56,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4095`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 81900,Discounts: 3674.4,Sales: 78225.6,COGS: 15310,Profit: 62915.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3170`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 38040,Discounts: 3975.84,Sales: 34064.16,COGS: 8283,Profit: 25781.16,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `493`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 7395,Discounts: 5005.65,Sales: 2389.35,COGS: 25670,Profit: 23280.65,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3286`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 49290,Discounts: 5005.65,Sales: 44284.35,COGS: 25670,Profit: 18614.35,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3563`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1247050,Discounts: 41996.5,Sales: 1205053.5,COGS: 239980,Profit: 965073.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4109`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1438150,Discounts: 81445,Sales: 1356705,COGS: 465400,Profit: 891305,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `3653`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 73060,Discounts: 1149.2,Sales: 71910.8,COGS: 4420,Profit: 67490.8,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2203`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 771050,Discounts: 44703.75,Sales: 726346.25,COGS: 255450,Profit: 470896.25,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2924`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20468,Discounts: 1181.18,Sales: 19286.82,COGS: 6490,Profit: 12796.82,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2650`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 31800,Discounts: 942.24,Sales: 30857.76,COGS: 1812,Profit: 29045.76,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1194`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 23880,Discounts: 5863,Sales: 18017,COGS: 22550,Profit: 4533,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3366`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 67320,Discounts: 3247.4,Sales: 64072.6,COGS: 12490,Profit: 51582.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 9275,Discounts: 1309.04,Sales: 7965.97,COGS: 7192.5,Profit: 773.47,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4243`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1272900,Discounts: 31473,Sales: 1241427,COGS: 201750,Profit: 1039677,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2887`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57740,Discounts: 6866.6,Sales: 50873.4,COGS: 26410,Profit: 24463.4,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3839`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 76780,Discounts: 7040.8,Sales: 69739.2,COGS: 27080,Profit: 42659.2,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1863`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 652050,Discounts: 119756,Sales: 532294,COGS: 684320,Profit: 152026,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2858`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 357250,Discounts: 25723.75,Sales: 331526.25,COGS: 189960,Profit: 141566.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2868`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34416,Discounts: 890.76,Sales: 33525.24,COGS: 1713,Profit: 31812.24,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3805`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 26635,Discounts: 2453.36,Sales: 24181.64,COGS: 13480,Profit: 10701.64,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3914`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 58710,Discounts: 3051.75,Sales: 55658.25,COGS: 15650,Profit: 40008.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `524`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 10480,Discounts: 3247.4,Sales: 7232.6,COGS: 12490,Profit: 5257.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3095`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1083250,Discounts: 16243.5,Sales: 1067006.5,COGS: 92820,Profit: 974186.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2410`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28920,Discounts: 1580.28,Sales: 27339.72,COGS: 3039,Profit: 24300.72,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4263`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 63945,Discounts: 7795.13,Sales: 56149.88,COGS: 39975,Profit: 16174.88,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2239`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 783650,Discounts: 119756,Sales: 663894,COGS: 684320,Profit: 20426,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `569`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3983,Discounts: 1082.9,Sales: 2900.1,COGS: 5950,Profit: 3049.9,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3889`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 46668,Discounts: 942.24,Sales: 45725.76,COGS: 1812,Profit: 43913.76,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1378`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20670,Discounts: 1287,Sales: 19383,COGS: 6600,Profit: 12783,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2253`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27036,Discounts: 639.6,Sales: 26396.4,COGS: 1230,Profit: 25166.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3202`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 960600,Discounts: 101595,Sales: 859005,COGS: 651250,Profit: 207755,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 46020,Discounts: 1580.28,Sales: 44439.72,COGS: 3039,Profit: 41400.72,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `2487`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 310875,Discounts: 25723.75,Sales: 285151.25,COGS: 189960,Profit: 95191.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4428`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 66420,Discounts: 3051.75,Sales: 63368.25,COGS: 15650,Profit: 47718.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1200`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 150000,Discounts: 26958.75,Sales: 123041.25,COGS: 199080,Profit: 76038.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2953`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 20671,Discounts: 1082.9,Sales: 19588.1,COGS: 5950,Profit: 13638.1,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1453`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 17436,Discounts: 639.6,Sales: 16796.4,COGS: 1230,Profit: 15566.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `865`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 10380,Discounts: 2761.2,Sales: 7618.8,COGS: 5310,Profit: 2308.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1072`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 21440,Discounts: 7221.2,Sales: 14218.8,COGS: 25790,Profit: 11571.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1737`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 34740,Discounts: 4880.4,Sales: 29859.6,COGS: 17430,Profit: 12429.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1535`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 10745,Discounts: 2936.08,Sales: 7808.92,COGS: 14980,Profit: 7171.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2532`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17724,Discounts: 274.4,Sales: 17449.6,COGS: 1400,Profit: 16049.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1765`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 12355,Discounts: 287.14,Sales: 12067.86,COGS: 1465,Profit: 10602.86,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1567`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10969,Discounts: 2936.08,Sales: 8032.92,COGS: 14980,Profit: 6947.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2640`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 39600,Discounts: 583.8,Sales: 39016.2,COGS: 2780,Profit: 36236.2,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3079`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 61580,Discounts: 6798.4,Sales: 54781.6,COGS: 24280,Profit: 30501.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4130`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 61950,Discounts: 3710.7,Sales: 58239.3,COGS: 17670,Profit: 40569.3,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 35256,Discounts: 2340.24,Sales: 32915.76,COGS: 4179,Profit: 28736.76,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3080`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21560,Discounts: 274.4,Sales: 21285.6,COGS: 1400,Profit: 19885.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1530`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 18360,Discounts: 2340.24,Sales: 16019.76,COGS: 4179,Profit: 11840.76,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `3537`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 42444,Discounts: 3385.2,Sales: 39058.8,COGS: 6045,Profit: 33013.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `2021`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 606300,Discounts: 33642,Sales: 572658,COGS: 200250,Profit: 372408,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1804`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 225500,Discounts: 17902.5,Sales: 207597.5,COGS: 122760,Profit: 84837.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1014`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 304200,Discounts: 62832,Sales: 241368,COGS: 374000,Profit: 132632,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2913`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 873900,Discounts: 42420,Sales: 831480,COGS: 252500,Profit: 578980,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `763`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 11445,Discounts: 3177.3,Sales: 8267.7,COGS: 15130,Profit: 6862.3,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1425`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21375,Discounts: 4830,Sales: 16545,COGS: 23000,Profit: 6455,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `4357`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 544625,Discounts: 49367.5,Sales: 495257.5,COGS: 338520,Profit: 156737.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2138`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 748300,Discounts: 109147.5,Sales: 639152.5,COGS: 579150,Profit: 60002.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3825`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1338750,Discounts: 58751,Sales: 1279999,COGS: 311740,Profit: 968259,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3393`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1187550,Discounts: 9800,Sales: 1177750,COGS: 52000,Profit: 1125750,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2215`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 15505,Discounts: 380.24,Sales: 15124.76,COGS: 1940,Profit: 13184.76,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2278`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 15946,Discounts: 1692.46,Sales: 14253.54,COGS: 8635,Profit: 5618.54,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `403`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 6045,Discounts: 4830,Sales: 1215,COGS: 23000,Profit: 21785,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `289`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5780,Discounts: 728,Sales: 5052,COGS: 2600,Profit: 2452,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `749`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11235,Discounts: 5187,Sales: 6048,COGS: 24700,Profit: 18652,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `372`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 5580,Discounts: 3660.3,Sales: 1919.7,COGS: 17430,Profit: 15510.3,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3781`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 45372,Discounts: 4895.52,Sales: 40476.48,COGS: 8742,Profit: 31734.48,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1785`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 12495,Discounts: 1696.38,Sales: 10798.62,COGS: 8655,Profit: 2143.62,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4029`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1410150,Discounts: 34300,Sales: 1375850,COGS: 182000,Profit: 1193850,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2813`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 33756,Discounts: 3732.96,Sales: 30023.04,COGS: 6666,Profit: 23357.04,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2150`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 752500,Discounts: 57673,Sales: 694827,COGS: 306020,Profit: 388807,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2093`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 732550,Discounts: 94178,Sales: 638372,COGS: 499720,Profit: 138652,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4391`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 548875,Discounts: 27562.5,Sales: 521312.5,COGS: 189000,Profit: 332312.5,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2695`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 53900,Discounts: 1696.8,Sales: 52203.2,COGS: 6060,Profit: 46143.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1337`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 401100,Discounts: 103320,Sales: 297780,COGS: 615000,Profit: 317220,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2621`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 786300,Discounts: 11298,Sales: 775002,COGS: 67250,Profit: 707752,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3735`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1120500,Discounts: 106512,Sales: 1013988,COGS: 634000,Profit: 379988,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4320`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 30240,Discounts: 2844.94,Sales: 27395.06,COGS: 14515,Profit: 12880.06,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2828`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 848400,Discounts: 106722,Sales: 741678,COGS: 635250,Profit: 106428,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `2586`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 775800,Discounts: 11298,Sales: 764502,COGS: 67250,Profit: 697252,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1248`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 374400,Discounts: 62832,Sales: 311568,COGS: 374000,Profit: 62432,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `4035`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1210500,Discounts: 42420,Sales: 1168080,COGS: 252500,Profit: 915580,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `359`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 125650,Discounts: 62769,Sales: 62881,COGS: 333060,Profit: 270179,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3926`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1177800,Discounts: 37296,Sales: 1140504,COGS: 222000,Profit: 918504,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `4247`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 530875,Discounts: 49770,Sales: 481105,COGS: 341280,Profit: 139825,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2695`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 32340,Discounts: 4158,Sales: 28182,COGS: 7425,Profit: 20757,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1104`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 16560,Discounts: 3660.3,Sales: 12899.7,COGS: 17430,Profit: 4530.3,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1449`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 17388,Discounts: 4895.52,Sales: 12492.48,COGS: 8742,Profit: 3750.48,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1131`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7917,Discounts: 1696.38,Sales: 6220.62,COGS: 8655,Profit: 2434.38,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1468`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 10276,Discounts: 1692.46,Sales: 8583.54,COGS: 8635,Profit: 51.46,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1272`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 19080,Discounts: 3927,Sales: 15153,COGS: 18700,Profit: 3547,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1403`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 175375,Discounts: 22012.5,Sales: 153362.5,COGS: 140880,Profit: 12482.5,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2161`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 270125,Discounts: 51881.25,Sales: 218243.75,COGS: 332040,Profit: 113796.25,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1937`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 242125,Discounts: 20343.75,Sales: 221781.25,COGS: 130200,Profit: 91581.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2879`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 863700,Discounts: 24570,Sales: 839130,COGS: 136500,Profit: 702630,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1330`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 26600,Discounts: 3474,Sales: 23126,COGS: 11580,Profit: 11546,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2426`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 36390,Discounts: 3631.5,Sales: 32758.5,COGS: 16140,Profit: 16618.5,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2033`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14231,Discounts: 2661.75,Sales: 11569.25,COGS: 12675,Profit: 1105.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2029`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 710150,Discounts: 149677.5,Sales: 560472.5,COGS: 741260,Profit: 180787.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1049`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 15735,Discounts: 5757.75,Sales: 9977.25,COGS: 25590,Profit: 15612.75,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1062`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 21240,Discounts: 801,Sales: 20439,COGS: 2670,Profit: 17769,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2509`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 313625,Discounts: 20343.75,Sales: 293281.25,COGS: 130200,Profit: 163081.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1743`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 26145,Discounts: 2643.75,Sales: 23501.25,COGS: 11750,Profit: 11751.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3418`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1196300,Discounts: 105367.5,Sales: 1090932.5,COGS: 521820,Profit: 569112.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1751`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 612850,Discounts: 112927.5,Sales: 499922.5,COGS: 559260,Profit: 59337.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3228`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 38736,Discounts: 1645.2,Sales: 37090.8,COGS: 2742,Profit: 34348.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1105`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 22100,Discounts: 879,Sales: 21221,COGS: 2930,Profit: 18291,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2778`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 33336,Discounts: 900,Sales: 32436,COGS: 1500,Profit: 30936,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1173`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 17595,Discounts: 6358.5,Sales: 11236.5,COGS: 28260,Profit: 17023.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3160`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 395000,Discounts: 12431.25,Sales: 382568.75,COGS: 79560,Profit: 303008.75,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `4322`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1296600,Discounts: 115830,Sales: 1180770,COGS: 643500,Profit: 537270,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1901`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 237625,Discounts: 45712.5,Sales: 191912.5,COGS: 292560,Profit: 100647.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2980`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35760,Discounts: 1645.2,Sales: 34114.8,COGS: 2742,Profit: 31372.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4068`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 81360,Discounts: 2596.5,Sales: 78763.5,COGS: 8655,Profit: 70108.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2105`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 31575,Discounts: 1107,Sales: 30468,COGS: 4920,Profit: 25548,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1647`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 32940,Discounts: 801,Sales: 32139,COGS: 2670,Profit: 29469,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `235`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 3525,Discounts: 2643.75,Sales: 881.25,COGS: 11750,Profit: 10868.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3617`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 452125,Discounts: 55387.5,Sales: 396737.5,COGS: 354480,Profit: 42257.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2106`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 263250,Discounts: 10350,Sales: 252900,COGS: 66240,Profit: 186660,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2351`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 47020,Discounts: 879,Sales: 46141,COGS: 2930,Profit: 43211,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1897`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 569100,Discounts: 111375,Sales: 457725,COGS: 618750,Profit: 161025,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `647`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 194100,Discounts: 24570,Sales: 169530,COGS: 136500,Profit: 33030,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3621`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 25347,Discounts: 1436.4,Sales: 23910.6,COGS: 6840,Profit: 17070.6,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3221`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 22547,Discounts: 759.15,Sales: 21787.85,COGS: 3615,Profit: 18172.85,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `493`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 5916,Discounts: 3250.8,Sales: 2665.2,COGS: 5418,Profit: 2752.8,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); } } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-aggregations/src/SalesData.ts b/samples/charts/category-chart/data-aggregations/src/SalesData.ts index 2da064b31..25697b809 100644 --- a/samples/charts/category-chart/data-aggregations/src/SalesData.ts +++ b/samples/charts/category-chart/data-aggregations/src/SalesData.ts @@ -2,16678 +2,1048 @@ export class SalesData extends Array { public constructor() { super(); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `501`, - ManufacturingPrice: 15, - SalePrice: 23, - GrossSales: 26440, - Discounts: 0, - Sales: 26440, - COGS: 16185, - Profit: 11255, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1372`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 27440, - Discounts: 0, - Sales: 27440, - COGS: 16185, - Profit: 11255, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2762`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 55240, - Discounts: 0, - Sales: 55240, - COGS: 13210, - Profit: 42030, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1464`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 21960, - Discounts: 0, - Sales: 21960, - COGS: 21780, - Profit: 180, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `719`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 10785, - Discounts: 0, - Sales: 10785, - COGS: 8880, - Profit: 1905, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3576`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 53640, - Discounts: 0, - Sales: 53640, - COGS: 24700, - Profit: 28940, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `4422`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1547700, - Discounts: 0, - Sales: 1547700, - COGS: 393380, - Profit: 1154320, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3649`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 54735, - Discounts: 0, - Sales: 54735, - COGS: 9210, - Profit: 45525, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4172`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 50064, - Discounts: 0, - Sales: 50064, - COGS: 7554, - Profit: 42510, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3841`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 76820, - Discounts: 0, - Sales: 76820, - COGS: 18990, - Profit: 57830, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3726`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 44712, - Discounts: 0, - Sales: 44712, - COGS: 4635, - Profit: 40077, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2625`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 39375, - Discounts: 0, - Sales: 39375, - COGS: 24700, - Profit: 14675, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1958`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 244750, - Discounts: 0, - Sales: 244750, - COGS: 319860, - Profit: 75110, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `3271`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 981300, - Discounts: 0, - Sales: 981300, - COGS: 239500, - Profit: 741800, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2091`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 14637, - Discounts: 0, - Sales: 14637, - COGS: 10730, - Profit: 3907, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2825`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 42375, - Discounts: 0, - Sales: 42375, - COGS: 6150, - Profit: 36225, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2513`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 50260, - Discounts: 0, - Sales: 50260, - COGS: 2920, - Profit: 47340, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `883`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 13245, - Discounts: 0, - Sales: 13245, - COGS: 9740, - Profit: 3505, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2087`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 25044, - Discounts: 0, - Sales: 25044, - COGS: 7554, - Profit: 17490, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2563`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 897050, - Discounts: 0, - Sales: 897050, - COGS: 261560, - Profit: 635490, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2846`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 34152, - Discounts: 0, - Sales: 34152, - COGS: 1101, - Profit: 33051, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `997`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 6979, - Discounts: 0, - Sales: 6979, - COGS: 4415, - Profit: 2564, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2290`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 34350, - Discounts: 0, - Sales: 34350, - COGS: 24720, - Profit: 9630, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2133`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 14931, - Discounts: 0, - Sales: 14931, - COGS: 5715, - Profit: 9216, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3617`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 72340, - Discounts: 0, - Sales: 72340, - COGS: 18170, - Profit: 54170, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1266`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 443100, - Discounts: 0, - Sales: 443100, - COGS: 393380, - Profit: 49720, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `894`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 6258, - Discounts: 0, - Sales: 6258, - COGS: 7465, - Profit: 1207, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `2725`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 340625, - Discounts: 0, - Sales: 340625, - COGS: 216480, - Profit: 124145, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3061`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 36732, - Discounts: 0, - Sales: 36732, - COGS: 6483, - Profit: 30249, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3958`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1385300, - Discounts: 0, - Sales: 1385300, - COGS: 261560, - Profit: 1123740, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3920`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 47040, - Discounts: 0, - Sales: 47040, - COGS: 4635, - Profit: 42405, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3381`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 422625, - Discounts: 0, - Sales: 422625, - COGS: 338520, - Profit: 84105, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4307`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 1292100, - Discounts: 0, - Sales: 1292100, - COGS: 500250, - Profit: 791850, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `878`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 10536, - Discounts: 0, - Sales: 10536, - COGS: 8514, - Profit: 2022, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `496`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 7440, - Discounts: 0, - Sales: 7440, - COGS: 21780, - Profit: 14340, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3367`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 50505, - Discounts: 0, - Sales: 50505, - COGS: 8880, - Profit: 41625, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2055`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 616500, - Discounts: 0, - Sales: 616500, - COGS: 537750, - Profit: 78750, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4041`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 80820, - Discounts: 0, - Sales: 80820, - COGS: 18170, - Profit: 62650, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `3237`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1132950, - Discounts: 0, - Sales: 1132950, - COGS: 715000, - Profit: 417950, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `630`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 7560, - Discounts: 0, - Sales: 7560, - COGS: 5859, - Profit: 1701, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4210`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 526250, - Discounts: 0, - Sales: 526250, - COGS: 506340, - Profit: 19910, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1127`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 22540, - Discounts: 0, - Sales: 22540, - COGS: 18990, - Profit: 3550, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `3438`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 24066, - Discounts: 0, - Sales: 24066, - COGS: 8430, - Profit: 15636, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2015`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 24180, - Discounts: 0, - Sales: 24180, - COGS: 6423, - Profit: 17757, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2534`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 17738, - Discounts: 0, - Sales: 17738, - COGS: 5715, - Profit: 12023, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1384`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 20760, - Discounts: 0, - Sales: 20760, - COGS: 6150, - Profit: 14610, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3561`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 24927, - Discounts: 276.15, - Sales: 24650.85, - COGS: 19725, - Profit: 4925.85, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1823`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 27345, - Discounts: 344.4, - Sales: 27000.6, - COGS: 22960, - Profit: 4040.6, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2795`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 19565, - Discounts: 72.1, - Sales: 19492.9, - COGS: 5150, - Profit: 14342.9, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `457`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 3199, - Discounts: 44.73, - Sales: 3154.27, - COGS: 3195, - Profit: 40.73, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3785`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 26495, - Discounts: 92.82, - Sales: 26402.18, - COGS: 6630, - Profit: 19772.18, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `748`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 8976, - Discounts: 222.96, - Sales: 8753.04, - COGS: 5574, - Profit: 3179.04, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1021`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 357350, - Discounts: 4235, - Sales: 353115, - COGS: 314600, - Profit: 38515, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2076`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 14532, - Discounts: 177.03, - Sales: 14354.97, - COGS: 12645, - Profit: 1709.97, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `4316`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 51792, - Discounts: 173.4, - Sales: 51618.6, - COGS: 4335, - Profit: 47283.6, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `4174`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 50088, - Discounts: 320.52, - Sales: 49767.48, - COGS: 8013, - Profit: 41754.48, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3736`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1307600, - Discounts: 4889.5, - Sales: 1302710.5, - COGS: 363220, - Profit: 939490.5, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1914`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 669900, - Discounts: 7542.5, - Sales: 662357.5, - COGS: 560300, - Profit: 102057.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2742`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 41130, - Discounts: 332.1, - Sales: 40797.9, - COGS: 22140, - Profit: 18657.9, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1499`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 449700, - Discounts: 6903, - Sales: 442797, - COGS: 575250, - Profit: 132453, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3772`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 75440, - Discounts: 275.1, - Sales: 75164.9, - COGS: 13755, - Profit: 61409.9, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1112`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 7784, - Discounts: 128.1, - Sales: 7655.9, - COGS: 9150, - Profit: 1494.1, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2368`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 35520, - Discounts: 227.1, - Sales: 35292.9, - COGS: 15140, - Profit: 20152.9, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1586`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 11102, - Discounts: 314.48, - Sales: 10787.52, - COGS: 22462.5, - Profit: 11674.98, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3386`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 423250, - Discounts: 908.75, - Sales: 422341.25, - COGS: 87240, - Profit: 335101.25, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `852`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 106500, - Discounts: 983.75, - Sales: 105516.25, - COGS: 94440, - Profit: 11076.25, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2783`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 347875, - Discounts: 2278.75, - Sales: 345596.25, - COGS: 218760, - Profit: 126836.25, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2684`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 40260, - Discounts: 112.05, - Sales: 40147.95, - COGS: 7470, - Profit: 32677.95, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4083`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1224900, - Discounts: 8715, - Sales: 1216185, - COGS: 726250, - Profit: 489935, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2816`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 985600, - Discounts: 7542.5, - Sales: 978057.5, - COGS: 560300, - Profit: 417757.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `4294`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 85880, - Discounts: 772.8, - Sales: 85107.2, - COGS: 38640, - Profit: 46467.2, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2856`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 19992, - Discounts: 25.34, - Sales: 19966.66, - COGS: 1810, - Profit: 18156.66, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1407`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 175875, - Discounts: 1153.75, - Sales: 174721.25, - COGS: 110760, - Profit: 63961.25, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1265`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 8855, - Discounts: 18.41, - Sales: 8836.59, - COGS: 1315, - Profit: 7521.59, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3892`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1362200, - Discounts: 3302.25, - Sales: 1358897.75, - COGS: 245310, - Profit: 1113587.75, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `3068`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 383500, - Discounts: 908.75, - Sales: 382591.25, - COGS: 87240, - Profit: 295351.25, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2181`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 272625, - Discounts: 983.75, - Sales: 271641.25, - COGS: 94440, - Profit: 177201.25, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1356`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 406800, - Discounts: 2958, - Sales: 403842, - COGS: 246500, - Profit: 177201.25, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1814`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 634900, - Discounts: 4889.5, - Sales: 630010.5, - COGS: 363220, - Profit: 266790.5, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1495`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 186875, - Discounts: 2180, - Sales: 184695, - COGS: 209280, - Profit: 24585, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1463`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 182875, - Discounts: 1856.25, - Sales: 181018.75, - COGS: 89100, - Profit: 91918.75, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `215`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 2580, - Discounts: 310.8, - Sales: 2269.2, - COGS: 3885, - Profit: 1615.8, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `566`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 198100, - Discounts: 19964, - Sales: 178136, - COGS: 741520, - Profit: 563384, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `3255`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 39060, - Discounts: 274.08, - Sales: 38785.92, - COGS: 3426, - Profit: 35359.92, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `772`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 15440, - Discounts: 626.4, - Sales: 14813.6, - COGS: 15660, - Profit: 846.4, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1135`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 13620, - Discounts: 165.6, - Sales: 13454.4, - COGS: 2070, - Profit: 11384.4, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1193`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 17895, - Discounts: 708.9, - Sales: 17186.1, - COGS: 23630, - Profit: 6443.9, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2530`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 759000, - Discounts: 5508, - Sales: 753492, - COGS: 229500, - Profit: 523992, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3451`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1035300, - Discounts: 10368, - Sales: 1024932, - COGS: 432000, - Profit: 592932, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3059`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 36708, - Discounts: 274.08, - Sales: 36433.92, - COGS: 3426, - Profit: 33007.92, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3957`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 494625, - Discounts: 1655, - Sales: 492970, - COGS: 79440, - Profit: 413530, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3444`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 41328, - Discounts: 310.8, - Sales: 41017.2, - COGS: 3885, - Profit: 37132.2, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3154`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 946200, - Discounts: 11496, - Sales: 934704, - COGS: 479000, - Profit: 455704, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4108`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1437800, - Discounts: 19964, - Sales: 1417836, - COGS: 741520, - Profit: 676316, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3760`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 470000, - Discounts: 6822.5, - Sales: 463177.5, - COGS: 327480, - Profit: 135697.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2334`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 28008, - Discounts: 253.2, - Sales: 27754.8, - COGS: 3165, - Profit: 24589.8, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `580`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 6960, - Discounts: 260.16, - Sales: 6699.84, - COGS: 3252, - Profit: 3447.84, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2610`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 52200, - Discounts: 626.4, - Sales: 51573.6, - COGS: 15660, - Profit: 35913.6, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `1459`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 510650, - Discounts: 20139, - Sales: 490511, - COGS: 748020, - Profit: 257509, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3774`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 45288, - Discounts: 253.2, - Sales: 45034.8, - COGS: 3165, - Profit: 41869.8, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2572`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 30864, - Discounts: 260.16, - Sales: 30603.84, - COGS: 3252, - Profit: 27351.84, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `320`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 40000, - Discounts: 1655, - Sales: 38345, - COGS: 79440, - Profit: 41095, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3275`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1146250, - Discounts: 20139, - Sales: 1126111, - COGS: 748020, - Profit: 378091, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3582`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 447750, - Discounts: 6822.5, - Sales: 440927.5, - COGS: 327480, - Profit: 113447.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4056`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1216800, - Discounts: 1554, - Sales: 1215246, - COGS: 64750, - Profit: 1150496, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2144`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 643200, - Discounts: 6606, - Sales: 636594, - COGS: 275250, - Profit: 361344, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `3502`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 437750, - Discounts: 5690, - Sales: 432060, - COGS: 273120, - Profit: 158940, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `679`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 13580, - Discounts: 494.4, - Sales: 13085.6, - COGS: 12360, - Profit: 725.6, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2351`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 47020, - Discounts: 376.4, - Sales: 46643.6, - COGS: 9410, - Profit: 37233.6, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2043`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 612900, - Discounts: 11496, - Sales: 601404, - COGS: 479000, - Profit: 122404, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `3565`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 445625, - Discounts: 15913.13, - Sales: 429711.88, - COGS: 509220, - Profit: 79508.13, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1401`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 28020, - Discounts: 1548, - Sales: 26472, - COGS: 25800, - Profit: 672, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2077`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 623100, - Discounts: 6201, - Sales: 616899, - COGS: 172250, - Profit: 444649, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `3643`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 43716, - Discounts: 700.92, - Sales: 43015.08, - COGS: 5841, - Profit: 37174.08, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2960`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 20720, - Discounts: 411.18, - Sales: 20308.82, - COGS: 9790, - Profit: 10518.82, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1201`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 14412, - Discounts: 684.36, - Sales: 13727.64, - COGS: 5703, - Profit: 8024.64, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `2321`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 16247, - Discounts: 114.24, - Sales: 16132.76, - COGS: 2720, - Profit: 13412.76, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3972`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 496500, - Discounts: 4826.25, - Sales: 491673.75, - COGS: 154440, - Profit: 337233.75, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3878`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 484750, - Discounts: 6397.5, - Sales: 478352.5, - COGS: 204720, - Profit: 273632.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2278`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 683400, - Discounts: 21910.5, - Sales: 661489.5, - COGS: 608625, - Profit: 52864.5, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1075`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 134375, - Discounts: 6652.5, - Sales: 127722.5, - COGS: 212880, - Profit: 85157.5, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `4050`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 48600, - Discounts: 684.36, - Sales: 47915.64, - COGS: 5703, - Profit: 42212.64, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3035`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 910500, - Discounts: 6201, - Sales: 904299, - COGS: 172250, - Profit: 732049, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3636`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 454500, - Discounts: 5887.5, - Sales: 448612.5, - COGS: 188400, - Profit: 260212.5, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1379`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 16548, - Discounts: 493.02, - Sales: 16054.98, - COGS: 4108.5, - Profit: 11946.48, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4492`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 561500, - Discounts: 7533.75, - Sales: 553966.25, - COGS: 241080, - Profit: 312886.25, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1744`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 218000, - Discounts: 4826.25, - Sales: 213173.75, - COGS: 154440, - Profit: 58733.75, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2341`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 292625, - Discounts: 6397.5, - Sales: 286227.5, - COGS: 204720, - Profit: 81507.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3835`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 479375, - Discounts: 7533.75, - Sales: 471841.25, - COGS: 241080, - Profit: 230761.25, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1161`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 348300, - Discounts: 25596, - Sales: 322704, - COGS: 711000, - Profit: 388296, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `876`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 10512, - Discounts: 689.76, - Sales: 9822.24, - COGS: 5748, - Profit: 4074.24, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1705`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 213125, - Discounts: 5887.5, - Sales: 207237.5, - COGS: 188400, - Profit: 18837.5, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1805`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 541500, - Discounts: 16866, - Sales: 524634, - COGS: 468500, - Profit: 56134, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `389`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 136150, - Discounts: 17241, - Sales: 118909, - COGS: 426920, - Profit: 308011, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1459`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 29180, - Discounts: 498.6, - Sales: 28681.4, - COGS: 8310, - Profit: 20371.4, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `4236`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 84720, - Discounts: 2310.3, - Sales: 82409.7, - COGS: 38505, - Profit: 43904.7, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3627`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 43524, - Discounts: 892.44, - Sales: 42631.56, - COGS: 7437, - Profit: 35194.56, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1756`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 26340, - Discounts: 1218.6, - Sales: 25121.4, - COGS: 20310, - Profit: 4811.4, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `307`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 4605, - Discounts: 1218.6, - Sales: 3386.4, - COGS: 20310, - Profit: 16923.6, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1222`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 366600, - Discounts: 24252, - Sales: 342348, - COGS: 505250, - Profit: 162902, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `489`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 171150, - Discounts: 3836, - Sales: 167314, - COGS: 71240, - Profit: 96074, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4133`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 61995, - Discounts: 1180.2, - Sales: 60814.8, - COGS: 19670, - Profit: 41144.8, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2743`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 822900, - Discounts: 22308, - Sales: 800592, - COGS: 464750, - Profit: 335842, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `4460`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1338000, - Discounts: 24252, - Sales: 1313748, - COGS: 505250, - Profit: 808498, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1232`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 154000, - Discounts: 5690, - Sales: 148310, - COGS: 136560, - Profit: 11750, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2586`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 18102, - Discounts: 1190.28, - Sales: 16911.72, - COGS: 21255, - Profit: 4343.28, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1332`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 166500, - Discounts: 3975, - Sales: 162525, - COGS: 95400, - Profit: 67125, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4487`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1346100, - Discounts: 16974, - Sales: 1329126, - COGS: 353625, - Profit: 975501, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3862`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1158600, - Discounts: 35016, - Sales: 1123584, - COGS: 729500, - Profit: 394084, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1765`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 617750, - Discounts: 48300, - Sales: 569450, - COGS: 897000, - Profit: 327550, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3533`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 441625, - Discounts: 14940, - Sales: 426685, - COGS: 358560, - Profit: 68125, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2016`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 30240, - Discounts: 130.8, - Sales: 30109.2, - COGS: 2180, - Profit: 27929.2, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2938`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 58760, - Discounts: 1659.2, - Sales: 57100.8, - COGS: 20740, - Profit: 36360.8, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3352`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 67040, - Discounts: 844.8, - Sales: 66195.2, - COGS: 10560, - Profit: 55635.2, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2430`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 850500, - Discounts: 3836, - Sales: 846664, - COGS: 71240, - Profit: 775424, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `535`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 66875, - Discounts: 5690, - Sales: 61185, - COGS: 136560, - Profit: 75375, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1523`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 18276, - Discounts: 703.2, - Sales: 17572.8, - COGS: 4395, - Profit: 13177.8, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1782`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 623700, - Discounts: 30478, - Sales: 593222, - COGS: 566020, - Profit: 27202, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `347`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 4164, - Discounts: 415.68, - Sales: 3748.32, - COGS: 2598, - Profit: 1150.32, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3509`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1228150, - Discounts: 30478, - Sales: 1197672, - COGS: 566020, - Profit: 631652, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2943`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1030050, - Discounts: 26110, - Sales: 1003940, - COGS: 484900, - Profit: 519040, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `4037`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 504625, - Discounts: 5370, - Sales: 499255, - COGS: 128880, - Profit: 370375, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4146`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1451100, - Discounts: 26698, - Sales: 1424402, - COGS: 495820, - Profit: 928582, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `725`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 5075, - Discounts: 480.2, - Sales: 4594.8, - COGS: 6860, - Profit: 2265.2, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2325`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 16275, - Discounts: 941.15, - Sales: 15333.85, - COGS: 13445, - Profit: 1888.85, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `675`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 8100, - Discounts: 1458.6, - Sales: 6641.4, - COGS: 7293, - Profit: 651.6, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2990`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 35880, - Discounts: 1458.6, - Sales: 34421.4, - COGS: 7293, - Profit: 27128.4, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1072`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 7504, - Discounts: 941.15, - Sales: 6562.85, - COGS: 13445, - Profit: 6882.15, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1048`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 7336, - Discounts: 589.05, - Sales: 6746.95, - COGS: 8415, - Profit: 1668.05, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `469`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 5628, - Discounts: 673.8, - Sales: 4954.2, - COGS: 3369, - Profit: 1585.2, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `4240`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 50880, - Discounts: 1119, - Sales: 49761, - COGS: 5595, - Profit: 44166, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1976`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 23712, - Discounts: 669.6, - Sales: 23042.4, - COGS: 3348, - Profit: 19694.4, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1984`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 39680, - Discounts: 1563, - Sales: 38117, - COGS: 15630, - Profit: 22487, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `480`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 144000, - Discounts: 14865, - Sales: 129135, - COGS: 247750, - Profit: 118615, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1205`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 18075, - Discounts: 2093.25, - Sales: 15981.75, - COGS: 27910, - Profit: 11928.25, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2480`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 17360, - Discounts: 199.5, - Sales: 17160.5, - COGS: 2850, - Profit: 14310.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `2926`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 20482, - Discounts: 870.45, - Sales: 19611.55, - COGS: 12435, - Profit: 7176.55, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3210`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1123500, - Discounts: 24228.75, - Sales: 1099271.25, - COGS: 359970, - Profit: 739301.25, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `3221`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 402625, - Discounts: 22668.75, - Sales: 379956.25, - COGS: 435240, - Profit: 55283.75, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `1127`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 13524, - Discounts: 1405.2, - Sales: 12118.8, - COGS: 7026, - Profit: 5092.8, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1610`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 32200, - Discounts: 1303, - Sales: 30897, - COGS: 13030, - Profit: 17867, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4100`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 512500, - Discounts: 18700, - Sales: 493800, - COGS: 359040, - Profit: 134760, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1012`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 126500, - Discounts: 14906.25, - Sales: 111593.75, - COGS: 286200, - Profit: 174606.25, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3337`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1001100, - Discounts: 24105, - Sales: 976995, - COGS: 401750, - Profit: 575245, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3955`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 27685, - Discounts: 814.45, - Sales: 26870.55, - COGS: 11635, - Profit: 15235.55, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4347`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1304100, - Discounts: 14865, - Sales: 1289235, - COGS: 247750, - Profit: 1041485, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1548`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 541800, - Discounts: 10535, - Sales: 531265, - COGS: 156520, - Profit: 374745, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2153`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 32295, - Discounts: 1965, - Sales: 30330, - COGS: 26200, - Profit: 4130, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4126`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 515750, - Discounts: 5381.25, - Sales: 510368.75, - COGS: 103320, - Profit: 407048.75, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3376`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 67520, - Discounts: 2663, - Sales: 64857, - COGS: 26630, - Profit: 38227, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2244`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 33660, - Discounts: 416.25, - Sales: 33243.75, - COGS: 5550, - Profit: 27693.75, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `1360`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 20400, - Discounts: 2145.75, - Sales: 18254.25, - COGS: 28610, - Profit: 10355.75, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `279`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 34875, - Discounts: 5043.75, - Sales: 29831.25, - COGS: 96840, - Profit: 67008.75, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2521`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 882350, - Discounts: 10535, - Sales: 871815, - COGS: 156520, - Profit: 715295, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2433`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 48660, - Discounts: 2832, - Sales: 45828, - COGS: 28320, - Profit: 17508, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1738`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 34760, - Discounts: 1579, - Sales: 33181, - COGS: 15790, - Profit: 17391, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1106`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 138250, - Discounts: 5381.25, - Sales: 132868.75, - COGS: 103320, - Profit: 29548.75, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `213`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 63900, - Discounts: 18750, - Sales: 45150, - COGS: 312500, - Profit: 267350, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2929`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 58580, - Discounts: 2663, - Sales: 55917, - COGS: 26630, - Profit: 29287, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2389`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 16723, - Discounts: 199.5, - Sales: 16523.5, - COGS: 2850, - Profit: 13673.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3086`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 21602, - Discounts: 870.45, - Sales: 20731.55, - COGS: 12435, - Profit: 8296.55, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `745`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 260750, - Discounts: 23625, - Sales: 237125, - COGS: 351000, - Profit: 113875, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1266`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 443100, - Discounts: 9660, - Sales: 433440, - COGS: 143520, - Profit: 289920, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4287`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1286100, - Discounts: 18750, - Sales: 1267350, - COGS: 312500, - Profit: 954850, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3193`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 47895, - Discounts: 3420.9, - Sales: 44474.1, - COGS: 38010, - Profit: 6464.1, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1967`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 39340, - Discounts: 1341, - Sales: 37999, - COGS: 11175, - Profit: 26824, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `631`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 9465, - Discounts: 2559.6, - Sales: 6905.4, - COGS: 28440, - Profit: 21534.6, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3469`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 41628, - Discounts: 404.64, - Sales: 41223.36, - COGS: 1686, - Profit: 39537.36, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `3215`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 48225, - Discounts: 1827, - Sales: 46398, - COGS: 20300, - Profit: 26098, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1959`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 685650, - Discounts: 20580, - Sales: 665070, - COGS: 254800, - Profit: 410270, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2181`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 763350, - Discounts: 30660, - Sales: 732690, - COGS: 379600, - Profit: 353090, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2205`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 26460, - Discounts: 1960.56, - Sales: 24499.44, - COGS: 8169, - Profit: 16330.44, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1890`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 661500, - Discounts: 31416, - Sales: 630084, - COGS: 388960, - Profit: 241124, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2417`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 302125, - Discounts: 7140, - Sales: 294985, - COGS: 114240, - Profit: 180745, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1158`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 144750, - Discounts: 20662.5, - Sales: 124087.5, - COGS: 330600, - Profit: 206512.5, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `803`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 12045, - Discounts: 1377, - Sales: 10668, - COGS: 15300, - Profit: 4632, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3705`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1296750, - Discounts: 31416, - Sales: 1265334, - COGS: 388960, - Profit: 876374, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `589`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 4123, - Discounts: 629.16, - Sales: 3493.84, - COGS: 7490, - Profit: 3996.16, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3999`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 59985, - Discounts: 2559.6, - Sales: 57425.4, - COGS: 28440, - Profit: 28985.4, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `4256`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 29792, - Discounts: 629.16, - Sales: 29162.84, - COGS: 7490, - Profit: 21672.84, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2160`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 270000, - Discounts: 14906.25, - Sales: 255093.75, - COGS: 238500, - Profit: 16593.75, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `466`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 163100, - Discounts: 35259, - Sales: 127841, - COGS: 436540, - Profit: 308699, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1478`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 22170, - Discounts: 1978.2, - Sales: 20191.8, - COGS: 21980, - Profit: 1788.2, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3798`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 56970, - Discounts: 1568.7, - Sales: 55401.3, - COGS: 17430, - Profit: 37971.3, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `447`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 6705, - Discounts: 1037.7, - Sales: 5667.3, - COGS: 11530, - Profit: 5862.7, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `745`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 14900, - Discounts: 1201.2, - Sales: 13698.8, - COGS: 10010, - Profit: 3688.8, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `1732`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 12124, - Discounts: 559.86, - Sales: 11564.14, - COGS: 6665, - Profit: 4899.14, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1759`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 26385, - Discounts: 1037.7, - Sales: 25347.3, - COGS: 11530, - Profit: 13817.3, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `338`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 4056, - Discounts: 610.68, - Sales: 3445.32, - COGS: 2181, - Profit: 1264.32, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `3911`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 46932, - Discounts: 1582.56, - Sales: 45349.44, - COGS: 5652, - Profit: 39697.44, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `4473`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 53676, - Discounts: 1965.6, - Sales: 51710.4, - COGS: 7020, - Profit: 44690.4, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `383`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 4596, - Discounts: 1967.28, - Sales: 2628.72, - COGS: 7026, - Profit: 4397.28, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1062`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 15930, - Discounts: 1325.1, - Sales: 14604.9, - COGS: 12620, - Profit: 1984.9, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `4083`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 28581, - Discounts: 556.15, - Sales: 28024.85, - COGS: 5675, - Profit: 22349.85, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3974`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 27818, - Discounts: 268.03, - Sales: 27549.97, - COGS: 2735, - Profit: 24814.97, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3723`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 26061, - Discounts: 775.18, - Sales: 25285.82, - COGS: 7910, - Profit: 17375.82, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2435`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 29220, - Discounts: 1460.34, - Sales: 27759.66, - COGS: 5215.5, - Profit: 22544.16, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1763`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 12341, - Discounts: 775.18, - Sales: 11565.82, - COGS: 7910, - Profit: 3655.82, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `4473`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 31311, - Discounts: 556.15, - Sales: 30754.85, - COGS: 5675, - Profit: 25079.85, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1246`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 436100, - Discounts: 43144.5, - Sales: 392955.5, - COGS: 457860, - Profit: 64904.5, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1615`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 484500, - Discounts: 9408, - Sales: 475092, - COGS: 112000, - Profit: 363092, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `749`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 224700, - Discounts: 45801, - Sales: 178899, - COGS: 545250, - Profit: 366351, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1318`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 26360, - Discounts: 2766.4, - Sales: 23593.6, - COGS: 19760, - Profit: 3833.6, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `2882`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 864600, - Discounts: 45801, - Sales: 818799, - COGS: 545250, - Profit: 273549, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2484`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 745200, - Discounts: 35742, - Sales: 709458, - COGS: 425500, - Profit: 283958, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3169`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 950700, - Discounts: 9408, - Sales: 941292, - COGS: 112000, - Profit: 829292, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4080`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 510000, - Discounts: 30738.75, - Sales: 479261.25, - COGS: 421560, - Profit: 57701.25, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3943`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 59145, - Discounts: 2206.05, - Sales: 56938.95, - COGS: 21010, - Profit: 35928.95, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `253`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 5060, - Discounts: 2149, - Sales: 2911, - COGS: 15350, - Profit: 12439, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `799`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 239700, - Discounts: 34839, - Sales: 204861, - COGS: 414750, - Profit: 209889, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3942`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 78840, - Discounts: 852.6, - Sales: 77987.4, - COGS: 6090, - Profit: 71897.4, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2498`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 312250, - Discounts: 18261.25, - Sales: 293988.75, - COGS: 250440, - Profit: 43548.75, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `2517`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 50340, - Discounts: 2766.4, - Sales: 47573.6, - COGS: 19760, - Profit: 27813.6, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1145`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 343500, - Discounts: 28812, - Sales: 314688, - COGS: 343000, - Profit: 28312, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3814`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 45768, - Discounts: 2725.38, - Sales: 43042.62, - COGS: 9733.5, - Profit: 33309.12, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1188`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 356400, - Discounts: 20139, - Sales: 336261, - COGS: 239750, - Profit: 96511, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `2233`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 669900, - Discounts: 57687, - Sales: 612213, - COGS: 686750, - Profit: 74537, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `421`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 52625, - Discounts: 14393.75, - Sales: 38231.25, - COGS: 197400, - Profit: 159168.75, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `269`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 94150, - Discounts: 70462, - Sales: 23688, - COGS: 747760, - Profit: 724072, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `952`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 19040, - Discounts: 1565.2, - Sales: 17474.8, - COGS: 11180, - Profit: 6294.8, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2964`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 889200, - Discounts: 28812, - Sales: 860388, - COGS: 343000, - Profit: 517388, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1505`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 10535, - Discounts: 273.28, - Sales: 10261.72, - COGS: 2440, - Profit: 7821.72, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1678`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 33560, - Discounts: 2051.2, - Sales: 31508.8, - COGS: 12820, - Profit: 18688.8, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4249`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 29743, - Discounts: 143.92, - Sales: 29599.08, - COGS: 1285, - Profit: 28314.08, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1677`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 33540, - Discounts: 2051.2, - Sales: 31488.8, - COGS: 12820, - Profit: 18668.8, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3051`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 381375, - Discounts: 15400, - Sales: 365975, - COGS: 184800, - Profit: 181175, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `3372`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 50580, - Discounts: 588, - Sales: 49992, - COGS: 4900, - Profit: 45092, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1686`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 590100, - Discounts: 38136, - Sales: 551964, - COGS: 354120, - Profit: 197844, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3086`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 46290, - Discounts: 3001.2, - Sales: 43288.8, - COGS: 25010, - Profit: 18278.8, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4150`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 83000, - Discounts: 1132.8, - Sales: 81867.2, - COGS: 7080, - Profit: 74787.2, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3027`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 60540, - Discounts: 1032, - Sales: 59508, - COGS: 6450, - Profit: 53058, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `4359`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1307700, - Discounts: 37488, - Sales: 1270212, - COGS: 390500, - Profit: 879712, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `1589`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 23835, - Discounts: 853.2, - Sales: 22981.8, - COGS: 7110, - Profit: 15871.8, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2679`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 334875, - Discounts: 11140, - Sales: 323735, - COGS: 133680, - Profit: 190055, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3401`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 23807, - Discounts: 705.04, - Sales: 23101.96, - COGS: 6295, - Profit: 16806.96, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2815`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 19705, - Discounts: 613.2, - Sales: 19091.8, - COGS: 5475, - Profit: 13616.8, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2964`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 59280, - Discounts: 2185.6, - Sales: 57094.4, - COGS: 13660, - Profit: 43434.4, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `4173`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1251900, - Discounts: 59040, - Sales: 1192860, - COGS: 615000, - Profit: 577860, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1157`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 8099, - Discounts: 379.68, - Sales: 7719.32, - COGS: 3390, - Profit: 4329.32, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3065`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 21455, - Discounts: 894.88, - Sales: 20560.12, - COGS: 7990, - Profit: 12570.12, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4080`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 81600, - Discounts: 3094.4, - Sales: 78505.6, - COGS: 19340, - Profit: 59165.6, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1713`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34260, - Discounts: 4788.8, - Sales: 29471.2, - COGS: 29930, - Profit: 458.8, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1691`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 591850, - Discounts: 38136, - Sales: 553714, - COGS: 354120, - Profit: 199594, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2305`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 27660, - Discounts: 574.08, - Sales: 27085.92, - COGS: 1794, - Profit: 25291.92, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3401`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 23807, - Discounts: 1627.92, - Sales: 22179.08, - COGS: 14535, - Profit: 7644.08, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2288`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 16016, - Discounts: 1309.28, - Sales: 14706.72, - COGS: 11690, - Profit: 3016.72, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `4086`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1225800, - Discounts: 15240, - Sales: 1210560, - COGS: 158750, - Profit: 1051810, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2651`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 927850, - Discounts: 16086, - Sales: 911764, - COGS: 149370, - Profit: 762394, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3971`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 27797, - Discounts: 1309.28, - Sales: 26487.72, - COGS: 11690, - Profit: 14797.72, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2512`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 879200, - Discounts: 10668, - Sales: 868532, - COGS: 99060, - Profit: 769472, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2745`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 960750, - Discounts: 11816, - Sales: 948934, - COGS: 109720, - Profit: 839214, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1903`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 570900, - Discounts: 51216, - Sales: 519684, - COGS: 533500, - Profit: 13816, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2914`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 58280, - Discounts: 1132.8, - Sales: 57147.2, - COGS: 7080, - Profit: 50067.2, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1889`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 13223, - Discounts: 1627.92, - Sales: 11595.08, - COGS: 14535, - Profit: 2939.92, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1466`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 29320, - Discounts: 2185.6, - Sales: 27134.4, - COGS: 13660, - Profit: 13474.4, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `887`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 266100, - Discounts: 59040, - Sales: 207060, - COGS: 615000, - Profit: 407940, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `395`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 7900, - Discounts: 2432, - Sales: 5468, - COGS: 15200, - Profit: 9732, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1693`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 25395, - Discounts: 853.2, - Sales: 24541.8, - COGS: 7110, - Profit: 17431.8, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2649`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 794700, - Discounts: 15240, - Sales: 779460, - COGS: 158750, - Profit: 620710, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `3608`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 72160, - Discounts: 698.4, - Sales: 71461.6, - COGS: 4365, - Profit: 67096.6, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1073`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 321900, - Discounts: 29538, - Sales: 292362, - COGS: 273500, - Profit: 18862, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `2167`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 650100, - Discounts: 102667.5, - Sales: 547432.5, - COGS: 950625, - Profit: 403192.5, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1319`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 461650, - Discounts: 52479, - Sales: 409171, - COGS: 433160, - Profit: 23989, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1252`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 15024, - Discounts: 2506.68, - Sales: 12517.32, - COGS: 6963, - Profit: 5554.32, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1156`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 144500, - Discounts: 31466.25, - Sales: 113033.75, - COGS: 335640, - Profit: 222606.25, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1153`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 345900, - Discounts: 69255, - Sales: 276645, - COGS: 641250, - Profit: 364605, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2720`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 952000, - Discounts: 76135.5, - Sales: 875864.5, - COGS: 628420, - Profit: 247444.5, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3658`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 54870, - Discounts: 4961.25, - Sales: 49908.75, - COGS: 36750, - Profit: 13158.75, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2950`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 885000, - Discounts: 29538, - Sales: 855462, - COGS: 273500, - Profit: 581962, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1821`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 27315, - Discounts: 1656.45, - Sales: 25658.55, - COGS: 12270, - Profit: 13388.55, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1127`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 338100, - Discounts: 35748, - Sales: 302352, - COGS: 331000, - Profit: 28648, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `862`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 107750, - Discounts: 31466.25, - Sales: 76283.75, - COGS: 335640, - Profit: 259356.25, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3805`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 57075, - Discounts: 330.75, - Sales: 56744.25, - COGS: 2450, - Profit: 54294.25, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1415`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 424500, - Discounts: 102424.5, - Sales: 322075.5, - COGS: 948375, - Profit: 626299.5, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2231`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 780850, - Discounts: 41170.5, - Sales: 739679.5, - COGS: 339820, - Profit: 399859.5, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3649`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 456125, - Discounts: 6378.75, - Sales: 449746.25, - COGS: 68040, - Profit: 381706.25, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2948`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 368500, - Discounts: 23737.5, - Sales: 344762.5, - COGS: 253200, - Profit: 91562.5, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3395`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1188250, - Discounts: 39973.5, - Sales: 1148276.5, - COGS: 329940, - Profit: 818336.5, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2650`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 31800, - Discounts: 2112.48, - Sales: 29687.52, - COGS: 5868, - Profit: 23819.52, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `585`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 175500, - Discounts: 71793, - Sales: 103707, - COGS: 664750, - Profit: 561043, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1316`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 460600, - Discounts: 42572.25, - Sales: 418027.75, - COGS: 351390, - Profit: 66637.75, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `4459`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 53508, - Discounts: 950.4, - Sales: 52557.6, - COGS: 2640, - Profit: 49917.6, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2711`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 813300, - Discounts: 50409, - Sales: 762891, - COGS: 466750, - Profit: 296141, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3613`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 54195, - Discounts: 1656.45, - Sales: 52538.55, - COGS: 12270, - Profit: 40268.55, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1847`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 230875, - Discounts: 9866.25, - Sales: 221008.75, - COGS: 105240, - Profit: 115768.75, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2996`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1048600, - Discounts: 65236.5, - Sales: 983363.5, - COGS: 538460, - Profit: 444903.5, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2838`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 993300, - Discounts: 39973.5, - Sales: 953326.5, - COGS: 329940, - Profit: 623386.5, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1536`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 30720, - Discounts: 3049.2, - Sales: 27670.8, - COGS: 16940, - Profit: 10730.8, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1291`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 25820, - Discounts: 1193.4, - Sales: 24626.6, - COGS: 6630, - Profit: 17996.6, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1213`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 8491, - Discounts: 515.97, - Sales: 7975.03, - COGS: 4095, - Profit: 3880.03, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2370`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 28440, - Discounts: 1706.4, - Sales: 26733.6, - COGS: 4740, - Profit: 21993.6, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1979`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 13853, - Discounts: 328.23, - Sales: 13524.77, - COGS: 2605, - Profit: 10919.77, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2879`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 57580, - Discounts: 1751.4, - Sales: 55828.6, - COGS: 9730, - Profit: 46098.6, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1707`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34140, - Discounts: 1868.4, - Sales: 32271.6, - COGS: 10380, - Profit: 21891.6, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2933`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 20531, - Discounts: 226.8, - Sales: 20304.2, - COGS: 1800, - Profit: 18504.2, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1014`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 12168, - Discounts: 2124.36, - Sales: 10043.64, - COGS: 5901, - Profit: 4142.64, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `693`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 10395, - Discounts: 3547.8, - Sales: 6847.2, - COGS: 26280, - Profit: 19432.8, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3741`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 26187, - Discounts: 226.8, - Sales: 25960.2, - COGS: 1800, - Profit: 24160.2, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `3995`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 27965, - Discounts: 328.23, - Sales: 27636.77, - COGS: 2605, - Profit: 25031.77, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `953`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 19060, - Discounts: 1868.4, - Sales: 17191.6, - COGS: 10380, - Profit: 6811.6, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2530`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 37950, - Discounts: 2201.18, - Sales: 35748.82, - COGS: 16305, - Profit: 19443.82, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1372`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 27440, - Discounts: 0, - Sales: 27440, - COGS: 16185, - Profit: 11255, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2762`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 55240, - Discounts: 0, - Sales: 55240, - COGS: 13210, - Profit: 42030, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1464`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 21960, - Discounts: 0, - Sales: 21960, - COGS: 21780, - Profit: 180, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `719`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 10785, - Discounts: 0, - Sales: 10785, - COGS: 8880, - Profit: 1905, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3576`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 53640, - Discounts: 0, - Sales: 53640, - COGS: 24700, - Profit: 28940, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `4422`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1547700, - Discounts: 0, - Sales: 1547700, - COGS: 393380, - Profit: 1154320, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3649`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 54735, - Discounts: 0, - Sales: 54735, - COGS: 9210, - Profit: 45525, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4172`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 50064, - Discounts: 0, - Sales: 50064, - COGS: 7554, - Profit: 42510, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3841`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 76820, - Discounts: 0, - Sales: 76820, - COGS: 18990, - Profit: 57830, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3726`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 44712, - Discounts: 0, - Sales: 44712, - COGS: 4635, - Profit: 40077, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2625`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 39375, - Discounts: 0, - Sales: 39375, - COGS: 24700, - Profit: 14675, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1958`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 244750, - Discounts: 0, - Sales: 244750, - COGS: 319860, - Profit: 75110, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `3271`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 981300, - Discounts: 0, - Sales: 981300, - COGS: 239500, - Profit: 741800, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2091`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 14637, - Discounts: 0, - Sales: 14637, - COGS: 10730, - Profit: 3907, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `2530`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 316250, - Discounts: 0, - Sales: 316250, - COGS: 41400, - Profit: 274850, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2825`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 42375, - Discounts: 0, - Sales: 42375, - COGS: 6150, - Profit: 36225, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2513`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 50260, - Discounts: 0, - Sales: 50260, - COGS: 2920, - Profit: 47340, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `883`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 13245, - Discounts: 0, - Sales: 13245, - COGS: 9740, - Profit: 3505, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2087`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 25044, - Discounts: 0, - Sales: 25044, - COGS: 7554, - Profit: 17490, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2563`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 897050, - Discounts: 0, - Sales: 897050, - COGS: 261560, - Profit: 635490, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2846`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 34152, - Discounts: 0, - Sales: 34152, - COGS: 1101, - Profit: 33051, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `997`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 6979, - Discounts: 0, - Sales: 6979, - COGS: 4415, - Profit: 2564, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3421`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 51315, - Discounts: 0, - Sales: 51315, - COGS: 5490, - Profit: 45825, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Marchesa`, - UnitsSold: `70000`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 1050000, - Discounts: 0, - Sales: 1050000, - COGS: 5490, - Profit: 1044510, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2291`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 687300, - Discounts: 0, - Sales: 687300, - COGS: 197000, - Profit: 490300, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2290`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 34350, - Discounts: 0, - Sales: 34350, - COGS: 24720, - Profit: 9630, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2133`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 14931, - Discounts: 0, - Sales: 14931, - COGS: 5715, - Profit: 9216, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3475`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1216250, - Discounts: 0, - Sales: 1216250, - COGS: 448500, - Profit: 767750, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3686`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 44232, - Discounts: 0, - Sales: 44232, - COGS: 2736, - Profit: 41496, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3319`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 49785, - Discounts: 0, - Sales: 49785, - COGS: 21520, - Profit: 28265, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3617`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 72340, - Discounts: 0, - Sales: 72340, - COGS: 18170, - Profit: 54170, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1266`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 443100, - Discounts: 0, - Sales: 443100, - COGS: 393380, - Profit: 49720, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `894`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 6258, - Discounts: 0, - Sales: 6258, - COGS: 7465, - Profit: 1207, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `2725`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 340625, - Discounts: 0, - Sales: 340625, - COGS: 216480, - Profit: 124145, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3061`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 36732, - Discounts: 0, - Sales: 36732, - COGS: 6483, - Profit: 30249, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3958`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1385300, - Discounts: 0, - Sales: 1385300, - COGS: 261560, - Profit: 1123740, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3920`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 47040, - Discounts: 0, - Sales: 47040, - COGS: 4635, - Profit: 42405, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3381`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 422625, - Discounts: 0, - Sales: 422625, - COGS: 338520, - Profit: 84105, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1094`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 136750, - Discounts: 0, - Sales: 136750, - COGS: 41400, - Profit: 95350, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4307`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 1292100, - Discounts: 0, - Sales: 1292100, - COGS: 500250, - Profit: 791850, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `878`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 10536, - Discounts: 0, - Sales: 10536, - COGS: 8514, - Profit: 2022, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `496`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 7440, - Discounts: 0, - Sales: 7440, - COGS: 21780, - Profit: 14340, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3367`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 50505, - Discounts: 0, - Sales: 50505, - COGS: 8880, - Profit: 41625, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3880`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1358000, - Discounts: 0, - Sales: 1358000, - COGS: 397020, - Profit: 960980, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2055`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 616500, - Discounts: 0, - Sales: 616500, - COGS: 537750, - Profit: 78750, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4041`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 80820, - Discounts: 0, - Sales: 80820, - COGS: 18170, - Profit: 62650, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `3237`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1132950, - Discounts: 0, - Sales: 1132950, - COGS: 715000, - Profit: 417950, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `630`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 7560, - Discounts: 0, - Sales: 7560, - COGS: 5859, - Profit: 1701, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4210`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 526250, - Discounts: 0, - Sales: 526250, - COGS: 506340, - Profit: 19910, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1127`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 22540, - Discounts: 0, - Sales: 22540, - COGS: 18990, - Profit: 3550, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `3438`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 24066, - Discounts: 0, - Sales: 24066, - COGS: 8430, - Profit: 15636, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2015`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 24180, - Discounts: 0, - Sales: 24180, - COGS: 6423, - Profit: 17757, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2534`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 17738, - Discounts: 0, - Sales: 17738, - COGS: 5715, - Profit: 12023, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1384`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 20760, - Discounts: 0, - Sales: 20760, - COGS: 6150, - Profit: 14610, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3561`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 24927, - Discounts: 276.15, - Sales: 24650.85, - COGS: 19725, - Profit: 4925.85, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1823`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 27345, - Discounts: 344.4, - Sales: 27000.6, - COGS: 22960, - Profit: 4040.6, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2795`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 19565, - Discounts: 72.1, - Sales: 19492.9, - COGS: 5150, - Profit: 14342.9, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `457`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 3199, - Discounts: 44.73, - Sales: 3154.27, - COGS: 3195, - Profit: 40.73, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3785`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 26495, - Discounts: 92.82, - Sales: 26402.18, - COGS: 6630, - Profit: 19772.18, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `748`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 8976, - Discounts: 222.96, - Sales: 8753.04, - COGS: 5574, - Profit: 3179.04, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1021`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 357350, - Discounts: 4235, - Sales: 353115, - COGS: 314600, - Profit: 38515, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2076`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 14532, - Discounts: 177.03, - Sales: 14354.97, - COGS: 12645, - Profit: 1709.97, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `4316`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 51792, - Discounts: 173.4, - Sales: 51618.6, - COGS: 4335, - Profit: 47283.6, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2654`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 331750, - Discounts: 412.5, - Sales: 331337.5, - COGS: 39600, - Profit: 291737.5, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `4174`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 50088, - Discounts: 320.52, - Sales: 49767.48, - COGS: 8013, - Profit: 41754.48, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1675`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 20100, - Discounts: 91.92, - Sales: 20008.08, - COGS: 2298, - Profit: 17710.08, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1572`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 471600, - Discounts: 1482, - Sales: 470118, - COGS: 123500, - Profit: 346618, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3736`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1307600, - Discounts: 4889.5, - Sales: 1302710.5, - COGS: 363220, - Profit: 939490.5, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1914`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 669900, - Discounts: 7542.5, - Sales: 662357.5, - COGS: 560300, - Profit: 102057.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2742`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 41130, - Discounts: 332.1, - Sales: 40797.9, - COGS: 22140, - Profit: 18657.9, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1499`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 449700, - Discounts: 6903, - Sales: 442797, - COGS: 575250, - Profit: 132453, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3772`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 75440, - Discounts: 275.1, - Sales: 75164.9, - COGS: 13755, - Profit: 61409.9, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1112`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 7784, - Discounts: 128.1, - Sales: 7655.9, - COGS: 9150, - Profit: 1494.1, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1723`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 516900, - Discounts: 7494, - Sales: 509406, - COGS: 624500, - Profit: 115094, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `423`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 52875, - Discounts: 828.75, - Sales: 52046.25, - COGS: 79560, - Profit: 27513.75, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2368`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 35520, - Discounts: 227.1, - Sales: 35292.9, - COGS: 15140, - Profit: 20152.9, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1586`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 11102, - Discounts: 314.48, - Sales: 10787.52, - COGS: 22462.5, - Profit: 11674.98, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3386`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 423250, - Discounts: 908.75, - Sales: 422341.25, - COGS: 87240, - Profit: 335101.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `852`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 106500, - Discounts: 983.75, - Sales: 105516.25, - COGS: 94440, - Profit: 11076.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2783`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 347875, - Discounts: 2278.75, - Sales: 345596.25, - COGS: 218760, - Profit: 126836.25, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2684`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 40260, - Discounts: 112.05, - Sales: 40147.95, - COGS: 7470, - Profit: 32677.95, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4393`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 52716, - Discounts: 91.92, - Sales: 52624.08, - COGS: 2298, - Profit: 50326.08, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4083`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1224900, - Discounts: 8715, - Sales: 1216185, - COGS: 726250, - Profit: 489935, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2816`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 985600, - Discounts: 7542.5, - Sales: 978057.5, - COGS: 560300, - Profit: 417757.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `4294`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 85880, - Discounts: 772.8, - Sales: 85107.2, - COGS: 38640, - Profit: 46467.2, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2856`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 19992, - Discounts: 25.34, - Sales: 19966.66, - COGS: 1810, - Profit: 18156.66, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1407`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 175875, - Discounts: 1153.75, - Sales: 174721.25, - COGS: 110760, - Profit: 63961.25, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3850`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 481250, - Discounts: 828.75, - Sales: 480421.25, - COGS: 79560, - Profit: 400861.25, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2856`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 19992, - Discounts: 146.44, - Sales: 19845.56, - COGS: 10460, - Profit: 9385.56, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1265`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 8855, - Discounts: 18.41, - Sales: 8836.59, - COGS: 1315, - Profit: 7521.59, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3892`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1362200, - Discounts: 3302.25, - Sales: 1358897.75, - COGS: 245310, - Profit: 1113587.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `3068`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 383500, - Discounts: 908.75, - Sales: 382591.25, - COGS: 87240, - Profit: 295351.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2181`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 272625, - Discounts: 983.75, - Sales: 271641.25, - COGS: 94440, - Profit: 177201.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1356`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 406800, - Discounts: 2958, - Sales: 403842, - COGS: 246500, - Profit: 157342, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `2545`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 763500, - Discounts: 1482, - Sales: 762018, - COGS: 123500, - Profit: 638518, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1814`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 634900, - Discounts: 4889.5, - Sales: 630010.5, - COGS: 363220, - Profit: 266790.5, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1495`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 186875, - Discounts: 2180, - Sales: 184695, - COGS: 209280, - Profit: 24585, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1154`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 13848, - Discounts: 238.68, - Sales: 13609.32, - COGS: 5967, - Profit: 7642.32, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `4180`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 62700, - Discounts: 48.15, - Sales: 62651.85, - COGS: 3210, - Profit: 59441.85, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1463`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 182875, - Discounts: 1856.25, - Sales: 181018.75, - COGS: 89100, - Profit: 91918.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `215`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 2580, - Discounts: 310.8, - Sales: 2269.2, - COGS: 3885, - Profit: 1615.8, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `4099`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 1229700, - Discounts: 1284, - Sales: 1228416, - COGS: 53500, - Profit: 1174916, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `2660`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 18620, - Discounts: 300.3, - Sales: 18319.7, - COGS: 10725, - Profit: 7594.7, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `566`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 198100, - Discounts: 19964, - Sales: 178136, - COGS: 741520, - Profit: 563384, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `3255`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 39060, - Discounts: 274.08, - Sales: 38785.92, - COGS: 3426, - Profit: 35359.92, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `772`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 15440, - Discounts: 626.4, - Sales: 14813.6, - COGS: 15660, - Profit: 846.4, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1135`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 13620, - Discounts: 165.6, - Sales: 13454.4, - COGS: 2070, - Profit: 11384.4, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `3826`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 478250, - Discounts: 4150, - Sales: 474100, - COGS: 199200, - Profit: 274900, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1193`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 17895, - Discounts: 708.9, - Sales: 17186.1, - COGS: 23630, - Profit: 6443.9, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2530`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 759000, - Discounts: 5508, - Sales: 753492, - COGS: 229500, - Profit: 523992, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3451`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1035300, - Discounts: 10368, - Sales: 1024932, - COGS: 432000, - Profit: 592932, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3059`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 36708, - Discounts: 274.08, - Sales: 36433.92, - COGS: 3426, - Profit: 33007.92, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3957`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 494625, - Discounts: 1655, - Sales: 492970, - COGS: 79440, - Profit: 413530, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3444`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 41328, - Discounts: 310.8, - Sales: 41017.2, - COGS: 3885, - Profit: 37132.2, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4388`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 548500, - Discounts: 2022.5, - Sales: 546477.5, - COGS: 97080, - Profit: 449397.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2106`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 263250, - Discounts: 5362.5, - Sales: 257887.5, - COGS: 257400, - Profit: 487.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `799`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 9588, - Discounts: 428.4, - Sales: 9159.6, - COGS: 5355, - Profit: 3804.6, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3154`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 946200, - Discounts: 11496, - Sales: 934704, - COGS: 479000, - Profit: 455704, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4108`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1437800, - Discounts: 19964, - Sales: 1417836, - COGS: 741520, - Profit: 676316, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3760`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 470000, - Discounts: 6822.5, - Sales: 463177.5, - COGS: 327480, - Profit: 135697.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `377`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 5655, - Discounts: 577.5, - Sales: 5077.5, - COGS: 19250, - Profit: 14172.5, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2110`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 14770, - Discounts: 281.82, - Sales: 14488.18, - COGS: 10065, - Profit: 4423.18, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2334`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 28008, - Discounts: 253.2, - Sales: 27754.8, - COGS: 3165, - Profit: 24589.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `580`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 6960, - Discounts: 260.16, - Sales: 6699.84, - COGS: 3252, - Profit: 3447.84, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2610`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 52200, - Discounts: 626.4, - Sales: 51573.6, - COGS: 15660, - Profit: 35913.6, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `1598`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 559300, - Discounts: 20762, - Sales: 538538, - COGS: 771160, - Profit: 232622, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `1459`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 510650, - Discounts: 20139, - Sales: 490511, - COGS: 748020, - Profit: 257509, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3284`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 410500, - Discounts: 2022.5, - Sales: 408477.5, - COGS: 97080, - Profit: 311397.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `1197`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 149625, - Discounts: 5362.5, - Sales: 144262.5, - COGS: 257400, - Profit: 113137.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3774`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 45288, - Discounts: 253.2, - Sales: 45034.8, - COGS: 3165, - Profit: 41869.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2303`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 46060, - Discounts: 217.6, - Sales: 45842.4, - COGS: 5440, - Profit: 40402.4, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2572`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 30864, - Discounts: 260.16, - Sales: 30603.84, - COGS: 3252, - Profit: 27351.84, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `320`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 40000, - Discounts: 1655, - Sales: 38345, - COGS: 79440, - Profit: 41095, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2126`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 637800, - Discounts: 1284, - Sales: 636516, - COGS: 53500, - Profit: 583016, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3275`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1146250, - Discounts: 20139, - Sales: 1126111, - COGS: 748020, - Profit: 378091, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3582`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 447750, - Discounts: 6822.5, - Sales: 440927.5, - COGS: 327480, - Profit: 113447.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `783`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 274050, - Discounts: 1862, - Sales: 272188, - COGS: 69160, - Profit: 203028, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1202`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 420700, - Discounts: 13580, - Sales: 407120, - COGS: 504400, - Profit: 97280, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4056`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1216800, - Discounts: 1554, - Sales: 1215246, - COGS: 64750, - Profit: 1150496, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2144`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 643200, - Discounts: 6606, - Sales: 636594, - COGS: 275250, - Profit: 361344, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `3502`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 437750, - Discounts: 5690, - Sales: 432060, - COGS: 273120, - Profit: 158940, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1397`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 488950, - Discounts: 20762, - Sales: 468188, - COGS: 771160, - Profit: 302972, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `679`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 13580, - Discounts: 494.4, - Sales: 13085.6, - COGS: 12360, - Profit: 725.6, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2351`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 47020, - Discounts: 376.4, - Sales: 46643.6, - COGS: 9410, - Profit: 37233.6, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2043`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 612900, - Discounts: 11496, - Sales: 601404, - COGS: 479000, - Profit: 122404, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `3565`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 445625, - Discounts: 15913.13, - Sales: 429711.88, - COGS: 509220, - Profit: 79508.13, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1401`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 28020, - Discounts: 1548, - Sales: 26472, - COGS: 25800, - Profit: 672, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2077`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 623100, - Discounts: 6201, - Sales: 616899, - COGS: 172250, - Profit: 444649, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `3643`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 43716, - Discounts: 700.92, - Sales: 43015.08, - COGS: 5841, - Profit: 37174.08, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1105`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 13260, - Discounts: 326.88, - Sales: 12933.12, - COGS: 2724, - Profit: 10209.12, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2960`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 20720, - Discounts: 411.18, - Sales: 20308.82, - COGS: 9790, - Profit: 10518.82, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1201`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 14412, - Discounts: 684.36, - Sales: 13727.64, - COGS: 5703, - Profit: 8024.64, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `2321`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 16247, - Discounts: 114.24, - Sales: 16132.76, - COGS: 2720, - Profit: 13412.76, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3640`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1274000, - Discounts: 18868.5, - Sales: 1255131.5, - COGS: 467220, - Profit: 787911.5, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3972`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 496500, - Discounts: 4826.25, - Sales: 491673.75, - COGS: 154440, - Profit: 337233.75, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3878`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 484750, - Discounts: 6397.5, - Sales: 478352.5, - COGS: 204720, - Profit: 273632.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2278`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 683400, - Discounts: 21910.5, - Sales: 661489.5, - COGS: 608625, - Profit: 52864.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1075`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 134375, - Discounts: 6652.5, - Sales: 127722.5, - COGS: 212880, - Profit: 85157.5, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `4050`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 48600, - Discounts: 684.36, - Sales: 47915.64, - COGS: 5703, - Profit: 42212.64, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3035`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 910500, - Discounts: 6201, - Sales: 904299, - COGS: 172250, - Profit: 732049, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3636`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 454500, - Discounts: 5887.5, - Sales: 448612.5, - COGS: 188400, - Profit: 260212.5, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1379`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 16548, - Discounts: 493.02, - Sales: 16054.98, - COGS: 4108.5, - Profit: 11946.48, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4492`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 561500, - Discounts: 7533.75, - Sales: 553966.25, - COGS: 241080, - Profit: 312886.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `764`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 11460, - Discounts: 875.25, - Sales: 10584.75, - COGS: 19450, - Profit: 8865.25, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1744`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 218000, - Discounts: 4826.25, - Sales: 213173.75, - COGS: 154440, - Profit: 58733.75, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2341`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 292625, - Discounts: 6397.5, - Sales: 286227.5, - COGS: 204720, - Profit: 81507.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3835`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 479375, - Discounts: 7533.75, - Sales: 471841.25, - COGS: 241080, - Profit: 230761.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1161`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 348300, - Discounts: 25596, - Sales: 322704, - COGS: 711000, - Profit: 388296, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `876`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 10512, - Discounts: 689.76, - Sales: 9822.24, - COGS: 5748, - Profit: 4074.24, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1705`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 213125, - Discounts: 5887.5, - Sales: 207237.5, - COGS: 188400, - Profit: 18837.5, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1805`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 541500, - Discounts: 16866, - Sales: 524634, - COGS: 468500, - Profit: 56134, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `389`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 136150, - Discounts: 17241, - Sales: 118909, - COGS: 426920, - Profit: 308011, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2745`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 41175, - Discounts: 875.25, - Sales: 40299.75, - COGS: 19450, - Profit: 20849.75, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1459`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 29180, - Discounts: 498.6, - Sales: 28681.4, - COGS: 8310, - Profit: 20371.4, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3938`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 27566, - Discounts: 369.6, - Sales: 27196.4, - COGS: 8800, - Profit: 18396.4, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `4236`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 84720, - Discounts: 2310.3, - Sales: 82409.7, - COGS: 38505, - Profit: 43904.7, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3627`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 43524, - Discounts: 892.44, - Sales: 42631.56, - COGS: 7437, - Profit: 35194.56, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1756`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 26340, - Discounts: 1218.6, - Sales: 25121.4, - COGS: 20310, - Profit: 4811.4, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `307`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 4605, - Discounts: 1218.6, - Sales: 3386.4, - COGS: 20310, - Profit: 16923.6, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `4489`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 67335, - Discounts: 1356.6, - Sales: 65978.4, - COGS: 22610, - Profit: 43368.4, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2167`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 43340, - Discounts: 588.8, - Sales: 42751.2, - COGS: 7360, - Profit: 35391.2, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1137`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 7959, - Discounts: 798.28, - Sales: 7160.72, - COGS: 14255, - Profit: 7094.28, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1222`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 366600, - Discounts: 24252, - Sales: 342348, - COGS: 505250, - Profit: 162902, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `489`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 171150, - Discounts: 3836, - Sales: 167314, - COGS: 71240, - Profit: 96074, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4133`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 61995, - Discounts: 1180.2, - Sales: 60814.8, - COGS: 19670, - Profit: 41144.8, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2743`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 822900, - Discounts: 22308, - Sales: 800592, - COGS: 464750, - Profit: 335842, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `3699`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 25893, - Discounts: 798.28, - Sales: 25094.72, - COGS: 14255, - Profit: 10839.72, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `4460`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1338000, - Discounts: 24252, - Sales: 1313748, - COGS: 505250, - Profit: 808498, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1232`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 154000, - Discounts: 5690, - Sales: 148310, - COGS: 136560, - Profit: 11750, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2586`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 18102, - Discounts: 1190.28, - Sales: 16911.72, - COGS: 21255, - Profit: 4343.28, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1332`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 166500, - Discounts: 3975, - Sales: 162525, - COGS: 95400, - Profit: 67125, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4487`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1346100, - Discounts: 16974, - Sales: 1329126, - COGS: 353625, - Profit: 975501, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3862`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1158600, - Discounts: 35016, - Sales: 1123584, - COGS: 729500, - Profit: 394084, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1765`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 617750, - Discounts: 48300, - Sales: 569450, - COGS: 897000, - Profit: 327550, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3533`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 441625, - Discounts: 14940, - Sales: 426685, - COGS: 358560, - Profit: 68125, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2016`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 30240, - Discounts: 130.8, - Sales: 30109.2, - COGS: 2180, - Profit: 27929.2, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2938`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 58760, - Discounts: 1659.2, - Sales: 57100.8, - COGS: 20740, - Profit: 36360.8, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3352`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 67040, - Discounts: 844.8, - Sales: 66195.2, - COGS: 10560, - Profit: 55635.2, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4409`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 66135, - Discounts: 402.6, - Sales: 65732.4, - COGS: 6710, - Profit: 59022.4, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3323`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 49845, - Discounts: 908.4, - Sales: 48936.6, - COGS: 15140, - Profit: 33796.6, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2430`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 850500, - Discounts: 3836, - Sales: 846664, - COGS: 71240, - Profit: 775424, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `535`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 66875, - Discounts: 5690, - Sales: 61185, - COGS: 136560, - Profit: 75375, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1523`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 18276, - Discounts: 703.2, - Sales: 17572.8, - COGS: 4395, - Profit: 13177.8, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3631`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 72620, - Discounts: 2116.8, - Sales: 70503.2, - COGS: 26460, - Profit: 44043.2, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1782`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 623700, - Discounts: 30478, - Sales: 593222, - COGS: 566020, - Profit: 27202, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `347`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 4164, - Discounts: 415.68, - Sales: 3748.32, - COGS: 2598, - Profit: 1150.32, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `4147`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1451450, - Discounts: 4886, - Sales: 1446564, - COGS: 90740, - Profit: 1355824, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3509`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1228150, - Discounts: 30478, - Sales: 1197672, - COGS: 566020, - Profit: 631652, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `2774`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 41610, - Discounts: 908.4, - Sales: 40701.6, - COGS: 15140, - Profit: 25561.6, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2943`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1030050, - Discounts: 26110, - Sales: 1003940, - COGS: 484900, - Profit: 519040, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `4037`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 504625, - Discounts: 5370, - Sales: 499255, - COGS: 128880, - Profit: 370375, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4146`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1451100, - Discounts: 26698, - Sales: 1424402, - COGS: 495820, - Profit: 928582, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `4123`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 61845, - Discounts: 402.6, - Sales: 61442.4, - COGS: 6710, - Profit: 54732.4, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1337`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 467950, - Discounts: 24892, - Sales: 443058, - COGS: 462280, - Profit: 19222, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `599`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 4193, - Discounts: 405.65, - Sales: 3787.35, - COGS: 5795, - Profit: 2007.65, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `725`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 5075, - Discounts: 480.2, - Sales: 4594.8, - COGS: 6860, - Profit: 2265.2, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `477`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 3339, - Discounts: 822.15, - Sales: 2516.85, - COGS: 11745, - Profit: 9228.15, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2325`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 16275, - Discounts: 941.15, - Sales: 15333.85, - COGS: 13445, - Profit: 1888.85, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `675`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 8100, - Discounts: 1458.6, - Sales: 6641.4, - COGS: 7293, - Profit: 651.6, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2990`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 35880, - Discounts: 1458.6, - Sales: 34421.4, - COGS: 7293, - Profit: 27128.4, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1072`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 7504, - Discounts: 941.15, - Sales: 6562.85, - COGS: 13445, - Profit: 6882.15, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1048`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 7336, - Discounts: 589.05, - Sales: 6746.95, - COGS: 8415, - Profit: 1668.05, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `469`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 5628, - Discounts: 673.8, - Sales: 4954.2, - COGS: 3369, - Profit: 1585.2, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `804`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 5628, - Discounts: 405.65, - Sales: 5222.35, - COGS: 5795, - Profit: 572.65, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `4240`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 50880, - Discounts: 1119, - Sales: 49761, - COGS: 5595, - Profit: 44166, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1976`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 23712, - Discounts: 669.6, - Sales: 23042.4, - COGS: 3348, - Profit: 19694.4, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1984`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 39680, - Discounts: 1563, - Sales: 38117, - COGS: 15630, - Profit: 22487, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `480`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 144000, - Discounts: 14865, - Sales: 129135, - COGS: 247750, - Profit: 118615, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `3551`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 24857, - Discounts: 355.6, - Sales: 24501.4, - COGS: 5080, - Profit: 19421.4, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1205`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 18075, - Discounts: 2093.25, - Sales: 15981.75, - COGS: 27910, - Profit: 11928.25, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2480`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 17360, - Discounts: 199.5, - Sales: 17160.5, - COGS: 2850, - Profit: 14310.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `2926`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 20482, - Discounts: 870.45, - Sales: 19611.55, - COGS: 12435, - Profit: 7176.55, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3210`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1123500, - Discounts: 24228.75, - Sales: 1099271.25, - COGS: 359970, - Profit: 739301.25, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `3221`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 402625, - Discounts: 22668.75, - Sales: 379956.25, - COGS: 435240, - Profit: 55283.75, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2389`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 836150, - Discounts: 12600, - Sales: 823550, - COGS: 187200, - Profit: 636350, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `1127`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 13524, - Discounts: 1405.2, - Sales: 12118.8, - COGS: 7026, - Profit: 5092.8, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `319`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 95700, - Discounts: 16500, - Sales: 79200, - COGS: 275000, - Profit: 195800, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1610`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 32200, - Discounts: 1303, - Sales: 30897, - COGS: 13030, - Profit: 17867, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4100`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 512500, - Discounts: 18700, - Sales: 493800, - COGS: 359040, - Profit: 134760, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1012`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 126500, - Discounts: 14906.25, - Sales: 111593.75, - COGS: 286200, - Profit: 174606.25, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3337`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1001100, - Discounts: 24105, - Sales: 976995, - COGS: 401750, - Profit: 575245, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3955`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 27685, - Discounts: 814.45, - Sales: 26870.55, - COGS: 11635, - Profit: 15235.55, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4347`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1304100, - Discounts: 14865, - Sales: 1289235, - COGS: 247750, - Profit: 1041485, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1548`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 541800, - Discounts: 10535, - Sales: 531265, - COGS: 156520, - Profit: 374745, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2153`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 32295, - Discounts: 1965, - Sales: 30330, - COGS: 26200, - Profit: 4130, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3789`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1326150, - Discounts: 21490, - Sales: 1304660, - COGS: 319280, - Profit: 985380, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4364`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 87280, - Discounts: 1389, - Sales: 85891, - COGS: 13890, - Profit: 72001, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4126`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 515750, - Discounts: 5381.25, - Sales: 510368.75, - COGS: 103320, - Profit: 407048.75, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1343`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 167875, - Discounts: 4400, - Sales: 163475, - COGS: 84480, - Profit: 78995, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `245`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 4900, - Discounts: 1802, - Sales: 3098, - COGS: 18020, - Profit: 14922, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3376`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 67520, - Discounts: 2663, - Sales: 64857, - COGS: 26630, - Profit: 38227, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1401`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 9807, - Discounts: 747.6, - Sales: 9059.4, - COGS: 10680, - Profit: 1620.6, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3483`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 52245, - Discounts: 1587, - Sales: 50658, - COGS: 21160, - Profit: 29498, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2244`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 33660, - Discounts: 416.25, - Sales: 33243.75, - COGS: 5550, - Profit: 27693.75, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `1360`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 20400, - Discounts: 2145.75, - Sales: 18254.25, - COGS: 28610, - Profit: 10355.75, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `279`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 34875, - Discounts: 5043.75, - Sales: 29831.25, - COGS: 96840, - Profit: 67008.75, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2521`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 882350, - Discounts: 10535, - Sales: 871815, - COGS: 156520, - Profit: 715295, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2433`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 48660, - Discounts: 2832, - Sales: 45828, - COGS: 28320, - Profit: 17508, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1738`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 34760, - Discounts: 1579, - Sales: 33181, - COGS: 15790, - Profit: 17391, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1106`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 138250, - Discounts: 5381.25, - Sales: 132868.75, - COGS: 103320, - Profit: 29548.75, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3379`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 422375, - Discounts: 4400, - Sales: 417975, - COGS: 84480, - Profit: 333495, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1221`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 24420, - Discounts: 1033, - Sales: 23387, - COGS: 10330, - Profit: 13057, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `213`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 63900, - Discounts: 18750, - Sales: 45150, - COGS: 312500, - Profit: 267350, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3335`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 66700, - Discounts: 1389, - Sales: 65311, - COGS: 13890, - Profit: 51421, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1260`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 25200, - Discounts: 1265, - Sales: 23935, - COGS: 12650, - Profit: 11285, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3034`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 60680, - Discounts: 2297, - Sales: 58383, - COGS: 22970, - Profit: 35413, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2929`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 58580, - Discounts: 2663, - Sales: 55917, - COGS: 26630, - Profit: 29287, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2389`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 16723, - Discounts: 199.5, - Sales: 16523.5, - COGS: 2850, - Profit: 13673.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3086`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 21602, - Discounts: 870.45, - Sales: 20731.55, - COGS: 12435, - Profit: 8296.55, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `745`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 260750, - Discounts: 23625, - Sales: 237125, - COGS: 351000, - Profit: 113875, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1266`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 443100, - Discounts: 9660, - Sales: 433440, - COGS: 143520, - Profit: 289920, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `3790`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1326500, - Discounts: 21490, - Sales: 1305010, - COGS: 319280, - Profit: 985730, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4287`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1286100, - Discounts: 18750, - Sales: 1267350, - COGS: 312500, - Profit: 954850, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3193`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 47895, - Discounts: 3420.9, - Sales: 44474.1, - COGS: 38010, - Profit: 6464.1, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1967`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 39340, - Discounts: 1341, - Sales: 37999, - COGS: 11175, - Profit: 26824, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `631`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 9465, - Discounts: 2559.6, - Sales: 6905.4, - COGS: 28440, - Profit: 21534.6, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3469`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 41628, - Discounts: 404.64, - Sales: 41223.36, - COGS: 1686, - Profit: 39537.36, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `570`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 6840, - Discounts: 1655.28, - Sales: 5184.72, - COGS: 6897, - Profit: 1712.28, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `3215`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 48225, - Discounts: 1827, - Sales: 46398, - COGS: 20300, - Profit: 26098, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `3754`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 26278, - Discounts: 110.46, - Sales: 26167.54, - COGS: 1315, - Profit: 24852.54, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2187`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 273375, - Discounts: 6652.5, - Sales: 266722.5, - COGS: 106440, - Profit: 160282.5, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1959`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 685650, - Discounts: 20580, - Sales: 665070, - COGS: 254800, - Profit: 410270, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2181`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 763350, - Discounts: 30660, - Sales: 732690, - COGS: 379600, - Profit: 353090, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3559`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 24913, - Discounts: 589.26, - Sales: 24323.74, - COGS: 7015, - Profit: 17308.74, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2205`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 26460, - Discounts: 1960.56, - Sales: 24499.44, - COGS: 8169, - Profit: 16330.44, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1890`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 661500, - Discounts: 31416, - Sales: 630084, - COGS: 388960, - Profit: 241124, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1296`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 15552, - Discounts: 1655.28, - Sales: 13896.72, - COGS: 6897, - Profit: 6999.72, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `775`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 271250, - Discounts: 15267, - Sales: 255983, - COGS: 189020, - Profit: 66963, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2417`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 302125, - Discounts: 7140, - Sales: 294985, - COGS: 114240, - Profit: 180745, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1158`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 144750, - Discounts: 20662.5, - Sales: 124087.5, - COGS: 330600, - Profit: 206512.5, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `803`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 12045, - Discounts: 1377, - Sales: 10668, - COGS: 15300, - Profit: 4632, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3705`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1296750, - Discounts: 31416, - Sales: 1265334, - COGS: 388960, - Profit: 876374, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `589`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 4123, - Discounts: 629.16, - Sales: 3493.84, - COGS: 7490, - Profit: 3996.16, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3797`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1139100, - Discounts: 21978, - Sales: 1117122, - COGS: 305250, - Profit: 811872, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1321`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 462350, - Discounts: 43596, - Sales: 418754, - COGS: 539760, - Profit: 121006, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3999`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 59985, - Discounts: 2559.6, - Sales: 57425.4, - COGS: 28440, - Profit: 28985.4, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `4256`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 29792, - Discounts: 629.16, - Sales: 29162.84, - COGS: 7490, - Profit: 21672.84, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1643`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 492900, - Discounts: 21978, - Sales: 470922, - COGS: 305250, - Profit: 165672, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1912`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 38240, - Discounts: 1347.6, - Sales: 36892.4, - COGS: 11230, - Profit: 25662.4, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1610`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 483000, - Discounts: 43848, - Sales: 439152, - COGS: 609000, - Profit: 169848, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2160`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 270000, - Discounts: 14906.25, - Sales: 255093.75, - COGS: 238500, - Profit: 16593.75, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `466`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 163100, - Discounts: 35259, - Sales: 127841, - COGS: 436540, - Profit: 308699, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `328`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 114800, - Discounts: 15267, - Sales: 99533, - COGS: 189020, - Profit: 89487, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `4099`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 28693, - Discounts: 589.26, - Sales: 28103.74, - COGS: 7015, - Profit: 21088.74, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `990`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 346500, - Discounts: 43596, - Sales: 302904, - COGS: 539760, - Profit: 236856, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1433`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 28660, - Discounts: 2108.4, - Sales: 26551.6, - COGS: 17570, - Profit: 8981.6, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1478`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 22170, - Discounts: 1978.2, - Sales: 20191.8, - COGS: 21980, - Profit: 1788.2, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3798`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 56970, - Discounts: 1568.7, - Sales: 55401.3, - COGS: 17430, - Profit: 37971.3, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `447`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 6705, - Discounts: 1037.7, - Sales: 5667.3, - COGS: 11530, - Profit: 5862.7, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1711`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34220, - Discounts: 2108.4, - Sales: 32111.6, - COGS: 17570, - Profit: 14541.6, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `745`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 14900, - Discounts: 1201.2, - Sales: 13698.8, - COGS: 10010, - Profit: 3688.8, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `1732`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 12124, - Discounts: 559.86, - Sales: 11564.14, - COGS: 6665, - Profit: 4899.14, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1759`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 26385, - Discounts: 1037.7, - Sales: 25347.3, - COGS: 11530, - Profit: 13817.3, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `338`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 4056, - Discounts: 610.68, - Sales: 3445.32, - COGS: 2181, - Profit: 1264.32, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `3911`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 46932, - Discounts: 1582.56, - Sales: 45349.44, - COGS: 5652, - Profit: 39697.44, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3691`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 73820, - Discounts: 2567.6, - Sales: 71252.4, - COGS: 18340, - Profit: 52912.4, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `4473`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 53676, - Discounts: 1965.6, - Sales: 51710.4, - COGS: 7020, - Profit: 44690.4, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `383`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 4596, - Discounts: 1967.28, - Sales: 2628.72, - COGS: 7026, - Profit: 4397.28, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3105`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 21735, - Discounts: 505.19, - Sales: 21229.81, - COGS: 5155, - Profit: 16074.81, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1062`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 15930, - Discounts: 1325.1, - Sales: 14604.9, - COGS: 12620, - Profit: 1984.9, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `4083`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 28581, - Discounts: 556.15, - Sales: 28024.85, - COGS: 5675, - Profit: 22349.85, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3974`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 27818, - Discounts: 268.03, - Sales: 27549.97, - COGS: 2735, - Profit: 24814.97, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3723`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 26061, - Discounts: 775.18, - Sales: 25285.82, - COGS: 7910, - Profit: 17375.82, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2435`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 29220, - Discounts: 1460.34, - Sales: 27759.66, - COGS: 5215.5, - Profit: 22544.16, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1678`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 20136, - Discounts: 1860.6, - Sales: 18275.4, - COGS: 6645, - Profit: 11630.4, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1763`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 12341, - Discounts: 775.18, - Sales: 11565.82, - COGS: 7910, - Profit: 3655.82, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `4473`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 31311, - Discounts: 556.15, - Sales: 30754.85, - COGS: 5675, - Profit: 25079.85, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1246`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 436100, - Discounts: 43144.5, - Sales: 392955.5, - COGS: 457860, - Profit: 64904.5, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1615`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 484500, - Discounts: 9408, - Sales: 475092, - COGS: 112000, - Profit: 363092, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `749`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 224700, - Discounts: 45801, - Sales: 178899, - COGS: 545250, - Profit: 366351, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1318`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 26360, - Discounts: 2766.4, - Sales: 23593.6, - COGS: 19760, - Profit: 3833.6, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `2882`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 864600, - Discounts: 45801, - Sales: 818799, - COGS: 545250, - Profit: 273549, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3039`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 379875, - Discounts: 21875, - Sales: 358000, - COGS: 300000, - Profit: 58000, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2484`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 745200, - Discounts: 35742, - Sales: 709458, - COGS: 425500, - Profit: 283958, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3169`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 950700, - Discounts: 9408, - Sales: 941292, - COGS: 112000, - Profit: 829292, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4080`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 510000, - Discounts: 30738.75, - Sales: 479261.25, - COGS: 421560, - Profit: 57701.25, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3943`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 59145, - Discounts: 2206.05, - Sales: 56938.95, - COGS: 21010, - Profit: 35928.95, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `784`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 11760, - Discounts: 3077.55, - Sales: 8682.45, - COGS: 29310, - Profit: 20627.55, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `253`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 5060, - Discounts: 2149, - Sales: 2911, - COGS: 15350, - Profit: 12439, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1316`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 394800, - Discounts: 23583, - Sales: 371217, - COGS: 280750, - Profit: 90467, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `808`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 242400, - Discounts: 29484, - Sales: 212916, - COGS: 351000, - Profit: 138084, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3295`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 39540, - Discounts: 2320.92, - Sales: 37219.08, - COGS: 8289, - Profit: 28930.08, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `520`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 3640, - Discounts: 1041.25, - Sales: 2598.75, - COGS: 10625, - Profit: 8026.25, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `799`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 239700, - Discounts: 34839, - Sales: 204861, - COGS: 414750, - Profit: 209889, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3942`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 78840, - Discounts: 852.6, - Sales: 77987.4, - COGS: 6090, - Profit: 71897.4, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2498`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 312250, - Discounts: 18261.25, - Sales: 293988.75, - COGS: 250440, - Profit: 43548.75, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `2517`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 50340, - Discounts: 2766.4, - Sales: 47573.6, - COGS: 19760, - Profit: 27813.6, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3182`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 63640, - Discounts: 1989.4, - Sales: 61650.6, - COGS: 14210, - Profit: 47440.6, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1145`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 343500, - Discounts: 28812, - Sales: 314688, - COGS: 343000, - Profit: 28312, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `895`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 17900, - Discounts: 823.2, - Sales: 17076.8, - COGS: 5880, - Profit: 11196.8, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3814`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 45768, - Discounts: 2725.38, - Sales: 43042.62, - COGS: 9733.5, - Profit: 33309.12, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1188`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 356400, - Discounts: 20139, - Sales: 336261, - COGS: 239750, - Profit: 96511, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `2233`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 669900, - Discounts: 57687, - Sales: 612213, - COGS: 686750, - Profit: 74537, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `421`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 52625, - Discounts: 14393.75, - Sales: 38231.25, - COGS: 197400, - Profit: 159168.75, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `269`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 94150, - Discounts: 70462, - Sales: 23688, - COGS: 747760, - Profit: 724072, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `3766`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 470750, - Discounts: 8697.5, - Sales: 462052.5, - COGS: 119280, - Profit: 342772.5, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `952`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 19040, - Discounts: 1565.2, - Sales: 17474.8, - COGS: 11180, - Profit: 6294.8, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2964`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 889200, - Discounts: 28812, - Sales: 860388, - COGS: 343000, - Profit: 517388, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1505`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 10535, - Discounts: 273.28, - Sales: 10261.72, - COGS: 2440, - Profit: 7821.72, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1678`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 33560, - Discounts: 2051.2, - Sales: 31508.8, - COGS: 12820, - Profit: 18688.8, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4249`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 29743, - Discounts: 143.92, - Sales: 29599.08, - COGS: 1285, - Profit: 28314.08, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1677`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 33540, - Discounts: 2051.2, - Sales: 31488.8, - COGS: 12820, - Profit: 18668.8, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3051`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 381375, - Discounts: 15400, - Sales: 365975, - COGS: 184800, - Profit: 181175, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `3372`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 50580, - Discounts: 588, - Sales: 49992, - COGS: 4900, - Profit: 45092, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1686`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 590100, - Discounts: 38136, - Sales: 551964, - COGS: 354120, - Profit: 197844, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3086`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 46290, - Discounts: 3001.2, - Sales: 43288.8, - COGS: 25010, - Profit: 18278.8, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4150`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 83000, - Discounts: 1132.8, - Sales: 81867.2, - COGS: 7080, - Profit: 74787.2, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3027`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 60540, - Discounts: 1032, - Sales: 59508, - COGS: 6450, - Profit: 53058, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `4359`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1307700, - Discounts: 37488, - Sales: 1270212, - COGS: 390500, - Profit: 879712, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `3628`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1088400, - Discounts: 30792, - Sales: 1057608, - COGS: 320750, - Profit: 736858, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `1589`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 23835, - Discounts: 853.2, - Sales: 22981.8, - COGS: 7110, - Profit: 15871.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2679`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 334875, - Discounts: 11140, - Sales: 323735, - COGS: 133680, - Profit: 190055, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3401`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 23807, - Discounts: 705.04, - Sales: 23101.96, - COGS: 6295, - Profit: 16806.96, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2815`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 19705, - Discounts: 613.2, - Sales: 19091.8, - COGS: 5475, - Profit: 13616.8, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2964`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 59280, - Discounts: 2185.6, - Sales: 57094.4, - COGS: 13660, - Profit: 43434.4, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `4173`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1251900, - Discounts: 59040, - Sales: 1192860, - COGS: 615000, - Profit: 577860, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1157`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 8099, - Discounts: 379.68, - Sales: 7719.32, - COGS: 3390, - Profit: 4329.32, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3065`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 21455, - Discounts: 894.88, - Sales: 20560.12, - COGS: 7990, - Profit: 12570.12, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1962`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 13734, - Discounts: 1349.04, - Sales: 12384.96, - COGS: 12045, - Profit: 339.96, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4080`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 81600, - Discounts: 3094.4, - Sales: 78505.6, - COGS: 19340, - Profit: 59165.6, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1713`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34260, - Discounts: 4788.8, - Sales: 29471.2, - COGS: 29930, - Profit: 458.8, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2795`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 978250, - Discounts: 60088, - Sales: 918162, - COGS: 557960, - Profit: 360202, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `4082`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 28574, - Discounts: 1089.76, - Sales: 27484.24, - COGS: 9730, - Profit: 17754.24, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1691`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 591850, - Discounts: 38136, - Sales: 553714, - COGS: 354120, - Profit: 199594, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2305`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 27660, - Discounts: 574.08, - Sales: 27085.92, - COGS: 1794, - Profit: 25291.92, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3401`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 23807, - Discounts: 1627.92, - Sales: 22179.08, - COGS: 14535, - Profit: 7644.08, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2288`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 16016, - Discounts: 1309.28, - Sales: 14706.72, - COGS: 11690, - Profit: 3016.72, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `2399`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 719700, - Discounts: 9264, - Sales: 710436, - COGS: 96500, - Profit: 613936, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `4086`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1225800, - Discounts: 15240, - Sales: 1210560, - COGS: 158750, - Profit: 1051810, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2651`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 927850, - Discounts: 16086, - Sales: 911764, - COGS: 149370, - Profit: 762394, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3971`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 27797, - Discounts: 1309.28, - Sales: 26487.72, - COGS: 11690, - Profit: 14797.72, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2512`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 879200, - Discounts: 10668, - Sales: 868532, - COGS: 99060, - Profit: 769472, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2745`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 960750, - Discounts: 11816, - Sales: 948934, - COGS: 109720, - Profit: 839214, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1903`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 570900, - Discounts: 51216, - Sales: 519684, - COGS: 533500, - Profit: 13816, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `647`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 194100, - Discounts: 19392, - Sales: 174708, - COGS: 202000, - Profit: 27292, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2914`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 58280, - Discounts: 1132.8, - Sales: 57147.2, - COGS: 7080, - Profit: 50067.2, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1889`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 13223, - Discounts: 1627.92, - Sales: 11595.08, - COGS: 14535, - Profit: 2939.92, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1466`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 29320, - Discounts: 2185.6, - Sales: 27134.4, - COGS: 13660, - Profit: 13474.4, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `887`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 266100, - Discounts: 59040, - Sales: 207060, - COGS: 615000, - Profit: 407940, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `395`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 7900, - Discounts: 2432, - Sales: 5468, - COGS: 15200, - Profit: 9732, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1693`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 25395, - Discounts: 853.2, - Sales: 24541.8, - COGS: 7110, - Profit: 17431.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2459`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 29508, - Discounts: 1320, - Sales: 28188, - COGS: 4125, - Profit: 24063, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2649`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 794700, - Discounts: 15240, - Sales: 779460, - COGS: 158750, - Profit: 620710, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `3608`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 72160, - Discounts: 698.4, - Sales: 71461.6, - COGS: 4365, - Profit: 67096.6, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1073`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 321900, - Discounts: 29538, - Sales: 292362, - COGS: 273500, - Profit: 18862, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1754`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 21048, - Discounts: 396.36, - Sales: 20651.64, - COGS: 1101, - Profit: 19550.64, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `2167`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 650100, - Discounts: 102667.5, - Sales: 547432.5, - COGS: 950625, - Profit: 403192.5, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1319`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 461650, - Discounts: 52479, - Sales: 409171, - COGS: 433160, - Profit: 23989, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1679`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 503700, - Discounts: 8694, - Sales: 495006, - COGS: 80500, - Profit: 414506, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1252`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 15024, - Discounts: 2506.68, - Sales: 12517.32, - COGS: 6963, - Profit: 5554.32, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3493`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 436625, - Discounts: 20891.25, - Sales: 415733.75, - COGS: 222840, - Profit: 192893.75, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1697`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 11879, - Discounts: 1014.93, - Sales: 10864.07, - COGS: 8055, - Profit: 2809.07, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1156`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 144500, - Discounts: 31466.25, - Sales: 113033.75, - COGS: 335640, - Profit: 222606.25, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `726`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 217800, - Discounts: 9018, - Sales: 208782, - COGS: 83500, - Profit: 125282, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1153`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 345900, - Discounts: 69255, - Sales: 276645, - COGS: 641250, - Profit: 364605, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2720`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 952000, - Discounts: 76135.5, - Sales: 875864.5, - COGS: 628420, - Profit: 247444.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3658`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 54870, - Discounts: 4961.25, - Sales: 49908.75, - COGS: 36750, - Profit: 13158.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2950`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 885000, - Discounts: 29538, - Sales: 855462, - COGS: 273500, - Profit: 581962, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1821`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 27315, - Discounts: 1656.45, - Sales: 25658.55, - COGS: 12270, - Profit: 13388.55, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `4174`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 50088, - Discounts: 396.36, - Sales: 49691.64, - COGS: 1101, - Profit: 48590.64, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1127`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 338100, - Discounts: 35748, - Sales: 302352, - COGS: 331000, - Profit: 28648, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2209`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 26508, - Discounts: 1917, - Sales: 24591, - COGS: 5325, - Profit: 19266, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `862`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 107750, - Discounts: 31466.25, - Sales: 76283.75, - COGS: 335640, - Profit: 259356.25, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3805`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 57075, - Discounts: 330.75, - Sales: 56744.25, - COGS: 2450, - Profit: 54294.25, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1415`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 424500, - Discounts: 102424.5, - Sales: 322075.5, - COGS: 948375, - Profit: 626299.5, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2231`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 780850, - Discounts: 41170.5, - Sales: 739679.5, - COGS: 339820, - Profit: 399859.5, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3649`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 456125, - Discounts: 6378.75, - Sales: 449746.25, - COGS: 68040, - Profit: 381706.25, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2948`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 368500, - Discounts: 23737.5, - Sales: 344762.5, - COGS: 253200, - Profit: 91562.5, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3395`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1188250, - Discounts: 39973.5, - Sales: 1148276.5, - COGS: 329940, - Profit: 818336.5, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2650`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 31800, - Discounts: 2112.48, - Sales: 29687.52, - COGS: 5868, - Profit: 23819.52, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `585`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 175500, - Discounts: 71793, - Sales: 103707, - COGS: 664750, - Profit: 561043, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1316`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 460600, - Discounts: 42572.25, - Sales: 418027.75, - COGS: 351390, - Profit: 66637.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `4459`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 53508, - Discounts: 950.4, - Sales: 52557.6, - COGS: 2640, - Profit: 49917.6, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2711`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 813300, - Discounts: 50409, - Sales: 762891, - COGS: 466750, - Profit: 296141, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2621`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 31452, - Discounts: 2412.72, - Sales: 29039.28, - COGS: 6702, - Profit: 22337.28, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3613`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 54195, - Discounts: 1656.45, - Sales: 52538.55, - COGS: 12270, - Profit: 40268.55, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1847`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 230875, - Discounts: 9866.25, - Sales: 221008.75, - COGS: 105240, - Profit: 115768.75, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2996`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1048600, - Discounts: 65236.5, - Sales: 983363.5, - COGS: 538460, - Profit: 444903.5, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2838`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 993300, - Discounts: 39973.5, - Sales: 953326.5, - COGS: 329940, - Profit: 623386.5, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1302`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 19530, - Discounts: 1309.5, - Sales: 18220.5, - COGS: 9700, - Profit: 8520.5, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1536`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 30720, - Discounts: 3049.2, - Sales: 27670.8, - COGS: 16940, - Profit: 10730.8, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1291`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 25820, - Discounts: 1193.4, - Sales: 24626.6, - COGS: 6630, - Profit: 17996.6, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1213`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 8491, - Discounts: 515.97, - Sales: 7975.03, - COGS: 4095, - Profit: 3880.03, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2370`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 28440, - Discounts: 1706.4, - Sales: 26733.6, - COGS: 4740, - Profit: 21993.6, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1979`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 13853, - Discounts: 328.23, - Sales: 13524.77, - COGS: 2605, - Profit: 10919.77, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2879`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 57580, - Discounts: 1751.4, - Sales: 55828.6, - COGS: 9730, - Profit: 46098.6, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1707`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34140, - Discounts: 1868.4, - Sales: 32271.6, - COGS: 10380, - Profit: 21891.6, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2933`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 20531, - Discounts: 226.8, - Sales: 20304.2, - COGS: 1800, - Profit: 18504.2, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1014`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 12168, - Discounts: 2124.36, - Sales: 10043.64, - COGS: 5901, - Profit: 4142.64, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `693`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 10395, - Discounts: 3547.8, - Sales: 6847.2, - COGS: 26280, - Profit: 19432.8, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3741`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 26187, - Discounts: 226.8, - Sales: 25960.2, - COGS: 1800, - Profit: 24160.2, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3116`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 62320, - Discounts: 4827.6, - Sales: 57492.4, - COGS: 26820, - Profit: 30672.4, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `3995`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 27965, - Discounts: 328.23, - Sales: 27636.77, - COGS: 2605, - Profit: 25031.77, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `953`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 19060, - Discounts: 1868.4, - Sales: 17191.6, - COGS: 10380, - Profit: 6811.6, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2530`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 37950, - Discounts: 2201.18, - Sales: 35748.82, - COGS: 16305, - Profit: 19443.82, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2565`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 30780, - Discounts: 330.48, - Sales: 30449.52, - COGS: 918, - Profit: 29531.52, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `4297`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 51564, - Discounts: 463.2, - Sales: 51100.8, - COGS: 1158, - Profit: 49942.8, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2871`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 20097, - Discounts: 1629.6, - Sales: 18467.4, - COGS: 11640, - Profit: 6827.4, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3537`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 42444, - Discounts: 463.2, - Sales: 41980.8, - COGS: 1158, - Profit: 40822.8, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1598`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 199750, - Discounts: 43068.75, - Sales: 156681.25, - COGS: 413460, - Profit: 256778.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `2616`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 327000, - Discounts: 18525, - Sales: 308475, - COGS: 177840, - Profit: 130635, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2836`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 992600, - Discounts: 80955, - Sales: 911645, - COGS: 601380, - Profit: 310265, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `4023`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 502875, - Discounts: 22550, - Sales: 480325, - COGS: 216480, - Profit: 263845, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3994`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 59910, - Discounts: 3108, - Sales: 56802, - COGS: 20720, - Profit: 36082, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2928`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 58560, - Discounts: 3908, - Sales: 54652, - COGS: 19540, - Profit: 35112, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2912`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 873600, - Discounts: 17730, - Sales: 855870, - COGS: 147750, - Profit: 708120, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3671`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 55065, - Discounts: 3250.5, - Sales: 51814.5, - COGS: 21670, - Profit: 30144.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2778`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 55560, - Discounts: 482, - Sales: 55078, - COGS: 2410, - Profit: 52668, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `405`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 6075, - Discounts: 1021.5, - Sales: 5053.5, - COGS: 6810, - Profit: 1756.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2013`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 30195, - Discounts: 765, - Sales: 29430, - COGS: 5100, - Profit: 24330, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2634`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 39510, - Discounts: 1185, - Sales: 38325, - COGS: 7900, - Profit: 30425, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `4166`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1458100, - Discounts: 22365, - Sales: 1435735, - COGS: 166140, - Profit: 1269595, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `355`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 44375, - Discounts: 19950, - Sales: 24425, - COGS: 191520, - Profit: 167095, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2382`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 714600, - Discounts: 68820, - Sales: 645780, - COGS: 573500, - Profit: 72280, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `4170`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 83400, - Discounts: 482, - Sales: 82918, - COGS: 2410, - Profit: 80508, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `892`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 6244, - Discounts: 1865.5, - Sales: 4378.5, - COGS: 13325, - Profit: 8946.5, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2200`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 275000, - Discounts: 23950, - Sales: 251050, - COGS: 229920, - Profit: 21130, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3389`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1016700, - Discounts: 25590, - Sales: 991110, - COGS: 213250, - Profit: 777860, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `2990`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 373750, - Discounts: 4262.5, - Sales: 369487.5, - COGS: 40920, - Profit: 328567.5, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `4013`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 60195, - Discounts: 961.5, - Sales: 59233.5, - COGS: 6410, - Profit: 52823.5, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `739`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 258650, - Discounts: 98245, - Sales: 160405, - COGS: 729820, - Profit: 569415, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1989`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 596700, - Discounts: 12960, - Sales: 583740, - COGS: 108000, - Profit: 475740, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2991`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 897300, - Discounts: 68820, - Sales: 828480, - COGS: 573500, - Profit: 254980, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `4237`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 63555, - Discounts: 3250.5, - Sales: 60304.5, - COGS: 21670, - Profit: 38634.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1442`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 180250, - Discounts: 31612.5, - Sales: 148637.5, - COGS: 303480, - Profit: 154842.5, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2712`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 949200, - Discounts: 65450, - Sales: 883750, - COGS: 486200, - Profit: 397550, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1508`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 188500, - Discounts: 7237.5, - Sales: 181262.5, - COGS: 69480, - Profit: 111782.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `4245`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1485750, - Discounts: 78400, - Sales: 1407350, - COGS: 582400, - Profit: 824950, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2630`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 789000, - Discounts: 89790, - Sales: 699210, - COGS: 748250, - Profit: 49040, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1182`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 14184, - Discounts: 4224.6, - Sales: 9959.4, - COGS: 10561.5, - Profit: 602.1, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1221`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 24420, - Discounts: 4078, - Sales: 20342, - COGS: 20390, - Profit: 48, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `963`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 11556, - Discounts: 3088.8, - Sales: 8467.2, - COGS: 7722, - Profit: 745.2, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `3243`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1135050, - Discounts: 24745, - Sales: 1110305, - COGS: 183820, - Profit: 926485, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1120`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 16800, - Discounts: 3108, - Sales: 13692, - COGS: 20720, - Profit: 7028, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1174`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 352200, - Discounts: 25590, - Sales: 326610, - COGS: 213250, - Profit: 113360, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `2541`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 30492, - Discounts: 1581.36, - Sales: 28910.64, - COGS: 3594, - Profit: 25316.64, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3246`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 22722, - Discounts: 1949.64, - Sales: 20772.36, - COGS: 12660, - Profit: 8112.36, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1531`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 18372, - Discounts: 1581.36, - Sales: 16790.64, - COGS: 3594, - Profit: 13196.64, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2526`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 37890, - Discounts: 633.6, - Sales: 37256.4, - COGS: 3840, - Profit: 33416.4, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `1136`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 13632, - Discounts: 623.04, - Sales: 13008.96, - COGS: 1416, - Profit: 11592.96, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1983`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 13881, - Discounts: 1215.83, - Sales: 12665.17, - COGS: 7895, - Profit: 4770.17, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `3259`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 39108, - Discounts: 1326.6, - Sales: 37781.4, - COGS: 3015, - Profit: 34766.4, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `3267`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 49005, - Discounts: 5279.17, - Sales: 43725.82, - COGS: 31995, - Profit: 11730.82, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `2454`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 29448, - Discounts: 623.04, - Sales: 28824.96, - COGS: 1416, - Profit: 27408.96, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `2643`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 31716, - Discounts: 2556.84, - Sales: 29159.16, - COGS: 5811, - Profit: 23348.16, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `383`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 134050, - Discounts: 30492, - Sales: 103558, - COGS: 205920, - Profit: 102362, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2801`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 840300, - Discounts: 92763, - Sales: 747537, - COGS: 702750, - Profit: 44787, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1667`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 208375, - Discounts: 33563.75, - Sales: 174811.25, - COGS: 292920, - Profit: 118108.75, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `3539`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 53085, - Discounts: 2574, - Sales: 50511, - COGS: 15600, - Profit: 34911, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `4226`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 29582, - Discounts: 2083.62, - Sales: 27498.38, - COGS: 13530, - Profit: 13968.38, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2220`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 777000, - Discounts: 29491, - Sales: 747509, - COGS: 199160, - Profit: 548349, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `776`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 15520, - Discounts: 6582.4, - Sales: 8937.6, - COGS: 29920, - Profit: 20982.4, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `553`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 8295, - Discounts: 3559.05, - Sales: 4735.95, - COGS: 21570, - Profit: 16834.05, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2107`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 632100, - Discounts: 28809, - Sales: 603291, - COGS: 218250, - Profit: 385041, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2468`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 49360, - Discounts: 2468.4, - Sales: 46891.6, - COGS: 11220, - Profit: 35671.6, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1905`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 666750, - Discounts: 81023.25, - Sales: 585726.75, - COGS: 547170, - Profit: 38556.75, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3658`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 43896, - Discounts: 5314.32, - Sales: 38581.68, - COGS: 12078, - Profit: 26503.68, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `4301`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 51612, - Discounts: 3201.66, - Sales: 48410.34, - COGS: 7276.5, - Profit: 41133.84, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2446`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 48920, - Discounts: 5266.8, - Sales: 43653.2, - COGS: 23940, - Profit: 19713.2, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `4209`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 63135, - Discounts: 3273.6, - Sales: 59861.4, - COGS: 19840, - Profit: 40021.4, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3353`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 419125, - Discounts: 33563.75, - Sales: 385561.25, - COGS: 292920, - Profit: 92641.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1401`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 28020, - Discounts: 6582.4, - Sales: 21437.6, - COGS: 29920, - Profit: 8482.4, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1865`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 559500, - Discounts: 45078, - Sales: 514422, - COGS: 341500, - Profit: 172922, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `463`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 9260, - Discounts: 6171, - Sales: 3089, - COGS: 28050, - Profit: 24961, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `4177`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 62655, - Discounts: 1080.75, - Sales: 61574.25, - COGS: 6550, - Profit: 55024.25, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2523`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 883050, - Discounts: 13244, - Sales: 869806, - COGS: 89440, - Profit: 780366, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1930`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 13510, - Discounts: 1392.16, - Sales: 12117.84, - COGS: 9040, - Profit: 3077.84, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1301`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 15612, - Discounts: 2288.88, - Sales: 13323.12, - COGS: 5202, - Profit: 8121.12, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `4125`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 515625, - Discounts: 7617.5, - Sales: 508007.5, - COGS: 66480, - Profit: 441527.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `607`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 12140, - Discounts: 6457, - Sales: 5683, - COGS: 29350, - Profit: 23667, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `478`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 59750, - Discounts: 43518.75, - Sales: 16231.25, - COGS: 379800, - Profit: 363568.75, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `4489`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 89780, - Discounts: 5783.8, - Sales: 83996.2, - COGS: 26290, - Profit: 57706.2, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1504`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 188000, - Discounts: 19703.75, - Sales: 168296.25, - COGS: 171960, - Profit: 3663.75, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `3763`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 470375, - Discounts: 13021.25, - Sales: 457353.75, - COGS: 113640, - Profit: 343713.75, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2412`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 844200, - Discounts: 13244, - Sales: 830956, - COGS: 89440, - Profit: 741516, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2342`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 35130, - Discounts: 3559.05, - Sales: 31570.95, - COGS: 21570, - Profit: 10000.95, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4451`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 31157, - Discounts: 292.6, - Sales: 30864.4, - COGS: 1900, - Profit: 28964.4, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3796`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1328600, - Discounts: 37212, - Sales: 1291388, - COGS: 230360, - Profit: 1061028, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `2286`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 285750, - Discounts: 36240, - Sales: 249510, - COGS: 289920, - Profit: 40410, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3614`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 451750, - Discounts: 32340, - Sales: 419410, - COGS: 258720, - Profit: 160690, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1716`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 25740, - Discounts: 4840.2, - Sales: 20899.8, - COGS: 26890, - Profit: 5990.2, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1301`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 19515, - Discounts: 1218.6, - Sales: 18296.4, - COGS: 6770, - Profit: 11526.4, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `4175`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1252500, - Discounts: 63828, - Sales: 1188672, - COGS: 443250, - Profit: 745422, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `975`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 6825, - Discounts: 2032.8, - Sales: 4792.2, - COGS: 12100, - Profit: 7307.8, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1154`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 8078, - Discounts: 2296.56, - Sales: 5781.44, - COGS: 13670, - Profit: 7888.56, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1873`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 37460, - Discounts: 4116, - Sales: 33344, - COGS: 17150, - Profit: 16194, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3766`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1129800, - Discounts: 42696, - Sales: 1087104, - COGS: 296500, - Profit: 790604, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3558`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1067400, - Discounts: 125820, - Sales: 941580, - COGS: 873750, - Profit: 67830, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3156`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1104600, - Discounts: 37212, - Sales: 1067388, - COGS: 230360, - Profit: 837028, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2994`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 374250, - Discounts: 32340, - Sales: 341910, - COGS: 258720, - Profit: 83190, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2087`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 41740, - Discounts: 2172, - Sales: 39568, - COGS: 9050, - Profit: 30518, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1056`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 21120, - Discounts: 4116, - Sales: 17004, - COGS: 17150, - Profit: 146, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1353`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 473550, - Discounts: 66948, - Sales: 406602, - COGS: 414440, - Profit: 7838, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `416`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 124800, - Discounts: 48924, - Sales: 75876, - COGS: 339750, - Profit: 263874, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3880`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1164000, - Discounts: 77400, - Sales: 1086600, - COGS: 537500, - Profit: 549100, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `809`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 283150, - Discounts: 50274, - Sales: 232876, - COGS: 311220, - Profit: 78344, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1892`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 28380, - Discounts: 684, - Sales: 27696, - COGS: 3800, - Profit: 23896, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2072`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 41440, - Discounts: 2959.2, - Sales: 38480.8, - COGS: 12330, - Profit: 26150.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3052`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1068200, - Discounts: 58590, - Sales: 1009610, - COGS: 362700, - Profit: 646910, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3121`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1092350, - Discounts: 41412, - Sales: 1050938, - COGS: 256360, - Profit: 794578, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2059`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 41180, - Discounts: 2172, - Sales: 39008, - COGS: 9050, - Profit: 29958, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4254`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 51048, - Discounts: 3036.96, - Sales: 48011.04, - COGS: 6327, - Profit: 41684.04, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1293`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 19395, - Discounts: 6974.1, - Sales: 12420.9, - COGS: 38745, - Profit: 26324.1, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1293`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 452550, - Discounts: 26166, - Sales: 426384, - COGS: 161980, - Profit: 264404, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `230`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 80500, - Discounts: 41412, - Sales: 39088, - COGS: 256360, - Profit: 217272, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1723`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 215375, - Discounts: 35805, - Sales: 179570, - COGS: 286440, - Profit: 106870, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `240`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 4800, - Discounts: 2959.2, - Sales: 1840.8, - COGS: 12330, - Profit: 10489.2, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2571`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 899850, - Discounts: 11340, - Sales: 888510, - COGS: 70200, - Profit: 818310, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1661`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 11627, - Discounts: 2874.06, - Sales: 8752.94, - COGS: 17107.5, - Profit: 8354.56, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `4474`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 31318, - Discounts: 2296.56, - Sales: 29021.44, - COGS: 13670, - Profit: 15351.44, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `833`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 12495, - Discounts: 4586.4, - Sales: 7908.6, - COGS: 25480, - Profit: 17571.4, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `674`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 13480, - Discounts: 6051.6, - Sales: 7428.4, - COGS: 25215, - Profit: 17786.6, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `778`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 9336, - Discounts: 3831.84, - Sales: 5504.16, - COGS: 7983, - Profit: 2478.84, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1457`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 29140, - Discounts: 3674.4, - Sales: 25465.6, - COGS: 15310, - Profit: 10155.6, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3158`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 22106, - Discounts: 1252.44, - Sales: 20853.56, - COGS: 7455, - Profit: 13398.56, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `4095`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 81900, - Discounts: 3674.4, - Sales: 78225.6, - COGS: 15310, - Profit: 62915.6, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `3170`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 38040, - Discounts: 3975.84, - Sales: 34064.16, - COGS: 8283, - Profit: 25781.16, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `493`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 7395, - Discounts: 5005.65, - Sales: 2389.35, - COGS: 25670, - Profit: 23280.65, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `3286`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 49290, - Discounts: 5005.65, - Sales: 44284.35, - COGS: 25670, - Profit: 18614.35, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `3563`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1247050, - Discounts: 41996.5, - Sales: 1205053.5, - COGS: 239980, - Profit: 965073.5, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `4109`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1438150, - Discounts: 81445, - Sales: 1356705, - COGS: 465400, - Profit: 891305, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `3653`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 73060, - Discounts: 1149.2, - Sales: 71910.8, - COGS: 4420, - Profit: 67490.8, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2203`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 771050, - Discounts: 44703.75, - Sales: 726346.25, - COGS: 255450, - Profit: 470896.25, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2924`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 20468, - Discounts: 1181.18, - Sales: 19286.82, - COGS: 6490, - Profit: 12796.82, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2650`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 31800, - Discounts: 942.24, - Sales: 30857.76, - COGS: 1812, - Profit: 29045.76, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1194`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 23880, - Discounts: 5863, - Sales: 18017, - COGS: 22550, - Profit: 4533, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `3366`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 67320, - Discounts: 3247.4, - Sales: 64072.6, - COGS: 12490, - Profit: 51582.6, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1325`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 9275, - Discounts: 1309.04, - Sales: 7965.97, - COGS: 7192.5, - Profit: 773.47, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4243`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1272900, - Discounts: 31473, - Sales: 1241427, - COGS: 201750, - Profit: 1039677, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2887`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 57740, - Discounts: 6866.6, - Sales: 50873.4, - COGS: 26410, - Profit: 24463.4, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3839`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 76780, - Discounts: 7040.8, - Sales: 69739.2, - COGS: 27080, - Profit: 42659.2, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1863`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 652050, - Discounts: 119756, - Sales: 532294, - COGS: 684320, - Profit: 152026, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2858`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 357250, - Discounts: 25723.75, - Sales: 331526.25, - COGS: 189960, - Profit: 141566.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2868`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 34416, - Discounts: 890.76, - Sales: 33525.24, - COGS: 1713, - Profit: 31812.24, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3805`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 26635, - Discounts: 2453.36, - Sales: 24181.64, - COGS: 13480, - Profit: 10701.64, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3914`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 58710, - Discounts: 3051.75, - Sales: 55658.25, - COGS: 15650, - Profit: 40008.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `524`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 10480, - Discounts: 3247.4, - Sales: 7232.6, - COGS: 12490, - Profit: 5257.4, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3095`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1083250, - Discounts: 16243.5, - Sales: 1067006.5, - COGS: 92820, - Profit: 974186.5, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2410`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 28920, - Discounts: 1580.28, - Sales: 27339.72, - COGS: 3039, - Profit: 24300.72, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `4263`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 63945, - Discounts: 7795.13, - Sales: 56149.88, - COGS: 39975, - Profit: 16174.88, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2239`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 783650, - Discounts: 119756, - Sales: 663894, - COGS: 684320, - Profit: 20426, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `569`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 3983, - Discounts: 1082.9, - Sales: 2900.1, - COGS: 5950, - Profit: 3049.9, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3889`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 46668, - Discounts: 942.24, - Sales: 45725.76, - COGS: 1812, - Profit: 43913.76, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `1378`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 20670, - Discounts: 1287, - Sales: 19383, - COGS: 6600, - Profit: 12783, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2253`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 27036, - Discounts: 639.6, - Sales: 26396.4, - COGS: 1230, - Profit: 25166.4, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3202`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 960600, - Discounts: 101595, - Sales: 859005, - COGS: 651250, - Profit: 207755, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3835`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 46020, - Discounts: 1580.28, - Sales: 44439.72, - COGS: 3039, - Profit: 41400.72, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `2487`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 310875, - Discounts: 25723.75, - Sales: 285151.25, - COGS: 189960, - Profit: 95191.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4428`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 66420, - Discounts: 3051.75, - Sales: 63368.25, - COGS: 15650, - Profit: 47718.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1200`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 150000, - Discounts: 26958.75, - Sales: 123041.25, - COGS: 199080, - Profit: 76038.75, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2953`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 20671, - Discounts: 1082.9, - Sales: 19588.1, - COGS: 5950, - Profit: 13638.1, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1453`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 17436, - Discounts: 639.6, - Sales: 16796.4, - COGS: 1230, - Profit: 15566.4, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `865`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 10380, - Discounts: 2761.2, - Sales: 7618.8, - COGS: 5310, - Profit: 2308.8, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1072`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 21440, - Discounts: 7221.2, - Sales: 14218.8, - COGS: 25790, - Profit: 11571.2, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1737`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 34740, - Discounts: 4880.4, - Sales: 29859.6, - COGS: 17430, - Profit: 12429.6, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1535`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 10745, - Discounts: 2936.08, - Sales: 7808.92, - COGS: 14980, - Profit: 7171.08, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2532`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 17724, - Discounts: 274.4, - Sales: 17449.6, - COGS: 1400, - Profit: 16049.6, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1765`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 12355, - Discounts: 287.14, - Sales: 12067.86, - COGS: 1465, - Profit: 10602.86, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1567`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 10969, - Discounts: 2936.08, - Sales: 8032.92, - COGS: 14980, - Profit: 6947.08, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2640`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 39600, - Discounts: 583.8, - Sales: 39016.2, - COGS: 2780, - Profit: 36236.2, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3079`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 61580, - Discounts: 6798.4, - Sales: 54781.6, - COGS: 24280, - Profit: 30501.6, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4130`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 61950, - Discounts: 3710.7, - Sales: 58239.3, - COGS: 17670, - Profit: 40569.3, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2938`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 35256, - Discounts: 2340.24, - Sales: 32915.76, - COGS: 4179, - Profit: 28736.76, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3080`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 21560, - Discounts: 274.4, - Sales: 21285.6, - COGS: 1400, - Profit: 19885.6, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1530`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 18360, - Discounts: 2340.24, - Sales: 16019.76, - COGS: 4179, - Profit: 11840.76, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `3537`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 42444, - Discounts: 3385.2, - Sales: 39058.8, - COGS: 6045, - Profit: 33013.8, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `2021`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 606300, - Discounts: 33642, - Sales: 572658, - COGS: 200250, - Profit: 372408, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1804`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 225500, - Discounts: 17902.5, - Sales: 207597.5, - COGS: 122760, - Profit: 84837.5, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1014`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 304200, - Discounts: 62832, - Sales: 241368, - COGS: 374000, - Profit: 132632, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2913`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 873900, - Discounts: 42420, - Sales: 831480, - COGS: 252500, - Profit: 578980, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `763`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 11445, - Discounts: 3177.3, - Sales: 8267.7, - COGS: 15130, - Profit: 6862.3, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1425`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 21375, - Discounts: 4830, - Sales: 16545, - COGS: 23000, - Profit: 6455, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `4357`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 544625, - Discounts: 49367.5, - Sales: 495257.5, - COGS: 338520, - Profit: 156737.5, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `2138`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 748300, - Discounts: 109147.5, - Sales: 639152.5, - COGS: 579150, - Profit: 60002.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3825`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1338750, - Discounts: 58751, - Sales: 1279999, - COGS: 311740, - Profit: 968259, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `3393`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1187550, - Discounts: 9800, - Sales: 1177750, - COGS: 52000, - Profit: 1125750, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `2215`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 15505, - Discounts: 380.24, - Sales: 15124.76, - COGS: 1940, - Profit: 13184.76, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2278`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 15946, - Discounts: 1692.46, - Sales: 14253.54, - COGS: 8635, - Profit: 5618.54, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `403`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 6045, - Discounts: 4830, - Sales: 1215, - COGS: 23000, - Profit: 21785, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `289`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 5780, - Discounts: 728, - Sales: 5052, - COGS: 2600, - Profit: 2452, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `749`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 11235, - Discounts: 5187, - Sales: 6048, - COGS: 24700, - Profit: 18652, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `372`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 5580, - Discounts: 3660.3, - Sales: 1919.7, - COGS: 17430, - Profit: 15510.3, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3781`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 45372, - Discounts: 4895.52, - Sales: 40476.48, - COGS: 8742, - Profit: 31734.48, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1785`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 12495, - Discounts: 1696.38, - Sales: 10798.62, - COGS: 8655, - Profit: 2143.62, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4029`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1410150, - Discounts: 34300, - Sales: 1375850, - COGS: 182000, - Profit: 1193850, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2813`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 33756, - Discounts: 3732.96, - Sales: 30023.04, - COGS: 6666, - Profit: 23357.04, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2150`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 752500, - Discounts: 57673, - Sales: 694827, - COGS: 306020, - Profit: 388807, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2093`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 732550, - Discounts: 94178, - Sales: 638372, - COGS: 499720, - Profit: 138652, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `4391`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 548875, - Discounts: 27562.5, - Sales: 521312.5, - COGS: 189000, - Profit: 332312.5, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2695`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 53900, - Discounts: 1696.8, - Sales: 52203.2, - COGS: 6060, - Profit: 46143.2, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1337`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 401100, - Discounts: 103320, - Sales: 297780, - COGS: 615000, - Profit: 317220, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2621`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 786300, - Discounts: 11298, - Sales: 775002, - COGS: 67250, - Profit: 707752, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3735`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1120500, - Discounts: 106512, - Sales: 1013988, - COGS: 634000, - Profit: 379988, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `4320`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 30240, - Discounts: 2844.94, - Sales: 27395.06, - COGS: 14515, - Profit: 12880.06, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2828`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 848400, - Discounts: 106722, - Sales: 741678, - COGS: 635250, - Profit: 106428, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `2586`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 775800, - Discounts: 11298, - Sales: 764502, - COGS: 67250, - Profit: 697252, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1248`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 374400, - Discounts: 62832, - Sales: 311568, - COGS: 374000, - Profit: 62432, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `4035`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 1210500, - Discounts: 42420, - Sales: 1168080, - COGS: 252500, - Profit: 915580, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `359`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 125650, - Discounts: 62769, - Sales: 62881, - COGS: 333060, - Profit: 270179, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `3926`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1177800, - Discounts: 37296, - Sales: 1140504, - COGS: 222000, - Profit: 918504, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `4247`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 530875, - Discounts: 49770, - Sales: 481105, - COGS: 341280, - Profit: 139825, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2695`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 32340, - Discounts: 4158, - Sales: 28182, - COGS: 7425, - Profit: 20757, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1104`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 16560, - Discounts: 3660.3, - Sales: 12899.7, - COGS: 17430, - Profit: 4530.3, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1449`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 17388, - Discounts: 4895.52, - Sales: 12492.48, - COGS: 8742, - Profit: 3750.48, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1131`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 7917, - Discounts: 1696.38, - Sales: 6220.62, - COGS: 8655, - Profit: 2434.38, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1468`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 10276, - Discounts: 1692.46, - Sales: 8583.54, - COGS: 8635, - Profit: 51.46, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1272`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 19080, - Discounts: 3927, - Sales: 15153, - COGS: 18700, - Profit: 3547, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1403`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 175375, - Discounts: 22012.5, - Sales: 153362.5, - COGS: 140880, - Profit: 12482.5, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2161`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 270125, - Discounts: 51881.25, - Sales: 218243.75, - COGS: 332040, - Profit: 113796.25, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1937`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 242125, - Discounts: 20343.75, - Sales: 221781.25, - COGS: 130200, - Profit: 91581.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2879`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 863700, - Discounts: 24570, - Sales: 839130, - COGS: 136500, - Profit: 702630, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1330`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 26600, - Discounts: 3474, - Sales: 23126, - COGS: 11580, - Profit: 11546, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2426`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 36390, - Discounts: 3631.5, - Sales: 32758.5, - COGS: 16140, - Profit: 16618.5, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2033`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 14231, - Discounts: 2661.75, - Sales: 11569.25, - COGS: 12675, - Profit: 1105.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2029`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 710150, - Discounts: 149677.5, - Sales: 560472.5, - COGS: 741260, - Profit: 180787.5, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1049`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 15735, - Discounts: 5757.75, - Sales: 9977.25, - COGS: 25590, - Profit: 15612.75, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1062`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 21240, - Discounts: 801, - Sales: 20439, - COGS: 2670, - Profit: 17769, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2509`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 313625, - Discounts: 20343.75, - Sales: 293281.25, - COGS: 130200, - Profit: 163081.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1743`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 26145, - Discounts: 2643.75, - Sales: 23501.25, - COGS: 11750, - Profit: 11751.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3418`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1196300, - Discounts: 105367.5, - Sales: 1090932.5, - COGS: 521820, - Profit: 569112.5, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1751`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 612850, - Discounts: 112927.5, - Sales: 499922.5, - COGS: 559260, - Profit: 59337.5, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3228`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 38736, - Discounts: 1645.2, - Sales: 37090.8, - COGS: 2742, - Profit: 34348.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1105`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 22100, - Discounts: 879, - Sales: 21221, - COGS: 2930, - Profit: 18291, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2778`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 33336, - Discounts: 900, - Sales: 32436, - COGS: 1500, - Profit: 30936, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1173`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 17595, - Discounts: 6358.5, - Sales: 11236.5, - COGS: 28260, - Profit: 17023.5, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3160`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 395000, - Discounts: 12431.25, - Sales: 382568.75, - COGS: 79560, - Profit: 303008.75, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `4322`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1296600, - Discounts: 115830, - Sales: 1180770, - COGS: 643500, - Profit: 537270, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1901`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 237625, - Discounts: 45712.5, - Sales: 191912.5, - COGS: 292560, - Profit: 100647.5, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2980`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 35760, - Discounts: 1645.2, - Sales: 34114.8, - COGS: 2742, - Profit: 31372.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4068`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 81360, - Discounts: 2596.5, - Sales: 78763.5, - COGS: 8655, - Profit: 70108.5, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2105`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 31575, - Discounts: 1107, - Sales: 30468, - COGS: 4920, - Profit: 25548, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1647`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 32940, - Discounts: 801, - Sales: 32139, - COGS: 2670, - Profit: 29469, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `235`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 3525, - Discounts: 2643.75, - Sales: 881.25, - COGS: 11750, - Profit: 10868.75, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3617`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 452125, - Discounts: 55387.5, - Sales: 396737.5, - COGS: 354480, - Profit: 42257.5, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2106`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 263250, - Discounts: 10350, - Sales: 252900, - COGS: 66240, - Profit: 186660, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2351`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 47020, - Discounts: 879, - Sales: 46141, - COGS: 2930, - Profit: 43211, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1897`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 569100, - Discounts: 111375, - Sales: 457725, - COGS: 618750, - Profit: 161025, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `647`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 194100, - Discounts: 24570, - Sales: 169530, - COGS: 136500, - Profit: 33030, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `3621`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 25347, - Discounts: 1436.4, - Sales: 23910.6, - COGS: 6840, - Profit: 17070.6, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3221`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 22547, - Discounts: 759.15, - Sales: 21787.85, - COGS: 3615, - Profit: 18172.85, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `493`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 5916, - Discounts: 3250.8, - Sales: 2665.2, - COGS: 5418, - Profit: 2752.8, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `501`,ManufacturingPrice: 15,SalePrice: 23,GrossSales: 26440,Discounts: 0,Sales: 26440,COGS: 16185,Profit: 11255,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1372`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 27440,Discounts: 0,Sales: 27440,COGS: 16185,Profit: 11255,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2762`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 55240,Discounts: 0,Sales: 55240,COGS: 13210,Profit: 42030,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1464`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21960,Discounts: 0,Sales: 21960,COGS: 21780,Profit: 180,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `719`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 10785,Discounts: 0,Sales: 10785,COGS: 8880,Profit: 1905,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3576`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53640,Discounts: 0,Sales: 53640,COGS: 24700,Profit: 28940,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4422`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1547700,Discounts: 0,Sales: 1547700,COGS: 393380,Profit: 1154320,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3649`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 54735,Discounts: 0,Sales: 54735,COGS: 9210,Profit: 45525,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4172`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 50064,Discounts: 0,Sales: 50064,COGS: 7554,Profit: 42510,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3841`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 76820,Discounts: 0,Sales: 76820,COGS: 18990,Profit: 57830,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3726`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 44712,Discounts: 0,Sales: 44712,COGS: 4635,Profit: 40077,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2625`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 39375,Discounts: 0,Sales: 39375,COGS: 24700,Profit: 14675,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1958`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 244750,Discounts: 0,Sales: 244750,COGS: 319860,Profit: 75110,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3271`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 981300,Discounts: 0,Sales: 981300,COGS: 239500,Profit: 741800,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2091`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 14637,Discounts: 0,Sales: 14637,COGS: 10730,Profit: 3907,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2825`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 42375,Discounts: 0,Sales: 42375,COGS: 6150,Profit: 36225,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2513`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 50260,Discounts: 0,Sales: 50260,COGS: 2920,Profit: 47340,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `883`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 13245,Discounts: 0,Sales: 13245,COGS: 9740,Profit: 3505,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 25044,Discounts: 0,Sales: 25044,COGS: 7554,Profit: 17490,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2563`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 897050,Discounts: 0,Sales: 897050,COGS: 261560,Profit: 635490,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2846`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34152,Discounts: 0,Sales: 34152,COGS: 1101,Profit: 33051,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `997`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 6979,Discounts: 0,Sales: 6979,COGS: 4415,Profit: 2564,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2290`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 34350,Discounts: 0,Sales: 34350,COGS: 24720,Profit: 9630,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2133`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14931,Discounts: 0,Sales: 14931,COGS: 5715,Profit: 9216,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3617`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 72340,Discounts: 0,Sales: 72340,COGS: 18170,Profit: 54170,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1266`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 443100,Discounts: 0,Sales: 443100,COGS: 393380,Profit: 49720,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `894`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6258,Discounts: 0,Sales: 6258,COGS: 7465,Profit: 1207,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2725`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 340625,Discounts: 0,Sales: 340625,COGS: 216480,Profit: 124145,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3061`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 36732,Discounts: 0,Sales: 36732,COGS: 6483,Profit: 30249,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3958`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1385300,Discounts: 0,Sales: 1385300,COGS: 261560,Profit: 1123740,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3920`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 47040,Discounts: 0,Sales: 47040,COGS: 4635,Profit: 42405,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3381`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422625,Discounts: 0,Sales: 422625,COGS: 338520,Profit: 84105,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4307`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1292100,Discounts: 0,Sales: 1292100,COGS: 500250,Profit: 791850,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `878`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10536,Discounts: 0,Sales: 10536,COGS: 8514,Profit: 2022,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `496`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 7440,Discounts: 0,Sales: 7440,COGS: 21780,Profit: 14340,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3367`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 50505,Discounts: 0,Sales: 50505,COGS: 8880,Profit: 41625,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2055`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 616500,Discounts: 0,Sales: 616500,COGS: 537750,Profit: 78750,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4041`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 80820,Discounts: 0,Sales: 80820,COGS: 18170,Profit: 62650,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `3237`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1132950,Discounts: 0,Sales: 1132950,COGS: 715000,Profit: 417950,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `630`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 7560,Discounts: 0,Sales: 7560,COGS: 5859,Profit: 1701,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4210`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 526250,Discounts: 0,Sales: 526250,COGS: 506340,Profit: 19910,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1127`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 22540,Discounts: 0,Sales: 22540,COGS: 18990,Profit: 3550,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3438`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 24066,Discounts: 0,Sales: 24066,COGS: 8430,Profit: 15636,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2015`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 24180,Discounts: 0,Sales: 24180,COGS: 6423,Profit: 17757,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2534`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 17738,Discounts: 0,Sales: 17738,COGS: 5715,Profit: 12023,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1384`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 20760,Discounts: 0,Sales: 20760,COGS: 6150,Profit: 14610,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3561`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 24927,Discounts: 276.15,Sales: 24650.85,COGS: 19725,Profit: 4925.85,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1823`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27345,Discounts: 344.4,Sales: 27000.6,COGS: 22960,Profit: 4040.6,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19565,Discounts: 72.1,Sales: 19492.9,COGS: 5150,Profit: 14342.9,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `457`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3199,Discounts: 44.73,Sales: 3154.27,COGS: 3195,Profit: 40.73,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3785`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26495,Discounts: 92.82,Sales: 26402.18,COGS: 6630,Profit: 19772.18,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `748`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 8976,Discounts: 222.96,Sales: 8753.04,COGS: 5574,Profit: 3179.04,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1021`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 357350,Discounts: 4235,Sales: 353115,COGS: 314600,Profit: 38515,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2076`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 14532,Discounts: 177.03,Sales: 14354.97,COGS: 12645,Profit: 1709.97,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `4316`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51792,Discounts: 173.4,Sales: 51618.6,COGS: 4335,Profit: 47283.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4174`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50088,Discounts: 320.52,Sales: 49767.48,COGS: 8013,Profit: 41754.48,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3736`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1307600,Discounts: 4889.5,Sales: 1302710.5,COGS: 363220,Profit: 939490.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1914`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 669900,Discounts: 7542.5,Sales: 662357.5,COGS: 560300,Profit: 102057.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2742`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 41130,Discounts: 332.1,Sales: 40797.9,COGS: 22140,Profit: 18657.9,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1499`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 449700,Discounts: 6903,Sales: 442797,COGS: 575250,Profit: 132453,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 75440,Discounts: 275.1,Sales: 75164.9,COGS: 13755,Profit: 61409.9,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1112`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 7784,Discounts: 128.1,Sales: 7655.9,COGS: 9150,Profit: 1494.1,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2368`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 35520,Discounts: 227.1,Sales: 35292.9,COGS: 15140,Profit: 20152.9,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 11102,Discounts: 314.48,Sales: 10787.52,COGS: 22462.5,Profit: 11674.98,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3386`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 423250,Discounts: 908.75,Sales: 422341.25,COGS: 87240,Profit: 335101.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `852`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 106500,Discounts: 983.75,Sales: 105516.25,COGS: 94440,Profit: 11076.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2783`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 347875,Discounts: 2278.75,Sales: 345596.25,COGS: 218760,Profit: 126836.25,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2684`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 40260,Discounts: 112.05,Sales: 40147.95,COGS: 7470,Profit: 32677.95,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4083`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1224900,Discounts: 8715,Sales: 1216185,COGS: 726250,Profit: 489935,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2816`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 985600,Discounts: 7542.5,Sales: 978057.5,COGS: 560300,Profit: 417757.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4294`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 85880,Discounts: 772.8,Sales: 85107.2,COGS: 38640,Profit: 46467.2,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 25.34,Sales: 19966.66,COGS: 1810,Profit: 18156.66,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1407`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 175875,Discounts: 1153.75,Sales: 174721.25,COGS: 110760,Profit: 63961.25,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1265`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 8855,Discounts: 18.41,Sales: 8836.59,COGS: 1315,Profit: 7521.59,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3892`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1362200,Discounts: 3302.25,Sales: 1358897.75,COGS: 245310,Profit: 1113587.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3068`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 383500,Discounts: 908.75,Sales: 382591.25,COGS: 87240,Profit: 295351.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2181`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 272625,Discounts: 983.75,Sales: 271641.25,COGS: 94440,Profit: 177201.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1356`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 406800,Discounts: 2958,Sales: 403842,COGS: 246500,Profit: 177201.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1814`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 634900,Discounts: 4889.5,Sales: 630010.5,COGS: 363220,Profit: 266790.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1495`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 186875,Discounts: 2180,Sales: 184695,COGS: 209280,Profit: 24585,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1463`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 182875,Discounts: 1856.25,Sales: 181018.75,COGS: 89100,Profit: 91918.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `215`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 2580,Discounts: 310.8,Sales: 2269.2,COGS: 3885,Profit: 1615.8,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `566`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 198100,Discounts: 19964,Sales: 178136,COGS: 741520,Profit: 563384,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3255`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 39060,Discounts: 274.08,Sales: 38785.92,COGS: 3426,Profit: 35359.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15440,Discounts: 626.4,Sales: 14813.6,COGS: 15660,Profit: 846.4,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1135`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13620,Discounts: 165.6,Sales: 13454.4,COGS: 2070,Profit: 11384.4,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 17895,Discounts: 708.9,Sales: 17186.1,COGS: 23630,Profit: 6443.9,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2530`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 759000,Discounts: 5508,Sales: 753492,COGS: 229500,Profit: 523992,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3451`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1035300,Discounts: 10368,Sales: 1024932,COGS: 432000,Profit: 592932,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3059`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 36708,Discounts: 274.08,Sales: 36433.92,COGS: 3426,Profit: 33007.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3957`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 494625,Discounts: 1655,Sales: 492970,COGS: 79440,Profit: 413530,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3444`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 41328,Discounts: 310.8,Sales: 41017.2,COGS: 3885,Profit: 37132.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3154`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 946200,Discounts: 11496,Sales: 934704,COGS: 479000,Profit: 455704,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4108`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1437800,Discounts: 19964,Sales: 1417836,COGS: 741520,Profit: 676316,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3760`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 470000,Discounts: 6822.5,Sales: 463177.5,COGS: 327480,Profit: 135697.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2334`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28008,Discounts: 253.2,Sales: 27754.8,COGS: 3165,Profit: 24589.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `580`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 6960,Discounts: 260.16,Sales: 6699.84,COGS: 3252,Profit: 3447.84,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2610`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 52200,Discounts: 626.4,Sales: 51573.6,COGS: 15660,Profit: 35913.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1459`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 510650,Discounts: 20139,Sales: 490511,COGS: 748020,Profit: 257509,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3774`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 45288,Discounts: 253.2,Sales: 45034.8,COGS: 3165,Profit: 41869.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2572`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 30864,Discounts: 260.16,Sales: 30603.84,COGS: 3252,Profit: 27351.84,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `320`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 40000,Discounts: 1655,Sales: 38345,COGS: 79440,Profit: 41095,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3275`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1146250,Discounts: 20139,Sales: 1126111,COGS: 748020,Profit: 378091,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3582`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 447750,Discounts: 6822.5,Sales: 440927.5,COGS: 327480,Profit: 113447.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4056`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1216800,Discounts: 1554,Sales: 1215246,COGS: 64750,Profit: 1150496,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2144`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 643200,Discounts: 6606,Sales: 636594,COGS: 275250,Profit: 361344,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3502`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 437750,Discounts: 5690,Sales: 432060,COGS: 273120,Profit: 158940,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `679`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 13580,Discounts: 494.4,Sales: 13085.6,COGS: 12360,Profit: 725.6,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2351`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 47020,Discounts: 376.4,Sales: 46643.6,COGS: 9410,Profit: 37233.6,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2043`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 612900,Discounts: 11496,Sales: 601404,COGS: 479000,Profit: 122404,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3565`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 445625,Discounts: 15913.13,Sales: 429711.88,COGS: 509220,Profit: 79508.13,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1401`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 28020,Discounts: 1548,Sales: 26472,COGS: 25800,Profit: 672,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2077`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 623100,Discounts: 6201,Sales: 616899,COGS: 172250,Profit: 444649,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 43716,Discounts: 700.92,Sales: 43015.08,COGS: 5841,Profit: 37174.08,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2960`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20720,Discounts: 411.18,Sales: 20308.82,COGS: 9790,Profit: 10518.82,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1201`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 14412,Discounts: 684.36,Sales: 13727.64,COGS: 5703,Profit: 8024.64,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2321`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 16247,Discounts: 114.24,Sales: 16132.76,COGS: 2720,Profit: 13412.76,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3972`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 496500,Discounts: 4826.25,Sales: 491673.75,COGS: 154440,Profit: 337233.75,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3878`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 484750,Discounts: 6397.5,Sales: 478352.5,COGS: 204720,Profit: 273632.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2278`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 683400,Discounts: 21910.5,Sales: 661489.5,COGS: 608625,Profit: 52864.5,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1075`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 134375,Discounts: 6652.5,Sales: 127722.5,COGS: 212880,Profit: 85157.5,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4050`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 48600,Discounts: 684.36,Sales: 47915.64,COGS: 5703,Profit: 42212.64,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3035`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 910500,Discounts: 6201,Sales: 904299,COGS: 172250,Profit: 732049,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3636`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 454500,Discounts: 5887.5,Sales: 448612.5,COGS: 188400,Profit: 260212.5,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1379`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 16548,Discounts: 493.02,Sales: 16054.98,COGS: 4108.5,Profit: 11946.48,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4492`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 561500,Discounts: 7533.75,Sales: 553966.25,COGS: 241080,Profit: 312886.25,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1744`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 218000,Discounts: 4826.25,Sales: 213173.75,COGS: 154440,Profit: 58733.75,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2341`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 292625,Discounts: 6397.5,Sales: 286227.5,COGS: 204720,Profit: 81507.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 479375,Discounts: 7533.75,Sales: 471841.25,COGS: 241080,Profit: 230761.25,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1161`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 348300,Discounts: 25596,Sales: 322704,COGS: 711000,Profit: 388296,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `876`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10512,Discounts: 689.76,Sales: 9822.24,COGS: 5748,Profit: 4074.24,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1705`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 213125,Discounts: 5887.5,Sales: 207237.5,COGS: 188400,Profit: 18837.5,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1805`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 541500,Discounts: 16866,Sales: 524634,COGS: 468500,Profit: 56134,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `389`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 136150,Discounts: 17241,Sales: 118909,COGS: 426920,Profit: 308011,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1459`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 29180,Discounts: 498.6,Sales: 28681.4,COGS: 8310,Profit: 20371.4,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4236`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 84720,Discounts: 2310.3,Sales: 82409.7,COGS: 38505,Profit: 43904.7,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3627`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 43524,Discounts: 892.44,Sales: 42631.56,COGS: 7437,Profit: 35194.56,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1756`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 26340,Discounts: 1218.6,Sales: 25121.4,COGS: 20310,Profit: 4811.4,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `307`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 4605,Discounts: 1218.6,Sales: 3386.4,COGS: 20310,Profit: 16923.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1222`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 366600,Discounts: 24252,Sales: 342348,COGS: 505250,Profit: 162902,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `489`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 171150,Discounts: 3836,Sales: 167314,COGS: 71240,Profit: 96074,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4133`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 61995,Discounts: 1180.2,Sales: 60814.8,COGS: 19670,Profit: 41144.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2743`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 822900,Discounts: 22308,Sales: 800592,COGS: 464750,Profit: 335842,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `4460`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1338000,Discounts: 24252,Sales: 1313748,COGS: 505250,Profit: 808498,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1232`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 154000,Discounts: 5690,Sales: 148310,COGS: 136560,Profit: 11750,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 18102,Discounts: 1190.28,Sales: 16911.72,COGS: 21255,Profit: 4343.28,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1332`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 166500,Discounts: 3975,Sales: 162525,COGS: 95400,Profit: 67125,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4487`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1346100,Discounts: 16974,Sales: 1329126,COGS: 353625,Profit: 975501,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3862`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1158600,Discounts: 35016,Sales: 1123584,COGS: 729500,Profit: 394084,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1765`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 617750,Discounts: 48300,Sales: 569450,COGS: 897000,Profit: 327550,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3533`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 441625,Discounts: 14940,Sales: 426685,COGS: 358560,Profit: 68125,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2016`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 30240,Discounts: 130.8,Sales: 30109.2,COGS: 2180,Profit: 27929.2,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58760,Discounts: 1659.2,Sales: 57100.8,COGS: 20740,Profit: 36360.8,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3352`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67040,Discounts: 844.8,Sales: 66195.2,COGS: 10560,Profit: 55635.2,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2430`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 850500,Discounts: 3836,Sales: 846664,COGS: 71240,Profit: 775424,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `535`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 66875,Discounts: 5690,Sales: 61185,COGS: 136560,Profit: 75375,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1523`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 18276,Discounts: 703.2,Sales: 17572.8,COGS: 4395,Profit: 13177.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1782`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 623700,Discounts: 30478,Sales: 593222,COGS: 566020,Profit: 27202,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `347`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 4164,Discounts: 415.68,Sales: 3748.32,COGS: 2598,Profit: 1150.32,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3509`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1228150,Discounts: 30478,Sales: 1197672,COGS: 566020,Profit: 631652,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2943`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1030050,Discounts: 26110,Sales: 1003940,COGS: 484900,Profit: 519040,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4037`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 504625,Discounts: 5370,Sales: 499255,COGS: 128880,Profit: 370375,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4146`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1451100,Discounts: 26698,Sales: 1424402,COGS: 495820,Profit: 928582,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `725`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 5075,Discounts: 480.2,Sales: 4594.8,COGS: 6860,Profit: 2265.2,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 16275,Discounts: 941.15,Sales: 15333.85,COGS: 13445,Profit: 1888.85,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `675`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 8100,Discounts: 1458.6,Sales: 6641.4,COGS: 7293,Profit: 651.6,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2990`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35880,Discounts: 1458.6,Sales: 34421.4,COGS: 7293,Profit: 27128.4,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1072`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 7504,Discounts: 941.15,Sales: 6562.85,COGS: 13445,Profit: 6882.15,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1048`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7336,Discounts: 589.05,Sales: 6746.95,COGS: 8415,Profit: 1668.05,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `469`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 5628,Discounts: 673.8,Sales: 4954.2,COGS: 3369,Profit: 1585.2,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4240`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50880,Discounts: 1119,Sales: 49761,COGS: 5595,Profit: 44166,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1976`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 23712,Discounts: 669.6,Sales: 23042.4,COGS: 3348,Profit: 19694.4,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1984`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39680,Discounts: 1563,Sales: 38117,COGS: 15630,Profit: 22487,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `480`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 144000,Discounts: 14865,Sales: 129135,COGS: 247750,Profit: 118615,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1205`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 18075,Discounts: 2093.25,Sales: 15981.75,COGS: 27910,Profit: 11928.25,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2480`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17360,Discounts: 199.5,Sales: 17160.5,COGS: 2850,Profit: 14310.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2926`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 20482,Discounts: 870.45,Sales: 19611.55,COGS: 12435,Profit: 7176.55,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3210`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1123500,Discounts: 24228.75,Sales: 1099271.25,COGS: 359970,Profit: 739301.25,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3221`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 402625,Discounts: 22668.75,Sales: 379956.25,COGS: 435240,Profit: 55283.75,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1127`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13524,Discounts: 1405.2,Sales: 12118.8,COGS: 7026,Profit: 5092.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1610`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 32200,Discounts: 1303,Sales: 30897,COGS: 13030,Profit: 17867,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4100`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 512500,Discounts: 18700,Sales: 493800,COGS: 359040,Profit: 134760,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1012`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 126500,Discounts: 14906.25,Sales: 111593.75,COGS: 286200,Profit: 174606.25,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3337`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1001100,Discounts: 24105,Sales: 976995,COGS: 401750,Profit: 575245,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3955`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27685,Discounts: 814.45,Sales: 26870.55,COGS: 11635,Profit: 15235.55,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4347`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1304100,Discounts: 14865,Sales: 1289235,COGS: 247750,Profit: 1041485,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1548`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 541800,Discounts: 10535,Sales: 531265,COGS: 156520,Profit: 374745,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2153`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 32295,Discounts: 1965,Sales: 30330,COGS: 26200,Profit: 4130,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4126`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 515750,Discounts: 5381.25,Sales: 510368.75,COGS: 103320,Profit: 407048.75,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3376`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67520,Discounts: 2663,Sales: 64857,COGS: 26630,Profit: 38227,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2244`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 33660,Discounts: 416.25,Sales: 33243.75,COGS: 5550,Profit: 27693.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1360`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20400,Discounts: 2145.75,Sales: 18254.25,COGS: 28610,Profit: 10355.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `279`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 34875,Discounts: 5043.75,Sales: 29831.25,COGS: 96840,Profit: 67008.75,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2521`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 882350,Discounts: 10535,Sales: 871815,COGS: 156520,Profit: 715295,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2433`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 48660,Discounts: 2832,Sales: 45828,COGS: 28320,Profit: 17508,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1738`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 34760,Discounts: 1579,Sales: 33181,COGS: 15790,Profit: 17391,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1106`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 138250,Discounts: 5381.25,Sales: 132868.75,COGS: 103320,Profit: 29548.75,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `213`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 63900,Discounts: 18750,Sales: 45150,COGS: 312500,Profit: 267350,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2929`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 58580,Discounts: 2663,Sales: 55917,COGS: 26630,Profit: 29287,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2389`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 16723,Discounts: 199.5,Sales: 16523.5,COGS: 2850,Profit: 13673.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3086`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21602,Discounts: 870.45,Sales: 20731.55,COGS: 12435,Profit: 8296.55,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `745`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 260750,Discounts: 23625,Sales: 237125,COGS: 351000,Profit: 113875,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1266`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 443100,Discounts: 9660,Sales: 433440,COGS: 143520,Profit: 289920,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4287`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1286100,Discounts: 18750,Sales: 1267350,COGS: 312500,Profit: 954850,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 47895,Discounts: 3420.9,Sales: 44474.1,COGS: 38010,Profit: 6464.1,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1967`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39340,Discounts: 1341,Sales: 37999,COGS: 11175,Profit: 26824,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `631`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 9465,Discounts: 2559.6,Sales: 6905.4,COGS: 28440,Profit: 21534.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3469`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 41628,Discounts: 404.64,Sales: 41223.36,COGS: 1686,Profit: 39537.36,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3215`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 48225,Discounts: 1827,Sales: 46398,COGS: 20300,Profit: 26098,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1959`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 685650,Discounts: 20580,Sales: 665070,COGS: 254800,Profit: 410270,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2181`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 763350,Discounts: 30660,Sales: 732690,COGS: 379600,Profit: 353090,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2205`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 26460,Discounts: 1960.56,Sales: 24499.44,COGS: 8169,Profit: 16330.44,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1890`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 661500,Discounts: 31416,Sales: 630084,COGS: 388960,Profit: 241124,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2417`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 302125,Discounts: 7140,Sales: 294985,COGS: 114240,Profit: 180745,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1158`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 144750,Discounts: 20662.5,Sales: 124087.5,COGS: 330600,Profit: 206512.5,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `803`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 12045,Discounts: 1377,Sales: 10668,COGS: 15300,Profit: 4632,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3705`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1296750,Discounts: 31416,Sales: 1265334,COGS: 388960,Profit: 876374,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `589`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 4123,Discounts: 629.16,Sales: 3493.84,COGS: 7490,Profit: 3996.16,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3999`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 59985,Discounts: 2559.6,Sales: 57425.4,COGS: 28440,Profit: 28985.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4256`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 29792,Discounts: 629.16,Sales: 29162.84,COGS: 7490,Profit: 21672.84,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2160`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 270000,Discounts: 14906.25,Sales: 255093.75,COGS: 238500,Profit: 16593.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `466`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 163100,Discounts: 35259,Sales: 127841,COGS: 436540,Profit: 308699,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1478`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 22170,Discounts: 1978.2,Sales: 20191.8,COGS: 21980,Profit: 1788.2,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3798`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 56970,Discounts: 1568.7,Sales: 55401.3,COGS: 17430,Profit: 37971.3,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `447`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 6705,Discounts: 1037.7,Sales: 5667.3,COGS: 11530,Profit: 5862.7,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `745`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 14900,Discounts: 1201.2,Sales: 13698.8,COGS: 10010,Profit: 3688.8,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1732`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 12124,Discounts: 559.86,Sales: 11564.14,COGS: 6665,Profit: 4899.14,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1759`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 26385,Discounts: 1037.7,Sales: 25347.3,COGS: 11530,Profit: 13817.3,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `338`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 4056,Discounts: 610.68,Sales: 3445.32,COGS: 2181,Profit: 1264.32,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3911`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 46932,Discounts: 1582.56,Sales: 45349.44,COGS: 5652,Profit: 39697.44,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `4473`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 53676,Discounts: 1965.6,Sales: 51710.4,COGS: 7020,Profit: 44690.4,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `383`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 4596,Discounts: 1967.28,Sales: 2628.72,COGS: 7026,Profit: 4397.28,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1062`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 15930,Discounts: 1325.1,Sales: 14604.9,COGS: 12620,Profit: 1984.9,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4083`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 28581,Discounts: 556.15,Sales: 28024.85,COGS: 5675,Profit: 22349.85,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3974`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 27818,Discounts: 268.03,Sales: 27549.97,COGS: 2735,Profit: 24814.97,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3723`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 26061,Discounts: 775.18,Sales: 25285.82,COGS: 7910,Profit: 17375.82,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2435`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 29220,Discounts: 1460.34,Sales: 27759.66,COGS: 5215.5,Profit: 22544.16,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1763`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 12341,Discounts: 775.18,Sales: 11565.82,COGS: 7910,Profit: 3655.82,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4473`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31311,Discounts: 556.15,Sales: 30754.85,COGS: 5675,Profit: 25079.85,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1246`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 436100,Discounts: 43144.5,Sales: 392955.5,COGS: 457860,Profit: 64904.5,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1615`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 484500,Discounts: 9408,Sales: 475092,COGS: 112000,Profit: 363092,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `749`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 224700,Discounts: 45801,Sales: 178899,COGS: 545250,Profit: 366351,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1318`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 26360,Discounts: 2766.4,Sales: 23593.6,COGS: 19760,Profit: 3833.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2882`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 864600,Discounts: 45801,Sales: 818799,COGS: 545250,Profit: 273549,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2484`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 745200,Discounts: 35742,Sales: 709458,COGS: 425500,Profit: 283958,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3169`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 950700,Discounts: 9408,Sales: 941292,COGS: 112000,Profit: 829292,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 510000,Discounts: 30738.75,Sales: 479261.25,COGS: 421560,Profit: 57701.25,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3943`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 59145,Discounts: 2206.05,Sales: 56938.95,COGS: 21010,Profit: 35928.95,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `253`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5060,Discounts: 2149,Sales: 2911,COGS: 15350,Profit: 12439,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `799`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 239700,Discounts: 34839,Sales: 204861,COGS: 414750,Profit: 209889,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3942`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 78840,Discounts: 852.6,Sales: 77987.4,COGS: 6090,Profit: 71897.4,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2498`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 312250,Discounts: 18261.25,Sales: 293988.75,COGS: 250440,Profit: 43548.75,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2517`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 50340,Discounts: 2766.4,Sales: 47573.6,COGS: 19760,Profit: 27813.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1145`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 343500,Discounts: 28812,Sales: 314688,COGS: 343000,Profit: 28312,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3814`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 45768,Discounts: 2725.38,Sales: 43042.62,COGS: 9733.5,Profit: 33309.12,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1188`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 356400,Discounts: 20139,Sales: 336261,COGS: 239750,Profit: 96511,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2233`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 669900,Discounts: 57687,Sales: 612213,COGS: 686750,Profit: 74537,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `421`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 52625,Discounts: 14393.75,Sales: 38231.25,COGS: 197400,Profit: 159168.75,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `269`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 94150,Discounts: 70462,Sales: 23688,COGS: 747760,Profit: 724072,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `952`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19040,Discounts: 1565.2,Sales: 17474.8,COGS: 11180,Profit: 6294.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2964`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 889200,Discounts: 28812,Sales: 860388,COGS: 343000,Profit: 517388,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1505`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10535,Discounts: 273.28,Sales: 10261.72,COGS: 2440,Profit: 7821.72,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1678`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 33560,Discounts: 2051.2,Sales: 31508.8,COGS: 12820,Profit: 18688.8,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4249`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 29743,Discounts: 143.92,Sales: 29599.08,COGS: 1285,Profit: 28314.08,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1677`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 33540,Discounts: 2051.2,Sales: 31488.8,COGS: 12820,Profit: 18668.8,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3051`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 381375,Discounts: 15400,Sales: 365975,COGS: 184800,Profit: 181175,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3372`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 50580,Discounts: 588,Sales: 49992,COGS: 4900,Profit: 45092,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1686`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 590100,Discounts: 38136,Sales: 551964,COGS: 354120,Profit: 197844,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3086`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 46290,Discounts: 3001.2,Sales: 43288.8,COGS: 25010,Profit: 18278.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4150`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 83000,Discounts: 1132.8,Sales: 81867.2,COGS: 7080,Profit: 74787.2,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3027`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 60540,Discounts: 1032,Sales: 59508,COGS: 6450,Profit: 53058,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4359`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1307700,Discounts: 37488,Sales: 1270212,COGS: 390500,Profit: 879712,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1589`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 23835,Discounts: 853.2,Sales: 22981.8,COGS: 7110,Profit: 15871.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2679`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 334875,Discounts: 11140,Sales: 323735,COGS: 133680,Profit: 190055,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 23807,Discounts: 705.04,Sales: 23101.96,COGS: 6295,Profit: 16806.96,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2815`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19705,Discounts: 613.2,Sales: 19091.8,COGS: 5475,Profit: 13616.8,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2964`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 59280,Discounts: 2185.6,Sales: 57094.4,COGS: 13660,Profit: 43434.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4173`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1251900,Discounts: 59040,Sales: 1192860,COGS: 615000,Profit: 577860,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1157`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 8099,Discounts: 379.68,Sales: 7719.32,COGS: 3390,Profit: 4329.32,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3065`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21455,Discounts: 894.88,Sales: 20560.12,COGS: 7990,Profit: 12570.12,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 81600,Discounts: 3094.4,Sales: 78505.6,COGS: 19340,Profit: 59165.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1713`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34260,Discounts: 4788.8,Sales: 29471.2,COGS: 29930,Profit: 458.8,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1691`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 591850,Discounts: 38136,Sales: 553714,COGS: 354120,Profit: 199594,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2305`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27660,Discounts: 574.08,Sales: 27085.92,COGS: 1794,Profit: 25291.92,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3401`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 23807,Discounts: 1627.92,Sales: 22179.08,COGS: 14535,Profit: 7644.08,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2288`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 16016,Discounts: 1309.28,Sales: 14706.72,COGS: 11690,Profit: 3016.72,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4086`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1225800,Discounts: 15240,Sales: 1210560,COGS: 158750,Profit: 1051810,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2651`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 927850,Discounts: 16086,Sales: 911764,COGS: 149370,Profit: 762394,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3971`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27797,Discounts: 1309.28,Sales: 26487.72,COGS: 11690,Profit: 14797.72,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2512`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 879200,Discounts: 10668,Sales: 868532,COGS: 99060,Profit: 769472,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 960750,Discounts: 11816,Sales: 948934,COGS: 109720,Profit: 839214,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1903`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 570900,Discounts: 51216,Sales: 519684,COGS: 533500,Profit: 13816,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2914`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 58280,Discounts: 1132.8,Sales: 57147.2,COGS: 7080,Profit: 50067.2,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1889`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 13223,Discounts: 1627.92,Sales: 11595.08,COGS: 14535,Profit: 2939.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1466`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 29320,Discounts: 2185.6,Sales: 27134.4,COGS: 13660,Profit: 13474.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `887`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 266100,Discounts: 59040,Sales: 207060,COGS: 615000,Profit: 407940,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `395`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 7900,Discounts: 2432,Sales: 5468,COGS: 15200,Profit: 9732,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1693`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 25395,Discounts: 853.2,Sales: 24541.8,COGS: 7110,Profit: 17431.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2649`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 794700,Discounts: 15240,Sales: 779460,COGS: 158750,Profit: 620710,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3608`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 72160,Discounts: 698.4,Sales: 71461.6,COGS: 4365,Profit: 67096.6,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1073`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 321900,Discounts: 29538,Sales: 292362,COGS: 273500,Profit: 18862,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2167`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 650100,Discounts: 102667.5,Sales: 547432.5,COGS: 950625,Profit: 403192.5,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1319`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 461650,Discounts: 52479,Sales: 409171,COGS: 433160,Profit: 23989,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1252`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 15024,Discounts: 2506.68,Sales: 12517.32,COGS: 6963,Profit: 5554.32,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1156`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 144500,Discounts: 31466.25,Sales: 113033.75,COGS: 335640,Profit: 222606.25,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1153`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 345900,Discounts: 69255,Sales: 276645,COGS: 641250,Profit: 364605,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2720`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 952000,Discounts: 76135.5,Sales: 875864.5,COGS: 628420,Profit: 247444.5,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 54870,Discounts: 4961.25,Sales: 49908.75,COGS: 36750,Profit: 13158.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2950`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 885000,Discounts: 29538,Sales: 855462,COGS: 273500,Profit: 581962,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1821`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27315,Discounts: 1656.45,Sales: 25658.55,COGS: 12270,Profit: 13388.55,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1127`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 338100,Discounts: 35748,Sales: 302352,COGS: 331000,Profit: 28648,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `862`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 107750,Discounts: 31466.25,Sales: 76283.75,COGS: 335640,Profit: 259356.25,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3805`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 57075,Discounts: 330.75,Sales: 56744.25,COGS: 2450,Profit: 54294.25,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1415`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 424500,Discounts: 102424.5,Sales: 322075.5,COGS: 948375,Profit: 626299.5,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2231`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 780850,Discounts: 41170.5,Sales: 739679.5,COGS: 339820,Profit: 399859.5,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3649`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 456125,Discounts: 6378.75,Sales: 449746.25,COGS: 68040,Profit: 381706.25,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2948`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 368500,Discounts: 23737.5,Sales: 344762.5,COGS: 253200,Profit: 91562.5,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3395`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1188250,Discounts: 39973.5,Sales: 1148276.5,COGS: 329940,Profit: 818336.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2650`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31800,Discounts: 2112.48,Sales: 29687.52,COGS: 5868,Profit: 23819.52,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `585`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 175500,Discounts: 71793,Sales: 103707,COGS: 664750,Profit: 561043,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1316`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 460600,Discounts: 42572.25,Sales: 418027.75,COGS: 351390,Profit: 66637.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4459`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 53508,Discounts: 950.4,Sales: 52557.6,COGS: 2640,Profit: 49917.6,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2711`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 813300,Discounts: 50409,Sales: 762891,COGS: 466750,Profit: 296141,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3613`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 54195,Discounts: 1656.45,Sales: 52538.55,COGS: 12270,Profit: 40268.55,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1847`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 230875,Discounts: 9866.25,Sales: 221008.75,COGS: 105240,Profit: 115768.75,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2996`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1048600,Discounts: 65236.5,Sales: 983363.5,COGS: 538460,Profit: 444903.5,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2838`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 993300,Discounts: 39973.5,Sales: 953326.5,COGS: 329940,Profit: 623386.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1536`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 30720,Discounts: 3049.2,Sales: 27670.8,COGS: 16940,Profit: 10730.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1291`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 25820,Discounts: 1193.4,Sales: 24626.6,COGS: 6630,Profit: 17996.6,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1213`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 8491,Discounts: 515.97,Sales: 7975.03,COGS: 4095,Profit: 3880.03,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2370`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 28440,Discounts: 1706.4,Sales: 26733.6,COGS: 4740,Profit: 21993.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1979`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 13853,Discounts: 328.23,Sales: 13524.77,COGS: 2605,Profit: 10919.77,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2879`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57580,Discounts: 1751.4,Sales: 55828.6,COGS: 9730,Profit: 46098.6,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1707`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34140,Discounts: 1868.4,Sales: 32271.6,COGS: 10380,Profit: 21891.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2933`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 20531,Discounts: 226.8,Sales: 20304.2,COGS: 1800,Profit: 18504.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1014`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 12168,Discounts: 2124.36,Sales: 10043.64,COGS: 5901,Profit: 4142.64,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `693`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 10395,Discounts: 3547.8,Sales: 6847.2,COGS: 26280,Profit: 19432.8,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3741`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26187,Discounts: 226.8,Sales: 25960.2,COGS: 1800,Profit: 24160.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3995`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27965,Discounts: 328.23,Sales: 27636.77,COGS: 2605,Profit: 25031.77,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `953`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19060,Discounts: 1868.4,Sales: 17191.6,COGS: 10380,Profit: 6811.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2530`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 37950,Discounts: 2201.18,Sales: 35748.82,COGS: 16305,Profit: 19443.82,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1372`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 27440,Discounts: 0,Sales: 27440,COGS: 16185,Profit: 11255,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2762`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 55240,Discounts: 0,Sales: 55240,COGS: 13210,Profit: 42030,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1464`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21960,Discounts: 0,Sales: 21960,COGS: 21780,Profit: 180,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `719`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 10785,Discounts: 0,Sales: 10785,COGS: 8880,Profit: 1905,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3576`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53640,Discounts: 0,Sales: 53640,COGS: 24700,Profit: 28940,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4422`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1547700,Discounts: 0,Sales: 1547700,COGS: 393380,Profit: 1154320,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3649`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 54735,Discounts: 0,Sales: 54735,COGS: 9210,Profit: 45525,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4172`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 50064,Discounts: 0,Sales: 50064,COGS: 7554,Profit: 42510,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3841`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 76820,Discounts: 0,Sales: 76820,COGS: 18990,Profit: 57830,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3726`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 44712,Discounts: 0,Sales: 44712,COGS: 4635,Profit: 40077,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2625`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 39375,Discounts: 0,Sales: 39375,COGS: 24700,Profit: 14675,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1958`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 244750,Discounts: 0,Sales: 244750,COGS: 319860,Profit: 75110,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3271`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 981300,Discounts: 0,Sales: 981300,COGS: 239500,Profit: 741800,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2091`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 14637,Discounts: 0,Sales: 14637,COGS: 10730,Profit: 3907,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2530`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 316250,Discounts: 0,Sales: 316250,COGS: 41400,Profit: 274850,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2825`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 42375,Discounts: 0,Sales: 42375,COGS: 6150,Profit: 36225,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2513`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 50260,Discounts: 0,Sales: 50260,COGS: 2920,Profit: 47340,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `883`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 13245,Discounts: 0,Sales: 13245,COGS: 9740,Profit: 3505,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 25044,Discounts: 0,Sales: 25044,COGS: 7554,Profit: 17490,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2563`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 897050,Discounts: 0,Sales: 897050,COGS: 261560,Profit: 635490,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2846`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34152,Discounts: 0,Sales: 34152,COGS: 1101,Profit: 33051,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `997`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 6979,Discounts: 0,Sales: 6979,COGS: 4415,Profit: 2564,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3421`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 51315,Discounts: 0,Sales: 51315,COGS: 5490,Profit: 45825,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Marchesa`,UnitsSold: `70000`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 1050000,Discounts: 0,Sales: 1050000,COGS: 5490,Profit: 1044510,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2291`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 687300,Discounts: 0,Sales: 687300,COGS: 197000,Profit: 490300,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2290`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 34350,Discounts: 0,Sales: 34350,COGS: 24720,Profit: 9630,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2133`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14931,Discounts: 0,Sales: 14931,COGS: 5715,Profit: 9216,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3475`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1216250,Discounts: 0,Sales: 1216250,COGS: 448500,Profit: 767750,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3686`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 44232,Discounts: 0,Sales: 44232,COGS: 2736,Profit: 41496,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3319`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 49785,Discounts: 0,Sales: 49785,COGS: 21520,Profit: 28265,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3617`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 72340,Discounts: 0,Sales: 72340,COGS: 18170,Profit: 54170,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1266`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 443100,Discounts: 0,Sales: 443100,COGS: 393380,Profit: 49720,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `894`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6258,Discounts: 0,Sales: 6258,COGS: 7465,Profit: 1207,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2725`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 340625,Discounts: 0,Sales: 340625,COGS: 216480,Profit: 124145,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3061`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 36732,Discounts: 0,Sales: 36732,COGS: 6483,Profit: 30249,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3958`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1385300,Discounts: 0,Sales: 1385300,COGS: 261560,Profit: 1123740,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3920`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 47040,Discounts: 0,Sales: 47040,COGS: 4635,Profit: 42405,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3381`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422625,Discounts: 0,Sales: 422625,COGS: 338520,Profit: 84105,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1094`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 136750,Discounts: 0,Sales: 136750,COGS: 41400,Profit: 95350,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4307`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1292100,Discounts: 0,Sales: 1292100,COGS: 500250,Profit: 791850,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `878`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10536,Discounts: 0,Sales: 10536,COGS: 8514,Profit: 2022,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `496`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 7440,Discounts: 0,Sales: 7440,COGS: 21780,Profit: 14340,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3367`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 50505,Discounts: 0,Sales: 50505,COGS: 8880,Profit: 41625,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3880`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1358000,Discounts: 0,Sales: 1358000,COGS: 397020,Profit: 960980,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2055`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 616500,Discounts: 0,Sales: 616500,COGS: 537750,Profit: 78750,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4041`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 80820,Discounts: 0,Sales: 80820,COGS: 18170,Profit: 62650,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `3237`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1132950,Discounts: 0,Sales: 1132950,COGS: 715000,Profit: 417950,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `630`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 7560,Discounts: 0,Sales: 7560,COGS: 5859,Profit: 1701,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4210`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 526250,Discounts: 0,Sales: 526250,COGS: 506340,Profit: 19910,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1127`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 22540,Discounts: 0,Sales: 22540,COGS: 18990,Profit: 3550,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3438`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 24066,Discounts: 0,Sales: 24066,COGS: 8430,Profit: 15636,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2015`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 24180,Discounts: 0,Sales: 24180,COGS: 6423,Profit: 17757,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2534`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 17738,Discounts: 0,Sales: 17738,COGS: 5715,Profit: 12023,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1384`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 20760,Discounts: 0,Sales: 20760,COGS: 6150,Profit: 14610,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3561`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 24927,Discounts: 276.15,Sales: 24650.85,COGS: 19725,Profit: 4925.85,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1823`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27345,Discounts: 344.4,Sales: 27000.6,COGS: 22960,Profit: 4040.6,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19565,Discounts: 72.1,Sales: 19492.9,COGS: 5150,Profit: 14342.9,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `457`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3199,Discounts: 44.73,Sales: 3154.27,COGS: 3195,Profit: 40.73,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3785`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26495,Discounts: 92.82,Sales: 26402.18,COGS: 6630,Profit: 19772.18,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `748`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 8976,Discounts: 222.96,Sales: 8753.04,COGS: 5574,Profit: 3179.04,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1021`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 357350,Discounts: 4235,Sales: 353115,COGS: 314600,Profit: 38515,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2076`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 14532,Discounts: 177.03,Sales: 14354.97,COGS: 12645,Profit: 1709.97,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `4316`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51792,Discounts: 173.4,Sales: 51618.6,COGS: 4335,Profit: 47283.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2654`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 331750,Discounts: 412.5,Sales: 331337.5,COGS: 39600,Profit: 291737.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4174`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50088,Discounts: 320.52,Sales: 49767.48,COGS: 8013,Profit: 41754.48,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1675`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 20100,Discounts: 91.92,Sales: 20008.08,COGS: 2298,Profit: 17710.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1572`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 471600,Discounts: 1482,Sales: 470118,COGS: 123500,Profit: 346618,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3736`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1307600,Discounts: 4889.5,Sales: 1302710.5,COGS: 363220,Profit: 939490.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1914`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 669900,Discounts: 7542.5,Sales: 662357.5,COGS: 560300,Profit: 102057.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2742`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 41130,Discounts: 332.1,Sales: 40797.9,COGS: 22140,Profit: 18657.9,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1499`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 449700,Discounts: 6903,Sales: 442797,COGS: 575250,Profit: 132453,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 75440,Discounts: 275.1,Sales: 75164.9,COGS: 13755,Profit: 61409.9,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1112`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 7784,Discounts: 128.1,Sales: 7655.9,COGS: 9150,Profit: 1494.1,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1723`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 516900,Discounts: 7494,Sales: 509406,COGS: 624500,Profit: 115094,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `423`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 52875,Discounts: 828.75,Sales: 52046.25,COGS: 79560,Profit: 27513.75,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2368`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 35520,Discounts: 227.1,Sales: 35292.9,COGS: 15140,Profit: 20152.9,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 11102,Discounts: 314.48,Sales: 10787.52,COGS: 22462.5,Profit: 11674.98,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3386`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 423250,Discounts: 908.75,Sales: 422341.25,COGS: 87240,Profit: 335101.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `852`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 106500,Discounts: 983.75,Sales: 105516.25,COGS: 94440,Profit: 11076.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2783`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 347875,Discounts: 2278.75,Sales: 345596.25,COGS: 218760,Profit: 126836.25,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2684`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 40260,Discounts: 112.05,Sales: 40147.95,COGS: 7470,Profit: 32677.95,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4393`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 52716,Discounts: 91.92,Sales: 52624.08,COGS: 2298,Profit: 50326.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4083`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1224900,Discounts: 8715,Sales: 1216185,COGS: 726250,Profit: 489935,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2816`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 985600,Discounts: 7542.5,Sales: 978057.5,COGS: 560300,Profit: 417757.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4294`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 85880,Discounts: 772.8,Sales: 85107.2,COGS: 38640,Profit: 46467.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 25.34,Sales: 19966.66,COGS: 1810,Profit: 18156.66,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1407`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 175875,Discounts: 1153.75,Sales: 174721.25,COGS: 110760,Profit: 63961.25,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3850`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 481250,Discounts: 828.75,Sales: 480421.25,COGS: 79560,Profit: 400861.25,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 146.44,Sales: 19845.56,COGS: 10460,Profit: 9385.56,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1265`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 8855,Discounts: 18.41,Sales: 8836.59,COGS: 1315,Profit: 7521.59,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3892`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1362200,Discounts: 3302.25,Sales: 1358897.75,COGS: 245310,Profit: 1113587.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3068`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 383500,Discounts: 908.75,Sales: 382591.25,COGS: 87240,Profit: 295351.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2181`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 272625,Discounts: 983.75,Sales: 271641.25,COGS: 94440,Profit: 177201.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1356`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 406800,Discounts: 2958,Sales: 403842,COGS: 246500,Profit: 157342,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2545`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 763500,Discounts: 1482,Sales: 762018,COGS: 123500,Profit: 638518,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1814`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 634900,Discounts: 4889.5,Sales: 630010.5,COGS: 363220,Profit: 266790.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1495`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 186875,Discounts: 2180,Sales: 184695,COGS: 209280,Profit: 24585,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1154`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 13848,Discounts: 238.68,Sales: 13609.32,COGS: 5967,Profit: 7642.32,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `4180`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 62700,Discounts: 48.15,Sales: 62651.85,COGS: 3210,Profit: 59441.85,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1463`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 182875,Discounts: 1856.25,Sales: 181018.75,COGS: 89100,Profit: 91918.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `215`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 2580,Discounts: 310.8,Sales: 2269.2,COGS: 3885,Profit: 1615.8,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4099`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 1229700,Discounts: 1284,Sales: 1228416,COGS: 53500,Profit: 1174916,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2660`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 18620,Discounts: 300.3,Sales: 18319.7,COGS: 10725,Profit: 7594.7,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `566`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 198100,Discounts: 19964,Sales: 178136,COGS: 741520,Profit: 563384,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3255`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 39060,Discounts: 274.08,Sales: 38785.92,COGS: 3426,Profit: 35359.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15440,Discounts: 626.4,Sales: 14813.6,COGS: 15660,Profit: 846.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1135`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13620,Discounts: 165.6,Sales: 13454.4,COGS: 2070,Profit: 11384.4,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3826`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 478250,Discounts: 4150,Sales: 474100,COGS: 199200,Profit: 274900,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 17895,Discounts: 708.9,Sales: 17186.1,COGS: 23630,Profit: 6443.9,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2530`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 759000,Discounts: 5508,Sales: 753492,COGS: 229500,Profit: 523992,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3451`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1035300,Discounts: 10368,Sales: 1024932,COGS: 432000,Profit: 592932,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3059`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 36708,Discounts: 274.08,Sales: 36433.92,COGS: 3426,Profit: 33007.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3957`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 494625,Discounts: 1655,Sales: 492970,COGS: 79440,Profit: 413530,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3444`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 41328,Discounts: 310.8,Sales: 41017.2,COGS: 3885,Profit: 37132.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4388`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 548500,Discounts: 2022.5,Sales: 546477.5,COGS: 97080,Profit: 449397.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2106`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 263250,Discounts: 5362.5,Sales: 257887.5,COGS: 257400,Profit: 487.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `799`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 9588,Discounts: 428.4,Sales: 9159.6,COGS: 5355,Profit: 3804.6,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3154`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 946200,Discounts: 11496,Sales: 934704,COGS: 479000,Profit: 455704,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4108`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1437800,Discounts: 19964,Sales: 1417836,COGS: 741520,Profit: 676316,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3760`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 470000,Discounts: 6822.5,Sales: 463177.5,COGS: 327480,Profit: 135697.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `377`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 5655,Discounts: 577.5,Sales: 5077.5,COGS: 19250,Profit: 14172.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2110`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14770,Discounts: 281.82,Sales: 14488.18,COGS: 10065,Profit: 4423.18,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2334`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28008,Discounts: 253.2,Sales: 27754.8,COGS: 3165,Profit: 24589.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `580`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 6960,Discounts: 260.16,Sales: 6699.84,COGS: 3252,Profit: 3447.84,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2610`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 52200,Discounts: 626.4,Sales: 51573.6,COGS: 15660,Profit: 35913.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1598`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 559300,Discounts: 20762,Sales: 538538,COGS: 771160,Profit: 232622,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1459`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 510650,Discounts: 20139,Sales: 490511,COGS: 748020,Profit: 257509,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3284`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 410500,Discounts: 2022.5,Sales: 408477.5,COGS: 97080,Profit: 311397.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1197`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 149625,Discounts: 5362.5,Sales: 144262.5,COGS: 257400,Profit: 113137.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3774`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 45288,Discounts: 253.2,Sales: 45034.8,COGS: 3165,Profit: 41869.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2303`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 46060,Discounts: 217.6,Sales: 45842.4,COGS: 5440,Profit: 40402.4,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2572`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 30864,Discounts: 260.16,Sales: 30603.84,COGS: 3252,Profit: 27351.84,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `320`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 40000,Discounts: 1655,Sales: 38345,COGS: 79440,Profit: 41095,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2126`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 637800,Discounts: 1284,Sales: 636516,COGS: 53500,Profit: 583016,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3275`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1146250,Discounts: 20139,Sales: 1126111,COGS: 748020,Profit: 378091,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3582`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 447750,Discounts: 6822.5,Sales: 440927.5,COGS: 327480,Profit: 113447.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `783`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 274050,Discounts: 1862,Sales: 272188,COGS: 69160,Profit: 203028,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1202`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 420700,Discounts: 13580,Sales: 407120,COGS: 504400,Profit: 97280,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4056`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1216800,Discounts: 1554,Sales: 1215246,COGS: 64750,Profit: 1150496,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2144`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 643200,Discounts: 6606,Sales: 636594,COGS: 275250,Profit: 361344,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3502`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 437750,Discounts: 5690,Sales: 432060,COGS: 273120,Profit: 158940,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1397`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 488950,Discounts: 20762,Sales: 468188,COGS: 771160,Profit: 302972,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `679`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 13580,Discounts: 494.4,Sales: 13085.6,COGS: 12360,Profit: 725.6,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2351`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 47020,Discounts: 376.4,Sales: 46643.6,COGS: 9410,Profit: 37233.6,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2043`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 612900,Discounts: 11496,Sales: 601404,COGS: 479000,Profit: 122404,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3565`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 445625,Discounts: 15913.13,Sales: 429711.88,COGS: 509220,Profit: 79508.13,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1401`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 28020,Discounts: 1548,Sales: 26472,COGS: 25800,Profit: 672,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2077`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 623100,Discounts: 6201,Sales: 616899,COGS: 172250,Profit: 444649,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 43716,Discounts: 700.92,Sales: 43015.08,COGS: 5841,Profit: 37174.08,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1105`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 13260,Discounts: 326.88,Sales: 12933.12,COGS: 2724,Profit: 10209.12,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2960`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20720,Discounts: 411.18,Sales: 20308.82,COGS: 9790,Profit: 10518.82,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1201`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 14412,Discounts: 684.36,Sales: 13727.64,COGS: 5703,Profit: 8024.64,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2321`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 16247,Discounts: 114.24,Sales: 16132.76,COGS: 2720,Profit: 13412.76,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3640`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1274000,Discounts: 18868.5,Sales: 1255131.5,COGS: 467220,Profit: 787911.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3972`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 496500,Discounts: 4826.25,Sales: 491673.75,COGS: 154440,Profit: 337233.75,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3878`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 484750,Discounts: 6397.5,Sales: 478352.5,COGS: 204720,Profit: 273632.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2278`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 683400,Discounts: 21910.5,Sales: 661489.5,COGS: 608625,Profit: 52864.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1075`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 134375,Discounts: 6652.5,Sales: 127722.5,COGS: 212880,Profit: 85157.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4050`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 48600,Discounts: 684.36,Sales: 47915.64,COGS: 5703,Profit: 42212.64,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3035`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 910500,Discounts: 6201,Sales: 904299,COGS: 172250,Profit: 732049,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3636`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 454500,Discounts: 5887.5,Sales: 448612.5,COGS: 188400,Profit: 260212.5,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1379`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 16548,Discounts: 493.02,Sales: 16054.98,COGS: 4108.5,Profit: 11946.48,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4492`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 561500,Discounts: 7533.75,Sales: 553966.25,COGS: 241080,Profit: 312886.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `764`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11460,Discounts: 875.25,Sales: 10584.75,COGS: 19450,Profit: 8865.25,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1744`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 218000,Discounts: 4826.25,Sales: 213173.75,COGS: 154440,Profit: 58733.75,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2341`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 292625,Discounts: 6397.5,Sales: 286227.5,COGS: 204720,Profit: 81507.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 479375,Discounts: 7533.75,Sales: 471841.25,COGS: 241080,Profit: 230761.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1161`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 348300,Discounts: 25596,Sales: 322704,COGS: 711000,Profit: 388296,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `876`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10512,Discounts: 689.76,Sales: 9822.24,COGS: 5748,Profit: 4074.24,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1705`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 213125,Discounts: 5887.5,Sales: 207237.5,COGS: 188400,Profit: 18837.5,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1805`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 541500,Discounts: 16866,Sales: 524634,COGS: 468500,Profit: 56134,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `389`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 136150,Discounts: 17241,Sales: 118909,COGS: 426920,Profit: 308011,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 41175,Discounts: 875.25,Sales: 40299.75,COGS: 19450,Profit: 20849.75,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1459`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 29180,Discounts: 498.6,Sales: 28681.4,COGS: 8310,Profit: 20371.4,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3938`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27566,Discounts: 369.6,Sales: 27196.4,COGS: 8800,Profit: 18396.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4236`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 84720,Discounts: 2310.3,Sales: 82409.7,COGS: 38505,Profit: 43904.7,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3627`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 43524,Discounts: 892.44,Sales: 42631.56,COGS: 7437,Profit: 35194.56,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1756`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 26340,Discounts: 1218.6,Sales: 25121.4,COGS: 20310,Profit: 4811.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `307`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 4605,Discounts: 1218.6,Sales: 3386.4,COGS: 20310,Profit: 16923.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4489`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 67335,Discounts: 1356.6,Sales: 65978.4,COGS: 22610,Profit: 43368.4,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2167`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 43340,Discounts: 588.8,Sales: 42751.2,COGS: 7360,Profit: 35391.2,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1137`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 7959,Discounts: 798.28,Sales: 7160.72,COGS: 14255,Profit: 7094.28,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1222`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 366600,Discounts: 24252,Sales: 342348,COGS: 505250,Profit: 162902,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `489`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 171150,Discounts: 3836,Sales: 167314,COGS: 71240,Profit: 96074,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4133`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 61995,Discounts: 1180.2,Sales: 60814.8,COGS: 19670,Profit: 41144.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2743`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 822900,Discounts: 22308,Sales: 800592,COGS: 464750,Profit: 335842,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3699`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 25893,Discounts: 798.28,Sales: 25094.72,COGS: 14255,Profit: 10839.72,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `4460`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1338000,Discounts: 24252,Sales: 1313748,COGS: 505250,Profit: 808498,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1232`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 154000,Discounts: 5690,Sales: 148310,COGS: 136560,Profit: 11750,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 18102,Discounts: 1190.28,Sales: 16911.72,COGS: 21255,Profit: 4343.28,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1332`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 166500,Discounts: 3975,Sales: 162525,COGS: 95400,Profit: 67125,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4487`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1346100,Discounts: 16974,Sales: 1329126,COGS: 353625,Profit: 975501,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3862`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1158600,Discounts: 35016,Sales: 1123584,COGS: 729500,Profit: 394084,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1765`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 617750,Discounts: 48300,Sales: 569450,COGS: 897000,Profit: 327550,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3533`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 441625,Discounts: 14940,Sales: 426685,COGS: 358560,Profit: 68125,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2016`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 30240,Discounts: 130.8,Sales: 30109.2,COGS: 2180,Profit: 27929.2,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58760,Discounts: 1659.2,Sales: 57100.8,COGS: 20740,Profit: 36360.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3352`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67040,Discounts: 844.8,Sales: 66195.2,COGS: 10560,Profit: 55635.2,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4409`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 66135,Discounts: 402.6,Sales: 65732.4,COGS: 6710,Profit: 59022.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3323`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 49845,Discounts: 908.4,Sales: 48936.6,COGS: 15140,Profit: 33796.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2430`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 850500,Discounts: 3836,Sales: 846664,COGS: 71240,Profit: 775424,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `535`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 66875,Discounts: 5690,Sales: 61185,COGS: 136560,Profit: 75375,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1523`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 18276,Discounts: 703.2,Sales: 17572.8,COGS: 4395,Profit: 13177.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3631`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 72620,Discounts: 2116.8,Sales: 70503.2,COGS: 26460,Profit: 44043.2,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1782`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 623700,Discounts: 30478,Sales: 593222,COGS: 566020,Profit: 27202,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `347`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 4164,Discounts: 415.68,Sales: 3748.32,COGS: 2598,Profit: 1150.32,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `4147`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1451450,Discounts: 4886,Sales: 1446564,COGS: 90740,Profit: 1355824,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3509`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1228150,Discounts: 30478,Sales: 1197672,COGS: 566020,Profit: 631652,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2774`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 41610,Discounts: 908.4,Sales: 40701.6,COGS: 15140,Profit: 25561.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2943`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1030050,Discounts: 26110,Sales: 1003940,COGS: 484900,Profit: 519040,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4037`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 504625,Discounts: 5370,Sales: 499255,COGS: 128880,Profit: 370375,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4146`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1451100,Discounts: 26698,Sales: 1424402,COGS: 495820,Profit: 928582,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `4123`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 61845,Discounts: 402.6,Sales: 61442.4,COGS: 6710,Profit: 54732.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1337`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 467950,Discounts: 24892,Sales: 443058,COGS: 462280,Profit: 19222,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `599`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 4193,Discounts: 405.65,Sales: 3787.35,COGS: 5795,Profit: 2007.65,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `725`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 5075,Discounts: 480.2,Sales: 4594.8,COGS: 6860,Profit: 2265.2,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `477`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 3339,Discounts: 822.15,Sales: 2516.85,COGS: 11745,Profit: 9228.15,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 16275,Discounts: 941.15,Sales: 15333.85,COGS: 13445,Profit: 1888.85,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `675`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 8100,Discounts: 1458.6,Sales: 6641.4,COGS: 7293,Profit: 651.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2990`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35880,Discounts: 1458.6,Sales: 34421.4,COGS: 7293,Profit: 27128.4,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1072`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 7504,Discounts: 941.15,Sales: 6562.85,COGS: 13445,Profit: 6882.15,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1048`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7336,Discounts: 589.05,Sales: 6746.95,COGS: 8415,Profit: 1668.05,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `469`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 5628,Discounts: 673.8,Sales: 4954.2,COGS: 3369,Profit: 1585.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `804`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 5628,Discounts: 405.65,Sales: 5222.35,COGS: 5795,Profit: 572.65,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4240`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50880,Discounts: 1119,Sales: 49761,COGS: 5595,Profit: 44166,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1976`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 23712,Discounts: 669.6,Sales: 23042.4,COGS: 3348,Profit: 19694.4,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1984`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39680,Discounts: 1563,Sales: 38117,COGS: 15630,Profit: 22487,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `480`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 144000,Discounts: 14865,Sales: 129135,COGS: 247750,Profit: 118615,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `3551`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 24857,Discounts: 355.6,Sales: 24501.4,COGS: 5080,Profit: 19421.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1205`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 18075,Discounts: 2093.25,Sales: 15981.75,COGS: 27910,Profit: 11928.25,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2480`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17360,Discounts: 199.5,Sales: 17160.5,COGS: 2850,Profit: 14310.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2926`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 20482,Discounts: 870.45,Sales: 19611.55,COGS: 12435,Profit: 7176.55,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3210`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1123500,Discounts: 24228.75,Sales: 1099271.25,COGS: 359970,Profit: 739301.25,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3221`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 402625,Discounts: 22668.75,Sales: 379956.25,COGS: 435240,Profit: 55283.75,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2389`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 836150,Discounts: 12600,Sales: 823550,COGS: 187200,Profit: 636350,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1127`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13524,Discounts: 1405.2,Sales: 12118.8,COGS: 7026,Profit: 5092.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `319`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 95700,Discounts: 16500,Sales: 79200,COGS: 275000,Profit: 195800,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1610`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 32200,Discounts: 1303,Sales: 30897,COGS: 13030,Profit: 17867,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4100`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 512500,Discounts: 18700,Sales: 493800,COGS: 359040,Profit: 134760,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1012`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 126500,Discounts: 14906.25,Sales: 111593.75,COGS: 286200,Profit: 174606.25,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3337`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1001100,Discounts: 24105,Sales: 976995,COGS: 401750,Profit: 575245,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3955`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27685,Discounts: 814.45,Sales: 26870.55,COGS: 11635,Profit: 15235.55,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4347`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1304100,Discounts: 14865,Sales: 1289235,COGS: 247750,Profit: 1041485,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1548`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 541800,Discounts: 10535,Sales: 531265,COGS: 156520,Profit: 374745,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2153`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 32295,Discounts: 1965,Sales: 30330,COGS: 26200,Profit: 4130,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3789`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1326150,Discounts: 21490,Sales: 1304660,COGS: 319280,Profit: 985380,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4364`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 87280,Discounts: 1389,Sales: 85891,COGS: 13890,Profit: 72001,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4126`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 515750,Discounts: 5381.25,Sales: 510368.75,COGS: 103320,Profit: 407048.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1343`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 167875,Discounts: 4400,Sales: 163475,COGS: 84480,Profit: 78995,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `245`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 4900,Discounts: 1802,Sales: 3098,COGS: 18020,Profit: 14922,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3376`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67520,Discounts: 2663,Sales: 64857,COGS: 26630,Profit: 38227,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 9807,Discounts: 747.6,Sales: 9059.4,COGS: 10680,Profit: 1620.6,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3483`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 52245,Discounts: 1587,Sales: 50658,COGS: 21160,Profit: 29498,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2244`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 33660,Discounts: 416.25,Sales: 33243.75,COGS: 5550,Profit: 27693.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1360`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20400,Discounts: 2145.75,Sales: 18254.25,COGS: 28610,Profit: 10355.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `279`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 34875,Discounts: 5043.75,Sales: 29831.25,COGS: 96840,Profit: 67008.75,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2521`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 882350,Discounts: 10535,Sales: 871815,COGS: 156520,Profit: 715295,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2433`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 48660,Discounts: 2832,Sales: 45828,COGS: 28320,Profit: 17508,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1738`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 34760,Discounts: 1579,Sales: 33181,COGS: 15790,Profit: 17391,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1106`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 138250,Discounts: 5381.25,Sales: 132868.75,COGS: 103320,Profit: 29548.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3379`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422375,Discounts: 4400,Sales: 417975,COGS: 84480,Profit: 333495,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1221`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 24420,Discounts: 1033,Sales: 23387,COGS: 10330,Profit: 13057,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `213`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 63900,Discounts: 18750,Sales: 45150,COGS: 312500,Profit: 267350,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3335`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 66700,Discounts: 1389,Sales: 65311,COGS: 13890,Profit: 51421,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1260`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 25200,Discounts: 1265,Sales: 23935,COGS: 12650,Profit: 11285,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3034`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 60680,Discounts: 2297,Sales: 58383,COGS: 22970,Profit: 35413,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2929`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 58580,Discounts: 2663,Sales: 55917,COGS: 26630,Profit: 29287,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2389`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 16723,Discounts: 199.5,Sales: 16523.5,COGS: 2850,Profit: 13673.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3086`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21602,Discounts: 870.45,Sales: 20731.55,COGS: 12435,Profit: 8296.55,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `745`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 260750,Discounts: 23625,Sales: 237125,COGS: 351000,Profit: 113875,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1266`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 443100,Discounts: 9660,Sales: 433440,COGS: 143520,Profit: 289920,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3790`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1326500,Discounts: 21490,Sales: 1305010,COGS: 319280,Profit: 985730,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4287`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1286100,Discounts: 18750,Sales: 1267350,COGS: 312500,Profit: 954850,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 47895,Discounts: 3420.9,Sales: 44474.1,COGS: 38010,Profit: 6464.1,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1967`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39340,Discounts: 1341,Sales: 37999,COGS: 11175,Profit: 26824,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `631`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 9465,Discounts: 2559.6,Sales: 6905.4,COGS: 28440,Profit: 21534.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3469`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 41628,Discounts: 404.64,Sales: 41223.36,COGS: 1686,Profit: 39537.36,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `570`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 6840,Discounts: 1655.28,Sales: 5184.72,COGS: 6897,Profit: 1712.28,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3215`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 48225,Discounts: 1827,Sales: 46398,COGS: 20300,Profit: 26098,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3754`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 26278,Discounts: 110.46,Sales: 26167.54,COGS: 1315,Profit: 24852.54,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2187`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 273375,Discounts: 6652.5,Sales: 266722.5,COGS: 106440,Profit: 160282.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1959`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 685650,Discounts: 20580,Sales: 665070,COGS: 254800,Profit: 410270,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2181`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 763350,Discounts: 30660,Sales: 732690,COGS: 379600,Profit: 353090,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3559`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 24913,Discounts: 589.26,Sales: 24323.74,COGS: 7015,Profit: 17308.74,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2205`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 26460,Discounts: 1960.56,Sales: 24499.44,COGS: 8169,Profit: 16330.44,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1890`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 661500,Discounts: 31416,Sales: 630084,COGS: 388960,Profit: 241124,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1296`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 15552,Discounts: 1655.28,Sales: 13896.72,COGS: 6897,Profit: 6999.72,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `775`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 271250,Discounts: 15267,Sales: 255983,COGS: 189020,Profit: 66963,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2417`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 302125,Discounts: 7140,Sales: 294985,COGS: 114240,Profit: 180745,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1158`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 144750,Discounts: 20662.5,Sales: 124087.5,COGS: 330600,Profit: 206512.5,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `803`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 12045,Discounts: 1377,Sales: 10668,COGS: 15300,Profit: 4632,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3705`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1296750,Discounts: 31416,Sales: 1265334,COGS: 388960,Profit: 876374,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `589`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 4123,Discounts: 629.16,Sales: 3493.84,COGS: 7490,Profit: 3996.16,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3797`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1139100,Discounts: 21978,Sales: 1117122,COGS: 305250,Profit: 811872,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1321`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 462350,Discounts: 43596,Sales: 418754,COGS: 539760,Profit: 121006,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3999`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 59985,Discounts: 2559.6,Sales: 57425.4,COGS: 28440,Profit: 28985.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4256`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 29792,Discounts: 629.16,Sales: 29162.84,COGS: 7490,Profit: 21672.84,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1643`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 492900,Discounts: 21978,Sales: 470922,COGS: 305250,Profit: 165672,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1912`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 38240,Discounts: 1347.6,Sales: 36892.4,COGS: 11230,Profit: 25662.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1610`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 483000,Discounts: 43848,Sales: 439152,COGS: 609000,Profit: 169848,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2160`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 270000,Discounts: 14906.25,Sales: 255093.75,COGS: 238500,Profit: 16593.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `466`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 163100,Discounts: 35259,Sales: 127841,COGS: 436540,Profit: 308699,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `328`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 114800,Discounts: 15267,Sales: 99533,COGS: 189020,Profit: 89487,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `4099`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 28693,Discounts: 589.26,Sales: 28103.74,COGS: 7015,Profit: 21088.74,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `990`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 346500,Discounts: 43596,Sales: 302904,COGS: 539760,Profit: 236856,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1433`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 28660,Discounts: 2108.4,Sales: 26551.6,COGS: 17570,Profit: 8981.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1478`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 22170,Discounts: 1978.2,Sales: 20191.8,COGS: 21980,Profit: 1788.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3798`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 56970,Discounts: 1568.7,Sales: 55401.3,COGS: 17430,Profit: 37971.3,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `447`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 6705,Discounts: 1037.7,Sales: 5667.3,COGS: 11530,Profit: 5862.7,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1711`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34220,Discounts: 2108.4,Sales: 32111.6,COGS: 17570,Profit: 14541.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `745`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 14900,Discounts: 1201.2,Sales: 13698.8,COGS: 10010,Profit: 3688.8,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1732`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 12124,Discounts: 559.86,Sales: 11564.14,COGS: 6665,Profit: 4899.14,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1759`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 26385,Discounts: 1037.7,Sales: 25347.3,COGS: 11530,Profit: 13817.3,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `338`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 4056,Discounts: 610.68,Sales: 3445.32,COGS: 2181,Profit: 1264.32,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3911`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 46932,Discounts: 1582.56,Sales: 45349.44,COGS: 5652,Profit: 39697.44,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3691`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 73820,Discounts: 2567.6,Sales: 71252.4,COGS: 18340,Profit: 52912.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `4473`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 53676,Discounts: 1965.6,Sales: 51710.4,COGS: 7020,Profit: 44690.4,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `383`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 4596,Discounts: 1967.28,Sales: 2628.72,COGS: 7026,Profit: 4397.28,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3105`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21735,Discounts: 505.19,Sales: 21229.81,COGS: 5155,Profit: 16074.81,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1062`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 15930,Discounts: 1325.1,Sales: 14604.9,COGS: 12620,Profit: 1984.9,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4083`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 28581,Discounts: 556.15,Sales: 28024.85,COGS: 5675,Profit: 22349.85,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3974`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 27818,Discounts: 268.03,Sales: 27549.97,COGS: 2735,Profit: 24814.97,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3723`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 26061,Discounts: 775.18,Sales: 25285.82,COGS: 7910,Profit: 17375.82,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2435`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 29220,Discounts: 1460.34,Sales: 27759.66,COGS: 5215.5,Profit: 22544.16,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1678`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 20136,Discounts: 1860.6,Sales: 18275.4,COGS: 6645,Profit: 11630.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1763`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 12341,Discounts: 775.18,Sales: 11565.82,COGS: 7910,Profit: 3655.82,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4473`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31311,Discounts: 556.15,Sales: 30754.85,COGS: 5675,Profit: 25079.85,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1246`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 436100,Discounts: 43144.5,Sales: 392955.5,COGS: 457860,Profit: 64904.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1615`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 484500,Discounts: 9408,Sales: 475092,COGS: 112000,Profit: 363092,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `749`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 224700,Discounts: 45801,Sales: 178899,COGS: 545250,Profit: 366351,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1318`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 26360,Discounts: 2766.4,Sales: 23593.6,COGS: 19760,Profit: 3833.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2882`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 864600,Discounts: 45801,Sales: 818799,COGS: 545250,Profit: 273549,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3039`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 379875,Discounts: 21875,Sales: 358000,COGS: 300000,Profit: 58000,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2484`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 745200,Discounts: 35742,Sales: 709458,COGS: 425500,Profit: 283958,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3169`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 950700,Discounts: 9408,Sales: 941292,COGS: 112000,Profit: 829292,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 510000,Discounts: 30738.75,Sales: 479261.25,COGS: 421560,Profit: 57701.25,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3943`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 59145,Discounts: 2206.05,Sales: 56938.95,COGS: 21010,Profit: 35928.95,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `784`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11760,Discounts: 3077.55,Sales: 8682.45,COGS: 29310,Profit: 20627.55,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `253`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5060,Discounts: 2149,Sales: 2911,COGS: 15350,Profit: 12439,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1316`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 394800,Discounts: 23583,Sales: 371217,COGS: 280750,Profit: 90467,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `808`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 242400,Discounts: 29484,Sales: 212916,COGS: 351000,Profit: 138084,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3295`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 39540,Discounts: 2320.92,Sales: 37219.08,COGS: 8289,Profit: 28930.08,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `520`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 3640,Discounts: 1041.25,Sales: 2598.75,COGS: 10625,Profit: 8026.25,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `799`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 239700,Discounts: 34839,Sales: 204861,COGS: 414750,Profit: 209889,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3942`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 78840,Discounts: 852.6,Sales: 77987.4,COGS: 6090,Profit: 71897.4,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2498`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 312250,Discounts: 18261.25,Sales: 293988.75,COGS: 250440,Profit: 43548.75,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2517`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 50340,Discounts: 2766.4,Sales: 47573.6,COGS: 19760,Profit: 27813.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3182`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 63640,Discounts: 1989.4,Sales: 61650.6,COGS: 14210,Profit: 47440.6,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1145`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 343500,Discounts: 28812,Sales: 314688,COGS: 343000,Profit: 28312,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `895`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 17900,Discounts: 823.2,Sales: 17076.8,COGS: 5880,Profit: 11196.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3814`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 45768,Discounts: 2725.38,Sales: 43042.62,COGS: 9733.5,Profit: 33309.12,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1188`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 356400,Discounts: 20139,Sales: 336261,COGS: 239750,Profit: 96511,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2233`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 669900,Discounts: 57687,Sales: 612213,COGS: 686750,Profit: 74537,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `421`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 52625,Discounts: 14393.75,Sales: 38231.25,COGS: 197400,Profit: 159168.75,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `269`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 94150,Discounts: 70462,Sales: 23688,COGS: 747760,Profit: 724072,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3766`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 470750,Discounts: 8697.5,Sales: 462052.5,COGS: 119280,Profit: 342772.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `952`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19040,Discounts: 1565.2,Sales: 17474.8,COGS: 11180,Profit: 6294.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2964`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 889200,Discounts: 28812,Sales: 860388,COGS: 343000,Profit: 517388,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1505`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10535,Discounts: 273.28,Sales: 10261.72,COGS: 2440,Profit: 7821.72,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1678`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 33560,Discounts: 2051.2,Sales: 31508.8,COGS: 12820,Profit: 18688.8,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4249`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 29743,Discounts: 143.92,Sales: 29599.08,COGS: 1285,Profit: 28314.08,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1677`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 33540,Discounts: 2051.2,Sales: 31488.8,COGS: 12820,Profit: 18668.8,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3051`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 381375,Discounts: 15400,Sales: 365975,COGS: 184800,Profit: 181175,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3372`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 50580,Discounts: 588,Sales: 49992,COGS: 4900,Profit: 45092,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1686`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 590100,Discounts: 38136,Sales: 551964,COGS: 354120,Profit: 197844,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3086`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 46290,Discounts: 3001.2,Sales: 43288.8,COGS: 25010,Profit: 18278.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4150`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 83000,Discounts: 1132.8,Sales: 81867.2,COGS: 7080,Profit: 74787.2,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3027`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 60540,Discounts: 1032,Sales: 59508,COGS: 6450,Profit: 53058,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4359`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1307700,Discounts: 37488,Sales: 1270212,COGS: 390500,Profit: 879712,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3628`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1088400,Discounts: 30792,Sales: 1057608,COGS: 320750,Profit: 736858,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1589`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 23835,Discounts: 853.2,Sales: 22981.8,COGS: 7110,Profit: 15871.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2679`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 334875,Discounts: 11140,Sales: 323735,COGS: 133680,Profit: 190055,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 23807,Discounts: 705.04,Sales: 23101.96,COGS: 6295,Profit: 16806.96,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2815`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19705,Discounts: 613.2,Sales: 19091.8,COGS: 5475,Profit: 13616.8,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2964`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 59280,Discounts: 2185.6,Sales: 57094.4,COGS: 13660,Profit: 43434.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4173`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1251900,Discounts: 59040,Sales: 1192860,COGS: 615000,Profit: 577860,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1157`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 8099,Discounts: 379.68,Sales: 7719.32,COGS: 3390,Profit: 4329.32,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3065`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21455,Discounts: 894.88,Sales: 20560.12,COGS: 7990,Profit: 12570.12,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1962`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 13734,Discounts: 1349.04,Sales: 12384.96,COGS: 12045,Profit: 339.96,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 81600,Discounts: 3094.4,Sales: 78505.6,COGS: 19340,Profit: 59165.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1713`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34260,Discounts: 4788.8,Sales: 29471.2,COGS: 29930,Profit: 458.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 978250,Discounts: 60088,Sales: 918162,COGS: 557960,Profit: 360202,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4082`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 28574,Discounts: 1089.76,Sales: 27484.24,COGS: 9730,Profit: 17754.24,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1691`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 591850,Discounts: 38136,Sales: 553714,COGS: 354120,Profit: 199594,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2305`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27660,Discounts: 574.08,Sales: 27085.92,COGS: 1794,Profit: 25291.92,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3401`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 23807,Discounts: 1627.92,Sales: 22179.08,COGS: 14535,Profit: 7644.08,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2288`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 16016,Discounts: 1309.28,Sales: 14706.72,COGS: 11690,Profit: 3016.72,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2399`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 719700,Discounts: 9264,Sales: 710436,COGS: 96500,Profit: 613936,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4086`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1225800,Discounts: 15240,Sales: 1210560,COGS: 158750,Profit: 1051810,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2651`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 927850,Discounts: 16086,Sales: 911764,COGS: 149370,Profit: 762394,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3971`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27797,Discounts: 1309.28,Sales: 26487.72,COGS: 11690,Profit: 14797.72,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2512`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 879200,Discounts: 10668,Sales: 868532,COGS: 99060,Profit: 769472,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 960750,Discounts: 11816,Sales: 948934,COGS: 109720,Profit: 839214,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1903`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 570900,Discounts: 51216,Sales: 519684,COGS: 533500,Profit: 13816,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `647`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 194100,Discounts: 19392,Sales: 174708,COGS: 202000,Profit: 27292,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2914`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 58280,Discounts: 1132.8,Sales: 57147.2,COGS: 7080,Profit: 50067.2,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1889`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 13223,Discounts: 1627.92,Sales: 11595.08,COGS: 14535,Profit: 2939.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1466`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 29320,Discounts: 2185.6,Sales: 27134.4,COGS: 13660,Profit: 13474.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `887`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 266100,Discounts: 59040,Sales: 207060,COGS: 615000,Profit: 407940,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `395`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 7900,Discounts: 2432,Sales: 5468,COGS: 15200,Profit: 9732,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1693`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 25395,Discounts: 853.2,Sales: 24541.8,COGS: 7110,Profit: 17431.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2459`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 29508,Discounts: 1320,Sales: 28188,COGS: 4125,Profit: 24063,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2649`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 794700,Discounts: 15240,Sales: 779460,COGS: 158750,Profit: 620710,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3608`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 72160,Discounts: 698.4,Sales: 71461.6,COGS: 4365,Profit: 67096.6,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1073`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 321900,Discounts: 29538,Sales: 292362,COGS: 273500,Profit: 18862,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1754`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 21048,Discounts: 396.36,Sales: 20651.64,COGS: 1101,Profit: 19550.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2167`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 650100,Discounts: 102667.5,Sales: 547432.5,COGS: 950625,Profit: 403192.5,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1319`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 461650,Discounts: 52479,Sales: 409171,COGS: 433160,Profit: 23989,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1679`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 503700,Discounts: 8694,Sales: 495006,COGS: 80500,Profit: 414506,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1252`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 15024,Discounts: 2506.68,Sales: 12517.32,COGS: 6963,Profit: 5554.32,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3493`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 436625,Discounts: 20891.25,Sales: 415733.75,COGS: 222840,Profit: 192893.75,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1697`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 11879,Discounts: 1014.93,Sales: 10864.07,COGS: 8055,Profit: 2809.07,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1156`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 144500,Discounts: 31466.25,Sales: 113033.75,COGS: 335640,Profit: 222606.25,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `726`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 217800,Discounts: 9018,Sales: 208782,COGS: 83500,Profit: 125282,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1153`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 345900,Discounts: 69255,Sales: 276645,COGS: 641250,Profit: 364605,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2720`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 952000,Discounts: 76135.5,Sales: 875864.5,COGS: 628420,Profit: 247444.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 54870,Discounts: 4961.25,Sales: 49908.75,COGS: 36750,Profit: 13158.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2950`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 885000,Discounts: 29538,Sales: 855462,COGS: 273500,Profit: 581962,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1821`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27315,Discounts: 1656.45,Sales: 25658.55,COGS: 12270,Profit: 13388.55,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4174`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 50088,Discounts: 396.36,Sales: 49691.64,COGS: 1101,Profit: 48590.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1127`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 338100,Discounts: 35748,Sales: 302352,COGS: 331000,Profit: 28648,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2209`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 26508,Discounts: 1917,Sales: 24591,COGS: 5325,Profit: 19266,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `862`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 107750,Discounts: 31466.25,Sales: 76283.75,COGS: 335640,Profit: 259356.25,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3805`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 57075,Discounts: 330.75,Sales: 56744.25,COGS: 2450,Profit: 54294.25,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1415`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 424500,Discounts: 102424.5,Sales: 322075.5,COGS: 948375,Profit: 626299.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2231`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 780850,Discounts: 41170.5,Sales: 739679.5,COGS: 339820,Profit: 399859.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3649`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 456125,Discounts: 6378.75,Sales: 449746.25,COGS: 68040,Profit: 381706.25,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2948`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 368500,Discounts: 23737.5,Sales: 344762.5,COGS: 253200,Profit: 91562.5,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3395`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1188250,Discounts: 39973.5,Sales: 1148276.5,COGS: 329940,Profit: 818336.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2650`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31800,Discounts: 2112.48,Sales: 29687.52,COGS: 5868,Profit: 23819.52,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `585`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 175500,Discounts: 71793,Sales: 103707,COGS: 664750,Profit: 561043,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1316`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 460600,Discounts: 42572.25,Sales: 418027.75,COGS: 351390,Profit: 66637.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4459`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 53508,Discounts: 950.4,Sales: 52557.6,COGS: 2640,Profit: 49917.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2711`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 813300,Discounts: 50409,Sales: 762891,COGS: 466750,Profit: 296141,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2621`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31452,Discounts: 2412.72,Sales: 29039.28,COGS: 6702,Profit: 22337.28,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3613`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 54195,Discounts: 1656.45,Sales: 52538.55,COGS: 12270,Profit: 40268.55,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1847`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 230875,Discounts: 9866.25,Sales: 221008.75,COGS: 105240,Profit: 115768.75,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2996`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1048600,Discounts: 65236.5,Sales: 983363.5,COGS: 538460,Profit: 444903.5,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2838`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 993300,Discounts: 39973.5,Sales: 953326.5,COGS: 329940,Profit: 623386.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1302`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 19530,Discounts: 1309.5,Sales: 18220.5,COGS: 9700,Profit: 8520.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1536`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 30720,Discounts: 3049.2,Sales: 27670.8,COGS: 16940,Profit: 10730.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1291`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 25820,Discounts: 1193.4,Sales: 24626.6,COGS: 6630,Profit: 17996.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1213`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 8491,Discounts: 515.97,Sales: 7975.03,COGS: 4095,Profit: 3880.03,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2370`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 28440,Discounts: 1706.4,Sales: 26733.6,COGS: 4740,Profit: 21993.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1979`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 13853,Discounts: 328.23,Sales: 13524.77,COGS: 2605,Profit: 10919.77,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2879`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57580,Discounts: 1751.4,Sales: 55828.6,COGS: 9730,Profit: 46098.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1707`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34140,Discounts: 1868.4,Sales: 32271.6,COGS: 10380,Profit: 21891.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2933`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 20531,Discounts: 226.8,Sales: 20304.2,COGS: 1800,Profit: 18504.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1014`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 12168,Discounts: 2124.36,Sales: 10043.64,COGS: 5901,Profit: 4142.64,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `693`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 10395,Discounts: 3547.8,Sales: 6847.2,COGS: 26280,Profit: 19432.8,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3741`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26187,Discounts: 226.8,Sales: 25960.2,COGS: 1800,Profit: 24160.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3116`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 62320,Discounts: 4827.6,Sales: 57492.4,COGS: 26820,Profit: 30672.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3995`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27965,Discounts: 328.23,Sales: 27636.77,COGS: 2605,Profit: 25031.77,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `953`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19060,Discounts: 1868.4,Sales: 17191.6,COGS: 10380,Profit: 6811.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2530`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 37950,Discounts: 2201.18,Sales: 35748.82,COGS: 16305,Profit: 19443.82,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2565`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 30780,Discounts: 330.48,Sales: 30449.52,COGS: 918,Profit: 29531.52,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `4297`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51564,Discounts: 463.2,Sales: 51100.8,COGS: 1158,Profit: 49942.8,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2871`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20097,Discounts: 1629.6,Sales: 18467.4,COGS: 11640,Profit: 6827.4,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3537`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 42444,Discounts: 463.2,Sales: 41980.8,COGS: 1158,Profit: 40822.8,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1598`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 199750,Discounts: 43068.75,Sales: 156681.25,COGS: 413460,Profit: 256778.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2616`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 327000,Discounts: 18525,Sales: 308475,COGS: 177840,Profit: 130635,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2836`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 992600,Discounts: 80955,Sales: 911645,COGS: 601380,Profit: 310265,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `4023`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 502875,Discounts: 22550,Sales: 480325,COGS: 216480,Profit: 263845,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3994`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 59910,Discounts: 3108,Sales: 56802,COGS: 20720,Profit: 36082,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2928`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58560,Discounts: 3908,Sales: 54652,COGS: 19540,Profit: 35112,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2912`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 873600,Discounts: 17730,Sales: 855870,COGS: 147750,Profit: 708120,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3671`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 55065,Discounts: 3250.5,Sales: 51814.5,COGS: 21670,Profit: 30144.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2778`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 55560,Discounts: 482,Sales: 55078,COGS: 2410,Profit: 52668,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `405`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 6075,Discounts: 1021.5,Sales: 5053.5,COGS: 6810,Profit: 1756.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2013`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 30195,Discounts: 765,Sales: 29430,COGS: 5100,Profit: 24330,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2634`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 39510,Discounts: 1185,Sales: 38325,COGS: 7900,Profit: 30425,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4166`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1458100,Discounts: 22365,Sales: 1435735,COGS: 166140,Profit: 1269595,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `355`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 44375,Discounts: 19950,Sales: 24425,COGS: 191520,Profit: 167095,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2382`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 714600,Discounts: 68820,Sales: 645780,COGS: 573500,Profit: 72280,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `4170`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 83400,Discounts: 482,Sales: 82918,COGS: 2410,Profit: 80508,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `892`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6244,Discounts: 1865.5,Sales: 4378.5,COGS: 13325,Profit: 8946.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2200`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 275000,Discounts: 23950,Sales: 251050,COGS: 229920,Profit: 21130,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3389`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1016700,Discounts: 25590,Sales: 991110,COGS: 213250,Profit: 777860,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2990`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 373750,Discounts: 4262.5,Sales: 369487.5,COGS: 40920,Profit: 328567.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4013`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 60195,Discounts: 961.5,Sales: 59233.5,COGS: 6410,Profit: 52823.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `739`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 258650,Discounts: 98245,Sales: 160405,COGS: 729820,Profit: 569415,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1989`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 596700,Discounts: 12960,Sales: 583740,COGS: 108000,Profit: 475740,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2991`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 897300,Discounts: 68820,Sales: 828480,COGS: 573500,Profit: 254980,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `4237`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 63555,Discounts: 3250.5,Sales: 60304.5,COGS: 21670,Profit: 38634.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1442`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 180250,Discounts: 31612.5,Sales: 148637.5,COGS: 303480,Profit: 154842.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2712`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 949200,Discounts: 65450,Sales: 883750,COGS: 486200,Profit: 397550,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1508`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 188500,Discounts: 7237.5,Sales: 181262.5,COGS: 69480,Profit: 111782.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4245`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1485750,Discounts: 78400,Sales: 1407350,COGS: 582400,Profit: 824950,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2630`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 789000,Discounts: 89790,Sales: 699210,COGS: 748250,Profit: 49040,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1182`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 14184,Discounts: 4224.6,Sales: 9959.4,COGS: 10561.5,Profit: 602.1,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1221`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 24420,Discounts: 4078,Sales: 20342,COGS: 20390,Profit: 48,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `963`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 11556,Discounts: 3088.8,Sales: 8467.2,COGS: 7722,Profit: 745.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3243`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1135050,Discounts: 24745,Sales: 1110305,COGS: 183820,Profit: 926485,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1120`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 16800,Discounts: 3108,Sales: 13692,COGS: 20720,Profit: 7028,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1174`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 352200,Discounts: 25590,Sales: 326610,COGS: 213250,Profit: 113360,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2541`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 30492,Discounts: 1581.36,Sales: 28910.64,COGS: 3594,Profit: 25316.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3246`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 22722,Discounts: 1949.64,Sales: 20772.36,COGS: 12660,Profit: 8112.36,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1531`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 18372,Discounts: 1581.36,Sales: 16790.64,COGS: 3594,Profit: 13196.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2526`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 37890,Discounts: 633.6,Sales: 37256.4,COGS: 3840,Profit: 33416.4,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1136`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 13632,Discounts: 623.04,Sales: 13008.96,COGS: 1416,Profit: 11592.96,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1983`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 13881,Discounts: 1215.83,Sales: 12665.17,COGS: 7895,Profit: 4770.17,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3259`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 39108,Discounts: 1326.6,Sales: 37781.4,COGS: 3015,Profit: 34766.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `3267`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 49005,Discounts: 5279.17,Sales: 43725.82,COGS: 31995,Profit: 11730.82,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `2454`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 29448,Discounts: 623.04,Sales: 28824.96,COGS: 1416,Profit: 27408.96,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `2643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 31716,Discounts: 2556.84,Sales: 29159.16,COGS: 5811,Profit: 23348.16,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `383`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 134050,Discounts: 30492,Sales: 103558,COGS: 205920,Profit: 102362,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2801`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 840300,Discounts: 92763,Sales: 747537,COGS: 702750,Profit: 44787,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1667`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 208375,Discounts: 33563.75,Sales: 174811.25,COGS: 292920,Profit: 118108.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3539`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53085,Discounts: 2574,Sales: 50511,COGS: 15600,Profit: 34911,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `4226`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 29582,Discounts: 2083.62,Sales: 27498.38,COGS: 13530,Profit: 13968.38,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2220`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 777000,Discounts: 29491,Sales: 747509,COGS: 199160,Profit: 548349,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `776`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15520,Discounts: 6582.4,Sales: 8937.6,COGS: 29920,Profit: 20982.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `553`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 8295,Discounts: 3559.05,Sales: 4735.95,COGS: 21570,Profit: 16834.05,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2107`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 632100,Discounts: 28809,Sales: 603291,COGS: 218250,Profit: 385041,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2468`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 49360,Discounts: 2468.4,Sales: 46891.6,COGS: 11220,Profit: 35671.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1905`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 666750,Discounts: 81023.25,Sales: 585726.75,COGS: 547170,Profit: 38556.75,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 43896,Discounts: 5314.32,Sales: 38581.68,COGS: 12078,Profit: 26503.68,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4301`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 51612,Discounts: 3201.66,Sales: 48410.34,COGS: 7276.5,Profit: 41133.84,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2446`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 48920,Discounts: 5266.8,Sales: 43653.2,COGS: 23940,Profit: 19713.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4209`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 63135,Discounts: 3273.6,Sales: 59861.4,COGS: 19840,Profit: 40021.4,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3353`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 419125,Discounts: 33563.75,Sales: 385561.25,COGS: 292920,Profit: 92641.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1401`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 28020,Discounts: 6582.4,Sales: 21437.6,COGS: 29920,Profit: 8482.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1865`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 559500,Discounts: 45078,Sales: 514422,COGS: 341500,Profit: 172922,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `463`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 9260,Discounts: 6171,Sales: 3089,COGS: 28050,Profit: 24961,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4177`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 62655,Discounts: 1080.75,Sales: 61574.25,COGS: 6550,Profit: 55024.25,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2523`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 883050,Discounts: 13244,Sales: 869806,COGS: 89440,Profit: 780366,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1930`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 13510,Discounts: 1392.16,Sales: 12117.84,COGS: 9040,Profit: 3077.84,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1301`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 15612,Discounts: 2288.88,Sales: 13323.12,COGS: 5202,Profit: 8121.12,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4125`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 515625,Discounts: 7617.5,Sales: 508007.5,COGS: 66480,Profit: 441527.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `607`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 12140,Discounts: 6457,Sales: 5683,COGS: 29350,Profit: 23667,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `478`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 59750,Discounts: 43518.75,Sales: 16231.25,COGS: 379800,Profit: 363568.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4489`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 89780,Discounts: 5783.8,Sales: 83996.2,COGS: 26290,Profit: 57706.2,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1504`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 188000,Discounts: 19703.75,Sales: 168296.25,COGS: 171960,Profit: 3663.75,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `3763`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 470375,Discounts: 13021.25,Sales: 457353.75,COGS: 113640,Profit: 343713.75,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2412`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 844200,Discounts: 13244,Sales: 830956,COGS: 89440,Profit: 741516,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2342`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 35130,Discounts: 3559.05,Sales: 31570.95,COGS: 21570,Profit: 10000.95,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4451`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 31157,Discounts: 292.6,Sales: 30864.4,COGS: 1900,Profit: 28964.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3796`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1328600,Discounts: 37212,Sales: 1291388,COGS: 230360,Profit: 1061028,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `2286`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 285750,Discounts: 36240,Sales: 249510,COGS: 289920,Profit: 40410,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3614`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 451750,Discounts: 32340,Sales: 419410,COGS: 258720,Profit: 160690,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1716`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 25740,Discounts: 4840.2,Sales: 20899.8,COGS: 26890,Profit: 5990.2,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1301`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 19515,Discounts: 1218.6,Sales: 18296.4,COGS: 6770,Profit: 11526.4,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4175`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1252500,Discounts: 63828,Sales: 1188672,COGS: 443250,Profit: 745422,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `975`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 6825,Discounts: 2032.8,Sales: 4792.2,COGS: 12100,Profit: 7307.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1154`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 8078,Discounts: 2296.56,Sales: 5781.44,COGS: 13670,Profit: 7888.56,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1873`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 37460,Discounts: 4116,Sales: 33344,COGS: 17150,Profit: 16194,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3766`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1129800,Discounts: 42696,Sales: 1087104,COGS: 296500,Profit: 790604,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3558`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1067400,Discounts: 125820,Sales: 941580,COGS: 873750,Profit: 67830,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3156`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1104600,Discounts: 37212,Sales: 1067388,COGS: 230360,Profit: 837028,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2994`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 374250,Discounts: 32340,Sales: 341910,COGS: 258720,Profit: 83190,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 41740,Discounts: 2172,Sales: 39568,COGS: 9050,Profit: 30518,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1056`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 21120,Discounts: 4116,Sales: 17004,COGS: 17150,Profit: 146,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1353`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 473550,Discounts: 66948,Sales: 406602,COGS: 414440,Profit: 7838,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `416`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 124800,Discounts: 48924,Sales: 75876,COGS: 339750,Profit: 263874,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3880`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1164000,Discounts: 77400,Sales: 1086600,COGS: 537500,Profit: 549100,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `809`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 283150,Discounts: 50274,Sales: 232876,COGS: 311220,Profit: 78344,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1892`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 28380,Discounts: 684,Sales: 27696,COGS: 3800,Profit: 23896,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2072`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 41440,Discounts: 2959.2,Sales: 38480.8,COGS: 12330,Profit: 26150.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3052`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1068200,Discounts: 58590,Sales: 1009610,COGS: 362700,Profit: 646910,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3121`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1092350,Discounts: 41412,Sales: 1050938,COGS: 256360,Profit: 794578,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2059`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 41180,Discounts: 2172,Sales: 39008,COGS: 9050,Profit: 29958,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4254`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 51048,Discounts: 3036.96,Sales: 48011.04,COGS: 6327,Profit: 41684.04,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1293`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 19395,Discounts: 6974.1,Sales: 12420.9,COGS: 38745,Profit: 26324.1,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1293`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 452550,Discounts: 26166,Sales: 426384,COGS: 161980,Profit: 264404,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `230`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 80500,Discounts: 41412,Sales: 39088,COGS: 256360,Profit: 217272,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1723`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 215375,Discounts: 35805,Sales: 179570,COGS: 286440,Profit: 106870,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `240`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 4800,Discounts: 2959.2,Sales: 1840.8,COGS: 12330,Profit: 10489.2,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2571`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 899850,Discounts: 11340,Sales: 888510,COGS: 70200,Profit: 818310,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1661`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 11627,Discounts: 2874.06,Sales: 8752.94,COGS: 17107.5,Profit: 8354.56,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4474`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31318,Discounts: 2296.56,Sales: 29021.44,COGS: 13670,Profit: 15351.44,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `833`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 12495,Discounts: 4586.4,Sales: 7908.6,COGS: 25480,Profit: 17571.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `674`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 13480,Discounts: 6051.6,Sales: 7428.4,COGS: 25215,Profit: 17786.6,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `778`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 9336,Discounts: 3831.84,Sales: 5504.16,COGS: 7983,Profit: 2478.84,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1457`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 29140,Discounts: 3674.4,Sales: 25465.6,COGS: 15310,Profit: 10155.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3158`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 22106,Discounts: 1252.44,Sales: 20853.56,COGS: 7455,Profit: 13398.56,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4095`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 81900,Discounts: 3674.4,Sales: 78225.6,COGS: 15310,Profit: 62915.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3170`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 38040,Discounts: 3975.84,Sales: 34064.16,COGS: 8283,Profit: 25781.16,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `493`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 7395,Discounts: 5005.65,Sales: 2389.35,COGS: 25670,Profit: 23280.65,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3286`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 49290,Discounts: 5005.65,Sales: 44284.35,COGS: 25670,Profit: 18614.35,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3563`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1247050,Discounts: 41996.5,Sales: 1205053.5,COGS: 239980,Profit: 965073.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4109`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1438150,Discounts: 81445,Sales: 1356705,COGS: 465400,Profit: 891305,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `3653`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 73060,Discounts: 1149.2,Sales: 71910.8,COGS: 4420,Profit: 67490.8,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2203`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 771050,Discounts: 44703.75,Sales: 726346.25,COGS: 255450,Profit: 470896.25,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2924`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20468,Discounts: 1181.18,Sales: 19286.82,COGS: 6490,Profit: 12796.82,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2650`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 31800,Discounts: 942.24,Sales: 30857.76,COGS: 1812,Profit: 29045.76,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1194`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 23880,Discounts: 5863,Sales: 18017,COGS: 22550,Profit: 4533,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3366`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 67320,Discounts: 3247.4,Sales: 64072.6,COGS: 12490,Profit: 51582.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 9275,Discounts: 1309.04,Sales: 7965.97,COGS: 7192.5,Profit: 773.47,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4243`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1272900,Discounts: 31473,Sales: 1241427,COGS: 201750,Profit: 1039677,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2887`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57740,Discounts: 6866.6,Sales: 50873.4,COGS: 26410,Profit: 24463.4,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3839`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 76780,Discounts: 7040.8,Sales: 69739.2,COGS: 27080,Profit: 42659.2,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1863`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 652050,Discounts: 119756,Sales: 532294,COGS: 684320,Profit: 152026,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2858`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 357250,Discounts: 25723.75,Sales: 331526.25,COGS: 189960,Profit: 141566.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2868`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34416,Discounts: 890.76,Sales: 33525.24,COGS: 1713,Profit: 31812.24,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3805`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 26635,Discounts: 2453.36,Sales: 24181.64,COGS: 13480,Profit: 10701.64,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3914`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 58710,Discounts: 3051.75,Sales: 55658.25,COGS: 15650,Profit: 40008.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `524`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 10480,Discounts: 3247.4,Sales: 7232.6,COGS: 12490,Profit: 5257.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3095`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1083250,Discounts: 16243.5,Sales: 1067006.5,COGS: 92820,Profit: 974186.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2410`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28920,Discounts: 1580.28,Sales: 27339.72,COGS: 3039,Profit: 24300.72,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4263`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 63945,Discounts: 7795.13,Sales: 56149.88,COGS: 39975,Profit: 16174.88,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2239`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 783650,Discounts: 119756,Sales: 663894,COGS: 684320,Profit: 20426,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `569`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3983,Discounts: 1082.9,Sales: 2900.1,COGS: 5950,Profit: 3049.9,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3889`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 46668,Discounts: 942.24,Sales: 45725.76,COGS: 1812,Profit: 43913.76,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1378`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20670,Discounts: 1287,Sales: 19383,COGS: 6600,Profit: 12783,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2253`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27036,Discounts: 639.6,Sales: 26396.4,COGS: 1230,Profit: 25166.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3202`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 960600,Discounts: 101595,Sales: 859005,COGS: 651250,Profit: 207755,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 46020,Discounts: 1580.28,Sales: 44439.72,COGS: 3039,Profit: 41400.72,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `2487`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 310875,Discounts: 25723.75,Sales: 285151.25,COGS: 189960,Profit: 95191.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4428`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 66420,Discounts: 3051.75,Sales: 63368.25,COGS: 15650,Profit: 47718.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1200`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 150000,Discounts: 26958.75,Sales: 123041.25,COGS: 199080,Profit: 76038.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2953`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 20671,Discounts: 1082.9,Sales: 19588.1,COGS: 5950,Profit: 13638.1,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1453`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 17436,Discounts: 639.6,Sales: 16796.4,COGS: 1230,Profit: 15566.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `865`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 10380,Discounts: 2761.2,Sales: 7618.8,COGS: 5310,Profit: 2308.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1072`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 21440,Discounts: 7221.2,Sales: 14218.8,COGS: 25790,Profit: 11571.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1737`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 34740,Discounts: 4880.4,Sales: 29859.6,COGS: 17430,Profit: 12429.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1535`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 10745,Discounts: 2936.08,Sales: 7808.92,COGS: 14980,Profit: 7171.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2532`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17724,Discounts: 274.4,Sales: 17449.6,COGS: 1400,Profit: 16049.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1765`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 12355,Discounts: 287.14,Sales: 12067.86,COGS: 1465,Profit: 10602.86,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1567`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10969,Discounts: 2936.08,Sales: 8032.92,COGS: 14980,Profit: 6947.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2640`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 39600,Discounts: 583.8,Sales: 39016.2,COGS: 2780,Profit: 36236.2,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3079`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 61580,Discounts: 6798.4,Sales: 54781.6,COGS: 24280,Profit: 30501.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4130`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 61950,Discounts: 3710.7,Sales: 58239.3,COGS: 17670,Profit: 40569.3,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 35256,Discounts: 2340.24,Sales: 32915.76,COGS: 4179,Profit: 28736.76,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3080`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21560,Discounts: 274.4,Sales: 21285.6,COGS: 1400,Profit: 19885.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1530`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 18360,Discounts: 2340.24,Sales: 16019.76,COGS: 4179,Profit: 11840.76,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `3537`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 42444,Discounts: 3385.2,Sales: 39058.8,COGS: 6045,Profit: 33013.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `2021`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 606300,Discounts: 33642,Sales: 572658,COGS: 200250,Profit: 372408,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1804`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 225500,Discounts: 17902.5,Sales: 207597.5,COGS: 122760,Profit: 84837.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1014`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 304200,Discounts: 62832,Sales: 241368,COGS: 374000,Profit: 132632,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2913`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 873900,Discounts: 42420,Sales: 831480,COGS: 252500,Profit: 578980,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `763`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 11445,Discounts: 3177.3,Sales: 8267.7,COGS: 15130,Profit: 6862.3,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1425`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21375,Discounts: 4830,Sales: 16545,COGS: 23000,Profit: 6455,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `4357`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 544625,Discounts: 49367.5,Sales: 495257.5,COGS: 338520,Profit: 156737.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2138`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 748300,Discounts: 109147.5,Sales: 639152.5,COGS: 579150,Profit: 60002.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3825`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1338750,Discounts: 58751,Sales: 1279999,COGS: 311740,Profit: 968259,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3393`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1187550,Discounts: 9800,Sales: 1177750,COGS: 52000,Profit: 1125750,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2215`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 15505,Discounts: 380.24,Sales: 15124.76,COGS: 1940,Profit: 13184.76,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2278`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 15946,Discounts: 1692.46,Sales: 14253.54,COGS: 8635,Profit: 5618.54,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `403`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 6045,Discounts: 4830,Sales: 1215,COGS: 23000,Profit: 21785,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `289`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5780,Discounts: 728,Sales: 5052,COGS: 2600,Profit: 2452,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `749`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11235,Discounts: 5187,Sales: 6048,COGS: 24700,Profit: 18652,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `372`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 5580,Discounts: 3660.3,Sales: 1919.7,COGS: 17430,Profit: 15510.3,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3781`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 45372,Discounts: 4895.52,Sales: 40476.48,COGS: 8742,Profit: 31734.48,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1785`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 12495,Discounts: 1696.38,Sales: 10798.62,COGS: 8655,Profit: 2143.62,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4029`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1410150,Discounts: 34300,Sales: 1375850,COGS: 182000,Profit: 1193850,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2813`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 33756,Discounts: 3732.96,Sales: 30023.04,COGS: 6666,Profit: 23357.04,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2150`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 752500,Discounts: 57673,Sales: 694827,COGS: 306020,Profit: 388807,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2093`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 732550,Discounts: 94178,Sales: 638372,COGS: 499720,Profit: 138652,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4391`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 548875,Discounts: 27562.5,Sales: 521312.5,COGS: 189000,Profit: 332312.5,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2695`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 53900,Discounts: 1696.8,Sales: 52203.2,COGS: 6060,Profit: 46143.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1337`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 401100,Discounts: 103320,Sales: 297780,COGS: 615000,Profit: 317220,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2621`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 786300,Discounts: 11298,Sales: 775002,COGS: 67250,Profit: 707752,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3735`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1120500,Discounts: 106512,Sales: 1013988,COGS: 634000,Profit: 379988,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4320`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 30240,Discounts: 2844.94,Sales: 27395.06,COGS: 14515,Profit: 12880.06,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2828`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 848400,Discounts: 106722,Sales: 741678,COGS: 635250,Profit: 106428,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `2586`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 775800,Discounts: 11298,Sales: 764502,COGS: 67250,Profit: 697252,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1248`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 374400,Discounts: 62832,Sales: 311568,COGS: 374000,Profit: 62432,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `4035`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1210500,Discounts: 42420,Sales: 1168080,COGS: 252500,Profit: 915580,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `359`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 125650,Discounts: 62769,Sales: 62881,COGS: 333060,Profit: 270179,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3926`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1177800,Discounts: 37296,Sales: 1140504,COGS: 222000,Profit: 918504,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `4247`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 530875,Discounts: 49770,Sales: 481105,COGS: 341280,Profit: 139825,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2695`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 32340,Discounts: 4158,Sales: 28182,COGS: 7425,Profit: 20757,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1104`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 16560,Discounts: 3660.3,Sales: 12899.7,COGS: 17430,Profit: 4530.3,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1449`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 17388,Discounts: 4895.52,Sales: 12492.48,COGS: 8742,Profit: 3750.48,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1131`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7917,Discounts: 1696.38,Sales: 6220.62,COGS: 8655,Profit: 2434.38,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1468`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 10276,Discounts: 1692.46,Sales: 8583.54,COGS: 8635,Profit: 51.46,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1272`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 19080,Discounts: 3927,Sales: 15153,COGS: 18700,Profit: 3547,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1403`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 175375,Discounts: 22012.5,Sales: 153362.5,COGS: 140880,Profit: 12482.5,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2161`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 270125,Discounts: 51881.25,Sales: 218243.75,COGS: 332040,Profit: 113796.25,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1937`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 242125,Discounts: 20343.75,Sales: 221781.25,COGS: 130200,Profit: 91581.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2879`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 863700,Discounts: 24570,Sales: 839130,COGS: 136500,Profit: 702630,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1330`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 26600,Discounts: 3474,Sales: 23126,COGS: 11580,Profit: 11546,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2426`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 36390,Discounts: 3631.5,Sales: 32758.5,COGS: 16140,Profit: 16618.5,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2033`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14231,Discounts: 2661.75,Sales: 11569.25,COGS: 12675,Profit: 1105.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2029`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 710150,Discounts: 149677.5,Sales: 560472.5,COGS: 741260,Profit: 180787.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1049`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 15735,Discounts: 5757.75,Sales: 9977.25,COGS: 25590,Profit: 15612.75,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1062`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 21240,Discounts: 801,Sales: 20439,COGS: 2670,Profit: 17769,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2509`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 313625,Discounts: 20343.75,Sales: 293281.25,COGS: 130200,Profit: 163081.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1743`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 26145,Discounts: 2643.75,Sales: 23501.25,COGS: 11750,Profit: 11751.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3418`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1196300,Discounts: 105367.5,Sales: 1090932.5,COGS: 521820,Profit: 569112.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1751`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 612850,Discounts: 112927.5,Sales: 499922.5,COGS: 559260,Profit: 59337.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3228`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 38736,Discounts: 1645.2,Sales: 37090.8,COGS: 2742,Profit: 34348.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1105`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 22100,Discounts: 879,Sales: 21221,COGS: 2930,Profit: 18291,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2778`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 33336,Discounts: 900,Sales: 32436,COGS: 1500,Profit: 30936,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1173`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 17595,Discounts: 6358.5,Sales: 11236.5,COGS: 28260,Profit: 17023.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3160`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 395000,Discounts: 12431.25,Sales: 382568.75,COGS: 79560,Profit: 303008.75,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `4322`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1296600,Discounts: 115830,Sales: 1180770,COGS: 643500,Profit: 537270,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1901`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 237625,Discounts: 45712.5,Sales: 191912.5,COGS: 292560,Profit: 100647.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2980`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35760,Discounts: 1645.2,Sales: 34114.8,COGS: 2742,Profit: 31372.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4068`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 81360,Discounts: 2596.5,Sales: 78763.5,COGS: 8655,Profit: 70108.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2105`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 31575,Discounts: 1107,Sales: 30468,COGS: 4920,Profit: 25548,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1647`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 32940,Discounts: 801,Sales: 32139,COGS: 2670,Profit: 29469,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `235`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 3525,Discounts: 2643.75,Sales: 881.25,COGS: 11750,Profit: 10868.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3617`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 452125,Discounts: 55387.5,Sales: 396737.5,COGS: 354480,Profit: 42257.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2106`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 263250,Discounts: 10350,Sales: 252900,COGS: 66240,Profit: 186660,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2351`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 47020,Discounts: 879,Sales: 46141,COGS: 2930,Profit: 43211,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1897`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 569100,Discounts: 111375,Sales: 457725,COGS: 618750,Profit: 161025,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `647`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 194100,Discounts: 24570,Sales: 169530,COGS: 136500,Profit: 33030,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3621`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 25347,Discounts: 1436.4,Sales: 23910.6,COGS: 6840,Profit: 17070.6,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3221`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 22547,Discounts: 759.15,Sales: 21787.85,COGS: 3615,Profit: 18172.85,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `493`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 5916,Discounts: 3250.8,Sales: 2665.2,COGS: 5418,Profit: 2752.8,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); } } diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-filter/src/SalesData.ts b/samples/charts/category-chart/data-filter/src/SalesData.ts index 2da064b31..25697b809 100644 --- a/samples/charts/category-chart/data-filter/src/SalesData.ts +++ b/samples/charts/category-chart/data-filter/src/SalesData.ts @@ -2,16678 +2,1048 @@ export class SalesData extends Array { public constructor() { super(); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `501`, - ManufacturingPrice: 15, - SalePrice: 23, - GrossSales: 26440, - Discounts: 0, - Sales: 26440, - COGS: 16185, - Profit: 11255, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1372`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 27440, - Discounts: 0, - Sales: 27440, - COGS: 16185, - Profit: 11255, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2762`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 55240, - Discounts: 0, - Sales: 55240, - COGS: 13210, - Profit: 42030, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1464`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 21960, - Discounts: 0, - Sales: 21960, - COGS: 21780, - Profit: 180, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `719`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 10785, - Discounts: 0, - Sales: 10785, - COGS: 8880, - Profit: 1905, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3576`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 53640, - Discounts: 0, - Sales: 53640, - COGS: 24700, - Profit: 28940, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `4422`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1547700, - Discounts: 0, - Sales: 1547700, - COGS: 393380, - Profit: 1154320, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3649`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 54735, - Discounts: 0, - Sales: 54735, - COGS: 9210, - Profit: 45525, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4172`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 50064, - Discounts: 0, - Sales: 50064, - COGS: 7554, - Profit: 42510, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3841`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 76820, - Discounts: 0, - Sales: 76820, - COGS: 18990, - Profit: 57830, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3726`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 44712, - Discounts: 0, - Sales: 44712, - COGS: 4635, - Profit: 40077, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2625`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 39375, - Discounts: 0, - Sales: 39375, - COGS: 24700, - Profit: 14675, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1958`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 244750, - Discounts: 0, - Sales: 244750, - COGS: 319860, - Profit: 75110, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `3271`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 981300, - Discounts: 0, - Sales: 981300, - COGS: 239500, - Profit: 741800, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2091`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 14637, - Discounts: 0, - Sales: 14637, - COGS: 10730, - Profit: 3907, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2825`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 42375, - Discounts: 0, - Sales: 42375, - COGS: 6150, - Profit: 36225, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2513`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 50260, - Discounts: 0, - Sales: 50260, - COGS: 2920, - Profit: 47340, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `883`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 13245, - Discounts: 0, - Sales: 13245, - COGS: 9740, - Profit: 3505, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2087`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 25044, - Discounts: 0, - Sales: 25044, - COGS: 7554, - Profit: 17490, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2563`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 897050, - Discounts: 0, - Sales: 897050, - COGS: 261560, - Profit: 635490, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2846`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 34152, - Discounts: 0, - Sales: 34152, - COGS: 1101, - Profit: 33051, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `997`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 6979, - Discounts: 0, - Sales: 6979, - COGS: 4415, - Profit: 2564, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2290`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 34350, - Discounts: 0, - Sales: 34350, - COGS: 24720, - Profit: 9630, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2133`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 14931, - Discounts: 0, - Sales: 14931, - COGS: 5715, - Profit: 9216, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3617`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 72340, - Discounts: 0, - Sales: 72340, - COGS: 18170, - Profit: 54170, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1266`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 443100, - Discounts: 0, - Sales: 443100, - COGS: 393380, - Profit: 49720, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `894`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 6258, - Discounts: 0, - Sales: 6258, - COGS: 7465, - Profit: 1207, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `2725`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 340625, - Discounts: 0, - Sales: 340625, - COGS: 216480, - Profit: 124145, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3061`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 36732, - Discounts: 0, - Sales: 36732, - COGS: 6483, - Profit: 30249, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3958`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1385300, - Discounts: 0, - Sales: 1385300, - COGS: 261560, - Profit: 1123740, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3920`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 47040, - Discounts: 0, - Sales: 47040, - COGS: 4635, - Profit: 42405, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3381`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 422625, - Discounts: 0, - Sales: 422625, - COGS: 338520, - Profit: 84105, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4307`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 1292100, - Discounts: 0, - Sales: 1292100, - COGS: 500250, - Profit: 791850, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `878`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 10536, - Discounts: 0, - Sales: 10536, - COGS: 8514, - Profit: 2022, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `496`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 7440, - Discounts: 0, - Sales: 7440, - COGS: 21780, - Profit: 14340, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3367`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 50505, - Discounts: 0, - Sales: 50505, - COGS: 8880, - Profit: 41625, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2055`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 616500, - Discounts: 0, - Sales: 616500, - COGS: 537750, - Profit: 78750, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4041`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 80820, - Discounts: 0, - Sales: 80820, - COGS: 18170, - Profit: 62650, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `3237`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1132950, - Discounts: 0, - Sales: 1132950, - COGS: 715000, - Profit: 417950, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `630`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 7560, - Discounts: 0, - Sales: 7560, - COGS: 5859, - Profit: 1701, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4210`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 526250, - Discounts: 0, - Sales: 526250, - COGS: 506340, - Profit: 19910, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1127`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 22540, - Discounts: 0, - Sales: 22540, - COGS: 18990, - Profit: 3550, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `3438`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 24066, - Discounts: 0, - Sales: 24066, - COGS: 8430, - Profit: 15636, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2015`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 24180, - Discounts: 0, - Sales: 24180, - COGS: 6423, - Profit: 17757, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2534`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 17738, - Discounts: 0, - Sales: 17738, - COGS: 5715, - Profit: 12023, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1384`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 20760, - Discounts: 0, - Sales: 20760, - COGS: 6150, - Profit: 14610, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3561`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 24927, - Discounts: 276.15, - Sales: 24650.85, - COGS: 19725, - Profit: 4925.85, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1823`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 27345, - Discounts: 344.4, - Sales: 27000.6, - COGS: 22960, - Profit: 4040.6, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2795`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 19565, - Discounts: 72.1, - Sales: 19492.9, - COGS: 5150, - Profit: 14342.9, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `457`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 3199, - Discounts: 44.73, - Sales: 3154.27, - COGS: 3195, - Profit: 40.73, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3785`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 26495, - Discounts: 92.82, - Sales: 26402.18, - COGS: 6630, - Profit: 19772.18, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `748`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 8976, - Discounts: 222.96, - Sales: 8753.04, - COGS: 5574, - Profit: 3179.04, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1021`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 357350, - Discounts: 4235, - Sales: 353115, - COGS: 314600, - Profit: 38515, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2076`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 14532, - Discounts: 177.03, - Sales: 14354.97, - COGS: 12645, - Profit: 1709.97, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `4316`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 51792, - Discounts: 173.4, - Sales: 51618.6, - COGS: 4335, - Profit: 47283.6, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `4174`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 50088, - Discounts: 320.52, - Sales: 49767.48, - COGS: 8013, - Profit: 41754.48, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3736`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1307600, - Discounts: 4889.5, - Sales: 1302710.5, - COGS: 363220, - Profit: 939490.5, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1914`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 669900, - Discounts: 7542.5, - Sales: 662357.5, - COGS: 560300, - Profit: 102057.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2742`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 41130, - Discounts: 332.1, - Sales: 40797.9, - COGS: 22140, - Profit: 18657.9, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1499`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 449700, - Discounts: 6903, - Sales: 442797, - COGS: 575250, - Profit: 132453, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3772`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 75440, - Discounts: 275.1, - Sales: 75164.9, - COGS: 13755, - Profit: 61409.9, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1112`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 7784, - Discounts: 128.1, - Sales: 7655.9, - COGS: 9150, - Profit: 1494.1, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2368`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 35520, - Discounts: 227.1, - Sales: 35292.9, - COGS: 15140, - Profit: 20152.9, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1586`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 11102, - Discounts: 314.48, - Sales: 10787.52, - COGS: 22462.5, - Profit: 11674.98, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3386`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 423250, - Discounts: 908.75, - Sales: 422341.25, - COGS: 87240, - Profit: 335101.25, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `852`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 106500, - Discounts: 983.75, - Sales: 105516.25, - COGS: 94440, - Profit: 11076.25, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2783`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 347875, - Discounts: 2278.75, - Sales: 345596.25, - COGS: 218760, - Profit: 126836.25, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2684`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 40260, - Discounts: 112.05, - Sales: 40147.95, - COGS: 7470, - Profit: 32677.95, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4083`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1224900, - Discounts: 8715, - Sales: 1216185, - COGS: 726250, - Profit: 489935, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2816`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 985600, - Discounts: 7542.5, - Sales: 978057.5, - COGS: 560300, - Profit: 417757.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `4294`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 85880, - Discounts: 772.8, - Sales: 85107.2, - COGS: 38640, - Profit: 46467.2, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2856`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 19992, - Discounts: 25.34, - Sales: 19966.66, - COGS: 1810, - Profit: 18156.66, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1407`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 175875, - Discounts: 1153.75, - Sales: 174721.25, - COGS: 110760, - Profit: 63961.25, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1265`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 8855, - Discounts: 18.41, - Sales: 8836.59, - COGS: 1315, - Profit: 7521.59, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3892`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1362200, - Discounts: 3302.25, - Sales: 1358897.75, - COGS: 245310, - Profit: 1113587.75, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `3068`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 383500, - Discounts: 908.75, - Sales: 382591.25, - COGS: 87240, - Profit: 295351.25, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2181`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 272625, - Discounts: 983.75, - Sales: 271641.25, - COGS: 94440, - Profit: 177201.25, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1356`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 406800, - Discounts: 2958, - Sales: 403842, - COGS: 246500, - Profit: 177201.25, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1814`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 634900, - Discounts: 4889.5, - Sales: 630010.5, - COGS: 363220, - Profit: 266790.5, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1495`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 186875, - Discounts: 2180, - Sales: 184695, - COGS: 209280, - Profit: 24585, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1463`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 182875, - Discounts: 1856.25, - Sales: 181018.75, - COGS: 89100, - Profit: 91918.75, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `215`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 2580, - Discounts: 310.8, - Sales: 2269.2, - COGS: 3885, - Profit: 1615.8, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `566`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 198100, - Discounts: 19964, - Sales: 178136, - COGS: 741520, - Profit: 563384, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `3255`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 39060, - Discounts: 274.08, - Sales: 38785.92, - COGS: 3426, - Profit: 35359.92, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `772`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 15440, - Discounts: 626.4, - Sales: 14813.6, - COGS: 15660, - Profit: 846.4, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1135`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 13620, - Discounts: 165.6, - Sales: 13454.4, - COGS: 2070, - Profit: 11384.4, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1193`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 17895, - Discounts: 708.9, - Sales: 17186.1, - COGS: 23630, - Profit: 6443.9, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2530`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 759000, - Discounts: 5508, - Sales: 753492, - COGS: 229500, - Profit: 523992, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3451`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1035300, - Discounts: 10368, - Sales: 1024932, - COGS: 432000, - Profit: 592932, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3059`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 36708, - Discounts: 274.08, - Sales: 36433.92, - COGS: 3426, - Profit: 33007.92, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3957`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 494625, - Discounts: 1655, - Sales: 492970, - COGS: 79440, - Profit: 413530, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3444`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 41328, - Discounts: 310.8, - Sales: 41017.2, - COGS: 3885, - Profit: 37132.2, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3154`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 946200, - Discounts: 11496, - Sales: 934704, - COGS: 479000, - Profit: 455704, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4108`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1437800, - Discounts: 19964, - Sales: 1417836, - COGS: 741520, - Profit: 676316, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3760`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 470000, - Discounts: 6822.5, - Sales: 463177.5, - COGS: 327480, - Profit: 135697.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2334`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 28008, - Discounts: 253.2, - Sales: 27754.8, - COGS: 3165, - Profit: 24589.8, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `580`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 6960, - Discounts: 260.16, - Sales: 6699.84, - COGS: 3252, - Profit: 3447.84, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2610`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 52200, - Discounts: 626.4, - Sales: 51573.6, - COGS: 15660, - Profit: 35913.6, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `1459`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 510650, - Discounts: 20139, - Sales: 490511, - COGS: 748020, - Profit: 257509, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3774`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 45288, - Discounts: 253.2, - Sales: 45034.8, - COGS: 3165, - Profit: 41869.8, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2572`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 30864, - Discounts: 260.16, - Sales: 30603.84, - COGS: 3252, - Profit: 27351.84, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `320`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 40000, - Discounts: 1655, - Sales: 38345, - COGS: 79440, - Profit: 41095, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3275`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1146250, - Discounts: 20139, - Sales: 1126111, - COGS: 748020, - Profit: 378091, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3582`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 447750, - Discounts: 6822.5, - Sales: 440927.5, - COGS: 327480, - Profit: 113447.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4056`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1216800, - Discounts: 1554, - Sales: 1215246, - COGS: 64750, - Profit: 1150496, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2144`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 643200, - Discounts: 6606, - Sales: 636594, - COGS: 275250, - Profit: 361344, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `3502`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 437750, - Discounts: 5690, - Sales: 432060, - COGS: 273120, - Profit: 158940, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `679`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 13580, - Discounts: 494.4, - Sales: 13085.6, - COGS: 12360, - Profit: 725.6, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2351`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 47020, - Discounts: 376.4, - Sales: 46643.6, - COGS: 9410, - Profit: 37233.6, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2043`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 612900, - Discounts: 11496, - Sales: 601404, - COGS: 479000, - Profit: 122404, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `3565`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 445625, - Discounts: 15913.13, - Sales: 429711.88, - COGS: 509220, - Profit: 79508.13, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1401`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 28020, - Discounts: 1548, - Sales: 26472, - COGS: 25800, - Profit: 672, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2077`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 623100, - Discounts: 6201, - Sales: 616899, - COGS: 172250, - Profit: 444649, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `3643`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 43716, - Discounts: 700.92, - Sales: 43015.08, - COGS: 5841, - Profit: 37174.08, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2960`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 20720, - Discounts: 411.18, - Sales: 20308.82, - COGS: 9790, - Profit: 10518.82, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1201`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 14412, - Discounts: 684.36, - Sales: 13727.64, - COGS: 5703, - Profit: 8024.64, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `2321`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 16247, - Discounts: 114.24, - Sales: 16132.76, - COGS: 2720, - Profit: 13412.76, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3972`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 496500, - Discounts: 4826.25, - Sales: 491673.75, - COGS: 154440, - Profit: 337233.75, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3878`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 484750, - Discounts: 6397.5, - Sales: 478352.5, - COGS: 204720, - Profit: 273632.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2278`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 683400, - Discounts: 21910.5, - Sales: 661489.5, - COGS: 608625, - Profit: 52864.5, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1075`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 134375, - Discounts: 6652.5, - Sales: 127722.5, - COGS: 212880, - Profit: 85157.5, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `4050`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 48600, - Discounts: 684.36, - Sales: 47915.64, - COGS: 5703, - Profit: 42212.64, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3035`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 910500, - Discounts: 6201, - Sales: 904299, - COGS: 172250, - Profit: 732049, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3636`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 454500, - Discounts: 5887.5, - Sales: 448612.5, - COGS: 188400, - Profit: 260212.5, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1379`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 16548, - Discounts: 493.02, - Sales: 16054.98, - COGS: 4108.5, - Profit: 11946.48, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4492`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 561500, - Discounts: 7533.75, - Sales: 553966.25, - COGS: 241080, - Profit: 312886.25, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1744`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 218000, - Discounts: 4826.25, - Sales: 213173.75, - COGS: 154440, - Profit: 58733.75, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2341`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 292625, - Discounts: 6397.5, - Sales: 286227.5, - COGS: 204720, - Profit: 81507.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3835`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 479375, - Discounts: 7533.75, - Sales: 471841.25, - COGS: 241080, - Profit: 230761.25, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1161`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 348300, - Discounts: 25596, - Sales: 322704, - COGS: 711000, - Profit: 388296, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `876`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 10512, - Discounts: 689.76, - Sales: 9822.24, - COGS: 5748, - Profit: 4074.24, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1705`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 213125, - Discounts: 5887.5, - Sales: 207237.5, - COGS: 188400, - Profit: 18837.5, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1805`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 541500, - Discounts: 16866, - Sales: 524634, - COGS: 468500, - Profit: 56134, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `389`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 136150, - Discounts: 17241, - Sales: 118909, - COGS: 426920, - Profit: 308011, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1459`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 29180, - Discounts: 498.6, - Sales: 28681.4, - COGS: 8310, - Profit: 20371.4, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `4236`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 84720, - Discounts: 2310.3, - Sales: 82409.7, - COGS: 38505, - Profit: 43904.7, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3627`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 43524, - Discounts: 892.44, - Sales: 42631.56, - COGS: 7437, - Profit: 35194.56, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1756`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 26340, - Discounts: 1218.6, - Sales: 25121.4, - COGS: 20310, - Profit: 4811.4, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `307`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 4605, - Discounts: 1218.6, - Sales: 3386.4, - COGS: 20310, - Profit: 16923.6, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1222`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 366600, - Discounts: 24252, - Sales: 342348, - COGS: 505250, - Profit: 162902, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `489`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 171150, - Discounts: 3836, - Sales: 167314, - COGS: 71240, - Profit: 96074, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4133`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 61995, - Discounts: 1180.2, - Sales: 60814.8, - COGS: 19670, - Profit: 41144.8, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2743`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 822900, - Discounts: 22308, - Sales: 800592, - COGS: 464750, - Profit: 335842, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `4460`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1338000, - Discounts: 24252, - Sales: 1313748, - COGS: 505250, - Profit: 808498, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1232`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 154000, - Discounts: 5690, - Sales: 148310, - COGS: 136560, - Profit: 11750, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2586`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 18102, - Discounts: 1190.28, - Sales: 16911.72, - COGS: 21255, - Profit: 4343.28, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1332`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 166500, - Discounts: 3975, - Sales: 162525, - COGS: 95400, - Profit: 67125, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4487`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1346100, - Discounts: 16974, - Sales: 1329126, - COGS: 353625, - Profit: 975501, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3862`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1158600, - Discounts: 35016, - Sales: 1123584, - COGS: 729500, - Profit: 394084, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1765`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 617750, - Discounts: 48300, - Sales: 569450, - COGS: 897000, - Profit: 327550, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3533`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 441625, - Discounts: 14940, - Sales: 426685, - COGS: 358560, - Profit: 68125, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2016`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 30240, - Discounts: 130.8, - Sales: 30109.2, - COGS: 2180, - Profit: 27929.2, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2938`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 58760, - Discounts: 1659.2, - Sales: 57100.8, - COGS: 20740, - Profit: 36360.8, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3352`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 67040, - Discounts: 844.8, - Sales: 66195.2, - COGS: 10560, - Profit: 55635.2, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2430`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 850500, - Discounts: 3836, - Sales: 846664, - COGS: 71240, - Profit: 775424, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `535`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 66875, - Discounts: 5690, - Sales: 61185, - COGS: 136560, - Profit: 75375, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1523`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 18276, - Discounts: 703.2, - Sales: 17572.8, - COGS: 4395, - Profit: 13177.8, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1782`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 623700, - Discounts: 30478, - Sales: 593222, - COGS: 566020, - Profit: 27202, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `347`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 4164, - Discounts: 415.68, - Sales: 3748.32, - COGS: 2598, - Profit: 1150.32, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3509`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1228150, - Discounts: 30478, - Sales: 1197672, - COGS: 566020, - Profit: 631652, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2943`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1030050, - Discounts: 26110, - Sales: 1003940, - COGS: 484900, - Profit: 519040, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `4037`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 504625, - Discounts: 5370, - Sales: 499255, - COGS: 128880, - Profit: 370375, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4146`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1451100, - Discounts: 26698, - Sales: 1424402, - COGS: 495820, - Profit: 928582, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `725`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 5075, - Discounts: 480.2, - Sales: 4594.8, - COGS: 6860, - Profit: 2265.2, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2325`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 16275, - Discounts: 941.15, - Sales: 15333.85, - COGS: 13445, - Profit: 1888.85, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `675`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 8100, - Discounts: 1458.6, - Sales: 6641.4, - COGS: 7293, - Profit: 651.6, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2990`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 35880, - Discounts: 1458.6, - Sales: 34421.4, - COGS: 7293, - Profit: 27128.4, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1072`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 7504, - Discounts: 941.15, - Sales: 6562.85, - COGS: 13445, - Profit: 6882.15, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1048`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 7336, - Discounts: 589.05, - Sales: 6746.95, - COGS: 8415, - Profit: 1668.05, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `469`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 5628, - Discounts: 673.8, - Sales: 4954.2, - COGS: 3369, - Profit: 1585.2, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `4240`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 50880, - Discounts: 1119, - Sales: 49761, - COGS: 5595, - Profit: 44166, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1976`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 23712, - Discounts: 669.6, - Sales: 23042.4, - COGS: 3348, - Profit: 19694.4, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1984`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 39680, - Discounts: 1563, - Sales: 38117, - COGS: 15630, - Profit: 22487, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `480`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 144000, - Discounts: 14865, - Sales: 129135, - COGS: 247750, - Profit: 118615, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1205`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 18075, - Discounts: 2093.25, - Sales: 15981.75, - COGS: 27910, - Profit: 11928.25, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2480`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 17360, - Discounts: 199.5, - Sales: 17160.5, - COGS: 2850, - Profit: 14310.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `2926`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 20482, - Discounts: 870.45, - Sales: 19611.55, - COGS: 12435, - Profit: 7176.55, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3210`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1123500, - Discounts: 24228.75, - Sales: 1099271.25, - COGS: 359970, - Profit: 739301.25, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `3221`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 402625, - Discounts: 22668.75, - Sales: 379956.25, - COGS: 435240, - Profit: 55283.75, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `1127`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 13524, - Discounts: 1405.2, - Sales: 12118.8, - COGS: 7026, - Profit: 5092.8, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1610`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 32200, - Discounts: 1303, - Sales: 30897, - COGS: 13030, - Profit: 17867, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4100`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 512500, - Discounts: 18700, - Sales: 493800, - COGS: 359040, - Profit: 134760, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1012`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 126500, - Discounts: 14906.25, - Sales: 111593.75, - COGS: 286200, - Profit: 174606.25, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3337`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1001100, - Discounts: 24105, - Sales: 976995, - COGS: 401750, - Profit: 575245, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3955`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 27685, - Discounts: 814.45, - Sales: 26870.55, - COGS: 11635, - Profit: 15235.55, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4347`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1304100, - Discounts: 14865, - Sales: 1289235, - COGS: 247750, - Profit: 1041485, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1548`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 541800, - Discounts: 10535, - Sales: 531265, - COGS: 156520, - Profit: 374745, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2153`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 32295, - Discounts: 1965, - Sales: 30330, - COGS: 26200, - Profit: 4130, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4126`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 515750, - Discounts: 5381.25, - Sales: 510368.75, - COGS: 103320, - Profit: 407048.75, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3376`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 67520, - Discounts: 2663, - Sales: 64857, - COGS: 26630, - Profit: 38227, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2244`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 33660, - Discounts: 416.25, - Sales: 33243.75, - COGS: 5550, - Profit: 27693.75, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `1360`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 20400, - Discounts: 2145.75, - Sales: 18254.25, - COGS: 28610, - Profit: 10355.75, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `279`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 34875, - Discounts: 5043.75, - Sales: 29831.25, - COGS: 96840, - Profit: 67008.75, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2521`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 882350, - Discounts: 10535, - Sales: 871815, - COGS: 156520, - Profit: 715295, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2433`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 48660, - Discounts: 2832, - Sales: 45828, - COGS: 28320, - Profit: 17508, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1738`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 34760, - Discounts: 1579, - Sales: 33181, - COGS: 15790, - Profit: 17391, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1106`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 138250, - Discounts: 5381.25, - Sales: 132868.75, - COGS: 103320, - Profit: 29548.75, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `213`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 63900, - Discounts: 18750, - Sales: 45150, - COGS: 312500, - Profit: 267350, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2929`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 58580, - Discounts: 2663, - Sales: 55917, - COGS: 26630, - Profit: 29287, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2389`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 16723, - Discounts: 199.5, - Sales: 16523.5, - COGS: 2850, - Profit: 13673.5, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3086`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 21602, - Discounts: 870.45, - Sales: 20731.55, - COGS: 12435, - Profit: 8296.55, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `745`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 260750, - Discounts: 23625, - Sales: 237125, - COGS: 351000, - Profit: 113875, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1266`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 443100, - Discounts: 9660, - Sales: 433440, - COGS: 143520, - Profit: 289920, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4287`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1286100, - Discounts: 18750, - Sales: 1267350, - COGS: 312500, - Profit: 954850, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3193`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 47895, - Discounts: 3420.9, - Sales: 44474.1, - COGS: 38010, - Profit: 6464.1, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1967`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 39340, - Discounts: 1341, - Sales: 37999, - COGS: 11175, - Profit: 26824, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `631`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 9465, - Discounts: 2559.6, - Sales: 6905.4, - COGS: 28440, - Profit: 21534.6, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3469`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 41628, - Discounts: 404.64, - Sales: 41223.36, - COGS: 1686, - Profit: 39537.36, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `3215`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 48225, - Discounts: 1827, - Sales: 46398, - COGS: 20300, - Profit: 26098, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1959`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 685650, - Discounts: 20580, - Sales: 665070, - COGS: 254800, - Profit: 410270, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2181`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 763350, - Discounts: 30660, - Sales: 732690, - COGS: 379600, - Profit: 353090, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2205`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 26460, - Discounts: 1960.56, - Sales: 24499.44, - COGS: 8169, - Profit: 16330.44, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1890`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 661500, - Discounts: 31416, - Sales: 630084, - COGS: 388960, - Profit: 241124, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2417`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 302125, - Discounts: 7140, - Sales: 294985, - COGS: 114240, - Profit: 180745, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1158`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 144750, - Discounts: 20662.5, - Sales: 124087.5, - COGS: 330600, - Profit: 206512.5, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `803`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 12045, - Discounts: 1377, - Sales: 10668, - COGS: 15300, - Profit: 4632, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3705`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1296750, - Discounts: 31416, - Sales: 1265334, - COGS: 388960, - Profit: 876374, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `589`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 4123, - Discounts: 629.16, - Sales: 3493.84, - COGS: 7490, - Profit: 3996.16, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3999`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 59985, - Discounts: 2559.6, - Sales: 57425.4, - COGS: 28440, - Profit: 28985.4, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `4256`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 29792, - Discounts: 629.16, - Sales: 29162.84, - COGS: 7490, - Profit: 21672.84, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2160`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 270000, - Discounts: 14906.25, - Sales: 255093.75, - COGS: 238500, - Profit: 16593.75, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `466`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 163100, - Discounts: 35259, - Sales: 127841, - COGS: 436540, - Profit: 308699, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1478`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 22170, - Discounts: 1978.2, - Sales: 20191.8, - COGS: 21980, - Profit: 1788.2, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3798`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 56970, - Discounts: 1568.7, - Sales: 55401.3, - COGS: 17430, - Profit: 37971.3, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `447`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 6705, - Discounts: 1037.7, - Sales: 5667.3, - COGS: 11530, - Profit: 5862.7, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `745`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 14900, - Discounts: 1201.2, - Sales: 13698.8, - COGS: 10010, - Profit: 3688.8, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `1732`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 12124, - Discounts: 559.86, - Sales: 11564.14, - COGS: 6665, - Profit: 4899.14, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1759`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 26385, - Discounts: 1037.7, - Sales: 25347.3, - COGS: 11530, - Profit: 13817.3, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `338`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 4056, - Discounts: 610.68, - Sales: 3445.32, - COGS: 2181, - Profit: 1264.32, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `3911`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 46932, - Discounts: 1582.56, - Sales: 45349.44, - COGS: 5652, - Profit: 39697.44, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `4473`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 53676, - Discounts: 1965.6, - Sales: 51710.4, - COGS: 7020, - Profit: 44690.4, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `383`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 4596, - Discounts: 1967.28, - Sales: 2628.72, - COGS: 7026, - Profit: 4397.28, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1062`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 15930, - Discounts: 1325.1, - Sales: 14604.9, - COGS: 12620, - Profit: 1984.9, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `4083`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 28581, - Discounts: 556.15, - Sales: 28024.85, - COGS: 5675, - Profit: 22349.85, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3974`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 27818, - Discounts: 268.03, - Sales: 27549.97, - COGS: 2735, - Profit: 24814.97, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3723`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 26061, - Discounts: 775.18, - Sales: 25285.82, - COGS: 7910, - Profit: 17375.82, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2435`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 29220, - Discounts: 1460.34, - Sales: 27759.66, - COGS: 5215.5, - Profit: 22544.16, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1763`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 12341, - Discounts: 775.18, - Sales: 11565.82, - COGS: 7910, - Profit: 3655.82, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `4473`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 31311, - Discounts: 556.15, - Sales: 30754.85, - COGS: 5675, - Profit: 25079.85, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1246`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 436100, - Discounts: 43144.5, - Sales: 392955.5, - COGS: 457860, - Profit: 64904.5, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1615`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 484500, - Discounts: 9408, - Sales: 475092, - COGS: 112000, - Profit: 363092, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `749`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 224700, - Discounts: 45801, - Sales: 178899, - COGS: 545250, - Profit: 366351, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1318`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 26360, - Discounts: 2766.4, - Sales: 23593.6, - COGS: 19760, - Profit: 3833.6, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `2882`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 864600, - Discounts: 45801, - Sales: 818799, - COGS: 545250, - Profit: 273549, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2484`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 745200, - Discounts: 35742, - Sales: 709458, - COGS: 425500, - Profit: 283958, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3169`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 950700, - Discounts: 9408, - Sales: 941292, - COGS: 112000, - Profit: 829292, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4080`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 510000, - Discounts: 30738.75, - Sales: 479261.25, - COGS: 421560, - Profit: 57701.25, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3943`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 59145, - Discounts: 2206.05, - Sales: 56938.95, - COGS: 21010, - Profit: 35928.95, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `253`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 5060, - Discounts: 2149, - Sales: 2911, - COGS: 15350, - Profit: 12439, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `799`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 239700, - Discounts: 34839, - Sales: 204861, - COGS: 414750, - Profit: 209889, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3942`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 78840, - Discounts: 852.6, - Sales: 77987.4, - COGS: 6090, - Profit: 71897.4, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2498`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 312250, - Discounts: 18261.25, - Sales: 293988.75, - COGS: 250440, - Profit: 43548.75, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `2517`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 50340, - Discounts: 2766.4, - Sales: 47573.6, - COGS: 19760, - Profit: 27813.6, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1145`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 343500, - Discounts: 28812, - Sales: 314688, - COGS: 343000, - Profit: 28312, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3814`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 45768, - Discounts: 2725.38, - Sales: 43042.62, - COGS: 9733.5, - Profit: 33309.12, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1188`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 356400, - Discounts: 20139, - Sales: 336261, - COGS: 239750, - Profit: 96511, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `2233`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 669900, - Discounts: 57687, - Sales: 612213, - COGS: 686750, - Profit: 74537, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `421`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 52625, - Discounts: 14393.75, - Sales: 38231.25, - COGS: 197400, - Profit: 159168.75, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `269`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 94150, - Discounts: 70462, - Sales: 23688, - COGS: 747760, - Profit: 724072, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `952`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 19040, - Discounts: 1565.2, - Sales: 17474.8, - COGS: 11180, - Profit: 6294.8, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2964`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 889200, - Discounts: 28812, - Sales: 860388, - COGS: 343000, - Profit: 517388, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1505`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 10535, - Discounts: 273.28, - Sales: 10261.72, - COGS: 2440, - Profit: 7821.72, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1678`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 33560, - Discounts: 2051.2, - Sales: 31508.8, - COGS: 12820, - Profit: 18688.8, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4249`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 29743, - Discounts: 143.92, - Sales: 29599.08, - COGS: 1285, - Profit: 28314.08, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1677`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 33540, - Discounts: 2051.2, - Sales: 31488.8, - COGS: 12820, - Profit: 18668.8, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3051`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 381375, - Discounts: 15400, - Sales: 365975, - COGS: 184800, - Profit: 181175, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `3372`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 50580, - Discounts: 588, - Sales: 49992, - COGS: 4900, - Profit: 45092, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1686`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 590100, - Discounts: 38136, - Sales: 551964, - COGS: 354120, - Profit: 197844, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3086`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 46290, - Discounts: 3001.2, - Sales: 43288.8, - COGS: 25010, - Profit: 18278.8, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4150`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 83000, - Discounts: 1132.8, - Sales: 81867.2, - COGS: 7080, - Profit: 74787.2, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3027`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 60540, - Discounts: 1032, - Sales: 59508, - COGS: 6450, - Profit: 53058, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `4359`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1307700, - Discounts: 37488, - Sales: 1270212, - COGS: 390500, - Profit: 879712, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `1589`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 23835, - Discounts: 853.2, - Sales: 22981.8, - COGS: 7110, - Profit: 15871.8, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2679`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 334875, - Discounts: 11140, - Sales: 323735, - COGS: 133680, - Profit: 190055, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3401`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 23807, - Discounts: 705.04, - Sales: 23101.96, - COGS: 6295, - Profit: 16806.96, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2815`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 19705, - Discounts: 613.2, - Sales: 19091.8, - COGS: 5475, - Profit: 13616.8, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2964`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 59280, - Discounts: 2185.6, - Sales: 57094.4, - COGS: 13660, - Profit: 43434.4, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `4173`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1251900, - Discounts: 59040, - Sales: 1192860, - COGS: 615000, - Profit: 577860, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1157`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 8099, - Discounts: 379.68, - Sales: 7719.32, - COGS: 3390, - Profit: 4329.32, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3065`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 21455, - Discounts: 894.88, - Sales: 20560.12, - COGS: 7990, - Profit: 12570.12, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4080`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 81600, - Discounts: 3094.4, - Sales: 78505.6, - COGS: 19340, - Profit: 59165.6, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1713`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34260, - Discounts: 4788.8, - Sales: 29471.2, - COGS: 29930, - Profit: 458.8, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1691`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 591850, - Discounts: 38136, - Sales: 553714, - COGS: 354120, - Profit: 199594, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2305`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 27660, - Discounts: 574.08, - Sales: 27085.92, - COGS: 1794, - Profit: 25291.92, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3401`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 23807, - Discounts: 1627.92, - Sales: 22179.08, - COGS: 14535, - Profit: 7644.08, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2288`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 16016, - Discounts: 1309.28, - Sales: 14706.72, - COGS: 11690, - Profit: 3016.72, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `4086`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1225800, - Discounts: 15240, - Sales: 1210560, - COGS: 158750, - Profit: 1051810, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2651`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 927850, - Discounts: 16086, - Sales: 911764, - COGS: 149370, - Profit: 762394, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3971`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 27797, - Discounts: 1309.28, - Sales: 26487.72, - COGS: 11690, - Profit: 14797.72, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2512`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 879200, - Discounts: 10668, - Sales: 868532, - COGS: 99060, - Profit: 769472, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2745`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 960750, - Discounts: 11816, - Sales: 948934, - COGS: 109720, - Profit: 839214, - Date: `8/1/20`, - MonthName: `August`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1903`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 570900, - Discounts: 51216, - Sales: 519684, - COGS: 533500, - Profit: 13816, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2914`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 58280, - Discounts: 1132.8, - Sales: 57147.2, - COGS: 7080, - Profit: 50067.2, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1889`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 13223, - Discounts: 1627.92, - Sales: 11595.08, - COGS: 14535, - Profit: 2939.92, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1466`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 29320, - Discounts: 2185.6, - Sales: 27134.4, - COGS: 13660, - Profit: 13474.4, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `887`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 266100, - Discounts: 59040, - Sales: 207060, - COGS: 615000, - Profit: 407940, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `395`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 7900, - Discounts: 2432, - Sales: 5468, - COGS: 15200, - Profit: 9732, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1693`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 25395, - Discounts: 853.2, - Sales: 24541.8, - COGS: 7110, - Profit: 17431.8, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2649`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 794700, - Discounts: 15240, - Sales: 779460, - COGS: 158750, - Profit: 620710, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `3608`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 72160, - Discounts: 698.4, - Sales: 71461.6, - COGS: 4365, - Profit: 67096.6, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1073`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 321900, - Discounts: 29538, - Sales: 292362, - COGS: 273500, - Profit: 18862, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `2167`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 650100, - Discounts: 102667.5, - Sales: 547432.5, - COGS: 950625, - Profit: 403192.5, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1319`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 461650, - Discounts: 52479, - Sales: 409171, - COGS: 433160, - Profit: 23989, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1252`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 15024, - Discounts: 2506.68, - Sales: 12517.32, - COGS: 6963, - Profit: 5554.32, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1156`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 144500, - Discounts: 31466.25, - Sales: 113033.75, - COGS: 335640, - Profit: 222606.25, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1153`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 345900, - Discounts: 69255, - Sales: 276645, - COGS: 641250, - Profit: 364605, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2720`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 952000, - Discounts: 76135.5, - Sales: 875864.5, - COGS: 628420, - Profit: 247444.5, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3658`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 54870, - Discounts: 4961.25, - Sales: 49908.75, - COGS: 36750, - Profit: 13158.75, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2950`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 885000, - Discounts: 29538, - Sales: 855462, - COGS: 273500, - Profit: 581962, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1821`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 27315, - Discounts: 1656.45, - Sales: 25658.55, - COGS: 12270, - Profit: 13388.55, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1127`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 338100, - Discounts: 35748, - Sales: 302352, - COGS: 331000, - Profit: 28648, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `862`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 107750, - Discounts: 31466.25, - Sales: 76283.75, - COGS: 335640, - Profit: 259356.25, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3805`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 57075, - Discounts: 330.75, - Sales: 56744.25, - COGS: 2450, - Profit: 54294.25, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1415`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 424500, - Discounts: 102424.5, - Sales: 322075.5, - COGS: 948375, - Profit: 626299.5, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2231`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 780850, - Discounts: 41170.5, - Sales: 739679.5, - COGS: 339820, - Profit: 399859.5, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3649`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 456125, - Discounts: 6378.75, - Sales: 449746.25, - COGS: 68040, - Profit: 381706.25, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2948`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 368500, - Discounts: 23737.5, - Sales: 344762.5, - COGS: 253200, - Profit: 91562.5, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3395`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1188250, - Discounts: 39973.5, - Sales: 1148276.5, - COGS: 329940, - Profit: 818336.5, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2650`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 31800, - Discounts: 2112.48, - Sales: 29687.52, - COGS: 5868, - Profit: 23819.52, - Date: `1/1/20`, - MonthName: `January`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `585`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 175500, - Discounts: 71793, - Sales: 103707, - COGS: 664750, - Profit: 561043, - Date: `2/1/20`, - MonthName: `February`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1316`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 460600, - Discounts: 42572.25, - Sales: 418027.75, - COGS: 351390, - Profit: 66637.75, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `4459`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 53508, - Discounts: 950.4, - Sales: 52557.6, - COGS: 2640, - Profit: 49917.6, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2711`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 813300, - Discounts: 50409, - Sales: 762891, - COGS: 466750, - Profit: 296141, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3613`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 54195, - Discounts: 1656.45, - Sales: 52538.55, - COGS: 12270, - Profit: 40268.55, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1847`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 230875, - Discounts: 9866.25, - Sales: 221008.75, - COGS: 105240, - Profit: 115768.75, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2996`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1048600, - Discounts: 65236.5, - Sales: 983363.5, - COGS: 538460, - Profit: 444903.5, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2838`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 993300, - Discounts: 39973.5, - Sales: 953326.5, - COGS: 329940, - Profit: 623386.5, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1536`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 30720, - Discounts: 3049.2, - Sales: 27670.8, - COGS: 16940, - Profit: 10730.8, - Date: `11/1/20`, - MonthName: `November`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1291`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 25820, - Discounts: 1193.4, - Sales: 24626.6, - COGS: 6630, - Profit: 17996.6, - Date: `5/1/20`, - MonthName: `May`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1213`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 8491, - Discounts: 515.97, - Sales: 7975.03, - COGS: 4095, - Profit: 3880.03, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2370`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 28440, - Discounts: 1706.4, - Sales: 26733.6, - COGS: 4740, - Profit: 21993.6, - Date: `9/1/20`, - MonthName: `September`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1979`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 13853, - Discounts: 328.23, - Sales: 13524.77, - COGS: 2605, - Profit: 10919.77, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2879`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 57580, - Discounts: 1751.4, - Sales: 55828.6, - COGS: 9730, - Profit: 46098.6, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1707`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34140, - Discounts: 1868.4, - Sales: 32271.6, - COGS: 10380, - Profit: 21891.6, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2933`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 20531, - Discounts: 226.8, - Sales: 20304.2, - COGS: 1800, - Profit: 18504.2, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1014`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 12168, - Discounts: 2124.36, - Sales: 10043.64, - COGS: 5901, - Profit: 4142.64, - Date: `3/1/20`, - MonthName: `March`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `693`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 10395, - Discounts: 3547.8, - Sales: 6847.2, - COGS: 26280, - Profit: 19432.8, - Date: `4/1/20`, - MonthName: `April`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3741`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 26187, - Discounts: 226.8, - Sales: 25960.2, - COGS: 1800, - Profit: 24160.2, - Date: `10/1/20`, - MonthName: `October`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `3995`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 27965, - Discounts: 328.23, - Sales: 27636.77, - COGS: 2605, - Profit: 25031.77, - Date: `12/1/20`, - MonthName: `December`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `953`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 19060, - Discounts: 1868.4, - Sales: 17191.6, - COGS: 10380, - Profit: 6811.6, - Date: `6/1/20`, - MonthName: `June`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2530`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 37950, - Discounts: 2201.18, - Sales: 35748.82, - COGS: 16305, - Profit: 19443.82, - Date: `7/1/20`, - MonthName: `July`, - Year: `2020` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1372`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 27440, - Discounts: 0, - Sales: 27440, - COGS: 16185, - Profit: 11255, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2762`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 55240, - Discounts: 0, - Sales: 55240, - COGS: 13210, - Profit: 42030, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1464`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 21960, - Discounts: 0, - Sales: 21960, - COGS: 21780, - Profit: 180, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `719`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 10785, - Discounts: 0, - Sales: 10785, - COGS: 8880, - Profit: 1905, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3576`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 53640, - Discounts: 0, - Sales: 53640, - COGS: 24700, - Profit: 28940, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `4422`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1547700, - Discounts: 0, - Sales: 1547700, - COGS: 393380, - Profit: 1154320, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3649`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 54735, - Discounts: 0, - Sales: 54735, - COGS: 9210, - Profit: 45525, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4172`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 50064, - Discounts: 0, - Sales: 50064, - COGS: 7554, - Profit: 42510, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3841`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 76820, - Discounts: 0, - Sales: 76820, - COGS: 18990, - Profit: 57830, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3726`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 44712, - Discounts: 0, - Sales: 44712, - COGS: 4635, - Profit: 40077, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2625`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 39375, - Discounts: 0, - Sales: 39375, - COGS: 24700, - Profit: 14675, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1958`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 244750, - Discounts: 0, - Sales: 244750, - COGS: 319860, - Profit: 75110, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `3271`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 981300, - Discounts: 0, - Sales: 981300, - COGS: 239500, - Profit: 741800, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2091`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 14637, - Discounts: 0, - Sales: 14637, - COGS: 10730, - Profit: 3907, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `2530`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 316250, - Discounts: 0, - Sales: 316250, - COGS: 41400, - Profit: 274850, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2825`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 42375, - Discounts: 0, - Sales: 42375, - COGS: 6150, - Profit: 36225, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2513`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 50260, - Discounts: 0, - Sales: 50260, - COGS: 2920, - Profit: 47340, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `883`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 13245, - Discounts: 0, - Sales: 13245, - COGS: 9740, - Profit: 3505, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2087`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 25044, - Discounts: 0, - Sales: 25044, - COGS: 7554, - Profit: 17490, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2563`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 897050, - Discounts: 0, - Sales: 897050, - COGS: 261560, - Profit: 635490, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2846`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 34152, - Discounts: 0, - Sales: 34152, - COGS: 1101, - Profit: 33051, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `997`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 6979, - Discounts: 0, - Sales: 6979, - COGS: 4415, - Profit: 2564, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3421`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 51315, - Discounts: 0, - Sales: 51315, - COGS: 5490, - Profit: 45825, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Marchesa`, - UnitsSold: `70000`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 1050000, - Discounts: 0, - Sales: 1050000, - COGS: 5490, - Profit: 1044510, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2291`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 687300, - Discounts: 0, - Sales: 687300, - COGS: 197000, - Profit: 490300, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2290`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 34350, - Discounts: 0, - Sales: 34350, - COGS: 24720, - Profit: 9630, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2133`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 14931, - Discounts: 0, - Sales: 14931, - COGS: 5715, - Profit: 9216, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3475`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1216250, - Discounts: 0, - Sales: 1216250, - COGS: 448500, - Profit: 767750, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3686`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 44232, - Discounts: 0, - Sales: 44232, - COGS: 2736, - Profit: 41496, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3319`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 49785, - Discounts: 0, - Sales: 49785, - COGS: 21520, - Profit: 28265, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3617`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 72340, - Discounts: 0, - Sales: 72340, - COGS: 18170, - Profit: 54170, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1266`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 443100, - Discounts: 0, - Sales: 443100, - COGS: 393380, - Profit: 49720, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `894`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 6258, - Discounts: 0, - Sales: 6258, - COGS: 7465, - Profit: 1207, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `2725`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 340625, - Discounts: 0, - Sales: 340625, - COGS: 216480, - Profit: 124145, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3061`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 36732, - Discounts: 0, - Sales: 36732, - COGS: 6483, - Profit: 30249, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3958`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1385300, - Discounts: 0, - Sales: 1385300, - COGS: 261560, - Profit: 1123740, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3920`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 47040, - Discounts: 0, - Sales: 47040, - COGS: 4635, - Profit: 42405, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3381`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 422625, - Discounts: 0, - Sales: 422625, - COGS: 338520, - Profit: 84105, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1094`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 136750, - Discounts: 0, - Sales: 136750, - COGS: 41400, - Profit: 95350, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4307`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 1292100, - Discounts: 0, - Sales: 1292100, - COGS: 500250, - Profit: 791850, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `878`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 10536, - Discounts: 0, - Sales: 10536, - COGS: 8514, - Profit: 2022, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `496`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 7440, - Discounts: 0, - Sales: 7440, - COGS: 21780, - Profit: 14340, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3367`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 50505, - Discounts: 0, - Sales: 50505, - COGS: 8880, - Profit: 41625, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3880`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1358000, - Discounts: 0, - Sales: 1358000, - COGS: 397020, - Profit: 960980, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2055`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 616500, - Discounts: 0, - Sales: 616500, - COGS: 537750, - Profit: 78750, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4041`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 80820, - Discounts: 0, - Sales: 80820, - COGS: 18170, - Profit: 62650, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `3237`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1132950, - Discounts: 0, - Sales: 1132950, - COGS: 715000, - Profit: 417950, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `630`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 7560, - Discounts: 0, - Sales: 7560, - COGS: 5859, - Profit: 1701, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4210`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 526250, - Discounts: 0, - Sales: 526250, - COGS: 506340, - Profit: 19910, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1127`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 22540, - Discounts: 0, - Sales: 22540, - COGS: 18990, - Profit: 3550, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `3438`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 24066, - Discounts: 0, - Sales: 24066, - COGS: 8430, - Profit: 15636, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2015`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 24180, - Discounts: 0, - Sales: 24180, - COGS: 6423, - Profit: 17757, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2534`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 17738, - Discounts: 0, - Sales: 17738, - COGS: 5715, - Profit: 12023, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1384`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 20760, - Discounts: 0, - Sales: 20760, - COGS: 6150, - Profit: 14610, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3561`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 24927, - Discounts: 276.15, - Sales: 24650.85, - COGS: 19725, - Profit: 4925.85, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1823`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 27345, - Discounts: 344.4, - Sales: 27000.6, - COGS: 22960, - Profit: 4040.6, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2795`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 19565, - Discounts: 72.1, - Sales: 19492.9, - COGS: 5150, - Profit: 14342.9, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `457`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 3199, - Discounts: 44.73, - Sales: 3154.27, - COGS: 3195, - Profit: 40.73, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3785`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 26495, - Discounts: 92.82, - Sales: 26402.18, - COGS: 6630, - Profit: 19772.18, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `748`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 8976, - Discounts: 222.96, - Sales: 8753.04, - COGS: 5574, - Profit: 3179.04, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1021`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 357350, - Discounts: 4235, - Sales: 353115, - COGS: 314600, - Profit: 38515, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2076`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 14532, - Discounts: 177.03, - Sales: 14354.97, - COGS: 12645, - Profit: 1709.97, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `4316`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 51792, - Discounts: 173.4, - Sales: 51618.6, - COGS: 4335, - Profit: 47283.6, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2654`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 331750, - Discounts: 412.5, - Sales: 331337.5, - COGS: 39600, - Profit: 291737.5, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `4174`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 50088, - Discounts: 320.52, - Sales: 49767.48, - COGS: 8013, - Profit: 41754.48, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1675`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 20100, - Discounts: 91.92, - Sales: 20008.08, - COGS: 2298, - Profit: 17710.08, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1572`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 471600, - Discounts: 1482, - Sales: 470118, - COGS: 123500, - Profit: 346618, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3736`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1307600, - Discounts: 4889.5, - Sales: 1302710.5, - COGS: 363220, - Profit: 939490.5, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1914`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 669900, - Discounts: 7542.5, - Sales: 662357.5, - COGS: 560300, - Profit: 102057.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2742`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 41130, - Discounts: 332.1, - Sales: 40797.9, - COGS: 22140, - Profit: 18657.9, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1499`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 449700, - Discounts: 6903, - Sales: 442797, - COGS: 575250, - Profit: 132453, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3772`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 75440, - Discounts: 275.1, - Sales: 75164.9, - COGS: 13755, - Profit: 61409.9, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1112`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 7784, - Discounts: 128.1, - Sales: 7655.9, - COGS: 9150, - Profit: 1494.1, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1723`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 516900, - Discounts: 7494, - Sales: 509406, - COGS: 624500, - Profit: 115094, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `423`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 52875, - Discounts: 828.75, - Sales: 52046.25, - COGS: 79560, - Profit: 27513.75, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2368`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 35520, - Discounts: 227.1, - Sales: 35292.9, - COGS: 15140, - Profit: 20152.9, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1586`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 11102, - Discounts: 314.48, - Sales: 10787.52, - COGS: 22462.5, - Profit: 11674.98, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3386`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 423250, - Discounts: 908.75, - Sales: 422341.25, - COGS: 87240, - Profit: 335101.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `852`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 106500, - Discounts: 983.75, - Sales: 105516.25, - COGS: 94440, - Profit: 11076.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2783`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 347875, - Discounts: 2278.75, - Sales: 345596.25, - COGS: 218760, - Profit: 126836.25, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2684`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 40260, - Discounts: 112.05, - Sales: 40147.95, - COGS: 7470, - Profit: 32677.95, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4393`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 52716, - Discounts: 91.92, - Sales: 52624.08, - COGS: 2298, - Profit: 50326.08, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4083`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1224900, - Discounts: 8715, - Sales: 1216185, - COGS: 726250, - Profit: 489935, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2816`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 985600, - Discounts: 7542.5, - Sales: 978057.5, - COGS: 560300, - Profit: 417757.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `4294`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 85880, - Discounts: 772.8, - Sales: 85107.2, - COGS: 38640, - Profit: 46467.2, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2856`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 19992, - Discounts: 25.34, - Sales: 19966.66, - COGS: 1810, - Profit: 18156.66, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1407`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 175875, - Discounts: 1153.75, - Sales: 174721.25, - COGS: 110760, - Profit: 63961.25, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3850`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 481250, - Discounts: 828.75, - Sales: 480421.25, - COGS: 79560, - Profit: 400861.25, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2856`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 19992, - Discounts: 146.44, - Sales: 19845.56, - COGS: 10460, - Profit: 9385.56, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1265`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 8855, - Discounts: 18.41, - Sales: 8836.59, - COGS: 1315, - Profit: 7521.59, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3892`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1362200, - Discounts: 3302.25, - Sales: 1358897.75, - COGS: 245310, - Profit: 1113587.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `3068`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 383500, - Discounts: 908.75, - Sales: 382591.25, - COGS: 87240, - Profit: 295351.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2181`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 272625, - Discounts: 983.75, - Sales: 271641.25, - COGS: 94440, - Profit: 177201.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1356`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 406800, - Discounts: 2958, - Sales: 403842, - COGS: 246500, - Profit: 157342, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `2545`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 763500, - Discounts: 1482, - Sales: 762018, - COGS: 123500, - Profit: 638518, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1814`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 634900, - Discounts: 4889.5, - Sales: 630010.5, - COGS: 363220, - Profit: 266790.5, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1495`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 186875, - Discounts: 2180, - Sales: 184695, - COGS: 209280, - Profit: 24585, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1154`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 13848, - Discounts: 238.68, - Sales: 13609.32, - COGS: 5967, - Profit: 7642.32, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `4180`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 62700, - Discounts: 48.15, - Sales: 62651.85, - COGS: 3210, - Profit: 59441.85, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1463`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 182875, - Discounts: 1856.25, - Sales: 181018.75, - COGS: 89100, - Profit: 91918.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `215`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 2580, - Discounts: 310.8, - Sales: 2269.2, - COGS: 3885, - Profit: 1615.8, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `4099`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 1229700, - Discounts: 1284, - Sales: 1228416, - COGS: 53500, - Profit: 1174916, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `2660`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 18620, - Discounts: 300.3, - Sales: 18319.7, - COGS: 10725, - Profit: 7594.7, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `566`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 198100, - Discounts: 19964, - Sales: 178136, - COGS: 741520, - Profit: 563384, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `3255`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 39060, - Discounts: 274.08, - Sales: 38785.92, - COGS: 3426, - Profit: 35359.92, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `772`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 15440, - Discounts: 626.4, - Sales: 14813.6, - COGS: 15660, - Profit: 846.4, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1135`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 13620, - Discounts: 165.6, - Sales: 13454.4, - COGS: 2070, - Profit: 11384.4, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `3826`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 478250, - Discounts: 4150, - Sales: 474100, - COGS: 199200, - Profit: 274900, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1193`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 17895, - Discounts: 708.9, - Sales: 17186.1, - COGS: 23630, - Profit: 6443.9, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2530`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 759000, - Discounts: 5508, - Sales: 753492, - COGS: 229500, - Profit: 523992, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3451`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1035300, - Discounts: 10368, - Sales: 1024932, - COGS: 432000, - Profit: 592932, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3059`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 36708, - Discounts: 274.08, - Sales: 36433.92, - COGS: 3426, - Profit: 33007.92, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3957`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 494625, - Discounts: 1655, - Sales: 492970, - COGS: 79440, - Profit: 413530, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3444`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 41328, - Discounts: 310.8, - Sales: 41017.2, - COGS: 3885, - Profit: 37132.2, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4388`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 548500, - Discounts: 2022.5, - Sales: 546477.5, - COGS: 97080, - Profit: 449397.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2106`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 263250, - Discounts: 5362.5, - Sales: 257887.5, - COGS: 257400, - Profit: 487.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `799`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 9588, - Discounts: 428.4, - Sales: 9159.6, - COGS: 5355, - Profit: 3804.6, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3154`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 946200, - Discounts: 11496, - Sales: 934704, - COGS: 479000, - Profit: 455704, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4108`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1437800, - Discounts: 19964, - Sales: 1417836, - COGS: 741520, - Profit: 676316, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3760`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 470000, - Discounts: 6822.5, - Sales: 463177.5, - COGS: 327480, - Profit: 135697.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `377`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 5655, - Discounts: 577.5, - Sales: 5077.5, - COGS: 19250, - Profit: 14172.5, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2110`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 14770, - Discounts: 281.82, - Sales: 14488.18, - COGS: 10065, - Profit: 4423.18, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2334`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 28008, - Discounts: 253.2, - Sales: 27754.8, - COGS: 3165, - Profit: 24589.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `580`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 6960, - Discounts: 260.16, - Sales: 6699.84, - COGS: 3252, - Profit: 3447.84, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2610`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 52200, - Discounts: 626.4, - Sales: 51573.6, - COGS: 15660, - Profit: 35913.6, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `1598`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 559300, - Discounts: 20762, - Sales: 538538, - COGS: 771160, - Profit: 232622, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `1459`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 510650, - Discounts: 20139, - Sales: 490511, - COGS: 748020, - Profit: 257509, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3284`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 410500, - Discounts: 2022.5, - Sales: 408477.5, - COGS: 97080, - Profit: 311397.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `1197`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 149625, - Discounts: 5362.5, - Sales: 144262.5, - COGS: 257400, - Profit: 113137.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3774`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 45288, - Discounts: 253.2, - Sales: 45034.8, - COGS: 3165, - Profit: 41869.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2303`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 46060, - Discounts: 217.6, - Sales: 45842.4, - COGS: 5440, - Profit: 40402.4, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2572`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 30864, - Discounts: 260.16, - Sales: 30603.84, - COGS: 3252, - Profit: 27351.84, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `320`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 40000, - Discounts: 1655, - Sales: 38345, - COGS: 79440, - Profit: 41095, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2126`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 637800, - Discounts: 1284, - Sales: 636516, - COGS: 53500, - Profit: 583016, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3275`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1146250, - Discounts: 20139, - Sales: 1126111, - COGS: 748020, - Profit: 378091, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3582`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 447750, - Discounts: 6822.5, - Sales: 440927.5, - COGS: 327480, - Profit: 113447.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `783`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 274050, - Discounts: 1862, - Sales: 272188, - COGS: 69160, - Profit: 203028, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1202`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 420700, - Discounts: 13580, - Sales: 407120, - COGS: 504400, - Profit: 97280, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4056`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1216800, - Discounts: 1554, - Sales: 1215246, - COGS: 64750, - Profit: 1150496, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2144`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 643200, - Discounts: 6606, - Sales: 636594, - COGS: 275250, - Profit: 361344, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `3502`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 437750, - Discounts: 5690, - Sales: 432060, - COGS: 273120, - Profit: 158940, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1397`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 488950, - Discounts: 20762, - Sales: 468188, - COGS: 771160, - Profit: 302972, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `679`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 13580, - Discounts: 494.4, - Sales: 13085.6, - COGS: 12360, - Profit: 725.6, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2351`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 47020, - Discounts: 376.4, - Sales: 46643.6, - COGS: 9410, - Profit: 37233.6, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2043`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 612900, - Discounts: 11496, - Sales: 601404, - COGS: 479000, - Profit: 122404, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `3565`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 445625, - Discounts: 15913.13, - Sales: 429711.88, - COGS: 509220, - Profit: 79508.13, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1401`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 28020, - Discounts: 1548, - Sales: 26472, - COGS: 25800, - Profit: 672, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2077`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 623100, - Discounts: 6201, - Sales: 616899, - COGS: 172250, - Profit: 444649, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `3643`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 43716, - Discounts: 700.92, - Sales: 43015.08, - COGS: 5841, - Profit: 37174.08, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1105`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 13260, - Discounts: 326.88, - Sales: 12933.12, - COGS: 2724, - Profit: 10209.12, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2960`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 20720, - Discounts: 411.18, - Sales: 20308.82, - COGS: 9790, - Profit: 10518.82, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1201`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 14412, - Discounts: 684.36, - Sales: 13727.64, - COGS: 5703, - Profit: 8024.64, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `2321`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 16247, - Discounts: 114.24, - Sales: 16132.76, - COGS: 2720, - Profit: 13412.76, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3640`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1274000, - Discounts: 18868.5, - Sales: 1255131.5, - COGS: 467220, - Profit: 787911.5, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3972`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 496500, - Discounts: 4826.25, - Sales: 491673.75, - COGS: 154440, - Profit: 337233.75, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3878`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 484750, - Discounts: 6397.5, - Sales: 478352.5, - COGS: 204720, - Profit: 273632.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2278`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 683400, - Discounts: 21910.5, - Sales: 661489.5, - COGS: 608625, - Profit: 52864.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1075`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 134375, - Discounts: 6652.5, - Sales: 127722.5, - COGS: 212880, - Profit: 85157.5, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `4050`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 48600, - Discounts: 684.36, - Sales: 47915.64, - COGS: 5703, - Profit: 42212.64, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3035`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 910500, - Discounts: 6201, - Sales: 904299, - COGS: 172250, - Profit: 732049, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3636`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 454500, - Discounts: 5887.5, - Sales: 448612.5, - COGS: 188400, - Profit: 260212.5, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1379`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 16548, - Discounts: 493.02, - Sales: 16054.98, - COGS: 4108.5, - Profit: 11946.48, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4492`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 561500, - Discounts: 7533.75, - Sales: 553966.25, - COGS: 241080, - Profit: 312886.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `764`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 11460, - Discounts: 875.25, - Sales: 10584.75, - COGS: 19450, - Profit: 8865.25, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1744`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 218000, - Discounts: 4826.25, - Sales: 213173.75, - COGS: 154440, - Profit: 58733.75, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2341`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 292625, - Discounts: 6397.5, - Sales: 286227.5, - COGS: 204720, - Profit: 81507.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3835`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 479375, - Discounts: 7533.75, - Sales: 471841.25, - COGS: 241080, - Profit: 230761.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1161`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 348300, - Discounts: 25596, - Sales: 322704, - COGS: 711000, - Profit: 388296, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `876`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 10512, - Discounts: 689.76, - Sales: 9822.24, - COGS: 5748, - Profit: 4074.24, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1705`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 213125, - Discounts: 5887.5, - Sales: 207237.5, - COGS: 188400, - Profit: 18837.5, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1805`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 541500, - Discounts: 16866, - Sales: 524634, - COGS: 468500, - Profit: 56134, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `389`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 136150, - Discounts: 17241, - Sales: 118909, - COGS: 426920, - Profit: 308011, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2745`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 41175, - Discounts: 875.25, - Sales: 40299.75, - COGS: 19450, - Profit: 20849.75, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1459`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 29180, - Discounts: 498.6, - Sales: 28681.4, - COGS: 8310, - Profit: 20371.4, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3938`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 27566, - Discounts: 369.6, - Sales: 27196.4, - COGS: 8800, - Profit: 18396.4, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `4236`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 84720, - Discounts: 2310.3, - Sales: 82409.7, - COGS: 38505, - Profit: 43904.7, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3627`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 43524, - Discounts: 892.44, - Sales: 42631.56, - COGS: 7437, - Profit: 35194.56, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1756`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 26340, - Discounts: 1218.6, - Sales: 25121.4, - COGS: 20310, - Profit: 4811.4, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `307`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 4605, - Discounts: 1218.6, - Sales: 3386.4, - COGS: 20310, - Profit: 16923.6, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `4489`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 67335, - Discounts: 1356.6, - Sales: 65978.4, - COGS: 22610, - Profit: 43368.4, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2167`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 43340, - Discounts: 588.8, - Sales: 42751.2, - COGS: 7360, - Profit: 35391.2, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1137`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 7959, - Discounts: 798.28, - Sales: 7160.72, - COGS: 14255, - Profit: 7094.28, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1222`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 366600, - Discounts: 24252, - Sales: 342348, - COGS: 505250, - Profit: 162902, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `489`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 171150, - Discounts: 3836, - Sales: 167314, - COGS: 71240, - Profit: 96074, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4133`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 61995, - Discounts: 1180.2, - Sales: 60814.8, - COGS: 19670, - Profit: 41144.8, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2743`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 822900, - Discounts: 22308, - Sales: 800592, - COGS: 464750, - Profit: 335842, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `3699`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 25893, - Discounts: 798.28, - Sales: 25094.72, - COGS: 14255, - Profit: 10839.72, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `4460`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1338000, - Discounts: 24252, - Sales: 1313748, - COGS: 505250, - Profit: 808498, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1232`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 154000, - Discounts: 5690, - Sales: 148310, - COGS: 136560, - Profit: 11750, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2586`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 18102, - Discounts: 1190.28, - Sales: 16911.72, - COGS: 21255, - Profit: 4343.28, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1332`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 166500, - Discounts: 3975, - Sales: 162525, - COGS: 95400, - Profit: 67125, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4487`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1346100, - Discounts: 16974, - Sales: 1329126, - COGS: 353625, - Profit: 975501, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3862`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1158600, - Discounts: 35016, - Sales: 1123584, - COGS: 729500, - Profit: 394084, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1765`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 617750, - Discounts: 48300, - Sales: 569450, - COGS: 897000, - Profit: 327550, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3533`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 441625, - Discounts: 14940, - Sales: 426685, - COGS: 358560, - Profit: 68125, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2016`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 30240, - Discounts: 130.8, - Sales: 30109.2, - COGS: 2180, - Profit: 27929.2, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2938`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 58760, - Discounts: 1659.2, - Sales: 57100.8, - COGS: 20740, - Profit: 36360.8, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3352`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 67040, - Discounts: 844.8, - Sales: 66195.2, - COGS: 10560, - Profit: 55635.2, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4409`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 66135, - Discounts: 402.6, - Sales: 65732.4, - COGS: 6710, - Profit: 59022.4, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3323`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 49845, - Discounts: 908.4, - Sales: 48936.6, - COGS: 15140, - Profit: 33796.6, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2430`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 850500, - Discounts: 3836, - Sales: 846664, - COGS: 71240, - Profit: 775424, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `535`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 66875, - Discounts: 5690, - Sales: 61185, - COGS: 136560, - Profit: 75375, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1523`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 18276, - Discounts: 703.2, - Sales: 17572.8, - COGS: 4395, - Profit: 13177.8, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3631`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 72620, - Discounts: 2116.8, - Sales: 70503.2, - COGS: 26460, - Profit: 44043.2, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1782`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 623700, - Discounts: 30478, - Sales: 593222, - COGS: 566020, - Profit: 27202, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `347`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 4164, - Discounts: 415.68, - Sales: 3748.32, - COGS: 2598, - Profit: 1150.32, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `4147`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1451450, - Discounts: 4886, - Sales: 1446564, - COGS: 90740, - Profit: 1355824, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3509`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1228150, - Discounts: 30478, - Sales: 1197672, - COGS: 566020, - Profit: 631652, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `2774`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 41610, - Discounts: 908.4, - Sales: 40701.6, - COGS: 15140, - Profit: 25561.6, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2943`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1030050, - Discounts: 26110, - Sales: 1003940, - COGS: 484900, - Profit: 519040, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `4037`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 504625, - Discounts: 5370, - Sales: 499255, - COGS: 128880, - Profit: 370375, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4146`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1451100, - Discounts: 26698, - Sales: 1424402, - COGS: 495820, - Profit: 928582, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `4123`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 61845, - Discounts: 402.6, - Sales: 61442.4, - COGS: 6710, - Profit: 54732.4, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1337`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 467950, - Discounts: 24892, - Sales: 443058, - COGS: 462280, - Profit: 19222, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `599`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 4193, - Discounts: 405.65, - Sales: 3787.35, - COGS: 5795, - Profit: 2007.65, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `725`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 5075, - Discounts: 480.2, - Sales: 4594.8, - COGS: 6860, - Profit: 2265.2, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `477`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 3339, - Discounts: 822.15, - Sales: 2516.85, - COGS: 11745, - Profit: 9228.15, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2325`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 16275, - Discounts: 941.15, - Sales: 15333.85, - COGS: 13445, - Profit: 1888.85, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `675`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 8100, - Discounts: 1458.6, - Sales: 6641.4, - COGS: 7293, - Profit: 651.6, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2990`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 35880, - Discounts: 1458.6, - Sales: 34421.4, - COGS: 7293, - Profit: 27128.4, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1072`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 7504, - Discounts: 941.15, - Sales: 6562.85, - COGS: 13445, - Profit: 6882.15, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1048`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 7336, - Discounts: 589.05, - Sales: 6746.95, - COGS: 8415, - Profit: 1668.05, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `469`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 5628, - Discounts: 673.8, - Sales: 4954.2, - COGS: 3369, - Profit: 1585.2, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `804`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 5628, - Discounts: 405.65, - Sales: 5222.35, - COGS: 5795, - Profit: 572.65, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `4240`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 50880, - Discounts: 1119, - Sales: 49761, - COGS: 5595, - Profit: 44166, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1976`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 23712, - Discounts: 669.6, - Sales: 23042.4, - COGS: 3348, - Profit: 19694.4, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1984`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 39680, - Discounts: 1563, - Sales: 38117, - COGS: 15630, - Profit: 22487, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `480`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 144000, - Discounts: 14865, - Sales: 129135, - COGS: 247750, - Profit: 118615, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `3551`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 24857, - Discounts: 355.6, - Sales: 24501.4, - COGS: 5080, - Profit: 19421.4, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1205`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 18075, - Discounts: 2093.25, - Sales: 15981.75, - COGS: 27910, - Profit: 11928.25, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2480`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 17360, - Discounts: 199.5, - Sales: 17160.5, - COGS: 2850, - Profit: 14310.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `2926`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 20482, - Discounts: 870.45, - Sales: 19611.55, - COGS: 12435, - Profit: 7176.55, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3210`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1123500, - Discounts: 24228.75, - Sales: 1099271.25, - COGS: 359970, - Profit: 739301.25, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `3221`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 402625, - Discounts: 22668.75, - Sales: 379956.25, - COGS: 435240, - Profit: 55283.75, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2389`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 836150, - Discounts: 12600, - Sales: 823550, - COGS: 187200, - Profit: 636350, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `1127`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 13524, - Discounts: 1405.2, - Sales: 12118.8, - COGS: 7026, - Profit: 5092.8, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `319`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 95700, - Discounts: 16500, - Sales: 79200, - COGS: 275000, - Profit: 195800, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1610`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 32200, - Discounts: 1303, - Sales: 30897, - COGS: 13030, - Profit: 17867, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4100`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 512500, - Discounts: 18700, - Sales: 493800, - COGS: 359040, - Profit: 134760, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1012`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 126500, - Discounts: 14906.25, - Sales: 111593.75, - COGS: 286200, - Profit: 174606.25, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3337`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1001100, - Discounts: 24105, - Sales: 976995, - COGS: 401750, - Profit: 575245, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3955`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 27685, - Discounts: 814.45, - Sales: 26870.55, - COGS: 11635, - Profit: 15235.55, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4347`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1304100, - Discounts: 14865, - Sales: 1289235, - COGS: 247750, - Profit: 1041485, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1548`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 541800, - Discounts: 10535, - Sales: 531265, - COGS: 156520, - Profit: 374745, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2153`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 32295, - Discounts: 1965, - Sales: 30330, - COGS: 26200, - Profit: 4130, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3789`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1326150, - Discounts: 21490, - Sales: 1304660, - COGS: 319280, - Profit: 985380, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4364`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 87280, - Discounts: 1389, - Sales: 85891, - COGS: 13890, - Profit: 72001, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4126`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 515750, - Discounts: 5381.25, - Sales: 510368.75, - COGS: 103320, - Profit: 407048.75, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1343`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 167875, - Discounts: 4400, - Sales: 163475, - COGS: 84480, - Profit: 78995, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `245`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 4900, - Discounts: 1802, - Sales: 3098, - COGS: 18020, - Profit: 14922, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3376`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 67520, - Discounts: 2663, - Sales: 64857, - COGS: 26630, - Profit: 38227, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1401`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 9807, - Discounts: 747.6, - Sales: 9059.4, - COGS: 10680, - Profit: 1620.6, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3483`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 52245, - Discounts: 1587, - Sales: 50658, - COGS: 21160, - Profit: 29498, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2244`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 33660, - Discounts: 416.25, - Sales: 33243.75, - COGS: 5550, - Profit: 27693.75, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `1360`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 20400, - Discounts: 2145.75, - Sales: 18254.25, - COGS: 28610, - Profit: 10355.75, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `279`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 34875, - Discounts: 5043.75, - Sales: 29831.25, - COGS: 96840, - Profit: 67008.75, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2521`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 882350, - Discounts: 10535, - Sales: 871815, - COGS: 156520, - Profit: 715295, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2433`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 48660, - Discounts: 2832, - Sales: 45828, - COGS: 28320, - Profit: 17508, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1738`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 34760, - Discounts: 1579, - Sales: 33181, - COGS: 15790, - Profit: 17391, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1106`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 138250, - Discounts: 5381.25, - Sales: 132868.75, - COGS: 103320, - Profit: 29548.75, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3379`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 422375, - Discounts: 4400, - Sales: 417975, - COGS: 84480, - Profit: 333495, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1221`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 24420, - Discounts: 1033, - Sales: 23387, - COGS: 10330, - Profit: 13057, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `213`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 63900, - Discounts: 18750, - Sales: 45150, - COGS: 312500, - Profit: 267350, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3335`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 66700, - Discounts: 1389, - Sales: 65311, - COGS: 13890, - Profit: 51421, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1260`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 25200, - Discounts: 1265, - Sales: 23935, - COGS: 12650, - Profit: 11285, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3034`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 60680, - Discounts: 2297, - Sales: 58383, - COGS: 22970, - Profit: 35413, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2929`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 58580, - Discounts: 2663, - Sales: 55917, - COGS: 26630, - Profit: 29287, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2389`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 16723, - Discounts: 199.5, - Sales: 16523.5, - COGS: 2850, - Profit: 13673.5, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3086`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 21602, - Discounts: 870.45, - Sales: 20731.55, - COGS: 12435, - Profit: 8296.55, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `745`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 260750, - Discounts: 23625, - Sales: 237125, - COGS: 351000, - Profit: 113875, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1266`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 443100, - Discounts: 9660, - Sales: 433440, - COGS: 143520, - Profit: 289920, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `3790`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1326500, - Discounts: 21490, - Sales: 1305010, - COGS: 319280, - Profit: 985730, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `4287`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1286100, - Discounts: 18750, - Sales: 1267350, - COGS: 312500, - Profit: 954850, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3193`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 47895, - Discounts: 3420.9, - Sales: 44474.1, - COGS: 38010, - Profit: 6464.1, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1967`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 39340, - Discounts: 1341, - Sales: 37999, - COGS: 11175, - Profit: 26824, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `631`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 9465, - Discounts: 2559.6, - Sales: 6905.4, - COGS: 28440, - Profit: 21534.6, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3469`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 41628, - Discounts: 404.64, - Sales: 41223.36, - COGS: 1686, - Profit: 39537.36, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `570`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 6840, - Discounts: 1655.28, - Sales: 5184.72, - COGS: 6897, - Profit: 1712.28, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `3215`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 48225, - Discounts: 1827, - Sales: 46398, - COGS: 20300, - Profit: 26098, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `3754`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 26278, - Discounts: 110.46, - Sales: 26167.54, - COGS: 1315, - Profit: 24852.54, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2187`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 273375, - Discounts: 6652.5, - Sales: 266722.5, - COGS: 106440, - Profit: 160282.5, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1959`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 685650, - Discounts: 20580, - Sales: 665070, - COGS: 254800, - Profit: 410270, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2181`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 763350, - Discounts: 30660, - Sales: 732690, - COGS: 379600, - Profit: 353090, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3559`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 24913, - Discounts: 589.26, - Sales: 24323.74, - COGS: 7015, - Profit: 17308.74, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2205`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 26460, - Discounts: 1960.56, - Sales: 24499.44, - COGS: 8169, - Profit: 16330.44, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1890`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 661500, - Discounts: 31416, - Sales: 630084, - COGS: 388960, - Profit: 241124, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1296`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 15552, - Discounts: 1655.28, - Sales: 13896.72, - COGS: 6897, - Profit: 6999.72, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `775`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 271250, - Discounts: 15267, - Sales: 255983, - COGS: 189020, - Profit: 66963, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2417`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 302125, - Discounts: 7140, - Sales: 294985, - COGS: 114240, - Profit: 180745, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1158`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 144750, - Discounts: 20662.5, - Sales: 124087.5, - COGS: 330600, - Profit: 206512.5, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `803`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 12045, - Discounts: 1377, - Sales: 10668, - COGS: 15300, - Profit: 4632, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3705`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1296750, - Discounts: 31416, - Sales: 1265334, - COGS: 388960, - Profit: 876374, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `589`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 4123, - Discounts: 629.16, - Sales: 3493.84, - COGS: 7490, - Profit: 3996.16, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3797`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1139100, - Discounts: 21978, - Sales: 1117122, - COGS: 305250, - Profit: 811872, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1321`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 462350, - Discounts: 43596, - Sales: 418754, - COGS: 539760, - Profit: 121006, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3999`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 59985, - Discounts: 2559.6, - Sales: 57425.4, - COGS: 28440, - Profit: 28985.4, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `4256`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 29792, - Discounts: 629.16, - Sales: 29162.84, - COGS: 7490, - Profit: 21672.84, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1643`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 492900, - Discounts: 21978, - Sales: 470922, - COGS: 305250, - Profit: 165672, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1912`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 38240, - Discounts: 1347.6, - Sales: 36892.4, - COGS: 11230, - Profit: 25662.4, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1610`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 483000, - Discounts: 43848, - Sales: 439152, - COGS: 609000, - Profit: 169848, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2160`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 270000, - Discounts: 14906.25, - Sales: 255093.75, - COGS: 238500, - Profit: 16593.75, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `466`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 163100, - Discounts: 35259, - Sales: 127841, - COGS: 436540, - Profit: 308699, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `328`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 114800, - Discounts: 15267, - Sales: 99533, - COGS: 189020, - Profit: 89487, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `4099`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 28693, - Discounts: 589.26, - Sales: 28103.74, - COGS: 7015, - Profit: 21088.74, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `990`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 346500, - Discounts: 43596, - Sales: 302904, - COGS: 539760, - Profit: 236856, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1433`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 28660, - Discounts: 2108.4, - Sales: 26551.6, - COGS: 17570, - Profit: 8981.6, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1478`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 22170, - Discounts: 1978.2, - Sales: 20191.8, - COGS: 21980, - Profit: 1788.2, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3798`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 56970, - Discounts: 1568.7, - Sales: 55401.3, - COGS: 17430, - Profit: 37971.3, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `447`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 6705, - Discounts: 1037.7, - Sales: 5667.3, - COGS: 11530, - Profit: 5862.7, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1711`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34220, - Discounts: 2108.4, - Sales: 32111.6, - COGS: 17570, - Profit: 14541.6, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `745`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 14900, - Discounts: 1201.2, - Sales: 13698.8, - COGS: 10010, - Profit: 3688.8, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `1732`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 12124, - Discounts: 559.86, - Sales: 11564.14, - COGS: 6665, - Profit: 4899.14, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1759`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 26385, - Discounts: 1037.7, - Sales: 25347.3, - COGS: 11530, - Profit: 13817.3, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `338`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 4056, - Discounts: 610.68, - Sales: 3445.32, - COGS: 2181, - Profit: 1264.32, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `3911`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 46932, - Discounts: 1582.56, - Sales: 45349.44, - COGS: 5652, - Profit: 39697.44, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3691`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 73820, - Discounts: 2567.6, - Sales: 71252.4, - COGS: 18340, - Profit: 52912.4, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `4473`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 53676, - Discounts: 1965.6, - Sales: 51710.4, - COGS: 7020, - Profit: 44690.4, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `383`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 4596, - Discounts: 1967.28, - Sales: 2628.72, - COGS: 7026, - Profit: 4397.28, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3105`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 21735, - Discounts: 505.19, - Sales: 21229.81, - COGS: 5155, - Profit: 16074.81, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1062`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 15930, - Discounts: 1325.1, - Sales: 14604.9, - COGS: 12620, - Profit: 1984.9, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `4083`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 28581, - Discounts: 556.15, - Sales: 28024.85, - COGS: 5675, - Profit: 22349.85, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3974`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 27818, - Discounts: 268.03, - Sales: 27549.97, - COGS: 2735, - Profit: 24814.97, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3723`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 26061, - Discounts: 775.18, - Sales: 25285.82, - COGS: 7910, - Profit: 17375.82, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2435`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 29220, - Discounts: 1460.34, - Sales: 27759.66, - COGS: 5215.5, - Profit: 22544.16, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `1678`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 20136, - Discounts: 1860.6, - Sales: 18275.4, - COGS: 6645, - Profit: 11630.4, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1763`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 12341, - Discounts: 775.18, - Sales: 11565.82, - COGS: 7910, - Profit: 3655.82, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `4473`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 31311, - Discounts: 556.15, - Sales: 30754.85, - COGS: 5675, - Profit: 25079.85, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1246`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 436100, - Discounts: 43144.5, - Sales: 392955.5, - COGS: 457860, - Profit: 64904.5, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1615`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 484500, - Discounts: 9408, - Sales: 475092, - COGS: 112000, - Profit: 363092, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `749`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 224700, - Discounts: 45801, - Sales: 178899, - COGS: 545250, - Profit: 366351, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1318`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 26360, - Discounts: 2766.4, - Sales: 23593.6, - COGS: 19760, - Profit: 3833.6, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `2882`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 864600, - Discounts: 45801, - Sales: 818799, - COGS: 545250, - Profit: 273549, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3039`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 379875, - Discounts: 21875, - Sales: 358000, - COGS: 300000, - Profit: 58000, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2484`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 745200, - Discounts: 35742, - Sales: 709458, - COGS: 425500, - Profit: 283958, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3169`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 950700, - Discounts: 9408, - Sales: 941292, - COGS: 112000, - Profit: 829292, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4080`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 510000, - Discounts: 30738.75, - Sales: 479261.25, - COGS: 421560, - Profit: 57701.25, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3943`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 59145, - Discounts: 2206.05, - Sales: 56938.95, - COGS: 21010, - Profit: 35928.95, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `784`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 11760, - Discounts: 3077.55, - Sales: 8682.45, - COGS: 29310, - Profit: 20627.55, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `253`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 5060, - Discounts: 2149, - Sales: 2911, - COGS: 15350, - Profit: 12439, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1316`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 394800, - Discounts: 23583, - Sales: 371217, - COGS: 280750, - Profit: 90467, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `808`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 242400, - Discounts: 29484, - Sales: 212916, - COGS: 351000, - Profit: 138084, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3295`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 39540, - Discounts: 2320.92, - Sales: 37219.08, - COGS: 8289, - Profit: 28930.08, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `520`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 3640, - Discounts: 1041.25, - Sales: 2598.75, - COGS: 10625, - Profit: 8026.25, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `799`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 239700, - Discounts: 34839, - Sales: 204861, - COGS: 414750, - Profit: 209889, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3942`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 78840, - Discounts: 852.6, - Sales: 77987.4, - COGS: 6090, - Profit: 71897.4, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2498`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 312250, - Discounts: 18261.25, - Sales: 293988.75, - COGS: 250440, - Profit: 43548.75, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `2517`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 50340, - Discounts: 2766.4, - Sales: 47573.6, - COGS: 19760, - Profit: 27813.6, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3182`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 63640, - Discounts: 1989.4, - Sales: 61650.6, - COGS: 14210, - Profit: 47440.6, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1145`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 343500, - Discounts: 28812, - Sales: 314688, - COGS: 343000, - Profit: 28312, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `895`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 17900, - Discounts: 823.2, - Sales: 17076.8, - COGS: 5880, - Profit: 11196.8, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3814`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 45768, - Discounts: 2725.38, - Sales: 43042.62, - COGS: 9733.5, - Profit: 33309.12, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1188`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 356400, - Discounts: 20139, - Sales: 336261, - COGS: 239750, - Profit: 96511, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `2233`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 669900, - Discounts: 57687, - Sales: 612213, - COGS: 686750, - Profit: 74537, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `421`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 52625, - Discounts: 14393.75, - Sales: 38231.25, - COGS: 197400, - Profit: 159168.75, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `269`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 94150, - Discounts: 70462, - Sales: 23688, - COGS: 747760, - Profit: 724072, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `3766`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 470750, - Discounts: 8697.5, - Sales: 462052.5, - COGS: 119280, - Profit: 342772.5, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `952`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 19040, - Discounts: 1565.2, - Sales: 17474.8, - COGS: 11180, - Profit: 6294.8, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2964`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 889200, - Discounts: 28812, - Sales: 860388, - COGS: 343000, - Profit: 517388, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1505`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 10535, - Discounts: 273.28, - Sales: 10261.72, - COGS: 2440, - Profit: 7821.72, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1678`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 33560, - Discounts: 2051.2, - Sales: 31508.8, - COGS: 12820, - Profit: 18688.8, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4249`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 29743, - Discounts: 143.92, - Sales: 29599.08, - COGS: 1285, - Profit: 28314.08, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1677`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 33540, - Discounts: 2051.2, - Sales: 31488.8, - COGS: 12820, - Profit: 18668.8, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3051`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 381375, - Discounts: 15400, - Sales: 365975, - COGS: 184800, - Profit: 181175, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `3372`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 50580, - Discounts: 588, - Sales: 49992, - COGS: 4900, - Profit: 45092, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1686`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 590100, - Discounts: 38136, - Sales: 551964, - COGS: 354120, - Profit: 197844, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3086`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 46290, - Discounts: 3001.2, - Sales: 43288.8, - COGS: 25010, - Profit: 18278.8, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `4150`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 83000, - Discounts: 1132.8, - Sales: 81867.2, - COGS: 7080, - Profit: 74787.2, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3027`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 60540, - Discounts: 1032, - Sales: 59508, - COGS: 6450, - Profit: 53058, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `4359`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1307700, - Discounts: 37488, - Sales: 1270212, - COGS: 390500, - Profit: 879712, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `3628`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1088400, - Discounts: 30792, - Sales: 1057608, - COGS: 320750, - Profit: 736858, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `1589`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 23835, - Discounts: 853.2, - Sales: 22981.8, - COGS: 7110, - Profit: 15871.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2679`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 334875, - Discounts: 11140, - Sales: 323735, - COGS: 133680, - Profit: 190055, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3401`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 23807, - Discounts: 705.04, - Sales: 23101.96, - COGS: 6295, - Profit: 16806.96, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2815`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 19705, - Discounts: 613.2, - Sales: 19091.8, - COGS: 5475, - Profit: 13616.8, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2964`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 59280, - Discounts: 2185.6, - Sales: 57094.4, - COGS: 13660, - Profit: 43434.4, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `4173`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1251900, - Discounts: 59040, - Sales: 1192860, - COGS: 615000, - Profit: 577860, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1157`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 8099, - Discounts: 379.68, - Sales: 7719.32, - COGS: 3390, - Profit: 4329.32, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3065`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 21455, - Discounts: 894.88, - Sales: 20560.12, - COGS: 7990, - Profit: 12570.12, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1962`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 13734, - Discounts: 1349.04, - Sales: 12384.96, - COGS: 12045, - Profit: 339.96, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4080`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 81600, - Discounts: 3094.4, - Sales: 78505.6, - COGS: 19340, - Profit: 59165.6, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1713`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34260, - Discounts: 4788.8, - Sales: 29471.2, - COGS: 29930, - Profit: 458.8, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2795`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 978250, - Discounts: 60088, - Sales: 918162, - COGS: 557960, - Profit: 360202, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `4082`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 28574, - Discounts: 1089.76, - Sales: 27484.24, - COGS: 9730, - Profit: 17754.24, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1691`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 591850, - Discounts: 38136, - Sales: 553714, - COGS: 354120, - Profit: 199594, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2305`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 27660, - Discounts: 574.08, - Sales: 27085.92, - COGS: 1794, - Profit: 25291.92, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3401`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 23807, - Discounts: 1627.92, - Sales: 22179.08, - COGS: 14535, - Profit: 7644.08, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2288`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 16016, - Discounts: 1309.28, - Sales: 14706.72, - COGS: 11690, - Profit: 3016.72, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `2399`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 719700, - Discounts: 9264, - Sales: 710436, - COGS: 96500, - Profit: 613936, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `4086`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1225800, - Discounts: 15240, - Sales: 1210560, - COGS: 158750, - Profit: 1051810, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2651`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 927850, - Discounts: 16086, - Sales: 911764, - COGS: 149370, - Profit: 762394, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3971`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 27797, - Discounts: 1309.28, - Sales: 26487.72, - COGS: 11690, - Profit: 14797.72, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2512`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 879200, - Discounts: 10668, - Sales: 868532, - COGS: 99060, - Profit: 769472, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2745`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 960750, - Discounts: 11816, - Sales: 948934, - COGS: 109720, - Profit: 839214, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1903`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 570900, - Discounts: 51216, - Sales: 519684, - COGS: 533500, - Profit: 13816, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `647`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 194100, - Discounts: 19392, - Sales: 174708, - COGS: 202000, - Profit: 27292, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2914`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 58280, - Discounts: 1132.8, - Sales: 57147.2, - COGS: 7080, - Profit: 50067.2, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1889`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 13223, - Discounts: 1627.92, - Sales: 11595.08, - COGS: 14535, - Profit: 2939.92, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1466`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 29320, - Discounts: 2185.6, - Sales: 27134.4, - COGS: 13660, - Profit: 13474.4, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `887`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 266100, - Discounts: 59040, - Sales: 207060, - COGS: 615000, - Profit: 407940, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `395`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 7900, - Discounts: 2432, - Sales: 5468, - COGS: 15200, - Profit: 9732, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1693`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 25395, - Discounts: 853.2, - Sales: 24541.8, - COGS: 7110, - Profit: 17431.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2459`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 29508, - Discounts: 1320, - Sales: 28188, - COGS: 4125, - Profit: 24063, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2649`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 794700, - Discounts: 15240, - Sales: 779460, - COGS: 158750, - Profit: 620710, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `3608`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 72160, - Discounts: 698.4, - Sales: 71461.6, - COGS: 4365, - Profit: 67096.6, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1073`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 321900, - Discounts: 29538, - Sales: 292362, - COGS: 273500, - Profit: 18862, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1754`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 21048, - Discounts: 396.36, - Sales: 20651.64, - COGS: 1101, - Profit: 19550.64, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `2167`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 650100, - Discounts: 102667.5, - Sales: 547432.5, - COGS: 950625, - Profit: 403192.5, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1319`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 461650, - Discounts: 52479, - Sales: 409171, - COGS: 433160, - Profit: 23989, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1679`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 503700, - Discounts: 8694, - Sales: 495006, - COGS: 80500, - Profit: 414506, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1252`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 15024, - Discounts: 2506.68, - Sales: 12517.32, - COGS: 6963, - Profit: 5554.32, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3493`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 436625, - Discounts: 20891.25, - Sales: 415733.75, - COGS: 222840, - Profit: 192893.75, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1697`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 11879, - Discounts: 1014.93, - Sales: 10864.07, - COGS: 8055, - Profit: 2809.07, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1156`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 144500, - Discounts: 31466.25, - Sales: 113033.75, - COGS: 335640, - Profit: 222606.25, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `726`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 217800, - Discounts: 9018, - Sales: 208782, - COGS: 83500, - Profit: 125282, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1153`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 345900, - Discounts: 69255, - Sales: 276645, - COGS: 641250, - Profit: 364605, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2720`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 952000, - Discounts: 76135.5, - Sales: 875864.5, - COGS: 628420, - Profit: 247444.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3658`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 54870, - Discounts: 4961.25, - Sales: 49908.75, - COGS: 36750, - Profit: 13158.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2950`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 885000, - Discounts: 29538, - Sales: 855462, - COGS: 273500, - Profit: 581962, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1821`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 27315, - Discounts: 1656.45, - Sales: 25658.55, - COGS: 12270, - Profit: 13388.55, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `4174`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 50088, - Discounts: 396.36, - Sales: 49691.64, - COGS: 1101, - Profit: 48590.64, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1127`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 338100, - Discounts: 35748, - Sales: 302352, - COGS: 331000, - Profit: 28648, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2209`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 26508, - Discounts: 1917, - Sales: 24591, - COGS: 5325, - Profit: 19266, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `862`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 107750, - Discounts: 31466.25, - Sales: 76283.75, - COGS: 335640, - Profit: 259356.25, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3805`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 57075, - Discounts: 330.75, - Sales: 56744.25, - COGS: 2450, - Profit: 54294.25, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1415`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 424500, - Discounts: 102424.5, - Sales: 322075.5, - COGS: 948375, - Profit: 626299.5, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2231`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 780850, - Discounts: 41170.5, - Sales: 739679.5, - COGS: 339820, - Profit: 399859.5, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3649`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 456125, - Discounts: 6378.75, - Sales: 449746.25, - COGS: 68040, - Profit: 381706.25, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2948`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 368500, - Discounts: 23737.5, - Sales: 344762.5, - COGS: 253200, - Profit: 91562.5, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `3395`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1188250, - Discounts: 39973.5, - Sales: 1148276.5, - COGS: 329940, - Profit: 818336.5, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2650`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 31800, - Discounts: 2112.48, - Sales: 29687.52, - COGS: 5868, - Profit: 23819.52, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `585`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 175500, - Discounts: 71793, - Sales: 103707, - COGS: 664750, - Profit: 561043, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1316`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 460600, - Discounts: 42572.25, - Sales: 418027.75, - COGS: 351390, - Profit: 66637.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `4459`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 53508, - Discounts: 950.4, - Sales: 52557.6, - COGS: 2640, - Profit: 49917.6, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2711`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 813300, - Discounts: 50409, - Sales: 762891, - COGS: 466750, - Profit: 296141, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2621`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 31452, - Discounts: 2412.72, - Sales: 29039.28, - COGS: 6702, - Profit: 22337.28, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3613`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 54195, - Discounts: 1656.45, - Sales: 52538.55, - COGS: 12270, - Profit: 40268.55, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1847`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 230875, - Discounts: 9866.25, - Sales: 221008.75, - COGS: 105240, - Profit: 115768.75, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2996`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1048600, - Discounts: 65236.5, - Sales: 983363.5, - COGS: 538460, - Profit: 444903.5, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2838`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 993300, - Discounts: 39973.5, - Sales: 953326.5, - COGS: 329940, - Profit: 623386.5, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `1302`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 19530, - Discounts: 1309.5, - Sales: 18220.5, - COGS: 9700, - Profit: 8520.5, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1536`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 30720, - Discounts: 3049.2, - Sales: 27670.8, - COGS: 16940, - Profit: 10730.8, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1291`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 25820, - Discounts: 1193.4, - Sales: 24626.6, - COGS: 6630, - Profit: 17996.6, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1213`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 8491, - Discounts: 515.97, - Sales: 7975.03, - COGS: 4095, - Profit: 3880.03, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2370`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 28440, - Discounts: 1706.4, - Sales: 26733.6, - COGS: 4740, - Profit: 21993.6, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1979`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 13853, - Discounts: 328.23, - Sales: 13524.77, - COGS: 2605, - Profit: 10919.77, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2879`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 57580, - Discounts: 1751.4, - Sales: 55828.6, - COGS: 9730, - Profit: 46098.6, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1707`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34140, - Discounts: 1868.4, - Sales: 32271.6, - COGS: 10380, - Profit: 21891.6, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2933`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 20531, - Discounts: 226.8, - Sales: 20304.2, - COGS: 1800, - Profit: 18504.2, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1014`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 12168, - Discounts: 2124.36, - Sales: 10043.64, - COGS: 5901, - Profit: 4142.64, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `693`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 10395, - Discounts: 3547.8, - Sales: 6847.2, - COGS: 26280, - Profit: 19432.8, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3741`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 26187, - Discounts: 226.8, - Sales: 25960.2, - COGS: 1800, - Profit: 24160.2, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3116`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 62320, - Discounts: 4827.6, - Sales: 57492.4, - COGS: 26820, - Profit: 30672.4, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `3995`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 27965, - Discounts: 328.23, - Sales: 27636.77, - COGS: 2605, - Profit: 25031.77, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `953`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 19060, - Discounts: 1868.4, - Sales: 17191.6, - COGS: 10380, - Profit: 6811.6, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `2530`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 37950, - Discounts: 2201.18, - Sales: 35748.82, - COGS: 16305, - Profit: 19443.82, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2565`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 30780, - Discounts: 330.48, - Sales: 30449.52, - COGS: 918, - Profit: 29531.52, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `4297`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 51564, - Discounts: 463.2, - Sales: 51100.8, - COGS: 1158, - Profit: 49942.8, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2871`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 20097, - Discounts: 1629.6, - Sales: 18467.4, - COGS: 11640, - Profit: 6827.4, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3537`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 42444, - Discounts: 463.2, - Sales: 41980.8, - COGS: 1158, - Profit: 40822.8, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1598`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 199750, - Discounts: 43068.75, - Sales: 156681.25, - COGS: 413460, - Profit: 256778.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `2616`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 327000, - Discounts: 18525, - Sales: 308475, - COGS: 177840, - Profit: 130635, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2836`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 992600, - Discounts: 80955, - Sales: 911645, - COGS: 601380, - Profit: 310265, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `4023`, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 502875, - Discounts: 22550, - Sales: 480325, - COGS: 216480, - Profit: 263845, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3994`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 59910, - Discounts: 3108, - Sales: 56802, - COGS: 20720, - Profit: 36082, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2928`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 58560, - Discounts: 3908, - Sales: 54652, - COGS: 19540, - Profit: 35112, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2912`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 873600, - Discounts: 17730, - Sales: 855870, - COGS: 147750, - Profit: 708120, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3671`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 55065, - Discounts: 3250.5, - Sales: 51814.5, - COGS: 21670, - Profit: 30144.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2778`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 55560, - Discounts: 482, - Sales: 55078, - COGS: 2410, - Profit: 52668, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `405`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 6075, - Discounts: 1021.5, - Sales: 5053.5, - COGS: 6810, - Profit: 1756.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `2013`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 30195, - Discounts: 765, - Sales: 29430, - COGS: 5100, - Profit: 24330, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2634`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 39510, - Discounts: 1185, - Sales: 38325, - COGS: 7900, - Profit: 30425, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `4166`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1458100, - Discounts: 22365, - Sales: 1435735, - COGS: 166140, - Profit: 1269595, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `355`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 44375, - Discounts: 19950, - Sales: 24425, - COGS: 191520, - Profit: 167095, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2382`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 714600, - Discounts: 68820, - Sales: 645780, - COGS: 573500, - Profit: 72280, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `4170`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 83400, - Discounts: 482, - Sales: 82918, - COGS: 2410, - Profit: 80508, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `892`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 6244, - Discounts: 1865.5, - Sales: 4378.5, - COGS: 13325, - Profit: 8946.5, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2200`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 275000, - Discounts: 23950, - Sales: 251050, - COGS: 229920, - Profit: 21130, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3389`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1016700, - Discounts: 25590, - Sales: 991110, - COGS: 213250, - Profit: 777860, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `2990`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 373750, - Discounts: 4262.5, - Sales: 369487.5, - COGS: 40920, - Profit: 328567.5, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `4013`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 60195, - Discounts: 961.5, - Sales: 59233.5, - COGS: 6410, - Profit: 52823.5, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `739`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 258650, - Discounts: 98245, - Sales: 160405, - COGS: 729820, - Profit: 569415, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `1989`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 596700, - Discounts: 12960, - Sales: 583740, - COGS: 108000, - Profit: 475740, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2991`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 897300, - Discounts: 68820, - Sales: 828480, - COGS: 573500, - Profit: 254980, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `4237`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 63555, - Discounts: 3250.5, - Sales: 60304.5, - COGS: 21670, - Profit: 38634.5, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1442`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 180250, - Discounts: 31612.5, - Sales: 148637.5, - COGS: 303480, - Profit: 154842.5, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2712`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 949200, - Discounts: 65450, - Sales: 883750, - COGS: 486200, - Profit: 397550, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1508`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 188500, - Discounts: 7237.5, - Sales: 181262.5, - COGS: 69480, - Profit: 111782.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `4245`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1485750, - Discounts: 78400, - Sales: 1407350, - COGS: 582400, - Profit: 824950, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2630`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 789000, - Discounts: 89790, - Sales: 699210, - COGS: 748250, - Profit: 49040, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1182`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 14184, - Discounts: 4224.6, - Sales: 9959.4, - COGS: 10561.5, - Profit: 602.1, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1221`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 24420, - Discounts: 4078, - Sales: 20342, - COGS: 20390, - Profit: 48, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `963`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 11556, - Discounts: 3088.8, - Sales: 8467.2, - COGS: 7722, - Profit: 745.2, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `3243`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1135050, - Discounts: 24745, - Sales: 1110305, - COGS: 183820, - Profit: 926485, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1120`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 16800, - Discounts: 3108, - Sales: 13692, - COGS: 20720, - Profit: 7028, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1174`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 352200, - Discounts: 25590, - Sales: 326610, - COGS: 213250, - Profit: 113360, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `2541`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 30492, - Discounts: 1581.36, - Sales: 28910.64, - COGS: 3594, - Profit: 25316.64, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3246`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 22722, - Discounts: 1949.64, - Sales: 20772.36, - COGS: 12660, - Profit: 8112.36, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1531`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 18372, - Discounts: 1581.36, - Sales: 16790.64, - COGS: 3594, - Profit: 13196.64, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2526`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 37890, - Discounts: 633.6, - Sales: 37256.4, - COGS: 3840, - Profit: 33416.4, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `1136`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 13632, - Discounts: 623.04, - Sales: 13008.96, - COGS: 1416, - Profit: 11592.96, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1983`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 13881, - Discounts: 1215.83, - Sales: 12665.17, - COGS: 7895, - Profit: 4770.17, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `3259`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 39108, - Discounts: 1326.6, - Sales: 37781.4, - COGS: 3015, - Profit: 34766.4, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `3267`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 49005, - Discounts: 5279.17, - Sales: 43725.82, - COGS: 31995, - Profit: 11730.82, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `2454`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 29448, - Discounts: 623.04, - Sales: 28824.96, - COGS: 1416, - Profit: 27408.96, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `2643`, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 31716, - Discounts: 2556.84, - Sales: 29159.16, - COGS: 5811, - Profit: 23348.16, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `383`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 134050, - Discounts: 30492, - Sales: 103558, - COGS: 205920, - Profit: 102362, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2801`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 840300, - Discounts: 92763, - Sales: 747537, - COGS: 702750, - Profit: 44787, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1667`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 208375, - Discounts: 33563.75, - Sales: 174811.25, - COGS: 292920, - Profit: 118108.75, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `3539`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 53085, - Discounts: 2574, - Sales: 50511, - COGS: 15600, - Profit: 34911, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `4226`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 29582, - Discounts: 2083.62, - Sales: 27498.38, - COGS: 13530, - Profit: 13968.38, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `2220`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 777000, - Discounts: 29491, - Sales: 747509, - COGS: 199160, - Profit: 548349, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `776`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 15520, - Discounts: 6582.4, - Sales: 8937.6, - COGS: 29920, - Profit: 20982.4, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `553`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 8295, - Discounts: 3559.05, - Sales: 4735.95, - COGS: 21570, - Profit: 16834.05, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2107`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 632100, - Discounts: 28809, - Sales: 603291, - COGS: 218250, - Profit: 385041, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2468`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 49360, - Discounts: 2468.4, - Sales: 46891.6, - COGS: 11220, - Profit: 35671.6, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1905`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 666750, - Discounts: 81023.25, - Sales: 585726.75, - COGS: 547170, - Profit: 38556.75, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3658`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 43896, - Discounts: 5314.32, - Sales: 38581.68, - COGS: 12078, - Profit: 26503.68, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `4301`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 51612, - Discounts: 3201.66, - Sales: 48410.34, - COGS: 7276.5, - Profit: 41133.84, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2446`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 48920, - Discounts: 5266.8, - Sales: 43653.2, - COGS: 23940, - Profit: 19713.2, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `4209`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 63135, - Discounts: 3273.6, - Sales: 59861.4, - COGS: 19840, - Profit: 40021.4, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3353`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 419125, - Discounts: 33563.75, - Sales: 385561.25, - COGS: 292920, - Profit: 92641.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1401`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 28020, - Discounts: 6582.4, - Sales: 21437.6, - COGS: 29920, - Profit: 8482.4, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1865`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 559500, - Discounts: 45078, - Sales: 514422, - COGS: 341500, - Profit: 172922, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `463`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 9260, - Discounts: 6171, - Sales: 3089, - COGS: 28050, - Profit: 24961, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `4177`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 62655, - Discounts: 1080.75, - Sales: 61574.25, - COGS: 6550, - Profit: 55024.25, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2523`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 883050, - Discounts: 13244, - Sales: 869806, - COGS: 89440, - Profit: 780366, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `1930`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 13510, - Discounts: 1392.16, - Sales: 12117.84, - COGS: 9040, - Profit: 3077.84, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1301`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 15612, - Discounts: 2288.88, - Sales: 13323.12, - COGS: 5202, - Profit: 8121.12, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `4125`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 515625, - Discounts: 7617.5, - Sales: 508007.5, - COGS: 66480, - Profit: 441527.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `607`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 12140, - Discounts: 6457, - Sales: 5683, - COGS: 29350, - Profit: 23667, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `478`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 59750, - Discounts: 43518.75, - Sales: 16231.25, - COGS: 379800, - Profit: 363568.75, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `4489`, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 89780, - Discounts: 5783.8, - Sales: 83996.2, - COGS: 26290, - Profit: 57706.2, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1504`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 188000, - Discounts: 19703.75, - Sales: 168296.25, - COGS: 171960, - Profit: 3663.75, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `3763`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 470375, - Discounts: 13021.25, - Sales: 457353.75, - COGS: 113640, - Profit: 343713.75, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2412`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 844200, - Discounts: 13244, - Sales: 830956, - COGS: 89440, - Profit: 741516, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `2342`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 35130, - Discounts: 3559.05, - Sales: 31570.95, - COGS: 21570, - Profit: 10000.95, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4451`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 31157, - Discounts: 292.6, - Sales: 30864.4, - COGS: 1900, - Profit: 28964.4, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3796`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1328600, - Discounts: 37212, - Sales: 1291388, - COGS: 230360, - Profit: 1061028, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `2286`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 285750, - Discounts: 36240, - Sales: 249510, - COGS: 289920, - Profit: 40410, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `3614`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 451750, - Discounts: 32340, - Sales: 419410, - COGS: 258720, - Profit: 160690, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1716`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 25740, - Discounts: 4840.2, - Sales: 20899.8, - COGS: 26890, - Profit: 5990.2, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1301`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 19515, - Discounts: 1218.6, - Sales: 18296.4, - COGS: 6770, - Profit: 11526.4, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `4175`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1252500, - Discounts: 63828, - Sales: 1188672, - COGS: 443250, - Profit: 745422, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `975`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 6825, - Discounts: 2032.8, - Sales: 4792.2, - COGS: 12100, - Profit: 7307.8, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `1154`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 8078, - Discounts: 2296.56, - Sales: 5781.44, - COGS: 13670, - Profit: 7888.56, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1873`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 37460, - Discounts: 4116, - Sales: 33344, - COGS: 17150, - Profit: 16194, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `3766`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1129800, - Discounts: 42696, - Sales: 1087104, - COGS: 296500, - Profit: 790604, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3558`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1067400, - Discounts: 125820, - Sales: 941580, - COGS: 873750, - Profit: 67830, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3156`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1104600, - Discounts: 37212, - Sales: 1067388, - COGS: 230360, - Profit: 837028, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2994`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 374250, - Discounts: 32340, - Sales: 341910, - COGS: 258720, - Profit: 83190, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2087`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 41740, - Discounts: 2172, - Sales: 39568, - COGS: 9050, - Profit: 30518, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1056`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 21120, - Discounts: 4116, - Sales: 17004, - COGS: 17150, - Profit: 146, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1353`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 473550, - Discounts: 66948, - Sales: 406602, - COGS: 414440, - Profit: 7838, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `416`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 124800, - Discounts: 48924, - Sales: 75876, - COGS: 339750, - Profit: 263874, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `3880`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1164000, - Discounts: 77400, - Sales: 1086600, - COGS: 537500, - Profit: 549100, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `809`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 283150, - Discounts: 50274, - Sales: 232876, - COGS: 311220, - Profit: 78344, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1892`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 28380, - Discounts: 684, - Sales: 27696, - COGS: 3800, - Profit: 23896, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2072`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 41440, - Discounts: 2959.2, - Sales: 38480.8, - COGS: 12330, - Profit: 26150.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3052`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1068200, - Discounts: 58590, - Sales: 1009610, - COGS: 362700, - Profit: 646910, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `3121`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1092350, - Discounts: 41412, - Sales: 1050938, - COGS: 256360, - Profit: 794578, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2059`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 41180, - Discounts: 2172, - Sales: 39008, - COGS: 9050, - Profit: 29958, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4254`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 51048, - Discounts: 3036.96, - Sales: 48011.04, - COGS: 6327, - Profit: 41684.04, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `1293`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 19395, - Discounts: 6974.1, - Sales: 12420.9, - COGS: 38745, - Profit: 26324.1, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1293`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 452550, - Discounts: 26166, - Sales: 426384, - COGS: 161980, - Profit: 264404, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `230`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 80500, - Discounts: 41412, - Sales: 39088, - COGS: 256360, - Profit: 217272, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1723`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 215375, - Discounts: 35805, - Sales: 179570, - COGS: 286440, - Profit: 106870, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `240`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 4800, - Discounts: 2959.2, - Sales: 1840.8, - COGS: 12330, - Profit: 10489.2, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `2571`, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 899850, - Discounts: 11340, - Sales: 888510, - COGS: 70200, - Profit: 818310, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1661`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 11627, - Discounts: 2874.06, - Sales: 8752.94, - COGS: 17107.5, - Profit: 8354.56, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `4474`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 31318, - Discounts: 2296.56, - Sales: 29021.44, - COGS: 13670, - Profit: 15351.44, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `833`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 12495, - Discounts: 4586.4, - Sales: 7908.6, - COGS: 25480, - Profit: 17571.4, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `674`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 13480, - Discounts: 6051.6, - Sales: 7428.4, - COGS: 25215, - Profit: 17786.6, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `778`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 9336, - Discounts: 3831.84, - Sales: 5504.16, - COGS: 7983, - Profit: 2478.84, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1457`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 29140, - Discounts: 3674.4, - Sales: 25465.6, - COGS: 15310, - Profit: 10155.6, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `3158`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 22106, - Discounts: 1252.44, - Sales: 20853.56, - COGS: 7455, - Profit: 13398.56, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `4095`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 81900, - Discounts: 3674.4, - Sales: 78225.6, - COGS: 15310, - Profit: 62915.6, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `3170`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 38040, - Discounts: 3975.84, - Sales: 34064.16, - COGS: 8283, - Profit: 25781.16, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `493`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 7395, - Discounts: 5005.65, - Sales: 2389.35, - COGS: 25670, - Profit: 23280.65, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `3286`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 49290, - Discounts: 5005.65, - Sales: 44284.35, - COGS: 25670, - Profit: 18614.35, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `3563`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1247050, - Discounts: 41996.5, - Sales: 1205053.5, - COGS: 239980, - Profit: 965073.5, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `4109`, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1438150, - Discounts: 81445, - Sales: 1356705, - COGS: 465400, - Profit: 891305, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `3653`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 73060, - Discounts: 1149.2, - Sales: 71910.8, - COGS: 4420, - Profit: 67490.8, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2203`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 771050, - Discounts: 44703.75, - Sales: 726346.25, - COGS: 255450, - Profit: 470896.25, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `2924`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 20468, - Discounts: 1181.18, - Sales: 19286.82, - COGS: 6490, - Profit: 12796.82, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2650`, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 31800, - Discounts: 942.24, - Sales: 30857.76, - COGS: 1812, - Profit: 29045.76, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `1194`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 23880, - Discounts: 5863, - Sales: 18017, - COGS: 22550, - Profit: 4533, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `3366`, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 67320, - Discounts: 3247.4, - Sales: 64072.6, - COGS: 12490, - Profit: 51582.6, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1325`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 9275, - Discounts: 1309.04, - Sales: 7965.97, - COGS: 7192.5, - Profit: 773.47, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `4243`, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1272900, - Discounts: 31473, - Sales: 1241427, - COGS: 201750, - Profit: 1039677, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2887`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 57740, - Discounts: 6866.6, - Sales: 50873.4, - COGS: 26410, - Profit: 24463.4, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3839`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 76780, - Discounts: 7040.8, - Sales: 69739.2, - COGS: 27080, - Profit: 42659.2, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1863`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 652050, - Discounts: 119756, - Sales: 532294, - COGS: 684320, - Profit: 152026, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2858`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 357250, - Discounts: 25723.75, - Sales: 331526.25, - COGS: 189960, - Profit: 141566.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2868`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 34416, - Discounts: 890.76, - Sales: 33525.24, - COGS: 1713, - Profit: 31812.24, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `3805`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 26635, - Discounts: 2453.36, - Sales: 24181.64, - COGS: 13480, - Profit: 10701.64, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3914`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 58710, - Discounts: 3051.75, - Sales: 55658.25, - COGS: 15650, - Profit: 40008.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `524`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 10480, - Discounts: 3247.4, - Sales: 7232.6, - COGS: 12490, - Profit: 5257.4, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `3095`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1083250, - Discounts: 16243.5, - Sales: 1067006.5, - COGS: 92820, - Profit: 974186.5, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2410`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 28920, - Discounts: 1580.28, - Sales: 27339.72, - COGS: 3039, - Profit: 24300.72, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `4263`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 63945, - Discounts: 7795.13, - Sales: 56149.88, - COGS: 39975, - Profit: 16174.88, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2239`, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 783650, - Discounts: 119756, - Sales: 663894, - COGS: 684320, - Profit: 20426, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `569`, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 3983, - Discounts: 1082.9, - Sales: 2900.1, - COGS: 5950, - Profit: 3049.9, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3889`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 46668, - Discounts: 942.24, - Sales: 45725.76, - COGS: 1812, - Profit: 43913.76, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `1378`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 20670, - Discounts: 1287, - Sales: 19383, - COGS: 6600, - Profit: 12783, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2253`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 27036, - Discounts: 639.6, - Sales: 26396.4, - COGS: 1230, - Profit: 25166.4, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `3202`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 960600, - Discounts: 101595, - Sales: 859005, - COGS: 651250, - Profit: 207755, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3835`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 46020, - Discounts: 1580.28, - Sales: 44439.72, - COGS: 3039, - Profit: 41400.72, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `2487`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 310875, - Discounts: 25723.75, - Sales: 285151.25, - COGS: 189960, - Profit: 95191.25, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4428`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 66420, - Discounts: 3051.75, - Sales: 63368.25, - COGS: 15650, - Profit: 47718.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1200`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 150000, - Discounts: 26958.75, - Sales: 123041.25, - COGS: 199080, - Profit: 76038.75, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2953`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 20671, - Discounts: 1082.9, - Sales: 19588.1, - COGS: 5950, - Profit: 13638.1, - Date: `6/1/19`, - MonthName: `June`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1453`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 17436, - Discounts: 639.6, - Sales: 16796.4, - COGS: 1230, - Profit: 15566.4, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: `865`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 10380, - Discounts: 2761.2, - Sales: 7618.8, - COGS: 5310, - Profit: 2308.8, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `1072`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 21440, - Discounts: 7221.2, - Sales: 14218.8, - COGS: 25790, - Profit: 11571.2, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1737`, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 34740, - Discounts: 4880.4, - Sales: 29859.6, - COGS: 17430, - Profit: 12429.6, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `1535`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 10745, - Discounts: 2936.08, - Sales: 7808.92, - COGS: 14980, - Profit: 7171.08, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2532`, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 17724, - Discounts: 274.4, - Sales: 17449.6, - COGS: 1400, - Profit: 16049.6, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: `1765`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 12355, - Discounts: 287.14, - Sales: 12067.86, - COGS: 1465, - Profit: 10602.86, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: `1567`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 10969, - Discounts: 2936.08, - Sales: 8032.92, - COGS: 14980, - Profit: 6947.08, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2640`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 39600, - Discounts: 583.8, - Sales: 39016.2, - COGS: 2780, - Profit: 36236.2, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3079`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 61580, - Discounts: 6798.4, - Sales: 54781.6, - COGS: 24280, - Profit: 30501.6, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `4130`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 61950, - Discounts: 3710.7, - Sales: 58239.3, - COGS: 17670, - Profit: 40569.3, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2938`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 35256, - Discounts: 2340.24, - Sales: 32915.76, - COGS: 4179, - Profit: 28736.76, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `3080`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 21560, - Discounts: 274.4, - Sales: 21285.6, - COGS: 1400, - Profit: 19885.6, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1530`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 18360, - Discounts: 2340.24, - Sales: 16019.76, - COGS: 4179, - Profit: 11840.76, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `3537`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 42444, - Discounts: 3385.2, - Sales: 39058.8, - COGS: 6045, - Profit: 33013.8, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `2021`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 606300, - Discounts: 33642, - Sales: 572658, - COGS: 200250, - Profit: 372408, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1804`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 225500, - Discounts: 17902.5, - Sales: 207597.5, - COGS: 122760, - Profit: 84837.5, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1014`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 304200, - Discounts: 62832, - Sales: 241368, - COGS: 374000, - Profit: 132632, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: `2913`, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 873900, - Discounts: 42420, - Sales: 831480, - COGS: 252500, - Profit: 578980, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `763`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 11445, - Discounts: 3177.3, - Sales: 8267.7, - COGS: 15130, - Profit: 6862.3, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: `1425`, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 21375, - Discounts: 4830, - Sales: 16545, - COGS: 23000, - Profit: 6455, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: `4357`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 544625, - Discounts: 49367.5, - Sales: 495257.5, - COGS: 338520, - Profit: 156737.5, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `2138`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 748300, - Discounts: 109147.5, - Sales: 639152.5, - COGS: 579150, - Profit: 60002.5, - Date: `1/1/19`, - MonthName: `January`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: `3825`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1338750, - Discounts: 58751, - Sales: 1279999, - COGS: 311740, - Profit: 968259, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `3393`, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1187550, - Discounts: 9800, - Sales: 1177750, - COGS: 52000, - Profit: 1125750, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `2215`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 15505, - Discounts: 380.24, - Sales: 15124.76, - COGS: 1940, - Profit: 13184.76, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2278`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 15946, - Discounts: 1692.46, - Sales: 14253.54, - COGS: 8635, - Profit: 5618.54, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: `403`, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 6045, - Discounts: 4830, - Sales: 1215, - COGS: 23000, - Profit: 21785, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `289`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 5780, - Discounts: 728, - Sales: 5052, - COGS: 2600, - Profit: 2452, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `749`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 11235, - Discounts: 5187, - Sales: 6048, - COGS: 24700, - Profit: 18652, - Date: `9/1/18`, - MonthName: `September`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `372`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 5580, - Discounts: 3660.3, - Sales: 1919.7, - COGS: 17430, - Profit: 15510.3, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3781`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 45372, - Discounts: 4895.52, - Sales: 40476.48, - COGS: 8742, - Profit: 31734.48, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1785`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 12495, - Discounts: 1696.38, - Sales: 10798.62, - COGS: 8655, - Profit: 2143.62, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `4029`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1410150, - Discounts: 34300, - Sales: 1375850, - COGS: 182000, - Profit: 1193850, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2813`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 33756, - Discounts: 3732.96, - Sales: 30023.04, - COGS: 6666, - Profit: 23357.04, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `2150`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 752500, - Discounts: 57673, - Sales: 694827, - COGS: 306020, - Profit: 388807, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `2093`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 732550, - Discounts: 94178, - Sales: 638372, - COGS: 499720, - Profit: 138652, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `4391`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 548875, - Discounts: 27562.5, - Sales: 521312.5, - COGS: 189000, - Profit: 332312.5, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2695`, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 53900, - Discounts: 1696.8, - Sales: 52203.2, - COGS: 6060, - Profit: 46143.2, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1337`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 401100, - Discounts: 103320, - Sales: 297780, - COGS: 615000, - Profit: 317220, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: `2621`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 786300, - Discounts: 11298, - Sales: 775002, - COGS: 67250, - Profit: 707752, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: `3735`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1120500, - Discounts: 106512, - Sales: 1013988, - COGS: 634000, - Profit: 379988, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: `4320`, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 30240, - Discounts: 2844.94, - Sales: 27395.06, - COGS: 14515, - Profit: 12880.06, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `2828`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 848400, - Discounts: 106722, - Sales: 741678, - COGS: 635250, - Profit: 106428, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `2586`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 775800, - Discounts: 11298, - Sales: 764502, - COGS: 67250, - Profit: 697252, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `1248`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 374400, - Discounts: 62832, - Sales: 311568, - COGS: 374000, - Profit: 62432, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `4035`, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 1210500, - Discounts: 42420, - Sales: 1168080, - COGS: 252500, - Profit: 915580, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `359`, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 125650, - Discounts: 62769, - Sales: 62881, - COGS: 333060, - Profit: 270179, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `3926`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1177800, - Discounts: 37296, - Sales: 1140504, - COGS: 222000, - Profit: 918504, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `4247`, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 530875, - Discounts: 49770, - Sales: 481105, - COGS: 341280, - Profit: 139825, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `2695`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 32340, - Discounts: 4158, - Sales: 28182, - COGS: 7425, - Profit: 20757, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: `1104`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 16560, - Discounts: 3660.3, - Sales: 12899.7, - COGS: 17430, - Profit: 4530.3, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: `1449`, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 17388, - Discounts: 4895.52, - Sales: 12492.48, - COGS: 8742, - Profit: 3750.48, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1131`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 7917, - Discounts: 1696.38, - Sales: 6220.62, - COGS: 8655, - Profit: 2434.38, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1468`, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 10276, - Discounts: 1692.46, - Sales: 8583.54, - COGS: 8635, - Profit: 51.46, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `1272`, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 19080, - Discounts: 3927, - Sales: 15153, - COGS: 18700, - Profit: 3547, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: `1403`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 175375, - Discounts: 22012.5, - Sales: 153362.5, - COGS: 140880, - Profit: 12482.5, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `2161`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 270125, - Discounts: 51881.25, - Sales: 218243.75, - COGS: 332040, - Profit: 113796.25, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: `1937`, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 242125, - Discounts: 20343.75, - Sales: 221781.25, - COGS: 130200, - Profit: 91581.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `2879`, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 863700, - Discounts: 24570, - Sales: 839130, - COGS: 136500, - Profit: 702630, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1330`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 26600, - Discounts: 3474, - Sales: 23126, - COGS: 11580, - Profit: 11546, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `2426`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 36390, - Discounts: 3631.5, - Sales: 32758.5, - COGS: 16140, - Profit: 16618.5, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2033`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 14231, - Discounts: 2661.75, - Sales: 11569.25, - COGS: 12675, - Profit: 1105.75, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `2029`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 710150, - Discounts: 149677.5, - Sales: 560472.5, - COGS: 741260, - Profit: 180787.5, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `1049`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 15735, - Discounts: 5757.75, - Sales: 9977.25, - COGS: 25590, - Profit: 15612.75, - Date: `8/1/19`, - MonthName: `August`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `1062`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 21240, - Discounts: 801, - Sales: 20439, - COGS: 2670, - Profit: 17769, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `2509`, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 313625, - Discounts: 20343.75, - Sales: 293281.25, - COGS: 130200, - Profit: 163081.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: `1743`, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 26145, - Discounts: 2643.75, - Sales: 23501.25, - COGS: 11750, - Profit: 11751.25, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3418`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1196300, - Discounts: 105367.5, - Sales: 1090932.5, - COGS: 521820, - Profit: 569112.5, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: `1751`, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 612850, - Discounts: 112927.5, - Sales: 499922.5, - COGS: 559260, - Profit: 59337.5, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: `3228`, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 38736, - Discounts: 1645.2, - Sales: 37090.8, - COGS: 2742, - Profit: 34348.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: `1105`, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 22100, - Discounts: 879, - Sales: 21221, - COGS: 2930, - Profit: 18291, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: `2778`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 33336, - Discounts: 900, - Sales: 32436, - COGS: 1500, - Profit: 30936, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `1173`, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 17595, - Discounts: 6358.5, - Sales: 11236.5, - COGS: 28260, - Profit: 17023.5, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: `3160`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 395000, - Discounts: 12431.25, - Sales: 382568.75, - COGS: 79560, - Profit: 303008.75, - Date: `9/1/19`, - MonthName: `September`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `4322`, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1296600, - Discounts: 115830, - Sales: 1180770, - COGS: 643500, - Profit: 537270, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `1901`, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 237625, - Discounts: 45712.5, - Sales: 191912.5, - COGS: 292560, - Profit: 100647.5, - Date: `12/1/18`, - MonthName: `December`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: `2980`, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 35760, - Discounts: 1645.2, - Sales: 34114.8, - COGS: 2742, - Profit: 31372.8, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `4068`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 81360, - Discounts: 2596.5, - Sales: 78763.5, - COGS: 8655, - Profit: 70108.5, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2105`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 31575, - Discounts: 1107, - Sales: 30468, - COGS: 4920, - Profit: 25548, - Date: `7/1/19`, - MonthName: `July`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `1647`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 32940, - Discounts: 801, - Sales: 32139, - COGS: 2670, - Profit: 29469, - Date: `10/1/18`, - MonthName: `October`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `235`, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 3525, - Discounts: 2643.75, - Sales: 881.25, - COGS: 11750, - Profit: 10868.75, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: `3617`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 452125, - Discounts: 55387.5, - Sales: 396737.5, - COGS: 354480, - Profit: 42257.5, - Date: `11/1/18`, - MonthName: `November`, - Year: `2018` - })); - this.push(new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: `2106`, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 263250, - Discounts: 10350, - Sales: 252900, - COGS: 66240, - Profit: 186660, - Date: `11/1/19`, - MonthName: `November`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: `2351`, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 47020, - Discounts: 879, - Sales: 46141, - COGS: 2930, - Profit: 43211, - Date: `12/1/19`, - MonthName: `December`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: `1897`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 569100, - Discounts: 111375, - Sales: 457725, - COGS: 618750, - Profit: 161025, - Date: `3/1/19`, - MonthName: `March`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: `647`, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 194100, - Discounts: 24570, - Sales: 169530, - COGS: 136500, - Profit: 33030, - Date: `10/1/19`, - MonthName: `October`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: `3621`, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 25347, - Discounts: 1436.4, - Sales: 23910.6, - COGS: 6840, - Profit: 17070.6, - Date: `2/1/19`, - MonthName: `February`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: `3221`, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 22547, - Discounts: 759.15, - Sales: 21787.85, - COGS: 3615, - Profit: 18172.85, - Date: `4/1/19`, - MonthName: `April`, - Year: `2019` - })); - this.push(new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: `493`, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 5916, - Discounts: 3250.8, - Sales: 2665.2, - COGS: 5418, - Profit: 2752.8, - Date: `5/1/19`, - MonthName: `May`, - Year: `2019` - })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `501`,ManufacturingPrice: 15,SalePrice: 23,GrossSales: 26440,Discounts: 0,Sales: 26440,COGS: 16185,Profit: 11255,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1372`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 27440,Discounts: 0,Sales: 27440,COGS: 16185,Profit: 11255,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2762`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 55240,Discounts: 0,Sales: 55240,COGS: 13210,Profit: 42030,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1464`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21960,Discounts: 0,Sales: 21960,COGS: 21780,Profit: 180,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `719`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 10785,Discounts: 0,Sales: 10785,COGS: 8880,Profit: 1905,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3576`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53640,Discounts: 0,Sales: 53640,COGS: 24700,Profit: 28940,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4422`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1547700,Discounts: 0,Sales: 1547700,COGS: 393380,Profit: 1154320,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3649`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 54735,Discounts: 0,Sales: 54735,COGS: 9210,Profit: 45525,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4172`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 50064,Discounts: 0,Sales: 50064,COGS: 7554,Profit: 42510,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3841`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 76820,Discounts: 0,Sales: 76820,COGS: 18990,Profit: 57830,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3726`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 44712,Discounts: 0,Sales: 44712,COGS: 4635,Profit: 40077,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2625`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 39375,Discounts: 0,Sales: 39375,COGS: 24700,Profit: 14675,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1958`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 244750,Discounts: 0,Sales: 244750,COGS: 319860,Profit: 75110,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3271`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 981300,Discounts: 0,Sales: 981300,COGS: 239500,Profit: 741800,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2091`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 14637,Discounts: 0,Sales: 14637,COGS: 10730,Profit: 3907,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2825`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 42375,Discounts: 0,Sales: 42375,COGS: 6150,Profit: 36225,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2513`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 50260,Discounts: 0,Sales: 50260,COGS: 2920,Profit: 47340,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `883`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 13245,Discounts: 0,Sales: 13245,COGS: 9740,Profit: 3505,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 25044,Discounts: 0,Sales: 25044,COGS: 7554,Profit: 17490,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2563`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 897050,Discounts: 0,Sales: 897050,COGS: 261560,Profit: 635490,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2846`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34152,Discounts: 0,Sales: 34152,COGS: 1101,Profit: 33051,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `997`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 6979,Discounts: 0,Sales: 6979,COGS: 4415,Profit: 2564,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2290`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 34350,Discounts: 0,Sales: 34350,COGS: 24720,Profit: 9630,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2133`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14931,Discounts: 0,Sales: 14931,COGS: 5715,Profit: 9216,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3617`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 72340,Discounts: 0,Sales: 72340,COGS: 18170,Profit: 54170,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1266`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 443100,Discounts: 0,Sales: 443100,COGS: 393380,Profit: 49720,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `894`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6258,Discounts: 0,Sales: 6258,COGS: 7465,Profit: 1207,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2725`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 340625,Discounts: 0,Sales: 340625,COGS: 216480,Profit: 124145,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3061`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 36732,Discounts: 0,Sales: 36732,COGS: 6483,Profit: 30249,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3958`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1385300,Discounts: 0,Sales: 1385300,COGS: 261560,Profit: 1123740,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3920`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 47040,Discounts: 0,Sales: 47040,COGS: 4635,Profit: 42405,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3381`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422625,Discounts: 0,Sales: 422625,COGS: 338520,Profit: 84105,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4307`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1292100,Discounts: 0,Sales: 1292100,COGS: 500250,Profit: 791850,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `878`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10536,Discounts: 0,Sales: 10536,COGS: 8514,Profit: 2022,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `496`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 7440,Discounts: 0,Sales: 7440,COGS: 21780,Profit: 14340,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3367`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 50505,Discounts: 0,Sales: 50505,COGS: 8880,Profit: 41625,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2055`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 616500,Discounts: 0,Sales: 616500,COGS: 537750,Profit: 78750,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4041`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 80820,Discounts: 0,Sales: 80820,COGS: 18170,Profit: 62650,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `3237`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1132950,Discounts: 0,Sales: 1132950,COGS: 715000,Profit: 417950,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `630`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 7560,Discounts: 0,Sales: 7560,COGS: 5859,Profit: 1701,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4210`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 526250,Discounts: 0,Sales: 526250,COGS: 506340,Profit: 19910,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1127`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 22540,Discounts: 0,Sales: 22540,COGS: 18990,Profit: 3550,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3438`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 24066,Discounts: 0,Sales: 24066,COGS: 8430,Profit: 15636,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2015`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 24180,Discounts: 0,Sales: 24180,COGS: 6423,Profit: 17757,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2534`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 17738,Discounts: 0,Sales: 17738,COGS: 5715,Profit: 12023,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1384`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 20760,Discounts: 0,Sales: 20760,COGS: 6150,Profit: 14610,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3561`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 24927,Discounts: 276.15,Sales: 24650.85,COGS: 19725,Profit: 4925.85,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1823`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27345,Discounts: 344.4,Sales: 27000.6,COGS: 22960,Profit: 4040.6,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19565,Discounts: 72.1,Sales: 19492.9,COGS: 5150,Profit: 14342.9,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `457`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3199,Discounts: 44.73,Sales: 3154.27,COGS: 3195,Profit: 40.73,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3785`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26495,Discounts: 92.82,Sales: 26402.18,COGS: 6630,Profit: 19772.18,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `748`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 8976,Discounts: 222.96,Sales: 8753.04,COGS: 5574,Profit: 3179.04,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1021`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 357350,Discounts: 4235,Sales: 353115,COGS: 314600,Profit: 38515,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2076`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 14532,Discounts: 177.03,Sales: 14354.97,COGS: 12645,Profit: 1709.97,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `4316`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51792,Discounts: 173.4,Sales: 51618.6,COGS: 4335,Profit: 47283.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4174`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50088,Discounts: 320.52,Sales: 49767.48,COGS: 8013,Profit: 41754.48,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3736`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1307600,Discounts: 4889.5,Sales: 1302710.5,COGS: 363220,Profit: 939490.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1914`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 669900,Discounts: 7542.5,Sales: 662357.5,COGS: 560300,Profit: 102057.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2742`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 41130,Discounts: 332.1,Sales: 40797.9,COGS: 22140,Profit: 18657.9,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1499`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 449700,Discounts: 6903,Sales: 442797,COGS: 575250,Profit: 132453,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 75440,Discounts: 275.1,Sales: 75164.9,COGS: 13755,Profit: 61409.9,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1112`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 7784,Discounts: 128.1,Sales: 7655.9,COGS: 9150,Profit: 1494.1,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2368`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 35520,Discounts: 227.1,Sales: 35292.9,COGS: 15140,Profit: 20152.9,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 11102,Discounts: 314.48,Sales: 10787.52,COGS: 22462.5,Profit: 11674.98,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3386`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 423250,Discounts: 908.75,Sales: 422341.25,COGS: 87240,Profit: 335101.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `852`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 106500,Discounts: 983.75,Sales: 105516.25,COGS: 94440,Profit: 11076.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2783`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 347875,Discounts: 2278.75,Sales: 345596.25,COGS: 218760,Profit: 126836.25,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2684`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 40260,Discounts: 112.05,Sales: 40147.95,COGS: 7470,Profit: 32677.95,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4083`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1224900,Discounts: 8715,Sales: 1216185,COGS: 726250,Profit: 489935,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2816`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 985600,Discounts: 7542.5,Sales: 978057.5,COGS: 560300,Profit: 417757.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4294`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 85880,Discounts: 772.8,Sales: 85107.2,COGS: 38640,Profit: 46467.2,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 25.34,Sales: 19966.66,COGS: 1810,Profit: 18156.66,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1407`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 175875,Discounts: 1153.75,Sales: 174721.25,COGS: 110760,Profit: 63961.25,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1265`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 8855,Discounts: 18.41,Sales: 8836.59,COGS: 1315,Profit: 7521.59,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3892`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1362200,Discounts: 3302.25,Sales: 1358897.75,COGS: 245310,Profit: 1113587.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3068`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 383500,Discounts: 908.75,Sales: 382591.25,COGS: 87240,Profit: 295351.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2181`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 272625,Discounts: 983.75,Sales: 271641.25,COGS: 94440,Profit: 177201.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1356`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 406800,Discounts: 2958,Sales: 403842,COGS: 246500,Profit: 177201.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1814`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 634900,Discounts: 4889.5,Sales: 630010.5,COGS: 363220,Profit: 266790.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1495`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 186875,Discounts: 2180,Sales: 184695,COGS: 209280,Profit: 24585,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1463`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 182875,Discounts: 1856.25,Sales: 181018.75,COGS: 89100,Profit: 91918.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `215`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 2580,Discounts: 310.8,Sales: 2269.2,COGS: 3885,Profit: 1615.8,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `566`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 198100,Discounts: 19964,Sales: 178136,COGS: 741520,Profit: 563384,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3255`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 39060,Discounts: 274.08,Sales: 38785.92,COGS: 3426,Profit: 35359.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15440,Discounts: 626.4,Sales: 14813.6,COGS: 15660,Profit: 846.4,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1135`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13620,Discounts: 165.6,Sales: 13454.4,COGS: 2070,Profit: 11384.4,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 17895,Discounts: 708.9,Sales: 17186.1,COGS: 23630,Profit: 6443.9,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2530`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 759000,Discounts: 5508,Sales: 753492,COGS: 229500,Profit: 523992,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3451`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1035300,Discounts: 10368,Sales: 1024932,COGS: 432000,Profit: 592932,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3059`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 36708,Discounts: 274.08,Sales: 36433.92,COGS: 3426,Profit: 33007.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3957`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 494625,Discounts: 1655,Sales: 492970,COGS: 79440,Profit: 413530,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3444`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 41328,Discounts: 310.8,Sales: 41017.2,COGS: 3885,Profit: 37132.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3154`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 946200,Discounts: 11496,Sales: 934704,COGS: 479000,Profit: 455704,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4108`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1437800,Discounts: 19964,Sales: 1417836,COGS: 741520,Profit: 676316,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3760`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 470000,Discounts: 6822.5,Sales: 463177.5,COGS: 327480,Profit: 135697.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2334`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28008,Discounts: 253.2,Sales: 27754.8,COGS: 3165,Profit: 24589.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `580`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 6960,Discounts: 260.16,Sales: 6699.84,COGS: 3252,Profit: 3447.84,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2610`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 52200,Discounts: 626.4,Sales: 51573.6,COGS: 15660,Profit: 35913.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1459`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 510650,Discounts: 20139,Sales: 490511,COGS: 748020,Profit: 257509,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3774`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 45288,Discounts: 253.2,Sales: 45034.8,COGS: 3165,Profit: 41869.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2572`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 30864,Discounts: 260.16,Sales: 30603.84,COGS: 3252,Profit: 27351.84,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `320`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 40000,Discounts: 1655,Sales: 38345,COGS: 79440,Profit: 41095,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3275`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1146250,Discounts: 20139,Sales: 1126111,COGS: 748020,Profit: 378091,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3582`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 447750,Discounts: 6822.5,Sales: 440927.5,COGS: 327480,Profit: 113447.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4056`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1216800,Discounts: 1554,Sales: 1215246,COGS: 64750,Profit: 1150496,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2144`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 643200,Discounts: 6606,Sales: 636594,COGS: 275250,Profit: 361344,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3502`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 437750,Discounts: 5690,Sales: 432060,COGS: 273120,Profit: 158940,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `679`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 13580,Discounts: 494.4,Sales: 13085.6,COGS: 12360,Profit: 725.6,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2351`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 47020,Discounts: 376.4,Sales: 46643.6,COGS: 9410,Profit: 37233.6,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2043`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 612900,Discounts: 11496,Sales: 601404,COGS: 479000,Profit: 122404,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3565`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 445625,Discounts: 15913.13,Sales: 429711.88,COGS: 509220,Profit: 79508.13,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1401`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 28020,Discounts: 1548,Sales: 26472,COGS: 25800,Profit: 672,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2077`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 623100,Discounts: 6201,Sales: 616899,COGS: 172250,Profit: 444649,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 43716,Discounts: 700.92,Sales: 43015.08,COGS: 5841,Profit: 37174.08,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2960`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20720,Discounts: 411.18,Sales: 20308.82,COGS: 9790,Profit: 10518.82,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1201`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 14412,Discounts: 684.36,Sales: 13727.64,COGS: 5703,Profit: 8024.64,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2321`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 16247,Discounts: 114.24,Sales: 16132.76,COGS: 2720,Profit: 13412.76,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3972`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 496500,Discounts: 4826.25,Sales: 491673.75,COGS: 154440,Profit: 337233.75,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3878`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 484750,Discounts: 6397.5,Sales: 478352.5,COGS: 204720,Profit: 273632.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2278`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 683400,Discounts: 21910.5,Sales: 661489.5,COGS: 608625,Profit: 52864.5,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1075`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 134375,Discounts: 6652.5,Sales: 127722.5,COGS: 212880,Profit: 85157.5,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4050`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 48600,Discounts: 684.36,Sales: 47915.64,COGS: 5703,Profit: 42212.64,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3035`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 910500,Discounts: 6201,Sales: 904299,COGS: 172250,Profit: 732049,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3636`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 454500,Discounts: 5887.5,Sales: 448612.5,COGS: 188400,Profit: 260212.5,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1379`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 16548,Discounts: 493.02,Sales: 16054.98,COGS: 4108.5,Profit: 11946.48,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4492`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 561500,Discounts: 7533.75,Sales: 553966.25,COGS: 241080,Profit: 312886.25,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1744`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 218000,Discounts: 4826.25,Sales: 213173.75,COGS: 154440,Profit: 58733.75,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2341`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 292625,Discounts: 6397.5,Sales: 286227.5,COGS: 204720,Profit: 81507.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 479375,Discounts: 7533.75,Sales: 471841.25,COGS: 241080,Profit: 230761.25,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1161`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 348300,Discounts: 25596,Sales: 322704,COGS: 711000,Profit: 388296,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `876`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10512,Discounts: 689.76,Sales: 9822.24,COGS: 5748,Profit: 4074.24,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1705`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 213125,Discounts: 5887.5,Sales: 207237.5,COGS: 188400,Profit: 18837.5,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1805`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 541500,Discounts: 16866,Sales: 524634,COGS: 468500,Profit: 56134,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `389`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 136150,Discounts: 17241,Sales: 118909,COGS: 426920,Profit: 308011,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1459`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 29180,Discounts: 498.6,Sales: 28681.4,COGS: 8310,Profit: 20371.4,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4236`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 84720,Discounts: 2310.3,Sales: 82409.7,COGS: 38505,Profit: 43904.7,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3627`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 43524,Discounts: 892.44,Sales: 42631.56,COGS: 7437,Profit: 35194.56,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1756`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 26340,Discounts: 1218.6,Sales: 25121.4,COGS: 20310,Profit: 4811.4,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `307`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 4605,Discounts: 1218.6,Sales: 3386.4,COGS: 20310,Profit: 16923.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1222`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 366600,Discounts: 24252,Sales: 342348,COGS: 505250,Profit: 162902,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `489`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 171150,Discounts: 3836,Sales: 167314,COGS: 71240,Profit: 96074,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4133`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 61995,Discounts: 1180.2,Sales: 60814.8,COGS: 19670,Profit: 41144.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2743`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 822900,Discounts: 22308,Sales: 800592,COGS: 464750,Profit: 335842,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `4460`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1338000,Discounts: 24252,Sales: 1313748,COGS: 505250,Profit: 808498,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1232`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 154000,Discounts: 5690,Sales: 148310,COGS: 136560,Profit: 11750,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 18102,Discounts: 1190.28,Sales: 16911.72,COGS: 21255,Profit: 4343.28,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1332`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 166500,Discounts: 3975,Sales: 162525,COGS: 95400,Profit: 67125,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4487`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1346100,Discounts: 16974,Sales: 1329126,COGS: 353625,Profit: 975501,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3862`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1158600,Discounts: 35016,Sales: 1123584,COGS: 729500,Profit: 394084,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1765`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 617750,Discounts: 48300,Sales: 569450,COGS: 897000,Profit: 327550,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3533`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 441625,Discounts: 14940,Sales: 426685,COGS: 358560,Profit: 68125,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2016`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 30240,Discounts: 130.8,Sales: 30109.2,COGS: 2180,Profit: 27929.2,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58760,Discounts: 1659.2,Sales: 57100.8,COGS: 20740,Profit: 36360.8,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3352`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67040,Discounts: 844.8,Sales: 66195.2,COGS: 10560,Profit: 55635.2,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2430`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 850500,Discounts: 3836,Sales: 846664,COGS: 71240,Profit: 775424,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `535`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 66875,Discounts: 5690,Sales: 61185,COGS: 136560,Profit: 75375,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1523`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 18276,Discounts: 703.2,Sales: 17572.8,COGS: 4395,Profit: 13177.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1782`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 623700,Discounts: 30478,Sales: 593222,COGS: 566020,Profit: 27202,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `347`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 4164,Discounts: 415.68,Sales: 3748.32,COGS: 2598,Profit: 1150.32,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3509`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1228150,Discounts: 30478,Sales: 1197672,COGS: 566020,Profit: 631652,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2943`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1030050,Discounts: 26110,Sales: 1003940,COGS: 484900,Profit: 519040,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4037`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 504625,Discounts: 5370,Sales: 499255,COGS: 128880,Profit: 370375,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4146`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1451100,Discounts: 26698,Sales: 1424402,COGS: 495820,Profit: 928582,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `725`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 5075,Discounts: 480.2,Sales: 4594.8,COGS: 6860,Profit: 2265.2,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 16275,Discounts: 941.15,Sales: 15333.85,COGS: 13445,Profit: 1888.85,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `675`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 8100,Discounts: 1458.6,Sales: 6641.4,COGS: 7293,Profit: 651.6,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2990`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35880,Discounts: 1458.6,Sales: 34421.4,COGS: 7293,Profit: 27128.4,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1072`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 7504,Discounts: 941.15,Sales: 6562.85,COGS: 13445,Profit: 6882.15,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1048`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7336,Discounts: 589.05,Sales: 6746.95,COGS: 8415,Profit: 1668.05,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `469`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 5628,Discounts: 673.8,Sales: 4954.2,COGS: 3369,Profit: 1585.2,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4240`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50880,Discounts: 1119,Sales: 49761,COGS: 5595,Profit: 44166,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1976`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 23712,Discounts: 669.6,Sales: 23042.4,COGS: 3348,Profit: 19694.4,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1984`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39680,Discounts: 1563,Sales: 38117,COGS: 15630,Profit: 22487,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `480`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 144000,Discounts: 14865,Sales: 129135,COGS: 247750,Profit: 118615,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1205`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 18075,Discounts: 2093.25,Sales: 15981.75,COGS: 27910,Profit: 11928.25,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2480`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17360,Discounts: 199.5,Sales: 17160.5,COGS: 2850,Profit: 14310.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2926`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 20482,Discounts: 870.45,Sales: 19611.55,COGS: 12435,Profit: 7176.55,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3210`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1123500,Discounts: 24228.75,Sales: 1099271.25,COGS: 359970,Profit: 739301.25,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3221`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 402625,Discounts: 22668.75,Sales: 379956.25,COGS: 435240,Profit: 55283.75,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1127`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13524,Discounts: 1405.2,Sales: 12118.8,COGS: 7026,Profit: 5092.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1610`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 32200,Discounts: 1303,Sales: 30897,COGS: 13030,Profit: 17867,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4100`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 512500,Discounts: 18700,Sales: 493800,COGS: 359040,Profit: 134760,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1012`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 126500,Discounts: 14906.25,Sales: 111593.75,COGS: 286200,Profit: 174606.25,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3337`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1001100,Discounts: 24105,Sales: 976995,COGS: 401750,Profit: 575245,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3955`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27685,Discounts: 814.45,Sales: 26870.55,COGS: 11635,Profit: 15235.55,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4347`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1304100,Discounts: 14865,Sales: 1289235,COGS: 247750,Profit: 1041485,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1548`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 541800,Discounts: 10535,Sales: 531265,COGS: 156520,Profit: 374745,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2153`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 32295,Discounts: 1965,Sales: 30330,COGS: 26200,Profit: 4130,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4126`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 515750,Discounts: 5381.25,Sales: 510368.75,COGS: 103320,Profit: 407048.75,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3376`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67520,Discounts: 2663,Sales: 64857,COGS: 26630,Profit: 38227,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2244`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 33660,Discounts: 416.25,Sales: 33243.75,COGS: 5550,Profit: 27693.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1360`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20400,Discounts: 2145.75,Sales: 18254.25,COGS: 28610,Profit: 10355.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `279`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 34875,Discounts: 5043.75,Sales: 29831.25,COGS: 96840,Profit: 67008.75,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2521`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 882350,Discounts: 10535,Sales: 871815,COGS: 156520,Profit: 715295,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2433`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 48660,Discounts: 2832,Sales: 45828,COGS: 28320,Profit: 17508,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1738`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 34760,Discounts: 1579,Sales: 33181,COGS: 15790,Profit: 17391,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1106`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 138250,Discounts: 5381.25,Sales: 132868.75,COGS: 103320,Profit: 29548.75,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `213`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 63900,Discounts: 18750,Sales: 45150,COGS: 312500,Profit: 267350,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2929`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 58580,Discounts: 2663,Sales: 55917,COGS: 26630,Profit: 29287,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2389`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 16723,Discounts: 199.5,Sales: 16523.5,COGS: 2850,Profit: 13673.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3086`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21602,Discounts: 870.45,Sales: 20731.55,COGS: 12435,Profit: 8296.55,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `745`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 260750,Discounts: 23625,Sales: 237125,COGS: 351000,Profit: 113875,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1266`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 443100,Discounts: 9660,Sales: 433440,COGS: 143520,Profit: 289920,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4287`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1286100,Discounts: 18750,Sales: 1267350,COGS: 312500,Profit: 954850,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 47895,Discounts: 3420.9,Sales: 44474.1,COGS: 38010,Profit: 6464.1,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1967`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39340,Discounts: 1341,Sales: 37999,COGS: 11175,Profit: 26824,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `631`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 9465,Discounts: 2559.6,Sales: 6905.4,COGS: 28440,Profit: 21534.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3469`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 41628,Discounts: 404.64,Sales: 41223.36,COGS: 1686,Profit: 39537.36,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3215`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 48225,Discounts: 1827,Sales: 46398,COGS: 20300,Profit: 26098,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1959`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 685650,Discounts: 20580,Sales: 665070,COGS: 254800,Profit: 410270,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2181`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 763350,Discounts: 30660,Sales: 732690,COGS: 379600,Profit: 353090,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2205`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 26460,Discounts: 1960.56,Sales: 24499.44,COGS: 8169,Profit: 16330.44,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1890`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 661500,Discounts: 31416,Sales: 630084,COGS: 388960,Profit: 241124,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2417`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 302125,Discounts: 7140,Sales: 294985,COGS: 114240,Profit: 180745,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1158`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 144750,Discounts: 20662.5,Sales: 124087.5,COGS: 330600,Profit: 206512.5,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `803`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 12045,Discounts: 1377,Sales: 10668,COGS: 15300,Profit: 4632,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3705`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1296750,Discounts: 31416,Sales: 1265334,COGS: 388960,Profit: 876374,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `589`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 4123,Discounts: 629.16,Sales: 3493.84,COGS: 7490,Profit: 3996.16,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3999`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 59985,Discounts: 2559.6,Sales: 57425.4,COGS: 28440,Profit: 28985.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4256`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 29792,Discounts: 629.16,Sales: 29162.84,COGS: 7490,Profit: 21672.84,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2160`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 270000,Discounts: 14906.25,Sales: 255093.75,COGS: 238500,Profit: 16593.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `466`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 163100,Discounts: 35259,Sales: 127841,COGS: 436540,Profit: 308699,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1478`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 22170,Discounts: 1978.2,Sales: 20191.8,COGS: 21980,Profit: 1788.2,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3798`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 56970,Discounts: 1568.7,Sales: 55401.3,COGS: 17430,Profit: 37971.3,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `447`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 6705,Discounts: 1037.7,Sales: 5667.3,COGS: 11530,Profit: 5862.7,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `745`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 14900,Discounts: 1201.2,Sales: 13698.8,COGS: 10010,Profit: 3688.8,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1732`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 12124,Discounts: 559.86,Sales: 11564.14,COGS: 6665,Profit: 4899.14,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1759`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 26385,Discounts: 1037.7,Sales: 25347.3,COGS: 11530,Profit: 13817.3,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `338`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 4056,Discounts: 610.68,Sales: 3445.32,COGS: 2181,Profit: 1264.32,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3911`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 46932,Discounts: 1582.56,Sales: 45349.44,COGS: 5652,Profit: 39697.44,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `4473`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 53676,Discounts: 1965.6,Sales: 51710.4,COGS: 7020,Profit: 44690.4,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `383`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 4596,Discounts: 1967.28,Sales: 2628.72,COGS: 7026,Profit: 4397.28,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1062`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 15930,Discounts: 1325.1,Sales: 14604.9,COGS: 12620,Profit: 1984.9,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4083`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 28581,Discounts: 556.15,Sales: 28024.85,COGS: 5675,Profit: 22349.85,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3974`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 27818,Discounts: 268.03,Sales: 27549.97,COGS: 2735,Profit: 24814.97,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3723`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 26061,Discounts: 775.18,Sales: 25285.82,COGS: 7910,Profit: 17375.82,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2435`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 29220,Discounts: 1460.34,Sales: 27759.66,COGS: 5215.5,Profit: 22544.16,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1763`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 12341,Discounts: 775.18,Sales: 11565.82,COGS: 7910,Profit: 3655.82,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4473`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31311,Discounts: 556.15,Sales: 30754.85,COGS: 5675,Profit: 25079.85,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1246`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 436100,Discounts: 43144.5,Sales: 392955.5,COGS: 457860,Profit: 64904.5,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1615`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 484500,Discounts: 9408,Sales: 475092,COGS: 112000,Profit: 363092,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `749`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 224700,Discounts: 45801,Sales: 178899,COGS: 545250,Profit: 366351,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1318`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 26360,Discounts: 2766.4,Sales: 23593.6,COGS: 19760,Profit: 3833.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2882`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 864600,Discounts: 45801,Sales: 818799,COGS: 545250,Profit: 273549,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2484`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 745200,Discounts: 35742,Sales: 709458,COGS: 425500,Profit: 283958,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3169`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 950700,Discounts: 9408,Sales: 941292,COGS: 112000,Profit: 829292,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 510000,Discounts: 30738.75,Sales: 479261.25,COGS: 421560,Profit: 57701.25,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3943`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 59145,Discounts: 2206.05,Sales: 56938.95,COGS: 21010,Profit: 35928.95,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `253`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5060,Discounts: 2149,Sales: 2911,COGS: 15350,Profit: 12439,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `799`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 239700,Discounts: 34839,Sales: 204861,COGS: 414750,Profit: 209889,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3942`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 78840,Discounts: 852.6,Sales: 77987.4,COGS: 6090,Profit: 71897.4,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2498`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 312250,Discounts: 18261.25,Sales: 293988.75,COGS: 250440,Profit: 43548.75,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2517`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 50340,Discounts: 2766.4,Sales: 47573.6,COGS: 19760,Profit: 27813.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1145`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 343500,Discounts: 28812,Sales: 314688,COGS: 343000,Profit: 28312,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3814`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 45768,Discounts: 2725.38,Sales: 43042.62,COGS: 9733.5,Profit: 33309.12,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1188`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 356400,Discounts: 20139,Sales: 336261,COGS: 239750,Profit: 96511,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2233`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 669900,Discounts: 57687,Sales: 612213,COGS: 686750,Profit: 74537,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `421`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 52625,Discounts: 14393.75,Sales: 38231.25,COGS: 197400,Profit: 159168.75,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `269`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 94150,Discounts: 70462,Sales: 23688,COGS: 747760,Profit: 724072,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `952`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19040,Discounts: 1565.2,Sales: 17474.8,COGS: 11180,Profit: 6294.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2964`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 889200,Discounts: 28812,Sales: 860388,COGS: 343000,Profit: 517388,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1505`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10535,Discounts: 273.28,Sales: 10261.72,COGS: 2440,Profit: 7821.72,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1678`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 33560,Discounts: 2051.2,Sales: 31508.8,COGS: 12820,Profit: 18688.8,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4249`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 29743,Discounts: 143.92,Sales: 29599.08,COGS: 1285,Profit: 28314.08,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1677`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 33540,Discounts: 2051.2,Sales: 31488.8,COGS: 12820,Profit: 18668.8,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3051`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 381375,Discounts: 15400,Sales: 365975,COGS: 184800,Profit: 181175,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3372`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 50580,Discounts: 588,Sales: 49992,COGS: 4900,Profit: 45092,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1686`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 590100,Discounts: 38136,Sales: 551964,COGS: 354120,Profit: 197844,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3086`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 46290,Discounts: 3001.2,Sales: 43288.8,COGS: 25010,Profit: 18278.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4150`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 83000,Discounts: 1132.8,Sales: 81867.2,COGS: 7080,Profit: 74787.2,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3027`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 60540,Discounts: 1032,Sales: 59508,COGS: 6450,Profit: 53058,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4359`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1307700,Discounts: 37488,Sales: 1270212,COGS: 390500,Profit: 879712,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1589`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 23835,Discounts: 853.2,Sales: 22981.8,COGS: 7110,Profit: 15871.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2679`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 334875,Discounts: 11140,Sales: 323735,COGS: 133680,Profit: 190055,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 23807,Discounts: 705.04,Sales: 23101.96,COGS: 6295,Profit: 16806.96,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2815`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19705,Discounts: 613.2,Sales: 19091.8,COGS: 5475,Profit: 13616.8,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2964`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 59280,Discounts: 2185.6,Sales: 57094.4,COGS: 13660,Profit: 43434.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4173`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1251900,Discounts: 59040,Sales: 1192860,COGS: 615000,Profit: 577860,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1157`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 8099,Discounts: 379.68,Sales: 7719.32,COGS: 3390,Profit: 4329.32,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3065`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21455,Discounts: 894.88,Sales: 20560.12,COGS: 7990,Profit: 12570.12,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 81600,Discounts: 3094.4,Sales: 78505.6,COGS: 19340,Profit: 59165.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1713`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34260,Discounts: 4788.8,Sales: 29471.2,COGS: 29930,Profit: 458.8,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1691`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 591850,Discounts: 38136,Sales: 553714,COGS: 354120,Profit: 199594,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2305`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27660,Discounts: 574.08,Sales: 27085.92,COGS: 1794,Profit: 25291.92,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3401`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 23807,Discounts: 1627.92,Sales: 22179.08,COGS: 14535,Profit: 7644.08,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2288`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 16016,Discounts: 1309.28,Sales: 14706.72,COGS: 11690,Profit: 3016.72,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4086`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1225800,Discounts: 15240,Sales: 1210560,COGS: 158750,Profit: 1051810,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2651`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 927850,Discounts: 16086,Sales: 911764,COGS: 149370,Profit: 762394,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3971`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27797,Discounts: 1309.28,Sales: 26487.72,COGS: 11690,Profit: 14797.72,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2512`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 879200,Discounts: 10668,Sales: 868532,COGS: 99060,Profit: 769472,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 960750,Discounts: 11816,Sales: 948934,COGS: 109720,Profit: 839214,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1903`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 570900,Discounts: 51216,Sales: 519684,COGS: 533500,Profit: 13816,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2914`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 58280,Discounts: 1132.8,Sales: 57147.2,COGS: 7080,Profit: 50067.2,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1889`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 13223,Discounts: 1627.92,Sales: 11595.08,COGS: 14535,Profit: 2939.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1466`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 29320,Discounts: 2185.6,Sales: 27134.4,COGS: 13660,Profit: 13474.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `887`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 266100,Discounts: 59040,Sales: 207060,COGS: 615000,Profit: 407940,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `395`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 7900,Discounts: 2432,Sales: 5468,COGS: 15200,Profit: 9732,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1693`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 25395,Discounts: 853.2,Sales: 24541.8,COGS: 7110,Profit: 17431.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2649`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 794700,Discounts: 15240,Sales: 779460,COGS: 158750,Profit: 620710,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3608`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 72160,Discounts: 698.4,Sales: 71461.6,COGS: 4365,Profit: 67096.6,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1073`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 321900,Discounts: 29538,Sales: 292362,COGS: 273500,Profit: 18862,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2167`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 650100,Discounts: 102667.5,Sales: 547432.5,COGS: 950625,Profit: 403192.5,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1319`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 461650,Discounts: 52479,Sales: 409171,COGS: 433160,Profit: 23989,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1252`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 15024,Discounts: 2506.68,Sales: 12517.32,COGS: 6963,Profit: 5554.32,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1156`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 144500,Discounts: 31466.25,Sales: 113033.75,COGS: 335640,Profit: 222606.25,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1153`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 345900,Discounts: 69255,Sales: 276645,COGS: 641250,Profit: 364605,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2720`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 952000,Discounts: 76135.5,Sales: 875864.5,COGS: 628420,Profit: 247444.5,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 54870,Discounts: 4961.25,Sales: 49908.75,COGS: 36750,Profit: 13158.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2950`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 885000,Discounts: 29538,Sales: 855462,COGS: 273500,Profit: 581962,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1821`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27315,Discounts: 1656.45,Sales: 25658.55,COGS: 12270,Profit: 13388.55,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1127`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 338100,Discounts: 35748,Sales: 302352,COGS: 331000,Profit: 28648,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `862`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 107750,Discounts: 31466.25,Sales: 76283.75,COGS: 335640,Profit: 259356.25,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3805`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 57075,Discounts: 330.75,Sales: 56744.25,COGS: 2450,Profit: 54294.25,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1415`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 424500,Discounts: 102424.5,Sales: 322075.5,COGS: 948375,Profit: 626299.5,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2231`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 780850,Discounts: 41170.5,Sales: 739679.5,COGS: 339820,Profit: 399859.5,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3649`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 456125,Discounts: 6378.75,Sales: 449746.25,COGS: 68040,Profit: 381706.25,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2948`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 368500,Discounts: 23737.5,Sales: 344762.5,COGS: 253200,Profit: 91562.5,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3395`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1188250,Discounts: 39973.5,Sales: 1148276.5,COGS: 329940,Profit: 818336.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2650`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31800,Discounts: 2112.48,Sales: 29687.52,COGS: 5868,Profit: 23819.52,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `585`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 175500,Discounts: 71793,Sales: 103707,COGS: 664750,Profit: 561043,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1316`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 460600,Discounts: 42572.25,Sales: 418027.75,COGS: 351390,Profit: 66637.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4459`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 53508,Discounts: 950.4,Sales: 52557.6,COGS: 2640,Profit: 49917.6,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2711`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 813300,Discounts: 50409,Sales: 762891,COGS: 466750,Profit: 296141,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3613`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 54195,Discounts: 1656.45,Sales: 52538.55,COGS: 12270,Profit: 40268.55,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1847`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 230875,Discounts: 9866.25,Sales: 221008.75,COGS: 105240,Profit: 115768.75,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2996`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1048600,Discounts: 65236.5,Sales: 983363.5,COGS: 538460,Profit: 444903.5,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2838`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 993300,Discounts: 39973.5,Sales: 953326.5,COGS: 329940,Profit: 623386.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1536`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 30720,Discounts: 3049.2,Sales: 27670.8,COGS: 16940,Profit: 10730.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1291`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 25820,Discounts: 1193.4,Sales: 24626.6,COGS: 6630,Profit: 17996.6,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1213`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 8491,Discounts: 515.97,Sales: 7975.03,COGS: 4095,Profit: 3880.03,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2370`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 28440,Discounts: 1706.4,Sales: 26733.6,COGS: 4740,Profit: 21993.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1979`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 13853,Discounts: 328.23,Sales: 13524.77,COGS: 2605,Profit: 10919.77,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2879`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57580,Discounts: 1751.4,Sales: 55828.6,COGS: 9730,Profit: 46098.6,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1707`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34140,Discounts: 1868.4,Sales: 32271.6,COGS: 10380,Profit: 21891.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2933`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 20531,Discounts: 226.8,Sales: 20304.2,COGS: 1800,Profit: 18504.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1014`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 12168,Discounts: 2124.36,Sales: 10043.64,COGS: 5901,Profit: 4142.64,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `693`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 10395,Discounts: 3547.8,Sales: 6847.2,COGS: 26280,Profit: 19432.8,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3741`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26187,Discounts: 226.8,Sales: 25960.2,COGS: 1800,Profit: 24160.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3995`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27965,Discounts: 328.23,Sales: 27636.77,COGS: 2605,Profit: 25031.77,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `953`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19060,Discounts: 1868.4,Sales: 17191.6,COGS: 10380,Profit: 6811.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2530`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 37950,Discounts: 2201.18,Sales: 35748.82,COGS: 16305,Profit: 19443.82,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1372`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 27440,Discounts: 0,Sales: 27440,COGS: 16185,Profit: 11255,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2762`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 55240,Discounts: 0,Sales: 55240,COGS: 13210,Profit: 42030,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1464`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21960,Discounts: 0,Sales: 21960,COGS: 21780,Profit: 180,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `719`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 10785,Discounts: 0,Sales: 10785,COGS: 8880,Profit: 1905,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3576`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53640,Discounts: 0,Sales: 53640,COGS: 24700,Profit: 28940,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4422`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1547700,Discounts: 0,Sales: 1547700,COGS: 393380,Profit: 1154320,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3649`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 54735,Discounts: 0,Sales: 54735,COGS: 9210,Profit: 45525,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4172`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 50064,Discounts: 0,Sales: 50064,COGS: 7554,Profit: 42510,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3841`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 76820,Discounts: 0,Sales: 76820,COGS: 18990,Profit: 57830,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3726`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 44712,Discounts: 0,Sales: 44712,COGS: 4635,Profit: 40077,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2625`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 39375,Discounts: 0,Sales: 39375,COGS: 24700,Profit: 14675,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1958`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 244750,Discounts: 0,Sales: 244750,COGS: 319860,Profit: 75110,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3271`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 981300,Discounts: 0,Sales: 981300,COGS: 239500,Profit: 741800,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2091`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 14637,Discounts: 0,Sales: 14637,COGS: 10730,Profit: 3907,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2530`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 316250,Discounts: 0,Sales: 316250,COGS: 41400,Profit: 274850,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2825`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 42375,Discounts: 0,Sales: 42375,COGS: 6150,Profit: 36225,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2513`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 50260,Discounts: 0,Sales: 50260,COGS: 2920,Profit: 47340,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `883`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 13245,Discounts: 0,Sales: 13245,COGS: 9740,Profit: 3505,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 25044,Discounts: 0,Sales: 25044,COGS: 7554,Profit: 17490,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2563`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 897050,Discounts: 0,Sales: 897050,COGS: 261560,Profit: 635490,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2846`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34152,Discounts: 0,Sales: 34152,COGS: 1101,Profit: 33051,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `997`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 6979,Discounts: 0,Sales: 6979,COGS: 4415,Profit: 2564,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3421`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 51315,Discounts: 0,Sales: 51315,COGS: 5490,Profit: 45825,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Marchesa`,UnitsSold: `70000`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 1050000,Discounts: 0,Sales: 1050000,COGS: 5490,Profit: 1044510,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2291`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 687300,Discounts: 0,Sales: 687300,COGS: 197000,Profit: 490300,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2290`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 34350,Discounts: 0,Sales: 34350,COGS: 24720,Profit: 9630,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2133`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14931,Discounts: 0,Sales: 14931,COGS: 5715,Profit: 9216,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3475`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1216250,Discounts: 0,Sales: 1216250,COGS: 448500,Profit: 767750,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3686`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 44232,Discounts: 0,Sales: 44232,COGS: 2736,Profit: 41496,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3319`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 49785,Discounts: 0,Sales: 49785,COGS: 21520,Profit: 28265,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3617`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 72340,Discounts: 0,Sales: 72340,COGS: 18170,Profit: 54170,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1266`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 443100,Discounts: 0,Sales: 443100,COGS: 393380,Profit: 49720,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `894`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6258,Discounts: 0,Sales: 6258,COGS: 7465,Profit: 1207,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2725`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 340625,Discounts: 0,Sales: 340625,COGS: 216480,Profit: 124145,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3061`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 36732,Discounts: 0,Sales: 36732,COGS: 6483,Profit: 30249,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3958`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1385300,Discounts: 0,Sales: 1385300,COGS: 261560,Profit: 1123740,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3920`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 47040,Discounts: 0,Sales: 47040,COGS: 4635,Profit: 42405,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3381`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422625,Discounts: 0,Sales: 422625,COGS: 338520,Profit: 84105,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1094`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 136750,Discounts: 0,Sales: 136750,COGS: 41400,Profit: 95350,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4307`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1292100,Discounts: 0,Sales: 1292100,COGS: 500250,Profit: 791850,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `878`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10536,Discounts: 0,Sales: 10536,COGS: 8514,Profit: 2022,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `496`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 7440,Discounts: 0,Sales: 7440,COGS: 21780,Profit: 14340,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3367`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 50505,Discounts: 0,Sales: 50505,COGS: 8880,Profit: 41625,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3880`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1358000,Discounts: 0,Sales: 1358000,COGS: 397020,Profit: 960980,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2055`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 616500,Discounts: 0,Sales: 616500,COGS: 537750,Profit: 78750,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4041`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 80820,Discounts: 0,Sales: 80820,COGS: 18170,Profit: 62650,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `3237`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1132950,Discounts: 0,Sales: 1132950,COGS: 715000,Profit: 417950,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `630`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 7560,Discounts: 0,Sales: 7560,COGS: 5859,Profit: 1701,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4210`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 526250,Discounts: 0,Sales: 526250,COGS: 506340,Profit: 19910,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1127`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 22540,Discounts: 0,Sales: 22540,COGS: 18990,Profit: 3550,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3438`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 24066,Discounts: 0,Sales: 24066,COGS: 8430,Profit: 15636,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2015`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 24180,Discounts: 0,Sales: 24180,COGS: 6423,Profit: 17757,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2534`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 17738,Discounts: 0,Sales: 17738,COGS: 5715,Profit: 12023,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1384`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 20760,Discounts: 0,Sales: 20760,COGS: 6150,Profit: 14610,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3561`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 24927,Discounts: 276.15,Sales: 24650.85,COGS: 19725,Profit: 4925.85,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1823`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27345,Discounts: 344.4,Sales: 27000.6,COGS: 22960,Profit: 4040.6,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19565,Discounts: 72.1,Sales: 19492.9,COGS: 5150,Profit: 14342.9,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `457`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3199,Discounts: 44.73,Sales: 3154.27,COGS: 3195,Profit: 40.73,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3785`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26495,Discounts: 92.82,Sales: 26402.18,COGS: 6630,Profit: 19772.18,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `748`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 8976,Discounts: 222.96,Sales: 8753.04,COGS: 5574,Profit: 3179.04,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1021`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 357350,Discounts: 4235,Sales: 353115,COGS: 314600,Profit: 38515,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2076`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 14532,Discounts: 177.03,Sales: 14354.97,COGS: 12645,Profit: 1709.97,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `4316`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51792,Discounts: 173.4,Sales: 51618.6,COGS: 4335,Profit: 47283.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2654`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 331750,Discounts: 412.5,Sales: 331337.5,COGS: 39600,Profit: 291737.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4174`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50088,Discounts: 320.52,Sales: 49767.48,COGS: 8013,Profit: 41754.48,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1675`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 20100,Discounts: 91.92,Sales: 20008.08,COGS: 2298,Profit: 17710.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1572`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 471600,Discounts: 1482,Sales: 470118,COGS: 123500,Profit: 346618,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3736`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1307600,Discounts: 4889.5,Sales: 1302710.5,COGS: 363220,Profit: 939490.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1914`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 669900,Discounts: 7542.5,Sales: 662357.5,COGS: 560300,Profit: 102057.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2742`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 41130,Discounts: 332.1,Sales: 40797.9,COGS: 22140,Profit: 18657.9,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1499`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 449700,Discounts: 6903,Sales: 442797,COGS: 575250,Profit: 132453,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 75440,Discounts: 275.1,Sales: 75164.9,COGS: 13755,Profit: 61409.9,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1112`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 7784,Discounts: 128.1,Sales: 7655.9,COGS: 9150,Profit: 1494.1,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1723`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 516900,Discounts: 7494,Sales: 509406,COGS: 624500,Profit: 115094,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `423`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 52875,Discounts: 828.75,Sales: 52046.25,COGS: 79560,Profit: 27513.75,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2368`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 35520,Discounts: 227.1,Sales: 35292.9,COGS: 15140,Profit: 20152.9,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 11102,Discounts: 314.48,Sales: 10787.52,COGS: 22462.5,Profit: 11674.98,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3386`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 423250,Discounts: 908.75,Sales: 422341.25,COGS: 87240,Profit: 335101.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `852`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 106500,Discounts: 983.75,Sales: 105516.25,COGS: 94440,Profit: 11076.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2783`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 347875,Discounts: 2278.75,Sales: 345596.25,COGS: 218760,Profit: 126836.25,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2684`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 40260,Discounts: 112.05,Sales: 40147.95,COGS: 7470,Profit: 32677.95,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4393`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 52716,Discounts: 91.92,Sales: 52624.08,COGS: 2298,Profit: 50326.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4083`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1224900,Discounts: 8715,Sales: 1216185,COGS: 726250,Profit: 489935,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2816`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 985600,Discounts: 7542.5,Sales: 978057.5,COGS: 560300,Profit: 417757.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4294`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 85880,Discounts: 772.8,Sales: 85107.2,COGS: 38640,Profit: 46467.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 25.34,Sales: 19966.66,COGS: 1810,Profit: 18156.66,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1407`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 175875,Discounts: 1153.75,Sales: 174721.25,COGS: 110760,Profit: 63961.25,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3850`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 481250,Discounts: 828.75,Sales: 480421.25,COGS: 79560,Profit: 400861.25,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 146.44,Sales: 19845.56,COGS: 10460,Profit: 9385.56,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1265`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 8855,Discounts: 18.41,Sales: 8836.59,COGS: 1315,Profit: 7521.59,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3892`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1362200,Discounts: 3302.25,Sales: 1358897.75,COGS: 245310,Profit: 1113587.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3068`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 383500,Discounts: 908.75,Sales: 382591.25,COGS: 87240,Profit: 295351.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2181`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 272625,Discounts: 983.75,Sales: 271641.25,COGS: 94440,Profit: 177201.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1356`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 406800,Discounts: 2958,Sales: 403842,COGS: 246500,Profit: 157342,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2545`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 763500,Discounts: 1482,Sales: 762018,COGS: 123500,Profit: 638518,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1814`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 634900,Discounts: 4889.5,Sales: 630010.5,COGS: 363220,Profit: 266790.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1495`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 186875,Discounts: 2180,Sales: 184695,COGS: 209280,Profit: 24585,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1154`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 13848,Discounts: 238.68,Sales: 13609.32,COGS: 5967,Profit: 7642.32,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `4180`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 62700,Discounts: 48.15,Sales: 62651.85,COGS: 3210,Profit: 59441.85,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1463`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 182875,Discounts: 1856.25,Sales: 181018.75,COGS: 89100,Profit: 91918.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `215`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 2580,Discounts: 310.8,Sales: 2269.2,COGS: 3885,Profit: 1615.8,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4099`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 1229700,Discounts: 1284,Sales: 1228416,COGS: 53500,Profit: 1174916,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2660`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 18620,Discounts: 300.3,Sales: 18319.7,COGS: 10725,Profit: 7594.7,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `566`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 198100,Discounts: 19964,Sales: 178136,COGS: 741520,Profit: 563384,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3255`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 39060,Discounts: 274.08,Sales: 38785.92,COGS: 3426,Profit: 35359.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15440,Discounts: 626.4,Sales: 14813.6,COGS: 15660,Profit: 846.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1135`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13620,Discounts: 165.6,Sales: 13454.4,COGS: 2070,Profit: 11384.4,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3826`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 478250,Discounts: 4150,Sales: 474100,COGS: 199200,Profit: 274900,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 17895,Discounts: 708.9,Sales: 17186.1,COGS: 23630,Profit: 6443.9,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2530`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 759000,Discounts: 5508,Sales: 753492,COGS: 229500,Profit: 523992,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3451`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1035300,Discounts: 10368,Sales: 1024932,COGS: 432000,Profit: 592932,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3059`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 36708,Discounts: 274.08,Sales: 36433.92,COGS: 3426,Profit: 33007.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3957`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 494625,Discounts: 1655,Sales: 492970,COGS: 79440,Profit: 413530,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3444`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 41328,Discounts: 310.8,Sales: 41017.2,COGS: 3885,Profit: 37132.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4388`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 548500,Discounts: 2022.5,Sales: 546477.5,COGS: 97080,Profit: 449397.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2106`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 263250,Discounts: 5362.5,Sales: 257887.5,COGS: 257400,Profit: 487.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `799`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 9588,Discounts: 428.4,Sales: 9159.6,COGS: 5355,Profit: 3804.6,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3154`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 946200,Discounts: 11496,Sales: 934704,COGS: 479000,Profit: 455704,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4108`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1437800,Discounts: 19964,Sales: 1417836,COGS: 741520,Profit: 676316,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3760`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 470000,Discounts: 6822.5,Sales: 463177.5,COGS: 327480,Profit: 135697.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `377`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 5655,Discounts: 577.5,Sales: 5077.5,COGS: 19250,Profit: 14172.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2110`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14770,Discounts: 281.82,Sales: 14488.18,COGS: 10065,Profit: 4423.18,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2334`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28008,Discounts: 253.2,Sales: 27754.8,COGS: 3165,Profit: 24589.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `580`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 6960,Discounts: 260.16,Sales: 6699.84,COGS: 3252,Profit: 3447.84,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2610`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 52200,Discounts: 626.4,Sales: 51573.6,COGS: 15660,Profit: 35913.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1598`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 559300,Discounts: 20762,Sales: 538538,COGS: 771160,Profit: 232622,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1459`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 510650,Discounts: 20139,Sales: 490511,COGS: 748020,Profit: 257509,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3284`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 410500,Discounts: 2022.5,Sales: 408477.5,COGS: 97080,Profit: 311397.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1197`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 149625,Discounts: 5362.5,Sales: 144262.5,COGS: 257400,Profit: 113137.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3774`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 45288,Discounts: 253.2,Sales: 45034.8,COGS: 3165,Profit: 41869.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2303`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 46060,Discounts: 217.6,Sales: 45842.4,COGS: 5440,Profit: 40402.4,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2572`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 30864,Discounts: 260.16,Sales: 30603.84,COGS: 3252,Profit: 27351.84,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `320`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 40000,Discounts: 1655,Sales: 38345,COGS: 79440,Profit: 41095,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2126`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 637800,Discounts: 1284,Sales: 636516,COGS: 53500,Profit: 583016,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3275`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1146250,Discounts: 20139,Sales: 1126111,COGS: 748020,Profit: 378091,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3582`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 447750,Discounts: 6822.5,Sales: 440927.5,COGS: 327480,Profit: 113447.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `783`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 274050,Discounts: 1862,Sales: 272188,COGS: 69160,Profit: 203028,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1202`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 420700,Discounts: 13580,Sales: 407120,COGS: 504400,Profit: 97280,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4056`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1216800,Discounts: 1554,Sales: 1215246,COGS: 64750,Profit: 1150496,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2144`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 643200,Discounts: 6606,Sales: 636594,COGS: 275250,Profit: 361344,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3502`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 437750,Discounts: 5690,Sales: 432060,COGS: 273120,Profit: 158940,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1397`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 488950,Discounts: 20762,Sales: 468188,COGS: 771160,Profit: 302972,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `679`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 13580,Discounts: 494.4,Sales: 13085.6,COGS: 12360,Profit: 725.6,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2351`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 47020,Discounts: 376.4,Sales: 46643.6,COGS: 9410,Profit: 37233.6,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2043`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 612900,Discounts: 11496,Sales: 601404,COGS: 479000,Profit: 122404,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3565`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 445625,Discounts: 15913.13,Sales: 429711.88,COGS: 509220,Profit: 79508.13,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1401`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 28020,Discounts: 1548,Sales: 26472,COGS: 25800,Profit: 672,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2077`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 623100,Discounts: 6201,Sales: 616899,COGS: 172250,Profit: 444649,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 43716,Discounts: 700.92,Sales: 43015.08,COGS: 5841,Profit: 37174.08,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1105`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 13260,Discounts: 326.88,Sales: 12933.12,COGS: 2724,Profit: 10209.12,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2960`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20720,Discounts: 411.18,Sales: 20308.82,COGS: 9790,Profit: 10518.82,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1201`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 14412,Discounts: 684.36,Sales: 13727.64,COGS: 5703,Profit: 8024.64,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2321`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 16247,Discounts: 114.24,Sales: 16132.76,COGS: 2720,Profit: 13412.76,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3640`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1274000,Discounts: 18868.5,Sales: 1255131.5,COGS: 467220,Profit: 787911.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3972`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 496500,Discounts: 4826.25,Sales: 491673.75,COGS: 154440,Profit: 337233.75,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3878`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 484750,Discounts: 6397.5,Sales: 478352.5,COGS: 204720,Profit: 273632.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2278`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 683400,Discounts: 21910.5,Sales: 661489.5,COGS: 608625,Profit: 52864.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1075`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 134375,Discounts: 6652.5,Sales: 127722.5,COGS: 212880,Profit: 85157.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4050`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 48600,Discounts: 684.36,Sales: 47915.64,COGS: 5703,Profit: 42212.64,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3035`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 910500,Discounts: 6201,Sales: 904299,COGS: 172250,Profit: 732049,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3636`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 454500,Discounts: 5887.5,Sales: 448612.5,COGS: 188400,Profit: 260212.5,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1379`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 16548,Discounts: 493.02,Sales: 16054.98,COGS: 4108.5,Profit: 11946.48,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4492`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 561500,Discounts: 7533.75,Sales: 553966.25,COGS: 241080,Profit: 312886.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `764`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11460,Discounts: 875.25,Sales: 10584.75,COGS: 19450,Profit: 8865.25,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1744`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 218000,Discounts: 4826.25,Sales: 213173.75,COGS: 154440,Profit: 58733.75,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2341`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 292625,Discounts: 6397.5,Sales: 286227.5,COGS: 204720,Profit: 81507.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 479375,Discounts: 7533.75,Sales: 471841.25,COGS: 241080,Profit: 230761.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1161`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 348300,Discounts: 25596,Sales: 322704,COGS: 711000,Profit: 388296,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `876`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10512,Discounts: 689.76,Sales: 9822.24,COGS: 5748,Profit: 4074.24,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1705`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 213125,Discounts: 5887.5,Sales: 207237.5,COGS: 188400,Profit: 18837.5,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1805`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 541500,Discounts: 16866,Sales: 524634,COGS: 468500,Profit: 56134,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `389`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 136150,Discounts: 17241,Sales: 118909,COGS: 426920,Profit: 308011,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 41175,Discounts: 875.25,Sales: 40299.75,COGS: 19450,Profit: 20849.75,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1459`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 29180,Discounts: 498.6,Sales: 28681.4,COGS: 8310,Profit: 20371.4,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3938`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27566,Discounts: 369.6,Sales: 27196.4,COGS: 8800,Profit: 18396.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4236`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 84720,Discounts: 2310.3,Sales: 82409.7,COGS: 38505,Profit: 43904.7,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3627`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 43524,Discounts: 892.44,Sales: 42631.56,COGS: 7437,Profit: 35194.56,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1756`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 26340,Discounts: 1218.6,Sales: 25121.4,COGS: 20310,Profit: 4811.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `307`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 4605,Discounts: 1218.6,Sales: 3386.4,COGS: 20310,Profit: 16923.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4489`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 67335,Discounts: 1356.6,Sales: 65978.4,COGS: 22610,Profit: 43368.4,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2167`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 43340,Discounts: 588.8,Sales: 42751.2,COGS: 7360,Profit: 35391.2,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1137`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 7959,Discounts: 798.28,Sales: 7160.72,COGS: 14255,Profit: 7094.28,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1222`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 366600,Discounts: 24252,Sales: 342348,COGS: 505250,Profit: 162902,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `489`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 171150,Discounts: 3836,Sales: 167314,COGS: 71240,Profit: 96074,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4133`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 61995,Discounts: 1180.2,Sales: 60814.8,COGS: 19670,Profit: 41144.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2743`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 822900,Discounts: 22308,Sales: 800592,COGS: 464750,Profit: 335842,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3699`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 25893,Discounts: 798.28,Sales: 25094.72,COGS: 14255,Profit: 10839.72,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `4460`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1338000,Discounts: 24252,Sales: 1313748,COGS: 505250,Profit: 808498,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1232`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 154000,Discounts: 5690,Sales: 148310,COGS: 136560,Profit: 11750,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 18102,Discounts: 1190.28,Sales: 16911.72,COGS: 21255,Profit: 4343.28,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1332`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 166500,Discounts: 3975,Sales: 162525,COGS: 95400,Profit: 67125,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4487`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1346100,Discounts: 16974,Sales: 1329126,COGS: 353625,Profit: 975501,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3862`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1158600,Discounts: 35016,Sales: 1123584,COGS: 729500,Profit: 394084,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1765`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 617750,Discounts: 48300,Sales: 569450,COGS: 897000,Profit: 327550,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3533`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 441625,Discounts: 14940,Sales: 426685,COGS: 358560,Profit: 68125,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2016`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 30240,Discounts: 130.8,Sales: 30109.2,COGS: 2180,Profit: 27929.2,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58760,Discounts: 1659.2,Sales: 57100.8,COGS: 20740,Profit: 36360.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3352`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67040,Discounts: 844.8,Sales: 66195.2,COGS: 10560,Profit: 55635.2,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4409`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 66135,Discounts: 402.6,Sales: 65732.4,COGS: 6710,Profit: 59022.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3323`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 49845,Discounts: 908.4,Sales: 48936.6,COGS: 15140,Profit: 33796.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2430`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 850500,Discounts: 3836,Sales: 846664,COGS: 71240,Profit: 775424,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `535`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 66875,Discounts: 5690,Sales: 61185,COGS: 136560,Profit: 75375,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1523`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 18276,Discounts: 703.2,Sales: 17572.8,COGS: 4395,Profit: 13177.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3631`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 72620,Discounts: 2116.8,Sales: 70503.2,COGS: 26460,Profit: 44043.2,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1782`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 623700,Discounts: 30478,Sales: 593222,COGS: 566020,Profit: 27202,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `347`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 4164,Discounts: 415.68,Sales: 3748.32,COGS: 2598,Profit: 1150.32,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `4147`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1451450,Discounts: 4886,Sales: 1446564,COGS: 90740,Profit: 1355824,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3509`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1228150,Discounts: 30478,Sales: 1197672,COGS: 566020,Profit: 631652,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2774`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 41610,Discounts: 908.4,Sales: 40701.6,COGS: 15140,Profit: 25561.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2943`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1030050,Discounts: 26110,Sales: 1003940,COGS: 484900,Profit: 519040,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4037`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 504625,Discounts: 5370,Sales: 499255,COGS: 128880,Profit: 370375,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4146`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1451100,Discounts: 26698,Sales: 1424402,COGS: 495820,Profit: 928582,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `4123`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 61845,Discounts: 402.6,Sales: 61442.4,COGS: 6710,Profit: 54732.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1337`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 467950,Discounts: 24892,Sales: 443058,COGS: 462280,Profit: 19222,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `599`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 4193,Discounts: 405.65,Sales: 3787.35,COGS: 5795,Profit: 2007.65,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `725`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 5075,Discounts: 480.2,Sales: 4594.8,COGS: 6860,Profit: 2265.2,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `477`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 3339,Discounts: 822.15,Sales: 2516.85,COGS: 11745,Profit: 9228.15,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 16275,Discounts: 941.15,Sales: 15333.85,COGS: 13445,Profit: 1888.85,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `675`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 8100,Discounts: 1458.6,Sales: 6641.4,COGS: 7293,Profit: 651.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2990`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35880,Discounts: 1458.6,Sales: 34421.4,COGS: 7293,Profit: 27128.4,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1072`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 7504,Discounts: 941.15,Sales: 6562.85,COGS: 13445,Profit: 6882.15,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1048`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7336,Discounts: 589.05,Sales: 6746.95,COGS: 8415,Profit: 1668.05,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `469`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 5628,Discounts: 673.8,Sales: 4954.2,COGS: 3369,Profit: 1585.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `804`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 5628,Discounts: 405.65,Sales: 5222.35,COGS: 5795,Profit: 572.65,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4240`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50880,Discounts: 1119,Sales: 49761,COGS: 5595,Profit: 44166,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1976`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 23712,Discounts: 669.6,Sales: 23042.4,COGS: 3348,Profit: 19694.4,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1984`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39680,Discounts: 1563,Sales: 38117,COGS: 15630,Profit: 22487,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `480`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 144000,Discounts: 14865,Sales: 129135,COGS: 247750,Profit: 118615,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `3551`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 24857,Discounts: 355.6,Sales: 24501.4,COGS: 5080,Profit: 19421.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1205`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 18075,Discounts: 2093.25,Sales: 15981.75,COGS: 27910,Profit: 11928.25,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2480`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17360,Discounts: 199.5,Sales: 17160.5,COGS: 2850,Profit: 14310.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2926`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 20482,Discounts: 870.45,Sales: 19611.55,COGS: 12435,Profit: 7176.55,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3210`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1123500,Discounts: 24228.75,Sales: 1099271.25,COGS: 359970,Profit: 739301.25,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3221`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 402625,Discounts: 22668.75,Sales: 379956.25,COGS: 435240,Profit: 55283.75,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2389`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 836150,Discounts: 12600,Sales: 823550,COGS: 187200,Profit: 636350,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1127`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13524,Discounts: 1405.2,Sales: 12118.8,COGS: 7026,Profit: 5092.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `319`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 95700,Discounts: 16500,Sales: 79200,COGS: 275000,Profit: 195800,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1610`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 32200,Discounts: 1303,Sales: 30897,COGS: 13030,Profit: 17867,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4100`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 512500,Discounts: 18700,Sales: 493800,COGS: 359040,Profit: 134760,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1012`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 126500,Discounts: 14906.25,Sales: 111593.75,COGS: 286200,Profit: 174606.25,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3337`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1001100,Discounts: 24105,Sales: 976995,COGS: 401750,Profit: 575245,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3955`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27685,Discounts: 814.45,Sales: 26870.55,COGS: 11635,Profit: 15235.55,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4347`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1304100,Discounts: 14865,Sales: 1289235,COGS: 247750,Profit: 1041485,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1548`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 541800,Discounts: 10535,Sales: 531265,COGS: 156520,Profit: 374745,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2153`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 32295,Discounts: 1965,Sales: 30330,COGS: 26200,Profit: 4130,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3789`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1326150,Discounts: 21490,Sales: 1304660,COGS: 319280,Profit: 985380,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4364`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 87280,Discounts: 1389,Sales: 85891,COGS: 13890,Profit: 72001,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4126`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 515750,Discounts: 5381.25,Sales: 510368.75,COGS: 103320,Profit: 407048.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1343`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 167875,Discounts: 4400,Sales: 163475,COGS: 84480,Profit: 78995,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `245`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 4900,Discounts: 1802,Sales: 3098,COGS: 18020,Profit: 14922,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3376`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67520,Discounts: 2663,Sales: 64857,COGS: 26630,Profit: 38227,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 9807,Discounts: 747.6,Sales: 9059.4,COGS: 10680,Profit: 1620.6,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3483`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 52245,Discounts: 1587,Sales: 50658,COGS: 21160,Profit: 29498,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2244`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 33660,Discounts: 416.25,Sales: 33243.75,COGS: 5550,Profit: 27693.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1360`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20400,Discounts: 2145.75,Sales: 18254.25,COGS: 28610,Profit: 10355.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `279`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 34875,Discounts: 5043.75,Sales: 29831.25,COGS: 96840,Profit: 67008.75,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2521`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 882350,Discounts: 10535,Sales: 871815,COGS: 156520,Profit: 715295,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2433`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 48660,Discounts: 2832,Sales: 45828,COGS: 28320,Profit: 17508,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1738`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 34760,Discounts: 1579,Sales: 33181,COGS: 15790,Profit: 17391,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1106`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 138250,Discounts: 5381.25,Sales: 132868.75,COGS: 103320,Profit: 29548.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3379`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422375,Discounts: 4400,Sales: 417975,COGS: 84480,Profit: 333495,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1221`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 24420,Discounts: 1033,Sales: 23387,COGS: 10330,Profit: 13057,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `213`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 63900,Discounts: 18750,Sales: 45150,COGS: 312500,Profit: 267350,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3335`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 66700,Discounts: 1389,Sales: 65311,COGS: 13890,Profit: 51421,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1260`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 25200,Discounts: 1265,Sales: 23935,COGS: 12650,Profit: 11285,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3034`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 60680,Discounts: 2297,Sales: 58383,COGS: 22970,Profit: 35413,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2929`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 58580,Discounts: 2663,Sales: 55917,COGS: 26630,Profit: 29287,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2389`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 16723,Discounts: 199.5,Sales: 16523.5,COGS: 2850,Profit: 13673.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3086`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21602,Discounts: 870.45,Sales: 20731.55,COGS: 12435,Profit: 8296.55,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `745`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 260750,Discounts: 23625,Sales: 237125,COGS: 351000,Profit: 113875,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1266`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 443100,Discounts: 9660,Sales: 433440,COGS: 143520,Profit: 289920,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3790`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1326500,Discounts: 21490,Sales: 1305010,COGS: 319280,Profit: 985730,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4287`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1286100,Discounts: 18750,Sales: 1267350,COGS: 312500,Profit: 954850,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 47895,Discounts: 3420.9,Sales: 44474.1,COGS: 38010,Profit: 6464.1,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1967`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39340,Discounts: 1341,Sales: 37999,COGS: 11175,Profit: 26824,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `631`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 9465,Discounts: 2559.6,Sales: 6905.4,COGS: 28440,Profit: 21534.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3469`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 41628,Discounts: 404.64,Sales: 41223.36,COGS: 1686,Profit: 39537.36,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `570`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 6840,Discounts: 1655.28,Sales: 5184.72,COGS: 6897,Profit: 1712.28,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3215`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 48225,Discounts: 1827,Sales: 46398,COGS: 20300,Profit: 26098,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3754`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 26278,Discounts: 110.46,Sales: 26167.54,COGS: 1315,Profit: 24852.54,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2187`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 273375,Discounts: 6652.5,Sales: 266722.5,COGS: 106440,Profit: 160282.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1959`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 685650,Discounts: 20580,Sales: 665070,COGS: 254800,Profit: 410270,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2181`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 763350,Discounts: 30660,Sales: 732690,COGS: 379600,Profit: 353090,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3559`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 24913,Discounts: 589.26,Sales: 24323.74,COGS: 7015,Profit: 17308.74,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2205`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 26460,Discounts: 1960.56,Sales: 24499.44,COGS: 8169,Profit: 16330.44,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1890`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 661500,Discounts: 31416,Sales: 630084,COGS: 388960,Profit: 241124,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1296`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 15552,Discounts: 1655.28,Sales: 13896.72,COGS: 6897,Profit: 6999.72,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `775`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 271250,Discounts: 15267,Sales: 255983,COGS: 189020,Profit: 66963,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2417`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 302125,Discounts: 7140,Sales: 294985,COGS: 114240,Profit: 180745,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1158`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 144750,Discounts: 20662.5,Sales: 124087.5,COGS: 330600,Profit: 206512.5,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `803`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 12045,Discounts: 1377,Sales: 10668,COGS: 15300,Profit: 4632,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3705`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1296750,Discounts: 31416,Sales: 1265334,COGS: 388960,Profit: 876374,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `589`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 4123,Discounts: 629.16,Sales: 3493.84,COGS: 7490,Profit: 3996.16,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3797`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1139100,Discounts: 21978,Sales: 1117122,COGS: 305250,Profit: 811872,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1321`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 462350,Discounts: 43596,Sales: 418754,COGS: 539760,Profit: 121006,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3999`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 59985,Discounts: 2559.6,Sales: 57425.4,COGS: 28440,Profit: 28985.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4256`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 29792,Discounts: 629.16,Sales: 29162.84,COGS: 7490,Profit: 21672.84,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1643`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 492900,Discounts: 21978,Sales: 470922,COGS: 305250,Profit: 165672,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1912`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 38240,Discounts: 1347.6,Sales: 36892.4,COGS: 11230,Profit: 25662.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1610`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 483000,Discounts: 43848,Sales: 439152,COGS: 609000,Profit: 169848,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2160`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 270000,Discounts: 14906.25,Sales: 255093.75,COGS: 238500,Profit: 16593.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `466`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 163100,Discounts: 35259,Sales: 127841,COGS: 436540,Profit: 308699,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `328`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 114800,Discounts: 15267,Sales: 99533,COGS: 189020,Profit: 89487,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `4099`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 28693,Discounts: 589.26,Sales: 28103.74,COGS: 7015,Profit: 21088.74,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `990`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 346500,Discounts: 43596,Sales: 302904,COGS: 539760,Profit: 236856,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1433`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 28660,Discounts: 2108.4,Sales: 26551.6,COGS: 17570,Profit: 8981.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1478`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 22170,Discounts: 1978.2,Sales: 20191.8,COGS: 21980,Profit: 1788.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3798`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 56970,Discounts: 1568.7,Sales: 55401.3,COGS: 17430,Profit: 37971.3,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `447`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 6705,Discounts: 1037.7,Sales: 5667.3,COGS: 11530,Profit: 5862.7,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1711`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34220,Discounts: 2108.4,Sales: 32111.6,COGS: 17570,Profit: 14541.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `745`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 14900,Discounts: 1201.2,Sales: 13698.8,COGS: 10010,Profit: 3688.8,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1732`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 12124,Discounts: 559.86,Sales: 11564.14,COGS: 6665,Profit: 4899.14,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1759`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 26385,Discounts: 1037.7,Sales: 25347.3,COGS: 11530,Profit: 13817.3,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `338`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 4056,Discounts: 610.68,Sales: 3445.32,COGS: 2181,Profit: 1264.32,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3911`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 46932,Discounts: 1582.56,Sales: 45349.44,COGS: 5652,Profit: 39697.44,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3691`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 73820,Discounts: 2567.6,Sales: 71252.4,COGS: 18340,Profit: 52912.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `4473`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 53676,Discounts: 1965.6,Sales: 51710.4,COGS: 7020,Profit: 44690.4,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `383`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 4596,Discounts: 1967.28,Sales: 2628.72,COGS: 7026,Profit: 4397.28,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3105`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21735,Discounts: 505.19,Sales: 21229.81,COGS: 5155,Profit: 16074.81,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1062`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 15930,Discounts: 1325.1,Sales: 14604.9,COGS: 12620,Profit: 1984.9,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4083`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 28581,Discounts: 556.15,Sales: 28024.85,COGS: 5675,Profit: 22349.85,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3974`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 27818,Discounts: 268.03,Sales: 27549.97,COGS: 2735,Profit: 24814.97,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3723`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 26061,Discounts: 775.18,Sales: 25285.82,COGS: 7910,Profit: 17375.82,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2435`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 29220,Discounts: 1460.34,Sales: 27759.66,COGS: 5215.5,Profit: 22544.16,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1678`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 20136,Discounts: 1860.6,Sales: 18275.4,COGS: 6645,Profit: 11630.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1763`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 12341,Discounts: 775.18,Sales: 11565.82,COGS: 7910,Profit: 3655.82,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4473`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31311,Discounts: 556.15,Sales: 30754.85,COGS: 5675,Profit: 25079.85,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1246`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 436100,Discounts: 43144.5,Sales: 392955.5,COGS: 457860,Profit: 64904.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1615`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 484500,Discounts: 9408,Sales: 475092,COGS: 112000,Profit: 363092,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `749`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 224700,Discounts: 45801,Sales: 178899,COGS: 545250,Profit: 366351,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1318`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 26360,Discounts: 2766.4,Sales: 23593.6,COGS: 19760,Profit: 3833.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2882`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 864600,Discounts: 45801,Sales: 818799,COGS: 545250,Profit: 273549,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3039`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 379875,Discounts: 21875,Sales: 358000,COGS: 300000,Profit: 58000,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2484`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 745200,Discounts: 35742,Sales: 709458,COGS: 425500,Profit: 283958,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3169`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 950700,Discounts: 9408,Sales: 941292,COGS: 112000,Profit: 829292,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 510000,Discounts: 30738.75,Sales: 479261.25,COGS: 421560,Profit: 57701.25,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3943`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 59145,Discounts: 2206.05,Sales: 56938.95,COGS: 21010,Profit: 35928.95,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `784`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11760,Discounts: 3077.55,Sales: 8682.45,COGS: 29310,Profit: 20627.55,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `253`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5060,Discounts: 2149,Sales: 2911,COGS: 15350,Profit: 12439,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1316`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 394800,Discounts: 23583,Sales: 371217,COGS: 280750,Profit: 90467,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `808`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 242400,Discounts: 29484,Sales: 212916,COGS: 351000,Profit: 138084,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3295`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 39540,Discounts: 2320.92,Sales: 37219.08,COGS: 8289,Profit: 28930.08,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `520`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 3640,Discounts: 1041.25,Sales: 2598.75,COGS: 10625,Profit: 8026.25,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `799`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 239700,Discounts: 34839,Sales: 204861,COGS: 414750,Profit: 209889,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3942`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 78840,Discounts: 852.6,Sales: 77987.4,COGS: 6090,Profit: 71897.4,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2498`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 312250,Discounts: 18261.25,Sales: 293988.75,COGS: 250440,Profit: 43548.75,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2517`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 50340,Discounts: 2766.4,Sales: 47573.6,COGS: 19760,Profit: 27813.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3182`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 63640,Discounts: 1989.4,Sales: 61650.6,COGS: 14210,Profit: 47440.6,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1145`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 343500,Discounts: 28812,Sales: 314688,COGS: 343000,Profit: 28312,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `895`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 17900,Discounts: 823.2,Sales: 17076.8,COGS: 5880,Profit: 11196.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3814`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 45768,Discounts: 2725.38,Sales: 43042.62,COGS: 9733.5,Profit: 33309.12,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1188`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 356400,Discounts: 20139,Sales: 336261,COGS: 239750,Profit: 96511,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2233`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 669900,Discounts: 57687,Sales: 612213,COGS: 686750,Profit: 74537,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `421`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 52625,Discounts: 14393.75,Sales: 38231.25,COGS: 197400,Profit: 159168.75,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `269`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 94150,Discounts: 70462,Sales: 23688,COGS: 747760,Profit: 724072,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3766`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 470750,Discounts: 8697.5,Sales: 462052.5,COGS: 119280,Profit: 342772.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `952`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19040,Discounts: 1565.2,Sales: 17474.8,COGS: 11180,Profit: 6294.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2964`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 889200,Discounts: 28812,Sales: 860388,COGS: 343000,Profit: 517388,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1505`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10535,Discounts: 273.28,Sales: 10261.72,COGS: 2440,Profit: 7821.72,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1678`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 33560,Discounts: 2051.2,Sales: 31508.8,COGS: 12820,Profit: 18688.8,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4249`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 29743,Discounts: 143.92,Sales: 29599.08,COGS: 1285,Profit: 28314.08,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1677`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 33540,Discounts: 2051.2,Sales: 31488.8,COGS: 12820,Profit: 18668.8,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3051`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 381375,Discounts: 15400,Sales: 365975,COGS: 184800,Profit: 181175,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3372`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 50580,Discounts: 588,Sales: 49992,COGS: 4900,Profit: 45092,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1686`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 590100,Discounts: 38136,Sales: 551964,COGS: 354120,Profit: 197844,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3086`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 46290,Discounts: 3001.2,Sales: 43288.8,COGS: 25010,Profit: 18278.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4150`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 83000,Discounts: 1132.8,Sales: 81867.2,COGS: 7080,Profit: 74787.2,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3027`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 60540,Discounts: 1032,Sales: 59508,COGS: 6450,Profit: 53058,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4359`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1307700,Discounts: 37488,Sales: 1270212,COGS: 390500,Profit: 879712,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3628`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1088400,Discounts: 30792,Sales: 1057608,COGS: 320750,Profit: 736858,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1589`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 23835,Discounts: 853.2,Sales: 22981.8,COGS: 7110,Profit: 15871.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2679`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 334875,Discounts: 11140,Sales: 323735,COGS: 133680,Profit: 190055,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 23807,Discounts: 705.04,Sales: 23101.96,COGS: 6295,Profit: 16806.96,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2815`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19705,Discounts: 613.2,Sales: 19091.8,COGS: 5475,Profit: 13616.8,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2964`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 59280,Discounts: 2185.6,Sales: 57094.4,COGS: 13660,Profit: 43434.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4173`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1251900,Discounts: 59040,Sales: 1192860,COGS: 615000,Profit: 577860,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1157`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 8099,Discounts: 379.68,Sales: 7719.32,COGS: 3390,Profit: 4329.32,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3065`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21455,Discounts: 894.88,Sales: 20560.12,COGS: 7990,Profit: 12570.12,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1962`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 13734,Discounts: 1349.04,Sales: 12384.96,COGS: 12045,Profit: 339.96,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 81600,Discounts: 3094.4,Sales: 78505.6,COGS: 19340,Profit: 59165.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1713`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34260,Discounts: 4788.8,Sales: 29471.2,COGS: 29930,Profit: 458.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 978250,Discounts: 60088,Sales: 918162,COGS: 557960,Profit: 360202,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4082`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 28574,Discounts: 1089.76,Sales: 27484.24,COGS: 9730,Profit: 17754.24,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1691`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 591850,Discounts: 38136,Sales: 553714,COGS: 354120,Profit: 199594,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2305`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27660,Discounts: 574.08,Sales: 27085.92,COGS: 1794,Profit: 25291.92,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3401`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 23807,Discounts: 1627.92,Sales: 22179.08,COGS: 14535,Profit: 7644.08,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2288`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 16016,Discounts: 1309.28,Sales: 14706.72,COGS: 11690,Profit: 3016.72,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2399`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 719700,Discounts: 9264,Sales: 710436,COGS: 96500,Profit: 613936,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4086`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1225800,Discounts: 15240,Sales: 1210560,COGS: 158750,Profit: 1051810,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2651`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 927850,Discounts: 16086,Sales: 911764,COGS: 149370,Profit: 762394,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3971`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27797,Discounts: 1309.28,Sales: 26487.72,COGS: 11690,Profit: 14797.72,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2512`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 879200,Discounts: 10668,Sales: 868532,COGS: 99060,Profit: 769472,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 960750,Discounts: 11816,Sales: 948934,COGS: 109720,Profit: 839214,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1903`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 570900,Discounts: 51216,Sales: 519684,COGS: 533500,Profit: 13816,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `647`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 194100,Discounts: 19392,Sales: 174708,COGS: 202000,Profit: 27292,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2914`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 58280,Discounts: 1132.8,Sales: 57147.2,COGS: 7080,Profit: 50067.2,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1889`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 13223,Discounts: 1627.92,Sales: 11595.08,COGS: 14535,Profit: 2939.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1466`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 29320,Discounts: 2185.6,Sales: 27134.4,COGS: 13660,Profit: 13474.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `887`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 266100,Discounts: 59040,Sales: 207060,COGS: 615000,Profit: 407940,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `395`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 7900,Discounts: 2432,Sales: 5468,COGS: 15200,Profit: 9732,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1693`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 25395,Discounts: 853.2,Sales: 24541.8,COGS: 7110,Profit: 17431.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2459`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 29508,Discounts: 1320,Sales: 28188,COGS: 4125,Profit: 24063,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2649`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 794700,Discounts: 15240,Sales: 779460,COGS: 158750,Profit: 620710,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3608`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 72160,Discounts: 698.4,Sales: 71461.6,COGS: 4365,Profit: 67096.6,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1073`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 321900,Discounts: 29538,Sales: 292362,COGS: 273500,Profit: 18862,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1754`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 21048,Discounts: 396.36,Sales: 20651.64,COGS: 1101,Profit: 19550.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2167`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 650100,Discounts: 102667.5,Sales: 547432.5,COGS: 950625,Profit: 403192.5,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1319`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 461650,Discounts: 52479,Sales: 409171,COGS: 433160,Profit: 23989,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1679`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 503700,Discounts: 8694,Sales: 495006,COGS: 80500,Profit: 414506,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1252`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 15024,Discounts: 2506.68,Sales: 12517.32,COGS: 6963,Profit: 5554.32,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3493`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 436625,Discounts: 20891.25,Sales: 415733.75,COGS: 222840,Profit: 192893.75,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1697`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 11879,Discounts: 1014.93,Sales: 10864.07,COGS: 8055,Profit: 2809.07,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1156`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 144500,Discounts: 31466.25,Sales: 113033.75,COGS: 335640,Profit: 222606.25,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `726`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 217800,Discounts: 9018,Sales: 208782,COGS: 83500,Profit: 125282,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1153`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 345900,Discounts: 69255,Sales: 276645,COGS: 641250,Profit: 364605,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2720`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 952000,Discounts: 76135.5,Sales: 875864.5,COGS: 628420,Profit: 247444.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 54870,Discounts: 4961.25,Sales: 49908.75,COGS: 36750,Profit: 13158.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2950`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 885000,Discounts: 29538,Sales: 855462,COGS: 273500,Profit: 581962,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1821`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27315,Discounts: 1656.45,Sales: 25658.55,COGS: 12270,Profit: 13388.55,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4174`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 50088,Discounts: 396.36,Sales: 49691.64,COGS: 1101,Profit: 48590.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1127`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 338100,Discounts: 35748,Sales: 302352,COGS: 331000,Profit: 28648,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2209`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 26508,Discounts: 1917,Sales: 24591,COGS: 5325,Profit: 19266,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `862`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 107750,Discounts: 31466.25,Sales: 76283.75,COGS: 335640,Profit: 259356.25,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3805`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 57075,Discounts: 330.75,Sales: 56744.25,COGS: 2450,Profit: 54294.25,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1415`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 424500,Discounts: 102424.5,Sales: 322075.5,COGS: 948375,Profit: 626299.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2231`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 780850,Discounts: 41170.5,Sales: 739679.5,COGS: 339820,Profit: 399859.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3649`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 456125,Discounts: 6378.75,Sales: 449746.25,COGS: 68040,Profit: 381706.25,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2948`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 368500,Discounts: 23737.5,Sales: 344762.5,COGS: 253200,Profit: 91562.5,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3395`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1188250,Discounts: 39973.5,Sales: 1148276.5,COGS: 329940,Profit: 818336.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2650`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31800,Discounts: 2112.48,Sales: 29687.52,COGS: 5868,Profit: 23819.52,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `585`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 175500,Discounts: 71793,Sales: 103707,COGS: 664750,Profit: 561043,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1316`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 460600,Discounts: 42572.25,Sales: 418027.75,COGS: 351390,Profit: 66637.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4459`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 53508,Discounts: 950.4,Sales: 52557.6,COGS: 2640,Profit: 49917.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2711`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 813300,Discounts: 50409,Sales: 762891,COGS: 466750,Profit: 296141,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2621`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31452,Discounts: 2412.72,Sales: 29039.28,COGS: 6702,Profit: 22337.28,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3613`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 54195,Discounts: 1656.45,Sales: 52538.55,COGS: 12270,Profit: 40268.55,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1847`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 230875,Discounts: 9866.25,Sales: 221008.75,COGS: 105240,Profit: 115768.75,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2996`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1048600,Discounts: 65236.5,Sales: 983363.5,COGS: 538460,Profit: 444903.5,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2838`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 993300,Discounts: 39973.5,Sales: 953326.5,COGS: 329940,Profit: 623386.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1302`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 19530,Discounts: 1309.5,Sales: 18220.5,COGS: 9700,Profit: 8520.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1536`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 30720,Discounts: 3049.2,Sales: 27670.8,COGS: 16940,Profit: 10730.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1291`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 25820,Discounts: 1193.4,Sales: 24626.6,COGS: 6630,Profit: 17996.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1213`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 8491,Discounts: 515.97,Sales: 7975.03,COGS: 4095,Profit: 3880.03,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2370`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 28440,Discounts: 1706.4,Sales: 26733.6,COGS: 4740,Profit: 21993.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1979`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 13853,Discounts: 328.23,Sales: 13524.77,COGS: 2605,Profit: 10919.77,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2879`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57580,Discounts: 1751.4,Sales: 55828.6,COGS: 9730,Profit: 46098.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1707`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34140,Discounts: 1868.4,Sales: 32271.6,COGS: 10380,Profit: 21891.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2933`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 20531,Discounts: 226.8,Sales: 20304.2,COGS: 1800,Profit: 18504.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1014`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 12168,Discounts: 2124.36,Sales: 10043.64,COGS: 5901,Profit: 4142.64,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `693`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 10395,Discounts: 3547.8,Sales: 6847.2,COGS: 26280,Profit: 19432.8,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3741`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26187,Discounts: 226.8,Sales: 25960.2,COGS: 1800,Profit: 24160.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3116`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 62320,Discounts: 4827.6,Sales: 57492.4,COGS: 26820,Profit: 30672.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3995`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27965,Discounts: 328.23,Sales: 27636.77,COGS: 2605,Profit: 25031.77,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `953`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19060,Discounts: 1868.4,Sales: 17191.6,COGS: 10380,Profit: 6811.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2530`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 37950,Discounts: 2201.18,Sales: 35748.82,COGS: 16305,Profit: 19443.82,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2565`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 30780,Discounts: 330.48,Sales: 30449.52,COGS: 918,Profit: 29531.52,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `4297`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51564,Discounts: 463.2,Sales: 51100.8,COGS: 1158,Profit: 49942.8,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2871`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20097,Discounts: 1629.6,Sales: 18467.4,COGS: 11640,Profit: 6827.4,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3537`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 42444,Discounts: 463.2,Sales: 41980.8,COGS: 1158,Profit: 40822.8,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1598`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 199750,Discounts: 43068.75,Sales: 156681.25,COGS: 413460,Profit: 256778.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2616`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 327000,Discounts: 18525,Sales: 308475,COGS: 177840,Profit: 130635,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2836`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 992600,Discounts: 80955,Sales: 911645,COGS: 601380,Profit: 310265,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `4023`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 502875,Discounts: 22550,Sales: 480325,COGS: 216480,Profit: 263845,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3994`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 59910,Discounts: 3108,Sales: 56802,COGS: 20720,Profit: 36082,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2928`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58560,Discounts: 3908,Sales: 54652,COGS: 19540,Profit: 35112,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2912`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 873600,Discounts: 17730,Sales: 855870,COGS: 147750,Profit: 708120,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3671`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 55065,Discounts: 3250.5,Sales: 51814.5,COGS: 21670,Profit: 30144.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2778`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 55560,Discounts: 482,Sales: 55078,COGS: 2410,Profit: 52668,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `405`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 6075,Discounts: 1021.5,Sales: 5053.5,COGS: 6810,Profit: 1756.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2013`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 30195,Discounts: 765,Sales: 29430,COGS: 5100,Profit: 24330,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2634`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 39510,Discounts: 1185,Sales: 38325,COGS: 7900,Profit: 30425,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4166`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1458100,Discounts: 22365,Sales: 1435735,COGS: 166140,Profit: 1269595,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `355`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 44375,Discounts: 19950,Sales: 24425,COGS: 191520,Profit: 167095,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2382`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 714600,Discounts: 68820,Sales: 645780,COGS: 573500,Profit: 72280,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `4170`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 83400,Discounts: 482,Sales: 82918,COGS: 2410,Profit: 80508,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `892`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6244,Discounts: 1865.5,Sales: 4378.5,COGS: 13325,Profit: 8946.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2200`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 275000,Discounts: 23950,Sales: 251050,COGS: 229920,Profit: 21130,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3389`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1016700,Discounts: 25590,Sales: 991110,COGS: 213250,Profit: 777860,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2990`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 373750,Discounts: 4262.5,Sales: 369487.5,COGS: 40920,Profit: 328567.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4013`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 60195,Discounts: 961.5,Sales: 59233.5,COGS: 6410,Profit: 52823.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `739`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 258650,Discounts: 98245,Sales: 160405,COGS: 729820,Profit: 569415,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1989`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 596700,Discounts: 12960,Sales: 583740,COGS: 108000,Profit: 475740,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2991`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 897300,Discounts: 68820,Sales: 828480,COGS: 573500,Profit: 254980,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `4237`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 63555,Discounts: 3250.5,Sales: 60304.5,COGS: 21670,Profit: 38634.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1442`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 180250,Discounts: 31612.5,Sales: 148637.5,COGS: 303480,Profit: 154842.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2712`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 949200,Discounts: 65450,Sales: 883750,COGS: 486200,Profit: 397550,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1508`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 188500,Discounts: 7237.5,Sales: 181262.5,COGS: 69480,Profit: 111782.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4245`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1485750,Discounts: 78400,Sales: 1407350,COGS: 582400,Profit: 824950,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2630`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 789000,Discounts: 89790,Sales: 699210,COGS: 748250,Profit: 49040,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1182`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 14184,Discounts: 4224.6,Sales: 9959.4,COGS: 10561.5,Profit: 602.1,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1221`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 24420,Discounts: 4078,Sales: 20342,COGS: 20390,Profit: 48,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `963`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 11556,Discounts: 3088.8,Sales: 8467.2,COGS: 7722,Profit: 745.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3243`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1135050,Discounts: 24745,Sales: 1110305,COGS: 183820,Profit: 926485,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1120`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 16800,Discounts: 3108,Sales: 13692,COGS: 20720,Profit: 7028,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1174`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 352200,Discounts: 25590,Sales: 326610,COGS: 213250,Profit: 113360,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2541`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 30492,Discounts: 1581.36,Sales: 28910.64,COGS: 3594,Profit: 25316.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3246`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 22722,Discounts: 1949.64,Sales: 20772.36,COGS: 12660,Profit: 8112.36,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1531`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 18372,Discounts: 1581.36,Sales: 16790.64,COGS: 3594,Profit: 13196.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2526`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 37890,Discounts: 633.6,Sales: 37256.4,COGS: 3840,Profit: 33416.4,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1136`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 13632,Discounts: 623.04,Sales: 13008.96,COGS: 1416,Profit: 11592.96,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1983`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 13881,Discounts: 1215.83,Sales: 12665.17,COGS: 7895,Profit: 4770.17,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3259`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 39108,Discounts: 1326.6,Sales: 37781.4,COGS: 3015,Profit: 34766.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `3267`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 49005,Discounts: 5279.17,Sales: 43725.82,COGS: 31995,Profit: 11730.82,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `2454`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 29448,Discounts: 623.04,Sales: 28824.96,COGS: 1416,Profit: 27408.96,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `2643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 31716,Discounts: 2556.84,Sales: 29159.16,COGS: 5811,Profit: 23348.16,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `383`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 134050,Discounts: 30492,Sales: 103558,COGS: 205920,Profit: 102362,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2801`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 840300,Discounts: 92763,Sales: 747537,COGS: 702750,Profit: 44787,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1667`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 208375,Discounts: 33563.75,Sales: 174811.25,COGS: 292920,Profit: 118108.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3539`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53085,Discounts: 2574,Sales: 50511,COGS: 15600,Profit: 34911,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `4226`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 29582,Discounts: 2083.62,Sales: 27498.38,COGS: 13530,Profit: 13968.38,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2220`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 777000,Discounts: 29491,Sales: 747509,COGS: 199160,Profit: 548349,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `776`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15520,Discounts: 6582.4,Sales: 8937.6,COGS: 29920,Profit: 20982.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `553`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 8295,Discounts: 3559.05,Sales: 4735.95,COGS: 21570,Profit: 16834.05,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2107`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 632100,Discounts: 28809,Sales: 603291,COGS: 218250,Profit: 385041,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2468`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 49360,Discounts: 2468.4,Sales: 46891.6,COGS: 11220,Profit: 35671.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1905`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 666750,Discounts: 81023.25,Sales: 585726.75,COGS: 547170,Profit: 38556.75,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 43896,Discounts: 5314.32,Sales: 38581.68,COGS: 12078,Profit: 26503.68,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4301`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 51612,Discounts: 3201.66,Sales: 48410.34,COGS: 7276.5,Profit: 41133.84,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2446`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 48920,Discounts: 5266.8,Sales: 43653.2,COGS: 23940,Profit: 19713.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4209`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 63135,Discounts: 3273.6,Sales: 59861.4,COGS: 19840,Profit: 40021.4,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3353`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 419125,Discounts: 33563.75,Sales: 385561.25,COGS: 292920,Profit: 92641.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1401`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 28020,Discounts: 6582.4,Sales: 21437.6,COGS: 29920,Profit: 8482.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1865`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 559500,Discounts: 45078,Sales: 514422,COGS: 341500,Profit: 172922,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `463`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 9260,Discounts: 6171,Sales: 3089,COGS: 28050,Profit: 24961,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4177`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 62655,Discounts: 1080.75,Sales: 61574.25,COGS: 6550,Profit: 55024.25,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2523`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 883050,Discounts: 13244,Sales: 869806,COGS: 89440,Profit: 780366,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1930`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 13510,Discounts: 1392.16,Sales: 12117.84,COGS: 9040,Profit: 3077.84,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1301`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 15612,Discounts: 2288.88,Sales: 13323.12,COGS: 5202,Profit: 8121.12,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4125`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 515625,Discounts: 7617.5,Sales: 508007.5,COGS: 66480,Profit: 441527.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `607`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 12140,Discounts: 6457,Sales: 5683,COGS: 29350,Profit: 23667,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `478`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 59750,Discounts: 43518.75,Sales: 16231.25,COGS: 379800,Profit: 363568.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4489`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 89780,Discounts: 5783.8,Sales: 83996.2,COGS: 26290,Profit: 57706.2,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1504`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 188000,Discounts: 19703.75,Sales: 168296.25,COGS: 171960,Profit: 3663.75,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `3763`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 470375,Discounts: 13021.25,Sales: 457353.75,COGS: 113640,Profit: 343713.75,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2412`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 844200,Discounts: 13244,Sales: 830956,COGS: 89440,Profit: 741516,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2342`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 35130,Discounts: 3559.05,Sales: 31570.95,COGS: 21570,Profit: 10000.95,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4451`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 31157,Discounts: 292.6,Sales: 30864.4,COGS: 1900,Profit: 28964.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3796`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1328600,Discounts: 37212,Sales: 1291388,COGS: 230360,Profit: 1061028,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `2286`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 285750,Discounts: 36240,Sales: 249510,COGS: 289920,Profit: 40410,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3614`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 451750,Discounts: 32340,Sales: 419410,COGS: 258720,Profit: 160690,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1716`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 25740,Discounts: 4840.2,Sales: 20899.8,COGS: 26890,Profit: 5990.2,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1301`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 19515,Discounts: 1218.6,Sales: 18296.4,COGS: 6770,Profit: 11526.4,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4175`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1252500,Discounts: 63828,Sales: 1188672,COGS: 443250,Profit: 745422,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `975`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 6825,Discounts: 2032.8,Sales: 4792.2,COGS: 12100,Profit: 7307.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1154`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 8078,Discounts: 2296.56,Sales: 5781.44,COGS: 13670,Profit: 7888.56,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1873`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 37460,Discounts: 4116,Sales: 33344,COGS: 17150,Profit: 16194,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3766`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1129800,Discounts: 42696,Sales: 1087104,COGS: 296500,Profit: 790604,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3558`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1067400,Discounts: 125820,Sales: 941580,COGS: 873750,Profit: 67830,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3156`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1104600,Discounts: 37212,Sales: 1067388,COGS: 230360,Profit: 837028,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2994`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 374250,Discounts: 32340,Sales: 341910,COGS: 258720,Profit: 83190,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 41740,Discounts: 2172,Sales: 39568,COGS: 9050,Profit: 30518,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1056`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 21120,Discounts: 4116,Sales: 17004,COGS: 17150,Profit: 146,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1353`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 473550,Discounts: 66948,Sales: 406602,COGS: 414440,Profit: 7838,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `416`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 124800,Discounts: 48924,Sales: 75876,COGS: 339750,Profit: 263874,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3880`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1164000,Discounts: 77400,Sales: 1086600,COGS: 537500,Profit: 549100,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `809`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 283150,Discounts: 50274,Sales: 232876,COGS: 311220,Profit: 78344,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1892`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 28380,Discounts: 684,Sales: 27696,COGS: 3800,Profit: 23896,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2072`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 41440,Discounts: 2959.2,Sales: 38480.8,COGS: 12330,Profit: 26150.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3052`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1068200,Discounts: 58590,Sales: 1009610,COGS: 362700,Profit: 646910,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3121`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1092350,Discounts: 41412,Sales: 1050938,COGS: 256360,Profit: 794578,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2059`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 41180,Discounts: 2172,Sales: 39008,COGS: 9050,Profit: 29958,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4254`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 51048,Discounts: 3036.96,Sales: 48011.04,COGS: 6327,Profit: 41684.04,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1293`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 19395,Discounts: 6974.1,Sales: 12420.9,COGS: 38745,Profit: 26324.1,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1293`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 452550,Discounts: 26166,Sales: 426384,COGS: 161980,Profit: 264404,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `230`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 80500,Discounts: 41412,Sales: 39088,COGS: 256360,Profit: 217272,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1723`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 215375,Discounts: 35805,Sales: 179570,COGS: 286440,Profit: 106870,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `240`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 4800,Discounts: 2959.2,Sales: 1840.8,COGS: 12330,Profit: 10489.2,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2571`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 899850,Discounts: 11340,Sales: 888510,COGS: 70200,Profit: 818310,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1661`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 11627,Discounts: 2874.06,Sales: 8752.94,COGS: 17107.5,Profit: 8354.56,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4474`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31318,Discounts: 2296.56,Sales: 29021.44,COGS: 13670,Profit: 15351.44,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `833`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 12495,Discounts: 4586.4,Sales: 7908.6,COGS: 25480,Profit: 17571.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `674`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 13480,Discounts: 6051.6,Sales: 7428.4,COGS: 25215,Profit: 17786.6,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `778`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 9336,Discounts: 3831.84,Sales: 5504.16,COGS: 7983,Profit: 2478.84,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1457`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 29140,Discounts: 3674.4,Sales: 25465.6,COGS: 15310,Profit: 10155.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3158`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 22106,Discounts: 1252.44,Sales: 20853.56,COGS: 7455,Profit: 13398.56,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4095`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 81900,Discounts: 3674.4,Sales: 78225.6,COGS: 15310,Profit: 62915.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3170`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 38040,Discounts: 3975.84,Sales: 34064.16,COGS: 8283,Profit: 25781.16,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `493`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 7395,Discounts: 5005.65,Sales: 2389.35,COGS: 25670,Profit: 23280.65,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3286`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 49290,Discounts: 5005.65,Sales: 44284.35,COGS: 25670,Profit: 18614.35,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3563`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1247050,Discounts: 41996.5,Sales: 1205053.5,COGS: 239980,Profit: 965073.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4109`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1438150,Discounts: 81445,Sales: 1356705,COGS: 465400,Profit: 891305,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `3653`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 73060,Discounts: 1149.2,Sales: 71910.8,COGS: 4420,Profit: 67490.8,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2203`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 771050,Discounts: 44703.75,Sales: 726346.25,COGS: 255450,Profit: 470896.25,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2924`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20468,Discounts: 1181.18,Sales: 19286.82,COGS: 6490,Profit: 12796.82,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2650`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 31800,Discounts: 942.24,Sales: 30857.76,COGS: 1812,Profit: 29045.76,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1194`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 23880,Discounts: 5863,Sales: 18017,COGS: 22550,Profit: 4533,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3366`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 67320,Discounts: 3247.4,Sales: 64072.6,COGS: 12490,Profit: 51582.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 9275,Discounts: 1309.04,Sales: 7965.97,COGS: 7192.5,Profit: 773.47,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4243`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1272900,Discounts: 31473,Sales: 1241427,COGS: 201750,Profit: 1039677,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2887`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57740,Discounts: 6866.6,Sales: 50873.4,COGS: 26410,Profit: 24463.4,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3839`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 76780,Discounts: 7040.8,Sales: 69739.2,COGS: 27080,Profit: 42659.2,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1863`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 652050,Discounts: 119756,Sales: 532294,COGS: 684320,Profit: 152026,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2858`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 357250,Discounts: 25723.75,Sales: 331526.25,COGS: 189960,Profit: 141566.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2868`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34416,Discounts: 890.76,Sales: 33525.24,COGS: 1713,Profit: 31812.24,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3805`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 26635,Discounts: 2453.36,Sales: 24181.64,COGS: 13480,Profit: 10701.64,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3914`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 58710,Discounts: 3051.75,Sales: 55658.25,COGS: 15650,Profit: 40008.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `524`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 10480,Discounts: 3247.4,Sales: 7232.6,COGS: 12490,Profit: 5257.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3095`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1083250,Discounts: 16243.5,Sales: 1067006.5,COGS: 92820,Profit: 974186.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2410`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28920,Discounts: 1580.28,Sales: 27339.72,COGS: 3039,Profit: 24300.72,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4263`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 63945,Discounts: 7795.13,Sales: 56149.88,COGS: 39975,Profit: 16174.88,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2239`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 783650,Discounts: 119756,Sales: 663894,COGS: 684320,Profit: 20426,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `569`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3983,Discounts: 1082.9,Sales: 2900.1,COGS: 5950,Profit: 3049.9,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3889`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 46668,Discounts: 942.24,Sales: 45725.76,COGS: 1812,Profit: 43913.76,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1378`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20670,Discounts: 1287,Sales: 19383,COGS: 6600,Profit: 12783,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2253`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27036,Discounts: 639.6,Sales: 26396.4,COGS: 1230,Profit: 25166.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3202`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 960600,Discounts: 101595,Sales: 859005,COGS: 651250,Profit: 207755,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 46020,Discounts: 1580.28,Sales: 44439.72,COGS: 3039,Profit: 41400.72,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `2487`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 310875,Discounts: 25723.75,Sales: 285151.25,COGS: 189960,Profit: 95191.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4428`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 66420,Discounts: 3051.75,Sales: 63368.25,COGS: 15650,Profit: 47718.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1200`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 150000,Discounts: 26958.75,Sales: 123041.25,COGS: 199080,Profit: 76038.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2953`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 20671,Discounts: 1082.9,Sales: 19588.1,COGS: 5950,Profit: 13638.1,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1453`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 17436,Discounts: 639.6,Sales: 16796.4,COGS: 1230,Profit: 15566.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `865`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 10380,Discounts: 2761.2,Sales: 7618.8,COGS: 5310,Profit: 2308.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1072`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 21440,Discounts: 7221.2,Sales: 14218.8,COGS: 25790,Profit: 11571.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1737`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 34740,Discounts: 4880.4,Sales: 29859.6,COGS: 17430,Profit: 12429.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1535`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 10745,Discounts: 2936.08,Sales: 7808.92,COGS: 14980,Profit: 7171.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2532`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17724,Discounts: 274.4,Sales: 17449.6,COGS: 1400,Profit: 16049.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1765`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 12355,Discounts: 287.14,Sales: 12067.86,COGS: 1465,Profit: 10602.86,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1567`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10969,Discounts: 2936.08,Sales: 8032.92,COGS: 14980,Profit: 6947.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2640`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 39600,Discounts: 583.8,Sales: 39016.2,COGS: 2780,Profit: 36236.2,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3079`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 61580,Discounts: 6798.4,Sales: 54781.6,COGS: 24280,Profit: 30501.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4130`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 61950,Discounts: 3710.7,Sales: 58239.3,COGS: 17670,Profit: 40569.3,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 35256,Discounts: 2340.24,Sales: 32915.76,COGS: 4179,Profit: 28736.76,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3080`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21560,Discounts: 274.4,Sales: 21285.6,COGS: 1400,Profit: 19885.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1530`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 18360,Discounts: 2340.24,Sales: 16019.76,COGS: 4179,Profit: 11840.76,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `3537`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 42444,Discounts: 3385.2,Sales: 39058.8,COGS: 6045,Profit: 33013.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `2021`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 606300,Discounts: 33642,Sales: 572658,COGS: 200250,Profit: 372408,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1804`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 225500,Discounts: 17902.5,Sales: 207597.5,COGS: 122760,Profit: 84837.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1014`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 304200,Discounts: 62832,Sales: 241368,COGS: 374000,Profit: 132632,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2913`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 873900,Discounts: 42420,Sales: 831480,COGS: 252500,Profit: 578980,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `763`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 11445,Discounts: 3177.3,Sales: 8267.7,COGS: 15130,Profit: 6862.3,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1425`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21375,Discounts: 4830,Sales: 16545,COGS: 23000,Profit: 6455,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `4357`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 544625,Discounts: 49367.5,Sales: 495257.5,COGS: 338520,Profit: 156737.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2138`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 748300,Discounts: 109147.5,Sales: 639152.5,COGS: 579150,Profit: 60002.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3825`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1338750,Discounts: 58751,Sales: 1279999,COGS: 311740,Profit: 968259,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3393`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1187550,Discounts: 9800,Sales: 1177750,COGS: 52000,Profit: 1125750,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2215`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 15505,Discounts: 380.24,Sales: 15124.76,COGS: 1940,Profit: 13184.76,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2278`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 15946,Discounts: 1692.46,Sales: 14253.54,COGS: 8635,Profit: 5618.54,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `403`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 6045,Discounts: 4830,Sales: 1215,COGS: 23000,Profit: 21785,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `289`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5780,Discounts: 728,Sales: 5052,COGS: 2600,Profit: 2452,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `749`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11235,Discounts: 5187,Sales: 6048,COGS: 24700,Profit: 18652,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `372`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 5580,Discounts: 3660.3,Sales: 1919.7,COGS: 17430,Profit: 15510.3,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3781`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 45372,Discounts: 4895.52,Sales: 40476.48,COGS: 8742,Profit: 31734.48,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1785`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 12495,Discounts: 1696.38,Sales: 10798.62,COGS: 8655,Profit: 2143.62,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4029`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1410150,Discounts: 34300,Sales: 1375850,COGS: 182000,Profit: 1193850,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2813`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 33756,Discounts: 3732.96,Sales: 30023.04,COGS: 6666,Profit: 23357.04,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2150`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 752500,Discounts: 57673,Sales: 694827,COGS: 306020,Profit: 388807,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2093`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 732550,Discounts: 94178,Sales: 638372,COGS: 499720,Profit: 138652,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4391`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 548875,Discounts: 27562.5,Sales: 521312.5,COGS: 189000,Profit: 332312.5,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2695`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 53900,Discounts: 1696.8,Sales: 52203.2,COGS: 6060,Profit: 46143.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1337`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 401100,Discounts: 103320,Sales: 297780,COGS: 615000,Profit: 317220,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2621`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 786300,Discounts: 11298,Sales: 775002,COGS: 67250,Profit: 707752,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3735`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1120500,Discounts: 106512,Sales: 1013988,COGS: 634000,Profit: 379988,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4320`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 30240,Discounts: 2844.94,Sales: 27395.06,COGS: 14515,Profit: 12880.06,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2828`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 848400,Discounts: 106722,Sales: 741678,COGS: 635250,Profit: 106428,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `2586`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 775800,Discounts: 11298,Sales: 764502,COGS: 67250,Profit: 697252,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1248`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 374400,Discounts: 62832,Sales: 311568,COGS: 374000,Profit: 62432,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `4035`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1210500,Discounts: 42420,Sales: 1168080,COGS: 252500,Profit: 915580,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `359`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 125650,Discounts: 62769,Sales: 62881,COGS: 333060,Profit: 270179,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3926`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1177800,Discounts: 37296,Sales: 1140504,COGS: 222000,Profit: 918504,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `4247`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 530875,Discounts: 49770,Sales: 481105,COGS: 341280,Profit: 139825,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2695`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 32340,Discounts: 4158,Sales: 28182,COGS: 7425,Profit: 20757,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1104`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 16560,Discounts: 3660.3,Sales: 12899.7,COGS: 17430,Profit: 4530.3,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1449`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 17388,Discounts: 4895.52,Sales: 12492.48,COGS: 8742,Profit: 3750.48,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1131`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7917,Discounts: 1696.38,Sales: 6220.62,COGS: 8655,Profit: 2434.38,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1468`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 10276,Discounts: 1692.46,Sales: 8583.54,COGS: 8635,Profit: 51.46,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1272`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 19080,Discounts: 3927,Sales: 15153,COGS: 18700,Profit: 3547,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1403`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 175375,Discounts: 22012.5,Sales: 153362.5,COGS: 140880,Profit: 12482.5,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2161`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 270125,Discounts: 51881.25,Sales: 218243.75,COGS: 332040,Profit: 113796.25,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1937`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 242125,Discounts: 20343.75,Sales: 221781.25,COGS: 130200,Profit: 91581.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2879`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 863700,Discounts: 24570,Sales: 839130,COGS: 136500,Profit: 702630,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1330`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 26600,Discounts: 3474,Sales: 23126,COGS: 11580,Profit: 11546,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2426`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 36390,Discounts: 3631.5,Sales: 32758.5,COGS: 16140,Profit: 16618.5,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2033`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14231,Discounts: 2661.75,Sales: 11569.25,COGS: 12675,Profit: 1105.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2029`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 710150,Discounts: 149677.5,Sales: 560472.5,COGS: 741260,Profit: 180787.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1049`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 15735,Discounts: 5757.75,Sales: 9977.25,COGS: 25590,Profit: 15612.75,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1062`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 21240,Discounts: 801,Sales: 20439,COGS: 2670,Profit: 17769,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2509`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 313625,Discounts: 20343.75,Sales: 293281.25,COGS: 130200,Profit: 163081.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1743`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 26145,Discounts: 2643.75,Sales: 23501.25,COGS: 11750,Profit: 11751.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3418`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1196300,Discounts: 105367.5,Sales: 1090932.5,COGS: 521820,Profit: 569112.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1751`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 612850,Discounts: 112927.5,Sales: 499922.5,COGS: 559260,Profit: 59337.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3228`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 38736,Discounts: 1645.2,Sales: 37090.8,COGS: 2742,Profit: 34348.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1105`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 22100,Discounts: 879,Sales: 21221,COGS: 2930,Profit: 18291,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2778`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 33336,Discounts: 900,Sales: 32436,COGS: 1500,Profit: 30936,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1173`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 17595,Discounts: 6358.5,Sales: 11236.5,COGS: 28260,Profit: 17023.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3160`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 395000,Discounts: 12431.25,Sales: 382568.75,COGS: 79560,Profit: 303008.75,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `4322`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1296600,Discounts: 115830,Sales: 1180770,COGS: 643500,Profit: 537270,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1901`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 237625,Discounts: 45712.5,Sales: 191912.5,COGS: 292560,Profit: 100647.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2980`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35760,Discounts: 1645.2,Sales: 34114.8,COGS: 2742,Profit: 31372.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4068`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 81360,Discounts: 2596.5,Sales: 78763.5,COGS: 8655,Profit: 70108.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2105`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 31575,Discounts: 1107,Sales: 30468,COGS: 4920,Profit: 25548,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1647`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 32940,Discounts: 801,Sales: 32139,COGS: 2670,Profit: 29469,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `235`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 3525,Discounts: 2643.75,Sales: 881.25,COGS: 11750,Profit: 10868.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3617`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 452125,Discounts: 55387.5,Sales: 396737.5,COGS: 354480,Profit: 42257.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); + this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2106`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 263250,Discounts: 10350,Sales: 252900,COGS: 66240,Profit: 186660,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2351`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 47020,Discounts: 879,Sales: 46141,COGS: 2930,Profit: 43211,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1897`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 569100,Discounts: 111375,Sales: 457725,COGS: 618750,Profit: 161025,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `647`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 194100,Discounts: 24570,Sales: 169530,COGS: 136500,Profit: 33030,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3621`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 25347,Discounts: 1436.4,Sales: 23910.6,COGS: 6840,Profit: 17070.6,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3221`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 22547,Discounts: 759.15,Sales: 21787.85,COGS: 3615,Profit: 18172.85,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); + this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `493`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 5916,Discounts: 3250.8,Sales: 2665.2,COGS: 5418,Profit: 2752.8,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index d4b1281e9..591a7aeab 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.0", "igniteui-angular-inputs": "17.3.0", "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", From 46f66a81627b97c81a906c19f33477fce668a069 Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Mon, 15 Apr 2024 19:29:06 +0300 Subject: [PATCH 062/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.4.15.6 --- samples/charts/data-chart/data-legend/src/app.component.html | 4 ++-- samples/charts/data-chart/data-tooltip/src/app.component.html | 4 ++-- .../scatter-bubble-chart-fill-scale/src/app.component.html | 4 ++-- .../scatter-bubble-chart-fill-scale/src/app.component.ts | 2 +- .../src/app.component.html | 4 ++-- .../scatter-bubble-chart-single-source/src/app.component.html | 2 +- .../scatter-bubble-chart-styling/src/app.component.html | 4 ++-- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/samples/charts/data-chart/data-legend/src/app.component.html b/samples/charts/data-chart/data-legend/src/app.component.html index 34688ac31..555001940 100644 --- a/samples/charts/data-chart/data-legend/src/app.component.html +++ b/samples/charts/data-chart/data-legend/src/app.component.html @@ -38,7 +38,7 @@ xMemberPath="deathRate" yMemberPath="birthRate" radiusMemberPath="population" - [radiusScale]="SizeScale1" + [radiusScale]="sizeScale1" title="Africa" radiusMemberAsLegendLabel="Population: " xMemberAsLegendLabel="Death Rate: " @@ -53,7 +53,7 @@ xMemberPath="deathRate" yMemberPath="birthRate" radiusMemberPath="population" - [radiusScale]="SizeScale2" + [radiusScale]="sizeScale2" title="Europe" radiusMemberAsLegendLabel="Population: " xMemberAsLegendLabel="Death Rate: " diff --git a/samples/charts/data-chart/data-tooltip/src/app.component.html b/samples/charts/data-chart/data-tooltip/src/app.component.html index 778bd3970..fd3c33ce7 100644 --- a/samples/charts/data-chart/data-tooltip/src/app.component.html +++ b/samples/charts/data-chart/data-tooltip/src/app.component.html @@ -31,7 +31,7 @@ xMemberPath="deathRate" yMemberPath="birthRate" radiusMemberPath="population" - [radiusScale]="SizeScale1" + [radiusScale]="sizeScale1" title="Africa" radiusMemberAsLegendLabel="Population: " xMemberAsLegendLabel="Death Rate: " @@ -46,7 +46,7 @@ xMemberPath="deathRate" yMemberPath="birthRate" radiusMemberPath="population" - [radiusScale]="SizeScale2" + [radiusScale]="sizeScale2" title="Europe" radiusMemberAsLegendLabel="Population: " xMemberAsLegendLabel="Death Rate: " diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html index 8ef10c444..5334a49f7 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html @@ -58,7 +58,7 @@ xMemberPath="population" yMemberPath="publicDebt" radiusMemberPath="gdpPerCapita" - [radiusScale]="SizeScale1" + [radiusScale]="sizeScale1" fillMemberPath="gdpPerCapita" [xAxis]="xAxis" [yAxis]="yAxis" @@ -66,7 +66,7 @@ markerType="Circle" markerOutline="black" showDefaultTooltip="true" - [fillScale]="ValueBrushScale1"> + [fillScale]="valueBrushScale1">
diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts index 8621fb96e..4348e8d6a 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts @@ -56,7 +56,7 @@ export class AppComponent implements AfterViewInit valueBrushScale1.isLogarithmic = false; valueBrushScale1.minimumValue = 0; valueBrushScale1.maximumValue = 100000; - valueBrushScale1.brushes = "rgba(26, 161, 226, 1) rgba(24, 154, 217, 1) rgba(22, 146, 206, 1) rgba(19, 133, 188, 1) rgba(15, 121, 171, 1) rgba(12, 107, 153, 1) rgba(9, 94, 136, 1) rgba(5, 82, 119, 1) rgba(2, 70, 105, 1) rgba(0, 63, 94, 1)"; + valueBrushScale1.brushes = ["rgba(26, 161, 226, 1)", "rgba(24, 154, 217, 1)", "rgba(22, 146, 206, 1)", "rgba(19, 133, 188, 1)", "rgba(15, 121, 171, 1)", "rgba(12, 107, 153, 1)", "rgba(9, 94, 136, 1)", "rgba(5, 82, 119, 1)", "rgba(2, 70, 105, 1)", "rgba(0, 63, 94, 1)"]; this._valueBrushScale1 = valueBrushScale1; } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html index ac81e3df9..fc39d6b1b 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html @@ -40,7 +40,7 @@ [dataSource]="countryStatsAfrica" markerType="Circle" showDefaultTooltip="true" - [radiusScale]="SizeScale1"> + [radiusScale]="sizeScale1"> + [radiusScale]="sizeScale2"> diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html index 346190e03..672b6b1c7 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html @@ -27,7 +27,7 @@ xMemberPath="population" yMemberPath="publicDebt" radiusMemberPath="gdpPerCapita" - [radiusScale]="SizeScale1" + [radiusScale]="sizeScale1" fillMemberPath="gdpPerCapita" [xAxis]="xAxis" [yAxis]="yAxis" diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html index d7da0190e..7ec0ba1aa 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html @@ -44,7 +44,7 @@ markerFillOpacity="0.5" markerThickness="2" showDefaultTooltip="true" - [radiusScale]="SizeScale1"> + [radiusScale]="sizeScale1"> + [radiusScale]="sizeScale2"> Date: Mon, 15 Apr 2024 14:13:16 -0400 Subject: [PATCH 063/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.4.15.7 --- .../package.json | 3 -- .../src/app.component.html | 29 ----------------- .../src/app.component.ts | 32 ++----------------- .../src/app.module.ts | 4 +-- 4 files changed, 3 insertions(+), 65 deletions(-) diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 591a7aeab..aab01e53b 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -20,9 +20,6 @@ "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.0", "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html index 5334a49f7..c038ab111 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html @@ -1,33 +1,4 @@
-
- - - - - - -
= 25000){ - fillScale.maximumValue = args.newValue; - } - else{ - fillScale.minimumValue = args.newValue; - } - } - } diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.module.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.module.ts index 47d634286..db571d6e9 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.module.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.module.ts @@ -6,7 +6,6 @@ import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; import { AppComponent } from "./app.component"; import { IgxNumberAbbreviatorModule, IgxDataChartCoreModule, IgxDataChartScatterModule, IgxDataChartScatterCoreModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule } from 'igniteui-angular-charts'; -import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; @NgModule({ bootstrap: [AppComponent], @@ -23,8 +22,7 @@ import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; IgxDataChartScatterModule, IgxDataChartScatterCoreModule, IgxDataChartInteractivityModule, - IgxDataChartAnnotationModule, - IgxPropertyEditorPanelModule + IgxDataChartAnnotationModule ], providers: [], schemas: [] From 50a801088ebe8578fc1a5d9b3d5de064e4a459d8 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 24 Apr 2024 09:16:42 -0400 Subject: [PATCH 064/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.4.23.2 (#168) Co-authored-by: tfsbuild --- .../src/CountryDemographicEurope.ts | 2 +- .../src/CountryDemographicEurope.ts | 2 +- .../src/WorldDebtAndPopulation.ts | 1845 ------ .../src/WorldStats.ts | 5443 +++++++++++++++++ .../src/app.component.html | 6 +- .../src/app.component.ts | 12 +- .../src/WorldDebtAndPopulation.ts | 1845 ------ .../src/WorldStats.ts | 5443 +++++++++++++++++ .../src/app.component.html | 6 +- .../src/app.component.ts | 12 +- .../src/CountryDemographicEurope.ts | 2 +- 11 files changed, 10907 insertions(+), 3711 deletions(-) delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldDebtAndPopulation.ts create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldDebtAndPopulation.ts create mode 100644 samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts diff --git a/samples/charts/data-chart/data-legend/src/CountryDemographicEurope.ts b/samples/charts/data-chart/data-legend/src/CountryDemographicEurope.ts index 28a586e0f..7b578d2a7 100644 --- a/samples/charts/data-chart/data-legend/src/CountryDemographicEurope.ts +++ b/samples/charts/data-chart/data-legend/src/CountryDemographicEurope.ts @@ -83,7 +83,7 @@ export class CountryDemographicEurope extends Array) { - Object.assign(this, init); - } - - public countryCode: string; - public countryName: string; - public gdpPerCapita: number; - public unemploymentRate: number; - public televisions: number; - public publicDebt: number; - public population: number; - public oilProduction: number; - public medianAge: number; - public internetUsers: number; - public electricityProduction: number; - public birthRate: number; - -} -export class WorldDebtAndPopulation extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new WorldDebtAndPopulationItem( - { - countryCode: `AL`, - countryName: `Albania`, - gdpPerCapita: 5800, - unemploymentRate: 13, - televisions: 700000, - publicDebt: 51, - population: 3619778, - oilProduction: 7006, - medianAge: 30, - internetUsers: 471200, - electricityProduction: 5385, - birthRate: 15 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `DZ`, - countryName: `Algeria`, - gdpPerCapita: 6700, - unemploymentRate: 12, - televisions: 3100000, - publicDebt: 18, - population: 33769668, - oilProduction: 1358000, - medianAge: 26, - internetUsers: 3500000, - electricityProduction: 31910, - birthRate: 17 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AO`, - countryName: `Angola`, - gdpPerCapita: 7800, - unemploymentRate: 0, - televisions: 196000, - publicDebt: 12, - population: 12531357, - oilProduction: 1712000, - medianAge: 18, - internetUsers: 100000, - electricityProduction: 2585, - birthRate: 44 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AR`, - countryName: `Argentina`, - gdpPerCapita: 13100, - unemploymentRate: 9, - televisions: 7950000, - publicDebt: 56, - population: 40134425, - oilProduction: 730000, - medianAge: 30, - internetUsers: 9309000, - electricityProduction: 101100, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AW`, - countryName: `Aruba`, - gdpPerCapita: 21800, - unemploymentRate: 7, - televisions: 20000, - publicDebt: 46, - population: 101541, - oilProduction: 2356, - medianAge: 38, - internetUsers: 24000, - electricityProduction: 770, - birthRate: 13 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AU`, - countryName: `Australia`, - gdpPerCapita: 37300, - unemploymentRate: 4, - televisions: 10150000, - publicDebt: 16, - population: 21007310, - oilProduction: 540000, - medianAge: 37, - internetUsers: 11240000, - electricityProduction: 236700, - birthRate: 13 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AT`, - countryName: `Austria`, - gdpPerCapita: 39300, - unemploymentRate: 4, - televisions: 10150000, - publicDebt: 59, - population: 8205533, - oilProduction: 23320, - medianAge: 42, - internetUsers: 4277000, - electricityProduction: 61020, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AZ`, - countryName: `Azerbaijan`, - gdpPerCapita: 8000, - unemploymentRate: 1, - televisions: 170000, - publicDebt: 7, - population: 8177717, - oilProduction: 934700, - medianAge: 28, - internetUsers: 1036000, - electricityProduction: 23800, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BH`, - countryName: `Bahrain`, - gdpPerCapita: 33900, - unemploymentRate: 15, - televisions: 275000, - publicDebt: 31, - population: 718306, - oilProduction: 184300, - medianAge: 30, - internetUsers: 250000, - electricityProduction: 8187, - birthRate: 17 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BD`, - countryName: `Bangladesh`, - gdpPerCapita: 1400, - unemploymentRate: 3, - televisions: 770000, - publicDebt: 37, - population: 153546896, - oilProduction: 6746, - medianAge: 23, - internetUsers: 500000, - electricityProduction: 21350, - birthRate: 29 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BE`, - countryName: `Belgium`, - gdpPerCapita: 36200, - unemploymentRate: 8, - televisions: 4720000, - publicDebt: 85, - population: 10403951, - oilProduction: 9000, - medianAge: 41, - internetUsers: 5220000, - electricityProduction: 80840, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BT`, - countryName: `Bhutan`, - gdpPerCapita: 5200, - unemploymentRate: 3, - televisions: 11000, - publicDebt: 81, - population: 682321, - oilProduction: 0, - medianAge: 24, - internetUsers: 40000, - electricityProduction: 2000, - birthRate: 21 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BO`, - countryName: `Bolivia`, - gdpPerCapita: 4400, - unemploymentRate: 8, - televisions: 900000, - publicDebt: 46, - population: 9247816, - oilProduction: 46470, - medianAge: 23, - internetUsers: 1000000, - electricityProduction: 5293, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BA`, - countryName: `Bosnia and Herzegovina`, - gdpPerCapita: 6100, - unemploymentRate: 46, - televisions: 0, - publicDebt: 34, - population: 4590310, - oilProduction: 0, - medianAge: 39, - internetUsers: 1055000, - electricityProduction: 12220, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BW`, - countryName: `Botswana`, - gdpPerCapita: 14300, - unemploymentRate: 8, - televisions: 31000, - publicDebt: 5, - population: 1842323, - oilProduction: 0, - medianAge: 21, - internetUsers: 80000, - electricityProduction: 912, - birthRate: 23 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BR`, - countryName: `Brazil`, - gdpPerCapita: 9500, - unemploymentRate: 9, - televisions: 36500000, - publicDebt: 45, - population: 196342592, - oilProduction: 1797000, - medianAge: 28, - internetUsers: 50000000, - electricityProduction: 396400, - birthRate: 19 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BG`, - countryName: `Bulgaria`, - gdpPerCapita: 11800, - unemploymentRate: 8, - televisions: 3310000, - publicDebt: 11, - population: 7262675, - oilProduction: 3661, - medianAge: 41, - internetUsers: 1899000, - electricityProduction: 45700, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CM`, - countryName: `Cameroon`, - gdpPerCapita: 2200, - unemploymentRate: 30, - televisions: 450000, - publicDebt: 16, - population: 18467692, - oilProduction: 85300, - medianAge: 19, - internetUsers: 370000, - electricityProduction: 4090, - birthRate: 35 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CA`, - countryName: `Canada`, - gdpPerCapita: 38600, - unemploymentRate: 6, - televisions: 21500000, - publicDebt: 64, - population: 33212696, - oilProduction: 3310000, - medianAge: 40, - internetUsers: 28000000, - electricityProduction: 609600, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CL`, - countryName: `Chile`, - gdpPerCapita: 14300, - unemploymentRate: 7, - televisions: 3150000, - publicDebt: 4, - population: 16454143, - oilProduction: 15100, - medianAge: 31, - internetUsers: 557000, - electricityProduction: 47600, - birthRate: 15 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CN`, - countryName: `China`, - gdpPerCapita: 5400, - unemploymentRate: 4, - televisions: 400000000, - publicDebt: 18, - population: 1330044544, - oilProduction: 3725000, - medianAge: 34, - internetUsers: 253000000, - electricityProduction: 3256000, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CO`, - countryName: `Colombia`, - gdpPerCapita: 7400, - unemploymentRate: 11, - televisions: 4590000, - publicDebt: 53, - population: 45013672, - oilProduction: 531300, - medianAge: 27, - internetUsers: 12100000, - electricityProduction: 50470, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CR`, - countryName: `Costa Rica`, - gdpPerCapita: 11100, - unemploymentRate: 5, - televisions: 525000, - publicDebt: 47, - population: 4195914, - oilProduction: 0, - medianAge: 27, - internetUsers: 1500000, - electricityProduction: 8349, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IV`, - countryName: `Ivory Coast`, - gdpPerCapita: 1700, - unemploymentRate: 0, - televisions: 1090000, - publicDebt: 75, - population: 20179602, - oilProduction: 48370, - medianAge: 19, - internetUsers: 300000, - electricityProduction: 5305, - birthRate: 33 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `HR`, - countryName: `Croatia`, - gdpPerCapita: 15500, - unemploymentRate: 12, - televisions: 1220000, - publicDebt: 48, - population: 4491543, - oilProduction: 17100, - medianAge: 41, - internetUsers: 1995000, - electricityProduction: 11990, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CU`, - countryName: `Cuba`, - gdpPerCapita: 11000, - unemploymentRate: 2, - televisions: 2640000, - publicDebt: 37, - population: 11423952, - oilProduction: 58300, - medianAge: 37, - internetUsers: 1310000, - electricityProduction: 16450, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CY`, - countryName: `Cyprus`, - gdpPerCapita: 27100, - unemploymentRate: 4, - televisions: 0, - publicDebt: 60, - population: 792604, - oilProduction: 0, - medianAge: 35, - internetUsers: 380000, - electricityProduction: 4618, - birthRate: 13 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CZ`, - countryName: `Czech Republic`, - gdpPerCapita: 24500, - unemploymentRate: 7, - televisions: 3405834, - publicDebt: 26, - population: 10220911, - oilProduction: 18030, - medianAge: 40, - internetUsers: 4400000, - electricityProduction: 77380, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `DK`, - countryName: `Denmark`, - gdpPerCapita: 37200, - unemploymentRate: 3, - televisions: 3121000, - publicDebt: 26, - population: 5484723, - oilProduction: 342000, - medianAge: 40, - internetUsers: 3500000, - electricityProduction: 43350, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `DO`, - countryName: `Dominican Republic`, - gdpPerCapita: 6600, - unemploymentRate: 16, - televisions: 770000, - publicDebt: 41, - population: 9507133, - oilProduction: 12, - medianAge: 25, - internetUsers: 1677000, - electricityProduction: 12220, - birthRate: 23 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `EC`, - countryName: `Ecuador`, - gdpPerCapita: 7200, - unemploymentRate: 9, - televisions: 2500000, - publicDebt: 33, - population: 13927650, - oilProduction: 511100, - medianAge: 24, - internetUsers: 1549000, - electricityProduction: 12940, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `EG`, - countryName: `Egypt`, - gdpPerCapita: 5000, - unemploymentRate: 9, - televisions: 7700000, - publicDebt: 106, - population: 81713520, - oilProduction: 665000, - medianAge: 25, - internetUsers: 8620000, - electricityProduction: 102500, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SV`, - countryName: `El Salvador`, - gdpPerCapita: 6000, - unemploymentRate: 6, - televisions: 600000, - publicDebt: 37, - population: 7066403, - oilProduction: 0, - medianAge: 22, - internetUsers: 700000, - electricityProduction: 5316, - birthRate: 26 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GQ`, - countryName: `Equatorial Guinea`, - gdpPerCapita: 28200, - unemploymentRate: 30, - televisions: 4000, - publicDebt: 2, - population: 616459, - oilProduction: 385500, - medianAge: 19, - internetUsers: 8000, - electricityProduction: 28, - birthRate: 37 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `EE`, - countryName: `Estonia`, - gdpPerCapita: 21800, - unemploymentRate: 5, - televisions: 605000, - publicDebt: 3, - population: 1307605, - oilProduction: 6930, - medianAge: 40, - internetUsers: 780000, - electricityProduction: 9599, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ET`, - countryName: `Ethiopia`, - gdpPerCapita: 700, - unemploymentRate: 0, - televisions: 682000, - publicDebt: 45, - population: 82544840, - oilProduction: 7, - medianAge: 17, - internetUsers: 291000, - electricityProduction: 2864, - birthRate: 44 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `FI`, - countryName: `Finland`, - gdpPerCapita: 36000, - unemploymentRate: 7, - televisions: 3200000, - publicDebt: 36, - population: 5244749, - oilProduction: 8951, - medianAge: 42, - internetUsers: 3600000, - electricityProduction: 73470, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GA`, - countryName: `Gabon`, - gdpPerCapita: 14000, - unemploymentRate: 21, - televisions: 63000, - publicDebt: 53, - population: 1485832, - oilProduction: 240000, - medianAge: 19, - internetUsers: 145000, - electricityProduction: 1520, - birthRate: 36 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `DE`, - countryName: `Germany`, - gdpPerCapita: 34100, - unemploymentRate: 9, - televisions: 51400000, - publicDebt: 65, - population: 82369552, - oilProduction: 141700, - medianAge: 43, - internetUsers: 42500000, - electricityProduction: 579400, - birthRate: 8 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GH`, - countryName: `Ghana`, - gdpPerCapita: 1400, - unemploymentRate: 11, - televisions: 1900000, - publicDebt: 59, - population: 23382848, - oilProduction: 700, - medianAge: 20, - internetUsers: 650000, - electricityProduction: 7042, - birthRate: 29 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GI`, - countryName: `Gibraltar`, - gdpPerCapita: 38200, - unemploymentRate: 3, - televisions: 10000, - publicDebt: 16, - population: 28002, - oilProduction: 0, - medianAge: 40, - internetUsers: 6200, - electricityProduction: 141, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GR`, - countryName: `Greece`, - gdpPerCapita: 30600, - unemploymentRate: 8, - televisions: 2540000, - publicDebt: 90, - population: 10722816, - oilProduction: 5687, - medianAge: 42, - internetUsers: 2540000, - electricityProduction: 56130, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GT`, - countryName: `Guatemala`, - gdpPerCapita: 5100, - unemploymentRate: 3, - televisions: 1323000, - publicDebt: 21, - population: 13002206, - oilProduction: 13000, - medianAge: 19, - internetUsers: 1320000, - electricityProduction: 7281, - birthRate: 29 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `HN`, - countryName: `Honduras`, - gdpPerCapita: 4300, - unemploymentRate: 28, - televisions: 570000, - publicDebt: 24, - population: 7639327, - oilProduction: 0, - medianAge: 20, - internetUsers: 344100, - electricityProduction: 5339, - birthRate: 27 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `HU`, - countryName: `Hungary`, - gdpPerCapita: 19300, - unemploymentRate: 7, - televisions: 4420000, - publicDebt: 67, - population: 9930915, - oilProduction: 42180, - medianAge: 39, - internetUsers: 4200000, - electricityProduction: 33690, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IS`, - countryName: `Iceland`, - gdpPerCapita: 40400, - unemploymentRate: 1, - televisions: 98000, - publicDebt: 28, - population: 304367, - oilProduction: 0, - medianAge: 35, - internetUsers: 202300, - electricityProduction: 8533, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IN`, - countryName: `India`, - gdpPerCapita: 2600, - unemploymentRate: 7, - televisions: 63000000, - publicDebt: 58, - population: 1147995904, - oilProduction: 810000, - medianAge: 25, - internetUsers: 80000000, - electricityProduction: 661600, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ID`, - countryName: `Indonesia`, - gdpPerCapita: 3600, - unemploymentRate: 9, - televisions: 13750000, - publicDebt: 34, - population: 237512352, - oilProduction: 837500, - medianAge: 27, - internetUsers: 13000000, - electricityProduction: 125900, - birthRate: 19 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IR`, - countryName: `Iran`, - gdpPerCapita: 11700, - unemploymentRate: 12, - televisions: 4610000, - publicDebt: 17, - population: 65875224, - oilProduction: 3956000, - medianAge: 26, - internetUsers: 23000000, - electricityProduction: 170400, - birthRate: 17 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IE`, - countryName: `Ireland`, - gdpPerCapita: 46600, - unemploymentRate: 5, - televisions: 1820000, - publicDebt: 25, - population: 4156119, - oilProduction: 0, - medianAge: 35, - internetUsers: 1708000, - electricityProduction: 24130, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IL`, - countryName: `Israel`, - gdpPerCapita: 26600, - unemploymentRate: 7, - televisions: 1690000, - publicDebt: 81, - population: 7112359, - oilProduction: 100, - medianAge: 29, - internetUsers: 2000000, - electricityProduction: 46850, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IT`, - countryName: `Italy`, - gdpPerCapita: 30900, - unemploymentRate: 6, - televisions: 30300000, - publicDebt: 104, - population: 58145320, - oilProduction: 164800, - medianAge: 43, - internetUsers: 32000000, - electricityProduction: 278500, - birthRate: 8 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `JM`, - countryName: `Jamaica`, - gdpPerCapita: 7400, - unemploymentRate: 10, - televisions: 460000, - publicDebt: 127, - population: 2804332, - oilProduction: 0, - medianAge: 23, - internetUsers: 1500000, - electricityProduction: 6985, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `JP`, - countryName: `Japan`, - gdpPerCapita: 33500, - unemploymentRate: 4, - televisions: 86500000, - publicDebt: 170, - population: 127288416, - oilProduction: 125000, - medianAge: 44, - internetUsers: 88110000, - electricityProduction: 1025000, - birthRate: 8 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `JO`, - countryName: `Jordan`, - gdpPerCapita: 4700, - unemploymentRate: 14, - televisions: 500000, - publicDebt: 72, - population: 6198677, - oilProduction: 0, - medianAge: 24, - internetUsers: 1127000, - electricityProduction: 9074, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `KZ`, - countryName: `Kazakhstan`, - gdpPerCapita: 11000, - unemploymentRate: 7, - televisions: 3880000, - publicDebt: 8, - population: 15340533, - oilProduction: 1355000, - medianAge: 29, - internetUsers: 1901000, - electricityProduction: 76340, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `KE`, - countryName: `Kenya`, - gdpPerCapita: 1700, - unemploymentRate: 40, - televisions: 730000, - publicDebt: 49, - population: 37953840, - oilProduction: 0, - medianAge: 19, - internetUsers: 3000000, - electricityProduction: 5502, - birthRate: 38 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `KR`, - countryName: `Korea, South`, - gdpPerCapita: 25000, - unemploymentRate: 3, - televisions: 15900000, - publicDebt: 28, - population: 48379392, - oilProduction: 17050, - medianAge: 37, - internetUsers: 35590000, - electricityProduction: 403200, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `KW`, - countryName: `Kuwait`, - gdpPerCapita: 55900, - unemploymentRate: 2, - televisions: 875000, - publicDebt: 10, - population: 2596799, - oilProduction: 2440000, - medianAge: 26, - internetUsers: 900000, - electricityProduction: 41110, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LV`, - countryName: `Latvia`, - gdpPerCapita: 17700, - unemploymentRate: 6, - televisions: 1220000, - publicDebt: 7, - population: 2245423, - oilProduction: 0, - medianAge: 40, - internetUsers: 1770000, - electricityProduction: 4778, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LB`, - countryName: `Lebanon`, - gdpPerCapita: 10300, - unemploymentRate: 20, - televisions: 1180000, - publicDebt: 187, - population: 3971941, - oilProduction: 0, - medianAge: 29, - internetUsers: 950000, - electricityProduction: 9183, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LY`, - countryName: `Libya`, - gdpPerCapita: 12400, - unemploymentRate: 30, - televisions: 730000, - publicDebt: 5, - population: 6173579, - oilProduction: 1712000, - medianAge: 24, - internetUsers: 260000, - electricityProduction: 21150, - birthRate: 26 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LT`, - countryName: `Lithuania`, - gdpPerCapita: 16800, - unemploymentRate: 4, - televisions: 1700000, - publicDebt: 17, - population: 3565205, - oilProduction: 13160, - medianAge: 39, - internetUsers: 1330000, - electricityProduction: 13480, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LU`, - countryName: `Luxembourg`, - gdpPerCapita: 79400, - unemploymentRate: 4, - televisions: 285000, - publicDebt: 6, - population: 486006, - oilProduction: 0, - medianAge: 39, - internetUsers: 345000, - electricityProduction: 3156, - birthRate: 12 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MK`, - countryName: `Macedonia`, - gdpPerCapita: 8400, - unemploymentRate: 35, - televisions: 510000, - publicDebt: 31, - population: 2061315, - oilProduction: 0, - medianAge: 35, - internetUsers: 685000, - electricityProduction: 6051, - birthRate: 12 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MW`, - countryName: `Malawi`, - gdpPerCapita: 800, - unemploymentRate: 0, - televisions: 0, - publicDebt: 51, - population: 13931831, - oilProduction: 0, - medianAge: 17, - internetUsers: 139500, - electricityProduction: 1397, - birthRate: 42 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MY`, - countryName: `Malaysia`, - gdpPerCapita: 14500, - unemploymentRate: 3, - televisions: 10800000, - publicDebt: 42, - population: 25274132, - oilProduction: 757500, - medianAge: 25, - internetUsers: 15868000, - electricityProduction: 82360, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MU`, - countryName: `Mauritius`, - gdpPerCapita: 11300, - unemploymentRate: 9, - televisions: 258000, - publicDebt: 63, - population: 1274189, - oilProduction: 0, - medianAge: 32, - internetUsers: 340000, - electricityProduction: 2350, - birthRate: 15 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MX`, - countryName: `Mexico`, - gdpPerCapita: 12400, - unemploymentRate: 4, - televisions: 25600000, - publicDebt: 23, - population: 109955400, - oilProduction: 3083000, - medianAge: 26, - internetUsers: 22812000, - electricityProduction: 222400, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MD`, - countryName: `Moldova`, - gdpPerCapita: 2300, - unemploymentRate: 2, - televisions: 1260000, - publicDebt: 23, - population: 4324450, - oilProduction: 0, - medianAge: 34, - internetUsers: 700000, - electricityProduction: 3881, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MA`, - countryName: `Morocco`, - gdpPerCapita: 3700, - unemploymentRate: 10, - televisions: 3100000, - publicDebt: 67, - population: 34343220, - oilProduction: 300, - medianAge: 25, - internetUsers: 7300000, - electricityProduction: 21370, - birthRate: 21 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MZ`, - countryName: `Mozambique`, - gdpPerCapita: 800, - unemploymentRate: 21, - televisions: 67600, - publicDebt: 22, - population: 21284700, - oilProduction: 0, - medianAge: 17, - internetUsers: 200000, - electricityProduction: 13170, - birthRate: 38 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NA`, - countryName: `Namibia`, - gdpPerCapita: 5200, - unemploymentRate: 5, - televisions: 60000, - publicDebt: 22, - population: 2088669, - oilProduction: 0, - medianAge: 21, - internetUsers: 101000, - electricityProduction: 1688, - birthRate: 23 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NL`, - countryName: `Netherlands`, - gdpPerCapita: 39000, - unemploymentRate: 5, - televisions: 8100000, - publicDebt: 46, - population: 16645313, - oilProduction: 76000, - medianAge: 40, - internetUsers: 15000000, - electricityProduction: 94340, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NZ`, - countryName: `New Zealand`, - gdpPerCapita: 27200, - unemploymentRate: 4, - televisions: 1926000, - publicDebt: 21, - population: 4173460, - oilProduction: 25880, - medianAge: 36, - internetUsers: 3360000, - electricityProduction: 42060, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NI`, - countryName: `Nicaragua`, - gdpPerCapita: 2800, - unemploymentRate: 5, - televisions: 320000, - publicDebt: 63, - population: 5785846, - oilProduction: 0, - medianAge: 22, - internetUsers: 155000, - electricityProduction: 2778, - birthRate: 24 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NG`, - countryName: `Nigeria`, - gdpPerCapita: 2100, - unemploymentRate: 5, - televisions: 6900000, - publicDebt: 14, - population: 146255312, - oilProduction: 2166000, - medianAge: 19, - internetUsers: 10000000, - electricityProduction: 22530, - birthRate: 37 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NO`, - countryName: `Norway`, - gdpPerCapita: 53300, - unemploymentRate: 3, - televisions: 2030000, - publicDebt: 83, - population: 4644457, - oilProduction: 2560000, - medianAge: 39, - internetUsers: 3800000, - electricityProduction: 135800, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `OM`, - countryName: `Oman`, - gdpPerCapita: 1900, - unemploymentRate: 15, - televisions: 1600000, - publicDebt: 4, - population: 3311640, - oilProduction: 710800, - medianAge: 19, - internetUsers: 340000, - electricityProduction: 11890, - birthRate: 35 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PK`, - countryName: `Pakistan`, - gdpPerCapita: 2400, - unemploymentRate: 6, - televisions: 3100000, - publicDebt: 51, - population: 172800048, - oilProduction: 62000, - medianAge: 21, - internetUsers: 17500000, - electricityProduction: 89820, - birthRate: 28 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PA`, - countryName: `Panama`, - gdpPerCapita: 10700, - unemploymentRate: 6, - televisions: 510000, - publicDebt: 53, - population: 3309679, - oilProduction: 0, - medianAge: 27, - internetUsers: 525200, - electricityProduction: 5661, - birthRate: 21 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PG`, - countryName: `Papua New Guinea`, - gdpPerCapita: 2100, - unemploymentRate: 2, - televisions: 59841, - publicDebt: 40, - population: 5931769, - oilProduction: 47800, - medianAge: 22, - internetUsers: 110000, - electricityProduction: 3698, - birthRate: 28 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PY`, - countryName: `Paraguay`, - gdpPerCapita: 4000, - unemploymentRate: 6, - televisions: 990000, - publicDebt: 27, - population: 6831306, - oilProduction: 0, - medianAge: 22, - internetUsers: 280000, - electricityProduction: 70000, - birthRate: 28 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PE`, - countryName: `Peru`, - gdpPerCapita: 7600, - unemploymentRate: 7, - televisions: 3060000, - publicDebt: 29, - population: 29180900, - oilProduction: 119000, - medianAge: 26, - internetUsers: 7636000, - electricityProduction: 24970, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PH`, - countryName: `Philippines`, - gdpPerCapita: 3200, - unemploymentRate: 7, - televisions: 3700000, - publicDebt: 56, - population: 96061680, - oilProduction: 0, - medianAge: 22, - internetUsers: 5300000, - electricityProduction: 53670, - birthRate: 26 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PL`, - countryName: `Poland`, - gdpPerCapita: 16200, - unemploymentRate: 13, - televisions: 13050000, - publicDebt: 43, - population: 38500696, - oilProduction: 0, - medianAge: 38, - internetUsers: 16000000, - electricityProduction: 146200, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PT`, - countryName: `Portugal`, - gdpPerCapita: 21800, - unemploymentRate: 8, - televisions: 3310000, - publicDebt: 64, - population: 10676910, - oilProduction: 9500, - medianAge: 39, - internetUsers: 3549000, - electricityProduction: 49040, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `QA`, - countryName: `Qatar`, - gdpPerCapita: 87600, - unemploymentRate: 1, - televisions: 230000, - publicDebt: 11, - population: 824789, - oilProduction: 797500, - medianAge: 31, - internetUsers: 351000, - electricityProduction: 13540, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `RO`, - countryName: `Romania`, - gdpPerCapita: 11100, - unemploymentRate: 4, - televisions: 5250000, - publicDebt: 13, - population: 22246862, - oilProduction: 115000, - medianAge: 37, - internetUsers: 12000000, - electricityProduction: 60520, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `RU`, - countryName: `Russia`, - gdpPerCapita: 14800, - unemploymentRate: 6, - televisions: 60500000, - publicDebt: 6, - population: 140702096, - oilProduction: 9870000, - medianAge: 38, - internetUsers: 30000000, - electricityProduction: 1000000, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SA`, - countryName: `Saudi Arabia`, - gdpPerCapita: 19800, - unemploymentRate: 13, - televisions: 5100000, - publicDebt: 24, - population: 28146656, - oilProduction: 11000000, - medianAge: 22, - internetUsers: 6200000, - electricityProduction: 165600, - birthRate: 29 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SN`, - countryName: `Senegal`, - gdpPerCapita: 1700, - unemploymentRate: 48, - televisions: 361000, - publicDebt: 23, - population: 12853259, - oilProduction: 0, - medianAge: 19, - internetUsers: 820000, - electricityProduction: 2159, - birthRate: 37 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SC`, - countryName: `Seychelles`, - gdpPerCapita: 16600, - unemploymentRate: 2, - televisions: 11000, - publicDebt: 92, - population: 82247, - oilProduction: 0, - medianAge: 29, - internetUsers: 32000, - electricityProduction: 252, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SG`, - countryName: `Singapore`, - gdpPerCapita: 49900, - unemploymentRate: 2, - televisions: 1330000, - publicDebt: 96, - population: 4608167, - oilProduction: 9836, - medianAge: 38, - internetUsers: 3105000, - electricityProduction: 39440, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SK`, - countryName: `Slovakia`, - gdpPerCapita: 20200, - unemploymentRate: 8, - televisions: 2620000, - publicDebt: 36, - population: 5455407, - oilProduction: 12840, - medianAge: 37, - internetUsers: 2350000, - electricityProduction: 29890, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SI`, - countryName: `Slovenia`, - gdpPerCapita: 28000, - unemploymentRate: 8, - televisions: 710000, - publicDebt: 24, - population: 2007711, - oilProduction: 5, - medianAge: 41, - internetUsers: 1300000, - electricityProduction: 14900, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ZA`, - countryName: `South Africa`, - gdpPerCapita: 9700, - unemploymentRate: 24, - televisions: 6000000, - publicDebt: 31, - population: 48782756, - oilProduction: 200000, - medianAge: 24, - internetUsers: 5100000, - electricityProduction: 264000, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ES`, - countryName: `Spain`, - gdpPerCapita: 33600, - unemploymentRate: 8, - televisions: 16200000, - publicDebt: 36, - population: 40491052, - oilProduction: 29350, - medianAge: 41, - internetUsers: 19690000, - electricityProduction: 270300, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LK`, - countryName: `Sri Lanka`, - gdpPerCapita: 4000, - unemploymentRate: 6, - televisions: 1530000, - publicDebt: 86, - population: 21128772, - oilProduction: 0, - medianAge: 30, - internetUsers: 771700, - electricityProduction: 8411, - birthRate: 17 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SD`, - countryName: `Sudan`, - gdpPerCapita: 1900, - unemploymentRate: 19, - televisions: 2380000, - publicDebt: 106, - population: 40218456, - oilProduction: 484500, - medianAge: 19, - internetUsers: 1500000, - electricityProduction: 3944, - birthRate: 34 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SE`, - countryName: `Sweden`, - gdpPerCapita: 37500, - unemploymentRate: 6, - televisions: 4600000, - publicDebt: 42, - population: 9045389, - oilProduction: 2350, - medianAge: 41, - internetUsers: 7000000, - electricityProduction: 153200, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CH`, - countryName: `Switzerland`, - gdpPerCapita: 40100, - unemploymentRate: 3, - televisions: 3310000, - publicDebt: 44, - population: 7581520, - oilProduction: 3202, - medianAge: 41, - internetUsers: 4610000, - electricityProduction: 56100, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SY`, - countryName: `Syria`, - gdpPerCapita: 4700, - unemploymentRate: 9, - televisions: 1050000, - publicDebt: 38, - population: 19747586, - oilProduction: 379000, - medianAge: 21, - internetUsers: 3470000, - electricityProduction: 153200, - birthRate: 27 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TW`, - countryName: `Taiwan`, - gdpPerCapita: 30100, - unemploymentRate: 4, - televisions: 8800000, - publicDebt: 28, - population: 22920946, - oilProduction: 600, - medianAge: 36, - internetUsers: 14760000, - electricityProduction: 235000, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TZ`, - countryName: `Tanzania`, - gdpPerCapita: 1300, - unemploymentRate: 0, - televisions: 103000, - publicDebt: 20, - population: 40213160, - oilProduction: 0, - medianAge: 18, - internetUsers: 400000, - electricityProduction: 1880, - birthRate: 35 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TH`, - countryName: `Thailand`, - gdpPerCapita: 8000, - unemploymentRate: 1, - televisions: 15190000, - publicDebt: 38, - population: 65493296, - oilProduction: 310000, - medianAge: 33, - internetUsers: 13416000, - electricityProduction: 124600, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TN`, - countryName: `Tunisia`, - gdpPerCapita: 7400, - unemploymentRate: 14, - televisions: 920000, - publicDebt: 55, - population: 10383577, - oilProduction: 76900, - medianAge: 29, - internetUsers: 1722000, - electricityProduction: 12850, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TR`, - countryName: `Turkey`, - gdpPerCapita: 12000, - unemploymentRate: 10, - televisions: 20900000, - publicDebt: 39, - population: 71892808, - oilProduction: 45460, - medianAge: 29, - internetUsers: 13150000, - electricityProduction: 154200, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UG`, - countryName: `Uganda`, - gdpPerCapita: 1000, - unemploymentRate: 0, - televisions: 500000, - publicDebt: 21, - population: 31367972, - oilProduction: 0, - medianAge: 15, - internetUsers: 2000000, - electricityProduction: 1983, - birthRate: 48 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UA`, - countryName: `Ukraine`, - gdpPerCapita: 7000, - unemploymentRate: 2, - televisions: 18050000, - publicDebt: 12, - population: 45994288, - oilProduction: 90400, - medianAge: 39, - internetUsers: 10000000, - electricityProduction: 192100, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AE`, - countryName: `United Arab Emirates`, - gdpPerCapita: 37000, - unemploymentRate: 2, - televisions: 310000, - publicDebt: 21, - population: 4621399, - oilProduction: 2510000, - medianAge: 30, - internetUsers: 2300000, - electricityProduction: 57060, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UK`, - countryName: `United Kingdom`, - gdpPerCapita: 35000, - unemploymentRate: 5, - televisions: 30500000, - publicDebt: 44, - population: 60943912, - oilProduction: 1636000, - medianAge: 40, - internetUsers: 40200000, - electricityProduction: 372600, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `US`, - countryName: `United States`, - gdpPerCapita: 45800, - unemploymentRate: 5, - televisions: 219000000, - publicDebt: 61, - population: 303824640, - oilProduction: 7460000, - medianAge: 37, - internetUsers: 223000000, - electricityProduction: 4062000, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UY`, - countryName: `Uruguay`, - gdpPerCapita: 10800, - unemploymentRate: 9, - televisions: 782000, - publicDebt: 65, - population: 3477778, - oilProduction: 27830, - medianAge: 33, - internetUsers: 968000, - electricityProduction: 9200, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UZ`, - countryName: `Uzbekistan`, - gdpPerCapita: 2400, - unemploymentRate: 1, - televisions: 6400000, - publicDebt: 19, - population: 27345026, - oilProduction: 109400, - medianAge: 24, - internetUsers: 1200000, - electricityProduction: 49000, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `VE`, - countryName: `Venezuela`, - gdpPerCapita: 12800, - unemploymentRate: 9, - televisions: 4100000, - publicDebt: 19, - population: 26414816, - oilProduction: 2398000, - medianAge: 25, - internetUsers: 5720000, - electricityProduction: 99200, - birthRate: 21 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `VN`, - countryName: `Vietnam`, - gdpPerCapita: 2600, - unemploymentRate: 4, - televisions: 3570000, - publicDebt: 42, - population: 86116560, - oilProduction: 324000, - medianAge: 27, - internetUsers: 17870000, - electricityProduction: 59010, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `WF`, - countryName: `Wallis and Futuna`, - gdpPerCapita: 3800, - unemploymentRate: 15, - televisions: 0, - publicDebt: 6, - population: 15237, - oilProduction: 0, - medianAge: 0, - internetUsers: 900, - electricityProduction: 0, - birthRate: 0 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `YE`, - countryName: `Yemen`, - gdpPerCapita: 2500, - unemploymentRate: 35, - televisions: 470000, - publicDebt: 34, - population: 23013376, - oilProduction: 339200, - medianAge: 17, - internetUsers: 320000, - electricityProduction: 4456, - birthRate: 42 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ZM`, - countryName: `Zambia`, - gdpPerCapita: 1400, - unemploymentRate: 50, - televisions: 277000, - publicDebt: 28, - population: 11669534, - oilProduction: 150, - medianAge: 17, - internetUsers: 500000, - electricityProduction: 8850, - birthRate: 41 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ZW`, - countryName: `Zimbabwe`, - gdpPerCapita: 200, - unemploymentRate: 80, - televisions: 370000, - publicDebt: 218, - population: 11350111, - oilProduction: 0, - medianAge: 18, - internetUsers: 1351000, - electricityProduction: 9950, - birthRate: 32 - }), - ]; - super(...(newItems.slice(0, items))); - } - } -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts new file mode 100644 index 000000000..b08f50344 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts @@ -0,0 +1,5443 @@ +export class WorldStatsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public code: string; + public name: string; + public continent: string; + public population: number; + public gdpTotal: number; + public economy: string; + public region: string; + public status: string; + public longitude: number; + public latitude: number; + public gdpPerPerson: number; + public rank: number; + public unemployment: number; + public oilProduction: number; + public birthRate: number; + public medianAge: number; + public electricity: number; + public televisions: number; + public publicDebt: number; + public internet: number; + +} +export class WorldStats extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new WorldStatsItem( + { + code: `CHN`, + name: `China`, + continent: `Asia`, + population: 1379302771, + gdpTotal: 21140000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 104.18, + latitude: 35.887, + gdpPerPerson: 15327, + rank: 1, + unemployment: 4, + oilProduction: 3725000, + birthRate: 14, + medianAge: 34, + electricity: 3256000, + televisions: 400000000, + publicDebt: 18, + internet: 253000000 + }), + new WorldStatsItem( + { + code: `IND`, + name: `India`, + continent: `Asia`, + population: 1281935911, + gdpTotal: 8721000, + economy: `Emerging`, + region: `Southern Asia`, + status: `Country`, + longitude: 78.022, + latitude: 22.665, + gdpPerPerson: 6803, + rank: 2, + unemployment: 7, + oilProduction: 810000, + birthRate: 22, + medianAge: 25, + electricity: 661600, + televisions: 63000000, + publicDebt: 58, + internet: 80000000 + }), + new WorldStatsItem( + { + code: `USA`, + name: `United States`, + continent: `North America`, + population: 326625791, + gdpTotal: 18560000, + economy: `Developed`, + region: `Northern America`, + status: `Country`, + longitude: -101.8, + latitude: 39.818, + gdpPerPerson: 56823, + rank: 3, + unemployment: 5, + oilProduction: 7460000, + birthRate: 14, + medianAge: 37, + electricity: 4062000, + televisions: 219000000, + publicDebt: 61, + internet: 223000000 + }), + new WorldStatsItem( + { + code: `IDN`, + name: `Indonesia`, + continent: `Asia`, + population: 260580739, + gdpTotal: 3028000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 102.72, + latitude: -2.698, + gdpPerPerson: 11620, + rank: 4, + unemployment: 9, + oilProduction: 837500, + birthRate: 19, + medianAge: 27, + electricity: 125900, + televisions: 13750000, + publicDebt: 34, + internet: 13000000 + }), + new WorldStatsItem( + { + code: `BRA`, + name: `Brazil`, + continent: `South America`, + population: 207353391, + gdpTotal: 3081000, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -48.88, + latitude: -12.89, + gdpPerPerson: 14859, + rank: 5, + unemployment: 9, + oilProduction: 1797000, + birthRate: 19, + medianAge: 28, + electricity: 396400, + televisions: 36500000, + publicDebt: 45, + internet: 50000000 + }), + new WorldStatsItem( + { + code: `PAK`, + name: `Pakistan`, + continent: `Asia`, + population: 204924861, + gdpTotal: 988200, + economy: `Emerging`, + region: `Southern Asia`, + status: `Country`, + longitude: 67.624, + latitude: 28.421, + gdpPerPerson: 4822, + rank: 6, + unemployment: 6, + oilProduction: 62000, + birthRate: 28, + medianAge: 21, + electricity: 89820, + televisions: 3100000, + publicDebt: 51, + internet: 17500000 + }), + new WorldStatsItem( + { + code: `NGA`, + name: `Nigeria`, + continent: `Africa`, + population: 190632261, + gdpTotal: 1089000, + economy: `Emerging`, + region: `Western Africa`, + status: `Country`, + longitude: 8.657, + latitude: 9.075, + gdpPerPerson: 5713, + rank: 7, + unemployment: 5, + oilProduction: 2166000, + birthRate: 37, + medianAge: 19, + electricity: 22530, + televisions: 6900000, + publicDebt: 14, + internet: 10000000 + }), + new WorldStatsItem( + { + code: `BGD`, + name: `Bangladesh`, + continent: `Asia`, + population: 157826578, + gdpTotal: 628400, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 89.935, + latitude: 24.474, + gdpPerPerson: 3982, + rank: 8, + unemployment: 3, + oilProduction: 6746, + birthRate: 29, + medianAge: 23, + electricity: 21350, + televisions: 770000, + publicDebt: 37, + internet: 500000 + }), + new WorldStatsItem( + { + code: `RUS`, + name: `Russia`, + continent: `Europe`, + population: 142257519, + gdpTotal: 3745000, + economy: `Emerging`, + region: `Eastern Europe`, + status: `Country`, + longitude: 42.379, + latitude: 56.974, + gdpPerPerson: 26325, + rank: 9, + unemployment: 6, + oilProduction: 9870000, + birthRate: 11, + medianAge: 38, + electricity: 1000000, + televisions: 60500000, + publicDebt: 6, + internet: 30000000 + }), + new WorldStatsItem( + { + code: `JPN`, + name: `Japan`, + continent: `Asia`, + population: 126451398, + gdpTotal: 4932000, + economy: `Developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 138.48, + latitude: 36.519, + gdpPerPerson: 39003, + rank: 10, + unemployment: 4, + oilProduction: 125000, + birthRate: 8, + medianAge: 44, + electricity: 1025000, + televisions: 86500000, + publicDebt: 170, + internet: 88110000 + }), + new WorldStatsItem( + { + code: `MEX`, + name: `Mexico`, + continent: `North America`, + population: 124574795, + gdpTotal: 2307000, + economy: `Emerging`, + region: `Central America`, + status: `Country`, + longitude: -102.5, + latitude: 23.63, + gdpPerPerson: 18519, + rank: 11, + unemployment: 4, + oilProduction: 3083000, + birthRate: 20, + medianAge: 26, + electricity: 222400, + televisions: 25600000, + publicDebt: 23, + internet: 22812000 + }), + new WorldStatsItem( + { + code: `ETH`, + name: `Ethiopia`, + continent: `Africa`, + population: 105350020, + gdpTotal: 174700, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 40.489, + latitude: 9.154, + gdpPerPerson: 1658, + rank: 12, + unemployment: 5, + oilProduction: 1, + birthRate: 25, + medianAge: 52, + electricity: 60942, + televisions: 66893500, + publicDebt: 45, + internet: 291000 + }), + new WorldStatsItem( + { + code: `PHL`, + name: `Philippines`, + continent: `Asia`, + population: 104256076, + gdpTotal: 801900, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 121.4, + latitude: 16.78, + gdpPerPerson: 7692, + rank: 13, + unemployment: 7, + oilProduction: 0, + birthRate: 26, + medianAge: 22, + electricity: 53670, + televisions: 3700000, + publicDebt: 56, + internet: 5300000 + }), + new WorldStatsItem( + { + code: `EGY`, + name: `Egypt`, + continent: `Africa`, + population: 97041072, + gdpTotal: 1105000, + economy: `Emerging`, + region: `Middle East`, + status: `Country`, + longitude: 30.787, + latitude: 26.825, + gdpPerPerson: 11387, + rank: 14, + unemployment: 9, + oilProduction: 665000, + birthRate: 22, + medianAge: 25, + electricity: 102500, + televisions: 7700000, + publicDebt: 106, + internet: 8620000 + }), + new WorldStatsItem( + { + code: `VNM`, + name: `Vietnam`, + continent: `Asia`, + population: 96160163, + gdpTotal: 594900, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 108.46, + latitude: 13.711, + gdpPerPerson: 6187, + rank: 15, + unemployment: 4, + oilProduction: 324000, + birthRate: 16, + medianAge: 27, + electricity: 59010, + televisions: 3570000, + publicDebt: 42, + internet: 17870000 + }), + new WorldStatsItem( + { + code: `COD`, + name: `Dem. Rep. Congo`, + continent: `Africa`, + population: 83301151, + gdpTotal: 66010, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 21.738, + latitude: -4.071, + gdpPerPerson: 792, + rank: 16, + unemployment: 3, + oilProduction: 4, + birthRate: 13, + medianAge: 41, + electricity: 48913, + televisions: 55942436, + publicDebt: 16, + internet: 8903936 + }), + new WorldStatsItem( + { + code: `IRN`, + name: `Iran`, + continent: `Asia`, + population: 82021564, + gdpTotal: 1459000, + economy: `Emerging`, + region: `Middle East`, + status: `Country`, + longitude: 53.664, + latitude: 32.435, + gdpPerPerson: 17788, + rank: 17, + unemployment: 12, + oilProduction: 3956000, + birthRate: 17, + medianAge: 26, + electricity: 170400, + televisions: 4610000, + publicDebt: 17, + internet: 23000000 + }), + new WorldStatsItem( + { + code: `TUR`, + name: `Turkey`, + continent: `Asia`, + population: 80845215, + gdpTotal: 1670000, + economy: `Emerging`, + region: `Middle East`, + status: `Country`, + longitude: 35.243, + latitude: 38.962, + gdpPerPerson: 20657, + rank: 18, + unemployment: 10, + oilProduction: 45460, + birthRate: 16, + medianAge: 29, + electricity: 154200, + televisions: 20900000, + publicDebt: 39, + internet: 13150000 + }), + new WorldStatsItem( + { + code: `DEU`, + name: `Germany`, + continent: `Europe`, + population: 80594017, + gdpTotal: 3979000, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 11.43, + latitude: 52.237, + gdpPerPerson: 49371, + rank: 19, + unemployment: 9, + oilProduction: 141700, + birthRate: 8, + medianAge: 43, + electricity: 579400, + televisions: 51400000, + publicDebt: 65, + internet: 42500000 + }), + new WorldStatsItem( + { + code: `THA`, + name: `Thailand`, + continent: `Asia`, + population: 68414135, + gdpTotal: 1161000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 100.65, + latitude: 15.345, + gdpPerPerson: 16970, + rank: 20, + unemployment: 1, + oilProduction: 310000, + birthRate: 14, + medianAge: 33, + electricity: 124600, + televisions: 15190000, + publicDebt: 38, + internet: 13416000 + }), + new WorldStatsItem( + { + code: `FRA`, + name: `France`, + continent: `Europe`, + population: 67106161, + gdpTotal: 2699000, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 2.267, + latitude: 46.645, + gdpPerPerson: 40220, + rank: 21, + unemployment: 12, + oilProduction: 1, + birthRate: 24, + medianAge: 48, + electricity: 63711, + televisions: 43156970, + publicDebt: 11, + internet: 7012454 + }), + new WorldStatsItem( + { + code: `GBR`, + name: `United Kingdom`, + continent: `Europe`, + population: 64769452, + gdpTotal: 2788000, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: -1.233, + latitude: 52.242, + gdpPerPerson: 43045, + rank: 22, + unemployment: 5, + oilProduction: 1636000, + birthRate: 11, + medianAge: 40, + electricity: 372600, + televisions: 30500000, + publicDebt: 44, + internet: 40200000 + }), + new WorldStatsItem( + { + code: `ITA`, + name: `Italy`, + continent: `Europe`, + population: 62137802, + gdpTotal: 2221000, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 15.701, + latitude: 40.885, + gdpPerPerson: 35743, + rank: 23, + unemployment: 6, + oilProduction: 164800, + birthRate: 8, + medianAge: 43, + electricity: 278500, + televisions: 30300000, + publicDebt: 104, + internet: 32000000 + }), + new WorldStatsItem( + { + code: `MMR`, + name: `Myanmar`, + continent: `Asia`, + population: 55123814, + gdpTotal: 311100, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 96.028, + latitude: 21.509, + gdpPerPerson: 5644, + rank: 24, + unemployment: 13, + oilProduction: 4, + birthRate: 24, + medianAge: 37, + electricity: 26955, + televisions: 39322205, + publicDebt: 18, + internet: 30207772 + }), + new WorldStatsItem( + { + code: `ZAF`, + name: `South Africa`, + continent: `Africa`, + population: 54841552, + gdpTotal: 739100, + economy: `Emerging`, + region: `Southern Africa`, + status: `Country`, + longitude: 22.489, + latitude: -32.4, + gdpPerPerson: 13477, + rank: 25, + unemployment: 24, + oilProduction: 200000, + birthRate: 20, + medianAge: 24, + electricity: 264000, + televisions: 6000000, + publicDebt: 31, + internet: 5100000 + }), + new WorldStatsItem( + { + code: `TZA`, + name: `Tanzania`, + continent: `Africa`, + population: 53950935, + gdpTotal: 150600, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 34.894, + latitude: -6.356, + gdpPerPerson: 2791, + rank: 26, + unemployment: 6, + oilProduction: 3, + birthRate: 9, + medianAge: 34, + electricity: 10186, + televisions: 35987980, + publicDebt: 20, + internet: 400000 + }), + new WorldStatsItem( + { + code: `KOR`, + name: `South Korea`, + continent: `Asia`, + population: 51181299, + gdpTotal: 1929000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 128.29, + latitude: 36.399, + gdpPerPerson: 37690, + rank: 27, + unemployment: 3, + oilProduction: 17050, + birthRate: 9, + medianAge: 37, + electricity: 403200, + televisions: 15900000, + publicDebt: 28, + internet: 35590000 + }), + new WorldStatsItem( + { + code: `ESP`, + name: `Spain`, + continent: `Europe`, + population: 48958159, + gdpTotal: 1690000, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: -2.892, + latitude: 40.569, + gdpPerPerson: 34519, + rank: 28, + unemployment: 8, + oilProduction: 29350, + birthRate: 10, + medianAge: 41, + electricity: 270300, + televisions: 16200000, + publicDebt: 36, + internet: 19690000 + }), + new WorldStatsItem( + { + code: `COL`, + name: `Colombia`, + continent: `South America`, + population: 47698524, + gdpTotal: 688000, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -72.95, + latitude: 4.099, + gdpPerPerson: 14424, + rank: 29, + unemployment: 11, + oilProduction: 531300, + birthRate: 20, + medianAge: 27, + electricity: 50470, + televisions: 4590000, + publicDebt: 53, + internet: 12100000 + }), + new WorldStatsItem( + { + code: `KEN`, + name: `Kenya`, + continent: `Africa`, + population: 47615739, + gdpTotal: 152700, + economy: `Emerging`, + region: `Eastern Africa`, + status: `Country`, + longitude: 37.929, + latitude: 0.4, + gdpPerPerson: 3207, + rank: 30, + unemployment: 40, + oilProduction: 0, + birthRate: 38, + medianAge: 19, + electricity: 5502, + televisions: 730000, + publicDebt: 49, + internet: 3000000 + }), + new WorldStatsItem( + { + code: `ARG`, + name: `Argentina`, + continent: `South America`, + population: 44293293, + gdpTotal: 879400, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -64.84, + latitude: -33.07, + gdpPerPerson: 19854, + rank: 31, + unemployment: 9, + oilProduction: 730000, + birthRate: 18, + medianAge: 30, + electricity: 101100, + televisions: 7950000, + publicDebt: 56, + internet: 9309000 + }), + new WorldStatsItem( + { + code: `UKR`, + name: `Ukraine`, + continent: `Europe`, + population: 44033874, + gdpTotal: 352600, + economy: `Developing`, + region: `Eastern Europe`, + status: `Country`, + longitude: 30.86, + latitude: 49.723, + gdpPerPerson: 8007, + rank: 32, + unemployment: 2, + oilProduction: 90400, + birthRate: 10, + medianAge: 39, + electricity: 192100, + televisions: 18050000, + publicDebt: 12, + internet: 10000000 + }), + new WorldStatsItem( + { + code: `DZA`, + name: `Algeria`, + continent: `Africa`, + population: 40969443, + gdpTotal: 609400, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 1.642, + latitude: 28.04, + gdpPerPerson: 14875, + rank: 33, + unemployment: 12, + oilProduction: 1358000, + birthRate: 17, + medianAge: 26, + electricity: 31910, + televisions: 3100000, + publicDebt: 18, + internet: 3500000 + }), + new WorldStatsItem( + { + code: `UGA`, + name: `Uganda`, + continent: `Africa`, + population: 39570125, + gdpTotal: 84930, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 32.27, + latitude: 1.375, + gdpPerPerson: 2146, + rank: 34, + unemployment: 10, + oilProduction: 1, + birthRate: 10, + medianAge: 32, + electricity: 35388, + televisions: 27867123, + publicDebt: 21, + internet: 2000000 + }), + new WorldStatsItem( + { + code: `IRQ`, + name: `Iraq`, + continent: `Asia`, + population: 39192111, + gdpTotal: 596700, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 43.66, + latitude: 33.218, + gdpPerPerson: 15225, + rank: 35, + unemployment: 6, + oilProduction: 0, + birthRate: 20, + medianAge: 44, + electricity: 48545, + televisions: 13178804, + publicDebt: 40, + internet: 9538092 + }), + new WorldStatsItem( + { + code: `POL`, + name: `Poland`, + continent: `Europe`, + population: 38476269, + gdpTotal: 1052000, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 20.073, + latitude: 52.374, + gdpPerPerson: 27342, + rank: 36, + unemployment: 13, + oilProduction: 0, + birthRate: 10, + medianAge: 38, + electricity: 146200, + televisions: 13050000, + publicDebt: 43, + internet: 16000000 + }), + new WorldStatsItem( + { + code: `SDN`, + name: `Sudan`, + continent: `Africa`, + population: 37345935, + gdpTotal: 176300, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 30.217, + latitude: 15.434, + gdpPerPerson: 4721, + rank: 37, + unemployment: 19, + oilProduction: 484500, + birthRate: 34, + medianAge: 19, + electricity: 3944, + televisions: 2380000, + publicDebt: 106, + internet: 1500000 + }), + new WorldStatsItem( + { + code: `CAN`, + name: `Canada`, + continent: `North America`, + population: 35623680, + gdpTotal: 1674000, + economy: `Developed`, + region: `Northern America`, + status: `Country`, + longitude: -108, + latitude: 55.855, + gdpPerPerson: 46991, + rank: 38, + unemployment: 6, + oilProduction: 3310000, + birthRate: 10, + medianAge: 40, + electricity: 609600, + televisions: 21500000, + publicDebt: 64, + internet: 28000000 + }), + new WorldStatsItem( + { + code: `AFG`, + name: `Afghanistan`, + continent: `Asia`, + population: 34124811, + gdpTotal: 64080, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 66.041, + latitude: 33.977, + gdpPerPerson: 1878, + rank: 39, + unemployment: 9, + oilProduction: 2, + birthRate: 15, + medianAge: 39, + electricity: 64532, + televisions: 15374294, + publicDebt: 25, + internet: 18662148 + }), + new WorldStatsItem( + { + code: `MAR`, + name: `Morocco`, + continent: `Africa`, + population: 33986655, + gdpTotal: 282800, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: -5.707, + latitude: 32.104, + gdpPerPerson: 8321, + rank: 40, + unemployment: 10, + oilProduction: 300, + birthRate: 21, + medianAge: 25, + electricity: 21370, + televisions: 3100000, + publicDebt: 67, + internet: 7300000 + }), + new WorldStatsItem( + { + code: `MYS`, + name: `Malaysia`, + continent: `Asia`, + population: 31381992, + gdpTotal: 863000, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 101.72, + latitude: 4.89, + gdpPerPerson: 27500, + rank: 41, + unemployment: 3, + oilProduction: 757500, + birthRate: 22, + medianAge: 25, + electricity: 82360, + televisions: 10800000, + publicDebt: 42, + internet: 15868000 + }), + new WorldStatsItem( + { + code: `VEN`, + name: `Venezuela`, + continent: `South America`, + population: 31304016, + gdpTotal: 468600, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -64.78, + latitude: 6.695, + gdpPerPerson: 14969, + rank: 42, + unemployment: 9, + oilProduction: 2398000, + birthRate: 21, + medianAge: 25, + electricity: 99200, + televisions: 4100000, + publicDebt: 19, + internet: 5720000 + }), + new WorldStatsItem( + { + code: `PER`, + name: `Peru`, + continent: `South America`, + population: 31036656, + gdpTotal: 410400, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -73.82, + latitude: -12.89, + gdpPerPerson: 13223, + rank: 43, + unemployment: 7, + oilProduction: 119000, + birthRate: 20, + medianAge: 26, + electricity: 24970, + televisions: 3060000, + publicDebt: 29, + internet: 7636000 + }), + new WorldStatsItem( + { + code: `UZB`, + name: `Uzbekistan`, + continent: `Asia`, + population: 29748859, + gdpTotal: 202300, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 63.288, + latitude: 42.338, + gdpPerPerson: 6800, + rank: 44, + unemployment: 1, + oilProduction: 109400, + birthRate: 18, + medianAge: 24, + electricity: 49000, + televisions: 6400000, + publicDebt: 19, + internet: 1200000 + }), + new WorldStatsItem( + { + code: `NPL`, + name: `Nepal`, + continent: `Asia`, + population: 29384297, + gdpTotal: 71520, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 82.328, + latitude: 28.843, + gdpPerPerson: 2434, + rank: 45, + unemployment: 5, + oilProduction: 3, + birthRate: 18, + medianAge: 34, + electricity: 68842, + televisions: 21075997, + publicDebt: 16, + internet: 7780693 + }), + new WorldStatsItem( + { + code: `AGO`, + name: `Angola`, + continent: `Africa`, + population: 29310273, + gdpTotal: 189000, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 18.097, + latitude: -12.37, + gdpPerPerson: 6448, + rank: 46, + unemployment: 14, + oilProduction: 0, + birthRate: 15, + medianAge: 38, + electricity: 25890, + televisions: 21283158, + publicDebt: 12, + internet: 100000 + }), + new WorldStatsItem( + { + code: `SAU`, + name: `Saudi Arabia`, + continent: `Asia`, + population: 28571770, + gdpTotal: 1731000, + economy: `Developed`, + region: `Middle East`, + status: `Country`, + longitude: 45.129, + latitude: 24.248, + gdpPerPerson: 60584, + rank: 47, + unemployment: 13, + oilProduction: 11000000, + birthRate: 29, + medianAge: 22, + electricity: 165600, + televisions: 5100000, + publicDebt: 24, + internet: 6200000 + }), + new WorldStatsItem( + { + code: `YEM`, + name: `Yemen`, + continent: `Asia`, + population: 28036829, + gdpTotal: 73450, + economy: `Least developed`, + region: `Middle East`, + status: `Country`, + longitude: 48.53, + latitude: 15.658, + gdpPerPerson: 2620, + rank: 48, + unemployment: 35, + oilProduction: 339200, + birthRate: 42, + medianAge: 17, + electricity: 4456, + televisions: 470000, + publicDebt: 34, + internet: 320000 + }), + new WorldStatsItem( + { + code: `GHA`, + name: `Ghana`, + continent: `Africa`, + population: 27499924, + gdpTotal: 120800, + economy: `Developing`, + region: `Western Africa`, + status: `Country`, + longitude: -0.893, + latitude: 8.607, + gdpPerPerson: 4393, + rank: 49, + unemployment: 11, + oilProduction: 700, + birthRate: 29, + medianAge: 20, + electricity: 7042, + televisions: 1900000, + publicDebt: 59, + internet: 650000 + }), + new WorldStatsItem( + { + code: `MOZ`, + name: `Mozambique`, + continent: `Africa`, + population: 26573706, + gdpTotal: 35010, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 38.075, + latitude: -15.41, + gdpPerPerson: 1317, + rank: 50, + unemployment: 21, + oilProduction: 0, + birthRate: 38, + medianAge: 17, + electricity: 13170, + televisions: 67600, + publicDebt: 22, + internet: 200000 + }), + new WorldStatsItem( + { + code: `PRK`, + name: `North Korea`, + continent: `Asia`, + population: 25248140, + gdpTotal: 40000, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 127.01, + latitude: 40.333, + gdpPerPerson: 1584, + rank: 51, + unemployment: 13, + oilProduction: 0, + birthRate: 23, + medianAge: 55, + electricity: 35619, + televisions: 16501842, + publicDebt: 30, + internet: 2340760 + }), + new WorldStatsItem( + { + code: `MDG`, + name: `Madagascar`, + continent: `Africa`, + population: 25054161, + gdpTotal: 36860, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 46.87, + latitude: -18.82, + gdpPerPerson: 1471, + rank: 52, + unemployment: 15, + oilProduction: 0, + birthRate: 20, + medianAge: 36, + electricity: 86068, + televisions: 9470858, + publicDebt: 31, + internet: 1407981 + }), + new WorldStatsItem( + { + code: `CMR`, + name: `Cameroon`, + continent: `Africa`, + population: 24994885, + gdpTotal: 77240, + economy: `Developing`, + region: `Middle Africa`, + status: `Country`, + longitude: 12.451, + latitude: 4.365, + gdpPerPerson: 3090, + rank: 53, + unemployment: 30, + oilProduction: 85300, + birthRate: 35, + medianAge: 19, + electricity: 4090, + televisions: 450000, + publicDebt: 16, + internet: 370000 + }), + new WorldStatsItem( + { + code: `CIV`, + name: `Ivory Coast`, + continent: `Africa`, + population: 24184810, + gdpTotal: 87120, + economy: `Developing`, + region: `Western Africa`, + status: `Country`, + longitude: -5.555, + latitude: 7.538, + gdpPerPerson: 3602, + rank: 54, + unemployment: 3, + oilProduction: 1, + birthRate: 17, + medianAge: 55, + electricity: 49302, + televisions: 9034402, + publicDebt: 75, + internet: 300000 + }), + new WorldStatsItem( + { + code: `TWN`, + name: `Taiwan`, + continent: `Asia`, + population: 23508428, + gdpTotal: 1127000, + economy: `Developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 120.96, + latitude: 23.636, + gdpPerPerson: 47940, + rank: 55, + unemployment: 4, + oilProduction: 600, + birthRate: 9, + medianAge: 36, + electricity: 235000, + televisions: 8800000, + publicDebt: 28, + internet: 14760000 + }), + new WorldStatsItem( + { + code: `AUS`, + name: `Australia`, + continent: `Oceania`, + population: 23232413, + gdpTotal: 1189000, + economy: `Developed`, + region: `Australia`, + status: `Country`, + longitude: 135.87, + latitude: -25.63, + gdpPerPerson: 51178, + rank: 56, + unemployment: 4, + oilProduction: 540000, + birthRate: 13, + medianAge: 37, + electricity: 236700, + televisions: 10150000, + publicDebt: 16, + internet: 11240000 + }), + new WorldStatsItem( + { + code: `LKA`, + name: `Sri Lanka`, + continent: `Asia`, + population: 22409381, + gdpTotal: 236700, + economy: `Developing`, + region: `Southern Asia`, + status: `Country`, + longitude: 80.792, + latitude: 7.881, + gdpPerPerson: 10563, + rank: 57, + unemployment: 6, + oilProduction: 0, + birthRate: 17, + medianAge: 30, + electricity: 8411, + televisions: 1530000, + publicDebt: 86, + internet: 771700 + }), + new WorldStatsItem( + { + code: `ROU`, + name: `Romania`, + continent: `Europe`, + population: 21529967, + gdpTotal: 441000, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 24.974, + latitude: 45.967, + gdpPerPerson: 20483, + rank: 58, + unemployment: 4, + oilProduction: 115000, + birthRate: 11, + medianAge: 37, + electricity: 60520, + televisions: 5250000, + publicDebt: 13, + internet: 12000000 + }), + new WorldStatsItem( + { + code: `BFA`, + name: `Burkina Faso`, + continent: `Africa`, + population: 20107509, + gdpTotal: 32990, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -1.567, + latitude: 12.251, + gdpPerPerson: 1641, + rank: 59, + unemployment: 4, + oilProduction: 5, + birthRate: 21, + medianAge: 30, + electricity: 82658, + televisions: 7478745, + publicDebt: 14, + internet: 5896530 + }), + new WorldStatsItem( + { + code: `NER`, + name: `Niger`, + continent: `Africa`, + population: 19245344, + gdpTotal: 20150, + economy: `Least developed`, + region: `Northern Africa`, + status: `Country`, + longitude: 10.845, + latitude: 17.92, + gdpPerPerson: 1047, + rank: 60, + unemployment: 9, + oilProduction: 5, + birthRate: 18, + medianAge: 53, + electricity: 10652, + televisions: 8203307, + publicDebt: 17, + internet: 157021 + }), + new WorldStatsItem( + { + code: `MWI`, + name: `Malawi`, + continent: `Africa`, + population: 19196246, + gdpTotal: 21200, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 34.282, + latitude: -13.26, + gdpPerPerson: 1104, + rank: 61, + unemployment: 12, + oilProduction: 3, + birthRate: 12, + medianAge: 51, + electricity: 20676, + televisions: 4938675, + publicDebt: 51, + internet: 139500 + }), + new WorldStatsItem( + { + code: `KAZ`, + name: `Kazakhstan`, + continent: `Asia`, + population: 18556698, + gdpTotal: 460700, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 66.966, + latitude: 47.999, + gdpPerPerson: 24827, + rank: 62, + unemployment: 7, + oilProduction: 1355000, + birthRate: 16, + medianAge: 29, + electricity: 76340, + televisions: 3880000, + publicDebt: 8, + internet: 1901000 + }), + new WorldStatsItem( + { + code: `SYR`, + name: `Syria`, + continent: `Asia`, + population: 18028549, + gdpTotal: 50280, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 39.062, + latitude: 34.807, + gdpPerPerson: 2789, + rank: 63, + unemployment: 9, + oilProduction: 379000, + birthRate: 27, + medianAge: 21, + electricity: 153200, + televisions: 1050000, + publicDebt: 38, + internet: 3470000 + }), + new WorldStatsItem( + { + code: `MLI`, + name: `Mali`, + continent: `Africa`, + population: 17885245, + gdpTotal: 38090, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -1.496, + latitude: 17.867, + gdpPerPerson: 2130, + rank: 64, + unemployment: 4, + oilProduction: 4, + birthRate: 21, + medianAge: 46, + electricity: 72483, + televisions: 4783188, + publicDebt: 38, + internet: 8619386 + }), + new WorldStatsItem( + { + code: `CHL`, + name: `Chile`, + continent: `South America`, + population: 17789267, + gdpTotal: 436100, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -69.11, + latitude: -23.36, + gdpPerPerson: 24515, + rank: 65, + unemployment: 7, + oilProduction: 15100, + birthRate: 15, + medianAge: 31, + electricity: 47600, + televisions: 3150000, + publicDebt: 4, + internet: 557000 + }), + new WorldStatsItem( + { + code: `NLD`, + name: `Netherlands`, + continent: `Europe`, + population: 17084719, + gdpTotal: 870800, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 6.272, + latitude: 52.971, + gdpPerPerson: 50970, + rank: 66, + unemployment: 5, + oilProduction: 76000, + birthRate: 11, + medianAge: 40, + electricity: 94340, + televisions: 8100000, + publicDebt: 46, + internet: 15000000 + }), + new WorldStatsItem( + { + code: `ECU`, + name: `Ecuador`, + continent: `South America`, + population: 16290913, + gdpTotal: 182400, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -77.98, + latitude: -1.291, + gdpPerPerson: 11196, + rank: 67, + unemployment: 9, + oilProduction: 511100, + birthRate: 22, + medianAge: 24, + electricity: 12940, + televisions: 2500000, + publicDebt: 33, + internet: 1549000 + }), + new WorldStatsItem( + { + code: `KHM`, + name: `Cambodia`, + continent: `Asia`, + population: 16204486, + gdpTotal: 58940, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 104.96, + latitude: 12.558, + gdpPerPerson: 3637, + rank: 68, + unemployment: 15, + oilProduction: 1, + birthRate: 17, + medianAge: 50, + electricity: 45509, + televisions: 2489832, + publicDebt: 22, + internet: 11512560 + }), + new WorldStatsItem( + { + code: `ZMB`, + name: `Zambia`, + continent: `Africa`, + population: 15972000, + gdpTotal: 65170, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 26.301, + latitude: -14.3, + gdpPerPerson: 4080, + rank: 69, + unemployment: 50, + oilProduction: 150, + birthRate: 41, + medianAge: 17, + electricity: 8850, + televisions: 277000, + publicDebt: 28, + internet: 500000 + }), + new WorldStatsItem( + { + code: `GTM`, + name: `Guatemala`, + continent: `North America`, + population: 15460732, + gdpTotal: 131800, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -90.4, + latitude: 15.225, + gdpPerPerson: 8525, + rank: 70, + unemployment: 3, + oilProduction: 13000, + birthRate: 29, + medianAge: 19, + electricity: 7281, + televisions: 1323000, + publicDebt: 21, + internet: 1320000 + }), + new WorldStatsItem( + { + code: `SEN`, + name: `Senegal`, + continent: `Africa`, + population: 14668522, + gdpTotal: 39720, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -14.76, + latitude: 15.47, + gdpPerPerson: 2708, + rank: 71, + unemployment: 48, + oilProduction: 0, + birthRate: 37, + medianAge: 19, + electricity: 2159, + televisions: 361000, + publicDebt: 23, + internet: 820000 + }), + new WorldStatsItem( + { + code: `ZWE`, + name: `Zimbabwe`, + continent: `Africa`, + population: 13805084, + gdpTotal: 28330, + economy: `Emerging`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.115, + latitude: -19.02, + gdpPerPerson: 2052, + rank: 72, + unemployment: 80, + oilProduction: 0, + birthRate: 32, + medianAge: 18, + electricity: 9950, + televisions: 370000, + publicDebt: 218, + internet: 1351000 + }), + new WorldStatsItem( + { + code: `SSD`, + name: `South Sudan`, + continent: `Africa`, + population: 13026129, + gdpTotal: 20880, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.708, + latitude: 7.857, + gdpPerPerson: 1603, + rank: 73, + unemployment: 11, + oilProduction: 5, + birthRate: 8, + medianAge: 43, + electricity: 41476, + televisions: 7716253, + publicDebt: 41, + internet: 4569804 + }), + new WorldStatsItem( + { + code: `GIN`, + name: `Guinea`, + continent: `Africa`, + population: 12413867, + gdpTotal: 16080, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -9.522, + latitude: 10.478, + gdpPerPerson: 1295, + rank: 74, + unemployment: 15, + oilProduction: 4, + birthRate: 5, + medianAge: 49, + electricity: 15826, + televisions: 6262180, + publicDebt: 32, + internet: 6439493 + }), + new WorldStatsItem( + { + code: `TCD`, + name: `Chad`, + continent: `Africa`, + population: 12075985, + gdpTotal: 30590, + economy: `Least developed`, + region: `Northern Africa`, + status: `Country`, + longitude: 18.716, + latitude: 15.46, + gdpPerPerson: 2533, + rank: 75, + unemployment: 15, + oilProduction: 2, + birthRate: 25, + medianAge: 46, + electricity: 57747, + televisions: 8629897, + publicDebt: 33, + internet: 6531943 + }), + new WorldStatsItem( + { + code: `RWA`, + name: `Rwanda`, + continent: `Africa`, + population: 11901484, + gdpTotal: 21970, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.867, + latitude: -1.936, + gdpPerPerson: 1846, + rank: 76, + unemployment: 14, + oilProduction: 0, + birthRate: 23, + medianAge: 51, + electricity: 51710, + televisions: 1363647, + publicDebt: 36, + internet: 2425128 + }), + new WorldStatsItem( + { + code: `BEL`, + name: `Belgium`, + continent: `Europe`, + population: 11491346, + gdpTotal: 508600, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 4.605, + latitude: 50.911, + gdpPerPerson: 44259, + rank: 77, + unemployment: 8, + oilProduction: 9000, + birthRate: 10, + medianAge: 41, + electricity: 80840, + televisions: 4720000, + publicDebt: 85, + internet: 5220000 + }), + new WorldStatsItem( + { + code: `BDI`, + name: `Burundi`, + continent: `Africa`, + population: 11466756, + gdpTotal: 7892, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.913, + latitude: -3.384, + gdpPerPerson: 688, + rank: 78, + unemployment: 12, + oilProduction: 3, + birthRate: 16, + medianAge: 35, + electricity: 43850, + televisions: 2920735, + publicDebt: 20, + internet: 3908915 + }), + new WorldStatsItem( + { + code: `TUN`, + name: `Tunisia`, + continent: `Africa`, + population: 11403800, + gdpTotal: 130800, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 9.516, + latitude: 33.785, + gdpPerPerson: 11470, + rank: 79, + unemployment: 14, + oilProduction: 76900, + birthRate: 16, + medianAge: 29, + electricity: 12850, + televisions: 920000, + publicDebt: 55, + internet: 1722000 + }), + new WorldStatsItem( + { + code: `CUB`, + name: `Cuba`, + continent: `North America`, + population: 11147407, + gdpTotal: 132900, + economy: `Emerging`, + region: `Central America`, + status: `Country`, + longitude: -80.54, + latitude: 22.567, + gdpPerPerson: 11922, + rank: 80, + unemployment: 2, + oilProduction: 58300, + birthRate: 11, + medianAge: 37, + electricity: 16450, + televisions: 2640000, + publicDebt: 37, + internet: 1310000 + }), + new WorldStatsItem( + { + code: `BOL`, + name: `Bolivia`, + continent: `South America`, + population: 11138234, + gdpTotal: 78350, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -63.57, + latitude: -16.3, + gdpPerPerson: 7034, + rank: 81, + unemployment: 8, + oilProduction: 46470, + birthRate: 22, + medianAge: 23, + electricity: 5293, + televisions: 900000, + publicDebt: 46, + internet: 1000000 + }), + new WorldStatsItem( + { + code: `BEN`, + name: `Benin`, + continent: `Africa`, + population: 11038805, + gdpTotal: 24310, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: 2.704, + latitude: 10.535, + gdpPerPerson: 2202, + rank: 82, + unemployment: 2, + oilProduction: 0, + birthRate: 25, + medianAge: 40, + electricity: 13145, + televisions: 7167916, + publicDebt: 34, + internet: 8520122 + }), + new WorldStatsItem( + { + code: `PRT`, + name: `Portugal`, + continent: `Europe`, + population: 10839514, + gdpTotal: 297100, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: -7.757, + latitude: 40.815, + gdpPerPerson: 27409, + rank: 83, + unemployment: 8, + oilProduction: 9500, + birthRate: 10, + medianAge: 39, + electricity: 49040, + televisions: 3310000, + publicDebt: 64, + internet: 3549000 + }), + new WorldStatsItem( + { + code: `GRC`, + name: `Greece`, + continent: `Europe`, + population: 10768477, + gdpTotal: 290500, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 21.871, + latitude: 39.558, + gdpPerPerson: 26977, + rank: 84, + unemployment: 8, + oilProduction: 5687, + birthRate: 10, + medianAge: 42, + electricity: 56130, + televisions: 2540000, + publicDebt: 90, + internet: 2540000 + }), + new WorldStatsItem( + { + code: `DOM`, + name: `Dominican Republic`, + continent: `North America`, + population: 10734247, + gdpTotal: 161900, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -70.17, + latitude: 18.775, + gdpPerPerson: 15083, + rank: 85, + unemployment: 16, + oilProduction: 12, + birthRate: 23, + medianAge: 25, + electricity: 12220, + televisions: 770000, + publicDebt: 41, + internet: 1677000 + }), + new WorldStatsItem( + { + code: `CZE`, + name: `Czechia`, + continent: `Europe`, + population: 10674723, + gdpTotal: 350900, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 15.461, + latitude: 49.807, + gdpPerPerson: 32872, + rank: 86, + unemployment: 7, + oilProduction: 18030, + birthRate: 9, + medianAge: 40, + electricity: 77380, + televisions: 3405834, + publicDebt: 26, + internet: 4400000 + }), + new WorldStatsItem( + { + code: `HTI`, + name: `Haiti`, + continent: `North America`, + population: 10646714, + gdpTotal: 19340, + economy: `Least developed`, + region: `Central America`, + status: `Country`, + longitude: -72.23, + latitude: 19.342, + gdpPerPerson: 1817, + rank: 87, + unemployment: 15, + oilProduction: 2, + birthRate: 9, + medianAge: 52, + electricity: 12871, + televisions: 4329511, + publicDebt: 25, + internet: 4777792 + }), + new WorldStatsItem( + { + code: `JOR`, + name: `Jordan`, + continent: `Asia`, + population: 10248069, + gdpTotal: 86190, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 38.125, + latitude: 32.309, + gdpPerPerson: 8410, + rank: 88, + unemployment: 14, + oilProduction: 0, + birthRate: 20, + medianAge: 24, + electricity: 9074, + televisions: 500000, + publicDebt: 72, + internet: 1127000 + }), + new WorldStatsItem( + { + code: `AZE`, + name: `Azerbaijan`, + continent: `Asia`, + population: 9961396, + gdpTotal: 167900, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 48.401, + latitude: 40.344, + gdpPerPerson: 16855, + rank: 89, + unemployment: 1, + oilProduction: 934700, + birthRate: 18, + medianAge: 28, + electricity: 23800, + televisions: 170000, + publicDebt: 7, + internet: 1036000 + }), + new WorldStatsItem( + { + code: `SWE`, + name: `Sweden`, + continent: `Europe`, + population: 9960487, + gdpTotal: 498100, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 17.594, + latitude: 64.621, + gdpPerPerson: 50008, + rank: 90, + unemployment: 6, + oilProduction: 2350, + birthRate: 10, + medianAge: 41, + electricity: 153200, + televisions: 4600000, + publicDebt: 42, + internet: 7000000 + }), + new WorldStatsItem( + { + code: `HUN`, + name: `Hungary`, + continent: `Europe`, + population: 9850845, + gdpTotal: 267600, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 19.485, + latitude: 47.153, + gdpPerPerson: 27165, + rank: 91, + unemployment: 7, + oilProduction: 42180, + birthRate: 10, + medianAge: 39, + electricity: 33690, + televisions: 4420000, + publicDebt: 67, + internet: 4200000 + }), + new WorldStatsItem( + { + code: `BLR`, + name: `Belarus`, + continent: `Europe`, + population: 9549747, + gdpTotal: 165400, + economy: `Developing`, + region: `Eastern Europe`, + status: `Country`, + longitude: 27.943, + latitude: 53.705, + gdpPerPerson: 17320, + rank: 92, + unemployment: 15, + oilProduction: 5, + birthRate: 7, + medianAge: 33, + electricity: 84070, + televisions: 3348094, + publicDebt: 6, + internet: 3754027 + }), + new WorldStatsItem( + { + code: `HND`, + name: `Honduras`, + continent: `North America`, + population: 9038741, + gdpTotal: 43190, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -86.74, + latitude: 14.889, + gdpPerPerson: 4778, + rank: 93, + unemployment: 28, + oilProduction: 0, + birthRate: 27, + medianAge: 20, + electricity: 5339, + televisions: 570000, + publicDebt: 24, + internet: 344100 + }), + new WorldStatsItem( + { + code: `AUT`, + name: `Austria`, + continent: `Europe`, + population: 8754413, + gdpTotal: 416600, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 14.987, + latitude: 47.624, + gdpPerPerson: 47587, + rank: 94, + unemployment: 4, + oilProduction: 23320, + birthRate: 9, + medianAge: 42, + electricity: 61020, + televisions: 10150000, + publicDebt: 59, + internet: 4277000 + }), + new WorldStatsItem( + { + code: `TJK`, + name: `Tajikistan`, + continent: `Asia`, + population: 8468555, + gdpTotal: 25810, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 71.234, + latitude: 38.86, + gdpPerPerson: 3048, + rank: 95, + unemployment: 11, + oilProduction: 5, + birthRate: 8, + medianAge: 44, + electricity: 56534, + televisions: 6542566, + publicDebt: 44, + internet: 4521889 + }), + new WorldStatsItem( + { + code: `ISR`, + name: `Israel`, + continent: `Asia`, + population: 8299706, + gdpTotal: 297000, + economy: `Developed`, + region: `Middle East`, + status: `Country`, + longitude: 34.977, + latitude: 30.748, + gdpPerPerson: 35784, + rank: 96, + unemployment: 7, + oilProduction: 100, + birthRate: 20, + medianAge: 29, + electricity: 46850, + televisions: 1690000, + publicDebt: 81, + internet: 2000000 + }), + new WorldStatsItem( + { + code: `CHE`, + name: `Switzerland`, + continent: `Europe`, + population: 8236303, + gdpTotal: 496300, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 7.865, + latitude: 46.729, + gdpPerPerson: 60258, + rank: 97, + unemployment: 3, + oilProduction: 3202, + birthRate: 10, + medianAge: 41, + electricity: 56100, + televisions: 3310000, + publicDebt: 44, + internet: 4610000 + }), + new WorldStatsItem( + { + code: `TGO`, + name: `Togo`, + continent: `Africa`, + population: 7965055, + gdpTotal: 11610, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: 1.146, + latitude: 6.799, + gdpPerPerson: 1458, + rank: 98, + unemployment: 3, + oilProduction: 4, + birthRate: 9, + medianAge: 37, + electricity: 28181, + televisions: 2309082, + publicDebt: 41, + internet: 789456 + }), + new WorldStatsItem( + { + code: `SOM`, + name: `Somalia`, + continent: `Africa`, + population: 7531386, + gdpTotal: 4719, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 44.134, + latitude: 3.077, + gdpPerPerson: 627, + rank: 99, + unemployment: 2, + oilProduction: 4, + birthRate: 12, + medianAge: 50, + electricity: 29272, + televisions: 1648650, + publicDebt: 22, + internet: 3227211 + }), + new WorldStatsItem( + { + code: `HKG`, + name: `Hong Kong`, + continent: `Asia`, + population: 7191503, + gdpTotal: 427400, + economy: `Developing`, + region: `Eastern Asia`, + status: `Dependency`, + longitude: 114.08, + latitude: 22.38, + gdpPerPerson: 59431, + rank: 100, + unemployment: 3, + oilProduction: 0, + birthRate: 8, + medianAge: 55, + electricity: 86792, + televisions: 4084025, + publicDebt: 35, + internet: 3907543 + }), + new WorldStatsItem( + { + code: `LAO`, + name: `Laos`, + continent: `Asia`, + population: 7126706, + gdpTotal: 40960, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 102.36, + latitude: 20.171, + gdpPerPerson: 5747, + rank: 101, + unemployment: 8, + oilProduction: 0, + birthRate: 6, + medianAge: 34, + electricity: 7093, + televisions: 4503172, + publicDebt: 19, + internet: 5426041 + }), + new WorldStatsItem( + { + code: `SRB`, + name: `Serbia`, + continent: `Europe`, + population: 7111024, + gdpTotal: 101800, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 20.908, + latitude: 44.206, + gdpPerPerson: 14316, + rank: 102, + unemployment: 5, + oilProduction: 4, + birthRate: 13, + medianAge: 48, + electricity: 30150, + televisions: 1316607, + publicDebt: 17, + internet: 4104775 + }), + new WorldStatsItem( + { + code: `BGR`, + name: `Bulgaria`, + continent: `Europe`, + population: 7101510, + gdpTotal: 143100, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 25.465, + latitude: 42.741, + gdpPerPerson: 20151, + rank: 103, + unemployment: 8, + oilProduction: 3661, + birthRate: 10, + medianAge: 41, + electricity: 45700, + televisions: 3310000, + publicDebt: 11, + internet: 1899000 + }), + new WorldStatsItem( + { + code: `PRY`, + name: `Paraguay`, + continent: `South America`, + population: 6943739, + gdpTotal: 64670, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -58.44, + latitude: -23.42, + gdpPerPerson: 9313, + rank: 104, + unemployment: 6, + oilProduction: 0, + birthRate: 28, + medianAge: 22, + electricity: 70000, + televisions: 990000, + publicDebt: 27, + internet: 280000 + }), + new WorldStatsItem( + { + code: `PNG`, + name: `Papua New Guinea`, + continent: `Oceania`, + population: 6909701, + gdpTotal: 28020, + economy: `Developing`, + region: `Melanesia`, + status: `Country`, + longitude: 143.62, + latitude: -5.836, + gdpPerPerson: 4055, + rank: 105, + unemployment: 2, + oilProduction: 47800, + birthRate: 28, + medianAge: 22, + electricity: 3698, + televisions: 59841, + publicDebt: 40, + internet: 110000 + }), + new WorldStatsItem( + { + code: `LBY`, + name: `Libya`, + continent: `Africa`, + population: 6653210, + gdpTotal: 90890, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 17.23, + latitude: 26.339, + gdpPerPerson: 13661, + rank: 106, + unemployment: 30, + oilProduction: 1712000, + birthRate: 26, + medianAge: 24, + electricity: 21150, + televisions: 730000, + publicDebt: 5, + internet: 260000 + }), + new WorldStatsItem( + { + code: `LBN`, + name: `Lebanon`, + continent: `Asia`, + population: 6229794, + gdpTotal: 85160, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 36.042, + latitude: 34.168, + gdpPerPerson: 13670, + rank: 107, + unemployment: 20, + oilProduction: 0, + birthRate: 18, + medianAge: 29, + electricity: 9183, + televisions: 1180000, + publicDebt: 187, + internet: 950000 + }), + new WorldStatsItem( + { + code: `SLV`, + name: `El Salvador`, + continent: `North America`, + population: 6172011, + gdpTotal: 54790, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -88.91, + latitude: 13.798, + gdpPerPerson: 8877, + rank: 108, + unemployment: 6, + oilProduction: 0, + birthRate: 26, + medianAge: 22, + electricity: 5316, + televisions: 600000, + publicDebt: 37, + internet: 700000 + }), + new WorldStatsItem( + { + code: `SLE`, + name: `Sierra Leone`, + continent: `Africa`, + population: 6163195, + gdpTotal: 10640, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -11.78, + latitude: 8.452, + gdpPerPerson: 1726, + rank: 109, + unemployment: 14, + oilProduction: 4, + birthRate: 6, + medianAge: 37, + electricity: 37412, + televisions: 2727270, + publicDebt: 6, + internet: 223239 + }), + new WorldStatsItem( + { + code: `ARE`, + name: `United Arab Emirates`, + continent: `Asia`, + population: 6072475, + gdpTotal: 667200, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 54.192, + latitude: 23.795, + gdpPerPerson: 109873, + rank: 110, + unemployment: 2, + oilProduction: 2510000, + birthRate: 16, + medianAge: 30, + electricity: 57060, + televisions: 310000, + publicDebt: 21, + internet: 2300000 + }), + new WorldStatsItem( + { + code: `NIC`, + name: `Nicaragua`, + continent: `North America`, + population: 6025951, + gdpTotal: 33550, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -85.09, + latitude: 12.523, + gdpPerPerson: 5568, + rank: 111, + unemployment: 5, + oilProduction: 0, + birthRate: 24, + medianAge: 22, + electricity: 2778, + televisions: 320000, + publicDebt: 63, + internet: 155000 + }), + new WorldStatsItem( + { + code: `ERI`, + name: `Eritrea`, + continent: `Africa`, + population: 5918919, + gdpTotal: 9169, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 39.772, + latitude: 15.191, + gdpPerPerson: 1549, + rank: 112, + unemployment: 9, + oilProduction: 5, + birthRate: 17, + medianAge: 54, + electricity: 67474, + televisions: 2078077, + publicDebt: 41, + internet: 1067843 + }), + new WorldStatsItem( + { + code: `SGP`, + name: `Singapore`, + continent: `Asia`, + population: 5888926, + gdpTotal: 487900, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 103.82, + latitude: 1.356, + gdpPerPerson: 82850, + rank: 113, + unemployment: 2, + oilProduction: 9836, + birthRate: 9, + medianAge: 38, + electricity: 39440, + televisions: 1330000, + publicDebt: 96, + internet: 3105000 + }), + new WorldStatsItem( + { + code: `KGZ`, + name: `Kyrgyzstan`, + continent: `Asia`, + population: 5789122, + gdpTotal: 21010, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 74.738, + latitude: 41.224, + gdpPerPerson: 3629, + rank: 114, + unemployment: 12, + oilProduction: 1, + birthRate: 21, + medianAge: 42, + electricity: 16640, + televisions: 2101152, + publicDebt: 15, + internet: 738896 + }), + new WorldStatsItem( + { + code: `CAF`, + name: `Central African Republic`, + continent: `Africa`, + population: 5625118, + gdpTotal: 3206, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 20.917, + latitude: 6.633, + gdpPerPerson: 570, + rank: 115, + unemployment: 8, + oilProduction: 5, + birthRate: 13, + medianAge: 32, + electricity: 71424, + televisions: 635931, + publicDebt: 29, + internet: 1933873 + }), + new WorldStatsItem( + { + code: `DNK`, + name: `Denmark`, + continent: `Europe`, + population: 5605948, + gdpTotal: 264800, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 9.348, + latitude: 56.13, + gdpPerPerson: 47236, + rank: 116, + unemployment: 3, + oilProduction: 342000, + birthRate: 11, + medianAge: 40, + electricity: 43350, + televisions: 3121000, + publicDebt: 26, + internet: 3500000 + }), + new WorldStatsItem( + { + code: `FIN`, + name: `Finland`, + continent: `Europe`, + population: 5491218, + gdpTotal: 224137, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 25.988, + latitude: 61.841, + gdpPerPerson: 40817, + rank: 117, + unemployment: 7, + oilProduction: 8951, + birthRate: 10, + medianAge: 42, + electricity: 73470, + televisions: 3200000, + publicDebt: 36, + internet: 3600000 + }), + new WorldStatsItem( + { + code: `SVK`, + name: `Slovakia`, + continent: `Europe`, + population: 5445829, + gdpTotal: 168800, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 18.877, + latitude: 48.702, + gdpPerPerson: 30996, + rank: 118, + unemployment: 8, + oilProduction: 12840, + birthRate: 11, + medianAge: 37, + electricity: 29890, + televisions: 2620000, + publicDebt: 36, + internet: 2350000 + }), + new WorldStatsItem( + { + code: `TKM`, + name: `Turkmenistan`, + continent: `Asia`, + population: 5351277, + gdpTotal: 94720, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 59.562, + latitude: 38.975, + gdpPerPerson: 17700, + rank: 119, + unemployment: 11, + oilProduction: 4, + birthRate: 11, + medianAge: 43, + electricity: 91281, + televisions: 2935468, + publicDebt: 17, + internet: 3203210 + }), + new WorldStatsItem( + { + code: `NOR`, + name: `Norway`, + continent: `Europe`, + population: 5320045, + gdpTotal: 364700, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 9.66, + latitude: 60.712, + gdpPerPerson: 68552, + rank: 120, + unemployment: 3, + oilProduction: 2560000, + birthRate: 11, + medianAge: 39, + electricity: 135800, + televisions: 2030000, + publicDebt: 83, + internet: 3800000 + }), + new WorldStatsItem( + { + code: `IRL`, + name: `Ireland`, + continent: `Europe`, + population: 5011102, + gdpTotal: 322000, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: -8.209, + latitude: 53.42, + gdpPerPerson: 64257, + rank: 121, + unemployment: 5, + oilProduction: 0, + birthRate: 14, + medianAge: 35, + electricity: 24130, + televisions: 1820000, + publicDebt: 25, + internet: 1708000 + }), + new WorldStatsItem( + { + code: `COG`, + name: `Congo`, + continent: `Africa`, + population: 4954674, + gdpTotal: 30270, + economy: `Developing`, + region: `Middle Africa`, + status: `Country`, + longitude: 16.264, + latitude: -0.07, + gdpPerPerson: 6109, + rank: 122, + unemployment: 13, + oilProduction: 4, + birthRate: 11, + medianAge: 52, + electricity: 83556, + televisions: 1560800, + publicDebt: 6, + internet: 2650237 + }), + new WorldStatsItem( + { + code: `CRI`, + name: `Costa Rica`, + continent: `North America`, + population: 4930258, + gdpTotal: 79260, + economy: `Emerging`, + region: `Central America`, + status: `Country`, + longitude: -83.91, + latitude: 9.92, + gdpPerPerson: 16076, + rank: 123, + unemployment: 5, + oilProduction: 0, + birthRate: 18, + medianAge: 27, + electricity: 8349, + televisions: 525000, + publicDebt: 47, + internet: 1500000 + }), + new WorldStatsItem( + { + code: `GEO`, + name: `Georgia`, + continent: `Asia`, + population: 4926330, + gdpTotal: 37270, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 43.257, + latitude: 42.162, + gdpPerPerson: 7565, + rank: 124, + unemployment: 15, + oilProduction: 5, + birthRate: 10, + medianAge: 43, + electricity: 44936, + televisions: 2728128, + publicDebt: 29, + internet: 3844448 + }), + new WorldStatsItem( + { + code: `LBR`, + name: `Liberia`, + continent: `Africa`, + population: 4689021, + gdpTotal: 3881, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -9.454, + latitude: 6.445, + gdpPerPerson: 828, + rank: 125, + unemployment: 4, + oilProduction: 0, + birthRate: 8, + medianAge: 35, + electricity: 89626, + televisions: 3065112, + publicDebt: 38, + internet: 1475304 + }), + new WorldStatsItem( + { + code: `PSE`, + name: `Palestine`, + continent: `Asia`, + population: 4543126, + gdpTotal: 21221, + economy: `Developing`, + region: `Middle East`, + status: `Disputed`, + longitude: 35.347, + latitude: 32.031, + gdpPerPerson: 4671, + rank: 126, + unemployment: 9, + oilProduction: 1, + birthRate: 10, + medianAge: 48, + electricity: 45973, + televisions: 2774033, + publicDebt: 16, + internet: 1718915 + }), + new WorldStatsItem( + { + code: `NZL`, + name: `New Zealand`, + continent: `Oceania`, + population: 4510327, + gdpTotal: 174800, + economy: `Developed`, + region: `Australia`, + status: `Country`, + longitude: 169.42, + latitude: -44.86, + gdpPerPerson: 38756, + rank: 127, + unemployment: 4, + oilProduction: 25880, + birthRate: 14, + medianAge: 36, + electricity: 42060, + televisions: 1926000, + publicDebt: 21, + internet: 3360000 + }), + new WorldStatsItem( + { + code: `HRV`, + name: `Croatia`, + continent: `Europe`, + population: 4292095, + gdpTotal: 94240, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 16.847, + latitude: 45.674, + gdpPerPerson: 21957, + rank: 128, + unemployment: 12, + oilProduction: 17100, + birthRate: 10, + medianAge: 41, + electricity: 11990, + televisions: 1220000, + publicDebt: 48, + internet: 1995000 + }), + new WorldStatsItem( + { + code: `BIH`, + name: `Bosnia`, + continent: `Europe`, + population: 3856181, + gdpTotal: 42530, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 17.66, + latitude: 43.918, + gdpPerPerson: 11029, + rank: 129, + unemployment: 46, + oilProduction: 0, + birthRate: 9, + medianAge: 39, + electricity: 12220, + televisions: 0, + publicDebt: 34, + internet: 1055000 + }), + new WorldStatsItem( + { + code: `MRT`, + name: `Mauritania`, + continent: `Africa`, + population: 3758571, + gdpTotal: 16710, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -8.89, + latitude: 20.387, + gdpPerPerson: 4446, + rank: 130, + unemployment: 9, + oilProduction: 5, + birthRate: 25, + medianAge: 50, + electricity: 15176, + televisions: 2558125, + publicDebt: 29, + internet: 2098221 + }), + new WorldStatsItem( + { + code: `PAN`, + name: `Panama`, + continent: `North America`, + population: 3753142, + gdpTotal: 93120, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -81.17, + latitude: 8.457, + gdpPerPerson: 24811, + rank: 131, + unemployment: 6, + oilProduction: 0, + birthRate: 21, + medianAge: 27, + electricity: 5661, + televisions: 510000, + publicDebt: 53, + internet: 525200 + }), + new WorldStatsItem( + { + code: `SOL`, + name: `Somaliland`, + continent: `Africa`, + population: 3500000, + gdpTotal: 12250, + economy: `Developing`, + region: `Eastern Africa`, + status: `Indeterminate`, + longitude: 45.798, + latitude: 9.748, + gdpPerPerson: 3500, + rank: 132, + unemployment: 1, + oilProduction: 4, + birthRate: 13, + medianAge: 43, + electricity: 73247, + televisions: 2235408, + publicDebt: 21, + internet: 1300238 + }), + new WorldStatsItem( + { + code: `MDA`, + name: `Moldova`, + continent: `Europe`, + population: 3474121, + gdpTotal: 18540, + economy: `Developing`, + region: `Eastern Europe`, + status: `Country`, + longitude: 28.552, + latitude: 47.515, + gdpPerPerson: 5337, + rank: 133, + unemployment: 2, + oilProduction: 0, + birthRate: 11, + medianAge: 34, + electricity: 3881, + televisions: 1260000, + publicDebt: 23, + internet: 700000 + }), + new WorldStatsItem( + { + code: `OMN`, + name: `Oman`, + continent: `Asia`, + population: 3424386, + gdpTotal: 173100, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 57.563, + latitude: 22.014, + gdpPerPerson: 50549, + rank: 134, + unemployment: 15, + oilProduction: 710800, + birthRate: 35, + medianAge: 19, + electricity: 11890, + televisions: 1600000, + publicDebt: 4, + internet: 340000 + }), + new WorldStatsItem( + { + code: `URY`, + name: `Uruguay`, + continent: `South America`, + population: 3360148, + gdpTotal: 73250, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -55.78, + latitude: -32.51, + gdpPerPerson: 21800, + rank: 135, + unemployment: 9, + oilProduction: 27830, + birthRate: 14, + medianAge: 33, + electricity: 9200, + televisions: 782000, + publicDebt: 65, + internet: 968000 + }), + new WorldStatsItem( + { + code: `PRI`, + name: `Puerto Rico`, + continent: `North America`, + population: 3351827, + gdpTotal: 131000, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -66.61, + latitude: 18.235, + gdpPerPerson: 39083, + rank: 136, + unemployment: 5, + oilProduction: 3, + birthRate: 11, + medianAge: 32, + electricity: 19677, + televisions: 1917997, + publicDebt: 25, + internet: 608062 + }), + new WorldStatsItem( + { + code: `MNG`, + name: `Mongolia`, + continent: `Asia`, + population: 3068243, + gdpTotal: 37000, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 103.82, + latitude: 46.856, + gdpPerPerson: 12059, + rank: 137, + unemployment: 4, + oilProduction: 1, + birthRate: 7, + medianAge: 35, + electricity: 3875, + televisions: 1726758, + publicDebt: 17, + internet: 562546 + }), + new WorldStatsItem( + { + code: `ALB`, + name: `Albania`, + continent: `Europe`, + population: 3047987, + gdpTotal: 33900, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 19.964, + latitude: 40.759, + gdpPerPerson: 11122, + rank: 138, + unemployment: 13, + oilProduction: 7006, + birthRate: 15, + medianAge: 30, + electricity: 5385, + televisions: 700000, + publicDebt: 51, + internet: 471200 + }), + new WorldStatsItem( + { + code: `ARM`, + name: `Armenia`, + continent: `Asia`, + population: 3045191, + gdpTotal: 26300, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 44.646, + latitude: 40.618, + gdpPerPerson: 8637, + rank: 139, + unemployment: 4, + oilProduction: 4, + birthRate: 14, + medianAge: 39, + electricity: 71042, + televisions: 2390201, + publicDebt: 9, + internet: 488333 + }), + new WorldStatsItem( + { + code: `JAM`, + name: `Jamaica`, + continent: `North America`, + population: 2990561, + gdpTotal: 25390, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -77.27, + latitude: 18.119, + gdpPerPerson: 8490, + rank: 140, + unemployment: 10, + oilProduction: 0, + birthRate: 20, + medianAge: 23, + electricity: 6985, + televisions: 460000, + publicDebt: 127, + internet: 1500000 + }), + new WorldStatsItem( + { + code: `KWT`, + name: `Kuwait`, + continent: `Asia`, + population: 2875422, + gdpTotal: 301100, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 47.487, + latitude: 29.315, + gdpPerPerson: 104715, + rank: 141, + unemployment: 2, + oilProduction: 2440000, + birthRate: 22, + medianAge: 26, + electricity: 41110, + televisions: 875000, + publicDebt: 10, + internet: 900000 + }), + new WorldStatsItem( + { + code: `LTU`, + name: `Lithuania`, + continent: `Europe`, + population: 2823859, + gdpTotal: 85620, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 23.838, + latitude: 55.152, + gdpPerPerson: 30320, + rank: 142, + unemployment: 4, + oilProduction: 13160, + birthRate: 9, + medianAge: 39, + electricity: 13480, + televisions: 1700000, + publicDebt: 17, + internet: 1330000 + }), + new WorldStatsItem( + { + code: `NAM`, + name: `Namibia`, + continent: `Africa`, + population: 2484780, + gdpTotal: 25990, + economy: `Developing`, + region: `Southern Africa`, + status: `Country`, + longitude: 16.944, + latitude: -20.52, + gdpPerPerson: 10460, + rank: 143, + unemployment: 5, + oilProduction: 0, + birthRate: 23, + medianAge: 21, + electricity: 1688, + televisions: 60000, + publicDebt: 22, + internet: 101000 + }), + new WorldStatsItem( + { + code: `QAT`, + name: `Qatar`, + continent: `Asia`, + population: 2314307, + gdpTotal: 334500, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 51.182, + latitude: 25.359, + gdpPerPerson: 144536, + rank: 144, + unemployment: 1, + oilProduction: 797500, + birthRate: 16, + medianAge: 31, + electricity: 13540, + televisions: 230000, + publicDebt: 11, + internet: 351000 + }), + new WorldStatsItem( + { + code: `BWA`, + name: `Botswana`, + continent: `Africa`, + population: 2214858, + gdpTotal: 35900, + economy: `Developing`, + region: `Southern Africa`, + status: `Country`, + longitude: 24.671, + latitude: -22.32, + gdpPerPerson: 16209, + rank: 145, + unemployment: 8, + oilProduction: 0, + birthRate: 23, + medianAge: 21, + electricity: 912, + televisions: 31000, + publicDebt: 5, + internet: 80000 + }), + new WorldStatsItem( + { + code: `MKD`, + name: `North Macedonia`, + continent: `Europe`, + population: 2103721, + gdpTotal: 29520, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 21.727, + latitude: 41.604, + gdpPerPerson: 14032, + rank: 146, + unemployment: 35, + oilProduction: 0, + birthRate: 12, + medianAge: 35, + electricity: 6051, + televisions: 510000, + publicDebt: 31, + internet: 685000 + }), + new WorldStatsItem( + { + code: `GMB`, + name: `Gambia`, + continent: `Africa`, + population: 2051363, + gdpTotal: 3387, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -15.32, + latitude: 13.438, + gdpPerPerson: 1651, + rank: 147, + unemployment: 7, + oilProduction: 1, + birthRate: 11, + medianAge: 37, + electricity: 9769, + televisions: 1486289, + publicDebt: 30, + internet: 187890 + }), + new WorldStatsItem( + { + code: `SVN`, + name: `Slovenia`, + continent: `Europe`, + population: 1972126, + gdpTotal: 68350, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 14.947, + latitude: 46.146, + gdpPerPerson: 34658, + rank: 148, + unemployment: 8, + oilProduction: 5, + birthRate: 9, + medianAge: 41, + electricity: 14900, + televisions: 710000, + publicDebt: 24, + internet: 1300000 + }), + new WorldStatsItem( + { + code: `LSO`, + name: `Lesotho`, + continent: `Africa`, + population: 1958042, + gdpTotal: 6019, + economy: `Least developed`, + region: `Southern Africa`, + status: `Country`, + longitude: 28.221, + latitude: -29.61, + gdpPerPerson: 3074, + rank: 149, + unemployment: 12, + oilProduction: 2, + birthRate: 8, + medianAge: 32, + electricity: 20229, + televisions: 1457517, + publicDebt: 14, + internet: 1375222 + }), + new WorldStatsItem( + { + code: `LVA`, + name: `Latvia`, + continent: `Europe`, + population: 1944643, + gdpTotal: 50650, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 26.505, + latitude: 56.755, + gdpPerPerson: 26046, + rank: 150, + unemployment: 6, + oilProduction: 0, + birthRate: 10, + medianAge: 40, + electricity: 4778, + televisions: 1220000, + publicDebt: 7, + internet: 1770000 + }), + new WorldStatsItem( + { + code: `RKS`, + name: `Kosovo`, + continent: `Europe`, + population: 1895250, + gdpTotal: 18490, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 20.891, + latitude: 42.557, + gdpPerPerson: 9756, + rank: 151, + unemployment: 12, + oilProduction: 0, + birthRate: 8, + medianAge: 55, + electricity: 14878, + televisions: 1287863, + publicDebt: 20, + internet: 1422193 + }), + new WorldStatsItem( + { + code: `GNB`, + name: `Guinea-Bissau`, + continent: `Africa`, + population: 1792338, + gdpTotal: 2851, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -14.59, + latitude: 11.942, + gdpPerPerson: 1591, + rank: 152, + unemployment: 5, + oilProduction: 5, + birthRate: 5, + medianAge: 55, + electricity: 74684, + televisions: 1427462, + publicDebt: 8, + internet: 365000 + }), + new WorldStatsItem( + { + code: `GAB`, + name: `Gabon`, + continent: `Africa`, + population: 1772255, + gdpTotal: 35980, + economy: `Developing`, + region: `Middle Africa`, + status: `Country`, + longitude: 11.592, + latitude: -0.807, + gdpPerPerson: 20302, + rank: 153, + unemployment: 21, + oilProduction: 240000, + birthRate: 36, + medianAge: 19, + electricity: 1520, + televisions: 63000, + publicDebt: 53, + internet: 145000 + }), + new WorldStatsItem( + { + code: `SWZ`, + name: `Eswatini`, + continent: `Africa`, + population: 1467152, + gdpTotal: 11060, + economy: `Developing`, + region: `Southern Africa`, + status: `Country`, + longitude: 31.45, + latitude: -26.52, + gdpPerPerson: 7538, + rank: 154, + unemployment: 6, + oilProduction: 3, + birthRate: 17, + medianAge: 39, + electricity: 72804, + televisions: 229393, + publicDebt: 5, + internet: 427760 + }), + new WorldStatsItem( + { + code: `BHR`, + name: `Bahrain`, + continent: `Asia`, + population: 1410942, + gdpTotal: 66370, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 50.535, + latitude: 26.027, + gdpPerPerson: 47039, + rank: 155, + unemployment: 15, + oilProduction: 184300, + birthRate: 17, + medianAge: 30, + electricity: 8187, + televisions: 275000, + publicDebt: 31, + internet: 250000 + }), + new WorldStatsItem( + { + code: `MUS`, + name: `Mauritius`, + continent: `Africa`, + population: 1356388, + gdpTotal: 25850, + economy: `Developing`, + region: `Eastern Africa`, + status: `Country`, + longitude: 57.555, + latitude: -20.25, + gdpPerPerson: 19058, + rank: 156, + unemployment: 9, + oilProduction: 0, + birthRate: 15, + medianAge: 32, + electricity: 2350, + televisions: 258000, + publicDebt: 63, + internet: 340000 + }), + new WorldStatsItem( + { + code: `TLS`, + name: `Timor-Leste`, + continent: `Asia`, + population: 1291358, + gdpTotal: 4975, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 125.66, + latitude: -8.826, + gdpPerPerson: 3853, + rank: 157, + unemployment: 8, + oilProduction: 5, + birthRate: 18, + medianAge: 48, + electricity: 84061, + televisions: 416260, + publicDebt: 25, + internet: 267437 + }), + new WorldStatsItem( + { + code: `EST`, + name: `Estonia`, + continent: `Europe`, + population: 1251581, + gdpTotal: 38700, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 25.441, + latitude: 58.845, + gdpPerPerson: 30921, + rank: 158, + unemployment: 5, + oilProduction: 6930, + birthRate: 10, + medianAge: 40, + electricity: 9599, + televisions: 605000, + publicDebt: 3, + internet: 780000 + }), + new WorldStatsItem( + { + code: `CYP`, + name: `Cyprus`, + continent: `Asia`, + population: 1221549, + gdpTotal: 29260, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 33.176, + latitude: 34.876, + gdpPerPerson: 23953, + rank: 159, + unemployment: 4, + oilProduction: 0, + birthRate: 13, + medianAge: 35, + electricity: 4618, + televisions: 0, + publicDebt: 60, + internet: 380000 + }), + new WorldStatsItem( + { + code: `TTO`, + name: `Trinidad and Tobago`, + continent: `North America`, + population: 1218208, + gdpTotal: 43570, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.21, + latitude: 10.352, + gdpPerPerson: 35766, + rank: 160, + unemployment: 4, + oilProduction: 5, + birthRate: 15, + medianAge: 47, + electricity: 58959, + televisions: 359389, + publicDebt: 29, + internet: 152416 + }), + new WorldStatsItem( + { + code: `FJI`, + name: `Fiji`, + continent: `Oceania`, + population: 920938, + gdpTotal: 8374, + economy: `Developing`, + region: `Melanesia`, + status: `Country`, + longitude: 177.85, + latitude: -17.75, + gdpPerPerson: 9093, + rank: 161, + unemployment: 11, + oilProduction: 5, + birthRate: 5, + medianAge: 41, + electricity: 88931, + televisions: 517580, + publicDebt: 17, + internet: 539400 + }), + new WorldStatsItem( + { + code: `DJI`, + name: `Djibouti`, + continent: `Africa`, + population: 865267, + gdpTotal: 3345, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 42.587, + latitude: 11.825, + gdpPerPerson: 3866, + rank: 162, + unemployment: 5, + oilProduction: 3, + birthRate: 17, + medianAge: 44, + electricity: 91593, + televisions: 209004, + publicDebt: 43, + internet: 476114 + }), + new WorldStatsItem( + { + code: `COM`, + name: `Comoros`, + continent: `Africa`, + population: 808080, + gdpTotal: 1259, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 43.877, + latitude: -11.86, + gdpPerPerson: 1558, + rank: 163, + unemployment: 11, + oilProduction: 3, + birthRate: 14, + medianAge: 46, + electricity: 6146, + televisions: 495921, + publicDebt: 10, + internet: 459977 + }), + new WorldStatsItem( + { + code: `GNQ`, + name: `Equatorial Guinea`, + continent: `Africa`, + population: 778358, + gdpTotal: 31770, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 10.521, + latitude: 1.763, + gdpPerPerson: 40817, + rank: 164, + unemployment: 30, + oilProduction: 385500, + birthRate: 37, + medianAge: 19, + electricity: 28, + televisions: 4000, + publicDebt: 2, + internet: 8000 + }), + new WorldStatsItem( + { + code: `BTN`, + name: `Bhutan`, + continent: `Asia`, + population: 758288, + gdpTotal: 6432, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 90.411, + latitude: 27.506, + gdpPerPerson: 8482, + rank: 165, + unemployment: 3, + oilProduction: 0, + birthRate: 21, + medianAge: 24, + electricity: 2000, + televisions: 11000, + publicDebt: 81, + internet: 40000 + }), + new WorldStatsItem( + { + code: `GUY`, + name: `Guyana`, + continent: `South America`, + population: 737718, + gdpTotal: 6093, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -58.96, + latitude: 5.607, + gdpPerPerson: 8259, + rank: 166, + unemployment: 2, + oilProduction: 3, + birthRate: 9, + medianAge: 37, + electricity: 84988, + televisions: 149848, + publicDebt: 12, + internet: 134377 + }), + new WorldStatsItem( + { + code: `SLB`, + name: `Solomon Islands`, + continent: `Oceania`, + population: 647581, + gdpTotal: 1198, + economy: `Least developed`, + region: `Melanesia`, + status: `Country`, + longitude: 161.3, + latitude: -9.221, + gdpPerPerson: 1850, + rank: 167, + unemployment: 4, + oilProduction: 3, + birthRate: 18, + medianAge: 30, + electricity: 3432, + televisions: 177555, + publicDebt: 43, + internet: 478635 + }), + new WorldStatsItem( + { + code: `MNE`, + name: `Montenegro`, + continent: `Europe`, + population: 642550, + gdpTotal: 10610, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 19.191, + latitude: 42.814, + gdpPerPerson: 16512, + rank: 168, + unemployment: 10, + oilProduction: 2, + birthRate: 24, + medianAge: 46, + electricity: 24709, + televisions: 126756, + publicDebt: 29, + internet: 336628 + }), + new WorldStatsItem( + { + code: `ESH`, + name: `Western Sahara`, + continent: `Africa`, + population: 603253, + gdpTotal: 907, + economy: `Least developed`, + region: `Northern Africa`, + status: `Dependency`, + longitude: -12.89, + latitude: 24.231, + gdpPerPerson: 1504, + rank: 169, + unemployment: 6, + oilProduction: 1, + birthRate: 23, + medianAge: 30, + electricity: 11081, + televisions: 237857, + publicDebt: 30, + internet: 306624 + }), + new WorldStatsItem( + { + code: `MAC`, + name: `Macao`, + continent: `Asia`, + population: 601969, + gdpTotal: 63220, + economy: `Developing`, + region: `Eastern Asia`, + status: `Dependency`, + longitude: 113.51, + latitude: 22.221, + gdpPerPerson: 105022, + rank: 170, + unemployment: 10, + oilProduction: 2, + birthRate: 10, + medianAge: 47, + electricity: 77896, + televisions: 163859, + publicDebt: 18, + internet: 62728 + }), + new WorldStatsItem( + { + code: `LUX`, + name: `Luxembourg`, + continent: `Europe`, + population: 594130, + gdpTotal: 58740, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 6.109, + latitude: 49.806, + gdpPerPerson: 98867, + rank: 171, + unemployment: 4, + oilProduction: 0, + birthRate: 12, + medianAge: 39, + electricity: 3156, + televisions: 285000, + publicDebt: 6, + internet: 345000 + }), + new WorldStatsItem( + { + code: `SUR`, + name: `Suriname`, + continent: `South America`, + population: 591919, + gdpTotal: 8547, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -56.02, + latitude: 4.506, + gdpPerPerson: 14439, + rank: 172, + unemployment: 5, + oilProduction: 1, + birthRate: 16, + medianAge: 44, + electricity: 82658, + televisions: 69068, + publicDebt: 31, + internet: 367104 + }), + new WorldStatsItem( + { + code: `CPV`, + name: `Cabo Verde`, + continent: `Africa`, + population: 560899, + gdpTotal: 3583, + economy: `Developing`, + region: `Western Africa`, + status: `Country`, + longitude: -25.16, + latitude: 17.102, + gdpPerPerson: 6388, + rank: 173, + unemployment: 12, + oilProduction: 1, + birthRate: 12, + medianAge: 54, + electricity: 60647, + televisions: 101289, + publicDebt: 34, + internet: 40105 + }), + new WorldStatsItem( + { + code: `BRN`, + name: `Brunei`, + continent: `Asia`, + population: 443593, + gdpTotal: 33730, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 114.69, + latitude: 4.523, + gdpPerPerson: 76038, + rank: 174, + unemployment: 4, + oilProduction: 0, + birthRate: 17, + medianAge: 32, + electricity: 50701, + televisions: 235042, + publicDebt: 16, + internet: 188751 + }), + new WorldStatsItem( + { + code: `MLT`, + name: `Malta`, + continent: `Europe`, + population: 416338, + gdpTotal: 16320, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 14.373, + latitude: 35.948, + gdpPerPerson: 39199, + rank: 175, + unemployment: 7, + oilProduction: 4, + birthRate: 6, + medianAge: 52, + electricity: 77444, + televisions: 282390, + publicDebt: 41, + internet: 317612 + }), + new WorldStatsItem( + { + code: `MDV`, + name: `Maldives`, + continent: `Asia`, + population: 392709, + gdpTotal: 5407, + economy: `Developing`, + region: `Southern Asia`, + status: `Country`, + longitude: 73.455, + latitude: 3.739, + gdpPerPerson: 13768, + rank: 176, + unemployment: 13, + oilProduction: 4, + birthRate: 10, + medianAge: 43, + electricity: 26004, + televisions: 156412, + publicDebt: 28, + internet: 45331 + }), + new WorldStatsItem( + { + code: `BLZ`, + name: `Belize`, + continent: `North America`, + population: 360346, + gdpTotal: 3088, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -88.51, + latitude: 17.185, + gdpPerPerson: 8570, + rank: 177, + unemployment: 4, + oilProduction: 2, + birthRate: 7, + medianAge: 36, + electricity: 57433, + televisions: 127478, + publicDebt: 36, + internet: 223855 + }), + new WorldStatsItem( + { + code: `ISL`, + name: `Iceland`, + continent: `Europe`, + population: 339747, + gdpTotal: 16150, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: -19.01, + latitude: 64.966, + gdpPerPerson: 47535, + rank: 178, + unemployment: 1, + oilProduction: 0, + birthRate: 14, + medianAge: 35, + electricity: 8533, + televisions: 98000, + publicDebt: 28, + internet: 202300 + }), + new WorldStatsItem( + { + code: `BHS`, + name: `Bahamas`, + continent: `North America`, + population: 329988, + gdpTotal: 9066, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -78.01, + latitude: 24.761, + gdpPerPerson: 27474, + rank: 179, + unemployment: 5, + oilProduction: 2, + birthRate: 17, + medianAge: 47, + electricity: 38395, + televisions: 203588, + publicDebt: 6, + internet: 91807 + }), + new WorldStatsItem( + { + code: `FRG`, + name: `French Guiana`, + continent: `South America`, + population: 296161, + gdpTotal: 1299000, + economy: `Developed`, + region: `South America`, + status: `Dependency`, + longitude: -53.13, + latitude: 3.893, + gdpPerPerson: 4386128, + rank: 180, + unemployment: 3, + oilProduction: 0, + birthRate: 15, + medianAge: 55, + electricity: 73845, + televisions: 147489, + publicDebt: 35, + internet: 209593 + }), + new WorldStatsItem( + { + code: `BRB`, + name: `Barbados`, + continent: `North America`, + population: 292336, + gdpTotal: 4804, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -59.53, + latitude: 13.19, + gdpPerPerson: 16433, + rank: 181, + unemployment: 8, + oilProduction: 3, + birthRate: 21, + medianAge: 51, + electricity: 28728, + televisions: 173392, + publicDebt: 12, + internet: 73593 + }), + new WorldStatsItem( + { + code: `PYF`, + name: `Fr. Polynesia`, + continent: `Oceania`, + population: 287881, + gdpTotal: 5490, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -143.9, + latitude: -14.82, + gdpPerPerson: 19070, + rank: 182, + unemployment: 1, + oilProduction: 4, + birthRate: 6, + medianAge: 45, + electricity: 46206, + televisions: 43757, + publicDebt: 12, + internet: 172560 + }), + new WorldStatsItem( + { + code: `VUT`, + name: `Vanuatu`, + continent: `Oceania`, + population: 282814, + gdpTotal: 723, + economy: `Least developed`, + region: `Melanesia`, + status: `Country`, + longitude: 168.21, + latitude: -16.97, + gdpPerPerson: 2556, + rank: 183, + unemployment: 11, + oilProduction: 4, + birthRate: 17, + medianAge: 39, + electricity: 50581, + televisions: 187584, + publicDebt: 42, + internet: 223352 + }), + new WorldStatsItem( + { + code: `NCL`, + name: `New Caledonia`, + continent: `Oceania`, + population: 279070, + gdpTotal: 10770, + economy: `Developing`, + region: `Melanesia`, + status: `Dependency`, + longitude: 165.26, + latitude: -21.09, + gdpPerPerson: 38592, + rank: 184, + unemployment: 10, + oilProduction: 3, + birthRate: 6, + medianAge: 49, + electricity: 18361, + televisions: 79923, + publicDebt: 45, + internet: 149003 + }), + new WorldStatsItem( + { + code: `NCP`, + name: `Northern Cyprus`, + continent: `Asia`, + population: 265100, + gdpTotal: 3600, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 33.714, + latitude: 35.257, + gdpPerPerson: 13580, + rank: 185, + unemployment: 4, + oilProduction: 5, + birthRate: 25, + medianAge: 51, + electricity: 84000, + televisions: 135551, + publicDebt: 30, + internet: 167480 + }), + new WorldStatsItem( + { + code: `STP`, + name: `Sao Tome and Principe`, + continent: `Africa`, + population: 201025, + gdpTotal: 694, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 6.598, + latitude: 0.248, + gdpPerPerson: 3452, + rank: 186, + unemployment: 1, + oilProduction: 3, + birthRate: 24, + medianAge: 30, + electricity: 6691, + televisions: 65480, + publicDebt: 12, + internet: 121162 + }), + new WorldStatsItem( + { + code: `WSM`, + name: `Samoa`, + continent: `Oceania`, + population: 200108, + gdpTotal: 1046, + economy: `Least developed`, + region: `Polynesia`, + status: `Country`, + longitude: -172.1, + latitude: -13.75, + gdpPerPerson: 5227, + rank: 187, + unemployment: 3, + oilProduction: 2, + birthRate: 7, + medianAge: 46, + electricity: 50118, + televisions: 54930, + publicDebt: 42, + internet: 84739 + }), + new WorldStatsItem( + { + code: `GUM`, + name: `Guam`, + continent: `Oceania`, + population: 167358, + gdpTotal: 4882, + economy: `Developing`, + region: `Micronesia`, + status: `Dependency`, + longitude: 144.79, + latitude: 13.44, + gdpPerPerson: 29171, + rank: 188, + unemployment: 15, + oilProduction: 2, + birthRate: 24, + medianAge: 42, + electricity: 64229, + televisions: 43567, + publicDebt: 37, + internet: 121131 + }), + new WorldStatsItem( + { + code: `LCA`, + name: `Saint Lucia`, + continent: `North America`, + population: 164994, + gdpTotal: 2083, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -60.98, + latitude: 13.905, + gdpPerPerson: 12625, + rank: 189, + unemployment: 3, + oilProduction: 2, + birthRate: 14, + medianAge: 32, + electricity: 75473, + televisions: 87743, + publicDebt: 7, + internet: 64498 + }), + new WorldStatsItem( + { + code: `CUW`, + name: `Curacao`, + continent: `North America`, + population: 149648, + gdpTotal: 3128, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -68.95, + latitude: 12.213, + gdpPerPerson: 20902, + rank: 190, + unemployment: 6, + oilProduction: 1, + birthRate: 7, + medianAge: 35, + electricity: 74665, + televisions: 89830, + publicDebt: 36, + internet: 55905 + }), + new WorldStatsItem( + { + code: `ABW`, + name: `Aruba`, + continent: `North America`, + population: 115120, + gdpTotal: 2516, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -69.98, + latitude: 12.519, + gdpPerPerson: 21855, + rank: 191, + unemployment: 7, + oilProduction: 2356, + birthRate: 13, + medianAge: 38, + electricity: 770, + televisions: 20000, + publicDebt: 46, + internet: 24000 + }), + new WorldStatsItem( + { + code: `GRD`, + name: `Grenada`, + continent: `North America`, + population: 111724, + gdpTotal: 1511, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.69, + latitude: 12.123, + gdpPerPerson: 13524, + rank: 192, + unemployment: 10, + oilProduction: 0, + birthRate: 10, + medianAge: 50, + electricity: 4992, + televisions: 58674, + publicDebt: 42, + internet: 33132 + }), + new WorldStatsItem( + { + code: `KIR`, + name: `Kiribati`, + continent: `Oceania`, + population: 108145, + gdpTotal: 211, + economy: `Least developed`, + region: `Micronesia`, + status: `Country`, + longitude: -157.333, + latitude: 1.884, + gdpPerPerson: 1951, + rank: 193, + unemployment: 13, + oilProduction: 4, + birthRate: 9, + medianAge: 52, + electricity: 37081, + televisions: 52395, + publicDebt: 40, + internet: 36620 + }), + new WorldStatsItem( + { + code: `VIR`, + name: `U.S. Virgin Island`, + continent: `North America`, + population: 107268, + gdpTotal: 3792, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -64.77, + latitude: 17.77, + gdpPerPerson: 35351, + rank: 194, + unemployment: 11, + oilProduction: 2, + birthRate: 12, + medianAge: 38, + electricity: 13387, + televisions: 77187, + publicDebt: 43, + internet: 40836 + }), + new WorldStatsItem( + { + code: `TON`, + name: `Tonga`, + continent: `Oceania`, + population: 106479, + gdpTotal: 557, + economy: `Developing`, + region: `Polynesia`, + status: `Country`, + longitude: -173.9, + latitude: -18.62, + gdpPerPerson: 5231, + rank: 195, + unemployment: 4, + oilProduction: 4, + birthRate: 5, + medianAge: 33, + electricity: 88735, + televisions: 30257, + publicDebt: 25, + internet: 71756 + }), + new WorldStatsItem( + { + code: `FSM`, + name: `Micronesia`, + continent: `Oceania`, + population: 104196, + gdpTotal: 314, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 150.52, + latitude: 7.435, + gdpPerPerson: 3014, + rank: 196, + unemployment: 9, + oilProduction: 5, + birthRate: 5, + medianAge: 38, + electricity: 39068, + televisions: 45396, + publicDebt: 40, + internet: 29169 + }), + new WorldStatsItem( + { + code: `VCT`, + name: `St. Vin. and Gren.`, + continent: `North America`, + population: 102089, + gdpTotal: 1241, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.17, + latitude: 13.239, + gdpPerPerson: 12156, + rank: 197, + unemployment: 10, + oilProduction: 5, + birthRate: 7, + medianAge: 30, + electricity: 39467, + televisions: 42804, + publicDebt: 9, + internet: 66754 + }), + new WorldStatsItem( + { + code: `JEY`, + name: `Jersey`, + continent: `Europe`, + population: 98840, + gdpTotal: 5080, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: -2.123, + latitude: 49.218, + gdpPerPerson: 51396, + rank: 198, + unemployment: 4, + oilProduction: 1, + birthRate: 18, + medianAge: 30, + electricity: 64261, + televisions: 52453, + publicDebt: 34, + internet: 3026 + }), + new WorldStatsItem( + { + code: `ATG`, + name: `Antigua and Barbuda`, + continent: `North America`, + population: 94731, + gdpTotal: 2171, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.79, + latitude: 17.096, + gdpPerPerson: 22918, + rank: 199, + unemployment: 3, + oilProduction: 1, + birthRate: 5, + medianAge: 36, + electricity: 35849, + televisions: 75384, + publicDebt: 32, + internet: 6170 + }), + new WorldStatsItem( + { + code: `SYC`, + name: `Seychelles`, + continent: `Africa`, + population: 93920, + gdpTotal: 2608, + economy: `Developing`, + region: `Eastern Africa`, + status: `Country`, + longitude: 55.463, + latitude: -4.672, + gdpPerPerson: 27768, + rank: 200, + unemployment: 2, + oilProduction: 0, + birthRate: 16, + medianAge: 29, + electricity: 252, + televisions: 11000, + publicDebt: 92, + internet: 32000 + }), + new WorldStatsItem( + { + code: `IMN`, + name: `Isle of Man`, + continent: `Europe`, + population: 88815, + gdpTotal: 7428, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: -4.562, + latitude: 54.233, + gdpPerPerson: 83635, + rank: 201, + unemployment: 4, + oilProduction: 4, + birthRate: 14, + medianAge: 36, + electricity: 15745, + televisions: 25734, + publicDebt: 13, + internet: 2650 + }), + new WorldStatsItem( + { + code: `AND`, + name: `Andorra`, + continent: `Europe`, + population: 85702, + gdpTotal: 3327, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 1.578, + latitude: 42.539, + gdpPerPerson: 38821, + rank: 202, + unemployment: 11, + oilProduction: 3, + birthRate: 20, + medianAge: 50, + electricity: 56209, + televisions: 42797, + publicDebt: 33, + internet: 42006 + }), + new WorldStatsItem( + { + code: `MHL`, + name: `Marshall Islands`, + continent: `Oceania`, + population: 74539, + gdpTotal: 180, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 169.3, + latitude: 8.484, + gdpPerPerson: 2415, + rank: 203, + unemployment: 3, + oilProduction: 3, + birthRate: 23, + medianAge: 42, + electricity: 78832, + televisions: 15193, + publicDebt: 44, + internet: 8536 + }), + new WorldStatsItem( + { + code: `DMA`, + name: `Dominica`, + continent: `North America`, + population: 73897, + gdpTotal: 812, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.36, + latitude: 15.43, + gdpPerPerson: 10988, + rank: 204, + unemployment: 6, + oilProduction: 1, + birthRate: 13, + medianAge: 35, + electricity: 49809, + televisions: 17676, + publicDebt: 37, + internet: 2616 + }), + new WorldStatsItem( + { + code: `BMU`, + name: `Bermuda`, + continent: `North America`, + population: 70864, + gdpTotal: 5198, + economy: `Developed`, + region: `Northern America`, + status: `Dependency`, + longitude: -64.76, + latitude: 32.323, + gdpPerPerson: 73352, + rank: 205, + unemployment: 15, + oilProduction: 1, + birthRate: 21, + medianAge: 43, + electricity: 54728, + televisions: 16336, + publicDebt: 27, + internet: 41606 + }), + new WorldStatsItem( + { + code: `GGY`, + name: `Guernsey`, + continent: `Europe`, + population: 66502, + gdpTotal: 3465, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: -2.579, + latitude: 49.468, + gdpPerPerson: 52104, + rank: 206, + unemployment: 2, + oilProduction: 1, + birthRate: 25, + medianAge: 33, + electricity: 9806, + televisions: 24638, + publicDebt: 34, + internet: 29222 + }), + new WorldStatsItem( + { + code: `CYM`, + name: `Cayman Island`, + continent: `North America`, + population: 58441, + gdpTotal: 2507, + economy: `Emerging`, + region: `Central America`, + status: `Dependency`, + longitude: -81.25, + latitude: 19.343, + gdpPerPerson: 42898, + rank: 207, + unemployment: 12, + oilProduction: 3, + birthRate: 7, + medianAge: 35, + electricity: 70206, + televisions: 28885, + publicDebt: 21, + internet: 9332 + }), + new WorldStatsItem( + { + code: `GRL`, + name: `Greenland`, + continent: `North America`, + population: 57713, + gdpTotal: 2173, + economy: `Developed`, + region: `Northern America`, + status: `Dependency`, + longitude: -42.12, + latitude: 69.547, + gdpPerPerson: 37652, + rank: 208, + unemployment: 7, + oilProduction: 5, + birthRate: 19, + medianAge: 42, + electricity: 86090, + televisions: 43741, + publicDebt: 42, + internet: 11423 + }), + new WorldStatsItem( + { + code: `KNA`, + name: `St. Kitts and Nevis`, + continent: `North America`, + population: 52715, + gdpTotal: 1427, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -62.77, + latitude: 17.351, + gdpPerPerson: 27070, + rank: 209, + unemployment: 5, + oilProduction: 2, + birthRate: 18, + medianAge: 40, + electricity: 65438, + televisions: 17719, + publicDebt: 11, + internet: 8543 + }), + new WorldStatsItem( + { + code: `TCA`, + name: `Turks and Caicos Is.`, + continent: `North America`, + population: 52570, + gdpTotal: 632, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -71.96, + latitude: 21.913, + gdpPerPerson: 12022, + rank: 210, + unemployment: 6, + oilProduction: 0, + birthRate: 13, + medianAge: 42, + electricity: 51325, + televisions: 13109, + publicDebt: 13, + internet: 24564 + }), + new WorldStatsItem( + { + code: `MNP`, + name: `N. Mariana Island`, + continent: `Oceania`, + population: 52263, + gdpTotal: 682, + economy: `Developing`, + region: `Micronesia`, + status: `Dependency`, + longitude: 145.49, + latitude: 16.459, + gdpPerPerson: 13049, + rank: 211, + unemployment: 10, + oilProduction: 1, + birthRate: 9, + medianAge: 46, + electricity: 87386, + televisions: 13049, + publicDebt: 20, + internet: 5484 + }), + new WorldStatsItem( + { + code: `ASM`, + name: `American Samoa`, + continent: `Oceania`, + population: 51504, + gdpTotal: 711, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -170.6, + latitude: -14.3, + gdpPerPerson: 13805, + rank: 212, + unemployment: 3, + oilProduction: 4, + birthRate: 13, + medianAge: 42, + electricity: 65918, + televisions: 18802, + publicDebt: 23, + internet: 14691 + }), + new WorldStatsItem( + { + code: `FRO`, + name: `Faeroe Island`, + continent: `Europe`, + population: 50730, + gdpTotal: 2001, + economy: `Developed`, + region: `Northern Europe`, + status: `Dependency`, + longitude: -6.857, + latitude: 62.178, + gdpPerPerson: 39444, + rank: 213, + unemployment: 15, + oilProduction: 2, + birthRate: 11, + medianAge: 46, + electricity: 55029, + televisions: 11762, + publicDebt: 13, + internet: 2412 + }), + new WorldStatsItem( + { + code: `SXM`, + name: `Sint Maarten`, + continent: `North America`, + population: 42083, + gdpTotal: 366, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -63.06, + latitude: 18.044, + gdpPerPerson: 8697, + rank: 214, + unemployment: 14, + oilProduction: 4, + birthRate: 19, + medianAge: 50, + electricity: 17166, + televisions: 8474, + publicDebt: 33, + internet: 14309 + }), + new WorldStatsItem( + { + code: `LIE`, + name: `Liechtenstein`, + continent: `Europe`, + population: 38244, + gdpTotal: 4978, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 9.545, + latitude: 47.164, + gdpPerPerson: 130164, + rank: 215, + unemployment: 11, + oilProduction: 3, + birthRate: 10, + medianAge: 55, + electricity: 80781, + televisions: 23104, + publicDebt: 21, + internet: 8159 + }), + new WorldStatsItem( + { + code: `VGB`, + name: `British Virgin Island`, + continent: `North America`, + population: 35015, + gdpTotal: 500, + economy: `Developed`, + region: `Central America`, + status: `Dependency`, + longitude: -64.6, + latitude: 18.44, + gdpPerPerson: 14280, + rank: 216, + unemployment: 13, + oilProduction: 2, + birthRate: 6, + medianAge: 51, + electricity: 47732, + televisions: 17777, + publicDebt: 7, + internet: 6238 + }), + new WorldStatsItem( + { + code: `SMR`, + name: `San Marino`, + continent: `Europe`, + population: 33537, + gdpTotal: 2023, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 12.456, + latitude: 43.942, + gdpPerPerson: 60321, + rank: 217, + unemployment: 10, + oilProduction: 0, + birthRate: 15, + medianAge: 48, + electricity: 21943, + televisions: 22355, + publicDebt: 34, + internet: 23505 + }), + new WorldStatsItem( + { + code: `MAF`, + name: `St. Martin`, + continent: `North America`, + population: 32125, + gdpTotal: 562, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -63.06, + latitude: 18.092, + gdpPerPerson: 17494, + rank: 218, + unemployment: 15, + oilProduction: 5, + birthRate: 10, + medianAge: 34, + electricity: 76791, + televisions: 17592, + publicDebt: 43, + internet: 25032 + }), + new WorldStatsItem( + { + code: `MCO`, + name: `Monaco`, + continent: `Europe`, + population: 30645, + gdpTotal: 7672, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 7.408, + latitude: 43.751, + gdpPerPerson: 250351, + rank: 219, + unemployment: 15, + oilProduction: 5, + birthRate: 18, + medianAge: 31, + electricity: 73517, + televisions: 10057, + publicDebt: 10, + internet: 18394 + }), + new WorldStatsItem( + { + code: `ALA`, + name: `Aland Islands`, + continent: `Europe`, + population: 27153, + gdpTotal: 1563, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: 20.065, + latitude: 60.209, + gdpPerPerson: 57563, + rank: 220, + unemployment: 14, + oilProduction: 3, + birthRate: 15, + medianAge: 54, + electricity: 69394, + televisions: 14696, + publicDebt: 19, + internet: 2736 + }), + new WorldStatsItem( + { + code: `PLW`, + name: `Palau`, + continent: `Oceania`, + population: 21431, + gdpTotal: 276, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 134.63, + latitude: 7.532, + gdpPerPerson: 12879, + rank: 221, + unemployment: 8, + oilProduction: 1, + birthRate: 7, + medianAge: 39, + electricity: 88599, + televisions: 3019, + publicDebt: 8, + internet: 17075 + }), + new WorldStatsItem( + { + code: `AIA`, + name: `Anguilla`, + continent: `North America`, + population: 17087, + gdpTotal: 175, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -63.07, + latitude: 18.221, + gdpPerPerson: 10242, + rank: 222, + unemployment: 9, + oilProduction: 1, + birthRate: 10, + medianAge: 49, + electricity: 68590, + televisions: 10632, + publicDebt: 40, + internet: 8703 + }), + new WorldStatsItem( + { + code: `WLF`, + name: `Wallis Island`, + continent: `Oceania`, + population: 15714, + gdpTotal: 60, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -177.1, + latitude: -13.77, + gdpPerPerson: 3818, + rank: 223, + unemployment: 15, + oilProduction: 0, + birthRate: 0, + medianAge: 0, + electricity: 0, + televisions: 0, + publicDebt: 6, + internet: 900 + }), + new WorldStatsItem( + { + code: `NRU`, + name: `Nauru`, + continent: `Oceania`, + population: 9642, + gdpTotal: 151, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 166.93, + latitude: -0.52, + gdpPerPerson: 15661, + rank: 224, + unemployment: 5, + oilProduction: 3, + birthRate: 17, + medianAge: 32, + electricity: 84092, + televisions: 1777, + publicDebt: 34, + internet: 4585 + }), + new WorldStatsItem( + { + code: `COK`, + name: `Cook Island`, + continent: `Oceania`, + population: 9290, + gdpTotal: 244, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -159.7, + latitude: -21.21, + gdpPerPerson: 26265, + rank: 225, + unemployment: 15, + oilProduction: 1, + birthRate: 6, + medianAge: 45, + electricity: 41320, + televisions: 3712, + publicDebt: 24, + internet: 3555 + }), + new WorldStatsItem( + { + code: `SHN`, + name: `Saint Helena`, + continent: `Africa`, + population: 7828, + gdpTotal: 31, + economy: `Developing`, + region: `Western Africa`, + status: `Dependency`, + longitude: -10.03, + latitude: -11.94, + gdpPerPerson: 3960, + rank: 226, + unemployment: 13, + oilProduction: 1, + birthRate: 17, + medianAge: 48, + electricity: 84435, + televisions: 3812, + publicDebt: 15, + internet: 5530 + }), + new WorldStatsItem( + { + code: `BLM`, + name: `St. Barthalemy`, + continent: `North America`, + population: 7184, + gdpTotal: 255, + economy: `Developed`, + region: `Central America`, + status: `Dependency`, + longitude: -62.83, + latitude: 17.899, + gdpPerPerson: 35496, + rank: 227, + unemployment: 14, + oilProduction: 0, + birthRate: 23, + medianAge: 46, + electricity: 36112, + televisions: 4072, + publicDebt: 27, + internet: 5097 + }), + new WorldStatsItem( + { + code: `KAS`, + name: `Siachen Glacier`, + continent: `Asia`, + population: 6000, + gdpTotal: 15, + economy: `Developing`, + region: `Southern Asia`, + status: `Territory`, + longitude: 77.283, + latitude: 35.386, + gdpPerPerson: 2500, + rank: 228, + unemployment: 7, + oilProduction: 0, + birthRate: 9, + medianAge: 55, + electricity: 62932, + televisions: 936, + publicDebt: 14, + internet: 1303 + }), + new WorldStatsItem( + { + code: `SPM`, + name: `St. Pierre and Miquelon`, + continent: `North America`, + population: 5533, + gdpTotal: 215, + economy: `Developed`, + region: `Northern America`, + status: `Territory`, + longitude: -56.26, + latitude: 46.926, + gdpPerPerson: 38858, + rank: 229, + unemployment: 13, + oilProduction: 0, + birthRate: 13, + medianAge: 42, + electricity: 61277, + televisions: 2067, + publicDebt: 18, + internet: 2924 + }), + new WorldStatsItem( + { + code: `MSR`, + name: `Montserrat`, + continent: `North America`, + population: 5292, + gdpTotal: 44, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -62.18, + latitude: 16.745, + gdpPerPerson: 8314, + rank: 230, + unemployment: 13, + oilProduction: 1, + birthRate: 12, + medianAge: 50, + electricity: 19088, + televisions: 1964, + publicDebt: 44, + internet: 4009 + }), + new WorldStatsItem( + { + code: `ATA`, + name: `Antarctica`, + continent: `Antarctica`, + population: 4050, + gdpTotal: 810, + economy: `Developing`, + region: `Antarctica`, + status: `Indeterminate`, + longitude: 54.592, + latitude: -70.81, + gdpPerPerson: 200000, + rank: 231, + unemployment: 9, + oilProduction: 2, + birthRate: 18, + medianAge: 42, + electricity: 63975, + televisions: 2439, + publicDebt: 45, + internet: 2190 + }), + new WorldStatsItem( + { + code: `IOT`, + name: `British Indian Territory`, + continent: `Asia`, + population: 4000, + gdpTotal: 160, + economy: `Developed`, + region: `Southern Asia`, + status: `Dependency`, + longitude: 72.424, + latitude: -7.328, + gdpPerPerson: 40000, + rank: 232, + unemployment: 13, + oilProduction: 0, + birthRate: 6, + medianAge: 47, + electricity: 91829, + televisions: 1510, + publicDebt: 14, + internet: 1656 + }), + new WorldStatsItem( + { + code: `FLK`, + name: `Falkland Island`, + continent: `South America`, + population: 2931, + gdpTotal: 282, + economy: `Developed`, + region: `South America`, + status: `Dependency`, + longitude: -59.46, + latitude: -51.78, + gdpPerPerson: 96213, + rank: 233, + unemployment: 3, + oilProduction: 5, + birthRate: 9, + medianAge: 36, + electricity: 68007, + televisions: 1489, + publicDebt: 22, + internet: 1335 + }), + new WorldStatsItem( + { + code: `NFK`, + name: `Norfolk Island`, + continent: `Oceania`, + population: 2210, + gdpTotal: 33, + economy: `Developing`, + region: `Australia`, + status: `Dependency`, + longitude: 167.94, + latitude: -29.05, + gdpPerPerson: 14932, + rank: 234, + unemployment: 1, + oilProduction: 0, + birthRate: 15, + medianAge: 46, + electricity: 91943, + televisions: 583, + publicDebt: 41, + internet: 1183 + }), + new WorldStatsItem( + { + code: `NIU`, + name: `Niue`, + continent: `Oceania`, + population: 1626, + gdpTotal: 10, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -169.8, + latitude: -19.05, + gdpPerPerson: 6150, + rank: 235, + unemployment: 15, + oilProduction: 4, + birthRate: 17, + medianAge: 51, + electricity: 16785, + televisions: 585, + publicDebt: 31, + internet: 1247 + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html index c038ab111..cb8de07c5 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html @@ -28,12 +28,12 @@ #bubbleSeries1 xMemberPath="population" yMemberPath="publicDebt" - radiusMemberPath="gdpPerCapita" + radiusMemberPath="gdpPerPerson" [radiusScale]="sizeScale1" - fillMemberPath="gdpPerCapita" + fillMemberPath="gdpPerPerson" [xAxis]="xAxis" [yAxis]="yAxis" - [dataSource]="worldDebtAndPopulation" + [dataSource]="worldStats" markerType="Circle" markerOutline="black" showDefaultTooltip="true" diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts index aa7c08183..8c8254f3d 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts @@ -1,6 +1,6 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, NumberAbbreviatorDescriptionModule, DataChartCoreDescriptionModule, DataChartScatterDescriptionModule, DataChartScatterCoreDescriptionModule, DataChartInteractivityDescriptionModule, DataChartAnnotationDescriptionModule } from 'igniteui-angular-core'; -import { WorldDebtAndPopulationItem, WorldDebtAndPopulation } from './WorldDebtAndPopulation'; +import { WorldStatsItem, WorldStats } from './WorldStats'; import { IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent, IgxSizeScaleComponent, IgxValueBrushScaleComponent } from 'igniteui-angular-charts'; @Component({ @@ -48,13 +48,13 @@ export class AppComponent implements AfterViewInit } return this._valueBrushScale1; } - private _worldDebtAndPopulation: WorldDebtAndPopulation = null; - public get worldDebtAndPopulation(): WorldDebtAndPopulation { - if (this._worldDebtAndPopulation == null) + private _worldStats: WorldStats = null; + public get worldStats(): WorldStats { + if (this._worldStats == null) { - this._worldDebtAndPopulation = new WorldDebtAndPopulation(); + this._worldStats = new WorldStats(); } - return this._worldDebtAndPopulation; + return this._worldStats; } private _componentRenderer: ComponentRenderer = null; diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldDebtAndPopulation.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldDebtAndPopulation.ts deleted file mode 100644 index d93f37f2b..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldDebtAndPopulation.ts +++ /dev/null @@ -1,1845 +0,0 @@ -export class WorldDebtAndPopulationItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public countryCode: string; - public countryName: string; - public gdpPerCapita: number; - public unemploymentRate: number; - public televisions: number; - public publicDebt: number; - public population: number; - public oilProduction: number; - public medianAge: number; - public internetUsers: number; - public electricityProduction: number; - public birthRate: number; - -} -export class WorldDebtAndPopulation extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new WorldDebtAndPopulationItem( - { - countryCode: `AL`, - countryName: `Albania`, - gdpPerCapita: 5800, - unemploymentRate: 13, - televisions: 700000, - publicDebt: 51, - population: 3619778, - oilProduction: 7006, - medianAge: 30, - internetUsers: 471200, - electricityProduction: 5385, - birthRate: 15 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `DZ`, - countryName: `Algeria`, - gdpPerCapita: 6700, - unemploymentRate: 12, - televisions: 3100000, - publicDebt: 18, - population: 33769668, - oilProduction: 1358000, - medianAge: 26, - internetUsers: 3500000, - electricityProduction: 31910, - birthRate: 17 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AO`, - countryName: `Angola`, - gdpPerCapita: 7800, - unemploymentRate: 0, - televisions: 196000, - publicDebt: 12, - population: 12531357, - oilProduction: 1712000, - medianAge: 18, - internetUsers: 100000, - electricityProduction: 2585, - birthRate: 44 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AR`, - countryName: `Argentina`, - gdpPerCapita: 13100, - unemploymentRate: 9, - televisions: 7950000, - publicDebt: 56, - population: 40134425, - oilProduction: 730000, - medianAge: 30, - internetUsers: 9309000, - electricityProduction: 101100, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AW`, - countryName: `Aruba`, - gdpPerCapita: 21800, - unemploymentRate: 7, - televisions: 20000, - publicDebt: 46, - population: 101541, - oilProduction: 2356, - medianAge: 38, - internetUsers: 24000, - electricityProduction: 770, - birthRate: 13 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AU`, - countryName: `Australia`, - gdpPerCapita: 37300, - unemploymentRate: 4, - televisions: 10150000, - publicDebt: 16, - population: 21007310, - oilProduction: 540000, - medianAge: 37, - internetUsers: 11240000, - electricityProduction: 236700, - birthRate: 13 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AT`, - countryName: `Austria`, - gdpPerCapita: 39300, - unemploymentRate: 4, - televisions: 10150000, - publicDebt: 59, - population: 8205533, - oilProduction: 23320, - medianAge: 42, - internetUsers: 4277000, - electricityProduction: 61020, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AZ`, - countryName: `Azerbaijan`, - gdpPerCapita: 8000, - unemploymentRate: 1, - televisions: 170000, - publicDebt: 7, - population: 8177717, - oilProduction: 934700, - medianAge: 28, - internetUsers: 1036000, - electricityProduction: 23800, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BH`, - countryName: `Bahrain`, - gdpPerCapita: 33900, - unemploymentRate: 15, - televisions: 275000, - publicDebt: 31, - population: 718306, - oilProduction: 184300, - medianAge: 30, - internetUsers: 250000, - electricityProduction: 8187, - birthRate: 17 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BD`, - countryName: `Bangladesh`, - gdpPerCapita: 1400, - unemploymentRate: 3, - televisions: 770000, - publicDebt: 37, - population: 153546896, - oilProduction: 6746, - medianAge: 23, - internetUsers: 500000, - electricityProduction: 21350, - birthRate: 29 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BE`, - countryName: `Belgium`, - gdpPerCapita: 36200, - unemploymentRate: 8, - televisions: 4720000, - publicDebt: 85, - population: 10403951, - oilProduction: 9000, - medianAge: 41, - internetUsers: 5220000, - electricityProduction: 80840, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BT`, - countryName: `Bhutan`, - gdpPerCapita: 5200, - unemploymentRate: 3, - televisions: 11000, - publicDebt: 81, - population: 682321, - oilProduction: 0, - medianAge: 24, - internetUsers: 40000, - electricityProduction: 2000, - birthRate: 21 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BO`, - countryName: `Bolivia`, - gdpPerCapita: 4400, - unemploymentRate: 8, - televisions: 900000, - publicDebt: 46, - population: 9247816, - oilProduction: 46470, - medianAge: 23, - internetUsers: 1000000, - electricityProduction: 5293, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BA`, - countryName: `Bosnia and Herzegovina`, - gdpPerCapita: 6100, - unemploymentRate: 46, - televisions: 0, - publicDebt: 34, - population: 4590310, - oilProduction: 0, - medianAge: 39, - internetUsers: 1055000, - electricityProduction: 12220, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BW`, - countryName: `Botswana`, - gdpPerCapita: 14300, - unemploymentRate: 8, - televisions: 31000, - publicDebt: 5, - population: 1842323, - oilProduction: 0, - medianAge: 21, - internetUsers: 80000, - electricityProduction: 912, - birthRate: 23 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BR`, - countryName: `Brazil`, - gdpPerCapita: 9500, - unemploymentRate: 9, - televisions: 36500000, - publicDebt: 45, - population: 196342592, - oilProduction: 1797000, - medianAge: 28, - internetUsers: 50000000, - electricityProduction: 396400, - birthRate: 19 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BG`, - countryName: `Bulgaria`, - gdpPerCapita: 11800, - unemploymentRate: 8, - televisions: 3310000, - publicDebt: 11, - population: 7262675, - oilProduction: 3661, - medianAge: 41, - internetUsers: 1899000, - electricityProduction: 45700, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CM`, - countryName: `Cameroon`, - gdpPerCapita: 2200, - unemploymentRate: 30, - televisions: 450000, - publicDebt: 16, - population: 18467692, - oilProduction: 85300, - medianAge: 19, - internetUsers: 370000, - electricityProduction: 4090, - birthRate: 35 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CA`, - countryName: `Canada`, - gdpPerCapita: 38600, - unemploymentRate: 6, - televisions: 21500000, - publicDebt: 64, - population: 33212696, - oilProduction: 3310000, - medianAge: 40, - internetUsers: 28000000, - electricityProduction: 609600, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CL`, - countryName: `Chile`, - gdpPerCapita: 14300, - unemploymentRate: 7, - televisions: 3150000, - publicDebt: 4, - population: 16454143, - oilProduction: 15100, - medianAge: 31, - internetUsers: 557000, - electricityProduction: 47600, - birthRate: 15 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CN`, - countryName: `China`, - gdpPerCapita: 5400, - unemploymentRate: 4, - televisions: 400000000, - publicDebt: 18, - population: 1330044544, - oilProduction: 3725000, - medianAge: 34, - internetUsers: 253000000, - electricityProduction: 3256000, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CO`, - countryName: `Colombia`, - gdpPerCapita: 7400, - unemploymentRate: 11, - televisions: 4590000, - publicDebt: 53, - population: 45013672, - oilProduction: 531300, - medianAge: 27, - internetUsers: 12100000, - electricityProduction: 50470, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CR`, - countryName: `Costa Rica`, - gdpPerCapita: 11100, - unemploymentRate: 5, - televisions: 525000, - publicDebt: 47, - population: 4195914, - oilProduction: 0, - medianAge: 27, - internetUsers: 1500000, - electricityProduction: 8349, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IV`, - countryName: `Ivory Coast`, - gdpPerCapita: 1700, - unemploymentRate: 0, - televisions: 1090000, - publicDebt: 75, - population: 20179602, - oilProduction: 48370, - medianAge: 19, - internetUsers: 300000, - electricityProduction: 5305, - birthRate: 33 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `HR`, - countryName: `Croatia`, - gdpPerCapita: 15500, - unemploymentRate: 12, - televisions: 1220000, - publicDebt: 48, - population: 4491543, - oilProduction: 17100, - medianAge: 41, - internetUsers: 1995000, - electricityProduction: 11990, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CU`, - countryName: `Cuba`, - gdpPerCapita: 11000, - unemploymentRate: 2, - televisions: 2640000, - publicDebt: 37, - population: 11423952, - oilProduction: 58300, - medianAge: 37, - internetUsers: 1310000, - electricityProduction: 16450, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CY`, - countryName: `Cyprus`, - gdpPerCapita: 27100, - unemploymentRate: 4, - televisions: 0, - publicDebt: 60, - population: 792604, - oilProduction: 0, - medianAge: 35, - internetUsers: 380000, - electricityProduction: 4618, - birthRate: 13 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CZ`, - countryName: `Czech Republic`, - gdpPerCapita: 24500, - unemploymentRate: 7, - televisions: 3405834, - publicDebt: 26, - population: 10220911, - oilProduction: 18030, - medianAge: 40, - internetUsers: 4400000, - electricityProduction: 77380, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `DK`, - countryName: `Denmark`, - gdpPerCapita: 37200, - unemploymentRate: 3, - televisions: 3121000, - publicDebt: 26, - population: 5484723, - oilProduction: 342000, - medianAge: 40, - internetUsers: 3500000, - electricityProduction: 43350, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `DO`, - countryName: `Dominican Republic`, - gdpPerCapita: 6600, - unemploymentRate: 16, - televisions: 770000, - publicDebt: 41, - population: 9507133, - oilProduction: 12, - medianAge: 25, - internetUsers: 1677000, - electricityProduction: 12220, - birthRate: 23 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `EC`, - countryName: `Ecuador`, - gdpPerCapita: 7200, - unemploymentRate: 9, - televisions: 2500000, - publicDebt: 33, - population: 13927650, - oilProduction: 511100, - medianAge: 24, - internetUsers: 1549000, - electricityProduction: 12940, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `EG`, - countryName: `Egypt`, - gdpPerCapita: 5000, - unemploymentRate: 9, - televisions: 7700000, - publicDebt: 106, - population: 81713520, - oilProduction: 665000, - medianAge: 25, - internetUsers: 8620000, - electricityProduction: 102500, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SV`, - countryName: `El Salvador`, - gdpPerCapita: 6000, - unemploymentRate: 6, - televisions: 600000, - publicDebt: 37, - population: 7066403, - oilProduction: 0, - medianAge: 22, - internetUsers: 700000, - electricityProduction: 5316, - birthRate: 26 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GQ`, - countryName: `Equatorial Guinea`, - gdpPerCapita: 28200, - unemploymentRate: 30, - televisions: 4000, - publicDebt: 2, - population: 616459, - oilProduction: 385500, - medianAge: 19, - internetUsers: 8000, - electricityProduction: 28, - birthRate: 37 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `EE`, - countryName: `Estonia`, - gdpPerCapita: 21800, - unemploymentRate: 5, - televisions: 605000, - publicDebt: 3, - population: 1307605, - oilProduction: 6930, - medianAge: 40, - internetUsers: 780000, - electricityProduction: 9599, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ET`, - countryName: `Ethiopia`, - gdpPerCapita: 700, - unemploymentRate: 0, - televisions: 682000, - publicDebt: 45, - population: 82544840, - oilProduction: 7, - medianAge: 17, - internetUsers: 291000, - electricityProduction: 2864, - birthRate: 44 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `FI`, - countryName: `Finland`, - gdpPerCapita: 36000, - unemploymentRate: 7, - televisions: 3200000, - publicDebt: 36, - population: 5244749, - oilProduction: 8951, - medianAge: 42, - internetUsers: 3600000, - electricityProduction: 73470, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GA`, - countryName: `Gabon`, - gdpPerCapita: 14000, - unemploymentRate: 21, - televisions: 63000, - publicDebt: 53, - population: 1485832, - oilProduction: 240000, - medianAge: 19, - internetUsers: 145000, - electricityProduction: 1520, - birthRate: 36 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `DE`, - countryName: `Germany`, - gdpPerCapita: 34100, - unemploymentRate: 9, - televisions: 51400000, - publicDebt: 65, - population: 82369552, - oilProduction: 141700, - medianAge: 43, - internetUsers: 42500000, - electricityProduction: 579400, - birthRate: 8 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GH`, - countryName: `Ghana`, - gdpPerCapita: 1400, - unemploymentRate: 11, - televisions: 1900000, - publicDebt: 59, - population: 23382848, - oilProduction: 700, - medianAge: 20, - internetUsers: 650000, - electricityProduction: 7042, - birthRate: 29 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GI`, - countryName: `Gibraltar`, - gdpPerCapita: 38200, - unemploymentRate: 3, - televisions: 10000, - publicDebt: 16, - population: 28002, - oilProduction: 0, - medianAge: 40, - internetUsers: 6200, - electricityProduction: 141, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GR`, - countryName: `Greece`, - gdpPerCapita: 30600, - unemploymentRate: 8, - televisions: 2540000, - publicDebt: 90, - population: 10722816, - oilProduction: 5687, - medianAge: 42, - internetUsers: 2540000, - electricityProduction: 56130, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GT`, - countryName: `Guatemala`, - gdpPerCapita: 5100, - unemploymentRate: 3, - televisions: 1323000, - publicDebt: 21, - population: 13002206, - oilProduction: 13000, - medianAge: 19, - internetUsers: 1320000, - electricityProduction: 7281, - birthRate: 29 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `HN`, - countryName: `Honduras`, - gdpPerCapita: 4300, - unemploymentRate: 28, - televisions: 570000, - publicDebt: 24, - population: 7639327, - oilProduction: 0, - medianAge: 20, - internetUsers: 344100, - electricityProduction: 5339, - birthRate: 27 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `HU`, - countryName: `Hungary`, - gdpPerCapita: 19300, - unemploymentRate: 7, - televisions: 4420000, - publicDebt: 67, - population: 9930915, - oilProduction: 42180, - medianAge: 39, - internetUsers: 4200000, - electricityProduction: 33690, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IS`, - countryName: `Iceland`, - gdpPerCapita: 40400, - unemploymentRate: 1, - televisions: 98000, - publicDebt: 28, - population: 304367, - oilProduction: 0, - medianAge: 35, - internetUsers: 202300, - electricityProduction: 8533, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IN`, - countryName: `India`, - gdpPerCapita: 2600, - unemploymentRate: 7, - televisions: 63000000, - publicDebt: 58, - population: 1147995904, - oilProduction: 810000, - medianAge: 25, - internetUsers: 80000000, - electricityProduction: 661600, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ID`, - countryName: `Indonesia`, - gdpPerCapita: 3600, - unemploymentRate: 9, - televisions: 13750000, - publicDebt: 34, - population: 237512352, - oilProduction: 837500, - medianAge: 27, - internetUsers: 13000000, - electricityProduction: 125900, - birthRate: 19 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IR`, - countryName: `Iran`, - gdpPerCapita: 11700, - unemploymentRate: 12, - televisions: 4610000, - publicDebt: 17, - population: 65875224, - oilProduction: 3956000, - medianAge: 26, - internetUsers: 23000000, - electricityProduction: 170400, - birthRate: 17 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IE`, - countryName: `Ireland`, - gdpPerCapita: 46600, - unemploymentRate: 5, - televisions: 1820000, - publicDebt: 25, - population: 4156119, - oilProduction: 0, - medianAge: 35, - internetUsers: 1708000, - electricityProduction: 24130, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IL`, - countryName: `Israel`, - gdpPerCapita: 26600, - unemploymentRate: 7, - televisions: 1690000, - publicDebt: 81, - population: 7112359, - oilProduction: 100, - medianAge: 29, - internetUsers: 2000000, - electricityProduction: 46850, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IT`, - countryName: `Italy`, - gdpPerCapita: 30900, - unemploymentRate: 6, - televisions: 30300000, - publicDebt: 104, - population: 58145320, - oilProduction: 164800, - medianAge: 43, - internetUsers: 32000000, - electricityProduction: 278500, - birthRate: 8 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `JM`, - countryName: `Jamaica`, - gdpPerCapita: 7400, - unemploymentRate: 10, - televisions: 460000, - publicDebt: 127, - population: 2804332, - oilProduction: 0, - medianAge: 23, - internetUsers: 1500000, - electricityProduction: 6985, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `JP`, - countryName: `Japan`, - gdpPerCapita: 33500, - unemploymentRate: 4, - televisions: 86500000, - publicDebt: 170, - population: 127288416, - oilProduction: 125000, - medianAge: 44, - internetUsers: 88110000, - electricityProduction: 1025000, - birthRate: 8 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `JO`, - countryName: `Jordan`, - gdpPerCapita: 4700, - unemploymentRate: 14, - televisions: 500000, - publicDebt: 72, - population: 6198677, - oilProduction: 0, - medianAge: 24, - internetUsers: 1127000, - electricityProduction: 9074, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `KZ`, - countryName: `Kazakhstan`, - gdpPerCapita: 11000, - unemploymentRate: 7, - televisions: 3880000, - publicDebt: 8, - population: 15340533, - oilProduction: 1355000, - medianAge: 29, - internetUsers: 1901000, - electricityProduction: 76340, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `KE`, - countryName: `Kenya`, - gdpPerCapita: 1700, - unemploymentRate: 40, - televisions: 730000, - publicDebt: 49, - population: 37953840, - oilProduction: 0, - medianAge: 19, - internetUsers: 3000000, - electricityProduction: 5502, - birthRate: 38 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `KR`, - countryName: `Korea, South`, - gdpPerCapita: 25000, - unemploymentRate: 3, - televisions: 15900000, - publicDebt: 28, - population: 48379392, - oilProduction: 17050, - medianAge: 37, - internetUsers: 35590000, - electricityProduction: 403200, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `KW`, - countryName: `Kuwait`, - gdpPerCapita: 55900, - unemploymentRate: 2, - televisions: 875000, - publicDebt: 10, - population: 2596799, - oilProduction: 2440000, - medianAge: 26, - internetUsers: 900000, - electricityProduction: 41110, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LV`, - countryName: `Latvia`, - gdpPerCapita: 17700, - unemploymentRate: 6, - televisions: 1220000, - publicDebt: 7, - population: 2245423, - oilProduction: 0, - medianAge: 40, - internetUsers: 1770000, - electricityProduction: 4778, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LB`, - countryName: `Lebanon`, - gdpPerCapita: 10300, - unemploymentRate: 20, - televisions: 1180000, - publicDebt: 187, - population: 3971941, - oilProduction: 0, - medianAge: 29, - internetUsers: 950000, - electricityProduction: 9183, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LY`, - countryName: `Libya`, - gdpPerCapita: 12400, - unemploymentRate: 30, - televisions: 730000, - publicDebt: 5, - population: 6173579, - oilProduction: 1712000, - medianAge: 24, - internetUsers: 260000, - electricityProduction: 21150, - birthRate: 26 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LT`, - countryName: `Lithuania`, - gdpPerCapita: 16800, - unemploymentRate: 4, - televisions: 1700000, - publicDebt: 17, - population: 3565205, - oilProduction: 13160, - medianAge: 39, - internetUsers: 1330000, - electricityProduction: 13480, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LU`, - countryName: `Luxembourg`, - gdpPerCapita: 79400, - unemploymentRate: 4, - televisions: 285000, - publicDebt: 6, - population: 486006, - oilProduction: 0, - medianAge: 39, - internetUsers: 345000, - electricityProduction: 3156, - birthRate: 12 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MK`, - countryName: `Macedonia`, - gdpPerCapita: 8400, - unemploymentRate: 35, - televisions: 510000, - publicDebt: 31, - population: 2061315, - oilProduction: 0, - medianAge: 35, - internetUsers: 685000, - electricityProduction: 6051, - birthRate: 12 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MW`, - countryName: `Malawi`, - gdpPerCapita: 800, - unemploymentRate: 0, - televisions: 0, - publicDebt: 51, - population: 13931831, - oilProduction: 0, - medianAge: 17, - internetUsers: 139500, - electricityProduction: 1397, - birthRate: 42 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MY`, - countryName: `Malaysia`, - gdpPerCapita: 14500, - unemploymentRate: 3, - televisions: 10800000, - publicDebt: 42, - population: 25274132, - oilProduction: 757500, - medianAge: 25, - internetUsers: 15868000, - electricityProduction: 82360, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MU`, - countryName: `Mauritius`, - gdpPerCapita: 11300, - unemploymentRate: 9, - televisions: 258000, - publicDebt: 63, - population: 1274189, - oilProduction: 0, - medianAge: 32, - internetUsers: 340000, - electricityProduction: 2350, - birthRate: 15 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MX`, - countryName: `Mexico`, - gdpPerCapita: 12400, - unemploymentRate: 4, - televisions: 25600000, - publicDebt: 23, - population: 109955400, - oilProduction: 3083000, - medianAge: 26, - internetUsers: 22812000, - electricityProduction: 222400, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MD`, - countryName: `Moldova`, - gdpPerCapita: 2300, - unemploymentRate: 2, - televisions: 1260000, - publicDebt: 23, - population: 4324450, - oilProduction: 0, - medianAge: 34, - internetUsers: 700000, - electricityProduction: 3881, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MA`, - countryName: `Morocco`, - gdpPerCapita: 3700, - unemploymentRate: 10, - televisions: 3100000, - publicDebt: 67, - population: 34343220, - oilProduction: 300, - medianAge: 25, - internetUsers: 7300000, - electricityProduction: 21370, - birthRate: 21 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MZ`, - countryName: `Mozambique`, - gdpPerCapita: 800, - unemploymentRate: 21, - televisions: 67600, - publicDebt: 22, - population: 21284700, - oilProduction: 0, - medianAge: 17, - internetUsers: 200000, - electricityProduction: 13170, - birthRate: 38 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NA`, - countryName: `Namibia`, - gdpPerCapita: 5200, - unemploymentRate: 5, - televisions: 60000, - publicDebt: 22, - population: 2088669, - oilProduction: 0, - medianAge: 21, - internetUsers: 101000, - electricityProduction: 1688, - birthRate: 23 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NL`, - countryName: `Netherlands`, - gdpPerCapita: 39000, - unemploymentRate: 5, - televisions: 8100000, - publicDebt: 46, - population: 16645313, - oilProduction: 76000, - medianAge: 40, - internetUsers: 15000000, - electricityProduction: 94340, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NZ`, - countryName: `New Zealand`, - gdpPerCapita: 27200, - unemploymentRate: 4, - televisions: 1926000, - publicDebt: 21, - population: 4173460, - oilProduction: 25880, - medianAge: 36, - internetUsers: 3360000, - electricityProduction: 42060, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NI`, - countryName: `Nicaragua`, - gdpPerCapita: 2800, - unemploymentRate: 5, - televisions: 320000, - publicDebt: 63, - population: 5785846, - oilProduction: 0, - medianAge: 22, - internetUsers: 155000, - electricityProduction: 2778, - birthRate: 24 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NG`, - countryName: `Nigeria`, - gdpPerCapita: 2100, - unemploymentRate: 5, - televisions: 6900000, - publicDebt: 14, - population: 146255312, - oilProduction: 2166000, - medianAge: 19, - internetUsers: 10000000, - electricityProduction: 22530, - birthRate: 37 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NO`, - countryName: `Norway`, - gdpPerCapita: 53300, - unemploymentRate: 3, - televisions: 2030000, - publicDebt: 83, - population: 4644457, - oilProduction: 2560000, - medianAge: 39, - internetUsers: 3800000, - electricityProduction: 135800, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `OM`, - countryName: `Oman`, - gdpPerCapita: 1900, - unemploymentRate: 15, - televisions: 1600000, - publicDebt: 4, - population: 3311640, - oilProduction: 710800, - medianAge: 19, - internetUsers: 340000, - electricityProduction: 11890, - birthRate: 35 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PK`, - countryName: `Pakistan`, - gdpPerCapita: 2400, - unemploymentRate: 6, - televisions: 3100000, - publicDebt: 51, - population: 172800048, - oilProduction: 62000, - medianAge: 21, - internetUsers: 17500000, - electricityProduction: 89820, - birthRate: 28 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PA`, - countryName: `Panama`, - gdpPerCapita: 10700, - unemploymentRate: 6, - televisions: 510000, - publicDebt: 53, - population: 3309679, - oilProduction: 0, - medianAge: 27, - internetUsers: 525200, - electricityProduction: 5661, - birthRate: 21 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PG`, - countryName: `Papua New Guinea`, - gdpPerCapita: 2100, - unemploymentRate: 2, - televisions: 59841, - publicDebt: 40, - population: 5931769, - oilProduction: 47800, - medianAge: 22, - internetUsers: 110000, - electricityProduction: 3698, - birthRate: 28 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PY`, - countryName: `Paraguay`, - gdpPerCapita: 4000, - unemploymentRate: 6, - televisions: 990000, - publicDebt: 27, - population: 6831306, - oilProduction: 0, - medianAge: 22, - internetUsers: 280000, - electricityProduction: 70000, - birthRate: 28 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PE`, - countryName: `Peru`, - gdpPerCapita: 7600, - unemploymentRate: 7, - televisions: 3060000, - publicDebt: 29, - population: 29180900, - oilProduction: 119000, - medianAge: 26, - internetUsers: 7636000, - electricityProduction: 24970, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PH`, - countryName: `Philippines`, - gdpPerCapita: 3200, - unemploymentRate: 7, - televisions: 3700000, - publicDebt: 56, - population: 96061680, - oilProduction: 0, - medianAge: 22, - internetUsers: 5300000, - electricityProduction: 53670, - birthRate: 26 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PL`, - countryName: `Poland`, - gdpPerCapita: 16200, - unemploymentRate: 13, - televisions: 13050000, - publicDebt: 43, - population: 38500696, - oilProduction: 0, - medianAge: 38, - internetUsers: 16000000, - electricityProduction: 146200, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PT`, - countryName: `Portugal`, - gdpPerCapita: 21800, - unemploymentRate: 8, - televisions: 3310000, - publicDebt: 64, - population: 10676910, - oilProduction: 9500, - medianAge: 39, - internetUsers: 3549000, - electricityProduction: 49040, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `QA`, - countryName: `Qatar`, - gdpPerCapita: 87600, - unemploymentRate: 1, - televisions: 230000, - publicDebt: 11, - population: 824789, - oilProduction: 797500, - medianAge: 31, - internetUsers: 351000, - electricityProduction: 13540, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `RO`, - countryName: `Romania`, - gdpPerCapita: 11100, - unemploymentRate: 4, - televisions: 5250000, - publicDebt: 13, - population: 22246862, - oilProduction: 115000, - medianAge: 37, - internetUsers: 12000000, - electricityProduction: 60520, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `RU`, - countryName: `Russia`, - gdpPerCapita: 14800, - unemploymentRate: 6, - televisions: 60500000, - publicDebt: 6, - population: 140702096, - oilProduction: 9870000, - medianAge: 38, - internetUsers: 30000000, - electricityProduction: 1000000, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SA`, - countryName: `Saudi Arabia`, - gdpPerCapita: 19800, - unemploymentRate: 13, - televisions: 5100000, - publicDebt: 24, - population: 28146656, - oilProduction: 11000000, - medianAge: 22, - internetUsers: 6200000, - electricityProduction: 165600, - birthRate: 29 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SN`, - countryName: `Senegal`, - gdpPerCapita: 1700, - unemploymentRate: 48, - televisions: 361000, - publicDebt: 23, - population: 12853259, - oilProduction: 0, - medianAge: 19, - internetUsers: 820000, - electricityProduction: 2159, - birthRate: 37 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SC`, - countryName: `Seychelles`, - gdpPerCapita: 16600, - unemploymentRate: 2, - televisions: 11000, - publicDebt: 92, - population: 82247, - oilProduction: 0, - medianAge: 29, - internetUsers: 32000, - electricityProduction: 252, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SG`, - countryName: `Singapore`, - gdpPerCapita: 49900, - unemploymentRate: 2, - televisions: 1330000, - publicDebt: 96, - population: 4608167, - oilProduction: 9836, - medianAge: 38, - internetUsers: 3105000, - electricityProduction: 39440, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SK`, - countryName: `Slovakia`, - gdpPerCapita: 20200, - unemploymentRate: 8, - televisions: 2620000, - publicDebt: 36, - population: 5455407, - oilProduction: 12840, - medianAge: 37, - internetUsers: 2350000, - electricityProduction: 29890, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SI`, - countryName: `Slovenia`, - gdpPerCapita: 28000, - unemploymentRate: 8, - televisions: 710000, - publicDebt: 24, - population: 2007711, - oilProduction: 5, - medianAge: 41, - internetUsers: 1300000, - electricityProduction: 14900, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ZA`, - countryName: `South Africa`, - gdpPerCapita: 9700, - unemploymentRate: 24, - televisions: 6000000, - publicDebt: 31, - population: 48782756, - oilProduction: 200000, - medianAge: 24, - internetUsers: 5100000, - electricityProduction: 264000, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ES`, - countryName: `Spain`, - gdpPerCapita: 33600, - unemploymentRate: 8, - televisions: 16200000, - publicDebt: 36, - population: 40491052, - oilProduction: 29350, - medianAge: 41, - internetUsers: 19690000, - electricityProduction: 270300, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LK`, - countryName: `Sri Lanka`, - gdpPerCapita: 4000, - unemploymentRate: 6, - televisions: 1530000, - publicDebt: 86, - population: 21128772, - oilProduction: 0, - medianAge: 30, - internetUsers: 771700, - electricityProduction: 8411, - birthRate: 17 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SD`, - countryName: `Sudan`, - gdpPerCapita: 1900, - unemploymentRate: 19, - televisions: 2380000, - publicDebt: 106, - population: 40218456, - oilProduction: 484500, - medianAge: 19, - internetUsers: 1500000, - electricityProduction: 3944, - birthRate: 34 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SE`, - countryName: `Sweden`, - gdpPerCapita: 37500, - unemploymentRate: 6, - televisions: 4600000, - publicDebt: 42, - population: 9045389, - oilProduction: 2350, - medianAge: 41, - internetUsers: 7000000, - electricityProduction: 153200, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CH`, - countryName: `Switzerland`, - gdpPerCapita: 40100, - unemploymentRate: 3, - televisions: 3310000, - publicDebt: 44, - population: 7581520, - oilProduction: 3202, - medianAge: 41, - internetUsers: 4610000, - electricityProduction: 56100, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SY`, - countryName: `Syria`, - gdpPerCapita: 4700, - unemploymentRate: 9, - televisions: 1050000, - publicDebt: 38, - population: 19747586, - oilProduction: 379000, - medianAge: 21, - internetUsers: 3470000, - electricityProduction: 153200, - birthRate: 27 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TW`, - countryName: `Taiwan`, - gdpPerCapita: 30100, - unemploymentRate: 4, - televisions: 8800000, - publicDebt: 28, - population: 22920946, - oilProduction: 600, - medianAge: 36, - internetUsers: 14760000, - electricityProduction: 235000, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TZ`, - countryName: `Tanzania`, - gdpPerCapita: 1300, - unemploymentRate: 0, - televisions: 103000, - publicDebt: 20, - population: 40213160, - oilProduction: 0, - medianAge: 18, - internetUsers: 400000, - electricityProduction: 1880, - birthRate: 35 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TH`, - countryName: `Thailand`, - gdpPerCapita: 8000, - unemploymentRate: 1, - televisions: 15190000, - publicDebt: 38, - population: 65493296, - oilProduction: 310000, - medianAge: 33, - internetUsers: 13416000, - electricityProduction: 124600, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TN`, - countryName: `Tunisia`, - gdpPerCapita: 7400, - unemploymentRate: 14, - televisions: 920000, - publicDebt: 55, - population: 10383577, - oilProduction: 76900, - medianAge: 29, - internetUsers: 1722000, - electricityProduction: 12850, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TR`, - countryName: `Turkey`, - gdpPerCapita: 12000, - unemploymentRate: 10, - televisions: 20900000, - publicDebt: 39, - population: 71892808, - oilProduction: 45460, - medianAge: 29, - internetUsers: 13150000, - electricityProduction: 154200, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UG`, - countryName: `Uganda`, - gdpPerCapita: 1000, - unemploymentRate: 0, - televisions: 500000, - publicDebt: 21, - population: 31367972, - oilProduction: 0, - medianAge: 15, - internetUsers: 2000000, - electricityProduction: 1983, - birthRate: 48 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UA`, - countryName: `Ukraine`, - gdpPerCapita: 7000, - unemploymentRate: 2, - televisions: 18050000, - publicDebt: 12, - population: 45994288, - oilProduction: 90400, - medianAge: 39, - internetUsers: 10000000, - electricityProduction: 192100, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AE`, - countryName: `United Arab Emirates`, - gdpPerCapita: 37000, - unemploymentRate: 2, - televisions: 310000, - publicDebt: 21, - population: 4621399, - oilProduction: 2510000, - medianAge: 30, - internetUsers: 2300000, - electricityProduction: 57060, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UK`, - countryName: `United Kingdom`, - gdpPerCapita: 35000, - unemploymentRate: 5, - televisions: 30500000, - publicDebt: 44, - population: 60943912, - oilProduction: 1636000, - medianAge: 40, - internetUsers: 40200000, - electricityProduction: 372600, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `US`, - countryName: `United States`, - gdpPerCapita: 45800, - unemploymentRate: 5, - televisions: 219000000, - publicDebt: 61, - population: 303824640, - oilProduction: 7460000, - medianAge: 37, - internetUsers: 223000000, - electricityProduction: 4062000, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UY`, - countryName: `Uruguay`, - gdpPerCapita: 10800, - unemploymentRate: 9, - televisions: 782000, - publicDebt: 65, - population: 3477778, - oilProduction: 27830, - medianAge: 33, - internetUsers: 968000, - electricityProduction: 9200, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UZ`, - countryName: `Uzbekistan`, - gdpPerCapita: 2400, - unemploymentRate: 1, - televisions: 6400000, - publicDebt: 19, - population: 27345026, - oilProduction: 109400, - medianAge: 24, - internetUsers: 1200000, - electricityProduction: 49000, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `VE`, - countryName: `Venezuela`, - gdpPerCapita: 12800, - unemploymentRate: 9, - televisions: 4100000, - publicDebt: 19, - population: 26414816, - oilProduction: 2398000, - medianAge: 25, - internetUsers: 5720000, - electricityProduction: 99200, - birthRate: 21 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `VN`, - countryName: `Vietnam`, - gdpPerCapita: 2600, - unemploymentRate: 4, - televisions: 3570000, - publicDebt: 42, - population: 86116560, - oilProduction: 324000, - medianAge: 27, - internetUsers: 17870000, - electricityProduction: 59010, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `WF`, - countryName: `Wallis and Futuna`, - gdpPerCapita: 3800, - unemploymentRate: 15, - televisions: 0, - publicDebt: 6, - population: 15237, - oilProduction: 0, - medianAge: 0, - internetUsers: 900, - electricityProduction: 0, - birthRate: 0 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `YE`, - countryName: `Yemen`, - gdpPerCapita: 2500, - unemploymentRate: 35, - televisions: 470000, - publicDebt: 34, - population: 23013376, - oilProduction: 339200, - medianAge: 17, - internetUsers: 320000, - electricityProduction: 4456, - birthRate: 42 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ZM`, - countryName: `Zambia`, - gdpPerCapita: 1400, - unemploymentRate: 50, - televisions: 277000, - publicDebt: 28, - population: 11669534, - oilProduction: 150, - medianAge: 17, - internetUsers: 500000, - electricityProduction: 8850, - birthRate: 41 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ZW`, - countryName: `Zimbabwe`, - gdpPerCapita: 200, - unemploymentRate: 80, - televisions: 370000, - publicDebt: 218, - population: 11350111, - oilProduction: 0, - medianAge: 18, - internetUsers: 1351000, - electricityProduction: 9950, - birthRate: 32 - }), - ]; - super(...(newItems.slice(0, items))); - } - } -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts new file mode 100644 index 000000000..b08f50344 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts @@ -0,0 +1,5443 @@ +export class WorldStatsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public code: string; + public name: string; + public continent: string; + public population: number; + public gdpTotal: number; + public economy: string; + public region: string; + public status: string; + public longitude: number; + public latitude: number; + public gdpPerPerson: number; + public rank: number; + public unemployment: number; + public oilProduction: number; + public birthRate: number; + public medianAge: number; + public electricity: number; + public televisions: number; + public publicDebt: number; + public internet: number; + +} +export class WorldStats extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new WorldStatsItem( + { + code: `CHN`, + name: `China`, + continent: `Asia`, + population: 1379302771, + gdpTotal: 21140000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 104.18, + latitude: 35.887, + gdpPerPerson: 15327, + rank: 1, + unemployment: 4, + oilProduction: 3725000, + birthRate: 14, + medianAge: 34, + electricity: 3256000, + televisions: 400000000, + publicDebt: 18, + internet: 253000000 + }), + new WorldStatsItem( + { + code: `IND`, + name: `India`, + continent: `Asia`, + population: 1281935911, + gdpTotal: 8721000, + economy: `Emerging`, + region: `Southern Asia`, + status: `Country`, + longitude: 78.022, + latitude: 22.665, + gdpPerPerson: 6803, + rank: 2, + unemployment: 7, + oilProduction: 810000, + birthRate: 22, + medianAge: 25, + electricity: 661600, + televisions: 63000000, + publicDebt: 58, + internet: 80000000 + }), + new WorldStatsItem( + { + code: `USA`, + name: `United States`, + continent: `North America`, + population: 326625791, + gdpTotal: 18560000, + economy: `Developed`, + region: `Northern America`, + status: `Country`, + longitude: -101.8, + latitude: 39.818, + gdpPerPerson: 56823, + rank: 3, + unemployment: 5, + oilProduction: 7460000, + birthRate: 14, + medianAge: 37, + electricity: 4062000, + televisions: 219000000, + publicDebt: 61, + internet: 223000000 + }), + new WorldStatsItem( + { + code: `IDN`, + name: `Indonesia`, + continent: `Asia`, + population: 260580739, + gdpTotal: 3028000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 102.72, + latitude: -2.698, + gdpPerPerson: 11620, + rank: 4, + unemployment: 9, + oilProduction: 837500, + birthRate: 19, + medianAge: 27, + electricity: 125900, + televisions: 13750000, + publicDebt: 34, + internet: 13000000 + }), + new WorldStatsItem( + { + code: `BRA`, + name: `Brazil`, + continent: `South America`, + population: 207353391, + gdpTotal: 3081000, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -48.88, + latitude: -12.89, + gdpPerPerson: 14859, + rank: 5, + unemployment: 9, + oilProduction: 1797000, + birthRate: 19, + medianAge: 28, + electricity: 396400, + televisions: 36500000, + publicDebt: 45, + internet: 50000000 + }), + new WorldStatsItem( + { + code: `PAK`, + name: `Pakistan`, + continent: `Asia`, + population: 204924861, + gdpTotal: 988200, + economy: `Emerging`, + region: `Southern Asia`, + status: `Country`, + longitude: 67.624, + latitude: 28.421, + gdpPerPerson: 4822, + rank: 6, + unemployment: 6, + oilProduction: 62000, + birthRate: 28, + medianAge: 21, + electricity: 89820, + televisions: 3100000, + publicDebt: 51, + internet: 17500000 + }), + new WorldStatsItem( + { + code: `NGA`, + name: `Nigeria`, + continent: `Africa`, + population: 190632261, + gdpTotal: 1089000, + economy: `Emerging`, + region: `Western Africa`, + status: `Country`, + longitude: 8.657, + latitude: 9.075, + gdpPerPerson: 5713, + rank: 7, + unemployment: 5, + oilProduction: 2166000, + birthRate: 37, + medianAge: 19, + electricity: 22530, + televisions: 6900000, + publicDebt: 14, + internet: 10000000 + }), + new WorldStatsItem( + { + code: `BGD`, + name: `Bangladesh`, + continent: `Asia`, + population: 157826578, + gdpTotal: 628400, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 89.935, + latitude: 24.474, + gdpPerPerson: 3982, + rank: 8, + unemployment: 3, + oilProduction: 6746, + birthRate: 29, + medianAge: 23, + electricity: 21350, + televisions: 770000, + publicDebt: 37, + internet: 500000 + }), + new WorldStatsItem( + { + code: `RUS`, + name: `Russia`, + continent: `Europe`, + population: 142257519, + gdpTotal: 3745000, + economy: `Emerging`, + region: `Eastern Europe`, + status: `Country`, + longitude: 42.379, + latitude: 56.974, + gdpPerPerson: 26325, + rank: 9, + unemployment: 6, + oilProduction: 9870000, + birthRate: 11, + medianAge: 38, + electricity: 1000000, + televisions: 60500000, + publicDebt: 6, + internet: 30000000 + }), + new WorldStatsItem( + { + code: `JPN`, + name: `Japan`, + continent: `Asia`, + population: 126451398, + gdpTotal: 4932000, + economy: `Developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 138.48, + latitude: 36.519, + gdpPerPerson: 39003, + rank: 10, + unemployment: 4, + oilProduction: 125000, + birthRate: 8, + medianAge: 44, + electricity: 1025000, + televisions: 86500000, + publicDebt: 170, + internet: 88110000 + }), + new WorldStatsItem( + { + code: `MEX`, + name: `Mexico`, + continent: `North America`, + population: 124574795, + gdpTotal: 2307000, + economy: `Emerging`, + region: `Central America`, + status: `Country`, + longitude: -102.5, + latitude: 23.63, + gdpPerPerson: 18519, + rank: 11, + unemployment: 4, + oilProduction: 3083000, + birthRate: 20, + medianAge: 26, + electricity: 222400, + televisions: 25600000, + publicDebt: 23, + internet: 22812000 + }), + new WorldStatsItem( + { + code: `ETH`, + name: `Ethiopia`, + continent: `Africa`, + population: 105350020, + gdpTotal: 174700, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 40.489, + latitude: 9.154, + gdpPerPerson: 1658, + rank: 12, + unemployment: 5, + oilProduction: 1, + birthRate: 25, + medianAge: 52, + electricity: 60942, + televisions: 66893500, + publicDebt: 45, + internet: 291000 + }), + new WorldStatsItem( + { + code: `PHL`, + name: `Philippines`, + continent: `Asia`, + population: 104256076, + gdpTotal: 801900, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 121.4, + latitude: 16.78, + gdpPerPerson: 7692, + rank: 13, + unemployment: 7, + oilProduction: 0, + birthRate: 26, + medianAge: 22, + electricity: 53670, + televisions: 3700000, + publicDebt: 56, + internet: 5300000 + }), + new WorldStatsItem( + { + code: `EGY`, + name: `Egypt`, + continent: `Africa`, + population: 97041072, + gdpTotal: 1105000, + economy: `Emerging`, + region: `Middle East`, + status: `Country`, + longitude: 30.787, + latitude: 26.825, + gdpPerPerson: 11387, + rank: 14, + unemployment: 9, + oilProduction: 665000, + birthRate: 22, + medianAge: 25, + electricity: 102500, + televisions: 7700000, + publicDebt: 106, + internet: 8620000 + }), + new WorldStatsItem( + { + code: `VNM`, + name: `Vietnam`, + continent: `Asia`, + population: 96160163, + gdpTotal: 594900, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 108.46, + latitude: 13.711, + gdpPerPerson: 6187, + rank: 15, + unemployment: 4, + oilProduction: 324000, + birthRate: 16, + medianAge: 27, + electricity: 59010, + televisions: 3570000, + publicDebt: 42, + internet: 17870000 + }), + new WorldStatsItem( + { + code: `COD`, + name: `Dem. Rep. Congo`, + continent: `Africa`, + population: 83301151, + gdpTotal: 66010, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 21.738, + latitude: -4.071, + gdpPerPerson: 792, + rank: 16, + unemployment: 3, + oilProduction: 4, + birthRate: 13, + medianAge: 41, + electricity: 48913, + televisions: 55942436, + publicDebt: 16, + internet: 8903936 + }), + new WorldStatsItem( + { + code: `IRN`, + name: `Iran`, + continent: `Asia`, + population: 82021564, + gdpTotal: 1459000, + economy: `Emerging`, + region: `Middle East`, + status: `Country`, + longitude: 53.664, + latitude: 32.435, + gdpPerPerson: 17788, + rank: 17, + unemployment: 12, + oilProduction: 3956000, + birthRate: 17, + medianAge: 26, + electricity: 170400, + televisions: 4610000, + publicDebt: 17, + internet: 23000000 + }), + new WorldStatsItem( + { + code: `TUR`, + name: `Turkey`, + continent: `Asia`, + population: 80845215, + gdpTotal: 1670000, + economy: `Emerging`, + region: `Middle East`, + status: `Country`, + longitude: 35.243, + latitude: 38.962, + gdpPerPerson: 20657, + rank: 18, + unemployment: 10, + oilProduction: 45460, + birthRate: 16, + medianAge: 29, + electricity: 154200, + televisions: 20900000, + publicDebt: 39, + internet: 13150000 + }), + new WorldStatsItem( + { + code: `DEU`, + name: `Germany`, + continent: `Europe`, + population: 80594017, + gdpTotal: 3979000, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 11.43, + latitude: 52.237, + gdpPerPerson: 49371, + rank: 19, + unemployment: 9, + oilProduction: 141700, + birthRate: 8, + medianAge: 43, + electricity: 579400, + televisions: 51400000, + publicDebt: 65, + internet: 42500000 + }), + new WorldStatsItem( + { + code: `THA`, + name: `Thailand`, + continent: `Asia`, + population: 68414135, + gdpTotal: 1161000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 100.65, + latitude: 15.345, + gdpPerPerson: 16970, + rank: 20, + unemployment: 1, + oilProduction: 310000, + birthRate: 14, + medianAge: 33, + electricity: 124600, + televisions: 15190000, + publicDebt: 38, + internet: 13416000 + }), + new WorldStatsItem( + { + code: `FRA`, + name: `France`, + continent: `Europe`, + population: 67106161, + gdpTotal: 2699000, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 2.267, + latitude: 46.645, + gdpPerPerson: 40220, + rank: 21, + unemployment: 12, + oilProduction: 1, + birthRate: 24, + medianAge: 48, + electricity: 63711, + televisions: 43156970, + publicDebt: 11, + internet: 7012454 + }), + new WorldStatsItem( + { + code: `GBR`, + name: `United Kingdom`, + continent: `Europe`, + population: 64769452, + gdpTotal: 2788000, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: -1.233, + latitude: 52.242, + gdpPerPerson: 43045, + rank: 22, + unemployment: 5, + oilProduction: 1636000, + birthRate: 11, + medianAge: 40, + electricity: 372600, + televisions: 30500000, + publicDebt: 44, + internet: 40200000 + }), + new WorldStatsItem( + { + code: `ITA`, + name: `Italy`, + continent: `Europe`, + population: 62137802, + gdpTotal: 2221000, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 15.701, + latitude: 40.885, + gdpPerPerson: 35743, + rank: 23, + unemployment: 6, + oilProduction: 164800, + birthRate: 8, + medianAge: 43, + electricity: 278500, + televisions: 30300000, + publicDebt: 104, + internet: 32000000 + }), + new WorldStatsItem( + { + code: `MMR`, + name: `Myanmar`, + continent: `Asia`, + population: 55123814, + gdpTotal: 311100, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 96.028, + latitude: 21.509, + gdpPerPerson: 5644, + rank: 24, + unemployment: 13, + oilProduction: 4, + birthRate: 24, + medianAge: 37, + electricity: 26955, + televisions: 39322205, + publicDebt: 18, + internet: 30207772 + }), + new WorldStatsItem( + { + code: `ZAF`, + name: `South Africa`, + continent: `Africa`, + population: 54841552, + gdpTotal: 739100, + economy: `Emerging`, + region: `Southern Africa`, + status: `Country`, + longitude: 22.489, + latitude: -32.4, + gdpPerPerson: 13477, + rank: 25, + unemployment: 24, + oilProduction: 200000, + birthRate: 20, + medianAge: 24, + electricity: 264000, + televisions: 6000000, + publicDebt: 31, + internet: 5100000 + }), + new WorldStatsItem( + { + code: `TZA`, + name: `Tanzania`, + continent: `Africa`, + population: 53950935, + gdpTotal: 150600, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 34.894, + latitude: -6.356, + gdpPerPerson: 2791, + rank: 26, + unemployment: 6, + oilProduction: 3, + birthRate: 9, + medianAge: 34, + electricity: 10186, + televisions: 35987980, + publicDebt: 20, + internet: 400000 + }), + new WorldStatsItem( + { + code: `KOR`, + name: `South Korea`, + continent: `Asia`, + population: 51181299, + gdpTotal: 1929000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 128.29, + latitude: 36.399, + gdpPerPerson: 37690, + rank: 27, + unemployment: 3, + oilProduction: 17050, + birthRate: 9, + medianAge: 37, + electricity: 403200, + televisions: 15900000, + publicDebt: 28, + internet: 35590000 + }), + new WorldStatsItem( + { + code: `ESP`, + name: `Spain`, + continent: `Europe`, + population: 48958159, + gdpTotal: 1690000, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: -2.892, + latitude: 40.569, + gdpPerPerson: 34519, + rank: 28, + unemployment: 8, + oilProduction: 29350, + birthRate: 10, + medianAge: 41, + electricity: 270300, + televisions: 16200000, + publicDebt: 36, + internet: 19690000 + }), + new WorldStatsItem( + { + code: `COL`, + name: `Colombia`, + continent: `South America`, + population: 47698524, + gdpTotal: 688000, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -72.95, + latitude: 4.099, + gdpPerPerson: 14424, + rank: 29, + unemployment: 11, + oilProduction: 531300, + birthRate: 20, + medianAge: 27, + electricity: 50470, + televisions: 4590000, + publicDebt: 53, + internet: 12100000 + }), + new WorldStatsItem( + { + code: `KEN`, + name: `Kenya`, + continent: `Africa`, + population: 47615739, + gdpTotal: 152700, + economy: `Emerging`, + region: `Eastern Africa`, + status: `Country`, + longitude: 37.929, + latitude: 0.4, + gdpPerPerson: 3207, + rank: 30, + unemployment: 40, + oilProduction: 0, + birthRate: 38, + medianAge: 19, + electricity: 5502, + televisions: 730000, + publicDebt: 49, + internet: 3000000 + }), + new WorldStatsItem( + { + code: `ARG`, + name: `Argentina`, + continent: `South America`, + population: 44293293, + gdpTotal: 879400, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -64.84, + latitude: -33.07, + gdpPerPerson: 19854, + rank: 31, + unemployment: 9, + oilProduction: 730000, + birthRate: 18, + medianAge: 30, + electricity: 101100, + televisions: 7950000, + publicDebt: 56, + internet: 9309000 + }), + new WorldStatsItem( + { + code: `UKR`, + name: `Ukraine`, + continent: `Europe`, + population: 44033874, + gdpTotal: 352600, + economy: `Developing`, + region: `Eastern Europe`, + status: `Country`, + longitude: 30.86, + latitude: 49.723, + gdpPerPerson: 8007, + rank: 32, + unemployment: 2, + oilProduction: 90400, + birthRate: 10, + medianAge: 39, + electricity: 192100, + televisions: 18050000, + publicDebt: 12, + internet: 10000000 + }), + new WorldStatsItem( + { + code: `DZA`, + name: `Algeria`, + continent: `Africa`, + population: 40969443, + gdpTotal: 609400, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 1.642, + latitude: 28.04, + gdpPerPerson: 14875, + rank: 33, + unemployment: 12, + oilProduction: 1358000, + birthRate: 17, + medianAge: 26, + electricity: 31910, + televisions: 3100000, + publicDebt: 18, + internet: 3500000 + }), + new WorldStatsItem( + { + code: `UGA`, + name: `Uganda`, + continent: `Africa`, + population: 39570125, + gdpTotal: 84930, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 32.27, + latitude: 1.375, + gdpPerPerson: 2146, + rank: 34, + unemployment: 10, + oilProduction: 1, + birthRate: 10, + medianAge: 32, + electricity: 35388, + televisions: 27867123, + publicDebt: 21, + internet: 2000000 + }), + new WorldStatsItem( + { + code: `IRQ`, + name: `Iraq`, + continent: `Asia`, + population: 39192111, + gdpTotal: 596700, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 43.66, + latitude: 33.218, + gdpPerPerson: 15225, + rank: 35, + unemployment: 6, + oilProduction: 0, + birthRate: 20, + medianAge: 44, + electricity: 48545, + televisions: 13178804, + publicDebt: 40, + internet: 9538092 + }), + new WorldStatsItem( + { + code: `POL`, + name: `Poland`, + continent: `Europe`, + population: 38476269, + gdpTotal: 1052000, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 20.073, + latitude: 52.374, + gdpPerPerson: 27342, + rank: 36, + unemployment: 13, + oilProduction: 0, + birthRate: 10, + medianAge: 38, + electricity: 146200, + televisions: 13050000, + publicDebt: 43, + internet: 16000000 + }), + new WorldStatsItem( + { + code: `SDN`, + name: `Sudan`, + continent: `Africa`, + population: 37345935, + gdpTotal: 176300, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 30.217, + latitude: 15.434, + gdpPerPerson: 4721, + rank: 37, + unemployment: 19, + oilProduction: 484500, + birthRate: 34, + medianAge: 19, + electricity: 3944, + televisions: 2380000, + publicDebt: 106, + internet: 1500000 + }), + new WorldStatsItem( + { + code: `CAN`, + name: `Canada`, + continent: `North America`, + population: 35623680, + gdpTotal: 1674000, + economy: `Developed`, + region: `Northern America`, + status: `Country`, + longitude: -108, + latitude: 55.855, + gdpPerPerson: 46991, + rank: 38, + unemployment: 6, + oilProduction: 3310000, + birthRate: 10, + medianAge: 40, + electricity: 609600, + televisions: 21500000, + publicDebt: 64, + internet: 28000000 + }), + new WorldStatsItem( + { + code: `AFG`, + name: `Afghanistan`, + continent: `Asia`, + population: 34124811, + gdpTotal: 64080, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 66.041, + latitude: 33.977, + gdpPerPerson: 1878, + rank: 39, + unemployment: 9, + oilProduction: 2, + birthRate: 15, + medianAge: 39, + electricity: 64532, + televisions: 15374294, + publicDebt: 25, + internet: 18662148 + }), + new WorldStatsItem( + { + code: `MAR`, + name: `Morocco`, + continent: `Africa`, + population: 33986655, + gdpTotal: 282800, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: -5.707, + latitude: 32.104, + gdpPerPerson: 8321, + rank: 40, + unemployment: 10, + oilProduction: 300, + birthRate: 21, + medianAge: 25, + electricity: 21370, + televisions: 3100000, + publicDebt: 67, + internet: 7300000 + }), + new WorldStatsItem( + { + code: `MYS`, + name: `Malaysia`, + continent: `Asia`, + population: 31381992, + gdpTotal: 863000, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 101.72, + latitude: 4.89, + gdpPerPerson: 27500, + rank: 41, + unemployment: 3, + oilProduction: 757500, + birthRate: 22, + medianAge: 25, + electricity: 82360, + televisions: 10800000, + publicDebt: 42, + internet: 15868000 + }), + new WorldStatsItem( + { + code: `VEN`, + name: `Venezuela`, + continent: `South America`, + population: 31304016, + gdpTotal: 468600, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -64.78, + latitude: 6.695, + gdpPerPerson: 14969, + rank: 42, + unemployment: 9, + oilProduction: 2398000, + birthRate: 21, + medianAge: 25, + electricity: 99200, + televisions: 4100000, + publicDebt: 19, + internet: 5720000 + }), + new WorldStatsItem( + { + code: `PER`, + name: `Peru`, + continent: `South America`, + population: 31036656, + gdpTotal: 410400, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -73.82, + latitude: -12.89, + gdpPerPerson: 13223, + rank: 43, + unemployment: 7, + oilProduction: 119000, + birthRate: 20, + medianAge: 26, + electricity: 24970, + televisions: 3060000, + publicDebt: 29, + internet: 7636000 + }), + new WorldStatsItem( + { + code: `UZB`, + name: `Uzbekistan`, + continent: `Asia`, + population: 29748859, + gdpTotal: 202300, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 63.288, + latitude: 42.338, + gdpPerPerson: 6800, + rank: 44, + unemployment: 1, + oilProduction: 109400, + birthRate: 18, + medianAge: 24, + electricity: 49000, + televisions: 6400000, + publicDebt: 19, + internet: 1200000 + }), + new WorldStatsItem( + { + code: `NPL`, + name: `Nepal`, + continent: `Asia`, + population: 29384297, + gdpTotal: 71520, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 82.328, + latitude: 28.843, + gdpPerPerson: 2434, + rank: 45, + unemployment: 5, + oilProduction: 3, + birthRate: 18, + medianAge: 34, + electricity: 68842, + televisions: 21075997, + publicDebt: 16, + internet: 7780693 + }), + new WorldStatsItem( + { + code: `AGO`, + name: `Angola`, + continent: `Africa`, + population: 29310273, + gdpTotal: 189000, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 18.097, + latitude: -12.37, + gdpPerPerson: 6448, + rank: 46, + unemployment: 14, + oilProduction: 0, + birthRate: 15, + medianAge: 38, + electricity: 25890, + televisions: 21283158, + publicDebt: 12, + internet: 100000 + }), + new WorldStatsItem( + { + code: `SAU`, + name: `Saudi Arabia`, + continent: `Asia`, + population: 28571770, + gdpTotal: 1731000, + economy: `Developed`, + region: `Middle East`, + status: `Country`, + longitude: 45.129, + latitude: 24.248, + gdpPerPerson: 60584, + rank: 47, + unemployment: 13, + oilProduction: 11000000, + birthRate: 29, + medianAge: 22, + electricity: 165600, + televisions: 5100000, + publicDebt: 24, + internet: 6200000 + }), + new WorldStatsItem( + { + code: `YEM`, + name: `Yemen`, + continent: `Asia`, + population: 28036829, + gdpTotal: 73450, + economy: `Least developed`, + region: `Middle East`, + status: `Country`, + longitude: 48.53, + latitude: 15.658, + gdpPerPerson: 2620, + rank: 48, + unemployment: 35, + oilProduction: 339200, + birthRate: 42, + medianAge: 17, + electricity: 4456, + televisions: 470000, + publicDebt: 34, + internet: 320000 + }), + new WorldStatsItem( + { + code: `GHA`, + name: `Ghana`, + continent: `Africa`, + population: 27499924, + gdpTotal: 120800, + economy: `Developing`, + region: `Western Africa`, + status: `Country`, + longitude: -0.893, + latitude: 8.607, + gdpPerPerson: 4393, + rank: 49, + unemployment: 11, + oilProduction: 700, + birthRate: 29, + medianAge: 20, + electricity: 7042, + televisions: 1900000, + publicDebt: 59, + internet: 650000 + }), + new WorldStatsItem( + { + code: `MOZ`, + name: `Mozambique`, + continent: `Africa`, + population: 26573706, + gdpTotal: 35010, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 38.075, + latitude: -15.41, + gdpPerPerson: 1317, + rank: 50, + unemployment: 21, + oilProduction: 0, + birthRate: 38, + medianAge: 17, + electricity: 13170, + televisions: 67600, + publicDebt: 22, + internet: 200000 + }), + new WorldStatsItem( + { + code: `PRK`, + name: `North Korea`, + continent: `Asia`, + population: 25248140, + gdpTotal: 40000, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 127.01, + latitude: 40.333, + gdpPerPerson: 1584, + rank: 51, + unemployment: 13, + oilProduction: 0, + birthRate: 23, + medianAge: 55, + electricity: 35619, + televisions: 16501842, + publicDebt: 30, + internet: 2340760 + }), + new WorldStatsItem( + { + code: `MDG`, + name: `Madagascar`, + continent: `Africa`, + population: 25054161, + gdpTotal: 36860, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 46.87, + latitude: -18.82, + gdpPerPerson: 1471, + rank: 52, + unemployment: 15, + oilProduction: 0, + birthRate: 20, + medianAge: 36, + electricity: 86068, + televisions: 9470858, + publicDebt: 31, + internet: 1407981 + }), + new WorldStatsItem( + { + code: `CMR`, + name: `Cameroon`, + continent: `Africa`, + population: 24994885, + gdpTotal: 77240, + economy: `Developing`, + region: `Middle Africa`, + status: `Country`, + longitude: 12.451, + latitude: 4.365, + gdpPerPerson: 3090, + rank: 53, + unemployment: 30, + oilProduction: 85300, + birthRate: 35, + medianAge: 19, + electricity: 4090, + televisions: 450000, + publicDebt: 16, + internet: 370000 + }), + new WorldStatsItem( + { + code: `CIV`, + name: `Ivory Coast`, + continent: `Africa`, + population: 24184810, + gdpTotal: 87120, + economy: `Developing`, + region: `Western Africa`, + status: `Country`, + longitude: -5.555, + latitude: 7.538, + gdpPerPerson: 3602, + rank: 54, + unemployment: 3, + oilProduction: 1, + birthRate: 17, + medianAge: 55, + electricity: 49302, + televisions: 9034402, + publicDebt: 75, + internet: 300000 + }), + new WorldStatsItem( + { + code: `TWN`, + name: `Taiwan`, + continent: `Asia`, + population: 23508428, + gdpTotal: 1127000, + economy: `Developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 120.96, + latitude: 23.636, + gdpPerPerson: 47940, + rank: 55, + unemployment: 4, + oilProduction: 600, + birthRate: 9, + medianAge: 36, + electricity: 235000, + televisions: 8800000, + publicDebt: 28, + internet: 14760000 + }), + new WorldStatsItem( + { + code: `AUS`, + name: `Australia`, + continent: `Oceania`, + population: 23232413, + gdpTotal: 1189000, + economy: `Developed`, + region: `Australia`, + status: `Country`, + longitude: 135.87, + latitude: -25.63, + gdpPerPerson: 51178, + rank: 56, + unemployment: 4, + oilProduction: 540000, + birthRate: 13, + medianAge: 37, + electricity: 236700, + televisions: 10150000, + publicDebt: 16, + internet: 11240000 + }), + new WorldStatsItem( + { + code: `LKA`, + name: `Sri Lanka`, + continent: `Asia`, + population: 22409381, + gdpTotal: 236700, + economy: `Developing`, + region: `Southern Asia`, + status: `Country`, + longitude: 80.792, + latitude: 7.881, + gdpPerPerson: 10563, + rank: 57, + unemployment: 6, + oilProduction: 0, + birthRate: 17, + medianAge: 30, + electricity: 8411, + televisions: 1530000, + publicDebt: 86, + internet: 771700 + }), + new WorldStatsItem( + { + code: `ROU`, + name: `Romania`, + continent: `Europe`, + population: 21529967, + gdpTotal: 441000, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 24.974, + latitude: 45.967, + gdpPerPerson: 20483, + rank: 58, + unemployment: 4, + oilProduction: 115000, + birthRate: 11, + medianAge: 37, + electricity: 60520, + televisions: 5250000, + publicDebt: 13, + internet: 12000000 + }), + new WorldStatsItem( + { + code: `BFA`, + name: `Burkina Faso`, + continent: `Africa`, + population: 20107509, + gdpTotal: 32990, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -1.567, + latitude: 12.251, + gdpPerPerson: 1641, + rank: 59, + unemployment: 4, + oilProduction: 5, + birthRate: 21, + medianAge: 30, + electricity: 82658, + televisions: 7478745, + publicDebt: 14, + internet: 5896530 + }), + new WorldStatsItem( + { + code: `NER`, + name: `Niger`, + continent: `Africa`, + population: 19245344, + gdpTotal: 20150, + economy: `Least developed`, + region: `Northern Africa`, + status: `Country`, + longitude: 10.845, + latitude: 17.92, + gdpPerPerson: 1047, + rank: 60, + unemployment: 9, + oilProduction: 5, + birthRate: 18, + medianAge: 53, + electricity: 10652, + televisions: 8203307, + publicDebt: 17, + internet: 157021 + }), + new WorldStatsItem( + { + code: `MWI`, + name: `Malawi`, + continent: `Africa`, + population: 19196246, + gdpTotal: 21200, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 34.282, + latitude: -13.26, + gdpPerPerson: 1104, + rank: 61, + unemployment: 12, + oilProduction: 3, + birthRate: 12, + medianAge: 51, + electricity: 20676, + televisions: 4938675, + publicDebt: 51, + internet: 139500 + }), + new WorldStatsItem( + { + code: `KAZ`, + name: `Kazakhstan`, + continent: `Asia`, + population: 18556698, + gdpTotal: 460700, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 66.966, + latitude: 47.999, + gdpPerPerson: 24827, + rank: 62, + unemployment: 7, + oilProduction: 1355000, + birthRate: 16, + medianAge: 29, + electricity: 76340, + televisions: 3880000, + publicDebt: 8, + internet: 1901000 + }), + new WorldStatsItem( + { + code: `SYR`, + name: `Syria`, + continent: `Asia`, + population: 18028549, + gdpTotal: 50280, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 39.062, + latitude: 34.807, + gdpPerPerson: 2789, + rank: 63, + unemployment: 9, + oilProduction: 379000, + birthRate: 27, + medianAge: 21, + electricity: 153200, + televisions: 1050000, + publicDebt: 38, + internet: 3470000 + }), + new WorldStatsItem( + { + code: `MLI`, + name: `Mali`, + continent: `Africa`, + population: 17885245, + gdpTotal: 38090, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -1.496, + latitude: 17.867, + gdpPerPerson: 2130, + rank: 64, + unemployment: 4, + oilProduction: 4, + birthRate: 21, + medianAge: 46, + electricity: 72483, + televisions: 4783188, + publicDebt: 38, + internet: 8619386 + }), + new WorldStatsItem( + { + code: `CHL`, + name: `Chile`, + continent: `South America`, + population: 17789267, + gdpTotal: 436100, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -69.11, + latitude: -23.36, + gdpPerPerson: 24515, + rank: 65, + unemployment: 7, + oilProduction: 15100, + birthRate: 15, + medianAge: 31, + electricity: 47600, + televisions: 3150000, + publicDebt: 4, + internet: 557000 + }), + new WorldStatsItem( + { + code: `NLD`, + name: `Netherlands`, + continent: `Europe`, + population: 17084719, + gdpTotal: 870800, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 6.272, + latitude: 52.971, + gdpPerPerson: 50970, + rank: 66, + unemployment: 5, + oilProduction: 76000, + birthRate: 11, + medianAge: 40, + electricity: 94340, + televisions: 8100000, + publicDebt: 46, + internet: 15000000 + }), + new WorldStatsItem( + { + code: `ECU`, + name: `Ecuador`, + continent: `South America`, + population: 16290913, + gdpTotal: 182400, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -77.98, + latitude: -1.291, + gdpPerPerson: 11196, + rank: 67, + unemployment: 9, + oilProduction: 511100, + birthRate: 22, + medianAge: 24, + electricity: 12940, + televisions: 2500000, + publicDebt: 33, + internet: 1549000 + }), + new WorldStatsItem( + { + code: `KHM`, + name: `Cambodia`, + continent: `Asia`, + population: 16204486, + gdpTotal: 58940, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 104.96, + latitude: 12.558, + gdpPerPerson: 3637, + rank: 68, + unemployment: 15, + oilProduction: 1, + birthRate: 17, + medianAge: 50, + electricity: 45509, + televisions: 2489832, + publicDebt: 22, + internet: 11512560 + }), + new WorldStatsItem( + { + code: `ZMB`, + name: `Zambia`, + continent: `Africa`, + population: 15972000, + gdpTotal: 65170, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 26.301, + latitude: -14.3, + gdpPerPerson: 4080, + rank: 69, + unemployment: 50, + oilProduction: 150, + birthRate: 41, + medianAge: 17, + electricity: 8850, + televisions: 277000, + publicDebt: 28, + internet: 500000 + }), + new WorldStatsItem( + { + code: `GTM`, + name: `Guatemala`, + continent: `North America`, + population: 15460732, + gdpTotal: 131800, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -90.4, + latitude: 15.225, + gdpPerPerson: 8525, + rank: 70, + unemployment: 3, + oilProduction: 13000, + birthRate: 29, + medianAge: 19, + electricity: 7281, + televisions: 1323000, + publicDebt: 21, + internet: 1320000 + }), + new WorldStatsItem( + { + code: `SEN`, + name: `Senegal`, + continent: `Africa`, + population: 14668522, + gdpTotal: 39720, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -14.76, + latitude: 15.47, + gdpPerPerson: 2708, + rank: 71, + unemployment: 48, + oilProduction: 0, + birthRate: 37, + medianAge: 19, + electricity: 2159, + televisions: 361000, + publicDebt: 23, + internet: 820000 + }), + new WorldStatsItem( + { + code: `ZWE`, + name: `Zimbabwe`, + continent: `Africa`, + population: 13805084, + gdpTotal: 28330, + economy: `Emerging`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.115, + latitude: -19.02, + gdpPerPerson: 2052, + rank: 72, + unemployment: 80, + oilProduction: 0, + birthRate: 32, + medianAge: 18, + electricity: 9950, + televisions: 370000, + publicDebt: 218, + internet: 1351000 + }), + new WorldStatsItem( + { + code: `SSD`, + name: `South Sudan`, + continent: `Africa`, + population: 13026129, + gdpTotal: 20880, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.708, + latitude: 7.857, + gdpPerPerson: 1603, + rank: 73, + unemployment: 11, + oilProduction: 5, + birthRate: 8, + medianAge: 43, + electricity: 41476, + televisions: 7716253, + publicDebt: 41, + internet: 4569804 + }), + new WorldStatsItem( + { + code: `GIN`, + name: `Guinea`, + continent: `Africa`, + population: 12413867, + gdpTotal: 16080, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -9.522, + latitude: 10.478, + gdpPerPerson: 1295, + rank: 74, + unemployment: 15, + oilProduction: 4, + birthRate: 5, + medianAge: 49, + electricity: 15826, + televisions: 6262180, + publicDebt: 32, + internet: 6439493 + }), + new WorldStatsItem( + { + code: `TCD`, + name: `Chad`, + continent: `Africa`, + population: 12075985, + gdpTotal: 30590, + economy: `Least developed`, + region: `Northern Africa`, + status: `Country`, + longitude: 18.716, + latitude: 15.46, + gdpPerPerson: 2533, + rank: 75, + unemployment: 15, + oilProduction: 2, + birthRate: 25, + medianAge: 46, + electricity: 57747, + televisions: 8629897, + publicDebt: 33, + internet: 6531943 + }), + new WorldStatsItem( + { + code: `RWA`, + name: `Rwanda`, + continent: `Africa`, + population: 11901484, + gdpTotal: 21970, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.867, + latitude: -1.936, + gdpPerPerson: 1846, + rank: 76, + unemployment: 14, + oilProduction: 0, + birthRate: 23, + medianAge: 51, + electricity: 51710, + televisions: 1363647, + publicDebt: 36, + internet: 2425128 + }), + new WorldStatsItem( + { + code: `BEL`, + name: `Belgium`, + continent: `Europe`, + population: 11491346, + gdpTotal: 508600, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 4.605, + latitude: 50.911, + gdpPerPerson: 44259, + rank: 77, + unemployment: 8, + oilProduction: 9000, + birthRate: 10, + medianAge: 41, + electricity: 80840, + televisions: 4720000, + publicDebt: 85, + internet: 5220000 + }), + new WorldStatsItem( + { + code: `BDI`, + name: `Burundi`, + continent: `Africa`, + population: 11466756, + gdpTotal: 7892, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.913, + latitude: -3.384, + gdpPerPerson: 688, + rank: 78, + unemployment: 12, + oilProduction: 3, + birthRate: 16, + medianAge: 35, + electricity: 43850, + televisions: 2920735, + publicDebt: 20, + internet: 3908915 + }), + new WorldStatsItem( + { + code: `TUN`, + name: `Tunisia`, + continent: `Africa`, + population: 11403800, + gdpTotal: 130800, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 9.516, + latitude: 33.785, + gdpPerPerson: 11470, + rank: 79, + unemployment: 14, + oilProduction: 76900, + birthRate: 16, + medianAge: 29, + electricity: 12850, + televisions: 920000, + publicDebt: 55, + internet: 1722000 + }), + new WorldStatsItem( + { + code: `CUB`, + name: `Cuba`, + continent: `North America`, + population: 11147407, + gdpTotal: 132900, + economy: `Emerging`, + region: `Central America`, + status: `Country`, + longitude: -80.54, + latitude: 22.567, + gdpPerPerson: 11922, + rank: 80, + unemployment: 2, + oilProduction: 58300, + birthRate: 11, + medianAge: 37, + electricity: 16450, + televisions: 2640000, + publicDebt: 37, + internet: 1310000 + }), + new WorldStatsItem( + { + code: `BOL`, + name: `Bolivia`, + continent: `South America`, + population: 11138234, + gdpTotal: 78350, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -63.57, + latitude: -16.3, + gdpPerPerson: 7034, + rank: 81, + unemployment: 8, + oilProduction: 46470, + birthRate: 22, + medianAge: 23, + electricity: 5293, + televisions: 900000, + publicDebt: 46, + internet: 1000000 + }), + new WorldStatsItem( + { + code: `BEN`, + name: `Benin`, + continent: `Africa`, + population: 11038805, + gdpTotal: 24310, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: 2.704, + latitude: 10.535, + gdpPerPerson: 2202, + rank: 82, + unemployment: 2, + oilProduction: 0, + birthRate: 25, + medianAge: 40, + electricity: 13145, + televisions: 7167916, + publicDebt: 34, + internet: 8520122 + }), + new WorldStatsItem( + { + code: `PRT`, + name: `Portugal`, + continent: `Europe`, + population: 10839514, + gdpTotal: 297100, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: -7.757, + latitude: 40.815, + gdpPerPerson: 27409, + rank: 83, + unemployment: 8, + oilProduction: 9500, + birthRate: 10, + medianAge: 39, + electricity: 49040, + televisions: 3310000, + publicDebt: 64, + internet: 3549000 + }), + new WorldStatsItem( + { + code: `GRC`, + name: `Greece`, + continent: `Europe`, + population: 10768477, + gdpTotal: 290500, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 21.871, + latitude: 39.558, + gdpPerPerson: 26977, + rank: 84, + unemployment: 8, + oilProduction: 5687, + birthRate: 10, + medianAge: 42, + electricity: 56130, + televisions: 2540000, + publicDebt: 90, + internet: 2540000 + }), + new WorldStatsItem( + { + code: `DOM`, + name: `Dominican Republic`, + continent: `North America`, + population: 10734247, + gdpTotal: 161900, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -70.17, + latitude: 18.775, + gdpPerPerson: 15083, + rank: 85, + unemployment: 16, + oilProduction: 12, + birthRate: 23, + medianAge: 25, + electricity: 12220, + televisions: 770000, + publicDebt: 41, + internet: 1677000 + }), + new WorldStatsItem( + { + code: `CZE`, + name: `Czechia`, + continent: `Europe`, + population: 10674723, + gdpTotal: 350900, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 15.461, + latitude: 49.807, + gdpPerPerson: 32872, + rank: 86, + unemployment: 7, + oilProduction: 18030, + birthRate: 9, + medianAge: 40, + electricity: 77380, + televisions: 3405834, + publicDebt: 26, + internet: 4400000 + }), + new WorldStatsItem( + { + code: `HTI`, + name: `Haiti`, + continent: `North America`, + population: 10646714, + gdpTotal: 19340, + economy: `Least developed`, + region: `Central America`, + status: `Country`, + longitude: -72.23, + latitude: 19.342, + gdpPerPerson: 1817, + rank: 87, + unemployment: 15, + oilProduction: 2, + birthRate: 9, + medianAge: 52, + electricity: 12871, + televisions: 4329511, + publicDebt: 25, + internet: 4777792 + }), + new WorldStatsItem( + { + code: `JOR`, + name: `Jordan`, + continent: `Asia`, + population: 10248069, + gdpTotal: 86190, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 38.125, + latitude: 32.309, + gdpPerPerson: 8410, + rank: 88, + unemployment: 14, + oilProduction: 0, + birthRate: 20, + medianAge: 24, + electricity: 9074, + televisions: 500000, + publicDebt: 72, + internet: 1127000 + }), + new WorldStatsItem( + { + code: `AZE`, + name: `Azerbaijan`, + continent: `Asia`, + population: 9961396, + gdpTotal: 167900, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 48.401, + latitude: 40.344, + gdpPerPerson: 16855, + rank: 89, + unemployment: 1, + oilProduction: 934700, + birthRate: 18, + medianAge: 28, + electricity: 23800, + televisions: 170000, + publicDebt: 7, + internet: 1036000 + }), + new WorldStatsItem( + { + code: `SWE`, + name: `Sweden`, + continent: `Europe`, + population: 9960487, + gdpTotal: 498100, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 17.594, + latitude: 64.621, + gdpPerPerson: 50008, + rank: 90, + unemployment: 6, + oilProduction: 2350, + birthRate: 10, + medianAge: 41, + electricity: 153200, + televisions: 4600000, + publicDebt: 42, + internet: 7000000 + }), + new WorldStatsItem( + { + code: `HUN`, + name: `Hungary`, + continent: `Europe`, + population: 9850845, + gdpTotal: 267600, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 19.485, + latitude: 47.153, + gdpPerPerson: 27165, + rank: 91, + unemployment: 7, + oilProduction: 42180, + birthRate: 10, + medianAge: 39, + electricity: 33690, + televisions: 4420000, + publicDebt: 67, + internet: 4200000 + }), + new WorldStatsItem( + { + code: `BLR`, + name: `Belarus`, + continent: `Europe`, + population: 9549747, + gdpTotal: 165400, + economy: `Developing`, + region: `Eastern Europe`, + status: `Country`, + longitude: 27.943, + latitude: 53.705, + gdpPerPerson: 17320, + rank: 92, + unemployment: 15, + oilProduction: 5, + birthRate: 7, + medianAge: 33, + electricity: 84070, + televisions: 3348094, + publicDebt: 6, + internet: 3754027 + }), + new WorldStatsItem( + { + code: `HND`, + name: `Honduras`, + continent: `North America`, + population: 9038741, + gdpTotal: 43190, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -86.74, + latitude: 14.889, + gdpPerPerson: 4778, + rank: 93, + unemployment: 28, + oilProduction: 0, + birthRate: 27, + medianAge: 20, + electricity: 5339, + televisions: 570000, + publicDebt: 24, + internet: 344100 + }), + new WorldStatsItem( + { + code: `AUT`, + name: `Austria`, + continent: `Europe`, + population: 8754413, + gdpTotal: 416600, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 14.987, + latitude: 47.624, + gdpPerPerson: 47587, + rank: 94, + unemployment: 4, + oilProduction: 23320, + birthRate: 9, + medianAge: 42, + electricity: 61020, + televisions: 10150000, + publicDebt: 59, + internet: 4277000 + }), + new WorldStatsItem( + { + code: `TJK`, + name: `Tajikistan`, + continent: `Asia`, + population: 8468555, + gdpTotal: 25810, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 71.234, + latitude: 38.86, + gdpPerPerson: 3048, + rank: 95, + unemployment: 11, + oilProduction: 5, + birthRate: 8, + medianAge: 44, + electricity: 56534, + televisions: 6542566, + publicDebt: 44, + internet: 4521889 + }), + new WorldStatsItem( + { + code: `ISR`, + name: `Israel`, + continent: `Asia`, + population: 8299706, + gdpTotal: 297000, + economy: `Developed`, + region: `Middle East`, + status: `Country`, + longitude: 34.977, + latitude: 30.748, + gdpPerPerson: 35784, + rank: 96, + unemployment: 7, + oilProduction: 100, + birthRate: 20, + medianAge: 29, + electricity: 46850, + televisions: 1690000, + publicDebt: 81, + internet: 2000000 + }), + new WorldStatsItem( + { + code: `CHE`, + name: `Switzerland`, + continent: `Europe`, + population: 8236303, + gdpTotal: 496300, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 7.865, + latitude: 46.729, + gdpPerPerson: 60258, + rank: 97, + unemployment: 3, + oilProduction: 3202, + birthRate: 10, + medianAge: 41, + electricity: 56100, + televisions: 3310000, + publicDebt: 44, + internet: 4610000 + }), + new WorldStatsItem( + { + code: `TGO`, + name: `Togo`, + continent: `Africa`, + population: 7965055, + gdpTotal: 11610, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: 1.146, + latitude: 6.799, + gdpPerPerson: 1458, + rank: 98, + unemployment: 3, + oilProduction: 4, + birthRate: 9, + medianAge: 37, + electricity: 28181, + televisions: 2309082, + publicDebt: 41, + internet: 789456 + }), + new WorldStatsItem( + { + code: `SOM`, + name: `Somalia`, + continent: `Africa`, + population: 7531386, + gdpTotal: 4719, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 44.134, + latitude: 3.077, + gdpPerPerson: 627, + rank: 99, + unemployment: 2, + oilProduction: 4, + birthRate: 12, + medianAge: 50, + electricity: 29272, + televisions: 1648650, + publicDebt: 22, + internet: 3227211 + }), + new WorldStatsItem( + { + code: `HKG`, + name: `Hong Kong`, + continent: `Asia`, + population: 7191503, + gdpTotal: 427400, + economy: `Developing`, + region: `Eastern Asia`, + status: `Dependency`, + longitude: 114.08, + latitude: 22.38, + gdpPerPerson: 59431, + rank: 100, + unemployment: 3, + oilProduction: 0, + birthRate: 8, + medianAge: 55, + electricity: 86792, + televisions: 4084025, + publicDebt: 35, + internet: 3907543 + }), + new WorldStatsItem( + { + code: `LAO`, + name: `Laos`, + continent: `Asia`, + population: 7126706, + gdpTotal: 40960, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 102.36, + latitude: 20.171, + gdpPerPerson: 5747, + rank: 101, + unemployment: 8, + oilProduction: 0, + birthRate: 6, + medianAge: 34, + electricity: 7093, + televisions: 4503172, + publicDebt: 19, + internet: 5426041 + }), + new WorldStatsItem( + { + code: `SRB`, + name: `Serbia`, + continent: `Europe`, + population: 7111024, + gdpTotal: 101800, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 20.908, + latitude: 44.206, + gdpPerPerson: 14316, + rank: 102, + unemployment: 5, + oilProduction: 4, + birthRate: 13, + medianAge: 48, + electricity: 30150, + televisions: 1316607, + publicDebt: 17, + internet: 4104775 + }), + new WorldStatsItem( + { + code: `BGR`, + name: `Bulgaria`, + continent: `Europe`, + population: 7101510, + gdpTotal: 143100, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 25.465, + latitude: 42.741, + gdpPerPerson: 20151, + rank: 103, + unemployment: 8, + oilProduction: 3661, + birthRate: 10, + medianAge: 41, + electricity: 45700, + televisions: 3310000, + publicDebt: 11, + internet: 1899000 + }), + new WorldStatsItem( + { + code: `PRY`, + name: `Paraguay`, + continent: `South America`, + population: 6943739, + gdpTotal: 64670, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -58.44, + latitude: -23.42, + gdpPerPerson: 9313, + rank: 104, + unemployment: 6, + oilProduction: 0, + birthRate: 28, + medianAge: 22, + electricity: 70000, + televisions: 990000, + publicDebt: 27, + internet: 280000 + }), + new WorldStatsItem( + { + code: `PNG`, + name: `Papua New Guinea`, + continent: `Oceania`, + population: 6909701, + gdpTotal: 28020, + economy: `Developing`, + region: `Melanesia`, + status: `Country`, + longitude: 143.62, + latitude: -5.836, + gdpPerPerson: 4055, + rank: 105, + unemployment: 2, + oilProduction: 47800, + birthRate: 28, + medianAge: 22, + electricity: 3698, + televisions: 59841, + publicDebt: 40, + internet: 110000 + }), + new WorldStatsItem( + { + code: `LBY`, + name: `Libya`, + continent: `Africa`, + population: 6653210, + gdpTotal: 90890, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 17.23, + latitude: 26.339, + gdpPerPerson: 13661, + rank: 106, + unemployment: 30, + oilProduction: 1712000, + birthRate: 26, + medianAge: 24, + electricity: 21150, + televisions: 730000, + publicDebt: 5, + internet: 260000 + }), + new WorldStatsItem( + { + code: `LBN`, + name: `Lebanon`, + continent: `Asia`, + population: 6229794, + gdpTotal: 85160, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 36.042, + latitude: 34.168, + gdpPerPerson: 13670, + rank: 107, + unemployment: 20, + oilProduction: 0, + birthRate: 18, + medianAge: 29, + electricity: 9183, + televisions: 1180000, + publicDebt: 187, + internet: 950000 + }), + new WorldStatsItem( + { + code: `SLV`, + name: `El Salvador`, + continent: `North America`, + population: 6172011, + gdpTotal: 54790, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -88.91, + latitude: 13.798, + gdpPerPerson: 8877, + rank: 108, + unemployment: 6, + oilProduction: 0, + birthRate: 26, + medianAge: 22, + electricity: 5316, + televisions: 600000, + publicDebt: 37, + internet: 700000 + }), + new WorldStatsItem( + { + code: `SLE`, + name: `Sierra Leone`, + continent: `Africa`, + population: 6163195, + gdpTotal: 10640, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -11.78, + latitude: 8.452, + gdpPerPerson: 1726, + rank: 109, + unemployment: 14, + oilProduction: 4, + birthRate: 6, + medianAge: 37, + electricity: 37412, + televisions: 2727270, + publicDebt: 6, + internet: 223239 + }), + new WorldStatsItem( + { + code: `ARE`, + name: `United Arab Emirates`, + continent: `Asia`, + population: 6072475, + gdpTotal: 667200, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 54.192, + latitude: 23.795, + gdpPerPerson: 109873, + rank: 110, + unemployment: 2, + oilProduction: 2510000, + birthRate: 16, + medianAge: 30, + electricity: 57060, + televisions: 310000, + publicDebt: 21, + internet: 2300000 + }), + new WorldStatsItem( + { + code: `NIC`, + name: `Nicaragua`, + continent: `North America`, + population: 6025951, + gdpTotal: 33550, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -85.09, + latitude: 12.523, + gdpPerPerson: 5568, + rank: 111, + unemployment: 5, + oilProduction: 0, + birthRate: 24, + medianAge: 22, + electricity: 2778, + televisions: 320000, + publicDebt: 63, + internet: 155000 + }), + new WorldStatsItem( + { + code: `ERI`, + name: `Eritrea`, + continent: `Africa`, + population: 5918919, + gdpTotal: 9169, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 39.772, + latitude: 15.191, + gdpPerPerson: 1549, + rank: 112, + unemployment: 9, + oilProduction: 5, + birthRate: 17, + medianAge: 54, + electricity: 67474, + televisions: 2078077, + publicDebt: 41, + internet: 1067843 + }), + new WorldStatsItem( + { + code: `SGP`, + name: `Singapore`, + continent: `Asia`, + population: 5888926, + gdpTotal: 487900, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 103.82, + latitude: 1.356, + gdpPerPerson: 82850, + rank: 113, + unemployment: 2, + oilProduction: 9836, + birthRate: 9, + medianAge: 38, + electricity: 39440, + televisions: 1330000, + publicDebt: 96, + internet: 3105000 + }), + new WorldStatsItem( + { + code: `KGZ`, + name: `Kyrgyzstan`, + continent: `Asia`, + population: 5789122, + gdpTotal: 21010, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 74.738, + latitude: 41.224, + gdpPerPerson: 3629, + rank: 114, + unemployment: 12, + oilProduction: 1, + birthRate: 21, + medianAge: 42, + electricity: 16640, + televisions: 2101152, + publicDebt: 15, + internet: 738896 + }), + new WorldStatsItem( + { + code: `CAF`, + name: `Central African Republic`, + continent: `Africa`, + population: 5625118, + gdpTotal: 3206, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 20.917, + latitude: 6.633, + gdpPerPerson: 570, + rank: 115, + unemployment: 8, + oilProduction: 5, + birthRate: 13, + medianAge: 32, + electricity: 71424, + televisions: 635931, + publicDebt: 29, + internet: 1933873 + }), + new WorldStatsItem( + { + code: `DNK`, + name: `Denmark`, + continent: `Europe`, + population: 5605948, + gdpTotal: 264800, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 9.348, + latitude: 56.13, + gdpPerPerson: 47236, + rank: 116, + unemployment: 3, + oilProduction: 342000, + birthRate: 11, + medianAge: 40, + electricity: 43350, + televisions: 3121000, + publicDebt: 26, + internet: 3500000 + }), + new WorldStatsItem( + { + code: `FIN`, + name: `Finland`, + continent: `Europe`, + population: 5491218, + gdpTotal: 224137, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 25.988, + latitude: 61.841, + gdpPerPerson: 40817, + rank: 117, + unemployment: 7, + oilProduction: 8951, + birthRate: 10, + medianAge: 42, + electricity: 73470, + televisions: 3200000, + publicDebt: 36, + internet: 3600000 + }), + new WorldStatsItem( + { + code: `SVK`, + name: `Slovakia`, + continent: `Europe`, + population: 5445829, + gdpTotal: 168800, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 18.877, + latitude: 48.702, + gdpPerPerson: 30996, + rank: 118, + unemployment: 8, + oilProduction: 12840, + birthRate: 11, + medianAge: 37, + electricity: 29890, + televisions: 2620000, + publicDebt: 36, + internet: 2350000 + }), + new WorldStatsItem( + { + code: `TKM`, + name: `Turkmenistan`, + continent: `Asia`, + population: 5351277, + gdpTotal: 94720, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 59.562, + latitude: 38.975, + gdpPerPerson: 17700, + rank: 119, + unemployment: 11, + oilProduction: 4, + birthRate: 11, + medianAge: 43, + electricity: 91281, + televisions: 2935468, + publicDebt: 17, + internet: 3203210 + }), + new WorldStatsItem( + { + code: `NOR`, + name: `Norway`, + continent: `Europe`, + population: 5320045, + gdpTotal: 364700, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 9.66, + latitude: 60.712, + gdpPerPerson: 68552, + rank: 120, + unemployment: 3, + oilProduction: 2560000, + birthRate: 11, + medianAge: 39, + electricity: 135800, + televisions: 2030000, + publicDebt: 83, + internet: 3800000 + }), + new WorldStatsItem( + { + code: `IRL`, + name: `Ireland`, + continent: `Europe`, + population: 5011102, + gdpTotal: 322000, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: -8.209, + latitude: 53.42, + gdpPerPerson: 64257, + rank: 121, + unemployment: 5, + oilProduction: 0, + birthRate: 14, + medianAge: 35, + electricity: 24130, + televisions: 1820000, + publicDebt: 25, + internet: 1708000 + }), + new WorldStatsItem( + { + code: `COG`, + name: `Congo`, + continent: `Africa`, + population: 4954674, + gdpTotal: 30270, + economy: `Developing`, + region: `Middle Africa`, + status: `Country`, + longitude: 16.264, + latitude: -0.07, + gdpPerPerson: 6109, + rank: 122, + unemployment: 13, + oilProduction: 4, + birthRate: 11, + medianAge: 52, + electricity: 83556, + televisions: 1560800, + publicDebt: 6, + internet: 2650237 + }), + new WorldStatsItem( + { + code: `CRI`, + name: `Costa Rica`, + continent: `North America`, + population: 4930258, + gdpTotal: 79260, + economy: `Emerging`, + region: `Central America`, + status: `Country`, + longitude: -83.91, + latitude: 9.92, + gdpPerPerson: 16076, + rank: 123, + unemployment: 5, + oilProduction: 0, + birthRate: 18, + medianAge: 27, + electricity: 8349, + televisions: 525000, + publicDebt: 47, + internet: 1500000 + }), + new WorldStatsItem( + { + code: `GEO`, + name: `Georgia`, + continent: `Asia`, + population: 4926330, + gdpTotal: 37270, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 43.257, + latitude: 42.162, + gdpPerPerson: 7565, + rank: 124, + unemployment: 15, + oilProduction: 5, + birthRate: 10, + medianAge: 43, + electricity: 44936, + televisions: 2728128, + publicDebt: 29, + internet: 3844448 + }), + new WorldStatsItem( + { + code: `LBR`, + name: `Liberia`, + continent: `Africa`, + population: 4689021, + gdpTotal: 3881, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -9.454, + latitude: 6.445, + gdpPerPerson: 828, + rank: 125, + unemployment: 4, + oilProduction: 0, + birthRate: 8, + medianAge: 35, + electricity: 89626, + televisions: 3065112, + publicDebt: 38, + internet: 1475304 + }), + new WorldStatsItem( + { + code: `PSE`, + name: `Palestine`, + continent: `Asia`, + population: 4543126, + gdpTotal: 21221, + economy: `Developing`, + region: `Middle East`, + status: `Disputed`, + longitude: 35.347, + latitude: 32.031, + gdpPerPerson: 4671, + rank: 126, + unemployment: 9, + oilProduction: 1, + birthRate: 10, + medianAge: 48, + electricity: 45973, + televisions: 2774033, + publicDebt: 16, + internet: 1718915 + }), + new WorldStatsItem( + { + code: `NZL`, + name: `New Zealand`, + continent: `Oceania`, + population: 4510327, + gdpTotal: 174800, + economy: `Developed`, + region: `Australia`, + status: `Country`, + longitude: 169.42, + latitude: -44.86, + gdpPerPerson: 38756, + rank: 127, + unemployment: 4, + oilProduction: 25880, + birthRate: 14, + medianAge: 36, + electricity: 42060, + televisions: 1926000, + publicDebt: 21, + internet: 3360000 + }), + new WorldStatsItem( + { + code: `HRV`, + name: `Croatia`, + continent: `Europe`, + population: 4292095, + gdpTotal: 94240, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 16.847, + latitude: 45.674, + gdpPerPerson: 21957, + rank: 128, + unemployment: 12, + oilProduction: 17100, + birthRate: 10, + medianAge: 41, + electricity: 11990, + televisions: 1220000, + publicDebt: 48, + internet: 1995000 + }), + new WorldStatsItem( + { + code: `BIH`, + name: `Bosnia`, + continent: `Europe`, + population: 3856181, + gdpTotal: 42530, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 17.66, + latitude: 43.918, + gdpPerPerson: 11029, + rank: 129, + unemployment: 46, + oilProduction: 0, + birthRate: 9, + medianAge: 39, + electricity: 12220, + televisions: 0, + publicDebt: 34, + internet: 1055000 + }), + new WorldStatsItem( + { + code: `MRT`, + name: `Mauritania`, + continent: `Africa`, + population: 3758571, + gdpTotal: 16710, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -8.89, + latitude: 20.387, + gdpPerPerson: 4446, + rank: 130, + unemployment: 9, + oilProduction: 5, + birthRate: 25, + medianAge: 50, + electricity: 15176, + televisions: 2558125, + publicDebt: 29, + internet: 2098221 + }), + new WorldStatsItem( + { + code: `PAN`, + name: `Panama`, + continent: `North America`, + population: 3753142, + gdpTotal: 93120, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -81.17, + latitude: 8.457, + gdpPerPerson: 24811, + rank: 131, + unemployment: 6, + oilProduction: 0, + birthRate: 21, + medianAge: 27, + electricity: 5661, + televisions: 510000, + publicDebt: 53, + internet: 525200 + }), + new WorldStatsItem( + { + code: `SOL`, + name: `Somaliland`, + continent: `Africa`, + population: 3500000, + gdpTotal: 12250, + economy: `Developing`, + region: `Eastern Africa`, + status: `Indeterminate`, + longitude: 45.798, + latitude: 9.748, + gdpPerPerson: 3500, + rank: 132, + unemployment: 1, + oilProduction: 4, + birthRate: 13, + medianAge: 43, + electricity: 73247, + televisions: 2235408, + publicDebt: 21, + internet: 1300238 + }), + new WorldStatsItem( + { + code: `MDA`, + name: `Moldova`, + continent: `Europe`, + population: 3474121, + gdpTotal: 18540, + economy: `Developing`, + region: `Eastern Europe`, + status: `Country`, + longitude: 28.552, + latitude: 47.515, + gdpPerPerson: 5337, + rank: 133, + unemployment: 2, + oilProduction: 0, + birthRate: 11, + medianAge: 34, + electricity: 3881, + televisions: 1260000, + publicDebt: 23, + internet: 700000 + }), + new WorldStatsItem( + { + code: `OMN`, + name: `Oman`, + continent: `Asia`, + population: 3424386, + gdpTotal: 173100, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 57.563, + latitude: 22.014, + gdpPerPerson: 50549, + rank: 134, + unemployment: 15, + oilProduction: 710800, + birthRate: 35, + medianAge: 19, + electricity: 11890, + televisions: 1600000, + publicDebt: 4, + internet: 340000 + }), + new WorldStatsItem( + { + code: `URY`, + name: `Uruguay`, + continent: `South America`, + population: 3360148, + gdpTotal: 73250, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -55.78, + latitude: -32.51, + gdpPerPerson: 21800, + rank: 135, + unemployment: 9, + oilProduction: 27830, + birthRate: 14, + medianAge: 33, + electricity: 9200, + televisions: 782000, + publicDebt: 65, + internet: 968000 + }), + new WorldStatsItem( + { + code: `PRI`, + name: `Puerto Rico`, + continent: `North America`, + population: 3351827, + gdpTotal: 131000, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -66.61, + latitude: 18.235, + gdpPerPerson: 39083, + rank: 136, + unemployment: 5, + oilProduction: 3, + birthRate: 11, + medianAge: 32, + electricity: 19677, + televisions: 1917997, + publicDebt: 25, + internet: 608062 + }), + new WorldStatsItem( + { + code: `MNG`, + name: `Mongolia`, + continent: `Asia`, + population: 3068243, + gdpTotal: 37000, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 103.82, + latitude: 46.856, + gdpPerPerson: 12059, + rank: 137, + unemployment: 4, + oilProduction: 1, + birthRate: 7, + medianAge: 35, + electricity: 3875, + televisions: 1726758, + publicDebt: 17, + internet: 562546 + }), + new WorldStatsItem( + { + code: `ALB`, + name: `Albania`, + continent: `Europe`, + population: 3047987, + gdpTotal: 33900, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 19.964, + latitude: 40.759, + gdpPerPerson: 11122, + rank: 138, + unemployment: 13, + oilProduction: 7006, + birthRate: 15, + medianAge: 30, + electricity: 5385, + televisions: 700000, + publicDebt: 51, + internet: 471200 + }), + new WorldStatsItem( + { + code: `ARM`, + name: `Armenia`, + continent: `Asia`, + population: 3045191, + gdpTotal: 26300, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 44.646, + latitude: 40.618, + gdpPerPerson: 8637, + rank: 139, + unemployment: 4, + oilProduction: 4, + birthRate: 14, + medianAge: 39, + electricity: 71042, + televisions: 2390201, + publicDebt: 9, + internet: 488333 + }), + new WorldStatsItem( + { + code: `JAM`, + name: `Jamaica`, + continent: `North America`, + population: 2990561, + gdpTotal: 25390, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -77.27, + latitude: 18.119, + gdpPerPerson: 8490, + rank: 140, + unemployment: 10, + oilProduction: 0, + birthRate: 20, + medianAge: 23, + electricity: 6985, + televisions: 460000, + publicDebt: 127, + internet: 1500000 + }), + new WorldStatsItem( + { + code: `KWT`, + name: `Kuwait`, + continent: `Asia`, + population: 2875422, + gdpTotal: 301100, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 47.487, + latitude: 29.315, + gdpPerPerson: 104715, + rank: 141, + unemployment: 2, + oilProduction: 2440000, + birthRate: 22, + medianAge: 26, + electricity: 41110, + televisions: 875000, + publicDebt: 10, + internet: 900000 + }), + new WorldStatsItem( + { + code: `LTU`, + name: `Lithuania`, + continent: `Europe`, + population: 2823859, + gdpTotal: 85620, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 23.838, + latitude: 55.152, + gdpPerPerson: 30320, + rank: 142, + unemployment: 4, + oilProduction: 13160, + birthRate: 9, + medianAge: 39, + electricity: 13480, + televisions: 1700000, + publicDebt: 17, + internet: 1330000 + }), + new WorldStatsItem( + { + code: `NAM`, + name: `Namibia`, + continent: `Africa`, + population: 2484780, + gdpTotal: 25990, + economy: `Developing`, + region: `Southern Africa`, + status: `Country`, + longitude: 16.944, + latitude: -20.52, + gdpPerPerson: 10460, + rank: 143, + unemployment: 5, + oilProduction: 0, + birthRate: 23, + medianAge: 21, + electricity: 1688, + televisions: 60000, + publicDebt: 22, + internet: 101000 + }), + new WorldStatsItem( + { + code: `QAT`, + name: `Qatar`, + continent: `Asia`, + population: 2314307, + gdpTotal: 334500, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 51.182, + latitude: 25.359, + gdpPerPerson: 144536, + rank: 144, + unemployment: 1, + oilProduction: 797500, + birthRate: 16, + medianAge: 31, + electricity: 13540, + televisions: 230000, + publicDebt: 11, + internet: 351000 + }), + new WorldStatsItem( + { + code: `BWA`, + name: `Botswana`, + continent: `Africa`, + population: 2214858, + gdpTotal: 35900, + economy: `Developing`, + region: `Southern Africa`, + status: `Country`, + longitude: 24.671, + latitude: -22.32, + gdpPerPerson: 16209, + rank: 145, + unemployment: 8, + oilProduction: 0, + birthRate: 23, + medianAge: 21, + electricity: 912, + televisions: 31000, + publicDebt: 5, + internet: 80000 + }), + new WorldStatsItem( + { + code: `MKD`, + name: `North Macedonia`, + continent: `Europe`, + population: 2103721, + gdpTotal: 29520, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 21.727, + latitude: 41.604, + gdpPerPerson: 14032, + rank: 146, + unemployment: 35, + oilProduction: 0, + birthRate: 12, + medianAge: 35, + electricity: 6051, + televisions: 510000, + publicDebt: 31, + internet: 685000 + }), + new WorldStatsItem( + { + code: `GMB`, + name: `Gambia`, + continent: `Africa`, + population: 2051363, + gdpTotal: 3387, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -15.32, + latitude: 13.438, + gdpPerPerson: 1651, + rank: 147, + unemployment: 7, + oilProduction: 1, + birthRate: 11, + medianAge: 37, + electricity: 9769, + televisions: 1486289, + publicDebt: 30, + internet: 187890 + }), + new WorldStatsItem( + { + code: `SVN`, + name: `Slovenia`, + continent: `Europe`, + population: 1972126, + gdpTotal: 68350, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 14.947, + latitude: 46.146, + gdpPerPerson: 34658, + rank: 148, + unemployment: 8, + oilProduction: 5, + birthRate: 9, + medianAge: 41, + electricity: 14900, + televisions: 710000, + publicDebt: 24, + internet: 1300000 + }), + new WorldStatsItem( + { + code: `LSO`, + name: `Lesotho`, + continent: `Africa`, + population: 1958042, + gdpTotal: 6019, + economy: `Least developed`, + region: `Southern Africa`, + status: `Country`, + longitude: 28.221, + latitude: -29.61, + gdpPerPerson: 3074, + rank: 149, + unemployment: 12, + oilProduction: 2, + birthRate: 8, + medianAge: 32, + electricity: 20229, + televisions: 1457517, + publicDebt: 14, + internet: 1375222 + }), + new WorldStatsItem( + { + code: `LVA`, + name: `Latvia`, + continent: `Europe`, + population: 1944643, + gdpTotal: 50650, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 26.505, + latitude: 56.755, + gdpPerPerson: 26046, + rank: 150, + unemployment: 6, + oilProduction: 0, + birthRate: 10, + medianAge: 40, + electricity: 4778, + televisions: 1220000, + publicDebt: 7, + internet: 1770000 + }), + new WorldStatsItem( + { + code: `RKS`, + name: `Kosovo`, + continent: `Europe`, + population: 1895250, + gdpTotal: 18490, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 20.891, + latitude: 42.557, + gdpPerPerson: 9756, + rank: 151, + unemployment: 12, + oilProduction: 0, + birthRate: 8, + medianAge: 55, + electricity: 14878, + televisions: 1287863, + publicDebt: 20, + internet: 1422193 + }), + new WorldStatsItem( + { + code: `GNB`, + name: `Guinea-Bissau`, + continent: `Africa`, + population: 1792338, + gdpTotal: 2851, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -14.59, + latitude: 11.942, + gdpPerPerson: 1591, + rank: 152, + unemployment: 5, + oilProduction: 5, + birthRate: 5, + medianAge: 55, + electricity: 74684, + televisions: 1427462, + publicDebt: 8, + internet: 365000 + }), + new WorldStatsItem( + { + code: `GAB`, + name: `Gabon`, + continent: `Africa`, + population: 1772255, + gdpTotal: 35980, + economy: `Developing`, + region: `Middle Africa`, + status: `Country`, + longitude: 11.592, + latitude: -0.807, + gdpPerPerson: 20302, + rank: 153, + unemployment: 21, + oilProduction: 240000, + birthRate: 36, + medianAge: 19, + electricity: 1520, + televisions: 63000, + publicDebt: 53, + internet: 145000 + }), + new WorldStatsItem( + { + code: `SWZ`, + name: `Eswatini`, + continent: `Africa`, + population: 1467152, + gdpTotal: 11060, + economy: `Developing`, + region: `Southern Africa`, + status: `Country`, + longitude: 31.45, + latitude: -26.52, + gdpPerPerson: 7538, + rank: 154, + unemployment: 6, + oilProduction: 3, + birthRate: 17, + medianAge: 39, + electricity: 72804, + televisions: 229393, + publicDebt: 5, + internet: 427760 + }), + new WorldStatsItem( + { + code: `BHR`, + name: `Bahrain`, + continent: `Asia`, + population: 1410942, + gdpTotal: 66370, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 50.535, + latitude: 26.027, + gdpPerPerson: 47039, + rank: 155, + unemployment: 15, + oilProduction: 184300, + birthRate: 17, + medianAge: 30, + electricity: 8187, + televisions: 275000, + publicDebt: 31, + internet: 250000 + }), + new WorldStatsItem( + { + code: `MUS`, + name: `Mauritius`, + continent: `Africa`, + population: 1356388, + gdpTotal: 25850, + economy: `Developing`, + region: `Eastern Africa`, + status: `Country`, + longitude: 57.555, + latitude: -20.25, + gdpPerPerson: 19058, + rank: 156, + unemployment: 9, + oilProduction: 0, + birthRate: 15, + medianAge: 32, + electricity: 2350, + televisions: 258000, + publicDebt: 63, + internet: 340000 + }), + new WorldStatsItem( + { + code: `TLS`, + name: `Timor-Leste`, + continent: `Asia`, + population: 1291358, + gdpTotal: 4975, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 125.66, + latitude: -8.826, + gdpPerPerson: 3853, + rank: 157, + unemployment: 8, + oilProduction: 5, + birthRate: 18, + medianAge: 48, + electricity: 84061, + televisions: 416260, + publicDebt: 25, + internet: 267437 + }), + new WorldStatsItem( + { + code: `EST`, + name: `Estonia`, + continent: `Europe`, + population: 1251581, + gdpTotal: 38700, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 25.441, + latitude: 58.845, + gdpPerPerson: 30921, + rank: 158, + unemployment: 5, + oilProduction: 6930, + birthRate: 10, + medianAge: 40, + electricity: 9599, + televisions: 605000, + publicDebt: 3, + internet: 780000 + }), + new WorldStatsItem( + { + code: `CYP`, + name: `Cyprus`, + continent: `Asia`, + population: 1221549, + gdpTotal: 29260, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 33.176, + latitude: 34.876, + gdpPerPerson: 23953, + rank: 159, + unemployment: 4, + oilProduction: 0, + birthRate: 13, + medianAge: 35, + electricity: 4618, + televisions: 0, + publicDebt: 60, + internet: 380000 + }), + new WorldStatsItem( + { + code: `TTO`, + name: `Trinidad and Tobago`, + continent: `North America`, + population: 1218208, + gdpTotal: 43570, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.21, + latitude: 10.352, + gdpPerPerson: 35766, + rank: 160, + unemployment: 4, + oilProduction: 5, + birthRate: 15, + medianAge: 47, + electricity: 58959, + televisions: 359389, + publicDebt: 29, + internet: 152416 + }), + new WorldStatsItem( + { + code: `FJI`, + name: `Fiji`, + continent: `Oceania`, + population: 920938, + gdpTotal: 8374, + economy: `Developing`, + region: `Melanesia`, + status: `Country`, + longitude: 177.85, + latitude: -17.75, + gdpPerPerson: 9093, + rank: 161, + unemployment: 11, + oilProduction: 5, + birthRate: 5, + medianAge: 41, + electricity: 88931, + televisions: 517580, + publicDebt: 17, + internet: 539400 + }), + new WorldStatsItem( + { + code: `DJI`, + name: `Djibouti`, + continent: `Africa`, + population: 865267, + gdpTotal: 3345, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 42.587, + latitude: 11.825, + gdpPerPerson: 3866, + rank: 162, + unemployment: 5, + oilProduction: 3, + birthRate: 17, + medianAge: 44, + electricity: 91593, + televisions: 209004, + publicDebt: 43, + internet: 476114 + }), + new WorldStatsItem( + { + code: `COM`, + name: `Comoros`, + continent: `Africa`, + population: 808080, + gdpTotal: 1259, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 43.877, + latitude: -11.86, + gdpPerPerson: 1558, + rank: 163, + unemployment: 11, + oilProduction: 3, + birthRate: 14, + medianAge: 46, + electricity: 6146, + televisions: 495921, + publicDebt: 10, + internet: 459977 + }), + new WorldStatsItem( + { + code: `GNQ`, + name: `Equatorial Guinea`, + continent: `Africa`, + population: 778358, + gdpTotal: 31770, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 10.521, + latitude: 1.763, + gdpPerPerson: 40817, + rank: 164, + unemployment: 30, + oilProduction: 385500, + birthRate: 37, + medianAge: 19, + electricity: 28, + televisions: 4000, + publicDebt: 2, + internet: 8000 + }), + new WorldStatsItem( + { + code: `BTN`, + name: `Bhutan`, + continent: `Asia`, + population: 758288, + gdpTotal: 6432, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 90.411, + latitude: 27.506, + gdpPerPerson: 8482, + rank: 165, + unemployment: 3, + oilProduction: 0, + birthRate: 21, + medianAge: 24, + electricity: 2000, + televisions: 11000, + publicDebt: 81, + internet: 40000 + }), + new WorldStatsItem( + { + code: `GUY`, + name: `Guyana`, + continent: `South America`, + population: 737718, + gdpTotal: 6093, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -58.96, + latitude: 5.607, + gdpPerPerson: 8259, + rank: 166, + unemployment: 2, + oilProduction: 3, + birthRate: 9, + medianAge: 37, + electricity: 84988, + televisions: 149848, + publicDebt: 12, + internet: 134377 + }), + new WorldStatsItem( + { + code: `SLB`, + name: `Solomon Islands`, + continent: `Oceania`, + population: 647581, + gdpTotal: 1198, + economy: `Least developed`, + region: `Melanesia`, + status: `Country`, + longitude: 161.3, + latitude: -9.221, + gdpPerPerson: 1850, + rank: 167, + unemployment: 4, + oilProduction: 3, + birthRate: 18, + medianAge: 30, + electricity: 3432, + televisions: 177555, + publicDebt: 43, + internet: 478635 + }), + new WorldStatsItem( + { + code: `MNE`, + name: `Montenegro`, + continent: `Europe`, + population: 642550, + gdpTotal: 10610, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 19.191, + latitude: 42.814, + gdpPerPerson: 16512, + rank: 168, + unemployment: 10, + oilProduction: 2, + birthRate: 24, + medianAge: 46, + electricity: 24709, + televisions: 126756, + publicDebt: 29, + internet: 336628 + }), + new WorldStatsItem( + { + code: `ESH`, + name: `Western Sahara`, + continent: `Africa`, + population: 603253, + gdpTotal: 907, + economy: `Least developed`, + region: `Northern Africa`, + status: `Dependency`, + longitude: -12.89, + latitude: 24.231, + gdpPerPerson: 1504, + rank: 169, + unemployment: 6, + oilProduction: 1, + birthRate: 23, + medianAge: 30, + electricity: 11081, + televisions: 237857, + publicDebt: 30, + internet: 306624 + }), + new WorldStatsItem( + { + code: `MAC`, + name: `Macao`, + continent: `Asia`, + population: 601969, + gdpTotal: 63220, + economy: `Developing`, + region: `Eastern Asia`, + status: `Dependency`, + longitude: 113.51, + latitude: 22.221, + gdpPerPerson: 105022, + rank: 170, + unemployment: 10, + oilProduction: 2, + birthRate: 10, + medianAge: 47, + electricity: 77896, + televisions: 163859, + publicDebt: 18, + internet: 62728 + }), + new WorldStatsItem( + { + code: `LUX`, + name: `Luxembourg`, + continent: `Europe`, + population: 594130, + gdpTotal: 58740, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 6.109, + latitude: 49.806, + gdpPerPerson: 98867, + rank: 171, + unemployment: 4, + oilProduction: 0, + birthRate: 12, + medianAge: 39, + electricity: 3156, + televisions: 285000, + publicDebt: 6, + internet: 345000 + }), + new WorldStatsItem( + { + code: `SUR`, + name: `Suriname`, + continent: `South America`, + population: 591919, + gdpTotal: 8547, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -56.02, + latitude: 4.506, + gdpPerPerson: 14439, + rank: 172, + unemployment: 5, + oilProduction: 1, + birthRate: 16, + medianAge: 44, + electricity: 82658, + televisions: 69068, + publicDebt: 31, + internet: 367104 + }), + new WorldStatsItem( + { + code: `CPV`, + name: `Cabo Verde`, + continent: `Africa`, + population: 560899, + gdpTotal: 3583, + economy: `Developing`, + region: `Western Africa`, + status: `Country`, + longitude: -25.16, + latitude: 17.102, + gdpPerPerson: 6388, + rank: 173, + unemployment: 12, + oilProduction: 1, + birthRate: 12, + medianAge: 54, + electricity: 60647, + televisions: 101289, + publicDebt: 34, + internet: 40105 + }), + new WorldStatsItem( + { + code: `BRN`, + name: `Brunei`, + continent: `Asia`, + population: 443593, + gdpTotal: 33730, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 114.69, + latitude: 4.523, + gdpPerPerson: 76038, + rank: 174, + unemployment: 4, + oilProduction: 0, + birthRate: 17, + medianAge: 32, + electricity: 50701, + televisions: 235042, + publicDebt: 16, + internet: 188751 + }), + new WorldStatsItem( + { + code: `MLT`, + name: `Malta`, + continent: `Europe`, + population: 416338, + gdpTotal: 16320, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 14.373, + latitude: 35.948, + gdpPerPerson: 39199, + rank: 175, + unemployment: 7, + oilProduction: 4, + birthRate: 6, + medianAge: 52, + electricity: 77444, + televisions: 282390, + publicDebt: 41, + internet: 317612 + }), + new WorldStatsItem( + { + code: `MDV`, + name: `Maldives`, + continent: `Asia`, + population: 392709, + gdpTotal: 5407, + economy: `Developing`, + region: `Southern Asia`, + status: `Country`, + longitude: 73.455, + latitude: 3.739, + gdpPerPerson: 13768, + rank: 176, + unemployment: 13, + oilProduction: 4, + birthRate: 10, + medianAge: 43, + electricity: 26004, + televisions: 156412, + publicDebt: 28, + internet: 45331 + }), + new WorldStatsItem( + { + code: `BLZ`, + name: `Belize`, + continent: `North America`, + population: 360346, + gdpTotal: 3088, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -88.51, + latitude: 17.185, + gdpPerPerson: 8570, + rank: 177, + unemployment: 4, + oilProduction: 2, + birthRate: 7, + medianAge: 36, + electricity: 57433, + televisions: 127478, + publicDebt: 36, + internet: 223855 + }), + new WorldStatsItem( + { + code: `ISL`, + name: `Iceland`, + continent: `Europe`, + population: 339747, + gdpTotal: 16150, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: -19.01, + latitude: 64.966, + gdpPerPerson: 47535, + rank: 178, + unemployment: 1, + oilProduction: 0, + birthRate: 14, + medianAge: 35, + electricity: 8533, + televisions: 98000, + publicDebt: 28, + internet: 202300 + }), + new WorldStatsItem( + { + code: `BHS`, + name: `Bahamas`, + continent: `North America`, + population: 329988, + gdpTotal: 9066, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -78.01, + latitude: 24.761, + gdpPerPerson: 27474, + rank: 179, + unemployment: 5, + oilProduction: 2, + birthRate: 17, + medianAge: 47, + electricity: 38395, + televisions: 203588, + publicDebt: 6, + internet: 91807 + }), + new WorldStatsItem( + { + code: `FRG`, + name: `French Guiana`, + continent: `South America`, + population: 296161, + gdpTotal: 1299000, + economy: `Developed`, + region: `South America`, + status: `Dependency`, + longitude: -53.13, + latitude: 3.893, + gdpPerPerson: 4386128, + rank: 180, + unemployment: 3, + oilProduction: 0, + birthRate: 15, + medianAge: 55, + electricity: 73845, + televisions: 147489, + publicDebt: 35, + internet: 209593 + }), + new WorldStatsItem( + { + code: `BRB`, + name: `Barbados`, + continent: `North America`, + population: 292336, + gdpTotal: 4804, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -59.53, + latitude: 13.19, + gdpPerPerson: 16433, + rank: 181, + unemployment: 8, + oilProduction: 3, + birthRate: 21, + medianAge: 51, + electricity: 28728, + televisions: 173392, + publicDebt: 12, + internet: 73593 + }), + new WorldStatsItem( + { + code: `PYF`, + name: `Fr. Polynesia`, + continent: `Oceania`, + population: 287881, + gdpTotal: 5490, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -143.9, + latitude: -14.82, + gdpPerPerson: 19070, + rank: 182, + unemployment: 1, + oilProduction: 4, + birthRate: 6, + medianAge: 45, + electricity: 46206, + televisions: 43757, + publicDebt: 12, + internet: 172560 + }), + new WorldStatsItem( + { + code: `VUT`, + name: `Vanuatu`, + continent: `Oceania`, + population: 282814, + gdpTotal: 723, + economy: `Least developed`, + region: `Melanesia`, + status: `Country`, + longitude: 168.21, + latitude: -16.97, + gdpPerPerson: 2556, + rank: 183, + unemployment: 11, + oilProduction: 4, + birthRate: 17, + medianAge: 39, + electricity: 50581, + televisions: 187584, + publicDebt: 42, + internet: 223352 + }), + new WorldStatsItem( + { + code: `NCL`, + name: `New Caledonia`, + continent: `Oceania`, + population: 279070, + gdpTotal: 10770, + economy: `Developing`, + region: `Melanesia`, + status: `Dependency`, + longitude: 165.26, + latitude: -21.09, + gdpPerPerson: 38592, + rank: 184, + unemployment: 10, + oilProduction: 3, + birthRate: 6, + medianAge: 49, + electricity: 18361, + televisions: 79923, + publicDebt: 45, + internet: 149003 + }), + new WorldStatsItem( + { + code: `NCP`, + name: `Northern Cyprus`, + continent: `Asia`, + population: 265100, + gdpTotal: 3600, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 33.714, + latitude: 35.257, + gdpPerPerson: 13580, + rank: 185, + unemployment: 4, + oilProduction: 5, + birthRate: 25, + medianAge: 51, + electricity: 84000, + televisions: 135551, + publicDebt: 30, + internet: 167480 + }), + new WorldStatsItem( + { + code: `STP`, + name: `Sao Tome and Principe`, + continent: `Africa`, + population: 201025, + gdpTotal: 694, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 6.598, + latitude: 0.248, + gdpPerPerson: 3452, + rank: 186, + unemployment: 1, + oilProduction: 3, + birthRate: 24, + medianAge: 30, + electricity: 6691, + televisions: 65480, + publicDebt: 12, + internet: 121162 + }), + new WorldStatsItem( + { + code: `WSM`, + name: `Samoa`, + continent: `Oceania`, + population: 200108, + gdpTotal: 1046, + economy: `Least developed`, + region: `Polynesia`, + status: `Country`, + longitude: -172.1, + latitude: -13.75, + gdpPerPerson: 5227, + rank: 187, + unemployment: 3, + oilProduction: 2, + birthRate: 7, + medianAge: 46, + electricity: 50118, + televisions: 54930, + publicDebt: 42, + internet: 84739 + }), + new WorldStatsItem( + { + code: `GUM`, + name: `Guam`, + continent: `Oceania`, + population: 167358, + gdpTotal: 4882, + economy: `Developing`, + region: `Micronesia`, + status: `Dependency`, + longitude: 144.79, + latitude: 13.44, + gdpPerPerson: 29171, + rank: 188, + unemployment: 15, + oilProduction: 2, + birthRate: 24, + medianAge: 42, + electricity: 64229, + televisions: 43567, + publicDebt: 37, + internet: 121131 + }), + new WorldStatsItem( + { + code: `LCA`, + name: `Saint Lucia`, + continent: `North America`, + population: 164994, + gdpTotal: 2083, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -60.98, + latitude: 13.905, + gdpPerPerson: 12625, + rank: 189, + unemployment: 3, + oilProduction: 2, + birthRate: 14, + medianAge: 32, + electricity: 75473, + televisions: 87743, + publicDebt: 7, + internet: 64498 + }), + new WorldStatsItem( + { + code: `CUW`, + name: `Curacao`, + continent: `North America`, + population: 149648, + gdpTotal: 3128, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -68.95, + latitude: 12.213, + gdpPerPerson: 20902, + rank: 190, + unemployment: 6, + oilProduction: 1, + birthRate: 7, + medianAge: 35, + electricity: 74665, + televisions: 89830, + publicDebt: 36, + internet: 55905 + }), + new WorldStatsItem( + { + code: `ABW`, + name: `Aruba`, + continent: `North America`, + population: 115120, + gdpTotal: 2516, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -69.98, + latitude: 12.519, + gdpPerPerson: 21855, + rank: 191, + unemployment: 7, + oilProduction: 2356, + birthRate: 13, + medianAge: 38, + electricity: 770, + televisions: 20000, + publicDebt: 46, + internet: 24000 + }), + new WorldStatsItem( + { + code: `GRD`, + name: `Grenada`, + continent: `North America`, + population: 111724, + gdpTotal: 1511, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.69, + latitude: 12.123, + gdpPerPerson: 13524, + rank: 192, + unemployment: 10, + oilProduction: 0, + birthRate: 10, + medianAge: 50, + electricity: 4992, + televisions: 58674, + publicDebt: 42, + internet: 33132 + }), + new WorldStatsItem( + { + code: `KIR`, + name: `Kiribati`, + continent: `Oceania`, + population: 108145, + gdpTotal: 211, + economy: `Least developed`, + region: `Micronesia`, + status: `Country`, + longitude: -157.333, + latitude: 1.884, + gdpPerPerson: 1951, + rank: 193, + unemployment: 13, + oilProduction: 4, + birthRate: 9, + medianAge: 52, + electricity: 37081, + televisions: 52395, + publicDebt: 40, + internet: 36620 + }), + new WorldStatsItem( + { + code: `VIR`, + name: `U.S. Virgin Island`, + continent: `North America`, + population: 107268, + gdpTotal: 3792, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -64.77, + latitude: 17.77, + gdpPerPerson: 35351, + rank: 194, + unemployment: 11, + oilProduction: 2, + birthRate: 12, + medianAge: 38, + electricity: 13387, + televisions: 77187, + publicDebt: 43, + internet: 40836 + }), + new WorldStatsItem( + { + code: `TON`, + name: `Tonga`, + continent: `Oceania`, + population: 106479, + gdpTotal: 557, + economy: `Developing`, + region: `Polynesia`, + status: `Country`, + longitude: -173.9, + latitude: -18.62, + gdpPerPerson: 5231, + rank: 195, + unemployment: 4, + oilProduction: 4, + birthRate: 5, + medianAge: 33, + electricity: 88735, + televisions: 30257, + publicDebt: 25, + internet: 71756 + }), + new WorldStatsItem( + { + code: `FSM`, + name: `Micronesia`, + continent: `Oceania`, + population: 104196, + gdpTotal: 314, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 150.52, + latitude: 7.435, + gdpPerPerson: 3014, + rank: 196, + unemployment: 9, + oilProduction: 5, + birthRate: 5, + medianAge: 38, + electricity: 39068, + televisions: 45396, + publicDebt: 40, + internet: 29169 + }), + new WorldStatsItem( + { + code: `VCT`, + name: `St. Vin. and Gren.`, + continent: `North America`, + population: 102089, + gdpTotal: 1241, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.17, + latitude: 13.239, + gdpPerPerson: 12156, + rank: 197, + unemployment: 10, + oilProduction: 5, + birthRate: 7, + medianAge: 30, + electricity: 39467, + televisions: 42804, + publicDebt: 9, + internet: 66754 + }), + new WorldStatsItem( + { + code: `JEY`, + name: `Jersey`, + continent: `Europe`, + population: 98840, + gdpTotal: 5080, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: -2.123, + latitude: 49.218, + gdpPerPerson: 51396, + rank: 198, + unemployment: 4, + oilProduction: 1, + birthRate: 18, + medianAge: 30, + electricity: 64261, + televisions: 52453, + publicDebt: 34, + internet: 3026 + }), + new WorldStatsItem( + { + code: `ATG`, + name: `Antigua and Barbuda`, + continent: `North America`, + population: 94731, + gdpTotal: 2171, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.79, + latitude: 17.096, + gdpPerPerson: 22918, + rank: 199, + unemployment: 3, + oilProduction: 1, + birthRate: 5, + medianAge: 36, + electricity: 35849, + televisions: 75384, + publicDebt: 32, + internet: 6170 + }), + new WorldStatsItem( + { + code: `SYC`, + name: `Seychelles`, + continent: `Africa`, + population: 93920, + gdpTotal: 2608, + economy: `Developing`, + region: `Eastern Africa`, + status: `Country`, + longitude: 55.463, + latitude: -4.672, + gdpPerPerson: 27768, + rank: 200, + unemployment: 2, + oilProduction: 0, + birthRate: 16, + medianAge: 29, + electricity: 252, + televisions: 11000, + publicDebt: 92, + internet: 32000 + }), + new WorldStatsItem( + { + code: `IMN`, + name: `Isle of Man`, + continent: `Europe`, + population: 88815, + gdpTotal: 7428, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: -4.562, + latitude: 54.233, + gdpPerPerson: 83635, + rank: 201, + unemployment: 4, + oilProduction: 4, + birthRate: 14, + medianAge: 36, + electricity: 15745, + televisions: 25734, + publicDebt: 13, + internet: 2650 + }), + new WorldStatsItem( + { + code: `AND`, + name: `Andorra`, + continent: `Europe`, + population: 85702, + gdpTotal: 3327, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 1.578, + latitude: 42.539, + gdpPerPerson: 38821, + rank: 202, + unemployment: 11, + oilProduction: 3, + birthRate: 20, + medianAge: 50, + electricity: 56209, + televisions: 42797, + publicDebt: 33, + internet: 42006 + }), + new WorldStatsItem( + { + code: `MHL`, + name: `Marshall Islands`, + continent: `Oceania`, + population: 74539, + gdpTotal: 180, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 169.3, + latitude: 8.484, + gdpPerPerson: 2415, + rank: 203, + unemployment: 3, + oilProduction: 3, + birthRate: 23, + medianAge: 42, + electricity: 78832, + televisions: 15193, + publicDebt: 44, + internet: 8536 + }), + new WorldStatsItem( + { + code: `DMA`, + name: `Dominica`, + continent: `North America`, + population: 73897, + gdpTotal: 812, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.36, + latitude: 15.43, + gdpPerPerson: 10988, + rank: 204, + unemployment: 6, + oilProduction: 1, + birthRate: 13, + medianAge: 35, + electricity: 49809, + televisions: 17676, + publicDebt: 37, + internet: 2616 + }), + new WorldStatsItem( + { + code: `BMU`, + name: `Bermuda`, + continent: `North America`, + population: 70864, + gdpTotal: 5198, + economy: `Developed`, + region: `Northern America`, + status: `Dependency`, + longitude: -64.76, + latitude: 32.323, + gdpPerPerson: 73352, + rank: 205, + unemployment: 15, + oilProduction: 1, + birthRate: 21, + medianAge: 43, + electricity: 54728, + televisions: 16336, + publicDebt: 27, + internet: 41606 + }), + new WorldStatsItem( + { + code: `GGY`, + name: `Guernsey`, + continent: `Europe`, + population: 66502, + gdpTotal: 3465, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: -2.579, + latitude: 49.468, + gdpPerPerson: 52104, + rank: 206, + unemployment: 2, + oilProduction: 1, + birthRate: 25, + medianAge: 33, + electricity: 9806, + televisions: 24638, + publicDebt: 34, + internet: 29222 + }), + new WorldStatsItem( + { + code: `CYM`, + name: `Cayman Island`, + continent: `North America`, + population: 58441, + gdpTotal: 2507, + economy: `Emerging`, + region: `Central America`, + status: `Dependency`, + longitude: -81.25, + latitude: 19.343, + gdpPerPerson: 42898, + rank: 207, + unemployment: 12, + oilProduction: 3, + birthRate: 7, + medianAge: 35, + electricity: 70206, + televisions: 28885, + publicDebt: 21, + internet: 9332 + }), + new WorldStatsItem( + { + code: `GRL`, + name: `Greenland`, + continent: `North America`, + population: 57713, + gdpTotal: 2173, + economy: `Developed`, + region: `Northern America`, + status: `Dependency`, + longitude: -42.12, + latitude: 69.547, + gdpPerPerson: 37652, + rank: 208, + unemployment: 7, + oilProduction: 5, + birthRate: 19, + medianAge: 42, + electricity: 86090, + televisions: 43741, + publicDebt: 42, + internet: 11423 + }), + new WorldStatsItem( + { + code: `KNA`, + name: `St. Kitts and Nevis`, + continent: `North America`, + population: 52715, + gdpTotal: 1427, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -62.77, + latitude: 17.351, + gdpPerPerson: 27070, + rank: 209, + unemployment: 5, + oilProduction: 2, + birthRate: 18, + medianAge: 40, + electricity: 65438, + televisions: 17719, + publicDebt: 11, + internet: 8543 + }), + new WorldStatsItem( + { + code: `TCA`, + name: `Turks and Caicos Is.`, + continent: `North America`, + population: 52570, + gdpTotal: 632, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -71.96, + latitude: 21.913, + gdpPerPerson: 12022, + rank: 210, + unemployment: 6, + oilProduction: 0, + birthRate: 13, + medianAge: 42, + electricity: 51325, + televisions: 13109, + publicDebt: 13, + internet: 24564 + }), + new WorldStatsItem( + { + code: `MNP`, + name: `N. Mariana Island`, + continent: `Oceania`, + population: 52263, + gdpTotal: 682, + economy: `Developing`, + region: `Micronesia`, + status: `Dependency`, + longitude: 145.49, + latitude: 16.459, + gdpPerPerson: 13049, + rank: 211, + unemployment: 10, + oilProduction: 1, + birthRate: 9, + medianAge: 46, + electricity: 87386, + televisions: 13049, + publicDebt: 20, + internet: 5484 + }), + new WorldStatsItem( + { + code: `ASM`, + name: `American Samoa`, + continent: `Oceania`, + population: 51504, + gdpTotal: 711, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -170.6, + latitude: -14.3, + gdpPerPerson: 13805, + rank: 212, + unemployment: 3, + oilProduction: 4, + birthRate: 13, + medianAge: 42, + electricity: 65918, + televisions: 18802, + publicDebt: 23, + internet: 14691 + }), + new WorldStatsItem( + { + code: `FRO`, + name: `Faeroe Island`, + continent: `Europe`, + population: 50730, + gdpTotal: 2001, + economy: `Developed`, + region: `Northern Europe`, + status: `Dependency`, + longitude: -6.857, + latitude: 62.178, + gdpPerPerson: 39444, + rank: 213, + unemployment: 15, + oilProduction: 2, + birthRate: 11, + medianAge: 46, + electricity: 55029, + televisions: 11762, + publicDebt: 13, + internet: 2412 + }), + new WorldStatsItem( + { + code: `SXM`, + name: `Sint Maarten`, + continent: `North America`, + population: 42083, + gdpTotal: 366, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -63.06, + latitude: 18.044, + gdpPerPerson: 8697, + rank: 214, + unemployment: 14, + oilProduction: 4, + birthRate: 19, + medianAge: 50, + electricity: 17166, + televisions: 8474, + publicDebt: 33, + internet: 14309 + }), + new WorldStatsItem( + { + code: `LIE`, + name: `Liechtenstein`, + continent: `Europe`, + population: 38244, + gdpTotal: 4978, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 9.545, + latitude: 47.164, + gdpPerPerson: 130164, + rank: 215, + unemployment: 11, + oilProduction: 3, + birthRate: 10, + medianAge: 55, + electricity: 80781, + televisions: 23104, + publicDebt: 21, + internet: 8159 + }), + new WorldStatsItem( + { + code: `VGB`, + name: `British Virgin Island`, + continent: `North America`, + population: 35015, + gdpTotal: 500, + economy: `Developed`, + region: `Central America`, + status: `Dependency`, + longitude: -64.6, + latitude: 18.44, + gdpPerPerson: 14280, + rank: 216, + unemployment: 13, + oilProduction: 2, + birthRate: 6, + medianAge: 51, + electricity: 47732, + televisions: 17777, + publicDebt: 7, + internet: 6238 + }), + new WorldStatsItem( + { + code: `SMR`, + name: `San Marino`, + continent: `Europe`, + population: 33537, + gdpTotal: 2023, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 12.456, + latitude: 43.942, + gdpPerPerson: 60321, + rank: 217, + unemployment: 10, + oilProduction: 0, + birthRate: 15, + medianAge: 48, + electricity: 21943, + televisions: 22355, + publicDebt: 34, + internet: 23505 + }), + new WorldStatsItem( + { + code: `MAF`, + name: `St. Martin`, + continent: `North America`, + population: 32125, + gdpTotal: 562, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -63.06, + latitude: 18.092, + gdpPerPerson: 17494, + rank: 218, + unemployment: 15, + oilProduction: 5, + birthRate: 10, + medianAge: 34, + electricity: 76791, + televisions: 17592, + publicDebt: 43, + internet: 25032 + }), + new WorldStatsItem( + { + code: `MCO`, + name: `Monaco`, + continent: `Europe`, + population: 30645, + gdpTotal: 7672, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 7.408, + latitude: 43.751, + gdpPerPerson: 250351, + rank: 219, + unemployment: 15, + oilProduction: 5, + birthRate: 18, + medianAge: 31, + electricity: 73517, + televisions: 10057, + publicDebt: 10, + internet: 18394 + }), + new WorldStatsItem( + { + code: `ALA`, + name: `Aland Islands`, + continent: `Europe`, + population: 27153, + gdpTotal: 1563, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: 20.065, + latitude: 60.209, + gdpPerPerson: 57563, + rank: 220, + unemployment: 14, + oilProduction: 3, + birthRate: 15, + medianAge: 54, + electricity: 69394, + televisions: 14696, + publicDebt: 19, + internet: 2736 + }), + new WorldStatsItem( + { + code: `PLW`, + name: `Palau`, + continent: `Oceania`, + population: 21431, + gdpTotal: 276, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 134.63, + latitude: 7.532, + gdpPerPerson: 12879, + rank: 221, + unemployment: 8, + oilProduction: 1, + birthRate: 7, + medianAge: 39, + electricity: 88599, + televisions: 3019, + publicDebt: 8, + internet: 17075 + }), + new WorldStatsItem( + { + code: `AIA`, + name: `Anguilla`, + continent: `North America`, + population: 17087, + gdpTotal: 175, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -63.07, + latitude: 18.221, + gdpPerPerson: 10242, + rank: 222, + unemployment: 9, + oilProduction: 1, + birthRate: 10, + medianAge: 49, + electricity: 68590, + televisions: 10632, + publicDebt: 40, + internet: 8703 + }), + new WorldStatsItem( + { + code: `WLF`, + name: `Wallis Island`, + continent: `Oceania`, + population: 15714, + gdpTotal: 60, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -177.1, + latitude: -13.77, + gdpPerPerson: 3818, + rank: 223, + unemployment: 15, + oilProduction: 0, + birthRate: 0, + medianAge: 0, + electricity: 0, + televisions: 0, + publicDebt: 6, + internet: 900 + }), + new WorldStatsItem( + { + code: `NRU`, + name: `Nauru`, + continent: `Oceania`, + population: 9642, + gdpTotal: 151, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 166.93, + latitude: -0.52, + gdpPerPerson: 15661, + rank: 224, + unemployment: 5, + oilProduction: 3, + birthRate: 17, + medianAge: 32, + electricity: 84092, + televisions: 1777, + publicDebt: 34, + internet: 4585 + }), + new WorldStatsItem( + { + code: `COK`, + name: `Cook Island`, + continent: `Oceania`, + population: 9290, + gdpTotal: 244, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -159.7, + latitude: -21.21, + gdpPerPerson: 26265, + rank: 225, + unemployment: 15, + oilProduction: 1, + birthRate: 6, + medianAge: 45, + electricity: 41320, + televisions: 3712, + publicDebt: 24, + internet: 3555 + }), + new WorldStatsItem( + { + code: `SHN`, + name: `Saint Helena`, + continent: `Africa`, + population: 7828, + gdpTotal: 31, + economy: `Developing`, + region: `Western Africa`, + status: `Dependency`, + longitude: -10.03, + latitude: -11.94, + gdpPerPerson: 3960, + rank: 226, + unemployment: 13, + oilProduction: 1, + birthRate: 17, + medianAge: 48, + electricity: 84435, + televisions: 3812, + publicDebt: 15, + internet: 5530 + }), + new WorldStatsItem( + { + code: `BLM`, + name: `St. Barthalemy`, + continent: `North America`, + population: 7184, + gdpTotal: 255, + economy: `Developed`, + region: `Central America`, + status: `Dependency`, + longitude: -62.83, + latitude: 17.899, + gdpPerPerson: 35496, + rank: 227, + unemployment: 14, + oilProduction: 0, + birthRate: 23, + medianAge: 46, + electricity: 36112, + televisions: 4072, + publicDebt: 27, + internet: 5097 + }), + new WorldStatsItem( + { + code: `KAS`, + name: `Siachen Glacier`, + continent: `Asia`, + population: 6000, + gdpTotal: 15, + economy: `Developing`, + region: `Southern Asia`, + status: `Territory`, + longitude: 77.283, + latitude: 35.386, + gdpPerPerson: 2500, + rank: 228, + unemployment: 7, + oilProduction: 0, + birthRate: 9, + medianAge: 55, + electricity: 62932, + televisions: 936, + publicDebt: 14, + internet: 1303 + }), + new WorldStatsItem( + { + code: `SPM`, + name: `St. Pierre and Miquelon`, + continent: `North America`, + population: 5533, + gdpTotal: 215, + economy: `Developed`, + region: `Northern America`, + status: `Territory`, + longitude: -56.26, + latitude: 46.926, + gdpPerPerson: 38858, + rank: 229, + unemployment: 13, + oilProduction: 0, + birthRate: 13, + medianAge: 42, + electricity: 61277, + televisions: 2067, + publicDebt: 18, + internet: 2924 + }), + new WorldStatsItem( + { + code: `MSR`, + name: `Montserrat`, + continent: `North America`, + population: 5292, + gdpTotal: 44, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -62.18, + latitude: 16.745, + gdpPerPerson: 8314, + rank: 230, + unemployment: 13, + oilProduction: 1, + birthRate: 12, + medianAge: 50, + electricity: 19088, + televisions: 1964, + publicDebt: 44, + internet: 4009 + }), + new WorldStatsItem( + { + code: `ATA`, + name: `Antarctica`, + continent: `Antarctica`, + population: 4050, + gdpTotal: 810, + economy: `Developing`, + region: `Antarctica`, + status: `Indeterminate`, + longitude: 54.592, + latitude: -70.81, + gdpPerPerson: 200000, + rank: 231, + unemployment: 9, + oilProduction: 2, + birthRate: 18, + medianAge: 42, + electricity: 63975, + televisions: 2439, + publicDebt: 45, + internet: 2190 + }), + new WorldStatsItem( + { + code: `IOT`, + name: `British Indian Territory`, + continent: `Asia`, + population: 4000, + gdpTotal: 160, + economy: `Developed`, + region: `Southern Asia`, + status: `Dependency`, + longitude: 72.424, + latitude: -7.328, + gdpPerPerson: 40000, + rank: 232, + unemployment: 13, + oilProduction: 0, + birthRate: 6, + medianAge: 47, + electricity: 91829, + televisions: 1510, + publicDebt: 14, + internet: 1656 + }), + new WorldStatsItem( + { + code: `FLK`, + name: `Falkland Island`, + continent: `South America`, + population: 2931, + gdpTotal: 282, + economy: `Developed`, + region: `South America`, + status: `Dependency`, + longitude: -59.46, + latitude: -51.78, + gdpPerPerson: 96213, + rank: 233, + unemployment: 3, + oilProduction: 5, + birthRate: 9, + medianAge: 36, + electricity: 68007, + televisions: 1489, + publicDebt: 22, + internet: 1335 + }), + new WorldStatsItem( + { + code: `NFK`, + name: `Norfolk Island`, + continent: `Oceania`, + population: 2210, + gdpTotal: 33, + economy: `Developing`, + region: `Australia`, + status: `Dependency`, + longitude: 167.94, + latitude: -29.05, + gdpPerPerson: 14932, + rank: 234, + unemployment: 1, + oilProduction: 0, + birthRate: 15, + medianAge: 46, + electricity: 91943, + televisions: 583, + publicDebt: 41, + internet: 1183 + }), + new WorldStatsItem( + { + code: `NIU`, + name: `Niue`, + continent: `Oceania`, + population: 1626, + gdpTotal: 10, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -169.8, + latitude: -19.05, + gdpPerPerson: 6150, + rank: 235, + unemployment: 15, + oilProduction: 4, + birthRate: 17, + medianAge: 51, + electricity: 16785, + televisions: 585, + publicDebt: 31, + internet: 1247 + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html index 672b6b1c7..1b499f158 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html @@ -26,12 +26,12 @@ #bubbleSeries1 xMemberPath="population" yMemberPath="publicDebt" - radiusMemberPath="gdpPerCapita" + radiusMemberPath="gdpPerPerson" [radiusScale]="sizeScale1" - fillMemberPath="gdpPerCapita" + fillMemberPath="gdpPerPerson" [xAxis]="xAxis" [yAxis]="yAxis" - [dataSource]="worldDebtAndPopulation" + [dataSource]="worldStats" markerType="Circle" showDefaultTooltip="true"> diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.ts index 0b1b2d4e5..62b87e728 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.ts @@ -1,5 +1,5 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; -import { WorldDebtAndPopulationItem, WorldDebtAndPopulation } from './WorldDebtAndPopulation'; +import { WorldStatsItem, WorldStats } from './WorldStats'; import { IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent, IgxSizeScaleComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ @@ -35,13 +35,13 @@ export class AppComponent implements AfterViewInit } @ViewChild("dataToolTipLayer", { static: true } ) private dataToolTipLayer: IgxDataToolTipLayerComponent - private _worldDebtAndPopulation: WorldDebtAndPopulation = null; - public get worldDebtAndPopulation(): WorldDebtAndPopulation { - if (this._worldDebtAndPopulation == null) + private _worldStats: WorldStats = null; + public get worldStats(): WorldStats { + if (this._worldStats == null) { - this._worldDebtAndPopulation = new WorldDebtAndPopulation(); + this._worldStats = new WorldStats(); } - return this._worldDebtAndPopulation; + return this._worldStats; } public constructor(private _detector: ChangeDetectorRef) diff --git a/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicEurope.ts b/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicEurope.ts index 28a586e0f..7b578d2a7 100644 --- a/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicEurope.ts +++ b/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicEurope.ts @@ -83,7 +83,7 @@ export class CountryDemographicEurope extends Array Date: Thu, 25 Apr 2024 09:32:44 -0400 Subject: [PATCH 065/154] update readme --- .../charts/tree-map/highlighting/ReadMe.md | 58 +++++++++++++++++++ .../bullet-graph/highlight-needle/ReadMe.md | 2 +- .../linear-gauge/highlight-needle/ReadMe.md | 2 +- .../radial-gauge/highlight-needle/ReadMe.md | 2 +- 4 files changed, 61 insertions(+), 3 deletions(-) create mode 100644 samples/charts/tree-map/highlighting/ReadMe.md diff --git a/samples/charts/tree-map/highlighting/ReadMe.md b/samples/charts/tree-map/highlighting/ReadMe.md new file mode 100644 index 000000000..740edde7e --- /dev/null +++ b/samples/charts/tree-map/highlighting/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Highlighting feature using [TreeMap](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/tree-map/highlighting +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/gauges/bullet-graph/highlight-needle/ReadMe.md b/samples/gauges/bullet-graph/highlight-needle/ReadMe.md index a441d215d..7a68d019f 100644 --- a/samples/gauges/bullet-graph/highlight-needle/ReadMe.md +++ b/samples/gauges/bullet-graph/highlight-needle/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains Angular application with example of highlight needle feature using [BulletGraph](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. +This folder contains Angular application with example of Highlight Needle feature using [BulletGraph](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. diff --git a/samples/gauges/linear-gauge/highlight-needle/ReadMe.md b/samples/gauges/linear-gauge/highlight-needle/ReadMe.md index 460d62fa4..c4c1362b9 100644 --- a/samples/gauges/linear-gauge/highlight-needle/ReadMe.md +++ b/samples/gauges/linear-gauge/highlight-needle/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains Angular application with example of highlight needle feature using [LinearGauge](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. +This folder contains Angular application with example of Highlight Needle feature using [LinearGauge](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. diff --git a/samples/gauges/radial-gauge/highlight-needle/ReadMe.md b/samples/gauges/radial-gauge/highlight-needle/ReadMe.md index ec31454ab..1241b66fb 100644 --- a/samples/gauges/radial-gauge/highlight-needle/ReadMe.md +++ b/samples/gauges/radial-gauge/highlight-needle/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains Angular application with example of highlight needle feature using [RadialGauge](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. +This folder contains Angular application with example of Highlight Needle feature using [RadialGauge](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. From 59a2dfcb71d5292959def1014079a359d829e029 Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Thu, 25 Apr 2024 09:33:25 -0400 Subject: [PATCH 066/154] Update browser-info.json --- browser/src/browser-info.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index 9b0daa508..285b95435 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,14 +1,14 @@ [ {"ver":"17.0.0","name":"igniteui-angular"}, -{"ver":"17.3.0-beta.0","name":"igniteui-angular-charts"}, -{"ver":"17.3.0-beta.0","name":"igniteui-angular-core"}, -{"ver":"17.3.0-beta.0","name":"igniteui-angular-excel"}, -{"ver":"17.3.0-beta.0","name":"igniteui-angular-gauges"}, -{"ver":"17.3.0-beta.0","name":"igniteui-angular-inputs"}, -{"ver":"17.3.0-beta.0","name":"igniteui-angular-layouts"}, -{"ver":"17.3.0-beta.0","name":"igniteui-angular-maps"}, -{"ver":"17.3.0-beta.0","name":"igniteui-angular-spreadsheet"}, -{"ver":"17.3.0-beta.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"17.3.0","name":"igniteui-angular-charts"}, +{"ver":"17.3.0","name":"igniteui-angular-core"}, +{"ver":"17.3.0","name":"igniteui-angular-excel"}, +{"ver":"17.3.0","name":"igniteui-angular-gauges"}, +{"ver":"17.3.0","name":"igniteui-angular-inputs"}, +{"ver":"17.3.0","name":"igniteui-angular-layouts"}, +{"ver":"17.3.0","name":"igniteui-angular-maps"}, +{"ver":"17.3.0","name":"igniteui-angular-spreadsheet"}, +{"ver":"17.3.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, {"ver":"3.3.1","name":"igniteui-theming"}, {"ver":"4.7.0","name":"igniteui-webcomponents"} ] \ No newline at end of file From 97b88d1923a836d672b535d6e97ce8bdd36b061a Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Fri, 26 Apr 2024 16:05:23 -0400 Subject: [PATCH 067/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.4.25.2 (#170) Co-authored-by: tfsbuild --- .../chart-highlight-filter/src/SalesData.ts | 17737 +++++++++++++++- .../src/app.component.html | 2 +- .../src/app.component.ts | 2 +- .../data-aggregations/src/SalesData.ts | 17737 +++++++++++++++- .../data-aggregations/src/app.component.html | 4 +- .../data-aggregations/src/app.component.ts | 2 +- .../data-filter/src/SalesData.ts | 17737 +++++++++++++++- .../data-filter/src/app.component.ts | 2 +- 8 files changed, 50061 insertions(+), 3162 deletions(-) diff --git a/samples/charts/category-chart/chart-highlight-filter/src/SalesData.ts b/samples/charts/category-chart/chart-highlight-filter/src/SalesData.ts index 25697b809..50d5fe209 100644 --- a/samples/charts/category-chart/chart-highlight-filter/src/SalesData.ts +++ b/samples/charts/category-chart/chart-highlight-filter/src/SalesData.ts @@ -1,1052 +1,3 @@ -//begin data -export class SalesData extends Array { - public constructor() { - super(); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `501`,ManufacturingPrice: 15,SalePrice: 23,GrossSales: 26440,Discounts: 0,Sales: 26440,COGS: 16185,Profit: 11255,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1372`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 27440,Discounts: 0,Sales: 27440,COGS: 16185,Profit: 11255,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2762`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 55240,Discounts: 0,Sales: 55240,COGS: 13210,Profit: 42030,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1464`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21960,Discounts: 0,Sales: 21960,COGS: 21780,Profit: 180,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `719`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 10785,Discounts: 0,Sales: 10785,COGS: 8880,Profit: 1905,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3576`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53640,Discounts: 0,Sales: 53640,COGS: 24700,Profit: 28940,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4422`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1547700,Discounts: 0,Sales: 1547700,COGS: 393380,Profit: 1154320,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3649`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 54735,Discounts: 0,Sales: 54735,COGS: 9210,Profit: 45525,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4172`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 50064,Discounts: 0,Sales: 50064,COGS: 7554,Profit: 42510,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3841`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 76820,Discounts: 0,Sales: 76820,COGS: 18990,Profit: 57830,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3726`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 44712,Discounts: 0,Sales: 44712,COGS: 4635,Profit: 40077,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2625`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 39375,Discounts: 0,Sales: 39375,COGS: 24700,Profit: 14675,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1958`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 244750,Discounts: 0,Sales: 244750,COGS: 319860,Profit: 75110,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3271`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 981300,Discounts: 0,Sales: 981300,COGS: 239500,Profit: 741800,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2091`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 14637,Discounts: 0,Sales: 14637,COGS: 10730,Profit: 3907,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2825`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 42375,Discounts: 0,Sales: 42375,COGS: 6150,Profit: 36225,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2513`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 50260,Discounts: 0,Sales: 50260,COGS: 2920,Profit: 47340,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `883`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 13245,Discounts: 0,Sales: 13245,COGS: 9740,Profit: 3505,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 25044,Discounts: 0,Sales: 25044,COGS: 7554,Profit: 17490,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2563`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 897050,Discounts: 0,Sales: 897050,COGS: 261560,Profit: 635490,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2846`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34152,Discounts: 0,Sales: 34152,COGS: 1101,Profit: 33051,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `997`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 6979,Discounts: 0,Sales: 6979,COGS: 4415,Profit: 2564,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2290`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 34350,Discounts: 0,Sales: 34350,COGS: 24720,Profit: 9630,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2133`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14931,Discounts: 0,Sales: 14931,COGS: 5715,Profit: 9216,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3617`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 72340,Discounts: 0,Sales: 72340,COGS: 18170,Profit: 54170,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1266`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 443100,Discounts: 0,Sales: 443100,COGS: 393380,Profit: 49720,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `894`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6258,Discounts: 0,Sales: 6258,COGS: 7465,Profit: 1207,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2725`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 340625,Discounts: 0,Sales: 340625,COGS: 216480,Profit: 124145,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3061`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 36732,Discounts: 0,Sales: 36732,COGS: 6483,Profit: 30249,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3958`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1385300,Discounts: 0,Sales: 1385300,COGS: 261560,Profit: 1123740,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3920`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 47040,Discounts: 0,Sales: 47040,COGS: 4635,Profit: 42405,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3381`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422625,Discounts: 0,Sales: 422625,COGS: 338520,Profit: 84105,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4307`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1292100,Discounts: 0,Sales: 1292100,COGS: 500250,Profit: 791850,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `878`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10536,Discounts: 0,Sales: 10536,COGS: 8514,Profit: 2022,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `496`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 7440,Discounts: 0,Sales: 7440,COGS: 21780,Profit: 14340,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3367`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 50505,Discounts: 0,Sales: 50505,COGS: 8880,Profit: 41625,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2055`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 616500,Discounts: 0,Sales: 616500,COGS: 537750,Profit: 78750,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4041`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 80820,Discounts: 0,Sales: 80820,COGS: 18170,Profit: 62650,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `3237`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1132950,Discounts: 0,Sales: 1132950,COGS: 715000,Profit: 417950,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `630`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 7560,Discounts: 0,Sales: 7560,COGS: 5859,Profit: 1701,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4210`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 526250,Discounts: 0,Sales: 526250,COGS: 506340,Profit: 19910,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1127`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 22540,Discounts: 0,Sales: 22540,COGS: 18990,Profit: 3550,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3438`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 24066,Discounts: 0,Sales: 24066,COGS: 8430,Profit: 15636,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2015`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 24180,Discounts: 0,Sales: 24180,COGS: 6423,Profit: 17757,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2534`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 17738,Discounts: 0,Sales: 17738,COGS: 5715,Profit: 12023,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1384`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 20760,Discounts: 0,Sales: 20760,COGS: 6150,Profit: 14610,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3561`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 24927,Discounts: 276.15,Sales: 24650.85,COGS: 19725,Profit: 4925.85,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1823`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27345,Discounts: 344.4,Sales: 27000.6,COGS: 22960,Profit: 4040.6,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19565,Discounts: 72.1,Sales: 19492.9,COGS: 5150,Profit: 14342.9,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `457`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3199,Discounts: 44.73,Sales: 3154.27,COGS: 3195,Profit: 40.73,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3785`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26495,Discounts: 92.82,Sales: 26402.18,COGS: 6630,Profit: 19772.18,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `748`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 8976,Discounts: 222.96,Sales: 8753.04,COGS: 5574,Profit: 3179.04,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1021`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 357350,Discounts: 4235,Sales: 353115,COGS: 314600,Profit: 38515,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2076`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 14532,Discounts: 177.03,Sales: 14354.97,COGS: 12645,Profit: 1709.97,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `4316`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51792,Discounts: 173.4,Sales: 51618.6,COGS: 4335,Profit: 47283.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4174`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50088,Discounts: 320.52,Sales: 49767.48,COGS: 8013,Profit: 41754.48,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3736`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1307600,Discounts: 4889.5,Sales: 1302710.5,COGS: 363220,Profit: 939490.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1914`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 669900,Discounts: 7542.5,Sales: 662357.5,COGS: 560300,Profit: 102057.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2742`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 41130,Discounts: 332.1,Sales: 40797.9,COGS: 22140,Profit: 18657.9,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1499`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 449700,Discounts: 6903,Sales: 442797,COGS: 575250,Profit: 132453,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 75440,Discounts: 275.1,Sales: 75164.9,COGS: 13755,Profit: 61409.9,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1112`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 7784,Discounts: 128.1,Sales: 7655.9,COGS: 9150,Profit: 1494.1,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2368`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 35520,Discounts: 227.1,Sales: 35292.9,COGS: 15140,Profit: 20152.9,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 11102,Discounts: 314.48,Sales: 10787.52,COGS: 22462.5,Profit: 11674.98,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3386`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 423250,Discounts: 908.75,Sales: 422341.25,COGS: 87240,Profit: 335101.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `852`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 106500,Discounts: 983.75,Sales: 105516.25,COGS: 94440,Profit: 11076.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2783`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 347875,Discounts: 2278.75,Sales: 345596.25,COGS: 218760,Profit: 126836.25,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2684`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 40260,Discounts: 112.05,Sales: 40147.95,COGS: 7470,Profit: 32677.95,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4083`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1224900,Discounts: 8715,Sales: 1216185,COGS: 726250,Profit: 489935,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2816`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 985600,Discounts: 7542.5,Sales: 978057.5,COGS: 560300,Profit: 417757.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4294`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 85880,Discounts: 772.8,Sales: 85107.2,COGS: 38640,Profit: 46467.2,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 25.34,Sales: 19966.66,COGS: 1810,Profit: 18156.66,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1407`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 175875,Discounts: 1153.75,Sales: 174721.25,COGS: 110760,Profit: 63961.25,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1265`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 8855,Discounts: 18.41,Sales: 8836.59,COGS: 1315,Profit: 7521.59,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3892`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1362200,Discounts: 3302.25,Sales: 1358897.75,COGS: 245310,Profit: 1113587.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3068`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 383500,Discounts: 908.75,Sales: 382591.25,COGS: 87240,Profit: 295351.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2181`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 272625,Discounts: 983.75,Sales: 271641.25,COGS: 94440,Profit: 177201.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1356`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 406800,Discounts: 2958,Sales: 403842,COGS: 246500,Profit: 177201.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1814`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 634900,Discounts: 4889.5,Sales: 630010.5,COGS: 363220,Profit: 266790.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1495`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 186875,Discounts: 2180,Sales: 184695,COGS: 209280,Profit: 24585,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1463`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 182875,Discounts: 1856.25,Sales: 181018.75,COGS: 89100,Profit: 91918.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `215`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 2580,Discounts: 310.8,Sales: 2269.2,COGS: 3885,Profit: 1615.8,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `566`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 198100,Discounts: 19964,Sales: 178136,COGS: 741520,Profit: 563384,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3255`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 39060,Discounts: 274.08,Sales: 38785.92,COGS: 3426,Profit: 35359.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15440,Discounts: 626.4,Sales: 14813.6,COGS: 15660,Profit: 846.4,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1135`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13620,Discounts: 165.6,Sales: 13454.4,COGS: 2070,Profit: 11384.4,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 17895,Discounts: 708.9,Sales: 17186.1,COGS: 23630,Profit: 6443.9,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2530`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 759000,Discounts: 5508,Sales: 753492,COGS: 229500,Profit: 523992,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3451`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1035300,Discounts: 10368,Sales: 1024932,COGS: 432000,Profit: 592932,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3059`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 36708,Discounts: 274.08,Sales: 36433.92,COGS: 3426,Profit: 33007.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3957`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 494625,Discounts: 1655,Sales: 492970,COGS: 79440,Profit: 413530,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3444`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 41328,Discounts: 310.8,Sales: 41017.2,COGS: 3885,Profit: 37132.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3154`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 946200,Discounts: 11496,Sales: 934704,COGS: 479000,Profit: 455704,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4108`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1437800,Discounts: 19964,Sales: 1417836,COGS: 741520,Profit: 676316,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3760`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 470000,Discounts: 6822.5,Sales: 463177.5,COGS: 327480,Profit: 135697.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2334`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28008,Discounts: 253.2,Sales: 27754.8,COGS: 3165,Profit: 24589.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `580`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 6960,Discounts: 260.16,Sales: 6699.84,COGS: 3252,Profit: 3447.84,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2610`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 52200,Discounts: 626.4,Sales: 51573.6,COGS: 15660,Profit: 35913.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1459`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 510650,Discounts: 20139,Sales: 490511,COGS: 748020,Profit: 257509,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3774`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 45288,Discounts: 253.2,Sales: 45034.8,COGS: 3165,Profit: 41869.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2572`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 30864,Discounts: 260.16,Sales: 30603.84,COGS: 3252,Profit: 27351.84,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `320`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 40000,Discounts: 1655,Sales: 38345,COGS: 79440,Profit: 41095,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3275`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1146250,Discounts: 20139,Sales: 1126111,COGS: 748020,Profit: 378091,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3582`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 447750,Discounts: 6822.5,Sales: 440927.5,COGS: 327480,Profit: 113447.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4056`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1216800,Discounts: 1554,Sales: 1215246,COGS: 64750,Profit: 1150496,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2144`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 643200,Discounts: 6606,Sales: 636594,COGS: 275250,Profit: 361344,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3502`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 437750,Discounts: 5690,Sales: 432060,COGS: 273120,Profit: 158940,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `679`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 13580,Discounts: 494.4,Sales: 13085.6,COGS: 12360,Profit: 725.6,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2351`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 47020,Discounts: 376.4,Sales: 46643.6,COGS: 9410,Profit: 37233.6,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2043`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 612900,Discounts: 11496,Sales: 601404,COGS: 479000,Profit: 122404,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3565`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 445625,Discounts: 15913.13,Sales: 429711.88,COGS: 509220,Profit: 79508.13,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1401`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 28020,Discounts: 1548,Sales: 26472,COGS: 25800,Profit: 672,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2077`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 623100,Discounts: 6201,Sales: 616899,COGS: 172250,Profit: 444649,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 43716,Discounts: 700.92,Sales: 43015.08,COGS: 5841,Profit: 37174.08,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2960`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20720,Discounts: 411.18,Sales: 20308.82,COGS: 9790,Profit: 10518.82,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1201`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 14412,Discounts: 684.36,Sales: 13727.64,COGS: 5703,Profit: 8024.64,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2321`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 16247,Discounts: 114.24,Sales: 16132.76,COGS: 2720,Profit: 13412.76,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3972`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 496500,Discounts: 4826.25,Sales: 491673.75,COGS: 154440,Profit: 337233.75,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3878`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 484750,Discounts: 6397.5,Sales: 478352.5,COGS: 204720,Profit: 273632.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2278`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 683400,Discounts: 21910.5,Sales: 661489.5,COGS: 608625,Profit: 52864.5,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1075`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 134375,Discounts: 6652.5,Sales: 127722.5,COGS: 212880,Profit: 85157.5,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4050`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 48600,Discounts: 684.36,Sales: 47915.64,COGS: 5703,Profit: 42212.64,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3035`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 910500,Discounts: 6201,Sales: 904299,COGS: 172250,Profit: 732049,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3636`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 454500,Discounts: 5887.5,Sales: 448612.5,COGS: 188400,Profit: 260212.5,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1379`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 16548,Discounts: 493.02,Sales: 16054.98,COGS: 4108.5,Profit: 11946.48,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4492`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 561500,Discounts: 7533.75,Sales: 553966.25,COGS: 241080,Profit: 312886.25,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1744`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 218000,Discounts: 4826.25,Sales: 213173.75,COGS: 154440,Profit: 58733.75,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2341`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 292625,Discounts: 6397.5,Sales: 286227.5,COGS: 204720,Profit: 81507.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 479375,Discounts: 7533.75,Sales: 471841.25,COGS: 241080,Profit: 230761.25,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1161`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 348300,Discounts: 25596,Sales: 322704,COGS: 711000,Profit: 388296,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `876`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10512,Discounts: 689.76,Sales: 9822.24,COGS: 5748,Profit: 4074.24,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1705`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 213125,Discounts: 5887.5,Sales: 207237.5,COGS: 188400,Profit: 18837.5,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1805`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 541500,Discounts: 16866,Sales: 524634,COGS: 468500,Profit: 56134,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `389`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 136150,Discounts: 17241,Sales: 118909,COGS: 426920,Profit: 308011,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1459`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 29180,Discounts: 498.6,Sales: 28681.4,COGS: 8310,Profit: 20371.4,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4236`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 84720,Discounts: 2310.3,Sales: 82409.7,COGS: 38505,Profit: 43904.7,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3627`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 43524,Discounts: 892.44,Sales: 42631.56,COGS: 7437,Profit: 35194.56,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1756`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 26340,Discounts: 1218.6,Sales: 25121.4,COGS: 20310,Profit: 4811.4,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `307`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 4605,Discounts: 1218.6,Sales: 3386.4,COGS: 20310,Profit: 16923.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1222`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 366600,Discounts: 24252,Sales: 342348,COGS: 505250,Profit: 162902,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `489`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 171150,Discounts: 3836,Sales: 167314,COGS: 71240,Profit: 96074,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4133`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 61995,Discounts: 1180.2,Sales: 60814.8,COGS: 19670,Profit: 41144.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2743`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 822900,Discounts: 22308,Sales: 800592,COGS: 464750,Profit: 335842,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `4460`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1338000,Discounts: 24252,Sales: 1313748,COGS: 505250,Profit: 808498,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1232`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 154000,Discounts: 5690,Sales: 148310,COGS: 136560,Profit: 11750,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 18102,Discounts: 1190.28,Sales: 16911.72,COGS: 21255,Profit: 4343.28,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1332`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 166500,Discounts: 3975,Sales: 162525,COGS: 95400,Profit: 67125,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4487`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1346100,Discounts: 16974,Sales: 1329126,COGS: 353625,Profit: 975501,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3862`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1158600,Discounts: 35016,Sales: 1123584,COGS: 729500,Profit: 394084,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1765`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 617750,Discounts: 48300,Sales: 569450,COGS: 897000,Profit: 327550,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3533`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 441625,Discounts: 14940,Sales: 426685,COGS: 358560,Profit: 68125,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2016`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 30240,Discounts: 130.8,Sales: 30109.2,COGS: 2180,Profit: 27929.2,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58760,Discounts: 1659.2,Sales: 57100.8,COGS: 20740,Profit: 36360.8,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3352`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67040,Discounts: 844.8,Sales: 66195.2,COGS: 10560,Profit: 55635.2,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2430`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 850500,Discounts: 3836,Sales: 846664,COGS: 71240,Profit: 775424,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `535`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 66875,Discounts: 5690,Sales: 61185,COGS: 136560,Profit: 75375,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1523`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 18276,Discounts: 703.2,Sales: 17572.8,COGS: 4395,Profit: 13177.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1782`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 623700,Discounts: 30478,Sales: 593222,COGS: 566020,Profit: 27202,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `347`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 4164,Discounts: 415.68,Sales: 3748.32,COGS: 2598,Profit: 1150.32,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3509`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1228150,Discounts: 30478,Sales: 1197672,COGS: 566020,Profit: 631652,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2943`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1030050,Discounts: 26110,Sales: 1003940,COGS: 484900,Profit: 519040,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4037`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 504625,Discounts: 5370,Sales: 499255,COGS: 128880,Profit: 370375,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4146`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1451100,Discounts: 26698,Sales: 1424402,COGS: 495820,Profit: 928582,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `725`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 5075,Discounts: 480.2,Sales: 4594.8,COGS: 6860,Profit: 2265.2,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 16275,Discounts: 941.15,Sales: 15333.85,COGS: 13445,Profit: 1888.85,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `675`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 8100,Discounts: 1458.6,Sales: 6641.4,COGS: 7293,Profit: 651.6,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2990`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35880,Discounts: 1458.6,Sales: 34421.4,COGS: 7293,Profit: 27128.4,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1072`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 7504,Discounts: 941.15,Sales: 6562.85,COGS: 13445,Profit: 6882.15,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1048`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7336,Discounts: 589.05,Sales: 6746.95,COGS: 8415,Profit: 1668.05,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `469`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 5628,Discounts: 673.8,Sales: 4954.2,COGS: 3369,Profit: 1585.2,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4240`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50880,Discounts: 1119,Sales: 49761,COGS: 5595,Profit: 44166,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1976`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 23712,Discounts: 669.6,Sales: 23042.4,COGS: 3348,Profit: 19694.4,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1984`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39680,Discounts: 1563,Sales: 38117,COGS: 15630,Profit: 22487,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `480`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 144000,Discounts: 14865,Sales: 129135,COGS: 247750,Profit: 118615,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1205`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 18075,Discounts: 2093.25,Sales: 15981.75,COGS: 27910,Profit: 11928.25,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2480`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17360,Discounts: 199.5,Sales: 17160.5,COGS: 2850,Profit: 14310.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2926`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 20482,Discounts: 870.45,Sales: 19611.55,COGS: 12435,Profit: 7176.55,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3210`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1123500,Discounts: 24228.75,Sales: 1099271.25,COGS: 359970,Profit: 739301.25,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3221`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 402625,Discounts: 22668.75,Sales: 379956.25,COGS: 435240,Profit: 55283.75,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1127`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13524,Discounts: 1405.2,Sales: 12118.8,COGS: 7026,Profit: 5092.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1610`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 32200,Discounts: 1303,Sales: 30897,COGS: 13030,Profit: 17867,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4100`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 512500,Discounts: 18700,Sales: 493800,COGS: 359040,Profit: 134760,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1012`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 126500,Discounts: 14906.25,Sales: 111593.75,COGS: 286200,Profit: 174606.25,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3337`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1001100,Discounts: 24105,Sales: 976995,COGS: 401750,Profit: 575245,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3955`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27685,Discounts: 814.45,Sales: 26870.55,COGS: 11635,Profit: 15235.55,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4347`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1304100,Discounts: 14865,Sales: 1289235,COGS: 247750,Profit: 1041485,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1548`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 541800,Discounts: 10535,Sales: 531265,COGS: 156520,Profit: 374745,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2153`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 32295,Discounts: 1965,Sales: 30330,COGS: 26200,Profit: 4130,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4126`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 515750,Discounts: 5381.25,Sales: 510368.75,COGS: 103320,Profit: 407048.75,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3376`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67520,Discounts: 2663,Sales: 64857,COGS: 26630,Profit: 38227,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2244`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 33660,Discounts: 416.25,Sales: 33243.75,COGS: 5550,Profit: 27693.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1360`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20400,Discounts: 2145.75,Sales: 18254.25,COGS: 28610,Profit: 10355.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `279`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 34875,Discounts: 5043.75,Sales: 29831.25,COGS: 96840,Profit: 67008.75,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2521`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 882350,Discounts: 10535,Sales: 871815,COGS: 156520,Profit: 715295,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2433`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 48660,Discounts: 2832,Sales: 45828,COGS: 28320,Profit: 17508,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1738`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 34760,Discounts: 1579,Sales: 33181,COGS: 15790,Profit: 17391,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1106`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 138250,Discounts: 5381.25,Sales: 132868.75,COGS: 103320,Profit: 29548.75,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `213`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 63900,Discounts: 18750,Sales: 45150,COGS: 312500,Profit: 267350,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2929`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 58580,Discounts: 2663,Sales: 55917,COGS: 26630,Profit: 29287,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2389`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 16723,Discounts: 199.5,Sales: 16523.5,COGS: 2850,Profit: 13673.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3086`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21602,Discounts: 870.45,Sales: 20731.55,COGS: 12435,Profit: 8296.55,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `745`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 260750,Discounts: 23625,Sales: 237125,COGS: 351000,Profit: 113875,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1266`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 443100,Discounts: 9660,Sales: 433440,COGS: 143520,Profit: 289920,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4287`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1286100,Discounts: 18750,Sales: 1267350,COGS: 312500,Profit: 954850,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 47895,Discounts: 3420.9,Sales: 44474.1,COGS: 38010,Profit: 6464.1,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1967`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39340,Discounts: 1341,Sales: 37999,COGS: 11175,Profit: 26824,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `631`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 9465,Discounts: 2559.6,Sales: 6905.4,COGS: 28440,Profit: 21534.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3469`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 41628,Discounts: 404.64,Sales: 41223.36,COGS: 1686,Profit: 39537.36,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3215`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 48225,Discounts: 1827,Sales: 46398,COGS: 20300,Profit: 26098,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1959`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 685650,Discounts: 20580,Sales: 665070,COGS: 254800,Profit: 410270,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2181`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 763350,Discounts: 30660,Sales: 732690,COGS: 379600,Profit: 353090,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2205`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 26460,Discounts: 1960.56,Sales: 24499.44,COGS: 8169,Profit: 16330.44,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1890`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 661500,Discounts: 31416,Sales: 630084,COGS: 388960,Profit: 241124,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2417`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 302125,Discounts: 7140,Sales: 294985,COGS: 114240,Profit: 180745,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1158`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 144750,Discounts: 20662.5,Sales: 124087.5,COGS: 330600,Profit: 206512.5,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `803`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 12045,Discounts: 1377,Sales: 10668,COGS: 15300,Profit: 4632,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3705`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1296750,Discounts: 31416,Sales: 1265334,COGS: 388960,Profit: 876374,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `589`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 4123,Discounts: 629.16,Sales: 3493.84,COGS: 7490,Profit: 3996.16,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3999`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 59985,Discounts: 2559.6,Sales: 57425.4,COGS: 28440,Profit: 28985.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4256`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 29792,Discounts: 629.16,Sales: 29162.84,COGS: 7490,Profit: 21672.84,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2160`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 270000,Discounts: 14906.25,Sales: 255093.75,COGS: 238500,Profit: 16593.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `466`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 163100,Discounts: 35259,Sales: 127841,COGS: 436540,Profit: 308699,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1478`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 22170,Discounts: 1978.2,Sales: 20191.8,COGS: 21980,Profit: 1788.2,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3798`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 56970,Discounts: 1568.7,Sales: 55401.3,COGS: 17430,Profit: 37971.3,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `447`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 6705,Discounts: 1037.7,Sales: 5667.3,COGS: 11530,Profit: 5862.7,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `745`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 14900,Discounts: 1201.2,Sales: 13698.8,COGS: 10010,Profit: 3688.8,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1732`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 12124,Discounts: 559.86,Sales: 11564.14,COGS: 6665,Profit: 4899.14,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1759`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 26385,Discounts: 1037.7,Sales: 25347.3,COGS: 11530,Profit: 13817.3,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `338`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 4056,Discounts: 610.68,Sales: 3445.32,COGS: 2181,Profit: 1264.32,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3911`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 46932,Discounts: 1582.56,Sales: 45349.44,COGS: 5652,Profit: 39697.44,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `4473`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 53676,Discounts: 1965.6,Sales: 51710.4,COGS: 7020,Profit: 44690.4,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `383`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 4596,Discounts: 1967.28,Sales: 2628.72,COGS: 7026,Profit: 4397.28,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1062`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 15930,Discounts: 1325.1,Sales: 14604.9,COGS: 12620,Profit: 1984.9,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4083`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 28581,Discounts: 556.15,Sales: 28024.85,COGS: 5675,Profit: 22349.85,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3974`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 27818,Discounts: 268.03,Sales: 27549.97,COGS: 2735,Profit: 24814.97,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3723`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 26061,Discounts: 775.18,Sales: 25285.82,COGS: 7910,Profit: 17375.82,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2435`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 29220,Discounts: 1460.34,Sales: 27759.66,COGS: 5215.5,Profit: 22544.16,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1763`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 12341,Discounts: 775.18,Sales: 11565.82,COGS: 7910,Profit: 3655.82,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4473`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31311,Discounts: 556.15,Sales: 30754.85,COGS: 5675,Profit: 25079.85,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1246`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 436100,Discounts: 43144.5,Sales: 392955.5,COGS: 457860,Profit: 64904.5,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1615`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 484500,Discounts: 9408,Sales: 475092,COGS: 112000,Profit: 363092,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `749`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 224700,Discounts: 45801,Sales: 178899,COGS: 545250,Profit: 366351,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1318`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 26360,Discounts: 2766.4,Sales: 23593.6,COGS: 19760,Profit: 3833.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2882`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 864600,Discounts: 45801,Sales: 818799,COGS: 545250,Profit: 273549,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2484`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 745200,Discounts: 35742,Sales: 709458,COGS: 425500,Profit: 283958,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3169`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 950700,Discounts: 9408,Sales: 941292,COGS: 112000,Profit: 829292,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 510000,Discounts: 30738.75,Sales: 479261.25,COGS: 421560,Profit: 57701.25,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3943`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 59145,Discounts: 2206.05,Sales: 56938.95,COGS: 21010,Profit: 35928.95,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `253`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5060,Discounts: 2149,Sales: 2911,COGS: 15350,Profit: 12439,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `799`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 239700,Discounts: 34839,Sales: 204861,COGS: 414750,Profit: 209889,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3942`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 78840,Discounts: 852.6,Sales: 77987.4,COGS: 6090,Profit: 71897.4,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2498`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 312250,Discounts: 18261.25,Sales: 293988.75,COGS: 250440,Profit: 43548.75,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2517`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 50340,Discounts: 2766.4,Sales: 47573.6,COGS: 19760,Profit: 27813.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1145`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 343500,Discounts: 28812,Sales: 314688,COGS: 343000,Profit: 28312,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3814`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 45768,Discounts: 2725.38,Sales: 43042.62,COGS: 9733.5,Profit: 33309.12,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1188`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 356400,Discounts: 20139,Sales: 336261,COGS: 239750,Profit: 96511,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2233`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 669900,Discounts: 57687,Sales: 612213,COGS: 686750,Profit: 74537,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `421`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 52625,Discounts: 14393.75,Sales: 38231.25,COGS: 197400,Profit: 159168.75,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `269`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 94150,Discounts: 70462,Sales: 23688,COGS: 747760,Profit: 724072,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `952`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19040,Discounts: 1565.2,Sales: 17474.8,COGS: 11180,Profit: 6294.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2964`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 889200,Discounts: 28812,Sales: 860388,COGS: 343000,Profit: 517388,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1505`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10535,Discounts: 273.28,Sales: 10261.72,COGS: 2440,Profit: 7821.72,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1678`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 33560,Discounts: 2051.2,Sales: 31508.8,COGS: 12820,Profit: 18688.8,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4249`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 29743,Discounts: 143.92,Sales: 29599.08,COGS: 1285,Profit: 28314.08,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1677`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 33540,Discounts: 2051.2,Sales: 31488.8,COGS: 12820,Profit: 18668.8,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3051`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 381375,Discounts: 15400,Sales: 365975,COGS: 184800,Profit: 181175,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3372`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 50580,Discounts: 588,Sales: 49992,COGS: 4900,Profit: 45092,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1686`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 590100,Discounts: 38136,Sales: 551964,COGS: 354120,Profit: 197844,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3086`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 46290,Discounts: 3001.2,Sales: 43288.8,COGS: 25010,Profit: 18278.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4150`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 83000,Discounts: 1132.8,Sales: 81867.2,COGS: 7080,Profit: 74787.2,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3027`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 60540,Discounts: 1032,Sales: 59508,COGS: 6450,Profit: 53058,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4359`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1307700,Discounts: 37488,Sales: 1270212,COGS: 390500,Profit: 879712,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1589`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 23835,Discounts: 853.2,Sales: 22981.8,COGS: 7110,Profit: 15871.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2679`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 334875,Discounts: 11140,Sales: 323735,COGS: 133680,Profit: 190055,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 23807,Discounts: 705.04,Sales: 23101.96,COGS: 6295,Profit: 16806.96,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2815`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19705,Discounts: 613.2,Sales: 19091.8,COGS: 5475,Profit: 13616.8,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2964`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 59280,Discounts: 2185.6,Sales: 57094.4,COGS: 13660,Profit: 43434.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4173`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1251900,Discounts: 59040,Sales: 1192860,COGS: 615000,Profit: 577860,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1157`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 8099,Discounts: 379.68,Sales: 7719.32,COGS: 3390,Profit: 4329.32,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3065`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21455,Discounts: 894.88,Sales: 20560.12,COGS: 7990,Profit: 12570.12,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 81600,Discounts: 3094.4,Sales: 78505.6,COGS: 19340,Profit: 59165.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1713`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34260,Discounts: 4788.8,Sales: 29471.2,COGS: 29930,Profit: 458.8,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1691`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 591850,Discounts: 38136,Sales: 553714,COGS: 354120,Profit: 199594,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2305`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27660,Discounts: 574.08,Sales: 27085.92,COGS: 1794,Profit: 25291.92,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3401`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 23807,Discounts: 1627.92,Sales: 22179.08,COGS: 14535,Profit: 7644.08,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2288`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 16016,Discounts: 1309.28,Sales: 14706.72,COGS: 11690,Profit: 3016.72,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4086`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1225800,Discounts: 15240,Sales: 1210560,COGS: 158750,Profit: 1051810,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2651`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 927850,Discounts: 16086,Sales: 911764,COGS: 149370,Profit: 762394,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3971`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27797,Discounts: 1309.28,Sales: 26487.72,COGS: 11690,Profit: 14797.72,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2512`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 879200,Discounts: 10668,Sales: 868532,COGS: 99060,Profit: 769472,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 960750,Discounts: 11816,Sales: 948934,COGS: 109720,Profit: 839214,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1903`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 570900,Discounts: 51216,Sales: 519684,COGS: 533500,Profit: 13816,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2914`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 58280,Discounts: 1132.8,Sales: 57147.2,COGS: 7080,Profit: 50067.2,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1889`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 13223,Discounts: 1627.92,Sales: 11595.08,COGS: 14535,Profit: 2939.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1466`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 29320,Discounts: 2185.6,Sales: 27134.4,COGS: 13660,Profit: 13474.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `887`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 266100,Discounts: 59040,Sales: 207060,COGS: 615000,Profit: 407940,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `395`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 7900,Discounts: 2432,Sales: 5468,COGS: 15200,Profit: 9732,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1693`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 25395,Discounts: 853.2,Sales: 24541.8,COGS: 7110,Profit: 17431.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2649`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 794700,Discounts: 15240,Sales: 779460,COGS: 158750,Profit: 620710,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3608`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 72160,Discounts: 698.4,Sales: 71461.6,COGS: 4365,Profit: 67096.6,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1073`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 321900,Discounts: 29538,Sales: 292362,COGS: 273500,Profit: 18862,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2167`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 650100,Discounts: 102667.5,Sales: 547432.5,COGS: 950625,Profit: 403192.5,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1319`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 461650,Discounts: 52479,Sales: 409171,COGS: 433160,Profit: 23989,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1252`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 15024,Discounts: 2506.68,Sales: 12517.32,COGS: 6963,Profit: 5554.32,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1156`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 144500,Discounts: 31466.25,Sales: 113033.75,COGS: 335640,Profit: 222606.25,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1153`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 345900,Discounts: 69255,Sales: 276645,COGS: 641250,Profit: 364605,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2720`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 952000,Discounts: 76135.5,Sales: 875864.5,COGS: 628420,Profit: 247444.5,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 54870,Discounts: 4961.25,Sales: 49908.75,COGS: 36750,Profit: 13158.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2950`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 885000,Discounts: 29538,Sales: 855462,COGS: 273500,Profit: 581962,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1821`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27315,Discounts: 1656.45,Sales: 25658.55,COGS: 12270,Profit: 13388.55,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1127`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 338100,Discounts: 35748,Sales: 302352,COGS: 331000,Profit: 28648,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `862`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 107750,Discounts: 31466.25,Sales: 76283.75,COGS: 335640,Profit: 259356.25,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3805`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 57075,Discounts: 330.75,Sales: 56744.25,COGS: 2450,Profit: 54294.25,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1415`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 424500,Discounts: 102424.5,Sales: 322075.5,COGS: 948375,Profit: 626299.5,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2231`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 780850,Discounts: 41170.5,Sales: 739679.5,COGS: 339820,Profit: 399859.5,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3649`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 456125,Discounts: 6378.75,Sales: 449746.25,COGS: 68040,Profit: 381706.25,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2948`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 368500,Discounts: 23737.5,Sales: 344762.5,COGS: 253200,Profit: 91562.5,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3395`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1188250,Discounts: 39973.5,Sales: 1148276.5,COGS: 329940,Profit: 818336.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2650`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31800,Discounts: 2112.48,Sales: 29687.52,COGS: 5868,Profit: 23819.52,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `585`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 175500,Discounts: 71793,Sales: 103707,COGS: 664750,Profit: 561043,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1316`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 460600,Discounts: 42572.25,Sales: 418027.75,COGS: 351390,Profit: 66637.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4459`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 53508,Discounts: 950.4,Sales: 52557.6,COGS: 2640,Profit: 49917.6,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2711`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 813300,Discounts: 50409,Sales: 762891,COGS: 466750,Profit: 296141,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3613`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 54195,Discounts: 1656.45,Sales: 52538.55,COGS: 12270,Profit: 40268.55,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1847`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 230875,Discounts: 9866.25,Sales: 221008.75,COGS: 105240,Profit: 115768.75,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2996`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1048600,Discounts: 65236.5,Sales: 983363.5,COGS: 538460,Profit: 444903.5,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2838`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 993300,Discounts: 39973.5,Sales: 953326.5,COGS: 329940,Profit: 623386.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1536`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 30720,Discounts: 3049.2,Sales: 27670.8,COGS: 16940,Profit: 10730.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1291`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 25820,Discounts: 1193.4,Sales: 24626.6,COGS: 6630,Profit: 17996.6,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1213`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 8491,Discounts: 515.97,Sales: 7975.03,COGS: 4095,Profit: 3880.03,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2370`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 28440,Discounts: 1706.4,Sales: 26733.6,COGS: 4740,Profit: 21993.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1979`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 13853,Discounts: 328.23,Sales: 13524.77,COGS: 2605,Profit: 10919.77,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2879`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57580,Discounts: 1751.4,Sales: 55828.6,COGS: 9730,Profit: 46098.6,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1707`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34140,Discounts: 1868.4,Sales: 32271.6,COGS: 10380,Profit: 21891.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2933`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 20531,Discounts: 226.8,Sales: 20304.2,COGS: 1800,Profit: 18504.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1014`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 12168,Discounts: 2124.36,Sales: 10043.64,COGS: 5901,Profit: 4142.64,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `693`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 10395,Discounts: 3547.8,Sales: 6847.2,COGS: 26280,Profit: 19432.8,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3741`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26187,Discounts: 226.8,Sales: 25960.2,COGS: 1800,Profit: 24160.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3995`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27965,Discounts: 328.23,Sales: 27636.77,COGS: 2605,Profit: 25031.77,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `953`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19060,Discounts: 1868.4,Sales: 17191.6,COGS: 10380,Profit: 6811.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2530`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 37950,Discounts: 2201.18,Sales: 35748.82,COGS: 16305,Profit: 19443.82,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1372`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 27440,Discounts: 0,Sales: 27440,COGS: 16185,Profit: 11255,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2762`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 55240,Discounts: 0,Sales: 55240,COGS: 13210,Profit: 42030,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1464`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21960,Discounts: 0,Sales: 21960,COGS: 21780,Profit: 180,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `719`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 10785,Discounts: 0,Sales: 10785,COGS: 8880,Profit: 1905,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3576`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53640,Discounts: 0,Sales: 53640,COGS: 24700,Profit: 28940,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4422`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1547700,Discounts: 0,Sales: 1547700,COGS: 393380,Profit: 1154320,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3649`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 54735,Discounts: 0,Sales: 54735,COGS: 9210,Profit: 45525,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4172`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 50064,Discounts: 0,Sales: 50064,COGS: 7554,Profit: 42510,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3841`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 76820,Discounts: 0,Sales: 76820,COGS: 18990,Profit: 57830,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3726`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 44712,Discounts: 0,Sales: 44712,COGS: 4635,Profit: 40077,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2625`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 39375,Discounts: 0,Sales: 39375,COGS: 24700,Profit: 14675,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1958`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 244750,Discounts: 0,Sales: 244750,COGS: 319860,Profit: 75110,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3271`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 981300,Discounts: 0,Sales: 981300,COGS: 239500,Profit: 741800,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2091`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 14637,Discounts: 0,Sales: 14637,COGS: 10730,Profit: 3907,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2530`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 316250,Discounts: 0,Sales: 316250,COGS: 41400,Profit: 274850,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2825`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 42375,Discounts: 0,Sales: 42375,COGS: 6150,Profit: 36225,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2513`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 50260,Discounts: 0,Sales: 50260,COGS: 2920,Profit: 47340,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `883`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 13245,Discounts: 0,Sales: 13245,COGS: 9740,Profit: 3505,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 25044,Discounts: 0,Sales: 25044,COGS: 7554,Profit: 17490,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2563`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 897050,Discounts: 0,Sales: 897050,COGS: 261560,Profit: 635490,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2846`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34152,Discounts: 0,Sales: 34152,COGS: 1101,Profit: 33051,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `997`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 6979,Discounts: 0,Sales: 6979,COGS: 4415,Profit: 2564,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3421`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 51315,Discounts: 0,Sales: 51315,COGS: 5490,Profit: 45825,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Marchesa`,UnitsSold: `70000`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 1050000,Discounts: 0,Sales: 1050000,COGS: 5490,Profit: 1044510,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2291`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 687300,Discounts: 0,Sales: 687300,COGS: 197000,Profit: 490300,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2290`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 34350,Discounts: 0,Sales: 34350,COGS: 24720,Profit: 9630,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2133`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14931,Discounts: 0,Sales: 14931,COGS: 5715,Profit: 9216,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3475`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1216250,Discounts: 0,Sales: 1216250,COGS: 448500,Profit: 767750,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3686`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 44232,Discounts: 0,Sales: 44232,COGS: 2736,Profit: 41496,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3319`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 49785,Discounts: 0,Sales: 49785,COGS: 21520,Profit: 28265,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3617`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 72340,Discounts: 0,Sales: 72340,COGS: 18170,Profit: 54170,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1266`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 443100,Discounts: 0,Sales: 443100,COGS: 393380,Profit: 49720,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `894`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6258,Discounts: 0,Sales: 6258,COGS: 7465,Profit: 1207,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2725`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 340625,Discounts: 0,Sales: 340625,COGS: 216480,Profit: 124145,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3061`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 36732,Discounts: 0,Sales: 36732,COGS: 6483,Profit: 30249,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3958`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1385300,Discounts: 0,Sales: 1385300,COGS: 261560,Profit: 1123740,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3920`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 47040,Discounts: 0,Sales: 47040,COGS: 4635,Profit: 42405,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3381`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422625,Discounts: 0,Sales: 422625,COGS: 338520,Profit: 84105,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1094`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 136750,Discounts: 0,Sales: 136750,COGS: 41400,Profit: 95350,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4307`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1292100,Discounts: 0,Sales: 1292100,COGS: 500250,Profit: 791850,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `878`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10536,Discounts: 0,Sales: 10536,COGS: 8514,Profit: 2022,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `496`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 7440,Discounts: 0,Sales: 7440,COGS: 21780,Profit: 14340,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3367`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 50505,Discounts: 0,Sales: 50505,COGS: 8880,Profit: 41625,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3880`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1358000,Discounts: 0,Sales: 1358000,COGS: 397020,Profit: 960980,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2055`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 616500,Discounts: 0,Sales: 616500,COGS: 537750,Profit: 78750,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4041`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 80820,Discounts: 0,Sales: 80820,COGS: 18170,Profit: 62650,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `3237`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1132950,Discounts: 0,Sales: 1132950,COGS: 715000,Profit: 417950,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `630`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 7560,Discounts: 0,Sales: 7560,COGS: 5859,Profit: 1701,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4210`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 526250,Discounts: 0,Sales: 526250,COGS: 506340,Profit: 19910,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1127`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 22540,Discounts: 0,Sales: 22540,COGS: 18990,Profit: 3550,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3438`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 24066,Discounts: 0,Sales: 24066,COGS: 8430,Profit: 15636,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2015`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 24180,Discounts: 0,Sales: 24180,COGS: 6423,Profit: 17757,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2534`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 17738,Discounts: 0,Sales: 17738,COGS: 5715,Profit: 12023,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1384`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 20760,Discounts: 0,Sales: 20760,COGS: 6150,Profit: 14610,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3561`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 24927,Discounts: 276.15,Sales: 24650.85,COGS: 19725,Profit: 4925.85,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1823`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27345,Discounts: 344.4,Sales: 27000.6,COGS: 22960,Profit: 4040.6,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19565,Discounts: 72.1,Sales: 19492.9,COGS: 5150,Profit: 14342.9,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `457`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3199,Discounts: 44.73,Sales: 3154.27,COGS: 3195,Profit: 40.73,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3785`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26495,Discounts: 92.82,Sales: 26402.18,COGS: 6630,Profit: 19772.18,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `748`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 8976,Discounts: 222.96,Sales: 8753.04,COGS: 5574,Profit: 3179.04,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1021`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 357350,Discounts: 4235,Sales: 353115,COGS: 314600,Profit: 38515,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2076`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 14532,Discounts: 177.03,Sales: 14354.97,COGS: 12645,Profit: 1709.97,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `4316`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51792,Discounts: 173.4,Sales: 51618.6,COGS: 4335,Profit: 47283.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2654`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 331750,Discounts: 412.5,Sales: 331337.5,COGS: 39600,Profit: 291737.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4174`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50088,Discounts: 320.52,Sales: 49767.48,COGS: 8013,Profit: 41754.48,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1675`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 20100,Discounts: 91.92,Sales: 20008.08,COGS: 2298,Profit: 17710.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1572`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 471600,Discounts: 1482,Sales: 470118,COGS: 123500,Profit: 346618,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3736`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1307600,Discounts: 4889.5,Sales: 1302710.5,COGS: 363220,Profit: 939490.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1914`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 669900,Discounts: 7542.5,Sales: 662357.5,COGS: 560300,Profit: 102057.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2742`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 41130,Discounts: 332.1,Sales: 40797.9,COGS: 22140,Profit: 18657.9,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1499`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 449700,Discounts: 6903,Sales: 442797,COGS: 575250,Profit: 132453,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 75440,Discounts: 275.1,Sales: 75164.9,COGS: 13755,Profit: 61409.9,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1112`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 7784,Discounts: 128.1,Sales: 7655.9,COGS: 9150,Profit: 1494.1,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1723`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 516900,Discounts: 7494,Sales: 509406,COGS: 624500,Profit: 115094,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `423`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 52875,Discounts: 828.75,Sales: 52046.25,COGS: 79560,Profit: 27513.75,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2368`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 35520,Discounts: 227.1,Sales: 35292.9,COGS: 15140,Profit: 20152.9,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 11102,Discounts: 314.48,Sales: 10787.52,COGS: 22462.5,Profit: 11674.98,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3386`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 423250,Discounts: 908.75,Sales: 422341.25,COGS: 87240,Profit: 335101.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `852`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 106500,Discounts: 983.75,Sales: 105516.25,COGS: 94440,Profit: 11076.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2783`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 347875,Discounts: 2278.75,Sales: 345596.25,COGS: 218760,Profit: 126836.25,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2684`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 40260,Discounts: 112.05,Sales: 40147.95,COGS: 7470,Profit: 32677.95,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4393`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 52716,Discounts: 91.92,Sales: 52624.08,COGS: 2298,Profit: 50326.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4083`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1224900,Discounts: 8715,Sales: 1216185,COGS: 726250,Profit: 489935,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2816`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 985600,Discounts: 7542.5,Sales: 978057.5,COGS: 560300,Profit: 417757.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4294`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 85880,Discounts: 772.8,Sales: 85107.2,COGS: 38640,Profit: 46467.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 25.34,Sales: 19966.66,COGS: 1810,Profit: 18156.66,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1407`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 175875,Discounts: 1153.75,Sales: 174721.25,COGS: 110760,Profit: 63961.25,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3850`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 481250,Discounts: 828.75,Sales: 480421.25,COGS: 79560,Profit: 400861.25,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 146.44,Sales: 19845.56,COGS: 10460,Profit: 9385.56,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1265`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 8855,Discounts: 18.41,Sales: 8836.59,COGS: 1315,Profit: 7521.59,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3892`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1362200,Discounts: 3302.25,Sales: 1358897.75,COGS: 245310,Profit: 1113587.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3068`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 383500,Discounts: 908.75,Sales: 382591.25,COGS: 87240,Profit: 295351.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2181`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 272625,Discounts: 983.75,Sales: 271641.25,COGS: 94440,Profit: 177201.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1356`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 406800,Discounts: 2958,Sales: 403842,COGS: 246500,Profit: 157342,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2545`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 763500,Discounts: 1482,Sales: 762018,COGS: 123500,Profit: 638518,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1814`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 634900,Discounts: 4889.5,Sales: 630010.5,COGS: 363220,Profit: 266790.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1495`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 186875,Discounts: 2180,Sales: 184695,COGS: 209280,Profit: 24585,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1154`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 13848,Discounts: 238.68,Sales: 13609.32,COGS: 5967,Profit: 7642.32,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `4180`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 62700,Discounts: 48.15,Sales: 62651.85,COGS: 3210,Profit: 59441.85,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1463`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 182875,Discounts: 1856.25,Sales: 181018.75,COGS: 89100,Profit: 91918.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `215`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 2580,Discounts: 310.8,Sales: 2269.2,COGS: 3885,Profit: 1615.8,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4099`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 1229700,Discounts: 1284,Sales: 1228416,COGS: 53500,Profit: 1174916,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2660`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 18620,Discounts: 300.3,Sales: 18319.7,COGS: 10725,Profit: 7594.7,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `566`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 198100,Discounts: 19964,Sales: 178136,COGS: 741520,Profit: 563384,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3255`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 39060,Discounts: 274.08,Sales: 38785.92,COGS: 3426,Profit: 35359.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15440,Discounts: 626.4,Sales: 14813.6,COGS: 15660,Profit: 846.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1135`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13620,Discounts: 165.6,Sales: 13454.4,COGS: 2070,Profit: 11384.4,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3826`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 478250,Discounts: 4150,Sales: 474100,COGS: 199200,Profit: 274900,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 17895,Discounts: 708.9,Sales: 17186.1,COGS: 23630,Profit: 6443.9,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2530`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 759000,Discounts: 5508,Sales: 753492,COGS: 229500,Profit: 523992,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3451`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1035300,Discounts: 10368,Sales: 1024932,COGS: 432000,Profit: 592932,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3059`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 36708,Discounts: 274.08,Sales: 36433.92,COGS: 3426,Profit: 33007.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3957`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 494625,Discounts: 1655,Sales: 492970,COGS: 79440,Profit: 413530,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3444`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 41328,Discounts: 310.8,Sales: 41017.2,COGS: 3885,Profit: 37132.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4388`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 548500,Discounts: 2022.5,Sales: 546477.5,COGS: 97080,Profit: 449397.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2106`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 263250,Discounts: 5362.5,Sales: 257887.5,COGS: 257400,Profit: 487.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `799`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 9588,Discounts: 428.4,Sales: 9159.6,COGS: 5355,Profit: 3804.6,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3154`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 946200,Discounts: 11496,Sales: 934704,COGS: 479000,Profit: 455704,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4108`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1437800,Discounts: 19964,Sales: 1417836,COGS: 741520,Profit: 676316,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3760`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 470000,Discounts: 6822.5,Sales: 463177.5,COGS: 327480,Profit: 135697.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `377`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 5655,Discounts: 577.5,Sales: 5077.5,COGS: 19250,Profit: 14172.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2110`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14770,Discounts: 281.82,Sales: 14488.18,COGS: 10065,Profit: 4423.18,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2334`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28008,Discounts: 253.2,Sales: 27754.8,COGS: 3165,Profit: 24589.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `580`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 6960,Discounts: 260.16,Sales: 6699.84,COGS: 3252,Profit: 3447.84,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2610`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 52200,Discounts: 626.4,Sales: 51573.6,COGS: 15660,Profit: 35913.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1598`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 559300,Discounts: 20762,Sales: 538538,COGS: 771160,Profit: 232622,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1459`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 510650,Discounts: 20139,Sales: 490511,COGS: 748020,Profit: 257509,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3284`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 410500,Discounts: 2022.5,Sales: 408477.5,COGS: 97080,Profit: 311397.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1197`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 149625,Discounts: 5362.5,Sales: 144262.5,COGS: 257400,Profit: 113137.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3774`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 45288,Discounts: 253.2,Sales: 45034.8,COGS: 3165,Profit: 41869.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2303`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 46060,Discounts: 217.6,Sales: 45842.4,COGS: 5440,Profit: 40402.4,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2572`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 30864,Discounts: 260.16,Sales: 30603.84,COGS: 3252,Profit: 27351.84,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `320`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 40000,Discounts: 1655,Sales: 38345,COGS: 79440,Profit: 41095,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2126`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 637800,Discounts: 1284,Sales: 636516,COGS: 53500,Profit: 583016,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3275`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1146250,Discounts: 20139,Sales: 1126111,COGS: 748020,Profit: 378091,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3582`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 447750,Discounts: 6822.5,Sales: 440927.5,COGS: 327480,Profit: 113447.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `783`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 274050,Discounts: 1862,Sales: 272188,COGS: 69160,Profit: 203028,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1202`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 420700,Discounts: 13580,Sales: 407120,COGS: 504400,Profit: 97280,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4056`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1216800,Discounts: 1554,Sales: 1215246,COGS: 64750,Profit: 1150496,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2144`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 643200,Discounts: 6606,Sales: 636594,COGS: 275250,Profit: 361344,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3502`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 437750,Discounts: 5690,Sales: 432060,COGS: 273120,Profit: 158940,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1397`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 488950,Discounts: 20762,Sales: 468188,COGS: 771160,Profit: 302972,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `679`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 13580,Discounts: 494.4,Sales: 13085.6,COGS: 12360,Profit: 725.6,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2351`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 47020,Discounts: 376.4,Sales: 46643.6,COGS: 9410,Profit: 37233.6,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2043`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 612900,Discounts: 11496,Sales: 601404,COGS: 479000,Profit: 122404,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3565`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 445625,Discounts: 15913.13,Sales: 429711.88,COGS: 509220,Profit: 79508.13,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1401`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 28020,Discounts: 1548,Sales: 26472,COGS: 25800,Profit: 672,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2077`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 623100,Discounts: 6201,Sales: 616899,COGS: 172250,Profit: 444649,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 43716,Discounts: 700.92,Sales: 43015.08,COGS: 5841,Profit: 37174.08,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1105`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 13260,Discounts: 326.88,Sales: 12933.12,COGS: 2724,Profit: 10209.12,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2960`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20720,Discounts: 411.18,Sales: 20308.82,COGS: 9790,Profit: 10518.82,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1201`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 14412,Discounts: 684.36,Sales: 13727.64,COGS: 5703,Profit: 8024.64,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2321`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 16247,Discounts: 114.24,Sales: 16132.76,COGS: 2720,Profit: 13412.76,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3640`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1274000,Discounts: 18868.5,Sales: 1255131.5,COGS: 467220,Profit: 787911.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3972`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 496500,Discounts: 4826.25,Sales: 491673.75,COGS: 154440,Profit: 337233.75,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3878`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 484750,Discounts: 6397.5,Sales: 478352.5,COGS: 204720,Profit: 273632.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2278`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 683400,Discounts: 21910.5,Sales: 661489.5,COGS: 608625,Profit: 52864.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1075`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 134375,Discounts: 6652.5,Sales: 127722.5,COGS: 212880,Profit: 85157.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4050`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 48600,Discounts: 684.36,Sales: 47915.64,COGS: 5703,Profit: 42212.64,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3035`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 910500,Discounts: 6201,Sales: 904299,COGS: 172250,Profit: 732049,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3636`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 454500,Discounts: 5887.5,Sales: 448612.5,COGS: 188400,Profit: 260212.5,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1379`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 16548,Discounts: 493.02,Sales: 16054.98,COGS: 4108.5,Profit: 11946.48,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4492`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 561500,Discounts: 7533.75,Sales: 553966.25,COGS: 241080,Profit: 312886.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `764`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11460,Discounts: 875.25,Sales: 10584.75,COGS: 19450,Profit: 8865.25,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1744`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 218000,Discounts: 4826.25,Sales: 213173.75,COGS: 154440,Profit: 58733.75,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2341`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 292625,Discounts: 6397.5,Sales: 286227.5,COGS: 204720,Profit: 81507.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 479375,Discounts: 7533.75,Sales: 471841.25,COGS: 241080,Profit: 230761.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1161`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 348300,Discounts: 25596,Sales: 322704,COGS: 711000,Profit: 388296,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `876`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10512,Discounts: 689.76,Sales: 9822.24,COGS: 5748,Profit: 4074.24,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1705`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 213125,Discounts: 5887.5,Sales: 207237.5,COGS: 188400,Profit: 18837.5,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1805`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 541500,Discounts: 16866,Sales: 524634,COGS: 468500,Profit: 56134,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `389`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 136150,Discounts: 17241,Sales: 118909,COGS: 426920,Profit: 308011,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 41175,Discounts: 875.25,Sales: 40299.75,COGS: 19450,Profit: 20849.75,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1459`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 29180,Discounts: 498.6,Sales: 28681.4,COGS: 8310,Profit: 20371.4,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3938`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27566,Discounts: 369.6,Sales: 27196.4,COGS: 8800,Profit: 18396.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4236`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 84720,Discounts: 2310.3,Sales: 82409.7,COGS: 38505,Profit: 43904.7,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3627`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 43524,Discounts: 892.44,Sales: 42631.56,COGS: 7437,Profit: 35194.56,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1756`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 26340,Discounts: 1218.6,Sales: 25121.4,COGS: 20310,Profit: 4811.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `307`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 4605,Discounts: 1218.6,Sales: 3386.4,COGS: 20310,Profit: 16923.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4489`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 67335,Discounts: 1356.6,Sales: 65978.4,COGS: 22610,Profit: 43368.4,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2167`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 43340,Discounts: 588.8,Sales: 42751.2,COGS: 7360,Profit: 35391.2,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1137`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 7959,Discounts: 798.28,Sales: 7160.72,COGS: 14255,Profit: 7094.28,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1222`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 366600,Discounts: 24252,Sales: 342348,COGS: 505250,Profit: 162902,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `489`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 171150,Discounts: 3836,Sales: 167314,COGS: 71240,Profit: 96074,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4133`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 61995,Discounts: 1180.2,Sales: 60814.8,COGS: 19670,Profit: 41144.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2743`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 822900,Discounts: 22308,Sales: 800592,COGS: 464750,Profit: 335842,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3699`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 25893,Discounts: 798.28,Sales: 25094.72,COGS: 14255,Profit: 10839.72,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `4460`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1338000,Discounts: 24252,Sales: 1313748,COGS: 505250,Profit: 808498,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1232`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 154000,Discounts: 5690,Sales: 148310,COGS: 136560,Profit: 11750,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 18102,Discounts: 1190.28,Sales: 16911.72,COGS: 21255,Profit: 4343.28,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1332`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 166500,Discounts: 3975,Sales: 162525,COGS: 95400,Profit: 67125,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4487`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1346100,Discounts: 16974,Sales: 1329126,COGS: 353625,Profit: 975501,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3862`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1158600,Discounts: 35016,Sales: 1123584,COGS: 729500,Profit: 394084,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1765`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 617750,Discounts: 48300,Sales: 569450,COGS: 897000,Profit: 327550,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3533`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 441625,Discounts: 14940,Sales: 426685,COGS: 358560,Profit: 68125,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2016`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 30240,Discounts: 130.8,Sales: 30109.2,COGS: 2180,Profit: 27929.2,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58760,Discounts: 1659.2,Sales: 57100.8,COGS: 20740,Profit: 36360.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3352`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67040,Discounts: 844.8,Sales: 66195.2,COGS: 10560,Profit: 55635.2,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4409`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 66135,Discounts: 402.6,Sales: 65732.4,COGS: 6710,Profit: 59022.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3323`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 49845,Discounts: 908.4,Sales: 48936.6,COGS: 15140,Profit: 33796.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2430`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 850500,Discounts: 3836,Sales: 846664,COGS: 71240,Profit: 775424,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `535`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 66875,Discounts: 5690,Sales: 61185,COGS: 136560,Profit: 75375,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1523`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 18276,Discounts: 703.2,Sales: 17572.8,COGS: 4395,Profit: 13177.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3631`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 72620,Discounts: 2116.8,Sales: 70503.2,COGS: 26460,Profit: 44043.2,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1782`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 623700,Discounts: 30478,Sales: 593222,COGS: 566020,Profit: 27202,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `347`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 4164,Discounts: 415.68,Sales: 3748.32,COGS: 2598,Profit: 1150.32,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `4147`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1451450,Discounts: 4886,Sales: 1446564,COGS: 90740,Profit: 1355824,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3509`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1228150,Discounts: 30478,Sales: 1197672,COGS: 566020,Profit: 631652,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2774`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 41610,Discounts: 908.4,Sales: 40701.6,COGS: 15140,Profit: 25561.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2943`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1030050,Discounts: 26110,Sales: 1003940,COGS: 484900,Profit: 519040,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4037`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 504625,Discounts: 5370,Sales: 499255,COGS: 128880,Profit: 370375,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4146`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1451100,Discounts: 26698,Sales: 1424402,COGS: 495820,Profit: 928582,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `4123`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 61845,Discounts: 402.6,Sales: 61442.4,COGS: 6710,Profit: 54732.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1337`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 467950,Discounts: 24892,Sales: 443058,COGS: 462280,Profit: 19222,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `599`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 4193,Discounts: 405.65,Sales: 3787.35,COGS: 5795,Profit: 2007.65,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `725`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 5075,Discounts: 480.2,Sales: 4594.8,COGS: 6860,Profit: 2265.2,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `477`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 3339,Discounts: 822.15,Sales: 2516.85,COGS: 11745,Profit: 9228.15,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 16275,Discounts: 941.15,Sales: 15333.85,COGS: 13445,Profit: 1888.85,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `675`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 8100,Discounts: 1458.6,Sales: 6641.4,COGS: 7293,Profit: 651.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2990`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35880,Discounts: 1458.6,Sales: 34421.4,COGS: 7293,Profit: 27128.4,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1072`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 7504,Discounts: 941.15,Sales: 6562.85,COGS: 13445,Profit: 6882.15,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1048`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7336,Discounts: 589.05,Sales: 6746.95,COGS: 8415,Profit: 1668.05,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `469`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 5628,Discounts: 673.8,Sales: 4954.2,COGS: 3369,Profit: 1585.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `804`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 5628,Discounts: 405.65,Sales: 5222.35,COGS: 5795,Profit: 572.65,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4240`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50880,Discounts: 1119,Sales: 49761,COGS: 5595,Profit: 44166,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1976`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 23712,Discounts: 669.6,Sales: 23042.4,COGS: 3348,Profit: 19694.4,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1984`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39680,Discounts: 1563,Sales: 38117,COGS: 15630,Profit: 22487,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `480`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 144000,Discounts: 14865,Sales: 129135,COGS: 247750,Profit: 118615,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `3551`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 24857,Discounts: 355.6,Sales: 24501.4,COGS: 5080,Profit: 19421.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1205`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 18075,Discounts: 2093.25,Sales: 15981.75,COGS: 27910,Profit: 11928.25,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2480`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17360,Discounts: 199.5,Sales: 17160.5,COGS: 2850,Profit: 14310.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2926`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 20482,Discounts: 870.45,Sales: 19611.55,COGS: 12435,Profit: 7176.55,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3210`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1123500,Discounts: 24228.75,Sales: 1099271.25,COGS: 359970,Profit: 739301.25,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3221`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 402625,Discounts: 22668.75,Sales: 379956.25,COGS: 435240,Profit: 55283.75,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2389`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 836150,Discounts: 12600,Sales: 823550,COGS: 187200,Profit: 636350,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1127`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13524,Discounts: 1405.2,Sales: 12118.8,COGS: 7026,Profit: 5092.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `319`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 95700,Discounts: 16500,Sales: 79200,COGS: 275000,Profit: 195800,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1610`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 32200,Discounts: 1303,Sales: 30897,COGS: 13030,Profit: 17867,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4100`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 512500,Discounts: 18700,Sales: 493800,COGS: 359040,Profit: 134760,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1012`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 126500,Discounts: 14906.25,Sales: 111593.75,COGS: 286200,Profit: 174606.25,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3337`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1001100,Discounts: 24105,Sales: 976995,COGS: 401750,Profit: 575245,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3955`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27685,Discounts: 814.45,Sales: 26870.55,COGS: 11635,Profit: 15235.55,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4347`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1304100,Discounts: 14865,Sales: 1289235,COGS: 247750,Profit: 1041485,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1548`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 541800,Discounts: 10535,Sales: 531265,COGS: 156520,Profit: 374745,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2153`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 32295,Discounts: 1965,Sales: 30330,COGS: 26200,Profit: 4130,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3789`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1326150,Discounts: 21490,Sales: 1304660,COGS: 319280,Profit: 985380,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4364`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 87280,Discounts: 1389,Sales: 85891,COGS: 13890,Profit: 72001,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4126`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 515750,Discounts: 5381.25,Sales: 510368.75,COGS: 103320,Profit: 407048.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1343`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 167875,Discounts: 4400,Sales: 163475,COGS: 84480,Profit: 78995,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `245`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 4900,Discounts: 1802,Sales: 3098,COGS: 18020,Profit: 14922,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3376`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67520,Discounts: 2663,Sales: 64857,COGS: 26630,Profit: 38227,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 9807,Discounts: 747.6,Sales: 9059.4,COGS: 10680,Profit: 1620.6,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3483`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 52245,Discounts: 1587,Sales: 50658,COGS: 21160,Profit: 29498,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2244`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 33660,Discounts: 416.25,Sales: 33243.75,COGS: 5550,Profit: 27693.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1360`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20400,Discounts: 2145.75,Sales: 18254.25,COGS: 28610,Profit: 10355.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `279`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 34875,Discounts: 5043.75,Sales: 29831.25,COGS: 96840,Profit: 67008.75,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2521`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 882350,Discounts: 10535,Sales: 871815,COGS: 156520,Profit: 715295,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2433`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 48660,Discounts: 2832,Sales: 45828,COGS: 28320,Profit: 17508,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1738`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 34760,Discounts: 1579,Sales: 33181,COGS: 15790,Profit: 17391,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1106`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 138250,Discounts: 5381.25,Sales: 132868.75,COGS: 103320,Profit: 29548.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3379`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422375,Discounts: 4400,Sales: 417975,COGS: 84480,Profit: 333495,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1221`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 24420,Discounts: 1033,Sales: 23387,COGS: 10330,Profit: 13057,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `213`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 63900,Discounts: 18750,Sales: 45150,COGS: 312500,Profit: 267350,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3335`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 66700,Discounts: 1389,Sales: 65311,COGS: 13890,Profit: 51421,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1260`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 25200,Discounts: 1265,Sales: 23935,COGS: 12650,Profit: 11285,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3034`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 60680,Discounts: 2297,Sales: 58383,COGS: 22970,Profit: 35413,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2929`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 58580,Discounts: 2663,Sales: 55917,COGS: 26630,Profit: 29287,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2389`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 16723,Discounts: 199.5,Sales: 16523.5,COGS: 2850,Profit: 13673.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3086`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21602,Discounts: 870.45,Sales: 20731.55,COGS: 12435,Profit: 8296.55,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `745`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 260750,Discounts: 23625,Sales: 237125,COGS: 351000,Profit: 113875,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1266`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 443100,Discounts: 9660,Sales: 433440,COGS: 143520,Profit: 289920,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3790`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1326500,Discounts: 21490,Sales: 1305010,COGS: 319280,Profit: 985730,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4287`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1286100,Discounts: 18750,Sales: 1267350,COGS: 312500,Profit: 954850,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 47895,Discounts: 3420.9,Sales: 44474.1,COGS: 38010,Profit: 6464.1,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1967`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39340,Discounts: 1341,Sales: 37999,COGS: 11175,Profit: 26824,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `631`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 9465,Discounts: 2559.6,Sales: 6905.4,COGS: 28440,Profit: 21534.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3469`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 41628,Discounts: 404.64,Sales: 41223.36,COGS: 1686,Profit: 39537.36,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `570`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 6840,Discounts: 1655.28,Sales: 5184.72,COGS: 6897,Profit: 1712.28,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3215`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 48225,Discounts: 1827,Sales: 46398,COGS: 20300,Profit: 26098,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3754`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 26278,Discounts: 110.46,Sales: 26167.54,COGS: 1315,Profit: 24852.54,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2187`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 273375,Discounts: 6652.5,Sales: 266722.5,COGS: 106440,Profit: 160282.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1959`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 685650,Discounts: 20580,Sales: 665070,COGS: 254800,Profit: 410270,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2181`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 763350,Discounts: 30660,Sales: 732690,COGS: 379600,Profit: 353090,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3559`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 24913,Discounts: 589.26,Sales: 24323.74,COGS: 7015,Profit: 17308.74,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2205`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 26460,Discounts: 1960.56,Sales: 24499.44,COGS: 8169,Profit: 16330.44,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1890`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 661500,Discounts: 31416,Sales: 630084,COGS: 388960,Profit: 241124,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1296`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 15552,Discounts: 1655.28,Sales: 13896.72,COGS: 6897,Profit: 6999.72,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `775`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 271250,Discounts: 15267,Sales: 255983,COGS: 189020,Profit: 66963,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2417`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 302125,Discounts: 7140,Sales: 294985,COGS: 114240,Profit: 180745,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1158`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 144750,Discounts: 20662.5,Sales: 124087.5,COGS: 330600,Profit: 206512.5,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `803`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 12045,Discounts: 1377,Sales: 10668,COGS: 15300,Profit: 4632,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3705`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1296750,Discounts: 31416,Sales: 1265334,COGS: 388960,Profit: 876374,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `589`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 4123,Discounts: 629.16,Sales: 3493.84,COGS: 7490,Profit: 3996.16,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3797`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1139100,Discounts: 21978,Sales: 1117122,COGS: 305250,Profit: 811872,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1321`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 462350,Discounts: 43596,Sales: 418754,COGS: 539760,Profit: 121006,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3999`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 59985,Discounts: 2559.6,Sales: 57425.4,COGS: 28440,Profit: 28985.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4256`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 29792,Discounts: 629.16,Sales: 29162.84,COGS: 7490,Profit: 21672.84,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1643`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 492900,Discounts: 21978,Sales: 470922,COGS: 305250,Profit: 165672,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1912`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 38240,Discounts: 1347.6,Sales: 36892.4,COGS: 11230,Profit: 25662.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1610`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 483000,Discounts: 43848,Sales: 439152,COGS: 609000,Profit: 169848,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2160`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 270000,Discounts: 14906.25,Sales: 255093.75,COGS: 238500,Profit: 16593.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `466`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 163100,Discounts: 35259,Sales: 127841,COGS: 436540,Profit: 308699,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `328`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 114800,Discounts: 15267,Sales: 99533,COGS: 189020,Profit: 89487,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `4099`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 28693,Discounts: 589.26,Sales: 28103.74,COGS: 7015,Profit: 21088.74,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `990`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 346500,Discounts: 43596,Sales: 302904,COGS: 539760,Profit: 236856,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1433`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 28660,Discounts: 2108.4,Sales: 26551.6,COGS: 17570,Profit: 8981.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1478`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 22170,Discounts: 1978.2,Sales: 20191.8,COGS: 21980,Profit: 1788.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3798`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 56970,Discounts: 1568.7,Sales: 55401.3,COGS: 17430,Profit: 37971.3,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `447`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 6705,Discounts: 1037.7,Sales: 5667.3,COGS: 11530,Profit: 5862.7,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1711`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34220,Discounts: 2108.4,Sales: 32111.6,COGS: 17570,Profit: 14541.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `745`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 14900,Discounts: 1201.2,Sales: 13698.8,COGS: 10010,Profit: 3688.8,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1732`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 12124,Discounts: 559.86,Sales: 11564.14,COGS: 6665,Profit: 4899.14,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1759`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 26385,Discounts: 1037.7,Sales: 25347.3,COGS: 11530,Profit: 13817.3,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `338`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 4056,Discounts: 610.68,Sales: 3445.32,COGS: 2181,Profit: 1264.32,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3911`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 46932,Discounts: 1582.56,Sales: 45349.44,COGS: 5652,Profit: 39697.44,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3691`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 73820,Discounts: 2567.6,Sales: 71252.4,COGS: 18340,Profit: 52912.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `4473`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 53676,Discounts: 1965.6,Sales: 51710.4,COGS: 7020,Profit: 44690.4,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `383`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 4596,Discounts: 1967.28,Sales: 2628.72,COGS: 7026,Profit: 4397.28,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3105`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21735,Discounts: 505.19,Sales: 21229.81,COGS: 5155,Profit: 16074.81,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1062`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 15930,Discounts: 1325.1,Sales: 14604.9,COGS: 12620,Profit: 1984.9,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4083`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 28581,Discounts: 556.15,Sales: 28024.85,COGS: 5675,Profit: 22349.85,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3974`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 27818,Discounts: 268.03,Sales: 27549.97,COGS: 2735,Profit: 24814.97,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3723`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 26061,Discounts: 775.18,Sales: 25285.82,COGS: 7910,Profit: 17375.82,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2435`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 29220,Discounts: 1460.34,Sales: 27759.66,COGS: 5215.5,Profit: 22544.16,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1678`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 20136,Discounts: 1860.6,Sales: 18275.4,COGS: 6645,Profit: 11630.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1763`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 12341,Discounts: 775.18,Sales: 11565.82,COGS: 7910,Profit: 3655.82,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4473`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31311,Discounts: 556.15,Sales: 30754.85,COGS: 5675,Profit: 25079.85,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1246`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 436100,Discounts: 43144.5,Sales: 392955.5,COGS: 457860,Profit: 64904.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1615`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 484500,Discounts: 9408,Sales: 475092,COGS: 112000,Profit: 363092,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `749`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 224700,Discounts: 45801,Sales: 178899,COGS: 545250,Profit: 366351,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1318`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 26360,Discounts: 2766.4,Sales: 23593.6,COGS: 19760,Profit: 3833.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2882`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 864600,Discounts: 45801,Sales: 818799,COGS: 545250,Profit: 273549,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3039`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 379875,Discounts: 21875,Sales: 358000,COGS: 300000,Profit: 58000,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2484`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 745200,Discounts: 35742,Sales: 709458,COGS: 425500,Profit: 283958,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3169`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 950700,Discounts: 9408,Sales: 941292,COGS: 112000,Profit: 829292,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 510000,Discounts: 30738.75,Sales: 479261.25,COGS: 421560,Profit: 57701.25,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3943`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 59145,Discounts: 2206.05,Sales: 56938.95,COGS: 21010,Profit: 35928.95,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `784`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11760,Discounts: 3077.55,Sales: 8682.45,COGS: 29310,Profit: 20627.55,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `253`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5060,Discounts: 2149,Sales: 2911,COGS: 15350,Profit: 12439,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1316`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 394800,Discounts: 23583,Sales: 371217,COGS: 280750,Profit: 90467,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `808`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 242400,Discounts: 29484,Sales: 212916,COGS: 351000,Profit: 138084,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3295`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 39540,Discounts: 2320.92,Sales: 37219.08,COGS: 8289,Profit: 28930.08,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `520`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 3640,Discounts: 1041.25,Sales: 2598.75,COGS: 10625,Profit: 8026.25,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `799`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 239700,Discounts: 34839,Sales: 204861,COGS: 414750,Profit: 209889,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3942`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 78840,Discounts: 852.6,Sales: 77987.4,COGS: 6090,Profit: 71897.4,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2498`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 312250,Discounts: 18261.25,Sales: 293988.75,COGS: 250440,Profit: 43548.75,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2517`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 50340,Discounts: 2766.4,Sales: 47573.6,COGS: 19760,Profit: 27813.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3182`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 63640,Discounts: 1989.4,Sales: 61650.6,COGS: 14210,Profit: 47440.6,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1145`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 343500,Discounts: 28812,Sales: 314688,COGS: 343000,Profit: 28312,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `895`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 17900,Discounts: 823.2,Sales: 17076.8,COGS: 5880,Profit: 11196.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3814`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 45768,Discounts: 2725.38,Sales: 43042.62,COGS: 9733.5,Profit: 33309.12,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1188`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 356400,Discounts: 20139,Sales: 336261,COGS: 239750,Profit: 96511,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2233`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 669900,Discounts: 57687,Sales: 612213,COGS: 686750,Profit: 74537,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `421`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 52625,Discounts: 14393.75,Sales: 38231.25,COGS: 197400,Profit: 159168.75,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `269`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 94150,Discounts: 70462,Sales: 23688,COGS: 747760,Profit: 724072,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3766`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 470750,Discounts: 8697.5,Sales: 462052.5,COGS: 119280,Profit: 342772.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `952`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19040,Discounts: 1565.2,Sales: 17474.8,COGS: 11180,Profit: 6294.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2964`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 889200,Discounts: 28812,Sales: 860388,COGS: 343000,Profit: 517388,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1505`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10535,Discounts: 273.28,Sales: 10261.72,COGS: 2440,Profit: 7821.72,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1678`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 33560,Discounts: 2051.2,Sales: 31508.8,COGS: 12820,Profit: 18688.8,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4249`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 29743,Discounts: 143.92,Sales: 29599.08,COGS: 1285,Profit: 28314.08,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1677`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 33540,Discounts: 2051.2,Sales: 31488.8,COGS: 12820,Profit: 18668.8,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3051`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 381375,Discounts: 15400,Sales: 365975,COGS: 184800,Profit: 181175,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3372`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 50580,Discounts: 588,Sales: 49992,COGS: 4900,Profit: 45092,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1686`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 590100,Discounts: 38136,Sales: 551964,COGS: 354120,Profit: 197844,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3086`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 46290,Discounts: 3001.2,Sales: 43288.8,COGS: 25010,Profit: 18278.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4150`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 83000,Discounts: 1132.8,Sales: 81867.2,COGS: 7080,Profit: 74787.2,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3027`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 60540,Discounts: 1032,Sales: 59508,COGS: 6450,Profit: 53058,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4359`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1307700,Discounts: 37488,Sales: 1270212,COGS: 390500,Profit: 879712,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3628`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1088400,Discounts: 30792,Sales: 1057608,COGS: 320750,Profit: 736858,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1589`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 23835,Discounts: 853.2,Sales: 22981.8,COGS: 7110,Profit: 15871.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2679`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 334875,Discounts: 11140,Sales: 323735,COGS: 133680,Profit: 190055,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 23807,Discounts: 705.04,Sales: 23101.96,COGS: 6295,Profit: 16806.96,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2815`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19705,Discounts: 613.2,Sales: 19091.8,COGS: 5475,Profit: 13616.8,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2964`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 59280,Discounts: 2185.6,Sales: 57094.4,COGS: 13660,Profit: 43434.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4173`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1251900,Discounts: 59040,Sales: 1192860,COGS: 615000,Profit: 577860,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1157`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 8099,Discounts: 379.68,Sales: 7719.32,COGS: 3390,Profit: 4329.32,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3065`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21455,Discounts: 894.88,Sales: 20560.12,COGS: 7990,Profit: 12570.12,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1962`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 13734,Discounts: 1349.04,Sales: 12384.96,COGS: 12045,Profit: 339.96,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 81600,Discounts: 3094.4,Sales: 78505.6,COGS: 19340,Profit: 59165.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1713`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34260,Discounts: 4788.8,Sales: 29471.2,COGS: 29930,Profit: 458.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 978250,Discounts: 60088,Sales: 918162,COGS: 557960,Profit: 360202,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4082`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 28574,Discounts: 1089.76,Sales: 27484.24,COGS: 9730,Profit: 17754.24,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1691`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 591850,Discounts: 38136,Sales: 553714,COGS: 354120,Profit: 199594,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2305`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27660,Discounts: 574.08,Sales: 27085.92,COGS: 1794,Profit: 25291.92,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3401`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 23807,Discounts: 1627.92,Sales: 22179.08,COGS: 14535,Profit: 7644.08,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2288`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 16016,Discounts: 1309.28,Sales: 14706.72,COGS: 11690,Profit: 3016.72,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2399`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 719700,Discounts: 9264,Sales: 710436,COGS: 96500,Profit: 613936,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4086`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1225800,Discounts: 15240,Sales: 1210560,COGS: 158750,Profit: 1051810,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2651`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 927850,Discounts: 16086,Sales: 911764,COGS: 149370,Profit: 762394,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3971`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27797,Discounts: 1309.28,Sales: 26487.72,COGS: 11690,Profit: 14797.72,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2512`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 879200,Discounts: 10668,Sales: 868532,COGS: 99060,Profit: 769472,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 960750,Discounts: 11816,Sales: 948934,COGS: 109720,Profit: 839214,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1903`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 570900,Discounts: 51216,Sales: 519684,COGS: 533500,Profit: 13816,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `647`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 194100,Discounts: 19392,Sales: 174708,COGS: 202000,Profit: 27292,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2914`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 58280,Discounts: 1132.8,Sales: 57147.2,COGS: 7080,Profit: 50067.2,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1889`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 13223,Discounts: 1627.92,Sales: 11595.08,COGS: 14535,Profit: 2939.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1466`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 29320,Discounts: 2185.6,Sales: 27134.4,COGS: 13660,Profit: 13474.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `887`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 266100,Discounts: 59040,Sales: 207060,COGS: 615000,Profit: 407940,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `395`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 7900,Discounts: 2432,Sales: 5468,COGS: 15200,Profit: 9732,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1693`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 25395,Discounts: 853.2,Sales: 24541.8,COGS: 7110,Profit: 17431.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2459`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 29508,Discounts: 1320,Sales: 28188,COGS: 4125,Profit: 24063,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2649`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 794700,Discounts: 15240,Sales: 779460,COGS: 158750,Profit: 620710,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3608`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 72160,Discounts: 698.4,Sales: 71461.6,COGS: 4365,Profit: 67096.6,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1073`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 321900,Discounts: 29538,Sales: 292362,COGS: 273500,Profit: 18862,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1754`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 21048,Discounts: 396.36,Sales: 20651.64,COGS: 1101,Profit: 19550.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2167`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 650100,Discounts: 102667.5,Sales: 547432.5,COGS: 950625,Profit: 403192.5,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1319`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 461650,Discounts: 52479,Sales: 409171,COGS: 433160,Profit: 23989,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1679`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 503700,Discounts: 8694,Sales: 495006,COGS: 80500,Profit: 414506,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1252`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 15024,Discounts: 2506.68,Sales: 12517.32,COGS: 6963,Profit: 5554.32,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3493`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 436625,Discounts: 20891.25,Sales: 415733.75,COGS: 222840,Profit: 192893.75,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1697`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 11879,Discounts: 1014.93,Sales: 10864.07,COGS: 8055,Profit: 2809.07,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1156`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 144500,Discounts: 31466.25,Sales: 113033.75,COGS: 335640,Profit: 222606.25,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `726`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 217800,Discounts: 9018,Sales: 208782,COGS: 83500,Profit: 125282,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1153`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 345900,Discounts: 69255,Sales: 276645,COGS: 641250,Profit: 364605,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2720`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 952000,Discounts: 76135.5,Sales: 875864.5,COGS: 628420,Profit: 247444.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 54870,Discounts: 4961.25,Sales: 49908.75,COGS: 36750,Profit: 13158.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2950`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 885000,Discounts: 29538,Sales: 855462,COGS: 273500,Profit: 581962,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1821`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27315,Discounts: 1656.45,Sales: 25658.55,COGS: 12270,Profit: 13388.55,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4174`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 50088,Discounts: 396.36,Sales: 49691.64,COGS: 1101,Profit: 48590.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1127`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 338100,Discounts: 35748,Sales: 302352,COGS: 331000,Profit: 28648,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2209`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 26508,Discounts: 1917,Sales: 24591,COGS: 5325,Profit: 19266,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `862`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 107750,Discounts: 31466.25,Sales: 76283.75,COGS: 335640,Profit: 259356.25,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3805`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 57075,Discounts: 330.75,Sales: 56744.25,COGS: 2450,Profit: 54294.25,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1415`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 424500,Discounts: 102424.5,Sales: 322075.5,COGS: 948375,Profit: 626299.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2231`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 780850,Discounts: 41170.5,Sales: 739679.5,COGS: 339820,Profit: 399859.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3649`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 456125,Discounts: 6378.75,Sales: 449746.25,COGS: 68040,Profit: 381706.25,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2948`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 368500,Discounts: 23737.5,Sales: 344762.5,COGS: 253200,Profit: 91562.5,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3395`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1188250,Discounts: 39973.5,Sales: 1148276.5,COGS: 329940,Profit: 818336.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2650`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31800,Discounts: 2112.48,Sales: 29687.52,COGS: 5868,Profit: 23819.52,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `585`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 175500,Discounts: 71793,Sales: 103707,COGS: 664750,Profit: 561043,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1316`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 460600,Discounts: 42572.25,Sales: 418027.75,COGS: 351390,Profit: 66637.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4459`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 53508,Discounts: 950.4,Sales: 52557.6,COGS: 2640,Profit: 49917.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2711`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 813300,Discounts: 50409,Sales: 762891,COGS: 466750,Profit: 296141,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2621`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31452,Discounts: 2412.72,Sales: 29039.28,COGS: 6702,Profit: 22337.28,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3613`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 54195,Discounts: 1656.45,Sales: 52538.55,COGS: 12270,Profit: 40268.55,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1847`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 230875,Discounts: 9866.25,Sales: 221008.75,COGS: 105240,Profit: 115768.75,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2996`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1048600,Discounts: 65236.5,Sales: 983363.5,COGS: 538460,Profit: 444903.5,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2838`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 993300,Discounts: 39973.5,Sales: 953326.5,COGS: 329940,Profit: 623386.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1302`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 19530,Discounts: 1309.5,Sales: 18220.5,COGS: 9700,Profit: 8520.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1536`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 30720,Discounts: 3049.2,Sales: 27670.8,COGS: 16940,Profit: 10730.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1291`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 25820,Discounts: 1193.4,Sales: 24626.6,COGS: 6630,Profit: 17996.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1213`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 8491,Discounts: 515.97,Sales: 7975.03,COGS: 4095,Profit: 3880.03,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2370`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 28440,Discounts: 1706.4,Sales: 26733.6,COGS: 4740,Profit: 21993.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1979`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 13853,Discounts: 328.23,Sales: 13524.77,COGS: 2605,Profit: 10919.77,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2879`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57580,Discounts: 1751.4,Sales: 55828.6,COGS: 9730,Profit: 46098.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1707`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34140,Discounts: 1868.4,Sales: 32271.6,COGS: 10380,Profit: 21891.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2933`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 20531,Discounts: 226.8,Sales: 20304.2,COGS: 1800,Profit: 18504.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1014`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 12168,Discounts: 2124.36,Sales: 10043.64,COGS: 5901,Profit: 4142.64,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `693`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 10395,Discounts: 3547.8,Sales: 6847.2,COGS: 26280,Profit: 19432.8,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3741`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26187,Discounts: 226.8,Sales: 25960.2,COGS: 1800,Profit: 24160.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3116`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 62320,Discounts: 4827.6,Sales: 57492.4,COGS: 26820,Profit: 30672.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3995`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27965,Discounts: 328.23,Sales: 27636.77,COGS: 2605,Profit: 25031.77,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `953`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19060,Discounts: 1868.4,Sales: 17191.6,COGS: 10380,Profit: 6811.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2530`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 37950,Discounts: 2201.18,Sales: 35748.82,COGS: 16305,Profit: 19443.82,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2565`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 30780,Discounts: 330.48,Sales: 30449.52,COGS: 918,Profit: 29531.52,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `4297`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51564,Discounts: 463.2,Sales: 51100.8,COGS: 1158,Profit: 49942.8,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2871`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20097,Discounts: 1629.6,Sales: 18467.4,COGS: 11640,Profit: 6827.4,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3537`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 42444,Discounts: 463.2,Sales: 41980.8,COGS: 1158,Profit: 40822.8,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1598`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 199750,Discounts: 43068.75,Sales: 156681.25,COGS: 413460,Profit: 256778.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2616`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 327000,Discounts: 18525,Sales: 308475,COGS: 177840,Profit: 130635,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2836`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 992600,Discounts: 80955,Sales: 911645,COGS: 601380,Profit: 310265,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `4023`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 502875,Discounts: 22550,Sales: 480325,COGS: 216480,Profit: 263845,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3994`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 59910,Discounts: 3108,Sales: 56802,COGS: 20720,Profit: 36082,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2928`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58560,Discounts: 3908,Sales: 54652,COGS: 19540,Profit: 35112,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2912`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 873600,Discounts: 17730,Sales: 855870,COGS: 147750,Profit: 708120,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3671`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 55065,Discounts: 3250.5,Sales: 51814.5,COGS: 21670,Profit: 30144.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2778`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 55560,Discounts: 482,Sales: 55078,COGS: 2410,Profit: 52668,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `405`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 6075,Discounts: 1021.5,Sales: 5053.5,COGS: 6810,Profit: 1756.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2013`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 30195,Discounts: 765,Sales: 29430,COGS: 5100,Profit: 24330,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2634`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 39510,Discounts: 1185,Sales: 38325,COGS: 7900,Profit: 30425,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4166`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1458100,Discounts: 22365,Sales: 1435735,COGS: 166140,Profit: 1269595,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `355`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 44375,Discounts: 19950,Sales: 24425,COGS: 191520,Profit: 167095,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2382`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 714600,Discounts: 68820,Sales: 645780,COGS: 573500,Profit: 72280,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `4170`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 83400,Discounts: 482,Sales: 82918,COGS: 2410,Profit: 80508,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `892`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6244,Discounts: 1865.5,Sales: 4378.5,COGS: 13325,Profit: 8946.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2200`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 275000,Discounts: 23950,Sales: 251050,COGS: 229920,Profit: 21130,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3389`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1016700,Discounts: 25590,Sales: 991110,COGS: 213250,Profit: 777860,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2990`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 373750,Discounts: 4262.5,Sales: 369487.5,COGS: 40920,Profit: 328567.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4013`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 60195,Discounts: 961.5,Sales: 59233.5,COGS: 6410,Profit: 52823.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `739`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 258650,Discounts: 98245,Sales: 160405,COGS: 729820,Profit: 569415,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1989`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 596700,Discounts: 12960,Sales: 583740,COGS: 108000,Profit: 475740,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2991`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 897300,Discounts: 68820,Sales: 828480,COGS: 573500,Profit: 254980,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `4237`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 63555,Discounts: 3250.5,Sales: 60304.5,COGS: 21670,Profit: 38634.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1442`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 180250,Discounts: 31612.5,Sales: 148637.5,COGS: 303480,Profit: 154842.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2712`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 949200,Discounts: 65450,Sales: 883750,COGS: 486200,Profit: 397550,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1508`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 188500,Discounts: 7237.5,Sales: 181262.5,COGS: 69480,Profit: 111782.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4245`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1485750,Discounts: 78400,Sales: 1407350,COGS: 582400,Profit: 824950,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2630`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 789000,Discounts: 89790,Sales: 699210,COGS: 748250,Profit: 49040,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1182`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 14184,Discounts: 4224.6,Sales: 9959.4,COGS: 10561.5,Profit: 602.1,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1221`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 24420,Discounts: 4078,Sales: 20342,COGS: 20390,Profit: 48,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `963`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 11556,Discounts: 3088.8,Sales: 8467.2,COGS: 7722,Profit: 745.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3243`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1135050,Discounts: 24745,Sales: 1110305,COGS: 183820,Profit: 926485,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1120`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 16800,Discounts: 3108,Sales: 13692,COGS: 20720,Profit: 7028,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1174`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 352200,Discounts: 25590,Sales: 326610,COGS: 213250,Profit: 113360,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2541`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 30492,Discounts: 1581.36,Sales: 28910.64,COGS: 3594,Profit: 25316.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3246`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 22722,Discounts: 1949.64,Sales: 20772.36,COGS: 12660,Profit: 8112.36,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1531`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 18372,Discounts: 1581.36,Sales: 16790.64,COGS: 3594,Profit: 13196.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2526`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 37890,Discounts: 633.6,Sales: 37256.4,COGS: 3840,Profit: 33416.4,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1136`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 13632,Discounts: 623.04,Sales: 13008.96,COGS: 1416,Profit: 11592.96,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1983`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 13881,Discounts: 1215.83,Sales: 12665.17,COGS: 7895,Profit: 4770.17,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3259`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 39108,Discounts: 1326.6,Sales: 37781.4,COGS: 3015,Profit: 34766.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `3267`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 49005,Discounts: 5279.17,Sales: 43725.82,COGS: 31995,Profit: 11730.82,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `2454`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 29448,Discounts: 623.04,Sales: 28824.96,COGS: 1416,Profit: 27408.96,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `2643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 31716,Discounts: 2556.84,Sales: 29159.16,COGS: 5811,Profit: 23348.16,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `383`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 134050,Discounts: 30492,Sales: 103558,COGS: 205920,Profit: 102362,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2801`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 840300,Discounts: 92763,Sales: 747537,COGS: 702750,Profit: 44787,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1667`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 208375,Discounts: 33563.75,Sales: 174811.25,COGS: 292920,Profit: 118108.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3539`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53085,Discounts: 2574,Sales: 50511,COGS: 15600,Profit: 34911,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `4226`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 29582,Discounts: 2083.62,Sales: 27498.38,COGS: 13530,Profit: 13968.38,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2220`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 777000,Discounts: 29491,Sales: 747509,COGS: 199160,Profit: 548349,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `776`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15520,Discounts: 6582.4,Sales: 8937.6,COGS: 29920,Profit: 20982.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `553`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 8295,Discounts: 3559.05,Sales: 4735.95,COGS: 21570,Profit: 16834.05,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2107`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 632100,Discounts: 28809,Sales: 603291,COGS: 218250,Profit: 385041,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2468`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 49360,Discounts: 2468.4,Sales: 46891.6,COGS: 11220,Profit: 35671.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1905`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 666750,Discounts: 81023.25,Sales: 585726.75,COGS: 547170,Profit: 38556.75,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 43896,Discounts: 5314.32,Sales: 38581.68,COGS: 12078,Profit: 26503.68,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4301`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 51612,Discounts: 3201.66,Sales: 48410.34,COGS: 7276.5,Profit: 41133.84,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2446`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 48920,Discounts: 5266.8,Sales: 43653.2,COGS: 23940,Profit: 19713.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4209`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 63135,Discounts: 3273.6,Sales: 59861.4,COGS: 19840,Profit: 40021.4,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3353`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 419125,Discounts: 33563.75,Sales: 385561.25,COGS: 292920,Profit: 92641.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1401`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 28020,Discounts: 6582.4,Sales: 21437.6,COGS: 29920,Profit: 8482.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1865`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 559500,Discounts: 45078,Sales: 514422,COGS: 341500,Profit: 172922,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `463`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 9260,Discounts: 6171,Sales: 3089,COGS: 28050,Profit: 24961,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4177`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 62655,Discounts: 1080.75,Sales: 61574.25,COGS: 6550,Profit: 55024.25,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2523`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 883050,Discounts: 13244,Sales: 869806,COGS: 89440,Profit: 780366,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1930`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 13510,Discounts: 1392.16,Sales: 12117.84,COGS: 9040,Profit: 3077.84,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1301`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 15612,Discounts: 2288.88,Sales: 13323.12,COGS: 5202,Profit: 8121.12,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4125`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 515625,Discounts: 7617.5,Sales: 508007.5,COGS: 66480,Profit: 441527.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `607`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 12140,Discounts: 6457,Sales: 5683,COGS: 29350,Profit: 23667,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `478`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 59750,Discounts: 43518.75,Sales: 16231.25,COGS: 379800,Profit: 363568.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4489`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 89780,Discounts: 5783.8,Sales: 83996.2,COGS: 26290,Profit: 57706.2,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1504`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 188000,Discounts: 19703.75,Sales: 168296.25,COGS: 171960,Profit: 3663.75,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `3763`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 470375,Discounts: 13021.25,Sales: 457353.75,COGS: 113640,Profit: 343713.75,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2412`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 844200,Discounts: 13244,Sales: 830956,COGS: 89440,Profit: 741516,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2342`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 35130,Discounts: 3559.05,Sales: 31570.95,COGS: 21570,Profit: 10000.95,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4451`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 31157,Discounts: 292.6,Sales: 30864.4,COGS: 1900,Profit: 28964.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3796`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1328600,Discounts: 37212,Sales: 1291388,COGS: 230360,Profit: 1061028,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `2286`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 285750,Discounts: 36240,Sales: 249510,COGS: 289920,Profit: 40410,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3614`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 451750,Discounts: 32340,Sales: 419410,COGS: 258720,Profit: 160690,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1716`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 25740,Discounts: 4840.2,Sales: 20899.8,COGS: 26890,Profit: 5990.2,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1301`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 19515,Discounts: 1218.6,Sales: 18296.4,COGS: 6770,Profit: 11526.4,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4175`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1252500,Discounts: 63828,Sales: 1188672,COGS: 443250,Profit: 745422,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `975`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 6825,Discounts: 2032.8,Sales: 4792.2,COGS: 12100,Profit: 7307.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1154`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 8078,Discounts: 2296.56,Sales: 5781.44,COGS: 13670,Profit: 7888.56,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1873`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 37460,Discounts: 4116,Sales: 33344,COGS: 17150,Profit: 16194,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3766`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1129800,Discounts: 42696,Sales: 1087104,COGS: 296500,Profit: 790604,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3558`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1067400,Discounts: 125820,Sales: 941580,COGS: 873750,Profit: 67830,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3156`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1104600,Discounts: 37212,Sales: 1067388,COGS: 230360,Profit: 837028,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2994`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 374250,Discounts: 32340,Sales: 341910,COGS: 258720,Profit: 83190,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 41740,Discounts: 2172,Sales: 39568,COGS: 9050,Profit: 30518,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1056`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 21120,Discounts: 4116,Sales: 17004,COGS: 17150,Profit: 146,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1353`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 473550,Discounts: 66948,Sales: 406602,COGS: 414440,Profit: 7838,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `416`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 124800,Discounts: 48924,Sales: 75876,COGS: 339750,Profit: 263874,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3880`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1164000,Discounts: 77400,Sales: 1086600,COGS: 537500,Profit: 549100,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `809`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 283150,Discounts: 50274,Sales: 232876,COGS: 311220,Profit: 78344,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1892`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 28380,Discounts: 684,Sales: 27696,COGS: 3800,Profit: 23896,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2072`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 41440,Discounts: 2959.2,Sales: 38480.8,COGS: 12330,Profit: 26150.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3052`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1068200,Discounts: 58590,Sales: 1009610,COGS: 362700,Profit: 646910,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3121`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1092350,Discounts: 41412,Sales: 1050938,COGS: 256360,Profit: 794578,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2059`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 41180,Discounts: 2172,Sales: 39008,COGS: 9050,Profit: 29958,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4254`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 51048,Discounts: 3036.96,Sales: 48011.04,COGS: 6327,Profit: 41684.04,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1293`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 19395,Discounts: 6974.1,Sales: 12420.9,COGS: 38745,Profit: 26324.1,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1293`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 452550,Discounts: 26166,Sales: 426384,COGS: 161980,Profit: 264404,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `230`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 80500,Discounts: 41412,Sales: 39088,COGS: 256360,Profit: 217272,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1723`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 215375,Discounts: 35805,Sales: 179570,COGS: 286440,Profit: 106870,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `240`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 4800,Discounts: 2959.2,Sales: 1840.8,COGS: 12330,Profit: 10489.2,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2571`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 899850,Discounts: 11340,Sales: 888510,COGS: 70200,Profit: 818310,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1661`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 11627,Discounts: 2874.06,Sales: 8752.94,COGS: 17107.5,Profit: 8354.56,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4474`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31318,Discounts: 2296.56,Sales: 29021.44,COGS: 13670,Profit: 15351.44,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `833`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 12495,Discounts: 4586.4,Sales: 7908.6,COGS: 25480,Profit: 17571.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `674`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 13480,Discounts: 6051.6,Sales: 7428.4,COGS: 25215,Profit: 17786.6,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `778`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 9336,Discounts: 3831.84,Sales: 5504.16,COGS: 7983,Profit: 2478.84,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1457`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 29140,Discounts: 3674.4,Sales: 25465.6,COGS: 15310,Profit: 10155.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3158`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 22106,Discounts: 1252.44,Sales: 20853.56,COGS: 7455,Profit: 13398.56,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4095`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 81900,Discounts: 3674.4,Sales: 78225.6,COGS: 15310,Profit: 62915.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3170`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 38040,Discounts: 3975.84,Sales: 34064.16,COGS: 8283,Profit: 25781.16,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `493`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 7395,Discounts: 5005.65,Sales: 2389.35,COGS: 25670,Profit: 23280.65,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3286`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 49290,Discounts: 5005.65,Sales: 44284.35,COGS: 25670,Profit: 18614.35,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3563`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1247050,Discounts: 41996.5,Sales: 1205053.5,COGS: 239980,Profit: 965073.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4109`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1438150,Discounts: 81445,Sales: 1356705,COGS: 465400,Profit: 891305,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `3653`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 73060,Discounts: 1149.2,Sales: 71910.8,COGS: 4420,Profit: 67490.8,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2203`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 771050,Discounts: 44703.75,Sales: 726346.25,COGS: 255450,Profit: 470896.25,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2924`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20468,Discounts: 1181.18,Sales: 19286.82,COGS: 6490,Profit: 12796.82,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2650`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 31800,Discounts: 942.24,Sales: 30857.76,COGS: 1812,Profit: 29045.76,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1194`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 23880,Discounts: 5863,Sales: 18017,COGS: 22550,Profit: 4533,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3366`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 67320,Discounts: 3247.4,Sales: 64072.6,COGS: 12490,Profit: 51582.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 9275,Discounts: 1309.04,Sales: 7965.97,COGS: 7192.5,Profit: 773.47,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4243`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1272900,Discounts: 31473,Sales: 1241427,COGS: 201750,Profit: 1039677,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2887`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57740,Discounts: 6866.6,Sales: 50873.4,COGS: 26410,Profit: 24463.4,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3839`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 76780,Discounts: 7040.8,Sales: 69739.2,COGS: 27080,Profit: 42659.2,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1863`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 652050,Discounts: 119756,Sales: 532294,COGS: 684320,Profit: 152026,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2858`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 357250,Discounts: 25723.75,Sales: 331526.25,COGS: 189960,Profit: 141566.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2868`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34416,Discounts: 890.76,Sales: 33525.24,COGS: 1713,Profit: 31812.24,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3805`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 26635,Discounts: 2453.36,Sales: 24181.64,COGS: 13480,Profit: 10701.64,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3914`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 58710,Discounts: 3051.75,Sales: 55658.25,COGS: 15650,Profit: 40008.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `524`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 10480,Discounts: 3247.4,Sales: 7232.6,COGS: 12490,Profit: 5257.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3095`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1083250,Discounts: 16243.5,Sales: 1067006.5,COGS: 92820,Profit: 974186.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2410`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28920,Discounts: 1580.28,Sales: 27339.72,COGS: 3039,Profit: 24300.72,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4263`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 63945,Discounts: 7795.13,Sales: 56149.88,COGS: 39975,Profit: 16174.88,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2239`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 783650,Discounts: 119756,Sales: 663894,COGS: 684320,Profit: 20426,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `569`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3983,Discounts: 1082.9,Sales: 2900.1,COGS: 5950,Profit: 3049.9,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3889`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 46668,Discounts: 942.24,Sales: 45725.76,COGS: 1812,Profit: 43913.76,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1378`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20670,Discounts: 1287,Sales: 19383,COGS: 6600,Profit: 12783,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2253`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27036,Discounts: 639.6,Sales: 26396.4,COGS: 1230,Profit: 25166.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3202`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 960600,Discounts: 101595,Sales: 859005,COGS: 651250,Profit: 207755,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 46020,Discounts: 1580.28,Sales: 44439.72,COGS: 3039,Profit: 41400.72,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `2487`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 310875,Discounts: 25723.75,Sales: 285151.25,COGS: 189960,Profit: 95191.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4428`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 66420,Discounts: 3051.75,Sales: 63368.25,COGS: 15650,Profit: 47718.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1200`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 150000,Discounts: 26958.75,Sales: 123041.25,COGS: 199080,Profit: 76038.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2953`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 20671,Discounts: 1082.9,Sales: 19588.1,COGS: 5950,Profit: 13638.1,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1453`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 17436,Discounts: 639.6,Sales: 16796.4,COGS: 1230,Profit: 15566.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `865`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 10380,Discounts: 2761.2,Sales: 7618.8,COGS: 5310,Profit: 2308.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1072`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 21440,Discounts: 7221.2,Sales: 14218.8,COGS: 25790,Profit: 11571.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1737`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 34740,Discounts: 4880.4,Sales: 29859.6,COGS: 17430,Profit: 12429.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1535`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 10745,Discounts: 2936.08,Sales: 7808.92,COGS: 14980,Profit: 7171.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2532`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17724,Discounts: 274.4,Sales: 17449.6,COGS: 1400,Profit: 16049.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1765`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 12355,Discounts: 287.14,Sales: 12067.86,COGS: 1465,Profit: 10602.86,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1567`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10969,Discounts: 2936.08,Sales: 8032.92,COGS: 14980,Profit: 6947.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2640`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 39600,Discounts: 583.8,Sales: 39016.2,COGS: 2780,Profit: 36236.2,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3079`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 61580,Discounts: 6798.4,Sales: 54781.6,COGS: 24280,Profit: 30501.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4130`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 61950,Discounts: 3710.7,Sales: 58239.3,COGS: 17670,Profit: 40569.3,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 35256,Discounts: 2340.24,Sales: 32915.76,COGS: 4179,Profit: 28736.76,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3080`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21560,Discounts: 274.4,Sales: 21285.6,COGS: 1400,Profit: 19885.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1530`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 18360,Discounts: 2340.24,Sales: 16019.76,COGS: 4179,Profit: 11840.76,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `3537`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 42444,Discounts: 3385.2,Sales: 39058.8,COGS: 6045,Profit: 33013.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `2021`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 606300,Discounts: 33642,Sales: 572658,COGS: 200250,Profit: 372408,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1804`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 225500,Discounts: 17902.5,Sales: 207597.5,COGS: 122760,Profit: 84837.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1014`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 304200,Discounts: 62832,Sales: 241368,COGS: 374000,Profit: 132632,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2913`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 873900,Discounts: 42420,Sales: 831480,COGS: 252500,Profit: 578980,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `763`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 11445,Discounts: 3177.3,Sales: 8267.7,COGS: 15130,Profit: 6862.3,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1425`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21375,Discounts: 4830,Sales: 16545,COGS: 23000,Profit: 6455,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `4357`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 544625,Discounts: 49367.5,Sales: 495257.5,COGS: 338520,Profit: 156737.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2138`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 748300,Discounts: 109147.5,Sales: 639152.5,COGS: 579150,Profit: 60002.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3825`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1338750,Discounts: 58751,Sales: 1279999,COGS: 311740,Profit: 968259,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3393`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1187550,Discounts: 9800,Sales: 1177750,COGS: 52000,Profit: 1125750,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2215`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 15505,Discounts: 380.24,Sales: 15124.76,COGS: 1940,Profit: 13184.76,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2278`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 15946,Discounts: 1692.46,Sales: 14253.54,COGS: 8635,Profit: 5618.54,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `403`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 6045,Discounts: 4830,Sales: 1215,COGS: 23000,Profit: 21785,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `289`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5780,Discounts: 728,Sales: 5052,COGS: 2600,Profit: 2452,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `749`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11235,Discounts: 5187,Sales: 6048,COGS: 24700,Profit: 18652,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `372`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 5580,Discounts: 3660.3,Sales: 1919.7,COGS: 17430,Profit: 15510.3,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3781`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 45372,Discounts: 4895.52,Sales: 40476.48,COGS: 8742,Profit: 31734.48,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1785`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 12495,Discounts: 1696.38,Sales: 10798.62,COGS: 8655,Profit: 2143.62,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4029`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1410150,Discounts: 34300,Sales: 1375850,COGS: 182000,Profit: 1193850,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2813`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 33756,Discounts: 3732.96,Sales: 30023.04,COGS: 6666,Profit: 23357.04,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2150`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 752500,Discounts: 57673,Sales: 694827,COGS: 306020,Profit: 388807,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2093`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 732550,Discounts: 94178,Sales: 638372,COGS: 499720,Profit: 138652,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4391`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 548875,Discounts: 27562.5,Sales: 521312.5,COGS: 189000,Profit: 332312.5,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2695`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 53900,Discounts: 1696.8,Sales: 52203.2,COGS: 6060,Profit: 46143.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1337`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 401100,Discounts: 103320,Sales: 297780,COGS: 615000,Profit: 317220,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2621`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 786300,Discounts: 11298,Sales: 775002,COGS: 67250,Profit: 707752,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3735`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1120500,Discounts: 106512,Sales: 1013988,COGS: 634000,Profit: 379988,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4320`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 30240,Discounts: 2844.94,Sales: 27395.06,COGS: 14515,Profit: 12880.06,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2828`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 848400,Discounts: 106722,Sales: 741678,COGS: 635250,Profit: 106428,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `2586`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 775800,Discounts: 11298,Sales: 764502,COGS: 67250,Profit: 697252,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1248`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 374400,Discounts: 62832,Sales: 311568,COGS: 374000,Profit: 62432,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `4035`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1210500,Discounts: 42420,Sales: 1168080,COGS: 252500,Profit: 915580,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `359`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 125650,Discounts: 62769,Sales: 62881,COGS: 333060,Profit: 270179,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3926`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1177800,Discounts: 37296,Sales: 1140504,COGS: 222000,Profit: 918504,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `4247`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 530875,Discounts: 49770,Sales: 481105,COGS: 341280,Profit: 139825,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2695`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 32340,Discounts: 4158,Sales: 28182,COGS: 7425,Profit: 20757,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1104`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 16560,Discounts: 3660.3,Sales: 12899.7,COGS: 17430,Profit: 4530.3,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1449`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 17388,Discounts: 4895.52,Sales: 12492.48,COGS: 8742,Profit: 3750.48,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1131`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7917,Discounts: 1696.38,Sales: 6220.62,COGS: 8655,Profit: 2434.38,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1468`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 10276,Discounts: 1692.46,Sales: 8583.54,COGS: 8635,Profit: 51.46,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1272`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 19080,Discounts: 3927,Sales: 15153,COGS: 18700,Profit: 3547,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1403`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 175375,Discounts: 22012.5,Sales: 153362.5,COGS: 140880,Profit: 12482.5,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2161`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 270125,Discounts: 51881.25,Sales: 218243.75,COGS: 332040,Profit: 113796.25,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1937`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 242125,Discounts: 20343.75,Sales: 221781.25,COGS: 130200,Profit: 91581.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2879`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 863700,Discounts: 24570,Sales: 839130,COGS: 136500,Profit: 702630,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1330`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 26600,Discounts: 3474,Sales: 23126,COGS: 11580,Profit: 11546,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2426`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 36390,Discounts: 3631.5,Sales: 32758.5,COGS: 16140,Profit: 16618.5,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2033`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14231,Discounts: 2661.75,Sales: 11569.25,COGS: 12675,Profit: 1105.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2029`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 710150,Discounts: 149677.5,Sales: 560472.5,COGS: 741260,Profit: 180787.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1049`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 15735,Discounts: 5757.75,Sales: 9977.25,COGS: 25590,Profit: 15612.75,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1062`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 21240,Discounts: 801,Sales: 20439,COGS: 2670,Profit: 17769,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2509`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 313625,Discounts: 20343.75,Sales: 293281.25,COGS: 130200,Profit: 163081.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1743`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 26145,Discounts: 2643.75,Sales: 23501.25,COGS: 11750,Profit: 11751.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3418`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1196300,Discounts: 105367.5,Sales: 1090932.5,COGS: 521820,Profit: 569112.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1751`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 612850,Discounts: 112927.5,Sales: 499922.5,COGS: 559260,Profit: 59337.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3228`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 38736,Discounts: 1645.2,Sales: 37090.8,COGS: 2742,Profit: 34348.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1105`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 22100,Discounts: 879,Sales: 21221,COGS: 2930,Profit: 18291,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2778`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 33336,Discounts: 900,Sales: 32436,COGS: 1500,Profit: 30936,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1173`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 17595,Discounts: 6358.5,Sales: 11236.5,COGS: 28260,Profit: 17023.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3160`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 395000,Discounts: 12431.25,Sales: 382568.75,COGS: 79560,Profit: 303008.75,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `4322`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1296600,Discounts: 115830,Sales: 1180770,COGS: 643500,Profit: 537270,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1901`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 237625,Discounts: 45712.5,Sales: 191912.5,COGS: 292560,Profit: 100647.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2980`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35760,Discounts: 1645.2,Sales: 34114.8,COGS: 2742,Profit: 31372.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4068`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 81360,Discounts: 2596.5,Sales: 78763.5,COGS: 8655,Profit: 70108.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2105`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 31575,Discounts: 1107,Sales: 30468,COGS: 4920,Profit: 25548,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1647`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 32940,Discounts: 801,Sales: 32139,COGS: 2670,Profit: 29469,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `235`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 3525,Discounts: 2643.75,Sales: 881.25,COGS: 11750,Profit: 10868.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3617`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 452125,Discounts: 55387.5,Sales: 396737.5,COGS: 354480,Profit: 42257.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2106`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 263250,Discounts: 10350,Sales: 252900,COGS: 66240,Profit: 186660,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2351`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 47020,Discounts: 879,Sales: 46141,COGS: 2930,Profit: 43211,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1897`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 569100,Discounts: 111375,Sales: 457725,COGS: 618750,Profit: 161025,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `647`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 194100,Discounts: 24570,Sales: 169530,COGS: 136500,Profit: 33030,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3621`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 25347,Discounts: 1436.4,Sales: 23910.6,COGS: 6840,Profit: 17070.6,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3221`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 22547,Discounts: 759.15,Sales: 21787.85,COGS: 3615,Profit: 18172.85,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `493`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 5916,Discounts: 3250.8,Sales: 2665.2,COGS: 5418,Profit: 2752.8,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - } -} - export class SalesDataItem { public constructor(init: Partial) { Object.assign(this, init); @@ -1054,7 +5,7 @@ export class SalesDataItem { public Country: string; public Product: string; - public UnitsSold: string; + public UnitsSold: number; public ManufacturingPrice: number; public SalePrice: number; public GrossSales: number; @@ -1063,8 +14,16690 @@ export class SalesDataItem { public COGS: number; public Profit: number; public Date: string; - public MonthName: string; + public Month: string; public Year: string; } -//end data \ No newline at end of file +export class SalesData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 501, + ManufacturingPrice: 15, + SalePrice: 23, + GrossSales: 26440, + Discounts: 0, + Sales: 26440, + COGS: 16185, + Profit: 11255, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1372, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 27440, + Discounts: 0, + Sales: 27440, + COGS: 16185, + Profit: 11255, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2762, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 55240, + Discounts: 0, + Sales: 55240, + COGS: 13210, + Profit: 42030, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1464, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 21960, + Discounts: 0, + Sales: 21960, + COGS: 21780, + Profit: 180, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 719, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 10785, + Discounts: 0, + Sales: 10785, + COGS: 8880, + Profit: 1905, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3576, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 53640, + Discounts: 0, + Sales: 53640, + COGS: 24700, + Profit: 28940, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 4422, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1547700, + Discounts: 0, + Sales: 1547700, + COGS: 393380, + Profit: 1154320, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3649, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 54735, + Discounts: 0, + Sales: 54735, + COGS: 9210, + Profit: 45525, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4172, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 50064, + Discounts: 0, + Sales: 50064, + COGS: 7554, + Profit: 42510, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3841, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 76820, + Discounts: 0, + Sales: 76820, + COGS: 18990, + Profit: 57830, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3726, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 44712, + Discounts: 0, + Sales: 44712, + COGS: 4635, + Profit: 40077, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2625, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 39375, + Discounts: 0, + Sales: 39375, + COGS: 24700, + Profit: 14675, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1958, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 244750, + Discounts: 0, + Sales: 244750, + COGS: 319860, + Profit: 75110, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 3271, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 981300, + Discounts: 0, + Sales: 981300, + COGS: 239500, + Profit: 741800, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2091, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 14637, + Discounts: 0, + Sales: 14637, + COGS: 10730, + Profit: 3907, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2825, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 42375, + Discounts: 0, + Sales: 42375, + COGS: 6150, + Profit: 36225, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2513, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 50260, + Discounts: 0, + Sales: 50260, + COGS: 2920, + Profit: 47340, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 883, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 13245, + Discounts: 0, + Sales: 13245, + COGS: 9740, + Profit: 3505, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2087, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 25044, + Discounts: 0, + Sales: 25044, + COGS: 7554, + Profit: 17490, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2563, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 897050, + Discounts: 0, + Sales: 897050, + COGS: 261560, + Profit: 635490, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2846, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 34152, + Discounts: 0, + Sales: 34152, + COGS: 1101, + Profit: 33051, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 997, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 6979, + Discounts: 0, + Sales: 6979, + COGS: 4415, + Profit: 2564, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2290, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 34350, + Discounts: 0, + Sales: 34350, + COGS: 24720, + Profit: 9630, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2133, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14931, + Discounts: 0, + Sales: 14931, + COGS: 5715, + Profit: 9216, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3617, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 72340, + Discounts: 0, + Sales: 72340, + COGS: 18170, + Profit: 54170, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1266, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 443100, + Discounts: 0, + Sales: 443100, + COGS: 393380, + Profit: 49720, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 894, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 6258, + Discounts: 0, + Sales: 6258, + COGS: 7465, + Profit: 1207, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 2725, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 340625, + Discounts: 0, + Sales: 340625, + COGS: 216480, + Profit: 124145, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3061, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 36732, + Discounts: 0, + Sales: 36732, + COGS: 6483, + Profit: 30249, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3958, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1385300, + Discounts: 0, + Sales: 1385300, + COGS: 261560, + Profit: 1123740, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3920, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 47040, + Discounts: 0, + Sales: 47040, + COGS: 4635, + Profit: 42405, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3381, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 422625, + Discounts: 0, + Sales: 422625, + COGS: 338520, + Profit: 84105, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4307, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 1292100, + Discounts: 0, + Sales: 1292100, + COGS: 500250, + Profit: 791850, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 878, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10536, + Discounts: 0, + Sales: 10536, + COGS: 8514, + Profit: 2022, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 496, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 7440, + Discounts: 0, + Sales: 7440, + COGS: 21780, + Profit: 14340, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3367, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 50505, + Discounts: 0, + Sales: 50505, + COGS: 8880, + Profit: 41625, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2055, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 616500, + Discounts: 0, + Sales: 616500, + COGS: 537750, + Profit: 78750, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4041, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 80820, + Discounts: 0, + Sales: 80820, + COGS: 18170, + Profit: 62650, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 3237, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1132950, + Discounts: 0, + Sales: 1132950, + COGS: 715000, + Profit: 417950, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 630, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 7560, + Discounts: 0, + Sales: 7560, + COGS: 5859, + Profit: 1701, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4210, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 526250, + Discounts: 0, + Sales: 526250, + COGS: 506340, + Profit: 19910, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1127, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 22540, + Discounts: 0, + Sales: 22540, + COGS: 18990, + Profit: 3550, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 3438, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 24066, + Discounts: 0, + Sales: 24066, + COGS: 8430, + Profit: 15636, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2015, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 24180, + Discounts: 0, + Sales: 24180, + COGS: 6423, + Profit: 17757, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2534, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 17738, + Discounts: 0, + Sales: 17738, + COGS: 5715, + Profit: 12023, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1384, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 20760, + Discounts: 0, + Sales: 20760, + COGS: 6150, + Profit: 14610, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3561, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 24927, + Discounts: 276.15, + Sales: 24650.85, + COGS: 19725, + Profit: 4925.85, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1823, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27345, + Discounts: 344.4, + Sales: 27000.6, + COGS: 22960, + Profit: 4040.6, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2795, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19565, + Discounts: 72.1, + Sales: 19492.9, + COGS: 5150, + Profit: 14342.9, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 457, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 3199, + Discounts: 44.73, + Sales: 3154.27, + COGS: 3195, + Profit: 40.73, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3785, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26495, + Discounts: 92.82, + Sales: 26402.18, + COGS: 6630, + Profit: 19772.18, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 748, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 8976, + Discounts: 222.96, + Sales: 8753.04, + COGS: 5574, + Profit: 3179.04, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1021, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 357350, + Discounts: 4235, + Sales: 353115, + COGS: 314600, + Profit: 38515, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2076, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 14532, + Discounts: 177.03, + Sales: 14354.97, + COGS: 12645, + Profit: 1709.97, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 4316, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 51792, + Discounts: 173.4, + Sales: 51618.6, + COGS: 4335, + Profit: 47283.6, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 4174, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50088, + Discounts: 320.52, + Sales: 49767.48, + COGS: 8013, + Profit: 41754.48, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3736, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1307600, + Discounts: 4889.5, + Sales: 1302710.5, + COGS: 363220, + Profit: 939490.5, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1914, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 669900, + Discounts: 7542.5, + Sales: 662357.5, + COGS: 560300, + Profit: 102057.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2742, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 41130, + Discounts: 332.1, + Sales: 40797.9, + COGS: 22140, + Profit: 18657.9, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1499, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 449700, + Discounts: 6903, + Sales: 442797, + COGS: 575250, + Profit: 132453, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3772, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 75440, + Discounts: 275.1, + Sales: 75164.9, + COGS: 13755, + Profit: 61409.9, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1112, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 7784, + Discounts: 128.1, + Sales: 7655.9, + COGS: 9150, + Profit: 1494.1, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2368, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 35520, + Discounts: 227.1, + Sales: 35292.9, + COGS: 15140, + Profit: 20152.9, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1586, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 11102, + Discounts: 314.48, + Sales: 10787.52, + COGS: 22462.5, + Profit: 11674.98, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3386, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 423250, + Discounts: 908.75, + Sales: 422341.25, + COGS: 87240, + Profit: 335101.25, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 852, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 106500, + Discounts: 983.75, + Sales: 105516.25, + COGS: 94440, + Profit: 11076.25, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2783, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 347875, + Discounts: 2278.75, + Sales: 345596.25, + COGS: 218760, + Profit: 126836.25, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2684, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 40260, + Discounts: 112.05, + Sales: 40147.95, + COGS: 7470, + Profit: 32677.95, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4083, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1224900, + Discounts: 8715, + Sales: 1216185, + COGS: 726250, + Profit: 489935, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2816, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 985600, + Discounts: 7542.5, + Sales: 978057.5, + COGS: 560300, + Profit: 417757.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 4294, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 85880, + Discounts: 772.8, + Sales: 85107.2, + COGS: 38640, + Profit: 46467.2, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2856, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 19992, + Discounts: 25.34, + Sales: 19966.66, + COGS: 1810, + Profit: 18156.66, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1407, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 175875, + Discounts: 1153.75, + Sales: 174721.25, + COGS: 110760, + Profit: 63961.25, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1265, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 8855, + Discounts: 18.41, + Sales: 8836.59, + COGS: 1315, + Profit: 7521.59, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3892, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1362200, + Discounts: 3302.25, + Sales: 1358897.75, + COGS: 245310, + Profit: 1113587.75, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 3068, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 383500, + Discounts: 908.75, + Sales: 382591.25, + COGS: 87240, + Profit: 295351.25, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2181, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 272625, + Discounts: 983.75, + Sales: 271641.25, + COGS: 94440, + Profit: 177201.25, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1356, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 406800, + Discounts: 2958, + Sales: 403842, + COGS: 246500, + Profit: 177201.25, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1814, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 634900, + Discounts: 4889.5, + Sales: 630010.5, + COGS: 363220, + Profit: 266790.5, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1495, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 186875, + Discounts: 2180, + Sales: 184695, + COGS: 209280, + Profit: 24585, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1463, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 182875, + Discounts: 1856.25, + Sales: 181018.75, + COGS: 89100, + Profit: 91918.75, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 215, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 2580, + Discounts: 310.8, + Sales: 2269.2, + COGS: 3885, + Profit: 1615.8, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 566, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 198100, + Discounts: 19964, + Sales: 178136, + COGS: 741520, + Profit: 563384, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 3255, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 39060, + Discounts: 274.08, + Sales: 38785.92, + COGS: 3426, + Profit: 35359.92, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 772, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 15440, + Discounts: 626.4, + Sales: 14813.6, + COGS: 15660, + Profit: 846.4, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1135, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13620, + Discounts: 165.6, + Sales: 13454.4, + COGS: 2070, + Profit: 11384.4, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1193, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 17895, + Discounts: 708.9, + Sales: 17186.1, + COGS: 23630, + Profit: 6443.9, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2530, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 759000, + Discounts: 5508, + Sales: 753492, + COGS: 229500, + Profit: 523992, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3451, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1035300, + Discounts: 10368, + Sales: 1024932, + COGS: 432000, + Profit: 592932, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3059, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 36708, + Discounts: 274.08, + Sales: 36433.92, + COGS: 3426, + Profit: 33007.92, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3957, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 494625, + Discounts: 1655, + Sales: 492970, + COGS: 79440, + Profit: 413530, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3444, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 41328, + Discounts: 310.8, + Sales: 41017.2, + COGS: 3885, + Profit: 37132.2, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3154, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 946200, + Discounts: 11496, + Sales: 934704, + COGS: 479000, + Profit: 455704, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4108, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1437800, + Discounts: 19964, + Sales: 1417836, + COGS: 741520, + Profit: 676316, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3760, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 470000, + Discounts: 6822.5, + Sales: 463177.5, + COGS: 327480, + Profit: 135697.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2334, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 28008, + Discounts: 253.2, + Sales: 27754.8, + COGS: 3165, + Profit: 24589.8, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 580, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 6960, + Discounts: 260.16, + Sales: 6699.84, + COGS: 3252, + Profit: 3447.84, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2610, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 52200, + Discounts: 626.4, + Sales: 51573.6, + COGS: 15660, + Profit: 35913.6, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 1459, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 510650, + Discounts: 20139, + Sales: 490511, + COGS: 748020, + Profit: 257509, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3774, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 45288, + Discounts: 253.2, + Sales: 45034.8, + COGS: 3165, + Profit: 41869.8, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2572, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 30864, + Discounts: 260.16, + Sales: 30603.84, + COGS: 3252, + Profit: 27351.84, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 320, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 40000, + Discounts: 1655, + Sales: 38345, + COGS: 79440, + Profit: 41095, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3275, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1146250, + Discounts: 20139, + Sales: 1126111, + COGS: 748020, + Profit: 378091, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3582, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 447750, + Discounts: 6822.5, + Sales: 440927.5, + COGS: 327480, + Profit: 113447.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4056, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1216800, + Discounts: 1554, + Sales: 1215246, + COGS: 64750, + Profit: 1150496, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2144, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 643200, + Discounts: 6606, + Sales: 636594, + COGS: 275250, + Profit: 361344, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 3502, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 437750, + Discounts: 5690, + Sales: 432060, + COGS: 273120, + Profit: 158940, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 679, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 13580, + Discounts: 494.4, + Sales: 13085.6, + COGS: 12360, + Profit: 725.6, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2351, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 47020, + Discounts: 376.4, + Sales: 46643.6, + COGS: 9410, + Profit: 37233.6, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2043, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 612900, + Discounts: 11496, + Sales: 601404, + COGS: 479000, + Profit: 122404, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 3565, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 445625, + Discounts: 15913.13, + Sales: 429711.88, + COGS: 509220, + Profit: 79508.13, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1401, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 28020, + Discounts: 1548, + Sales: 26472, + COGS: 25800, + Profit: 672, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2077, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 623100, + Discounts: 6201, + Sales: 616899, + COGS: 172250, + Profit: 444649, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 3643, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 43716, + Discounts: 700.92, + Sales: 43015.08, + COGS: 5841, + Profit: 37174.08, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2960, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20720, + Discounts: 411.18, + Sales: 20308.82, + COGS: 9790, + Profit: 10518.82, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1201, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 14412, + Discounts: 684.36, + Sales: 13727.64, + COGS: 5703, + Profit: 8024.64, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 2321, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 16247, + Discounts: 114.24, + Sales: 16132.76, + COGS: 2720, + Profit: 13412.76, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3972, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 496500, + Discounts: 4826.25, + Sales: 491673.75, + COGS: 154440, + Profit: 337233.75, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3878, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 484750, + Discounts: 6397.5, + Sales: 478352.5, + COGS: 204720, + Profit: 273632.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2278, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 683400, + Discounts: 21910.5, + Sales: 661489.5, + COGS: 608625, + Profit: 52864.5, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1075, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 134375, + Discounts: 6652.5, + Sales: 127722.5, + COGS: 212880, + Profit: 85157.5, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 4050, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 48600, + Discounts: 684.36, + Sales: 47915.64, + COGS: 5703, + Profit: 42212.64, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3035, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 910500, + Discounts: 6201, + Sales: 904299, + COGS: 172250, + Profit: 732049, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3636, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 454500, + Discounts: 5887.5, + Sales: 448612.5, + COGS: 188400, + Profit: 260212.5, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1379, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 16548, + Discounts: 493.02, + Sales: 16054.98, + COGS: 4108.5, + Profit: 11946.48, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4492, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 561500, + Discounts: 7533.75, + Sales: 553966.25, + COGS: 241080, + Profit: 312886.25, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1744, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 218000, + Discounts: 4826.25, + Sales: 213173.75, + COGS: 154440, + Profit: 58733.75, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2341, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 292625, + Discounts: 6397.5, + Sales: 286227.5, + COGS: 204720, + Profit: 81507.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3835, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 479375, + Discounts: 7533.75, + Sales: 471841.25, + COGS: 241080, + Profit: 230761.25, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1161, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 348300, + Discounts: 25596, + Sales: 322704, + COGS: 711000, + Profit: 388296, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 876, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10512, + Discounts: 689.76, + Sales: 9822.24, + COGS: 5748, + Profit: 4074.24, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1705, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 213125, + Discounts: 5887.5, + Sales: 207237.5, + COGS: 188400, + Profit: 18837.5, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1805, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 541500, + Discounts: 16866, + Sales: 524634, + COGS: 468500, + Profit: 56134, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 389, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 136150, + Discounts: 17241, + Sales: 118909, + COGS: 426920, + Profit: 308011, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1459, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 29180, + Discounts: 498.6, + Sales: 28681.4, + COGS: 8310, + Profit: 20371.4, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 4236, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 84720, + Discounts: 2310.3, + Sales: 82409.7, + COGS: 38505, + Profit: 43904.7, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3627, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 43524, + Discounts: 892.44, + Sales: 42631.56, + COGS: 7437, + Profit: 35194.56, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1756, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 26340, + Discounts: 1218.6, + Sales: 25121.4, + COGS: 20310, + Profit: 4811.4, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 307, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 4605, + Discounts: 1218.6, + Sales: 3386.4, + COGS: 20310, + Profit: 16923.6, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1222, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 366600, + Discounts: 24252, + Sales: 342348, + COGS: 505250, + Profit: 162902, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 489, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 171150, + Discounts: 3836, + Sales: 167314, + COGS: 71240, + Profit: 96074, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4133, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 61995, + Discounts: 1180.2, + Sales: 60814.8, + COGS: 19670, + Profit: 41144.8, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2743, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 822900, + Discounts: 22308, + Sales: 800592, + COGS: 464750, + Profit: 335842, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 4460, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1338000, + Discounts: 24252, + Sales: 1313748, + COGS: 505250, + Profit: 808498, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1232, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 154000, + Discounts: 5690, + Sales: 148310, + COGS: 136560, + Profit: 11750, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2586, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 18102, + Discounts: 1190.28, + Sales: 16911.72, + COGS: 21255, + Profit: 4343.28, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1332, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 166500, + Discounts: 3975, + Sales: 162525, + COGS: 95400, + Profit: 67125, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4487, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1346100, + Discounts: 16974, + Sales: 1329126, + COGS: 353625, + Profit: 975501, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3862, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1158600, + Discounts: 35016, + Sales: 1123584, + COGS: 729500, + Profit: 394084, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1765, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 617750, + Discounts: 48300, + Sales: 569450, + COGS: 897000, + Profit: 327550, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3533, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 441625, + Discounts: 14940, + Sales: 426685, + COGS: 358560, + Profit: 68125, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2016, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 30240, + Discounts: 130.8, + Sales: 30109.2, + COGS: 2180, + Profit: 27929.2, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2938, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 58760, + Discounts: 1659.2, + Sales: 57100.8, + COGS: 20740, + Profit: 36360.8, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3352, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67040, + Discounts: 844.8, + Sales: 66195.2, + COGS: 10560, + Profit: 55635.2, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2430, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 850500, + Discounts: 3836, + Sales: 846664, + COGS: 71240, + Profit: 775424, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 535, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 66875, + Discounts: 5690, + Sales: 61185, + COGS: 136560, + Profit: 75375, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1523, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 18276, + Discounts: 703.2, + Sales: 17572.8, + COGS: 4395, + Profit: 13177.8, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1782, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 623700, + Discounts: 30478, + Sales: 593222, + COGS: 566020, + Profit: 27202, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 347, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 4164, + Discounts: 415.68, + Sales: 3748.32, + COGS: 2598, + Profit: 1150.32, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3509, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1228150, + Discounts: 30478, + Sales: 1197672, + COGS: 566020, + Profit: 631652, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2943, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1030050, + Discounts: 26110, + Sales: 1003940, + COGS: 484900, + Profit: 519040, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 4037, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 504625, + Discounts: 5370, + Sales: 499255, + COGS: 128880, + Profit: 370375, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4146, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1451100, + Discounts: 26698, + Sales: 1424402, + COGS: 495820, + Profit: 928582, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 725, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 5075, + Discounts: 480.2, + Sales: 4594.8, + COGS: 6860, + Profit: 2265.2, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2325, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 16275, + Discounts: 941.15, + Sales: 15333.85, + COGS: 13445, + Profit: 1888.85, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 675, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 8100, + Discounts: 1458.6, + Sales: 6641.4, + COGS: 7293, + Profit: 651.6, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2990, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 35880, + Discounts: 1458.6, + Sales: 34421.4, + COGS: 7293, + Profit: 27128.4, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1072, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 7504, + Discounts: 941.15, + Sales: 6562.85, + COGS: 13445, + Profit: 6882.15, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1048, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 7336, + Discounts: 589.05, + Sales: 6746.95, + COGS: 8415, + Profit: 1668.05, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 469, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 5628, + Discounts: 673.8, + Sales: 4954.2, + COGS: 3369, + Profit: 1585.2, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 4240, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50880, + Discounts: 1119, + Sales: 49761, + COGS: 5595, + Profit: 44166, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1976, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 23712, + Discounts: 669.6, + Sales: 23042.4, + COGS: 3348, + Profit: 19694.4, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1984, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39680, + Discounts: 1563, + Sales: 38117, + COGS: 15630, + Profit: 22487, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 480, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 144000, + Discounts: 14865, + Sales: 129135, + COGS: 247750, + Profit: 118615, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1205, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 18075, + Discounts: 2093.25, + Sales: 15981.75, + COGS: 27910, + Profit: 11928.25, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2480, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 17360, + Discounts: 199.5, + Sales: 17160.5, + COGS: 2850, + Profit: 14310.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 2926, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 20482, + Discounts: 870.45, + Sales: 19611.55, + COGS: 12435, + Profit: 7176.55, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3210, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1123500, + Discounts: 24228.75, + Sales: 1099271.25, + COGS: 359970, + Profit: 739301.25, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 3221, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 402625, + Discounts: 22668.75, + Sales: 379956.25, + COGS: 435240, + Profit: 55283.75, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 1127, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13524, + Discounts: 1405.2, + Sales: 12118.8, + COGS: 7026, + Profit: 5092.8, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1610, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 32200, + Discounts: 1303, + Sales: 30897, + COGS: 13030, + Profit: 17867, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4100, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 512500, + Discounts: 18700, + Sales: 493800, + COGS: 359040, + Profit: 134760, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1012, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 126500, + Discounts: 14906.25, + Sales: 111593.75, + COGS: 286200, + Profit: 174606.25, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3337, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1001100, + Discounts: 24105, + Sales: 976995, + COGS: 401750, + Profit: 575245, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3955, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 27685, + Discounts: 814.45, + Sales: 26870.55, + COGS: 11635, + Profit: 15235.55, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4347, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1304100, + Discounts: 14865, + Sales: 1289235, + COGS: 247750, + Profit: 1041485, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1548, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 541800, + Discounts: 10535, + Sales: 531265, + COGS: 156520, + Profit: 374745, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2153, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 32295, + Discounts: 1965, + Sales: 30330, + COGS: 26200, + Profit: 4130, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4126, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 515750, + Discounts: 5381.25, + Sales: 510368.75, + COGS: 103320, + Profit: 407048.75, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3376, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67520, + Discounts: 2663, + Sales: 64857, + COGS: 26630, + Profit: 38227, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2244, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 33660, + Discounts: 416.25, + Sales: 33243.75, + COGS: 5550, + Profit: 27693.75, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 1360, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 20400, + Discounts: 2145.75, + Sales: 18254.25, + COGS: 28610, + Profit: 10355.75, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 279, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 34875, + Discounts: 5043.75, + Sales: 29831.25, + COGS: 96840, + Profit: 67008.75, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2521, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 882350, + Discounts: 10535, + Sales: 871815, + COGS: 156520, + Profit: 715295, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2433, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 48660, + Discounts: 2832, + Sales: 45828, + COGS: 28320, + Profit: 17508, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1738, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 34760, + Discounts: 1579, + Sales: 33181, + COGS: 15790, + Profit: 17391, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1106, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 138250, + Discounts: 5381.25, + Sales: 132868.75, + COGS: 103320, + Profit: 29548.75, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 213, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 63900, + Discounts: 18750, + Sales: 45150, + COGS: 312500, + Profit: 267350, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2929, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 58580, + Discounts: 2663, + Sales: 55917, + COGS: 26630, + Profit: 29287, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2389, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 16723, + Discounts: 199.5, + Sales: 16523.5, + COGS: 2850, + Profit: 13673.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3086, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 21602, + Discounts: 870.45, + Sales: 20731.55, + COGS: 12435, + Profit: 8296.55, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 745, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 260750, + Discounts: 23625, + Sales: 237125, + COGS: 351000, + Profit: 113875, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1266, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 443100, + Discounts: 9660, + Sales: 433440, + COGS: 143520, + Profit: 289920, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4287, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1286100, + Discounts: 18750, + Sales: 1267350, + COGS: 312500, + Profit: 954850, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3193, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 47895, + Discounts: 3420.9, + Sales: 44474.1, + COGS: 38010, + Profit: 6464.1, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1967, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39340, + Discounts: 1341, + Sales: 37999, + COGS: 11175, + Profit: 26824, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 631, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 9465, + Discounts: 2559.6, + Sales: 6905.4, + COGS: 28440, + Profit: 21534.6, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3469, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 41628, + Discounts: 404.64, + Sales: 41223.36, + COGS: 1686, + Profit: 39537.36, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 3215, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 48225, + Discounts: 1827, + Sales: 46398, + COGS: 20300, + Profit: 26098, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1959, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 685650, + Discounts: 20580, + Sales: 665070, + COGS: 254800, + Profit: 410270, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2181, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 763350, + Discounts: 30660, + Sales: 732690, + COGS: 379600, + Profit: 353090, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2205, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 26460, + Discounts: 1960.56, + Sales: 24499.44, + COGS: 8169, + Profit: 16330.44, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1890, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 661500, + Discounts: 31416, + Sales: 630084, + COGS: 388960, + Profit: 241124, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2417, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 302125, + Discounts: 7140, + Sales: 294985, + COGS: 114240, + Profit: 180745, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1158, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 144750, + Discounts: 20662.5, + Sales: 124087.5, + COGS: 330600, + Profit: 206512.5, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 803, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 12045, + Discounts: 1377, + Sales: 10668, + COGS: 15300, + Profit: 4632, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3705, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1296750, + Discounts: 31416, + Sales: 1265334, + COGS: 388960, + Profit: 876374, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 589, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 4123, + Discounts: 629.16, + Sales: 3493.84, + COGS: 7490, + Profit: 3996.16, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3999, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 59985, + Discounts: 2559.6, + Sales: 57425.4, + COGS: 28440, + Profit: 28985.4, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 4256, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 29792, + Discounts: 629.16, + Sales: 29162.84, + COGS: 7490, + Profit: 21672.84, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2160, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 270000, + Discounts: 14906.25, + Sales: 255093.75, + COGS: 238500, + Profit: 16593.75, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 466, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 163100, + Discounts: 35259, + Sales: 127841, + COGS: 436540, + Profit: 308699, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1478, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 22170, + Discounts: 1978.2, + Sales: 20191.8, + COGS: 21980, + Profit: 1788.2, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3798, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 56970, + Discounts: 1568.7, + Sales: 55401.3, + COGS: 17430, + Profit: 37971.3, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 447, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 6705, + Discounts: 1037.7, + Sales: 5667.3, + COGS: 11530, + Profit: 5862.7, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 745, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 14900, + Discounts: 1201.2, + Sales: 13698.8, + COGS: 10010, + Profit: 3688.8, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 1732, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 12124, + Discounts: 559.86, + Sales: 11564.14, + COGS: 6665, + Profit: 4899.14, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1759, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 26385, + Discounts: 1037.7, + Sales: 25347.3, + COGS: 11530, + Profit: 13817.3, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 338, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 4056, + Discounts: 610.68, + Sales: 3445.32, + COGS: 2181, + Profit: 1264.32, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 3911, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 46932, + Discounts: 1582.56, + Sales: 45349.44, + COGS: 5652, + Profit: 39697.44, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 4473, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 53676, + Discounts: 1965.6, + Sales: 51710.4, + COGS: 7020, + Profit: 44690.4, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 383, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 4596, + Discounts: 1967.28, + Sales: 2628.72, + COGS: 7026, + Profit: 4397.28, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1062, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 15930, + Discounts: 1325.1, + Sales: 14604.9, + COGS: 12620, + Profit: 1984.9, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 4083, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 28581, + Discounts: 556.15, + Sales: 28024.85, + COGS: 5675, + Profit: 22349.85, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3974, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 27818, + Discounts: 268.03, + Sales: 27549.97, + COGS: 2735, + Profit: 24814.97, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3723, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 26061, + Discounts: 775.18, + Sales: 25285.82, + COGS: 7910, + Profit: 17375.82, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2435, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 29220, + Discounts: 1460.34, + Sales: 27759.66, + COGS: 5215.5, + Profit: 22544.16, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1763, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 12341, + Discounts: 775.18, + Sales: 11565.82, + COGS: 7910, + Profit: 3655.82, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 4473, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 31311, + Discounts: 556.15, + Sales: 30754.85, + COGS: 5675, + Profit: 25079.85, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1246, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 436100, + Discounts: 43144.5, + Sales: 392955.5, + COGS: 457860, + Profit: 64904.5, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1615, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 484500, + Discounts: 9408, + Sales: 475092, + COGS: 112000, + Profit: 363092, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 749, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 224700, + Discounts: 45801, + Sales: 178899, + COGS: 545250, + Profit: 366351, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1318, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 26360, + Discounts: 2766.4, + Sales: 23593.6, + COGS: 19760, + Profit: 3833.6, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 2882, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 864600, + Discounts: 45801, + Sales: 818799, + COGS: 545250, + Profit: 273549, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2484, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 745200, + Discounts: 35742, + Sales: 709458, + COGS: 425500, + Profit: 283958, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3169, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 950700, + Discounts: 9408, + Sales: 941292, + COGS: 112000, + Profit: 829292, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4080, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 510000, + Discounts: 30738.75, + Sales: 479261.25, + COGS: 421560, + Profit: 57701.25, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3943, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 59145, + Discounts: 2206.05, + Sales: 56938.95, + COGS: 21010, + Profit: 35928.95, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 253, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 5060, + Discounts: 2149, + Sales: 2911, + COGS: 15350, + Profit: 12439, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 799, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 239700, + Discounts: 34839, + Sales: 204861, + COGS: 414750, + Profit: 209889, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3942, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 78840, + Discounts: 852.6, + Sales: 77987.4, + COGS: 6090, + Profit: 71897.4, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2498, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 312250, + Discounts: 18261.25, + Sales: 293988.75, + COGS: 250440, + Profit: 43548.75, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 2517, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 50340, + Discounts: 2766.4, + Sales: 47573.6, + COGS: 19760, + Profit: 27813.6, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1145, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 343500, + Discounts: 28812, + Sales: 314688, + COGS: 343000, + Profit: 28312, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3814, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 45768, + Discounts: 2725.38, + Sales: 43042.62, + COGS: 9733.5, + Profit: 33309.12, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1188, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 356400, + Discounts: 20139, + Sales: 336261, + COGS: 239750, + Profit: 96511, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 2233, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 669900, + Discounts: 57687, + Sales: 612213, + COGS: 686750, + Profit: 74537, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 421, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 52625, + Discounts: 14393.75, + Sales: 38231.25, + COGS: 197400, + Profit: 159168.75, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 269, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 94150, + Discounts: 70462, + Sales: 23688, + COGS: 747760, + Profit: 724072, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 952, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19040, + Discounts: 1565.2, + Sales: 17474.8, + COGS: 11180, + Profit: 6294.8, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2964, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 889200, + Discounts: 28812, + Sales: 860388, + COGS: 343000, + Profit: 517388, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1505, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 10535, + Discounts: 273.28, + Sales: 10261.72, + COGS: 2440, + Profit: 7821.72, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1678, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 33560, + Discounts: 2051.2, + Sales: 31508.8, + COGS: 12820, + Profit: 18688.8, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4249, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 29743, + Discounts: 143.92, + Sales: 29599.08, + COGS: 1285, + Profit: 28314.08, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1677, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 33540, + Discounts: 2051.2, + Sales: 31488.8, + COGS: 12820, + Profit: 18668.8, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3051, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 381375, + Discounts: 15400, + Sales: 365975, + COGS: 184800, + Profit: 181175, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 3372, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 50580, + Discounts: 588, + Sales: 49992, + COGS: 4900, + Profit: 45092, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1686, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 590100, + Discounts: 38136, + Sales: 551964, + COGS: 354120, + Profit: 197844, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3086, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 46290, + Discounts: 3001.2, + Sales: 43288.8, + COGS: 25010, + Profit: 18278.8, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4150, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 83000, + Discounts: 1132.8, + Sales: 81867.2, + COGS: 7080, + Profit: 74787.2, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3027, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 60540, + Discounts: 1032, + Sales: 59508, + COGS: 6450, + Profit: 53058, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 4359, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1307700, + Discounts: 37488, + Sales: 1270212, + COGS: 390500, + Profit: 879712, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 1589, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 23835, + Discounts: 853.2, + Sales: 22981.8, + COGS: 7110, + Profit: 15871.8, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2679, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 334875, + Discounts: 11140, + Sales: 323735, + COGS: 133680, + Profit: 190055, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3401, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 23807, + Discounts: 705.04, + Sales: 23101.96, + COGS: 6295, + Profit: 16806.96, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2815, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19705, + Discounts: 613.2, + Sales: 19091.8, + COGS: 5475, + Profit: 13616.8, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2964, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 59280, + Discounts: 2185.6, + Sales: 57094.4, + COGS: 13660, + Profit: 43434.4, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 4173, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1251900, + Discounts: 59040, + Sales: 1192860, + COGS: 615000, + Profit: 577860, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1157, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 8099, + Discounts: 379.68, + Sales: 7719.32, + COGS: 3390, + Profit: 4329.32, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3065, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 21455, + Discounts: 894.88, + Sales: 20560.12, + COGS: 7990, + Profit: 12570.12, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4080, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 81600, + Discounts: 3094.4, + Sales: 78505.6, + COGS: 19340, + Profit: 59165.6, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1713, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34260, + Discounts: 4788.8, + Sales: 29471.2, + COGS: 29930, + Profit: 458.8, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1691, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 591850, + Discounts: 38136, + Sales: 553714, + COGS: 354120, + Profit: 199594, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2305, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 27660, + Discounts: 574.08, + Sales: 27085.92, + COGS: 1794, + Profit: 25291.92, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3401, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 23807, + Discounts: 1627.92, + Sales: 22179.08, + COGS: 14535, + Profit: 7644.08, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2288, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 16016, + Discounts: 1309.28, + Sales: 14706.72, + COGS: 11690, + Profit: 3016.72, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 4086, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1225800, + Discounts: 15240, + Sales: 1210560, + COGS: 158750, + Profit: 1051810, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2651, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 927850, + Discounts: 16086, + Sales: 911764, + COGS: 149370, + Profit: 762394, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3971, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27797, + Discounts: 1309.28, + Sales: 26487.72, + COGS: 11690, + Profit: 14797.72, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2512, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 879200, + Discounts: 10668, + Sales: 868532, + COGS: 99060, + Profit: 769472, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2745, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 960750, + Discounts: 11816, + Sales: 948934, + COGS: 109720, + Profit: 839214, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1903, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 570900, + Discounts: 51216, + Sales: 519684, + COGS: 533500, + Profit: 13816, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2914, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 58280, + Discounts: 1132.8, + Sales: 57147.2, + COGS: 7080, + Profit: 50067.2, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1889, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 13223, + Discounts: 1627.92, + Sales: 11595.08, + COGS: 14535, + Profit: 2939.92, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1466, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 29320, + Discounts: 2185.6, + Sales: 27134.4, + COGS: 13660, + Profit: 13474.4, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 887, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 266100, + Discounts: 59040, + Sales: 207060, + COGS: 615000, + Profit: 407940, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 395, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 7900, + Discounts: 2432, + Sales: 5468, + COGS: 15200, + Profit: 9732, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1693, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 25395, + Discounts: 853.2, + Sales: 24541.8, + COGS: 7110, + Profit: 17431.8, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2649, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 794700, + Discounts: 15240, + Sales: 779460, + COGS: 158750, + Profit: 620710, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 3608, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 72160, + Discounts: 698.4, + Sales: 71461.6, + COGS: 4365, + Profit: 67096.6, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1073, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 321900, + Discounts: 29538, + Sales: 292362, + COGS: 273500, + Profit: 18862, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 2167, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 650100, + Discounts: 102667.5, + Sales: 547432.5, + COGS: 950625, + Profit: 403192.5, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1319, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 461650, + Discounts: 52479, + Sales: 409171, + COGS: 433160, + Profit: 23989, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1252, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 15024, + Discounts: 2506.68, + Sales: 12517.32, + COGS: 6963, + Profit: 5554.32, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1156, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 144500, + Discounts: 31466.25, + Sales: 113033.75, + COGS: 335640, + Profit: 222606.25, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1153, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 345900, + Discounts: 69255, + Sales: 276645, + COGS: 641250, + Profit: 364605, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2720, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 952000, + Discounts: 76135.5, + Sales: 875864.5, + COGS: 628420, + Profit: 247444.5, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3658, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 54870, + Discounts: 4961.25, + Sales: 49908.75, + COGS: 36750, + Profit: 13158.75, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2950, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 885000, + Discounts: 29538, + Sales: 855462, + COGS: 273500, + Profit: 581962, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1821, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27315, + Discounts: 1656.45, + Sales: 25658.55, + COGS: 12270, + Profit: 13388.55, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1127, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 338100, + Discounts: 35748, + Sales: 302352, + COGS: 331000, + Profit: 28648, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 862, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 107750, + Discounts: 31466.25, + Sales: 76283.75, + COGS: 335640, + Profit: 259356.25, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3805, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 57075, + Discounts: 330.75, + Sales: 56744.25, + COGS: 2450, + Profit: 54294.25, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1415, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 424500, + Discounts: 102424.5, + Sales: 322075.5, + COGS: 948375, + Profit: 626299.5, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2231, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 780850, + Discounts: 41170.5, + Sales: 739679.5, + COGS: 339820, + Profit: 399859.5, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3649, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 456125, + Discounts: 6378.75, + Sales: 449746.25, + COGS: 68040, + Profit: 381706.25, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2948, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 368500, + Discounts: 23737.5, + Sales: 344762.5, + COGS: 253200, + Profit: 91562.5, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3395, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1188250, + Discounts: 39973.5, + Sales: 1148276.5, + COGS: 329940, + Profit: 818336.5, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2650, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 31800, + Discounts: 2112.48, + Sales: 29687.52, + COGS: 5868, + Profit: 23819.52, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 585, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 175500, + Discounts: 71793, + Sales: 103707, + COGS: 664750, + Profit: 561043, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1316, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 460600, + Discounts: 42572.25, + Sales: 418027.75, + COGS: 351390, + Profit: 66637.75, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 4459, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 53508, + Discounts: 950.4, + Sales: 52557.6, + COGS: 2640, + Profit: 49917.6, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2711, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 813300, + Discounts: 50409, + Sales: 762891, + COGS: 466750, + Profit: 296141, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3613, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 54195, + Discounts: 1656.45, + Sales: 52538.55, + COGS: 12270, + Profit: 40268.55, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1847, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 230875, + Discounts: 9866.25, + Sales: 221008.75, + COGS: 105240, + Profit: 115768.75, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2996, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1048600, + Discounts: 65236.5, + Sales: 983363.5, + COGS: 538460, + Profit: 444903.5, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2838, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 993300, + Discounts: 39973.5, + Sales: 953326.5, + COGS: 329940, + Profit: 623386.5, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1536, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 30720, + Discounts: 3049.2, + Sales: 27670.8, + COGS: 16940, + Profit: 10730.8, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1291, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 25820, + Discounts: 1193.4, + Sales: 24626.6, + COGS: 6630, + Profit: 17996.6, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1213, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 8491, + Discounts: 515.97, + Sales: 7975.03, + COGS: 4095, + Profit: 3880.03, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2370, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 28440, + Discounts: 1706.4, + Sales: 26733.6, + COGS: 4740, + Profit: 21993.6, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1979, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 13853, + Discounts: 328.23, + Sales: 13524.77, + COGS: 2605, + Profit: 10919.77, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2879, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 57580, + Discounts: 1751.4, + Sales: 55828.6, + COGS: 9730, + Profit: 46098.6, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1707, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34140, + Discounts: 1868.4, + Sales: 32271.6, + COGS: 10380, + Profit: 21891.6, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2933, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 20531, + Discounts: 226.8, + Sales: 20304.2, + COGS: 1800, + Profit: 18504.2, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1014, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 12168, + Discounts: 2124.36, + Sales: 10043.64, + COGS: 5901, + Profit: 4142.64, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 693, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 10395, + Discounts: 3547.8, + Sales: 6847.2, + COGS: 26280, + Profit: 19432.8, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3741, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26187, + Discounts: 226.8, + Sales: 25960.2, + COGS: 1800, + Profit: 24160.2, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 3995, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27965, + Discounts: 328.23, + Sales: 27636.77, + COGS: 2605, + Profit: 25031.77, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 953, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19060, + Discounts: 1868.4, + Sales: 17191.6, + COGS: 10380, + Profit: 6811.6, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2530, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 37950, + Discounts: 2201.18, + Sales: 35748.82, + COGS: 16305, + Profit: 19443.82, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1372, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 27440, + Discounts: 0, + Sales: 27440, + COGS: 16185, + Profit: 11255, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2762, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 55240, + Discounts: 0, + Sales: 55240, + COGS: 13210, + Profit: 42030, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1464, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 21960, + Discounts: 0, + Sales: 21960, + COGS: 21780, + Profit: 180, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 719, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 10785, + Discounts: 0, + Sales: 10785, + COGS: 8880, + Profit: 1905, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3576, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 53640, + Discounts: 0, + Sales: 53640, + COGS: 24700, + Profit: 28940, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 4422, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1547700, + Discounts: 0, + Sales: 1547700, + COGS: 393380, + Profit: 1154320, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3649, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 54735, + Discounts: 0, + Sales: 54735, + COGS: 9210, + Profit: 45525, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4172, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 50064, + Discounts: 0, + Sales: 50064, + COGS: 7554, + Profit: 42510, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3841, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 76820, + Discounts: 0, + Sales: 76820, + COGS: 18990, + Profit: 57830, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3726, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 44712, + Discounts: 0, + Sales: 44712, + COGS: 4635, + Profit: 40077, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2625, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 39375, + Discounts: 0, + Sales: 39375, + COGS: 24700, + Profit: 14675, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1958, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 244750, + Discounts: 0, + Sales: 244750, + COGS: 319860, + Profit: 75110, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 3271, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 981300, + Discounts: 0, + Sales: 981300, + COGS: 239500, + Profit: 741800, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2091, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 14637, + Discounts: 0, + Sales: 14637, + COGS: 10730, + Profit: 3907, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 2530, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 316250, + Discounts: 0, + Sales: 316250, + COGS: 41400, + Profit: 274850, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2825, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 42375, + Discounts: 0, + Sales: 42375, + COGS: 6150, + Profit: 36225, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2513, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 50260, + Discounts: 0, + Sales: 50260, + COGS: 2920, + Profit: 47340, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 883, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 13245, + Discounts: 0, + Sales: 13245, + COGS: 9740, + Profit: 3505, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2087, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 25044, + Discounts: 0, + Sales: 25044, + COGS: 7554, + Profit: 17490, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2563, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 897050, + Discounts: 0, + Sales: 897050, + COGS: 261560, + Profit: 635490, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2846, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 34152, + Discounts: 0, + Sales: 34152, + COGS: 1101, + Profit: 33051, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 997, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 6979, + Discounts: 0, + Sales: 6979, + COGS: 4415, + Profit: 2564, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3421, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 51315, + Discounts: 0, + Sales: 51315, + COGS: 5490, + Profit: 45825, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Marchesa`, + UnitsSold: 70000, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 1050000, + Discounts: 0, + Sales: 1050000, + COGS: 5490, + Profit: 1044510, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2291, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 687300, + Discounts: 0, + Sales: 687300, + COGS: 197000, + Profit: 490300, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2290, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 34350, + Discounts: 0, + Sales: 34350, + COGS: 24720, + Profit: 9630, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2133, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14931, + Discounts: 0, + Sales: 14931, + COGS: 5715, + Profit: 9216, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3475, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1216250, + Discounts: 0, + Sales: 1216250, + COGS: 448500, + Profit: 767750, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3686, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 44232, + Discounts: 0, + Sales: 44232, + COGS: 2736, + Profit: 41496, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3319, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 49785, + Discounts: 0, + Sales: 49785, + COGS: 21520, + Profit: 28265, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3617, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 72340, + Discounts: 0, + Sales: 72340, + COGS: 18170, + Profit: 54170, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1266, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 443100, + Discounts: 0, + Sales: 443100, + COGS: 393380, + Profit: 49720, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 894, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 6258, + Discounts: 0, + Sales: 6258, + COGS: 7465, + Profit: 1207, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 2725, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 340625, + Discounts: 0, + Sales: 340625, + COGS: 216480, + Profit: 124145, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3061, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 36732, + Discounts: 0, + Sales: 36732, + COGS: 6483, + Profit: 30249, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3958, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1385300, + Discounts: 0, + Sales: 1385300, + COGS: 261560, + Profit: 1123740, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3920, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 47040, + Discounts: 0, + Sales: 47040, + COGS: 4635, + Profit: 42405, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3381, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 422625, + Discounts: 0, + Sales: 422625, + COGS: 338520, + Profit: 84105, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1094, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 136750, + Discounts: 0, + Sales: 136750, + COGS: 41400, + Profit: 95350, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4307, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 1292100, + Discounts: 0, + Sales: 1292100, + COGS: 500250, + Profit: 791850, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 878, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10536, + Discounts: 0, + Sales: 10536, + COGS: 8514, + Profit: 2022, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 496, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 7440, + Discounts: 0, + Sales: 7440, + COGS: 21780, + Profit: 14340, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3367, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 50505, + Discounts: 0, + Sales: 50505, + COGS: 8880, + Profit: 41625, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3880, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1358000, + Discounts: 0, + Sales: 1358000, + COGS: 397020, + Profit: 960980, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2055, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 616500, + Discounts: 0, + Sales: 616500, + COGS: 537750, + Profit: 78750, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4041, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 80820, + Discounts: 0, + Sales: 80820, + COGS: 18170, + Profit: 62650, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 3237, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1132950, + Discounts: 0, + Sales: 1132950, + COGS: 715000, + Profit: 417950, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 630, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 7560, + Discounts: 0, + Sales: 7560, + COGS: 5859, + Profit: 1701, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4210, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 526250, + Discounts: 0, + Sales: 526250, + COGS: 506340, + Profit: 19910, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1127, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 22540, + Discounts: 0, + Sales: 22540, + COGS: 18990, + Profit: 3550, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 3438, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 24066, + Discounts: 0, + Sales: 24066, + COGS: 8430, + Profit: 15636, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2015, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 24180, + Discounts: 0, + Sales: 24180, + COGS: 6423, + Profit: 17757, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2534, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 17738, + Discounts: 0, + Sales: 17738, + COGS: 5715, + Profit: 12023, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1384, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 20760, + Discounts: 0, + Sales: 20760, + COGS: 6150, + Profit: 14610, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3561, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 24927, + Discounts: 276.15, + Sales: 24650.85, + COGS: 19725, + Profit: 4925.85, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1823, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27345, + Discounts: 344.4, + Sales: 27000.6, + COGS: 22960, + Profit: 4040.6, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2795, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19565, + Discounts: 72.1, + Sales: 19492.9, + COGS: 5150, + Profit: 14342.9, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 457, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 3199, + Discounts: 44.73, + Sales: 3154.27, + COGS: 3195, + Profit: 40.73, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3785, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26495, + Discounts: 92.82, + Sales: 26402.18, + COGS: 6630, + Profit: 19772.18, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 748, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 8976, + Discounts: 222.96, + Sales: 8753.04, + COGS: 5574, + Profit: 3179.04, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1021, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 357350, + Discounts: 4235, + Sales: 353115, + COGS: 314600, + Profit: 38515, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2076, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 14532, + Discounts: 177.03, + Sales: 14354.97, + COGS: 12645, + Profit: 1709.97, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 4316, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 51792, + Discounts: 173.4, + Sales: 51618.6, + COGS: 4335, + Profit: 47283.6, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2654, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 331750, + Discounts: 412.5, + Sales: 331337.5, + COGS: 39600, + Profit: 291737.5, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 4174, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50088, + Discounts: 320.52, + Sales: 49767.48, + COGS: 8013, + Profit: 41754.48, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1675, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 20100, + Discounts: 91.92, + Sales: 20008.08, + COGS: 2298, + Profit: 17710.08, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1572, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 471600, + Discounts: 1482, + Sales: 470118, + COGS: 123500, + Profit: 346618, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3736, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1307600, + Discounts: 4889.5, + Sales: 1302710.5, + COGS: 363220, + Profit: 939490.5, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1914, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 669900, + Discounts: 7542.5, + Sales: 662357.5, + COGS: 560300, + Profit: 102057.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2742, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 41130, + Discounts: 332.1, + Sales: 40797.9, + COGS: 22140, + Profit: 18657.9, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1499, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 449700, + Discounts: 6903, + Sales: 442797, + COGS: 575250, + Profit: 132453, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3772, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 75440, + Discounts: 275.1, + Sales: 75164.9, + COGS: 13755, + Profit: 61409.9, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1112, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 7784, + Discounts: 128.1, + Sales: 7655.9, + COGS: 9150, + Profit: 1494.1, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1723, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 516900, + Discounts: 7494, + Sales: 509406, + COGS: 624500, + Profit: 115094, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 423, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 52875, + Discounts: 828.75, + Sales: 52046.25, + COGS: 79560, + Profit: 27513.75, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2368, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 35520, + Discounts: 227.1, + Sales: 35292.9, + COGS: 15140, + Profit: 20152.9, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1586, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 11102, + Discounts: 314.48, + Sales: 10787.52, + COGS: 22462.5, + Profit: 11674.98, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3386, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 423250, + Discounts: 908.75, + Sales: 422341.25, + COGS: 87240, + Profit: 335101.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 852, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 106500, + Discounts: 983.75, + Sales: 105516.25, + COGS: 94440, + Profit: 11076.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2783, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 347875, + Discounts: 2278.75, + Sales: 345596.25, + COGS: 218760, + Profit: 126836.25, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2684, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 40260, + Discounts: 112.05, + Sales: 40147.95, + COGS: 7470, + Profit: 32677.95, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4393, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 52716, + Discounts: 91.92, + Sales: 52624.08, + COGS: 2298, + Profit: 50326.08, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4083, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1224900, + Discounts: 8715, + Sales: 1216185, + COGS: 726250, + Profit: 489935, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2816, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 985600, + Discounts: 7542.5, + Sales: 978057.5, + COGS: 560300, + Profit: 417757.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 4294, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 85880, + Discounts: 772.8, + Sales: 85107.2, + COGS: 38640, + Profit: 46467.2, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2856, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 19992, + Discounts: 25.34, + Sales: 19966.66, + COGS: 1810, + Profit: 18156.66, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1407, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 175875, + Discounts: 1153.75, + Sales: 174721.25, + COGS: 110760, + Profit: 63961.25, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3850, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 481250, + Discounts: 828.75, + Sales: 480421.25, + COGS: 79560, + Profit: 400861.25, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2856, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 19992, + Discounts: 146.44, + Sales: 19845.56, + COGS: 10460, + Profit: 9385.56, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1265, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 8855, + Discounts: 18.41, + Sales: 8836.59, + COGS: 1315, + Profit: 7521.59, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3892, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1362200, + Discounts: 3302.25, + Sales: 1358897.75, + COGS: 245310, + Profit: 1113587.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 3068, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 383500, + Discounts: 908.75, + Sales: 382591.25, + COGS: 87240, + Profit: 295351.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2181, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 272625, + Discounts: 983.75, + Sales: 271641.25, + COGS: 94440, + Profit: 177201.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1356, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 406800, + Discounts: 2958, + Sales: 403842, + COGS: 246500, + Profit: 157342, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 2545, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 763500, + Discounts: 1482, + Sales: 762018, + COGS: 123500, + Profit: 638518, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1814, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 634900, + Discounts: 4889.5, + Sales: 630010.5, + COGS: 363220, + Profit: 266790.5, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1495, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 186875, + Discounts: 2180, + Sales: 184695, + COGS: 209280, + Profit: 24585, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1154, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 13848, + Discounts: 238.68, + Sales: 13609.32, + COGS: 5967, + Profit: 7642.32, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 4180, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 62700, + Discounts: 48.15, + Sales: 62651.85, + COGS: 3210, + Profit: 59441.85, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1463, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 182875, + Discounts: 1856.25, + Sales: 181018.75, + COGS: 89100, + Profit: 91918.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 215, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 2580, + Discounts: 310.8, + Sales: 2269.2, + COGS: 3885, + Profit: 1615.8, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 4099, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 1229700, + Discounts: 1284, + Sales: 1228416, + COGS: 53500, + Profit: 1174916, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 2660, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 18620, + Discounts: 300.3, + Sales: 18319.7, + COGS: 10725, + Profit: 7594.7, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 566, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 198100, + Discounts: 19964, + Sales: 178136, + COGS: 741520, + Profit: 563384, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 3255, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 39060, + Discounts: 274.08, + Sales: 38785.92, + COGS: 3426, + Profit: 35359.92, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 772, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 15440, + Discounts: 626.4, + Sales: 14813.6, + COGS: 15660, + Profit: 846.4, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1135, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13620, + Discounts: 165.6, + Sales: 13454.4, + COGS: 2070, + Profit: 11384.4, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 3826, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 478250, + Discounts: 4150, + Sales: 474100, + COGS: 199200, + Profit: 274900, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1193, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 17895, + Discounts: 708.9, + Sales: 17186.1, + COGS: 23630, + Profit: 6443.9, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2530, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 759000, + Discounts: 5508, + Sales: 753492, + COGS: 229500, + Profit: 523992, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3451, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1035300, + Discounts: 10368, + Sales: 1024932, + COGS: 432000, + Profit: 592932, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3059, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 36708, + Discounts: 274.08, + Sales: 36433.92, + COGS: 3426, + Profit: 33007.92, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3957, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 494625, + Discounts: 1655, + Sales: 492970, + COGS: 79440, + Profit: 413530, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3444, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 41328, + Discounts: 310.8, + Sales: 41017.2, + COGS: 3885, + Profit: 37132.2, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4388, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 548500, + Discounts: 2022.5, + Sales: 546477.5, + COGS: 97080, + Profit: 449397.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2106, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 263250, + Discounts: 5362.5, + Sales: 257887.5, + COGS: 257400, + Profit: 487.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 799, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 9588, + Discounts: 428.4, + Sales: 9159.6, + COGS: 5355, + Profit: 3804.6, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3154, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 946200, + Discounts: 11496, + Sales: 934704, + COGS: 479000, + Profit: 455704, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4108, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1437800, + Discounts: 19964, + Sales: 1417836, + COGS: 741520, + Profit: 676316, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3760, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 470000, + Discounts: 6822.5, + Sales: 463177.5, + COGS: 327480, + Profit: 135697.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 377, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 5655, + Discounts: 577.5, + Sales: 5077.5, + COGS: 19250, + Profit: 14172.5, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2110, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14770, + Discounts: 281.82, + Sales: 14488.18, + COGS: 10065, + Profit: 4423.18, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2334, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 28008, + Discounts: 253.2, + Sales: 27754.8, + COGS: 3165, + Profit: 24589.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 580, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 6960, + Discounts: 260.16, + Sales: 6699.84, + COGS: 3252, + Profit: 3447.84, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2610, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 52200, + Discounts: 626.4, + Sales: 51573.6, + COGS: 15660, + Profit: 35913.6, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 1598, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 559300, + Discounts: 20762, + Sales: 538538, + COGS: 771160, + Profit: 232622, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 1459, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 510650, + Discounts: 20139, + Sales: 490511, + COGS: 748020, + Profit: 257509, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3284, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 410500, + Discounts: 2022.5, + Sales: 408477.5, + COGS: 97080, + Profit: 311397.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 1197, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 149625, + Discounts: 5362.5, + Sales: 144262.5, + COGS: 257400, + Profit: 113137.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3774, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 45288, + Discounts: 253.2, + Sales: 45034.8, + COGS: 3165, + Profit: 41869.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2303, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 46060, + Discounts: 217.6, + Sales: 45842.4, + COGS: 5440, + Profit: 40402.4, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2572, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 30864, + Discounts: 260.16, + Sales: 30603.84, + COGS: 3252, + Profit: 27351.84, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 320, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 40000, + Discounts: 1655, + Sales: 38345, + COGS: 79440, + Profit: 41095, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2126, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 637800, + Discounts: 1284, + Sales: 636516, + COGS: 53500, + Profit: 583016, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3275, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1146250, + Discounts: 20139, + Sales: 1126111, + COGS: 748020, + Profit: 378091, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3582, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 447750, + Discounts: 6822.5, + Sales: 440927.5, + COGS: 327480, + Profit: 113447.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 783, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 274050, + Discounts: 1862, + Sales: 272188, + COGS: 69160, + Profit: 203028, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1202, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 420700, + Discounts: 13580, + Sales: 407120, + COGS: 504400, + Profit: 97280, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4056, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1216800, + Discounts: 1554, + Sales: 1215246, + COGS: 64750, + Profit: 1150496, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2144, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 643200, + Discounts: 6606, + Sales: 636594, + COGS: 275250, + Profit: 361344, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 3502, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 437750, + Discounts: 5690, + Sales: 432060, + COGS: 273120, + Profit: 158940, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1397, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 488950, + Discounts: 20762, + Sales: 468188, + COGS: 771160, + Profit: 302972, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 679, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 13580, + Discounts: 494.4, + Sales: 13085.6, + COGS: 12360, + Profit: 725.6, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2351, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 47020, + Discounts: 376.4, + Sales: 46643.6, + COGS: 9410, + Profit: 37233.6, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2043, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 612900, + Discounts: 11496, + Sales: 601404, + COGS: 479000, + Profit: 122404, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 3565, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 445625, + Discounts: 15913.13, + Sales: 429711.88, + COGS: 509220, + Profit: 79508.13, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1401, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 28020, + Discounts: 1548, + Sales: 26472, + COGS: 25800, + Profit: 672, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2077, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 623100, + Discounts: 6201, + Sales: 616899, + COGS: 172250, + Profit: 444649, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 3643, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 43716, + Discounts: 700.92, + Sales: 43015.08, + COGS: 5841, + Profit: 37174.08, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1105, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 13260, + Discounts: 326.88, + Sales: 12933.12, + COGS: 2724, + Profit: 10209.12, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2960, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20720, + Discounts: 411.18, + Sales: 20308.82, + COGS: 9790, + Profit: 10518.82, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1201, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 14412, + Discounts: 684.36, + Sales: 13727.64, + COGS: 5703, + Profit: 8024.64, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 2321, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 16247, + Discounts: 114.24, + Sales: 16132.76, + COGS: 2720, + Profit: 13412.76, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3640, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1274000, + Discounts: 18868.5, + Sales: 1255131.5, + COGS: 467220, + Profit: 787911.5, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3972, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 496500, + Discounts: 4826.25, + Sales: 491673.75, + COGS: 154440, + Profit: 337233.75, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3878, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 484750, + Discounts: 6397.5, + Sales: 478352.5, + COGS: 204720, + Profit: 273632.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2278, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 683400, + Discounts: 21910.5, + Sales: 661489.5, + COGS: 608625, + Profit: 52864.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1075, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 134375, + Discounts: 6652.5, + Sales: 127722.5, + COGS: 212880, + Profit: 85157.5, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 4050, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 48600, + Discounts: 684.36, + Sales: 47915.64, + COGS: 5703, + Profit: 42212.64, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3035, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 910500, + Discounts: 6201, + Sales: 904299, + COGS: 172250, + Profit: 732049, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3636, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 454500, + Discounts: 5887.5, + Sales: 448612.5, + COGS: 188400, + Profit: 260212.5, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1379, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 16548, + Discounts: 493.02, + Sales: 16054.98, + COGS: 4108.5, + Profit: 11946.48, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4492, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 561500, + Discounts: 7533.75, + Sales: 553966.25, + COGS: 241080, + Profit: 312886.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 764, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 11460, + Discounts: 875.25, + Sales: 10584.75, + COGS: 19450, + Profit: 8865.25, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1744, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 218000, + Discounts: 4826.25, + Sales: 213173.75, + COGS: 154440, + Profit: 58733.75, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2341, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 292625, + Discounts: 6397.5, + Sales: 286227.5, + COGS: 204720, + Profit: 81507.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3835, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 479375, + Discounts: 7533.75, + Sales: 471841.25, + COGS: 241080, + Profit: 230761.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1161, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 348300, + Discounts: 25596, + Sales: 322704, + COGS: 711000, + Profit: 388296, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 876, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10512, + Discounts: 689.76, + Sales: 9822.24, + COGS: 5748, + Profit: 4074.24, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1705, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 213125, + Discounts: 5887.5, + Sales: 207237.5, + COGS: 188400, + Profit: 18837.5, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1805, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 541500, + Discounts: 16866, + Sales: 524634, + COGS: 468500, + Profit: 56134, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 389, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 136150, + Discounts: 17241, + Sales: 118909, + COGS: 426920, + Profit: 308011, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2745, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 41175, + Discounts: 875.25, + Sales: 40299.75, + COGS: 19450, + Profit: 20849.75, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1459, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 29180, + Discounts: 498.6, + Sales: 28681.4, + COGS: 8310, + Profit: 20371.4, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3938, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 27566, + Discounts: 369.6, + Sales: 27196.4, + COGS: 8800, + Profit: 18396.4, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 4236, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 84720, + Discounts: 2310.3, + Sales: 82409.7, + COGS: 38505, + Profit: 43904.7, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3627, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 43524, + Discounts: 892.44, + Sales: 42631.56, + COGS: 7437, + Profit: 35194.56, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1756, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 26340, + Discounts: 1218.6, + Sales: 25121.4, + COGS: 20310, + Profit: 4811.4, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 307, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 4605, + Discounts: 1218.6, + Sales: 3386.4, + COGS: 20310, + Profit: 16923.6, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 4489, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 67335, + Discounts: 1356.6, + Sales: 65978.4, + COGS: 22610, + Profit: 43368.4, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2167, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 43340, + Discounts: 588.8, + Sales: 42751.2, + COGS: 7360, + Profit: 35391.2, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1137, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 7959, + Discounts: 798.28, + Sales: 7160.72, + COGS: 14255, + Profit: 7094.28, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1222, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 366600, + Discounts: 24252, + Sales: 342348, + COGS: 505250, + Profit: 162902, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 489, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 171150, + Discounts: 3836, + Sales: 167314, + COGS: 71240, + Profit: 96074, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4133, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 61995, + Discounts: 1180.2, + Sales: 60814.8, + COGS: 19670, + Profit: 41144.8, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2743, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 822900, + Discounts: 22308, + Sales: 800592, + COGS: 464750, + Profit: 335842, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 3699, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 25893, + Discounts: 798.28, + Sales: 25094.72, + COGS: 14255, + Profit: 10839.72, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 4460, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1338000, + Discounts: 24252, + Sales: 1313748, + COGS: 505250, + Profit: 808498, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1232, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 154000, + Discounts: 5690, + Sales: 148310, + COGS: 136560, + Profit: 11750, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2586, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 18102, + Discounts: 1190.28, + Sales: 16911.72, + COGS: 21255, + Profit: 4343.28, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1332, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 166500, + Discounts: 3975, + Sales: 162525, + COGS: 95400, + Profit: 67125, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4487, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1346100, + Discounts: 16974, + Sales: 1329126, + COGS: 353625, + Profit: 975501, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3862, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1158600, + Discounts: 35016, + Sales: 1123584, + COGS: 729500, + Profit: 394084, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1765, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 617750, + Discounts: 48300, + Sales: 569450, + COGS: 897000, + Profit: 327550, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3533, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 441625, + Discounts: 14940, + Sales: 426685, + COGS: 358560, + Profit: 68125, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2016, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 30240, + Discounts: 130.8, + Sales: 30109.2, + COGS: 2180, + Profit: 27929.2, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2938, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 58760, + Discounts: 1659.2, + Sales: 57100.8, + COGS: 20740, + Profit: 36360.8, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3352, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67040, + Discounts: 844.8, + Sales: 66195.2, + COGS: 10560, + Profit: 55635.2, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4409, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 66135, + Discounts: 402.6, + Sales: 65732.4, + COGS: 6710, + Profit: 59022.4, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3323, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 49845, + Discounts: 908.4, + Sales: 48936.6, + COGS: 15140, + Profit: 33796.6, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2430, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 850500, + Discounts: 3836, + Sales: 846664, + COGS: 71240, + Profit: 775424, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 535, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 66875, + Discounts: 5690, + Sales: 61185, + COGS: 136560, + Profit: 75375, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1523, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 18276, + Discounts: 703.2, + Sales: 17572.8, + COGS: 4395, + Profit: 13177.8, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3631, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 72620, + Discounts: 2116.8, + Sales: 70503.2, + COGS: 26460, + Profit: 44043.2, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1782, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 623700, + Discounts: 30478, + Sales: 593222, + COGS: 566020, + Profit: 27202, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 347, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 4164, + Discounts: 415.68, + Sales: 3748.32, + COGS: 2598, + Profit: 1150.32, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 4147, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1451450, + Discounts: 4886, + Sales: 1446564, + COGS: 90740, + Profit: 1355824, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3509, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1228150, + Discounts: 30478, + Sales: 1197672, + COGS: 566020, + Profit: 631652, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 2774, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 41610, + Discounts: 908.4, + Sales: 40701.6, + COGS: 15140, + Profit: 25561.6, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2943, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1030050, + Discounts: 26110, + Sales: 1003940, + COGS: 484900, + Profit: 519040, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 4037, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 504625, + Discounts: 5370, + Sales: 499255, + COGS: 128880, + Profit: 370375, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4146, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1451100, + Discounts: 26698, + Sales: 1424402, + COGS: 495820, + Profit: 928582, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 4123, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 61845, + Discounts: 402.6, + Sales: 61442.4, + COGS: 6710, + Profit: 54732.4, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1337, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 467950, + Discounts: 24892, + Sales: 443058, + COGS: 462280, + Profit: 19222, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 599, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 4193, + Discounts: 405.65, + Sales: 3787.35, + COGS: 5795, + Profit: 2007.65, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 725, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 5075, + Discounts: 480.2, + Sales: 4594.8, + COGS: 6860, + Profit: 2265.2, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 477, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 3339, + Discounts: 822.15, + Sales: 2516.85, + COGS: 11745, + Profit: 9228.15, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2325, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 16275, + Discounts: 941.15, + Sales: 15333.85, + COGS: 13445, + Profit: 1888.85, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 675, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 8100, + Discounts: 1458.6, + Sales: 6641.4, + COGS: 7293, + Profit: 651.6, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2990, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 35880, + Discounts: 1458.6, + Sales: 34421.4, + COGS: 7293, + Profit: 27128.4, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1072, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 7504, + Discounts: 941.15, + Sales: 6562.85, + COGS: 13445, + Profit: 6882.15, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1048, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 7336, + Discounts: 589.05, + Sales: 6746.95, + COGS: 8415, + Profit: 1668.05, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 469, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 5628, + Discounts: 673.8, + Sales: 4954.2, + COGS: 3369, + Profit: 1585.2, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 804, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 5628, + Discounts: 405.65, + Sales: 5222.35, + COGS: 5795, + Profit: 572.65, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 4240, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50880, + Discounts: 1119, + Sales: 49761, + COGS: 5595, + Profit: 44166, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1976, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 23712, + Discounts: 669.6, + Sales: 23042.4, + COGS: 3348, + Profit: 19694.4, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1984, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39680, + Discounts: 1563, + Sales: 38117, + COGS: 15630, + Profit: 22487, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 480, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 144000, + Discounts: 14865, + Sales: 129135, + COGS: 247750, + Profit: 118615, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 3551, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 24857, + Discounts: 355.6, + Sales: 24501.4, + COGS: 5080, + Profit: 19421.4, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1205, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 18075, + Discounts: 2093.25, + Sales: 15981.75, + COGS: 27910, + Profit: 11928.25, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2480, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 17360, + Discounts: 199.5, + Sales: 17160.5, + COGS: 2850, + Profit: 14310.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 2926, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 20482, + Discounts: 870.45, + Sales: 19611.55, + COGS: 12435, + Profit: 7176.55, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3210, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1123500, + Discounts: 24228.75, + Sales: 1099271.25, + COGS: 359970, + Profit: 739301.25, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 3221, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 402625, + Discounts: 22668.75, + Sales: 379956.25, + COGS: 435240, + Profit: 55283.75, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2389, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 836150, + Discounts: 12600, + Sales: 823550, + COGS: 187200, + Profit: 636350, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 1127, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13524, + Discounts: 1405.2, + Sales: 12118.8, + COGS: 7026, + Profit: 5092.8, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 319, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 95700, + Discounts: 16500, + Sales: 79200, + COGS: 275000, + Profit: 195800, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1610, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 32200, + Discounts: 1303, + Sales: 30897, + COGS: 13030, + Profit: 17867, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4100, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 512500, + Discounts: 18700, + Sales: 493800, + COGS: 359040, + Profit: 134760, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1012, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 126500, + Discounts: 14906.25, + Sales: 111593.75, + COGS: 286200, + Profit: 174606.25, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3337, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1001100, + Discounts: 24105, + Sales: 976995, + COGS: 401750, + Profit: 575245, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3955, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 27685, + Discounts: 814.45, + Sales: 26870.55, + COGS: 11635, + Profit: 15235.55, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4347, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1304100, + Discounts: 14865, + Sales: 1289235, + COGS: 247750, + Profit: 1041485, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1548, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 541800, + Discounts: 10535, + Sales: 531265, + COGS: 156520, + Profit: 374745, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2153, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 32295, + Discounts: 1965, + Sales: 30330, + COGS: 26200, + Profit: 4130, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3789, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1326150, + Discounts: 21490, + Sales: 1304660, + COGS: 319280, + Profit: 985380, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4364, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 87280, + Discounts: 1389, + Sales: 85891, + COGS: 13890, + Profit: 72001, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4126, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 515750, + Discounts: 5381.25, + Sales: 510368.75, + COGS: 103320, + Profit: 407048.75, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1343, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 167875, + Discounts: 4400, + Sales: 163475, + COGS: 84480, + Profit: 78995, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 245, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 4900, + Discounts: 1802, + Sales: 3098, + COGS: 18020, + Profit: 14922, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3376, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67520, + Discounts: 2663, + Sales: 64857, + COGS: 26630, + Profit: 38227, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1401, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 9807, + Discounts: 747.6, + Sales: 9059.4, + COGS: 10680, + Profit: 1620.6, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3483, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 52245, + Discounts: 1587, + Sales: 50658, + COGS: 21160, + Profit: 29498, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2244, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 33660, + Discounts: 416.25, + Sales: 33243.75, + COGS: 5550, + Profit: 27693.75, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 1360, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 20400, + Discounts: 2145.75, + Sales: 18254.25, + COGS: 28610, + Profit: 10355.75, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 279, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 34875, + Discounts: 5043.75, + Sales: 29831.25, + COGS: 96840, + Profit: 67008.75, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2521, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 882350, + Discounts: 10535, + Sales: 871815, + COGS: 156520, + Profit: 715295, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2433, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 48660, + Discounts: 2832, + Sales: 45828, + COGS: 28320, + Profit: 17508, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1738, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 34760, + Discounts: 1579, + Sales: 33181, + COGS: 15790, + Profit: 17391, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1106, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 138250, + Discounts: 5381.25, + Sales: 132868.75, + COGS: 103320, + Profit: 29548.75, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3379, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 422375, + Discounts: 4400, + Sales: 417975, + COGS: 84480, + Profit: 333495, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1221, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 24420, + Discounts: 1033, + Sales: 23387, + COGS: 10330, + Profit: 13057, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 213, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 63900, + Discounts: 18750, + Sales: 45150, + COGS: 312500, + Profit: 267350, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3335, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 66700, + Discounts: 1389, + Sales: 65311, + COGS: 13890, + Profit: 51421, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1260, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 25200, + Discounts: 1265, + Sales: 23935, + COGS: 12650, + Profit: 11285, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3034, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 60680, + Discounts: 2297, + Sales: 58383, + COGS: 22970, + Profit: 35413, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2929, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 58580, + Discounts: 2663, + Sales: 55917, + COGS: 26630, + Profit: 29287, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2389, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 16723, + Discounts: 199.5, + Sales: 16523.5, + COGS: 2850, + Profit: 13673.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3086, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 21602, + Discounts: 870.45, + Sales: 20731.55, + COGS: 12435, + Profit: 8296.55, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 745, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 260750, + Discounts: 23625, + Sales: 237125, + COGS: 351000, + Profit: 113875, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1266, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 443100, + Discounts: 9660, + Sales: 433440, + COGS: 143520, + Profit: 289920, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 3790, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1326500, + Discounts: 21490, + Sales: 1305010, + COGS: 319280, + Profit: 985730, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4287, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1286100, + Discounts: 18750, + Sales: 1267350, + COGS: 312500, + Profit: 954850, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3193, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 47895, + Discounts: 3420.9, + Sales: 44474.1, + COGS: 38010, + Profit: 6464.1, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1967, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39340, + Discounts: 1341, + Sales: 37999, + COGS: 11175, + Profit: 26824, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 631, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 9465, + Discounts: 2559.6, + Sales: 6905.4, + COGS: 28440, + Profit: 21534.6, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3469, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 41628, + Discounts: 404.64, + Sales: 41223.36, + COGS: 1686, + Profit: 39537.36, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 570, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 6840, + Discounts: 1655.28, + Sales: 5184.72, + COGS: 6897, + Profit: 1712.28, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 3215, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 48225, + Discounts: 1827, + Sales: 46398, + COGS: 20300, + Profit: 26098, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 3754, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 26278, + Discounts: 110.46, + Sales: 26167.54, + COGS: 1315, + Profit: 24852.54, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2187, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 273375, + Discounts: 6652.5, + Sales: 266722.5, + COGS: 106440, + Profit: 160282.5, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1959, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 685650, + Discounts: 20580, + Sales: 665070, + COGS: 254800, + Profit: 410270, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2181, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 763350, + Discounts: 30660, + Sales: 732690, + COGS: 379600, + Profit: 353090, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3559, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 24913, + Discounts: 589.26, + Sales: 24323.74, + COGS: 7015, + Profit: 17308.74, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2205, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 26460, + Discounts: 1960.56, + Sales: 24499.44, + COGS: 8169, + Profit: 16330.44, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1890, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 661500, + Discounts: 31416, + Sales: 630084, + COGS: 388960, + Profit: 241124, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1296, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 15552, + Discounts: 1655.28, + Sales: 13896.72, + COGS: 6897, + Profit: 6999.72, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 775, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 271250, + Discounts: 15267, + Sales: 255983, + COGS: 189020, + Profit: 66963, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2417, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 302125, + Discounts: 7140, + Sales: 294985, + COGS: 114240, + Profit: 180745, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1158, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 144750, + Discounts: 20662.5, + Sales: 124087.5, + COGS: 330600, + Profit: 206512.5, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 803, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 12045, + Discounts: 1377, + Sales: 10668, + COGS: 15300, + Profit: 4632, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3705, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1296750, + Discounts: 31416, + Sales: 1265334, + COGS: 388960, + Profit: 876374, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 589, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 4123, + Discounts: 629.16, + Sales: 3493.84, + COGS: 7490, + Profit: 3996.16, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3797, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1139100, + Discounts: 21978, + Sales: 1117122, + COGS: 305250, + Profit: 811872, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1321, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 462350, + Discounts: 43596, + Sales: 418754, + COGS: 539760, + Profit: 121006, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3999, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 59985, + Discounts: 2559.6, + Sales: 57425.4, + COGS: 28440, + Profit: 28985.4, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 4256, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 29792, + Discounts: 629.16, + Sales: 29162.84, + COGS: 7490, + Profit: 21672.84, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1643, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 492900, + Discounts: 21978, + Sales: 470922, + COGS: 305250, + Profit: 165672, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1912, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 38240, + Discounts: 1347.6, + Sales: 36892.4, + COGS: 11230, + Profit: 25662.4, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1610, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 483000, + Discounts: 43848, + Sales: 439152, + COGS: 609000, + Profit: 169848, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2160, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 270000, + Discounts: 14906.25, + Sales: 255093.75, + COGS: 238500, + Profit: 16593.75, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 466, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 163100, + Discounts: 35259, + Sales: 127841, + COGS: 436540, + Profit: 308699, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 328, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 114800, + Discounts: 15267, + Sales: 99533, + COGS: 189020, + Profit: 89487, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 4099, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 28693, + Discounts: 589.26, + Sales: 28103.74, + COGS: 7015, + Profit: 21088.74, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 990, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 346500, + Discounts: 43596, + Sales: 302904, + COGS: 539760, + Profit: 236856, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1433, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 28660, + Discounts: 2108.4, + Sales: 26551.6, + COGS: 17570, + Profit: 8981.6, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1478, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 22170, + Discounts: 1978.2, + Sales: 20191.8, + COGS: 21980, + Profit: 1788.2, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3798, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 56970, + Discounts: 1568.7, + Sales: 55401.3, + COGS: 17430, + Profit: 37971.3, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 447, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 6705, + Discounts: 1037.7, + Sales: 5667.3, + COGS: 11530, + Profit: 5862.7, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1711, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34220, + Discounts: 2108.4, + Sales: 32111.6, + COGS: 17570, + Profit: 14541.6, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 745, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 14900, + Discounts: 1201.2, + Sales: 13698.8, + COGS: 10010, + Profit: 3688.8, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 1732, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 12124, + Discounts: 559.86, + Sales: 11564.14, + COGS: 6665, + Profit: 4899.14, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1759, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 26385, + Discounts: 1037.7, + Sales: 25347.3, + COGS: 11530, + Profit: 13817.3, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 338, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 4056, + Discounts: 610.68, + Sales: 3445.32, + COGS: 2181, + Profit: 1264.32, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 3911, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 46932, + Discounts: 1582.56, + Sales: 45349.44, + COGS: 5652, + Profit: 39697.44, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3691, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 73820, + Discounts: 2567.6, + Sales: 71252.4, + COGS: 18340, + Profit: 52912.4, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 4473, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 53676, + Discounts: 1965.6, + Sales: 51710.4, + COGS: 7020, + Profit: 44690.4, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 383, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 4596, + Discounts: 1967.28, + Sales: 2628.72, + COGS: 7026, + Profit: 4397.28, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3105, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 21735, + Discounts: 505.19, + Sales: 21229.81, + COGS: 5155, + Profit: 16074.81, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1062, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 15930, + Discounts: 1325.1, + Sales: 14604.9, + COGS: 12620, + Profit: 1984.9, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 4083, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 28581, + Discounts: 556.15, + Sales: 28024.85, + COGS: 5675, + Profit: 22349.85, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3974, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 27818, + Discounts: 268.03, + Sales: 27549.97, + COGS: 2735, + Profit: 24814.97, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3723, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 26061, + Discounts: 775.18, + Sales: 25285.82, + COGS: 7910, + Profit: 17375.82, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2435, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 29220, + Discounts: 1460.34, + Sales: 27759.66, + COGS: 5215.5, + Profit: 22544.16, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1678, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 20136, + Discounts: 1860.6, + Sales: 18275.4, + COGS: 6645, + Profit: 11630.4, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1763, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 12341, + Discounts: 775.18, + Sales: 11565.82, + COGS: 7910, + Profit: 3655.82, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 4473, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 31311, + Discounts: 556.15, + Sales: 30754.85, + COGS: 5675, + Profit: 25079.85, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1246, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 436100, + Discounts: 43144.5, + Sales: 392955.5, + COGS: 457860, + Profit: 64904.5, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1615, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 484500, + Discounts: 9408, + Sales: 475092, + COGS: 112000, + Profit: 363092, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 749, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 224700, + Discounts: 45801, + Sales: 178899, + COGS: 545250, + Profit: 366351, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1318, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 26360, + Discounts: 2766.4, + Sales: 23593.6, + COGS: 19760, + Profit: 3833.6, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 2882, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 864600, + Discounts: 45801, + Sales: 818799, + COGS: 545250, + Profit: 273549, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3039, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 379875, + Discounts: 21875, + Sales: 358000, + COGS: 300000, + Profit: 58000, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2484, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 745200, + Discounts: 35742, + Sales: 709458, + COGS: 425500, + Profit: 283958, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3169, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 950700, + Discounts: 9408, + Sales: 941292, + COGS: 112000, + Profit: 829292, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4080, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 510000, + Discounts: 30738.75, + Sales: 479261.25, + COGS: 421560, + Profit: 57701.25, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3943, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 59145, + Discounts: 2206.05, + Sales: 56938.95, + COGS: 21010, + Profit: 35928.95, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 784, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 11760, + Discounts: 3077.55, + Sales: 8682.45, + COGS: 29310, + Profit: 20627.55, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 253, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 5060, + Discounts: 2149, + Sales: 2911, + COGS: 15350, + Profit: 12439, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1316, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 394800, + Discounts: 23583, + Sales: 371217, + COGS: 280750, + Profit: 90467, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 808, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 242400, + Discounts: 29484, + Sales: 212916, + COGS: 351000, + Profit: 138084, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3295, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 39540, + Discounts: 2320.92, + Sales: 37219.08, + COGS: 8289, + Profit: 28930.08, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 520, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 3640, + Discounts: 1041.25, + Sales: 2598.75, + COGS: 10625, + Profit: 8026.25, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 799, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 239700, + Discounts: 34839, + Sales: 204861, + COGS: 414750, + Profit: 209889, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3942, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 78840, + Discounts: 852.6, + Sales: 77987.4, + COGS: 6090, + Profit: 71897.4, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2498, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 312250, + Discounts: 18261.25, + Sales: 293988.75, + COGS: 250440, + Profit: 43548.75, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 2517, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 50340, + Discounts: 2766.4, + Sales: 47573.6, + COGS: 19760, + Profit: 27813.6, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3182, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 63640, + Discounts: 1989.4, + Sales: 61650.6, + COGS: 14210, + Profit: 47440.6, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1145, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 343500, + Discounts: 28812, + Sales: 314688, + COGS: 343000, + Profit: 28312, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 895, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 17900, + Discounts: 823.2, + Sales: 17076.8, + COGS: 5880, + Profit: 11196.8, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3814, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 45768, + Discounts: 2725.38, + Sales: 43042.62, + COGS: 9733.5, + Profit: 33309.12, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1188, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 356400, + Discounts: 20139, + Sales: 336261, + COGS: 239750, + Profit: 96511, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 2233, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 669900, + Discounts: 57687, + Sales: 612213, + COGS: 686750, + Profit: 74537, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 421, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 52625, + Discounts: 14393.75, + Sales: 38231.25, + COGS: 197400, + Profit: 159168.75, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 269, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 94150, + Discounts: 70462, + Sales: 23688, + COGS: 747760, + Profit: 724072, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 3766, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 470750, + Discounts: 8697.5, + Sales: 462052.5, + COGS: 119280, + Profit: 342772.5, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 952, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19040, + Discounts: 1565.2, + Sales: 17474.8, + COGS: 11180, + Profit: 6294.8, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2964, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 889200, + Discounts: 28812, + Sales: 860388, + COGS: 343000, + Profit: 517388, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1505, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 10535, + Discounts: 273.28, + Sales: 10261.72, + COGS: 2440, + Profit: 7821.72, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1678, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 33560, + Discounts: 2051.2, + Sales: 31508.8, + COGS: 12820, + Profit: 18688.8, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4249, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 29743, + Discounts: 143.92, + Sales: 29599.08, + COGS: 1285, + Profit: 28314.08, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1677, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 33540, + Discounts: 2051.2, + Sales: 31488.8, + COGS: 12820, + Profit: 18668.8, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3051, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 381375, + Discounts: 15400, + Sales: 365975, + COGS: 184800, + Profit: 181175, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 3372, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 50580, + Discounts: 588, + Sales: 49992, + COGS: 4900, + Profit: 45092, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1686, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 590100, + Discounts: 38136, + Sales: 551964, + COGS: 354120, + Profit: 197844, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3086, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 46290, + Discounts: 3001.2, + Sales: 43288.8, + COGS: 25010, + Profit: 18278.8, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4150, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 83000, + Discounts: 1132.8, + Sales: 81867.2, + COGS: 7080, + Profit: 74787.2, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3027, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 60540, + Discounts: 1032, + Sales: 59508, + COGS: 6450, + Profit: 53058, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 4359, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1307700, + Discounts: 37488, + Sales: 1270212, + COGS: 390500, + Profit: 879712, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 3628, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1088400, + Discounts: 30792, + Sales: 1057608, + COGS: 320750, + Profit: 736858, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 1589, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 23835, + Discounts: 853.2, + Sales: 22981.8, + COGS: 7110, + Profit: 15871.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2679, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 334875, + Discounts: 11140, + Sales: 323735, + COGS: 133680, + Profit: 190055, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3401, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 23807, + Discounts: 705.04, + Sales: 23101.96, + COGS: 6295, + Profit: 16806.96, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2815, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19705, + Discounts: 613.2, + Sales: 19091.8, + COGS: 5475, + Profit: 13616.8, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2964, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 59280, + Discounts: 2185.6, + Sales: 57094.4, + COGS: 13660, + Profit: 43434.4, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 4173, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1251900, + Discounts: 59040, + Sales: 1192860, + COGS: 615000, + Profit: 577860, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1157, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 8099, + Discounts: 379.68, + Sales: 7719.32, + COGS: 3390, + Profit: 4329.32, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3065, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 21455, + Discounts: 894.88, + Sales: 20560.12, + COGS: 7990, + Profit: 12570.12, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1962, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 13734, + Discounts: 1349.04, + Sales: 12384.96, + COGS: 12045, + Profit: 339.96, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4080, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 81600, + Discounts: 3094.4, + Sales: 78505.6, + COGS: 19340, + Profit: 59165.6, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1713, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34260, + Discounts: 4788.8, + Sales: 29471.2, + COGS: 29930, + Profit: 458.8, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2795, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 978250, + Discounts: 60088, + Sales: 918162, + COGS: 557960, + Profit: 360202, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 4082, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 28574, + Discounts: 1089.76, + Sales: 27484.24, + COGS: 9730, + Profit: 17754.24, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1691, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 591850, + Discounts: 38136, + Sales: 553714, + COGS: 354120, + Profit: 199594, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2305, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 27660, + Discounts: 574.08, + Sales: 27085.92, + COGS: 1794, + Profit: 25291.92, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3401, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 23807, + Discounts: 1627.92, + Sales: 22179.08, + COGS: 14535, + Profit: 7644.08, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2288, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 16016, + Discounts: 1309.28, + Sales: 14706.72, + COGS: 11690, + Profit: 3016.72, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 2399, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 719700, + Discounts: 9264, + Sales: 710436, + COGS: 96500, + Profit: 613936, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 4086, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1225800, + Discounts: 15240, + Sales: 1210560, + COGS: 158750, + Profit: 1051810, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2651, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 927850, + Discounts: 16086, + Sales: 911764, + COGS: 149370, + Profit: 762394, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3971, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27797, + Discounts: 1309.28, + Sales: 26487.72, + COGS: 11690, + Profit: 14797.72, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2512, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 879200, + Discounts: 10668, + Sales: 868532, + COGS: 99060, + Profit: 769472, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2745, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 960750, + Discounts: 11816, + Sales: 948934, + COGS: 109720, + Profit: 839214, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1903, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 570900, + Discounts: 51216, + Sales: 519684, + COGS: 533500, + Profit: 13816, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 647, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 194100, + Discounts: 19392, + Sales: 174708, + COGS: 202000, + Profit: 27292, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2914, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 58280, + Discounts: 1132.8, + Sales: 57147.2, + COGS: 7080, + Profit: 50067.2, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1889, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 13223, + Discounts: 1627.92, + Sales: 11595.08, + COGS: 14535, + Profit: 2939.92, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1466, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 29320, + Discounts: 2185.6, + Sales: 27134.4, + COGS: 13660, + Profit: 13474.4, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 887, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 266100, + Discounts: 59040, + Sales: 207060, + COGS: 615000, + Profit: 407940, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 395, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 7900, + Discounts: 2432, + Sales: 5468, + COGS: 15200, + Profit: 9732, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1693, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 25395, + Discounts: 853.2, + Sales: 24541.8, + COGS: 7110, + Profit: 17431.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2459, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 29508, + Discounts: 1320, + Sales: 28188, + COGS: 4125, + Profit: 24063, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2649, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 794700, + Discounts: 15240, + Sales: 779460, + COGS: 158750, + Profit: 620710, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 3608, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 72160, + Discounts: 698.4, + Sales: 71461.6, + COGS: 4365, + Profit: 67096.6, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1073, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 321900, + Discounts: 29538, + Sales: 292362, + COGS: 273500, + Profit: 18862, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1754, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 21048, + Discounts: 396.36, + Sales: 20651.64, + COGS: 1101, + Profit: 19550.64, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 2167, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 650100, + Discounts: 102667.5, + Sales: 547432.5, + COGS: 950625, + Profit: 403192.5, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1319, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 461650, + Discounts: 52479, + Sales: 409171, + COGS: 433160, + Profit: 23989, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1679, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 503700, + Discounts: 8694, + Sales: 495006, + COGS: 80500, + Profit: 414506, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1252, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 15024, + Discounts: 2506.68, + Sales: 12517.32, + COGS: 6963, + Profit: 5554.32, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3493, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 436625, + Discounts: 20891.25, + Sales: 415733.75, + COGS: 222840, + Profit: 192893.75, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1697, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 11879, + Discounts: 1014.93, + Sales: 10864.07, + COGS: 8055, + Profit: 2809.07, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1156, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 144500, + Discounts: 31466.25, + Sales: 113033.75, + COGS: 335640, + Profit: 222606.25, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 726, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 217800, + Discounts: 9018, + Sales: 208782, + COGS: 83500, + Profit: 125282, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1153, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 345900, + Discounts: 69255, + Sales: 276645, + COGS: 641250, + Profit: 364605, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2720, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 952000, + Discounts: 76135.5, + Sales: 875864.5, + COGS: 628420, + Profit: 247444.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3658, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 54870, + Discounts: 4961.25, + Sales: 49908.75, + COGS: 36750, + Profit: 13158.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2950, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 885000, + Discounts: 29538, + Sales: 855462, + COGS: 273500, + Profit: 581962, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1821, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27315, + Discounts: 1656.45, + Sales: 25658.55, + COGS: 12270, + Profit: 13388.55, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 4174, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 50088, + Discounts: 396.36, + Sales: 49691.64, + COGS: 1101, + Profit: 48590.64, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1127, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 338100, + Discounts: 35748, + Sales: 302352, + COGS: 331000, + Profit: 28648, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2209, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 26508, + Discounts: 1917, + Sales: 24591, + COGS: 5325, + Profit: 19266, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 862, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 107750, + Discounts: 31466.25, + Sales: 76283.75, + COGS: 335640, + Profit: 259356.25, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3805, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 57075, + Discounts: 330.75, + Sales: 56744.25, + COGS: 2450, + Profit: 54294.25, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1415, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 424500, + Discounts: 102424.5, + Sales: 322075.5, + COGS: 948375, + Profit: 626299.5, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2231, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 780850, + Discounts: 41170.5, + Sales: 739679.5, + COGS: 339820, + Profit: 399859.5, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3649, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 456125, + Discounts: 6378.75, + Sales: 449746.25, + COGS: 68040, + Profit: 381706.25, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2948, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 368500, + Discounts: 23737.5, + Sales: 344762.5, + COGS: 253200, + Profit: 91562.5, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3395, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1188250, + Discounts: 39973.5, + Sales: 1148276.5, + COGS: 329940, + Profit: 818336.5, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2650, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 31800, + Discounts: 2112.48, + Sales: 29687.52, + COGS: 5868, + Profit: 23819.52, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 585, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 175500, + Discounts: 71793, + Sales: 103707, + COGS: 664750, + Profit: 561043, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1316, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 460600, + Discounts: 42572.25, + Sales: 418027.75, + COGS: 351390, + Profit: 66637.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 4459, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 53508, + Discounts: 950.4, + Sales: 52557.6, + COGS: 2640, + Profit: 49917.6, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2711, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 813300, + Discounts: 50409, + Sales: 762891, + COGS: 466750, + Profit: 296141, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2621, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 31452, + Discounts: 2412.72, + Sales: 29039.28, + COGS: 6702, + Profit: 22337.28, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3613, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 54195, + Discounts: 1656.45, + Sales: 52538.55, + COGS: 12270, + Profit: 40268.55, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1847, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 230875, + Discounts: 9866.25, + Sales: 221008.75, + COGS: 105240, + Profit: 115768.75, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2996, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1048600, + Discounts: 65236.5, + Sales: 983363.5, + COGS: 538460, + Profit: 444903.5, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2838, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 993300, + Discounts: 39973.5, + Sales: 953326.5, + COGS: 329940, + Profit: 623386.5, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1302, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 19530, + Discounts: 1309.5, + Sales: 18220.5, + COGS: 9700, + Profit: 8520.5, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1536, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 30720, + Discounts: 3049.2, + Sales: 27670.8, + COGS: 16940, + Profit: 10730.8, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1291, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 25820, + Discounts: 1193.4, + Sales: 24626.6, + COGS: 6630, + Profit: 17996.6, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1213, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 8491, + Discounts: 515.97, + Sales: 7975.03, + COGS: 4095, + Profit: 3880.03, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2370, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 28440, + Discounts: 1706.4, + Sales: 26733.6, + COGS: 4740, + Profit: 21993.6, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1979, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 13853, + Discounts: 328.23, + Sales: 13524.77, + COGS: 2605, + Profit: 10919.77, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2879, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 57580, + Discounts: 1751.4, + Sales: 55828.6, + COGS: 9730, + Profit: 46098.6, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1707, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34140, + Discounts: 1868.4, + Sales: 32271.6, + COGS: 10380, + Profit: 21891.6, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2933, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 20531, + Discounts: 226.8, + Sales: 20304.2, + COGS: 1800, + Profit: 18504.2, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1014, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 12168, + Discounts: 2124.36, + Sales: 10043.64, + COGS: 5901, + Profit: 4142.64, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 693, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 10395, + Discounts: 3547.8, + Sales: 6847.2, + COGS: 26280, + Profit: 19432.8, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3741, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26187, + Discounts: 226.8, + Sales: 25960.2, + COGS: 1800, + Profit: 24160.2, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3116, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 62320, + Discounts: 4827.6, + Sales: 57492.4, + COGS: 26820, + Profit: 30672.4, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 3995, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27965, + Discounts: 328.23, + Sales: 27636.77, + COGS: 2605, + Profit: 25031.77, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 953, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19060, + Discounts: 1868.4, + Sales: 17191.6, + COGS: 10380, + Profit: 6811.6, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2530, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 37950, + Discounts: 2201.18, + Sales: 35748.82, + COGS: 16305, + Profit: 19443.82, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2565, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 30780, + Discounts: 330.48, + Sales: 30449.52, + COGS: 918, + Profit: 29531.52, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 4297, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 51564, + Discounts: 463.2, + Sales: 51100.8, + COGS: 1158, + Profit: 49942.8, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2871, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20097, + Discounts: 1629.6, + Sales: 18467.4, + COGS: 11640, + Profit: 6827.4, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3537, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 42444, + Discounts: 463.2, + Sales: 41980.8, + COGS: 1158, + Profit: 40822.8, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1598, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 199750, + Discounts: 43068.75, + Sales: 156681.25, + COGS: 413460, + Profit: 256778.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 2616, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 327000, + Discounts: 18525, + Sales: 308475, + COGS: 177840, + Profit: 130635, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2836, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 992600, + Discounts: 80955, + Sales: 911645, + COGS: 601380, + Profit: 310265, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 4023, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 502875, + Discounts: 22550, + Sales: 480325, + COGS: 216480, + Profit: 263845, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3994, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 59910, + Discounts: 3108, + Sales: 56802, + COGS: 20720, + Profit: 36082, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2928, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 58560, + Discounts: 3908, + Sales: 54652, + COGS: 19540, + Profit: 35112, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2912, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 873600, + Discounts: 17730, + Sales: 855870, + COGS: 147750, + Profit: 708120, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3671, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 55065, + Discounts: 3250.5, + Sales: 51814.5, + COGS: 21670, + Profit: 30144.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2778, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 55560, + Discounts: 482, + Sales: 55078, + COGS: 2410, + Profit: 52668, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 405, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 6075, + Discounts: 1021.5, + Sales: 5053.5, + COGS: 6810, + Profit: 1756.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2013, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 30195, + Discounts: 765, + Sales: 29430, + COGS: 5100, + Profit: 24330, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2634, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 39510, + Discounts: 1185, + Sales: 38325, + COGS: 7900, + Profit: 30425, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 4166, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1458100, + Discounts: 22365, + Sales: 1435735, + COGS: 166140, + Profit: 1269595, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 355, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 44375, + Discounts: 19950, + Sales: 24425, + COGS: 191520, + Profit: 167095, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2382, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 714600, + Discounts: 68820, + Sales: 645780, + COGS: 573500, + Profit: 72280, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 4170, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 83400, + Discounts: 482, + Sales: 82918, + COGS: 2410, + Profit: 80508, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 892, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 6244, + Discounts: 1865.5, + Sales: 4378.5, + COGS: 13325, + Profit: 8946.5, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2200, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 275000, + Discounts: 23950, + Sales: 251050, + COGS: 229920, + Profit: 21130, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3389, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1016700, + Discounts: 25590, + Sales: 991110, + COGS: 213250, + Profit: 777860, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 2990, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 373750, + Discounts: 4262.5, + Sales: 369487.5, + COGS: 40920, + Profit: 328567.5, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 4013, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 60195, + Discounts: 961.5, + Sales: 59233.5, + COGS: 6410, + Profit: 52823.5, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 739, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 258650, + Discounts: 98245, + Sales: 160405, + COGS: 729820, + Profit: 569415, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1989, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 596700, + Discounts: 12960, + Sales: 583740, + COGS: 108000, + Profit: 475740, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2991, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 897300, + Discounts: 68820, + Sales: 828480, + COGS: 573500, + Profit: 254980, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 4237, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 63555, + Discounts: 3250.5, + Sales: 60304.5, + COGS: 21670, + Profit: 38634.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1442, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 180250, + Discounts: 31612.5, + Sales: 148637.5, + COGS: 303480, + Profit: 154842.5, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2712, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 949200, + Discounts: 65450, + Sales: 883750, + COGS: 486200, + Profit: 397550, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1508, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 188500, + Discounts: 7237.5, + Sales: 181262.5, + COGS: 69480, + Profit: 111782.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 4245, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1485750, + Discounts: 78400, + Sales: 1407350, + COGS: 582400, + Profit: 824950, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2630, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 789000, + Discounts: 89790, + Sales: 699210, + COGS: 748250, + Profit: 49040, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1182, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 14184, + Discounts: 4224.6, + Sales: 9959.4, + COGS: 10561.5, + Profit: 602.1, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1221, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 24420, + Discounts: 4078, + Sales: 20342, + COGS: 20390, + Profit: 48, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 963, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 11556, + Discounts: 3088.8, + Sales: 8467.2, + COGS: 7722, + Profit: 745.2, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 3243, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1135050, + Discounts: 24745, + Sales: 1110305, + COGS: 183820, + Profit: 926485, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1120, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 16800, + Discounts: 3108, + Sales: 13692, + COGS: 20720, + Profit: 7028, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1174, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 352200, + Discounts: 25590, + Sales: 326610, + COGS: 213250, + Profit: 113360, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 2541, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 30492, + Discounts: 1581.36, + Sales: 28910.64, + COGS: 3594, + Profit: 25316.64, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3246, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 22722, + Discounts: 1949.64, + Sales: 20772.36, + COGS: 12660, + Profit: 8112.36, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1531, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 18372, + Discounts: 1581.36, + Sales: 16790.64, + COGS: 3594, + Profit: 13196.64, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2526, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 37890, + Discounts: 633.6, + Sales: 37256.4, + COGS: 3840, + Profit: 33416.4, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 1136, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 13632, + Discounts: 623.04, + Sales: 13008.96, + COGS: 1416, + Profit: 11592.96, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1983, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 13881, + Discounts: 1215.83, + Sales: 12665.17, + COGS: 7895, + Profit: 4770.17, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 3259, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 39108, + Discounts: 1326.6, + Sales: 37781.4, + COGS: 3015, + Profit: 34766.4, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 3267, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 49005, + Discounts: 5279.17, + Sales: 43725.82, + COGS: 31995, + Profit: 11730.82, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 2454, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 29448, + Discounts: 623.04, + Sales: 28824.96, + COGS: 1416, + Profit: 27408.96, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 2643, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 31716, + Discounts: 2556.84, + Sales: 29159.16, + COGS: 5811, + Profit: 23348.16, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 383, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 134050, + Discounts: 30492, + Sales: 103558, + COGS: 205920, + Profit: 102362, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2801, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 840300, + Discounts: 92763, + Sales: 747537, + COGS: 702750, + Profit: 44787, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1667, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 208375, + Discounts: 33563.75, + Sales: 174811.25, + COGS: 292920, + Profit: 118108.75, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 3539, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 53085, + Discounts: 2574, + Sales: 50511, + COGS: 15600, + Profit: 34911, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 4226, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 29582, + Discounts: 2083.62, + Sales: 27498.38, + COGS: 13530, + Profit: 13968.38, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2220, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 777000, + Discounts: 29491, + Sales: 747509, + COGS: 199160, + Profit: 548349, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 776, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 15520, + Discounts: 6582.4, + Sales: 8937.6, + COGS: 29920, + Profit: 20982.4, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 553, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 8295, + Discounts: 3559.05, + Sales: 4735.95, + COGS: 21570, + Profit: 16834.05, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2107, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 632100, + Discounts: 28809, + Sales: 603291, + COGS: 218250, + Profit: 385041, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2468, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 49360, + Discounts: 2468.4, + Sales: 46891.6, + COGS: 11220, + Profit: 35671.6, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1905, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 666750, + Discounts: 81023.25, + Sales: 585726.75, + COGS: 547170, + Profit: 38556.75, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3658, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 43896, + Discounts: 5314.32, + Sales: 38581.68, + COGS: 12078, + Profit: 26503.68, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 4301, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 51612, + Discounts: 3201.66, + Sales: 48410.34, + COGS: 7276.5, + Profit: 41133.84, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2446, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 48920, + Discounts: 5266.8, + Sales: 43653.2, + COGS: 23940, + Profit: 19713.2, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 4209, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 63135, + Discounts: 3273.6, + Sales: 59861.4, + COGS: 19840, + Profit: 40021.4, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3353, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 419125, + Discounts: 33563.75, + Sales: 385561.25, + COGS: 292920, + Profit: 92641.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1401, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 28020, + Discounts: 6582.4, + Sales: 21437.6, + COGS: 29920, + Profit: 8482.4, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1865, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 559500, + Discounts: 45078, + Sales: 514422, + COGS: 341500, + Profit: 172922, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 463, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 9260, + Discounts: 6171, + Sales: 3089, + COGS: 28050, + Profit: 24961, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 4177, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 62655, + Discounts: 1080.75, + Sales: 61574.25, + COGS: 6550, + Profit: 55024.25, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2523, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 883050, + Discounts: 13244, + Sales: 869806, + COGS: 89440, + Profit: 780366, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1930, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 13510, + Discounts: 1392.16, + Sales: 12117.84, + COGS: 9040, + Profit: 3077.84, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1301, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 15612, + Discounts: 2288.88, + Sales: 13323.12, + COGS: 5202, + Profit: 8121.12, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 4125, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 515625, + Discounts: 7617.5, + Sales: 508007.5, + COGS: 66480, + Profit: 441527.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 607, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 12140, + Discounts: 6457, + Sales: 5683, + COGS: 29350, + Profit: 23667, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 478, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 59750, + Discounts: 43518.75, + Sales: 16231.25, + COGS: 379800, + Profit: 363568.75, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 4489, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 89780, + Discounts: 5783.8, + Sales: 83996.2, + COGS: 26290, + Profit: 57706.2, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1504, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 188000, + Discounts: 19703.75, + Sales: 168296.25, + COGS: 171960, + Profit: 3663.75, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 3763, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 470375, + Discounts: 13021.25, + Sales: 457353.75, + COGS: 113640, + Profit: 343713.75, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2412, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 844200, + Discounts: 13244, + Sales: 830956, + COGS: 89440, + Profit: 741516, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2342, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 35130, + Discounts: 3559.05, + Sales: 31570.95, + COGS: 21570, + Profit: 10000.95, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4451, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 31157, + Discounts: 292.6, + Sales: 30864.4, + COGS: 1900, + Profit: 28964.4, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3796, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1328600, + Discounts: 37212, + Sales: 1291388, + COGS: 230360, + Profit: 1061028, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 2286, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 285750, + Discounts: 36240, + Sales: 249510, + COGS: 289920, + Profit: 40410, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3614, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 451750, + Discounts: 32340, + Sales: 419410, + COGS: 258720, + Profit: 160690, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1716, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 25740, + Discounts: 4840.2, + Sales: 20899.8, + COGS: 26890, + Profit: 5990.2, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1301, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 19515, + Discounts: 1218.6, + Sales: 18296.4, + COGS: 6770, + Profit: 11526.4, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 4175, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1252500, + Discounts: 63828, + Sales: 1188672, + COGS: 443250, + Profit: 745422, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 975, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 6825, + Discounts: 2032.8, + Sales: 4792.2, + COGS: 12100, + Profit: 7307.8, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1154, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 8078, + Discounts: 2296.56, + Sales: 5781.44, + COGS: 13670, + Profit: 7888.56, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1873, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 37460, + Discounts: 4116, + Sales: 33344, + COGS: 17150, + Profit: 16194, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3766, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1129800, + Discounts: 42696, + Sales: 1087104, + COGS: 296500, + Profit: 790604, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3558, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1067400, + Discounts: 125820, + Sales: 941580, + COGS: 873750, + Profit: 67830, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3156, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1104600, + Discounts: 37212, + Sales: 1067388, + COGS: 230360, + Profit: 837028, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2994, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 374250, + Discounts: 32340, + Sales: 341910, + COGS: 258720, + Profit: 83190, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2087, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 41740, + Discounts: 2172, + Sales: 39568, + COGS: 9050, + Profit: 30518, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1056, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 21120, + Discounts: 4116, + Sales: 17004, + COGS: 17150, + Profit: 146, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1353, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 473550, + Discounts: 66948, + Sales: 406602, + COGS: 414440, + Profit: 7838, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 416, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 124800, + Discounts: 48924, + Sales: 75876, + COGS: 339750, + Profit: 263874, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3880, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1164000, + Discounts: 77400, + Sales: 1086600, + COGS: 537500, + Profit: 549100, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 809, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 283150, + Discounts: 50274, + Sales: 232876, + COGS: 311220, + Profit: 78344, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1892, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 28380, + Discounts: 684, + Sales: 27696, + COGS: 3800, + Profit: 23896, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2072, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 41440, + Discounts: 2959.2, + Sales: 38480.8, + COGS: 12330, + Profit: 26150.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3052, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1068200, + Discounts: 58590, + Sales: 1009610, + COGS: 362700, + Profit: 646910, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3121, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1092350, + Discounts: 41412, + Sales: 1050938, + COGS: 256360, + Profit: 794578, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2059, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 41180, + Discounts: 2172, + Sales: 39008, + COGS: 9050, + Profit: 29958, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4254, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 51048, + Discounts: 3036.96, + Sales: 48011.04, + COGS: 6327, + Profit: 41684.04, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1293, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 19395, + Discounts: 6974.1, + Sales: 12420.9, + COGS: 38745, + Profit: 26324.1, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1293, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 452550, + Discounts: 26166, + Sales: 426384, + COGS: 161980, + Profit: 264404, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 230, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 80500, + Discounts: 41412, + Sales: 39088, + COGS: 256360, + Profit: 217272, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1723, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 215375, + Discounts: 35805, + Sales: 179570, + COGS: 286440, + Profit: 106870, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 240, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 4800, + Discounts: 2959.2, + Sales: 1840.8, + COGS: 12330, + Profit: 10489.2, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2571, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 899850, + Discounts: 11340, + Sales: 888510, + COGS: 70200, + Profit: 818310, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1661, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 11627, + Discounts: 2874.06, + Sales: 8752.94, + COGS: 17107.5, + Profit: 8354.56, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 4474, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 31318, + Discounts: 2296.56, + Sales: 29021.44, + COGS: 13670, + Profit: 15351.44, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 833, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 12495, + Discounts: 4586.4, + Sales: 7908.6, + COGS: 25480, + Profit: 17571.4, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 674, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 13480, + Discounts: 6051.6, + Sales: 7428.4, + COGS: 25215, + Profit: 17786.6, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 778, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 9336, + Discounts: 3831.84, + Sales: 5504.16, + COGS: 7983, + Profit: 2478.84, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1457, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 29140, + Discounts: 3674.4, + Sales: 25465.6, + COGS: 15310, + Profit: 10155.6, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3158, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 22106, + Discounts: 1252.44, + Sales: 20853.56, + COGS: 7455, + Profit: 13398.56, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 4095, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 81900, + Discounts: 3674.4, + Sales: 78225.6, + COGS: 15310, + Profit: 62915.6, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 3170, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 38040, + Discounts: 3975.84, + Sales: 34064.16, + COGS: 8283, + Profit: 25781.16, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 493, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 7395, + Discounts: 5005.65, + Sales: 2389.35, + COGS: 25670, + Profit: 23280.65, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 3286, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 49290, + Discounts: 5005.65, + Sales: 44284.35, + COGS: 25670, + Profit: 18614.35, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 3563, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1247050, + Discounts: 41996.5, + Sales: 1205053.5, + COGS: 239980, + Profit: 965073.5, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 4109, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1438150, + Discounts: 81445, + Sales: 1356705, + COGS: 465400, + Profit: 891305, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 3653, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 73060, + Discounts: 1149.2, + Sales: 71910.8, + COGS: 4420, + Profit: 67490.8, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2203, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 771050, + Discounts: 44703.75, + Sales: 726346.25, + COGS: 255450, + Profit: 470896.25, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2924, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20468, + Discounts: 1181.18, + Sales: 19286.82, + COGS: 6490, + Profit: 12796.82, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2650, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 31800, + Discounts: 942.24, + Sales: 30857.76, + COGS: 1812, + Profit: 29045.76, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1194, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 23880, + Discounts: 5863, + Sales: 18017, + COGS: 22550, + Profit: 4533, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 3366, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 67320, + Discounts: 3247.4, + Sales: 64072.6, + COGS: 12490, + Profit: 51582.6, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1325, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 9275, + Discounts: 1309.04, + Sales: 7965.97, + COGS: 7192.5, + Profit: 773.47, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4243, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1272900, + Discounts: 31473, + Sales: 1241427, + COGS: 201750, + Profit: 1039677, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2887, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 57740, + Discounts: 6866.6, + Sales: 50873.4, + COGS: 26410, + Profit: 24463.4, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3839, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 76780, + Discounts: 7040.8, + Sales: 69739.2, + COGS: 27080, + Profit: 42659.2, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1863, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 652050, + Discounts: 119756, + Sales: 532294, + COGS: 684320, + Profit: 152026, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2858, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 357250, + Discounts: 25723.75, + Sales: 331526.25, + COGS: 189960, + Profit: 141566.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2868, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 34416, + Discounts: 890.76, + Sales: 33525.24, + COGS: 1713, + Profit: 31812.24, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3805, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 26635, + Discounts: 2453.36, + Sales: 24181.64, + COGS: 13480, + Profit: 10701.64, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3914, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 58710, + Discounts: 3051.75, + Sales: 55658.25, + COGS: 15650, + Profit: 40008.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 524, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 10480, + Discounts: 3247.4, + Sales: 7232.6, + COGS: 12490, + Profit: 5257.4, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3095, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1083250, + Discounts: 16243.5, + Sales: 1067006.5, + COGS: 92820, + Profit: 974186.5, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2410, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 28920, + Discounts: 1580.28, + Sales: 27339.72, + COGS: 3039, + Profit: 24300.72, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 4263, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 63945, + Discounts: 7795.13, + Sales: 56149.88, + COGS: 39975, + Profit: 16174.88, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2239, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 783650, + Discounts: 119756, + Sales: 663894, + COGS: 684320, + Profit: 20426, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 569, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 3983, + Discounts: 1082.9, + Sales: 2900.1, + COGS: 5950, + Profit: 3049.9, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3889, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 46668, + Discounts: 942.24, + Sales: 45725.76, + COGS: 1812, + Profit: 43913.76, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 1378, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 20670, + Discounts: 1287, + Sales: 19383, + COGS: 6600, + Profit: 12783, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2253, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 27036, + Discounts: 639.6, + Sales: 26396.4, + COGS: 1230, + Profit: 25166.4, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3202, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 960600, + Discounts: 101595, + Sales: 859005, + COGS: 651250, + Profit: 207755, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3835, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 46020, + Discounts: 1580.28, + Sales: 44439.72, + COGS: 3039, + Profit: 41400.72, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 2487, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 310875, + Discounts: 25723.75, + Sales: 285151.25, + COGS: 189960, + Profit: 95191.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4428, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 66420, + Discounts: 3051.75, + Sales: 63368.25, + COGS: 15650, + Profit: 47718.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1200, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 150000, + Discounts: 26958.75, + Sales: 123041.25, + COGS: 199080, + Profit: 76038.75, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2953, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 20671, + Discounts: 1082.9, + Sales: 19588.1, + COGS: 5950, + Profit: 13638.1, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1453, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 17436, + Discounts: 639.6, + Sales: 16796.4, + COGS: 1230, + Profit: 15566.4, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 865, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 10380, + Discounts: 2761.2, + Sales: 7618.8, + COGS: 5310, + Profit: 2308.8, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1072, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 21440, + Discounts: 7221.2, + Sales: 14218.8, + COGS: 25790, + Profit: 11571.2, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1737, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 34740, + Discounts: 4880.4, + Sales: 29859.6, + COGS: 17430, + Profit: 12429.6, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1535, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 10745, + Discounts: 2936.08, + Sales: 7808.92, + COGS: 14980, + Profit: 7171.08, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2532, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 17724, + Discounts: 274.4, + Sales: 17449.6, + COGS: 1400, + Profit: 16049.6, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1765, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 12355, + Discounts: 287.14, + Sales: 12067.86, + COGS: 1465, + Profit: 10602.86, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1567, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 10969, + Discounts: 2936.08, + Sales: 8032.92, + COGS: 14980, + Profit: 6947.08, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2640, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 39600, + Discounts: 583.8, + Sales: 39016.2, + COGS: 2780, + Profit: 36236.2, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3079, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 61580, + Discounts: 6798.4, + Sales: 54781.6, + COGS: 24280, + Profit: 30501.6, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4130, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 61950, + Discounts: 3710.7, + Sales: 58239.3, + COGS: 17670, + Profit: 40569.3, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2938, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 35256, + Discounts: 2340.24, + Sales: 32915.76, + COGS: 4179, + Profit: 28736.76, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3080, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 21560, + Discounts: 274.4, + Sales: 21285.6, + COGS: 1400, + Profit: 19885.6, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1530, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 18360, + Discounts: 2340.24, + Sales: 16019.76, + COGS: 4179, + Profit: 11840.76, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 3537, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 42444, + Discounts: 3385.2, + Sales: 39058.8, + COGS: 6045, + Profit: 33013.8, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 2021, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 606300, + Discounts: 33642, + Sales: 572658, + COGS: 200250, + Profit: 372408, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1804, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 225500, + Discounts: 17902.5, + Sales: 207597.5, + COGS: 122760, + Profit: 84837.5, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1014, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 304200, + Discounts: 62832, + Sales: 241368, + COGS: 374000, + Profit: 132632, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2913, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 873900, + Discounts: 42420, + Sales: 831480, + COGS: 252500, + Profit: 578980, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 763, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 11445, + Discounts: 3177.3, + Sales: 8267.7, + COGS: 15130, + Profit: 6862.3, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1425, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 21375, + Discounts: 4830, + Sales: 16545, + COGS: 23000, + Profit: 6455, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 4357, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 544625, + Discounts: 49367.5, + Sales: 495257.5, + COGS: 338520, + Profit: 156737.5, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 2138, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 748300, + Discounts: 109147.5, + Sales: 639152.5, + COGS: 579150, + Profit: 60002.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3825, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1338750, + Discounts: 58751, + Sales: 1279999, + COGS: 311740, + Profit: 968259, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 3393, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1187550, + Discounts: 9800, + Sales: 1177750, + COGS: 52000, + Profit: 1125750, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 2215, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 15505, + Discounts: 380.24, + Sales: 15124.76, + COGS: 1940, + Profit: 13184.76, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2278, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 15946, + Discounts: 1692.46, + Sales: 14253.54, + COGS: 8635, + Profit: 5618.54, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 403, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 6045, + Discounts: 4830, + Sales: 1215, + COGS: 23000, + Profit: 21785, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 289, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 5780, + Discounts: 728, + Sales: 5052, + COGS: 2600, + Profit: 2452, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 749, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 11235, + Discounts: 5187, + Sales: 6048, + COGS: 24700, + Profit: 18652, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 372, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 5580, + Discounts: 3660.3, + Sales: 1919.7, + COGS: 17430, + Profit: 15510.3, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3781, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 45372, + Discounts: 4895.52, + Sales: 40476.48, + COGS: 8742, + Profit: 31734.48, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1785, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 12495, + Discounts: 1696.38, + Sales: 10798.62, + COGS: 8655, + Profit: 2143.62, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4029, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1410150, + Discounts: 34300, + Sales: 1375850, + COGS: 182000, + Profit: 1193850, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2813, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 33756, + Discounts: 3732.96, + Sales: 30023.04, + COGS: 6666, + Profit: 23357.04, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2150, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 752500, + Discounts: 57673, + Sales: 694827, + COGS: 306020, + Profit: 388807, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2093, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 732550, + Discounts: 94178, + Sales: 638372, + COGS: 499720, + Profit: 138652, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 4391, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 548875, + Discounts: 27562.5, + Sales: 521312.5, + COGS: 189000, + Profit: 332312.5, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2695, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 53900, + Discounts: 1696.8, + Sales: 52203.2, + COGS: 6060, + Profit: 46143.2, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1337, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 401100, + Discounts: 103320, + Sales: 297780, + COGS: 615000, + Profit: 317220, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2621, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 786300, + Discounts: 11298, + Sales: 775002, + COGS: 67250, + Profit: 707752, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3735, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1120500, + Discounts: 106512, + Sales: 1013988, + COGS: 634000, + Profit: 379988, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 4320, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 30240, + Discounts: 2844.94, + Sales: 27395.06, + COGS: 14515, + Profit: 12880.06, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2828, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 848400, + Discounts: 106722, + Sales: 741678, + COGS: 635250, + Profit: 106428, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 2586, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 775800, + Discounts: 11298, + Sales: 764502, + COGS: 67250, + Profit: 697252, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1248, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 374400, + Discounts: 62832, + Sales: 311568, + COGS: 374000, + Profit: 62432, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 4035, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 1210500, + Discounts: 42420, + Sales: 1168080, + COGS: 252500, + Profit: 915580, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 359, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 125650, + Discounts: 62769, + Sales: 62881, + COGS: 333060, + Profit: 270179, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 3926, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1177800, + Discounts: 37296, + Sales: 1140504, + COGS: 222000, + Profit: 918504, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 4247, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 530875, + Discounts: 49770, + Sales: 481105, + COGS: 341280, + Profit: 139825, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2695, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 32340, + Discounts: 4158, + Sales: 28182, + COGS: 7425, + Profit: 20757, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1104, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 16560, + Discounts: 3660.3, + Sales: 12899.7, + COGS: 17430, + Profit: 4530.3, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1449, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 17388, + Discounts: 4895.52, + Sales: 12492.48, + COGS: 8742, + Profit: 3750.48, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1131, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 7917, + Discounts: 1696.38, + Sales: 6220.62, + COGS: 8655, + Profit: 2434.38, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1468, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 10276, + Discounts: 1692.46, + Sales: 8583.54, + COGS: 8635, + Profit: 51.46, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1272, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 19080, + Discounts: 3927, + Sales: 15153, + COGS: 18700, + Profit: 3547, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1403, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 175375, + Discounts: 22012.5, + Sales: 153362.5, + COGS: 140880, + Profit: 12482.5, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2161, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 270125, + Discounts: 51881.25, + Sales: 218243.75, + COGS: 332040, + Profit: 113796.25, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1937, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 242125, + Discounts: 20343.75, + Sales: 221781.25, + COGS: 130200, + Profit: 91581.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2879, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 863700, + Discounts: 24570, + Sales: 839130, + COGS: 136500, + Profit: 702630, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1330, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 26600, + Discounts: 3474, + Sales: 23126, + COGS: 11580, + Profit: 11546, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2426, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 36390, + Discounts: 3631.5, + Sales: 32758.5, + COGS: 16140, + Profit: 16618.5, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2033, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14231, + Discounts: 2661.75, + Sales: 11569.25, + COGS: 12675, + Profit: 1105.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2029, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 710150, + Discounts: 149677.5, + Sales: 560472.5, + COGS: 741260, + Profit: 180787.5, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1049, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 15735, + Discounts: 5757.75, + Sales: 9977.25, + COGS: 25590, + Profit: 15612.75, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1062, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 21240, + Discounts: 801, + Sales: 20439, + COGS: 2670, + Profit: 17769, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2509, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 313625, + Discounts: 20343.75, + Sales: 293281.25, + COGS: 130200, + Profit: 163081.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1743, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 26145, + Discounts: 2643.75, + Sales: 23501.25, + COGS: 11750, + Profit: 11751.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3418, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1196300, + Discounts: 105367.5, + Sales: 1090932.5, + COGS: 521820, + Profit: 569112.5, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1751, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 612850, + Discounts: 112927.5, + Sales: 499922.5, + COGS: 559260, + Profit: 59337.5, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3228, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 38736, + Discounts: 1645.2, + Sales: 37090.8, + COGS: 2742, + Profit: 34348.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1105, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 22100, + Discounts: 879, + Sales: 21221, + COGS: 2930, + Profit: 18291, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2778, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 33336, + Discounts: 900, + Sales: 32436, + COGS: 1500, + Profit: 30936, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1173, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 17595, + Discounts: 6358.5, + Sales: 11236.5, + COGS: 28260, + Profit: 17023.5, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3160, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 395000, + Discounts: 12431.25, + Sales: 382568.75, + COGS: 79560, + Profit: 303008.75, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 4322, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1296600, + Discounts: 115830, + Sales: 1180770, + COGS: 643500, + Profit: 537270, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1901, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 237625, + Discounts: 45712.5, + Sales: 191912.5, + COGS: 292560, + Profit: 100647.5, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2980, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 35760, + Discounts: 1645.2, + Sales: 34114.8, + COGS: 2742, + Profit: 31372.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4068, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 81360, + Discounts: 2596.5, + Sales: 78763.5, + COGS: 8655, + Profit: 70108.5, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2105, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 31575, + Discounts: 1107, + Sales: 30468, + COGS: 4920, + Profit: 25548, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1647, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 32940, + Discounts: 801, + Sales: 32139, + COGS: 2670, + Profit: 29469, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 235, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 3525, + Discounts: 2643.75, + Sales: 881.25, + COGS: 11750, + Profit: 10868.75, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3617, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 452125, + Discounts: 55387.5, + Sales: 396737.5, + COGS: 354480, + Profit: 42257.5, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2106, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 263250, + Discounts: 10350, + Sales: 252900, + COGS: 66240, + Profit: 186660, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2351, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 47020, + Discounts: 879, + Sales: 46141, + COGS: 2930, + Profit: 43211, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1897, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 569100, + Discounts: 111375, + Sales: 457725, + COGS: 618750, + Profit: 161025, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 647, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 194100, + Discounts: 24570, + Sales: 169530, + COGS: 136500, + Profit: 33030, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 3621, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 25347, + Discounts: 1436.4, + Sales: 23910.6, + COGS: 6840, + Profit: 17070.6, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3221, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 22547, + Discounts: 759.15, + Sales: 21787.85, + COGS: 3615, + Profit: 18172.85, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 493, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 5916, + Discounts: 3250.8, + Sales: 2665.2, + COGS: 5418, + Profit: 2752.8, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/category-chart/chart-highlight-filter/src/app.component.html b/samples/charts/category-chart/chart-highlight-filter/src/app.component.html index 3d50767da..8ba9bc475 100644 --- a/samples/charts/category-chart/chart-highlight-filter/src/app.component.html +++ b/samples/charts/category-chart/chart-highlight-filter/src/app.component.html @@ -26,7 +26,7 @@ #chart chartType="Column" [dataSource]="salesData" - initialGroups="MonthName" + initialGroups="Month" initialHighlightFilter="Country ne 'UK'" highlightedValuesDisplayMode="Hidden"> diff --git a/samples/charts/category-chart/chart-highlight-filter/src/app.component.ts b/samples/charts/category-chart/chart-highlight-filter/src/app.component.ts index 7bc7565e0..a0923f8a1 100644 --- a/samples/charts/category-chart/chart-highlight-filter/src/app.component.ts +++ b/samples/charts/category-chart/chart-highlight-filter/src/app.component.ts @@ -1,6 +1,6 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; -import { SalesData } from './SalesData'; +import { SalesDataItem, SalesData } from './SalesData'; import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; diff --git a/samples/charts/category-chart/data-aggregations/src/SalesData.ts b/samples/charts/category-chart/data-aggregations/src/SalesData.ts index 25697b809..50d5fe209 100644 --- a/samples/charts/category-chart/data-aggregations/src/SalesData.ts +++ b/samples/charts/category-chart/data-aggregations/src/SalesData.ts @@ -1,1052 +1,3 @@ -//begin data -export class SalesData extends Array { - public constructor() { - super(); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `501`,ManufacturingPrice: 15,SalePrice: 23,GrossSales: 26440,Discounts: 0,Sales: 26440,COGS: 16185,Profit: 11255,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1372`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 27440,Discounts: 0,Sales: 27440,COGS: 16185,Profit: 11255,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2762`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 55240,Discounts: 0,Sales: 55240,COGS: 13210,Profit: 42030,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1464`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21960,Discounts: 0,Sales: 21960,COGS: 21780,Profit: 180,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `719`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 10785,Discounts: 0,Sales: 10785,COGS: 8880,Profit: 1905,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3576`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53640,Discounts: 0,Sales: 53640,COGS: 24700,Profit: 28940,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4422`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1547700,Discounts: 0,Sales: 1547700,COGS: 393380,Profit: 1154320,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3649`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 54735,Discounts: 0,Sales: 54735,COGS: 9210,Profit: 45525,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4172`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 50064,Discounts: 0,Sales: 50064,COGS: 7554,Profit: 42510,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3841`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 76820,Discounts: 0,Sales: 76820,COGS: 18990,Profit: 57830,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3726`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 44712,Discounts: 0,Sales: 44712,COGS: 4635,Profit: 40077,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2625`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 39375,Discounts: 0,Sales: 39375,COGS: 24700,Profit: 14675,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1958`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 244750,Discounts: 0,Sales: 244750,COGS: 319860,Profit: 75110,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3271`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 981300,Discounts: 0,Sales: 981300,COGS: 239500,Profit: 741800,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2091`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 14637,Discounts: 0,Sales: 14637,COGS: 10730,Profit: 3907,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2825`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 42375,Discounts: 0,Sales: 42375,COGS: 6150,Profit: 36225,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2513`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 50260,Discounts: 0,Sales: 50260,COGS: 2920,Profit: 47340,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `883`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 13245,Discounts: 0,Sales: 13245,COGS: 9740,Profit: 3505,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 25044,Discounts: 0,Sales: 25044,COGS: 7554,Profit: 17490,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2563`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 897050,Discounts: 0,Sales: 897050,COGS: 261560,Profit: 635490,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2846`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34152,Discounts: 0,Sales: 34152,COGS: 1101,Profit: 33051,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `997`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 6979,Discounts: 0,Sales: 6979,COGS: 4415,Profit: 2564,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2290`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 34350,Discounts: 0,Sales: 34350,COGS: 24720,Profit: 9630,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2133`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14931,Discounts: 0,Sales: 14931,COGS: 5715,Profit: 9216,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3617`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 72340,Discounts: 0,Sales: 72340,COGS: 18170,Profit: 54170,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1266`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 443100,Discounts: 0,Sales: 443100,COGS: 393380,Profit: 49720,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `894`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6258,Discounts: 0,Sales: 6258,COGS: 7465,Profit: 1207,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2725`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 340625,Discounts: 0,Sales: 340625,COGS: 216480,Profit: 124145,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3061`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 36732,Discounts: 0,Sales: 36732,COGS: 6483,Profit: 30249,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3958`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1385300,Discounts: 0,Sales: 1385300,COGS: 261560,Profit: 1123740,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3920`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 47040,Discounts: 0,Sales: 47040,COGS: 4635,Profit: 42405,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3381`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422625,Discounts: 0,Sales: 422625,COGS: 338520,Profit: 84105,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4307`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1292100,Discounts: 0,Sales: 1292100,COGS: 500250,Profit: 791850,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `878`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10536,Discounts: 0,Sales: 10536,COGS: 8514,Profit: 2022,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `496`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 7440,Discounts: 0,Sales: 7440,COGS: 21780,Profit: 14340,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3367`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 50505,Discounts: 0,Sales: 50505,COGS: 8880,Profit: 41625,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2055`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 616500,Discounts: 0,Sales: 616500,COGS: 537750,Profit: 78750,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4041`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 80820,Discounts: 0,Sales: 80820,COGS: 18170,Profit: 62650,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `3237`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1132950,Discounts: 0,Sales: 1132950,COGS: 715000,Profit: 417950,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `630`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 7560,Discounts: 0,Sales: 7560,COGS: 5859,Profit: 1701,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4210`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 526250,Discounts: 0,Sales: 526250,COGS: 506340,Profit: 19910,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1127`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 22540,Discounts: 0,Sales: 22540,COGS: 18990,Profit: 3550,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3438`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 24066,Discounts: 0,Sales: 24066,COGS: 8430,Profit: 15636,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2015`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 24180,Discounts: 0,Sales: 24180,COGS: 6423,Profit: 17757,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2534`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 17738,Discounts: 0,Sales: 17738,COGS: 5715,Profit: 12023,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1384`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 20760,Discounts: 0,Sales: 20760,COGS: 6150,Profit: 14610,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3561`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 24927,Discounts: 276.15,Sales: 24650.85,COGS: 19725,Profit: 4925.85,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1823`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27345,Discounts: 344.4,Sales: 27000.6,COGS: 22960,Profit: 4040.6,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19565,Discounts: 72.1,Sales: 19492.9,COGS: 5150,Profit: 14342.9,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `457`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3199,Discounts: 44.73,Sales: 3154.27,COGS: 3195,Profit: 40.73,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3785`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26495,Discounts: 92.82,Sales: 26402.18,COGS: 6630,Profit: 19772.18,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `748`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 8976,Discounts: 222.96,Sales: 8753.04,COGS: 5574,Profit: 3179.04,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1021`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 357350,Discounts: 4235,Sales: 353115,COGS: 314600,Profit: 38515,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2076`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 14532,Discounts: 177.03,Sales: 14354.97,COGS: 12645,Profit: 1709.97,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `4316`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51792,Discounts: 173.4,Sales: 51618.6,COGS: 4335,Profit: 47283.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4174`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50088,Discounts: 320.52,Sales: 49767.48,COGS: 8013,Profit: 41754.48,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3736`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1307600,Discounts: 4889.5,Sales: 1302710.5,COGS: 363220,Profit: 939490.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1914`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 669900,Discounts: 7542.5,Sales: 662357.5,COGS: 560300,Profit: 102057.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2742`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 41130,Discounts: 332.1,Sales: 40797.9,COGS: 22140,Profit: 18657.9,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1499`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 449700,Discounts: 6903,Sales: 442797,COGS: 575250,Profit: 132453,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 75440,Discounts: 275.1,Sales: 75164.9,COGS: 13755,Profit: 61409.9,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1112`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 7784,Discounts: 128.1,Sales: 7655.9,COGS: 9150,Profit: 1494.1,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2368`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 35520,Discounts: 227.1,Sales: 35292.9,COGS: 15140,Profit: 20152.9,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 11102,Discounts: 314.48,Sales: 10787.52,COGS: 22462.5,Profit: 11674.98,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3386`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 423250,Discounts: 908.75,Sales: 422341.25,COGS: 87240,Profit: 335101.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `852`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 106500,Discounts: 983.75,Sales: 105516.25,COGS: 94440,Profit: 11076.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2783`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 347875,Discounts: 2278.75,Sales: 345596.25,COGS: 218760,Profit: 126836.25,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2684`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 40260,Discounts: 112.05,Sales: 40147.95,COGS: 7470,Profit: 32677.95,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4083`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1224900,Discounts: 8715,Sales: 1216185,COGS: 726250,Profit: 489935,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2816`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 985600,Discounts: 7542.5,Sales: 978057.5,COGS: 560300,Profit: 417757.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4294`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 85880,Discounts: 772.8,Sales: 85107.2,COGS: 38640,Profit: 46467.2,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 25.34,Sales: 19966.66,COGS: 1810,Profit: 18156.66,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1407`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 175875,Discounts: 1153.75,Sales: 174721.25,COGS: 110760,Profit: 63961.25,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1265`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 8855,Discounts: 18.41,Sales: 8836.59,COGS: 1315,Profit: 7521.59,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3892`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1362200,Discounts: 3302.25,Sales: 1358897.75,COGS: 245310,Profit: 1113587.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3068`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 383500,Discounts: 908.75,Sales: 382591.25,COGS: 87240,Profit: 295351.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2181`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 272625,Discounts: 983.75,Sales: 271641.25,COGS: 94440,Profit: 177201.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1356`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 406800,Discounts: 2958,Sales: 403842,COGS: 246500,Profit: 177201.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1814`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 634900,Discounts: 4889.5,Sales: 630010.5,COGS: 363220,Profit: 266790.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1495`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 186875,Discounts: 2180,Sales: 184695,COGS: 209280,Profit: 24585,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1463`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 182875,Discounts: 1856.25,Sales: 181018.75,COGS: 89100,Profit: 91918.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `215`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 2580,Discounts: 310.8,Sales: 2269.2,COGS: 3885,Profit: 1615.8,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `566`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 198100,Discounts: 19964,Sales: 178136,COGS: 741520,Profit: 563384,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3255`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 39060,Discounts: 274.08,Sales: 38785.92,COGS: 3426,Profit: 35359.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15440,Discounts: 626.4,Sales: 14813.6,COGS: 15660,Profit: 846.4,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1135`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13620,Discounts: 165.6,Sales: 13454.4,COGS: 2070,Profit: 11384.4,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 17895,Discounts: 708.9,Sales: 17186.1,COGS: 23630,Profit: 6443.9,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2530`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 759000,Discounts: 5508,Sales: 753492,COGS: 229500,Profit: 523992,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3451`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1035300,Discounts: 10368,Sales: 1024932,COGS: 432000,Profit: 592932,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3059`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 36708,Discounts: 274.08,Sales: 36433.92,COGS: 3426,Profit: 33007.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3957`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 494625,Discounts: 1655,Sales: 492970,COGS: 79440,Profit: 413530,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3444`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 41328,Discounts: 310.8,Sales: 41017.2,COGS: 3885,Profit: 37132.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3154`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 946200,Discounts: 11496,Sales: 934704,COGS: 479000,Profit: 455704,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4108`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1437800,Discounts: 19964,Sales: 1417836,COGS: 741520,Profit: 676316,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3760`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 470000,Discounts: 6822.5,Sales: 463177.5,COGS: 327480,Profit: 135697.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2334`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28008,Discounts: 253.2,Sales: 27754.8,COGS: 3165,Profit: 24589.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `580`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 6960,Discounts: 260.16,Sales: 6699.84,COGS: 3252,Profit: 3447.84,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2610`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 52200,Discounts: 626.4,Sales: 51573.6,COGS: 15660,Profit: 35913.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1459`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 510650,Discounts: 20139,Sales: 490511,COGS: 748020,Profit: 257509,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3774`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 45288,Discounts: 253.2,Sales: 45034.8,COGS: 3165,Profit: 41869.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2572`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 30864,Discounts: 260.16,Sales: 30603.84,COGS: 3252,Profit: 27351.84,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `320`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 40000,Discounts: 1655,Sales: 38345,COGS: 79440,Profit: 41095,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3275`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1146250,Discounts: 20139,Sales: 1126111,COGS: 748020,Profit: 378091,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3582`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 447750,Discounts: 6822.5,Sales: 440927.5,COGS: 327480,Profit: 113447.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4056`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1216800,Discounts: 1554,Sales: 1215246,COGS: 64750,Profit: 1150496,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2144`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 643200,Discounts: 6606,Sales: 636594,COGS: 275250,Profit: 361344,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3502`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 437750,Discounts: 5690,Sales: 432060,COGS: 273120,Profit: 158940,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `679`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 13580,Discounts: 494.4,Sales: 13085.6,COGS: 12360,Profit: 725.6,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2351`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 47020,Discounts: 376.4,Sales: 46643.6,COGS: 9410,Profit: 37233.6,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2043`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 612900,Discounts: 11496,Sales: 601404,COGS: 479000,Profit: 122404,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3565`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 445625,Discounts: 15913.13,Sales: 429711.88,COGS: 509220,Profit: 79508.13,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1401`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 28020,Discounts: 1548,Sales: 26472,COGS: 25800,Profit: 672,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2077`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 623100,Discounts: 6201,Sales: 616899,COGS: 172250,Profit: 444649,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 43716,Discounts: 700.92,Sales: 43015.08,COGS: 5841,Profit: 37174.08,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2960`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20720,Discounts: 411.18,Sales: 20308.82,COGS: 9790,Profit: 10518.82,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1201`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 14412,Discounts: 684.36,Sales: 13727.64,COGS: 5703,Profit: 8024.64,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2321`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 16247,Discounts: 114.24,Sales: 16132.76,COGS: 2720,Profit: 13412.76,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3972`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 496500,Discounts: 4826.25,Sales: 491673.75,COGS: 154440,Profit: 337233.75,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3878`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 484750,Discounts: 6397.5,Sales: 478352.5,COGS: 204720,Profit: 273632.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2278`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 683400,Discounts: 21910.5,Sales: 661489.5,COGS: 608625,Profit: 52864.5,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1075`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 134375,Discounts: 6652.5,Sales: 127722.5,COGS: 212880,Profit: 85157.5,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4050`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 48600,Discounts: 684.36,Sales: 47915.64,COGS: 5703,Profit: 42212.64,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3035`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 910500,Discounts: 6201,Sales: 904299,COGS: 172250,Profit: 732049,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3636`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 454500,Discounts: 5887.5,Sales: 448612.5,COGS: 188400,Profit: 260212.5,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1379`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 16548,Discounts: 493.02,Sales: 16054.98,COGS: 4108.5,Profit: 11946.48,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4492`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 561500,Discounts: 7533.75,Sales: 553966.25,COGS: 241080,Profit: 312886.25,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1744`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 218000,Discounts: 4826.25,Sales: 213173.75,COGS: 154440,Profit: 58733.75,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2341`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 292625,Discounts: 6397.5,Sales: 286227.5,COGS: 204720,Profit: 81507.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 479375,Discounts: 7533.75,Sales: 471841.25,COGS: 241080,Profit: 230761.25,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1161`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 348300,Discounts: 25596,Sales: 322704,COGS: 711000,Profit: 388296,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `876`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10512,Discounts: 689.76,Sales: 9822.24,COGS: 5748,Profit: 4074.24,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1705`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 213125,Discounts: 5887.5,Sales: 207237.5,COGS: 188400,Profit: 18837.5,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1805`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 541500,Discounts: 16866,Sales: 524634,COGS: 468500,Profit: 56134,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `389`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 136150,Discounts: 17241,Sales: 118909,COGS: 426920,Profit: 308011,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1459`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 29180,Discounts: 498.6,Sales: 28681.4,COGS: 8310,Profit: 20371.4,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4236`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 84720,Discounts: 2310.3,Sales: 82409.7,COGS: 38505,Profit: 43904.7,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3627`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 43524,Discounts: 892.44,Sales: 42631.56,COGS: 7437,Profit: 35194.56,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1756`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 26340,Discounts: 1218.6,Sales: 25121.4,COGS: 20310,Profit: 4811.4,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `307`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 4605,Discounts: 1218.6,Sales: 3386.4,COGS: 20310,Profit: 16923.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1222`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 366600,Discounts: 24252,Sales: 342348,COGS: 505250,Profit: 162902,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `489`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 171150,Discounts: 3836,Sales: 167314,COGS: 71240,Profit: 96074,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4133`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 61995,Discounts: 1180.2,Sales: 60814.8,COGS: 19670,Profit: 41144.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2743`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 822900,Discounts: 22308,Sales: 800592,COGS: 464750,Profit: 335842,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `4460`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1338000,Discounts: 24252,Sales: 1313748,COGS: 505250,Profit: 808498,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1232`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 154000,Discounts: 5690,Sales: 148310,COGS: 136560,Profit: 11750,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 18102,Discounts: 1190.28,Sales: 16911.72,COGS: 21255,Profit: 4343.28,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1332`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 166500,Discounts: 3975,Sales: 162525,COGS: 95400,Profit: 67125,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4487`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1346100,Discounts: 16974,Sales: 1329126,COGS: 353625,Profit: 975501,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3862`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1158600,Discounts: 35016,Sales: 1123584,COGS: 729500,Profit: 394084,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1765`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 617750,Discounts: 48300,Sales: 569450,COGS: 897000,Profit: 327550,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3533`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 441625,Discounts: 14940,Sales: 426685,COGS: 358560,Profit: 68125,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2016`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 30240,Discounts: 130.8,Sales: 30109.2,COGS: 2180,Profit: 27929.2,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58760,Discounts: 1659.2,Sales: 57100.8,COGS: 20740,Profit: 36360.8,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3352`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67040,Discounts: 844.8,Sales: 66195.2,COGS: 10560,Profit: 55635.2,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2430`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 850500,Discounts: 3836,Sales: 846664,COGS: 71240,Profit: 775424,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `535`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 66875,Discounts: 5690,Sales: 61185,COGS: 136560,Profit: 75375,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1523`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 18276,Discounts: 703.2,Sales: 17572.8,COGS: 4395,Profit: 13177.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1782`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 623700,Discounts: 30478,Sales: 593222,COGS: 566020,Profit: 27202,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `347`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 4164,Discounts: 415.68,Sales: 3748.32,COGS: 2598,Profit: 1150.32,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3509`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1228150,Discounts: 30478,Sales: 1197672,COGS: 566020,Profit: 631652,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2943`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1030050,Discounts: 26110,Sales: 1003940,COGS: 484900,Profit: 519040,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4037`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 504625,Discounts: 5370,Sales: 499255,COGS: 128880,Profit: 370375,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4146`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1451100,Discounts: 26698,Sales: 1424402,COGS: 495820,Profit: 928582,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `725`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 5075,Discounts: 480.2,Sales: 4594.8,COGS: 6860,Profit: 2265.2,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 16275,Discounts: 941.15,Sales: 15333.85,COGS: 13445,Profit: 1888.85,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `675`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 8100,Discounts: 1458.6,Sales: 6641.4,COGS: 7293,Profit: 651.6,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2990`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35880,Discounts: 1458.6,Sales: 34421.4,COGS: 7293,Profit: 27128.4,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1072`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 7504,Discounts: 941.15,Sales: 6562.85,COGS: 13445,Profit: 6882.15,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1048`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7336,Discounts: 589.05,Sales: 6746.95,COGS: 8415,Profit: 1668.05,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `469`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 5628,Discounts: 673.8,Sales: 4954.2,COGS: 3369,Profit: 1585.2,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4240`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50880,Discounts: 1119,Sales: 49761,COGS: 5595,Profit: 44166,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1976`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 23712,Discounts: 669.6,Sales: 23042.4,COGS: 3348,Profit: 19694.4,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1984`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39680,Discounts: 1563,Sales: 38117,COGS: 15630,Profit: 22487,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `480`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 144000,Discounts: 14865,Sales: 129135,COGS: 247750,Profit: 118615,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1205`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 18075,Discounts: 2093.25,Sales: 15981.75,COGS: 27910,Profit: 11928.25,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2480`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17360,Discounts: 199.5,Sales: 17160.5,COGS: 2850,Profit: 14310.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2926`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 20482,Discounts: 870.45,Sales: 19611.55,COGS: 12435,Profit: 7176.55,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3210`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1123500,Discounts: 24228.75,Sales: 1099271.25,COGS: 359970,Profit: 739301.25,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3221`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 402625,Discounts: 22668.75,Sales: 379956.25,COGS: 435240,Profit: 55283.75,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1127`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13524,Discounts: 1405.2,Sales: 12118.8,COGS: 7026,Profit: 5092.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1610`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 32200,Discounts: 1303,Sales: 30897,COGS: 13030,Profit: 17867,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4100`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 512500,Discounts: 18700,Sales: 493800,COGS: 359040,Profit: 134760,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1012`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 126500,Discounts: 14906.25,Sales: 111593.75,COGS: 286200,Profit: 174606.25,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3337`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1001100,Discounts: 24105,Sales: 976995,COGS: 401750,Profit: 575245,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3955`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27685,Discounts: 814.45,Sales: 26870.55,COGS: 11635,Profit: 15235.55,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4347`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1304100,Discounts: 14865,Sales: 1289235,COGS: 247750,Profit: 1041485,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1548`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 541800,Discounts: 10535,Sales: 531265,COGS: 156520,Profit: 374745,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2153`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 32295,Discounts: 1965,Sales: 30330,COGS: 26200,Profit: 4130,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4126`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 515750,Discounts: 5381.25,Sales: 510368.75,COGS: 103320,Profit: 407048.75,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3376`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67520,Discounts: 2663,Sales: 64857,COGS: 26630,Profit: 38227,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2244`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 33660,Discounts: 416.25,Sales: 33243.75,COGS: 5550,Profit: 27693.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1360`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20400,Discounts: 2145.75,Sales: 18254.25,COGS: 28610,Profit: 10355.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `279`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 34875,Discounts: 5043.75,Sales: 29831.25,COGS: 96840,Profit: 67008.75,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2521`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 882350,Discounts: 10535,Sales: 871815,COGS: 156520,Profit: 715295,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2433`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 48660,Discounts: 2832,Sales: 45828,COGS: 28320,Profit: 17508,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1738`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 34760,Discounts: 1579,Sales: 33181,COGS: 15790,Profit: 17391,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1106`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 138250,Discounts: 5381.25,Sales: 132868.75,COGS: 103320,Profit: 29548.75,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `213`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 63900,Discounts: 18750,Sales: 45150,COGS: 312500,Profit: 267350,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2929`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 58580,Discounts: 2663,Sales: 55917,COGS: 26630,Profit: 29287,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2389`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 16723,Discounts: 199.5,Sales: 16523.5,COGS: 2850,Profit: 13673.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3086`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21602,Discounts: 870.45,Sales: 20731.55,COGS: 12435,Profit: 8296.55,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `745`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 260750,Discounts: 23625,Sales: 237125,COGS: 351000,Profit: 113875,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1266`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 443100,Discounts: 9660,Sales: 433440,COGS: 143520,Profit: 289920,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4287`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1286100,Discounts: 18750,Sales: 1267350,COGS: 312500,Profit: 954850,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 47895,Discounts: 3420.9,Sales: 44474.1,COGS: 38010,Profit: 6464.1,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1967`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39340,Discounts: 1341,Sales: 37999,COGS: 11175,Profit: 26824,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `631`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 9465,Discounts: 2559.6,Sales: 6905.4,COGS: 28440,Profit: 21534.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3469`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 41628,Discounts: 404.64,Sales: 41223.36,COGS: 1686,Profit: 39537.36,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3215`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 48225,Discounts: 1827,Sales: 46398,COGS: 20300,Profit: 26098,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1959`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 685650,Discounts: 20580,Sales: 665070,COGS: 254800,Profit: 410270,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2181`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 763350,Discounts: 30660,Sales: 732690,COGS: 379600,Profit: 353090,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2205`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 26460,Discounts: 1960.56,Sales: 24499.44,COGS: 8169,Profit: 16330.44,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1890`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 661500,Discounts: 31416,Sales: 630084,COGS: 388960,Profit: 241124,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2417`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 302125,Discounts: 7140,Sales: 294985,COGS: 114240,Profit: 180745,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1158`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 144750,Discounts: 20662.5,Sales: 124087.5,COGS: 330600,Profit: 206512.5,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `803`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 12045,Discounts: 1377,Sales: 10668,COGS: 15300,Profit: 4632,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3705`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1296750,Discounts: 31416,Sales: 1265334,COGS: 388960,Profit: 876374,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `589`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 4123,Discounts: 629.16,Sales: 3493.84,COGS: 7490,Profit: 3996.16,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3999`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 59985,Discounts: 2559.6,Sales: 57425.4,COGS: 28440,Profit: 28985.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4256`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 29792,Discounts: 629.16,Sales: 29162.84,COGS: 7490,Profit: 21672.84,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2160`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 270000,Discounts: 14906.25,Sales: 255093.75,COGS: 238500,Profit: 16593.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `466`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 163100,Discounts: 35259,Sales: 127841,COGS: 436540,Profit: 308699,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1478`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 22170,Discounts: 1978.2,Sales: 20191.8,COGS: 21980,Profit: 1788.2,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3798`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 56970,Discounts: 1568.7,Sales: 55401.3,COGS: 17430,Profit: 37971.3,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `447`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 6705,Discounts: 1037.7,Sales: 5667.3,COGS: 11530,Profit: 5862.7,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `745`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 14900,Discounts: 1201.2,Sales: 13698.8,COGS: 10010,Profit: 3688.8,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1732`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 12124,Discounts: 559.86,Sales: 11564.14,COGS: 6665,Profit: 4899.14,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1759`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 26385,Discounts: 1037.7,Sales: 25347.3,COGS: 11530,Profit: 13817.3,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `338`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 4056,Discounts: 610.68,Sales: 3445.32,COGS: 2181,Profit: 1264.32,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3911`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 46932,Discounts: 1582.56,Sales: 45349.44,COGS: 5652,Profit: 39697.44,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `4473`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 53676,Discounts: 1965.6,Sales: 51710.4,COGS: 7020,Profit: 44690.4,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `383`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 4596,Discounts: 1967.28,Sales: 2628.72,COGS: 7026,Profit: 4397.28,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1062`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 15930,Discounts: 1325.1,Sales: 14604.9,COGS: 12620,Profit: 1984.9,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4083`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 28581,Discounts: 556.15,Sales: 28024.85,COGS: 5675,Profit: 22349.85,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3974`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 27818,Discounts: 268.03,Sales: 27549.97,COGS: 2735,Profit: 24814.97,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3723`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 26061,Discounts: 775.18,Sales: 25285.82,COGS: 7910,Profit: 17375.82,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2435`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 29220,Discounts: 1460.34,Sales: 27759.66,COGS: 5215.5,Profit: 22544.16,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1763`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 12341,Discounts: 775.18,Sales: 11565.82,COGS: 7910,Profit: 3655.82,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4473`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31311,Discounts: 556.15,Sales: 30754.85,COGS: 5675,Profit: 25079.85,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1246`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 436100,Discounts: 43144.5,Sales: 392955.5,COGS: 457860,Profit: 64904.5,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1615`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 484500,Discounts: 9408,Sales: 475092,COGS: 112000,Profit: 363092,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `749`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 224700,Discounts: 45801,Sales: 178899,COGS: 545250,Profit: 366351,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1318`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 26360,Discounts: 2766.4,Sales: 23593.6,COGS: 19760,Profit: 3833.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2882`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 864600,Discounts: 45801,Sales: 818799,COGS: 545250,Profit: 273549,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2484`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 745200,Discounts: 35742,Sales: 709458,COGS: 425500,Profit: 283958,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3169`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 950700,Discounts: 9408,Sales: 941292,COGS: 112000,Profit: 829292,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 510000,Discounts: 30738.75,Sales: 479261.25,COGS: 421560,Profit: 57701.25,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3943`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 59145,Discounts: 2206.05,Sales: 56938.95,COGS: 21010,Profit: 35928.95,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `253`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5060,Discounts: 2149,Sales: 2911,COGS: 15350,Profit: 12439,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `799`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 239700,Discounts: 34839,Sales: 204861,COGS: 414750,Profit: 209889,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3942`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 78840,Discounts: 852.6,Sales: 77987.4,COGS: 6090,Profit: 71897.4,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2498`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 312250,Discounts: 18261.25,Sales: 293988.75,COGS: 250440,Profit: 43548.75,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2517`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 50340,Discounts: 2766.4,Sales: 47573.6,COGS: 19760,Profit: 27813.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1145`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 343500,Discounts: 28812,Sales: 314688,COGS: 343000,Profit: 28312,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3814`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 45768,Discounts: 2725.38,Sales: 43042.62,COGS: 9733.5,Profit: 33309.12,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1188`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 356400,Discounts: 20139,Sales: 336261,COGS: 239750,Profit: 96511,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2233`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 669900,Discounts: 57687,Sales: 612213,COGS: 686750,Profit: 74537,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `421`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 52625,Discounts: 14393.75,Sales: 38231.25,COGS: 197400,Profit: 159168.75,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `269`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 94150,Discounts: 70462,Sales: 23688,COGS: 747760,Profit: 724072,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `952`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19040,Discounts: 1565.2,Sales: 17474.8,COGS: 11180,Profit: 6294.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2964`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 889200,Discounts: 28812,Sales: 860388,COGS: 343000,Profit: 517388,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1505`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10535,Discounts: 273.28,Sales: 10261.72,COGS: 2440,Profit: 7821.72,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1678`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 33560,Discounts: 2051.2,Sales: 31508.8,COGS: 12820,Profit: 18688.8,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4249`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 29743,Discounts: 143.92,Sales: 29599.08,COGS: 1285,Profit: 28314.08,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1677`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 33540,Discounts: 2051.2,Sales: 31488.8,COGS: 12820,Profit: 18668.8,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3051`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 381375,Discounts: 15400,Sales: 365975,COGS: 184800,Profit: 181175,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3372`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 50580,Discounts: 588,Sales: 49992,COGS: 4900,Profit: 45092,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1686`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 590100,Discounts: 38136,Sales: 551964,COGS: 354120,Profit: 197844,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3086`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 46290,Discounts: 3001.2,Sales: 43288.8,COGS: 25010,Profit: 18278.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4150`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 83000,Discounts: 1132.8,Sales: 81867.2,COGS: 7080,Profit: 74787.2,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3027`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 60540,Discounts: 1032,Sales: 59508,COGS: 6450,Profit: 53058,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4359`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1307700,Discounts: 37488,Sales: 1270212,COGS: 390500,Profit: 879712,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1589`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 23835,Discounts: 853.2,Sales: 22981.8,COGS: 7110,Profit: 15871.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2679`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 334875,Discounts: 11140,Sales: 323735,COGS: 133680,Profit: 190055,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 23807,Discounts: 705.04,Sales: 23101.96,COGS: 6295,Profit: 16806.96,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2815`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19705,Discounts: 613.2,Sales: 19091.8,COGS: 5475,Profit: 13616.8,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2964`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 59280,Discounts: 2185.6,Sales: 57094.4,COGS: 13660,Profit: 43434.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4173`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1251900,Discounts: 59040,Sales: 1192860,COGS: 615000,Profit: 577860,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1157`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 8099,Discounts: 379.68,Sales: 7719.32,COGS: 3390,Profit: 4329.32,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3065`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21455,Discounts: 894.88,Sales: 20560.12,COGS: 7990,Profit: 12570.12,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 81600,Discounts: 3094.4,Sales: 78505.6,COGS: 19340,Profit: 59165.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1713`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34260,Discounts: 4788.8,Sales: 29471.2,COGS: 29930,Profit: 458.8,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1691`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 591850,Discounts: 38136,Sales: 553714,COGS: 354120,Profit: 199594,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2305`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27660,Discounts: 574.08,Sales: 27085.92,COGS: 1794,Profit: 25291.92,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3401`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 23807,Discounts: 1627.92,Sales: 22179.08,COGS: 14535,Profit: 7644.08,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2288`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 16016,Discounts: 1309.28,Sales: 14706.72,COGS: 11690,Profit: 3016.72,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4086`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1225800,Discounts: 15240,Sales: 1210560,COGS: 158750,Profit: 1051810,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2651`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 927850,Discounts: 16086,Sales: 911764,COGS: 149370,Profit: 762394,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3971`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27797,Discounts: 1309.28,Sales: 26487.72,COGS: 11690,Profit: 14797.72,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2512`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 879200,Discounts: 10668,Sales: 868532,COGS: 99060,Profit: 769472,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 960750,Discounts: 11816,Sales: 948934,COGS: 109720,Profit: 839214,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1903`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 570900,Discounts: 51216,Sales: 519684,COGS: 533500,Profit: 13816,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2914`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 58280,Discounts: 1132.8,Sales: 57147.2,COGS: 7080,Profit: 50067.2,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1889`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 13223,Discounts: 1627.92,Sales: 11595.08,COGS: 14535,Profit: 2939.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1466`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 29320,Discounts: 2185.6,Sales: 27134.4,COGS: 13660,Profit: 13474.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `887`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 266100,Discounts: 59040,Sales: 207060,COGS: 615000,Profit: 407940,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `395`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 7900,Discounts: 2432,Sales: 5468,COGS: 15200,Profit: 9732,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1693`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 25395,Discounts: 853.2,Sales: 24541.8,COGS: 7110,Profit: 17431.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2649`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 794700,Discounts: 15240,Sales: 779460,COGS: 158750,Profit: 620710,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3608`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 72160,Discounts: 698.4,Sales: 71461.6,COGS: 4365,Profit: 67096.6,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1073`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 321900,Discounts: 29538,Sales: 292362,COGS: 273500,Profit: 18862,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2167`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 650100,Discounts: 102667.5,Sales: 547432.5,COGS: 950625,Profit: 403192.5,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1319`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 461650,Discounts: 52479,Sales: 409171,COGS: 433160,Profit: 23989,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1252`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 15024,Discounts: 2506.68,Sales: 12517.32,COGS: 6963,Profit: 5554.32,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1156`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 144500,Discounts: 31466.25,Sales: 113033.75,COGS: 335640,Profit: 222606.25,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1153`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 345900,Discounts: 69255,Sales: 276645,COGS: 641250,Profit: 364605,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2720`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 952000,Discounts: 76135.5,Sales: 875864.5,COGS: 628420,Profit: 247444.5,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 54870,Discounts: 4961.25,Sales: 49908.75,COGS: 36750,Profit: 13158.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2950`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 885000,Discounts: 29538,Sales: 855462,COGS: 273500,Profit: 581962,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1821`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27315,Discounts: 1656.45,Sales: 25658.55,COGS: 12270,Profit: 13388.55,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1127`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 338100,Discounts: 35748,Sales: 302352,COGS: 331000,Profit: 28648,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `862`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 107750,Discounts: 31466.25,Sales: 76283.75,COGS: 335640,Profit: 259356.25,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3805`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 57075,Discounts: 330.75,Sales: 56744.25,COGS: 2450,Profit: 54294.25,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1415`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 424500,Discounts: 102424.5,Sales: 322075.5,COGS: 948375,Profit: 626299.5,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2231`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 780850,Discounts: 41170.5,Sales: 739679.5,COGS: 339820,Profit: 399859.5,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3649`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 456125,Discounts: 6378.75,Sales: 449746.25,COGS: 68040,Profit: 381706.25,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2948`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 368500,Discounts: 23737.5,Sales: 344762.5,COGS: 253200,Profit: 91562.5,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3395`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1188250,Discounts: 39973.5,Sales: 1148276.5,COGS: 329940,Profit: 818336.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2650`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31800,Discounts: 2112.48,Sales: 29687.52,COGS: 5868,Profit: 23819.52,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `585`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 175500,Discounts: 71793,Sales: 103707,COGS: 664750,Profit: 561043,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1316`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 460600,Discounts: 42572.25,Sales: 418027.75,COGS: 351390,Profit: 66637.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4459`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 53508,Discounts: 950.4,Sales: 52557.6,COGS: 2640,Profit: 49917.6,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2711`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 813300,Discounts: 50409,Sales: 762891,COGS: 466750,Profit: 296141,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3613`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 54195,Discounts: 1656.45,Sales: 52538.55,COGS: 12270,Profit: 40268.55,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1847`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 230875,Discounts: 9866.25,Sales: 221008.75,COGS: 105240,Profit: 115768.75,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2996`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1048600,Discounts: 65236.5,Sales: 983363.5,COGS: 538460,Profit: 444903.5,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2838`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 993300,Discounts: 39973.5,Sales: 953326.5,COGS: 329940,Profit: 623386.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1536`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 30720,Discounts: 3049.2,Sales: 27670.8,COGS: 16940,Profit: 10730.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1291`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 25820,Discounts: 1193.4,Sales: 24626.6,COGS: 6630,Profit: 17996.6,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1213`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 8491,Discounts: 515.97,Sales: 7975.03,COGS: 4095,Profit: 3880.03,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2370`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 28440,Discounts: 1706.4,Sales: 26733.6,COGS: 4740,Profit: 21993.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1979`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 13853,Discounts: 328.23,Sales: 13524.77,COGS: 2605,Profit: 10919.77,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2879`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57580,Discounts: 1751.4,Sales: 55828.6,COGS: 9730,Profit: 46098.6,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1707`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34140,Discounts: 1868.4,Sales: 32271.6,COGS: 10380,Profit: 21891.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2933`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 20531,Discounts: 226.8,Sales: 20304.2,COGS: 1800,Profit: 18504.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1014`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 12168,Discounts: 2124.36,Sales: 10043.64,COGS: 5901,Profit: 4142.64,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `693`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 10395,Discounts: 3547.8,Sales: 6847.2,COGS: 26280,Profit: 19432.8,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3741`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26187,Discounts: 226.8,Sales: 25960.2,COGS: 1800,Profit: 24160.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3995`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27965,Discounts: 328.23,Sales: 27636.77,COGS: 2605,Profit: 25031.77,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `953`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19060,Discounts: 1868.4,Sales: 17191.6,COGS: 10380,Profit: 6811.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2530`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 37950,Discounts: 2201.18,Sales: 35748.82,COGS: 16305,Profit: 19443.82,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1372`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 27440,Discounts: 0,Sales: 27440,COGS: 16185,Profit: 11255,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2762`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 55240,Discounts: 0,Sales: 55240,COGS: 13210,Profit: 42030,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1464`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21960,Discounts: 0,Sales: 21960,COGS: 21780,Profit: 180,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `719`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 10785,Discounts: 0,Sales: 10785,COGS: 8880,Profit: 1905,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3576`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53640,Discounts: 0,Sales: 53640,COGS: 24700,Profit: 28940,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4422`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1547700,Discounts: 0,Sales: 1547700,COGS: 393380,Profit: 1154320,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3649`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 54735,Discounts: 0,Sales: 54735,COGS: 9210,Profit: 45525,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4172`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 50064,Discounts: 0,Sales: 50064,COGS: 7554,Profit: 42510,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3841`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 76820,Discounts: 0,Sales: 76820,COGS: 18990,Profit: 57830,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3726`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 44712,Discounts: 0,Sales: 44712,COGS: 4635,Profit: 40077,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2625`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 39375,Discounts: 0,Sales: 39375,COGS: 24700,Profit: 14675,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1958`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 244750,Discounts: 0,Sales: 244750,COGS: 319860,Profit: 75110,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3271`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 981300,Discounts: 0,Sales: 981300,COGS: 239500,Profit: 741800,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2091`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 14637,Discounts: 0,Sales: 14637,COGS: 10730,Profit: 3907,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2530`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 316250,Discounts: 0,Sales: 316250,COGS: 41400,Profit: 274850,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2825`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 42375,Discounts: 0,Sales: 42375,COGS: 6150,Profit: 36225,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2513`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 50260,Discounts: 0,Sales: 50260,COGS: 2920,Profit: 47340,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `883`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 13245,Discounts: 0,Sales: 13245,COGS: 9740,Profit: 3505,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 25044,Discounts: 0,Sales: 25044,COGS: 7554,Profit: 17490,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2563`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 897050,Discounts: 0,Sales: 897050,COGS: 261560,Profit: 635490,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2846`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34152,Discounts: 0,Sales: 34152,COGS: 1101,Profit: 33051,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `997`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 6979,Discounts: 0,Sales: 6979,COGS: 4415,Profit: 2564,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3421`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 51315,Discounts: 0,Sales: 51315,COGS: 5490,Profit: 45825,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Marchesa`,UnitsSold: `70000`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 1050000,Discounts: 0,Sales: 1050000,COGS: 5490,Profit: 1044510,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2291`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 687300,Discounts: 0,Sales: 687300,COGS: 197000,Profit: 490300,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2290`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 34350,Discounts: 0,Sales: 34350,COGS: 24720,Profit: 9630,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2133`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14931,Discounts: 0,Sales: 14931,COGS: 5715,Profit: 9216,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3475`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1216250,Discounts: 0,Sales: 1216250,COGS: 448500,Profit: 767750,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3686`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 44232,Discounts: 0,Sales: 44232,COGS: 2736,Profit: 41496,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3319`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 49785,Discounts: 0,Sales: 49785,COGS: 21520,Profit: 28265,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3617`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 72340,Discounts: 0,Sales: 72340,COGS: 18170,Profit: 54170,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1266`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 443100,Discounts: 0,Sales: 443100,COGS: 393380,Profit: 49720,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `894`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6258,Discounts: 0,Sales: 6258,COGS: 7465,Profit: 1207,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2725`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 340625,Discounts: 0,Sales: 340625,COGS: 216480,Profit: 124145,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3061`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 36732,Discounts: 0,Sales: 36732,COGS: 6483,Profit: 30249,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3958`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1385300,Discounts: 0,Sales: 1385300,COGS: 261560,Profit: 1123740,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3920`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 47040,Discounts: 0,Sales: 47040,COGS: 4635,Profit: 42405,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3381`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422625,Discounts: 0,Sales: 422625,COGS: 338520,Profit: 84105,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1094`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 136750,Discounts: 0,Sales: 136750,COGS: 41400,Profit: 95350,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4307`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1292100,Discounts: 0,Sales: 1292100,COGS: 500250,Profit: 791850,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `878`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10536,Discounts: 0,Sales: 10536,COGS: 8514,Profit: 2022,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `496`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 7440,Discounts: 0,Sales: 7440,COGS: 21780,Profit: 14340,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3367`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 50505,Discounts: 0,Sales: 50505,COGS: 8880,Profit: 41625,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3880`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1358000,Discounts: 0,Sales: 1358000,COGS: 397020,Profit: 960980,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2055`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 616500,Discounts: 0,Sales: 616500,COGS: 537750,Profit: 78750,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4041`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 80820,Discounts: 0,Sales: 80820,COGS: 18170,Profit: 62650,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `3237`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1132950,Discounts: 0,Sales: 1132950,COGS: 715000,Profit: 417950,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `630`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 7560,Discounts: 0,Sales: 7560,COGS: 5859,Profit: 1701,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4210`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 526250,Discounts: 0,Sales: 526250,COGS: 506340,Profit: 19910,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1127`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 22540,Discounts: 0,Sales: 22540,COGS: 18990,Profit: 3550,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3438`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 24066,Discounts: 0,Sales: 24066,COGS: 8430,Profit: 15636,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2015`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 24180,Discounts: 0,Sales: 24180,COGS: 6423,Profit: 17757,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2534`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 17738,Discounts: 0,Sales: 17738,COGS: 5715,Profit: 12023,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1384`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 20760,Discounts: 0,Sales: 20760,COGS: 6150,Profit: 14610,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3561`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 24927,Discounts: 276.15,Sales: 24650.85,COGS: 19725,Profit: 4925.85,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1823`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27345,Discounts: 344.4,Sales: 27000.6,COGS: 22960,Profit: 4040.6,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19565,Discounts: 72.1,Sales: 19492.9,COGS: 5150,Profit: 14342.9,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `457`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3199,Discounts: 44.73,Sales: 3154.27,COGS: 3195,Profit: 40.73,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3785`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26495,Discounts: 92.82,Sales: 26402.18,COGS: 6630,Profit: 19772.18,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `748`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 8976,Discounts: 222.96,Sales: 8753.04,COGS: 5574,Profit: 3179.04,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1021`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 357350,Discounts: 4235,Sales: 353115,COGS: 314600,Profit: 38515,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2076`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 14532,Discounts: 177.03,Sales: 14354.97,COGS: 12645,Profit: 1709.97,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `4316`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51792,Discounts: 173.4,Sales: 51618.6,COGS: 4335,Profit: 47283.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2654`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 331750,Discounts: 412.5,Sales: 331337.5,COGS: 39600,Profit: 291737.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4174`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50088,Discounts: 320.52,Sales: 49767.48,COGS: 8013,Profit: 41754.48,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1675`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 20100,Discounts: 91.92,Sales: 20008.08,COGS: 2298,Profit: 17710.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1572`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 471600,Discounts: 1482,Sales: 470118,COGS: 123500,Profit: 346618,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3736`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1307600,Discounts: 4889.5,Sales: 1302710.5,COGS: 363220,Profit: 939490.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1914`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 669900,Discounts: 7542.5,Sales: 662357.5,COGS: 560300,Profit: 102057.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2742`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 41130,Discounts: 332.1,Sales: 40797.9,COGS: 22140,Profit: 18657.9,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1499`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 449700,Discounts: 6903,Sales: 442797,COGS: 575250,Profit: 132453,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 75440,Discounts: 275.1,Sales: 75164.9,COGS: 13755,Profit: 61409.9,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1112`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 7784,Discounts: 128.1,Sales: 7655.9,COGS: 9150,Profit: 1494.1,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1723`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 516900,Discounts: 7494,Sales: 509406,COGS: 624500,Profit: 115094,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `423`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 52875,Discounts: 828.75,Sales: 52046.25,COGS: 79560,Profit: 27513.75,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2368`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 35520,Discounts: 227.1,Sales: 35292.9,COGS: 15140,Profit: 20152.9,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 11102,Discounts: 314.48,Sales: 10787.52,COGS: 22462.5,Profit: 11674.98,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3386`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 423250,Discounts: 908.75,Sales: 422341.25,COGS: 87240,Profit: 335101.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `852`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 106500,Discounts: 983.75,Sales: 105516.25,COGS: 94440,Profit: 11076.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2783`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 347875,Discounts: 2278.75,Sales: 345596.25,COGS: 218760,Profit: 126836.25,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2684`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 40260,Discounts: 112.05,Sales: 40147.95,COGS: 7470,Profit: 32677.95,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4393`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 52716,Discounts: 91.92,Sales: 52624.08,COGS: 2298,Profit: 50326.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4083`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1224900,Discounts: 8715,Sales: 1216185,COGS: 726250,Profit: 489935,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2816`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 985600,Discounts: 7542.5,Sales: 978057.5,COGS: 560300,Profit: 417757.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4294`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 85880,Discounts: 772.8,Sales: 85107.2,COGS: 38640,Profit: 46467.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 25.34,Sales: 19966.66,COGS: 1810,Profit: 18156.66,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1407`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 175875,Discounts: 1153.75,Sales: 174721.25,COGS: 110760,Profit: 63961.25,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3850`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 481250,Discounts: 828.75,Sales: 480421.25,COGS: 79560,Profit: 400861.25,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 146.44,Sales: 19845.56,COGS: 10460,Profit: 9385.56,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1265`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 8855,Discounts: 18.41,Sales: 8836.59,COGS: 1315,Profit: 7521.59,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3892`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1362200,Discounts: 3302.25,Sales: 1358897.75,COGS: 245310,Profit: 1113587.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3068`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 383500,Discounts: 908.75,Sales: 382591.25,COGS: 87240,Profit: 295351.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2181`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 272625,Discounts: 983.75,Sales: 271641.25,COGS: 94440,Profit: 177201.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1356`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 406800,Discounts: 2958,Sales: 403842,COGS: 246500,Profit: 157342,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2545`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 763500,Discounts: 1482,Sales: 762018,COGS: 123500,Profit: 638518,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1814`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 634900,Discounts: 4889.5,Sales: 630010.5,COGS: 363220,Profit: 266790.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1495`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 186875,Discounts: 2180,Sales: 184695,COGS: 209280,Profit: 24585,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1154`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 13848,Discounts: 238.68,Sales: 13609.32,COGS: 5967,Profit: 7642.32,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `4180`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 62700,Discounts: 48.15,Sales: 62651.85,COGS: 3210,Profit: 59441.85,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1463`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 182875,Discounts: 1856.25,Sales: 181018.75,COGS: 89100,Profit: 91918.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `215`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 2580,Discounts: 310.8,Sales: 2269.2,COGS: 3885,Profit: 1615.8,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4099`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 1229700,Discounts: 1284,Sales: 1228416,COGS: 53500,Profit: 1174916,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2660`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 18620,Discounts: 300.3,Sales: 18319.7,COGS: 10725,Profit: 7594.7,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `566`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 198100,Discounts: 19964,Sales: 178136,COGS: 741520,Profit: 563384,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3255`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 39060,Discounts: 274.08,Sales: 38785.92,COGS: 3426,Profit: 35359.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15440,Discounts: 626.4,Sales: 14813.6,COGS: 15660,Profit: 846.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1135`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13620,Discounts: 165.6,Sales: 13454.4,COGS: 2070,Profit: 11384.4,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3826`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 478250,Discounts: 4150,Sales: 474100,COGS: 199200,Profit: 274900,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 17895,Discounts: 708.9,Sales: 17186.1,COGS: 23630,Profit: 6443.9,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2530`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 759000,Discounts: 5508,Sales: 753492,COGS: 229500,Profit: 523992,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3451`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1035300,Discounts: 10368,Sales: 1024932,COGS: 432000,Profit: 592932,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3059`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 36708,Discounts: 274.08,Sales: 36433.92,COGS: 3426,Profit: 33007.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3957`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 494625,Discounts: 1655,Sales: 492970,COGS: 79440,Profit: 413530,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3444`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 41328,Discounts: 310.8,Sales: 41017.2,COGS: 3885,Profit: 37132.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4388`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 548500,Discounts: 2022.5,Sales: 546477.5,COGS: 97080,Profit: 449397.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2106`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 263250,Discounts: 5362.5,Sales: 257887.5,COGS: 257400,Profit: 487.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `799`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 9588,Discounts: 428.4,Sales: 9159.6,COGS: 5355,Profit: 3804.6,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3154`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 946200,Discounts: 11496,Sales: 934704,COGS: 479000,Profit: 455704,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4108`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1437800,Discounts: 19964,Sales: 1417836,COGS: 741520,Profit: 676316,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3760`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 470000,Discounts: 6822.5,Sales: 463177.5,COGS: 327480,Profit: 135697.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `377`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 5655,Discounts: 577.5,Sales: 5077.5,COGS: 19250,Profit: 14172.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2110`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14770,Discounts: 281.82,Sales: 14488.18,COGS: 10065,Profit: 4423.18,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2334`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28008,Discounts: 253.2,Sales: 27754.8,COGS: 3165,Profit: 24589.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `580`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 6960,Discounts: 260.16,Sales: 6699.84,COGS: 3252,Profit: 3447.84,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2610`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 52200,Discounts: 626.4,Sales: 51573.6,COGS: 15660,Profit: 35913.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1598`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 559300,Discounts: 20762,Sales: 538538,COGS: 771160,Profit: 232622,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1459`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 510650,Discounts: 20139,Sales: 490511,COGS: 748020,Profit: 257509,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3284`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 410500,Discounts: 2022.5,Sales: 408477.5,COGS: 97080,Profit: 311397.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1197`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 149625,Discounts: 5362.5,Sales: 144262.5,COGS: 257400,Profit: 113137.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3774`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 45288,Discounts: 253.2,Sales: 45034.8,COGS: 3165,Profit: 41869.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2303`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 46060,Discounts: 217.6,Sales: 45842.4,COGS: 5440,Profit: 40402.4,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2572`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 30864,Discounts: 260.16,Sales: 30603.84,COGS: 3252,Profit: 27351.84,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `320`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 40000,Discounts: 1655,Sales: 38345,COGS: 79440,Profit: 41095,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2126`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 637800,Discounts: 1284,Sales: 636516,COGS: 53500,Profit: 583016,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3275`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1146250,Discounts: 20139,Sales: 1126111,COGS: 748020,Profit: 378091,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3582`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 447750,Discounts: 6822.5,Sales: 440927.5,COGS: 327480,Profit: 113447.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `783`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 274050,Discounts: 1862,Sales: 272188,COGS: 69160,Profit: 203028,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1202`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 420700,Discounts: 13580,Sales: 407120,COGS: 504400,Profit: 97280,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4056`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1216800,Discounts: 1554,Sales: 1215246,COGS: 64750,Profit: 1150496,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2144`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 643200,Discounts: 6606,Sales: 636594,COGS: 275250,Profit: 361344,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3502`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 437750,Discounts: 5690,Sales: 432060,COGS: 273120,Profit: 158940,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1397`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 488950,Discounts: 20762,Sales: 468188,COGS: 771160,Profit: 302972,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `679`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 13580,Discounts: 494.4,Sales: 13085.6,COGS: 12360,Profit: 725.6,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2351`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 47020,Discounts: 376.4,Sales: 46643.6,COGS: 9410,Profit: 37233.6,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2043`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 612900,Discounts: 11496,Sales: 601404,COGS: 479000,Profit: 122404,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3565`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 445625,Discounts: 15913.13,Sales: 429711.88,COGS: 509220,Profit: 79508.13,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1401`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 28020,Discounts: 1548,Sales: 26472,COGS: 25800,Profit: 672,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2077`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 623100,Discounts: 6201,Sales: 616899,COGS: 172250,Profit: 444649,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 43716,Discounts: 700.92,Sales: 43015.08,COGS: 5841,Profit: 37174.08,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1105`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 13260,Discounts: 326.88,Sales: 12933.12,COGS: 2724,Profit: 10209.12,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2960`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20720,Discounts: 411.18,Sales: 20308.82,COGS: 9790,Profit: 10518.82,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1201`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 14412,Discounts: 684.36,Sales: 13727.64,COGS: 5703,Profit: 8024.64,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2321`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 16247,Discounts: 114.24,Sales: 16132.76,COGS: 2720,Profit: 13412.76,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3640`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1274000,Discounts: 18868.5,Sales: 1255131.5,COGS: 467220,Profit: 787911.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3972`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 496500,Discounts: 4826.25,Sales: 491673.75,COGS: 154440,Profit: 337233.75,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3878`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 484750,Discounts: 6397.5,Sales: 478352.5,COGS: 204720,Profit: 273632.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2278`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 683400,Discounts: 21910.5,Sales: 661489.5,COGS: 608625,Profit: 52864.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1075`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 134375,Discounts: 6652.5,Sales: 127722.5,COGS: 212880,Profit: 85157.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4050`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 48600,Discounts: 684.36,Sales: 47915.64,COGS: 5703,Profit: 42212.64,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3035`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 910500,Discounts: 6201,Sales: 904299,COGS: 172250,Profit: 732049,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3636`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 454500,Discounts: 5887.5,Sales: 448612.5,COGS: 188400,Profit: 260212.5,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1379`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 16548,Discounts: 493.02,Sales: 16054.98,COGS: 4108.5,Profit: 11946.48,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4492`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 561500,Discounts: 7533.75,Sales: 553966.25,COGS: 241080,Profit: 312886.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `764`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11460,Discounts: 875.25,Sales: 10584.75,COGS: 19450,Profit: 8865.25,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1744`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 218000,Discounts: 4826.25,Sales: 213173.75,COGS: 154440,Profit: 58733.75,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2341`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 292625,Discounts: 6397.5,Sales: 286227.5,COGS: 204720,Profit: 81507.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 479375,Discounts: 7533.75,Sales: 471841.25,COGS: 241080,Profit: 230761.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1161`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 348300,Discounts: 25596,Sales: 322704,COGS: 711000,Profit: 388296,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `876`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10512,Discounts: 689.76,Sales: 9822.24,COGS: 5748,Profit: 4074.24,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1705`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 213125,Discounts: 5887.5,Sales: 207237.5,COGS: 188400,Profit: 18837.5,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1805`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 541500,Discounts: 16866,Sales: 524634,COGS: 468500,Profit: 56134,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `389`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 136150,Discounts: 17241,Sales: 118909,COGS: 426920,Profit: 308011,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 41175,Discounts: 875.25,Sales: 40299.75,COGS: 19450,Profit: 20849.75,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1459`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 29180,Discounts: 498.6,Sales: 28681.4,COGS: 8310,Profit: 20371.4,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3938`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27566,Discounts: 369.6,Sales: 27196.4,COGS: 8800,Profit: 18396.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4236`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 84720,Discounts: 2310.3,Sales: 82409.7,COGS: 38505,Profit: 43904.7,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3627`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 43524,Discounts: 892.44,Sales: 42631.56,COGS: 7437,Profit: 35194.56,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1756`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 26340,Discounts: 1218.6,Sales: 25121.4,COGS: 20310,Profit: 4811.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `307`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 4605,Discounts: 1218.6,Sales: 3386.4,COGS: 20310,Profit: 16923.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4489`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 67335,Discounts: 1356.6,Sales: 65978.4,COGS: 22610,Profit: 43368.4,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2167`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 43340,Discounts: 588.8,Sales: 42751.2,COGS: 7360,Profit: 35391.2,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1137`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 7959,Discounts: 798.28,Sales: 7160.72,COGS: 14255,Profit: 7094.28,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1222`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 366600,Discounts: 24252,Sales: 342348,COGS: 505250,Profit: 162902,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `489`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 171150,Discounts: 3836,Sales: 167314,COGS: 71240,Profit: 96074,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4133`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 61995,Discounts: 1180.2,Sales: 60814.8,COGS: 19670,Profit: 41144.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2743`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 822900,Discounts: 22308,Sales: 800592,COGS: 464750,Profit: 335842,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3699`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 25893,Discounts: 798.28,Sales: 25094.72,COGS: 14255,Profit: 10839.72,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `4460`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1338000,Discounts: 24252,Sales: 1313748,COGS: 505250,Profit: 808498,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1232`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 154000,Discounts: 5690,Sales: 148310,COGS: 136560,Profit: 11750,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 18102,Discounts: 1190.28,Sales: 16911.72,COGS: 21255,Profit: 4343.28,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1332`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 166500,Discounts: 3975,Sales: 162525,COGS: 95400,Profit: 67125,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4487`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1346100,Discounts: 16974,Sales: 1329126,COGS: 353625,Profit: 975501,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3862`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1158600,Discounts: 35016,Sales: 1123584,COGS: 729500,Profit: 394084,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1765`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 617750,Discounts: 48300,Sales: 569450,COGS: 897000,Profit: 327550,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3533`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 441625,Discounts: 14940,Sales: 426685,COGS: 358560,Profit: 68125,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2016`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 30240,Discounts: 130.8,Sales: 30109.2,COGS: 2180,Profit: 27929.2,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58760,Discounts: 1659.2,Sales: 57100.8,COGS: 20740,Profit: 36360.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3352`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67040,Discounts: 844.8,Sales: 66195.2,COGS: 10560,Profit: 55635.2,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4409`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 66135,Discounts: 402.6,Sales: 65732.4,COGS: 6710,Profit: 59022.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3323`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 49845,Discounts: 908.4,Sales: 48936.6,COGS: 15140,Profit: 33796.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2430`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 850500,Discounts: 3836,Sales: 846664,COGS: 71240,Profit: 775424,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `535`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 66875,Discounts: 5690,Sales: 61185,COGS: 136560,Profit: 75375,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1523`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 18276,Discounts: 703.2,Sales: 17572.8,COGS: 4395,Profit: 13177.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3631`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 72620,Discounts: 2116.8,Sales: 70503.2,COGS: 26460,Profit: 44043.2,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1782`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 623700,Discounts: 30478,Sales: 593222,COGS: 566020,Profit: 27202,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `347`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 4164,Discounts: 415.68,Sales: 3748.32,COGS: 2598,Profit: 1150.32,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `4147`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1451450,Discounts: 4886,Sales: 1446564,COGS: 90740,Profit: 1355824,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3509`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1228150,Discounts: 30478,Sales: 1197672,COGS: 566020,Profit: 631652,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2774`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 41610,Discounts: 908.4,Sales: 40701.6,COGS: 15140,Profit: 25561.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2943`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1030050,Discounts: 26110,Sales: 1003940,COGS: 484900,Profit: 519040,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4037`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 504625,Discounts: 5370,Sales: 499255,COGS: 128880,Profit: 370375,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4146`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1451100,Discounts: 26698,Sales: 1424402,COGS: 495820,Profit: 928582,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `4123`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 61845,Discounts: 402.6,Sales: 61442.4,COGS: 6710,Profit: 54732.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1337`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 467950,Discounts: 24892,Sales: 443058,COGS: 462280,Profit: 19222,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `599`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 4193,Discounts: 405.65,Sales: 3787.35,COGS: 5795,Profit: 2007.65,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `725`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 5075,Discounts: 480.2,Sales: 4594.8,COGS: 6860,Profit: 2265.2,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `477`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 3339,Discounts: 822.15,Sales: 2516.85,COGS: 11745,Profit: 9228.15,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 16275,Discounts: 941.15,Sales: 15333.85,COGS: 13445,Profit: 1888.85,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `675`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 8100,Discounts: 1458.6,Sales: 6641.4,COGS: 7293,Profit: 651.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2990`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35880,Discounts: 1458.6,Sales: 34421.4,COGS: 7293,Profit: 27128.4,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1072`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 7504,Discounts: 941.15,Sales: 6562.85,COGS: 13445,Profit: 6882.15,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1048`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7336,Discounts: 589.05,Sales: 6746.95,COGS: 8415,Profit: 1668.05,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `469`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 5628,Discounts: 673.8,Sales: 4954.2,COGS: 3369,Profit: 1585.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `804`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 5628,Discounts: 405.65,Sales: 5222.35,COGS: 5795,Profit: 572.65,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4240`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50880,Discounts: 1119,Sales: 49761,COGS: 5595,Profit: 44166,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1976`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 23712,Discounts: 669.6,Sales: 23042.4,COGS: 3348,Profit: 19694.4,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1984`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39680,Discounts: 1563,Sales: 38117,COGS: 15630,Profit: 22487,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `480`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 144000,Discounts: 14865,Sales: 129135,COGS: 247750,Profit: 118615,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `3551`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 24857,Discounts: 355.6,Sales: 24501.4,COGS: 5080,Profit: 19421.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1205`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 18075,Discounts: 2093.25,Sales: 15981.75,COGS: 27910,Profit: 11928.25,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2480`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17360,Discounts: 199.5,Sales: 17160.5,COGS: 2850,Profit: 14310.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2926`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 20482,Discounts: 870.45,Sales: 19611.55,COGS: 12435,Profit: 7176.55,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3210`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1123500,Discounts: 24228.75,Sales: 1099271.25,COGS: 359970,Profit: 739301.25,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3221`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 402625,Discounts: 22668.75,Sales: 379956.25,COGS: 435240,Profit: 55283.75,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2389`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 836150,Discounts: 12600,Sales: 823550,COGS: 187200,Profit: 636350,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1127`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13524,Discounts: 1405.2,Sales: 12118.8,COGS: 7026,Profit: 5092.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `319`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 95700,Discounts: 16500,Sales: 79200,COGS: 275000,Profit: 195800,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1610`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 32200,Discounts: 1303,Sales: 30897,COGS: 13030,Profit: 17867,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4100`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 512500,Discounts: 18700,Sales: 493800,COGS: 359040,Profit: 134760,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1012`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 126500,Discounts: 14906.25,Sales: 111593.75,COGS: 286200,Profit: 174606.25,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3337`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1001100,Discounts: 24105,Sales: 976995,COGS: 401750,Profit: 575245,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3955`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27685,Discounts: 814.45,Sales: 26870.55,COGS: 11635,Profit: 15235.55,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4347`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1304100,Discounts: 14865,Sales: 1289235,COGS: 247750,Profit: 1041485,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1548`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 541800,Discounts: 10535,Sales: 531265,COGS: 156520,Profit: 374745,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2153`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 32295,Discounts: 1965,Sales: 30330,COGS: 26200,Profit: 4130,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3789`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1326150,Discounts: 21490,Sales: 1304660,COGS: 319280,Profit: 985380,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4364`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 87280,Discounts: 1389,Sales: 85891,COGS: 13890,Profit: 72001,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4126`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 515750,Discounts: 5381.25,Sales: 510368.75,COGS: 103320,Profit: 407048.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1343`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 167875,Discounts: 4400,Sales: 163475,COGS: 84480,Profit: 78995,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `245`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 4900,Discounts: 1802,Sales: 3098,COGS: 18020,Profit: 14922,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3376`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67520,Discounts: 2663,Sales: 64857,COGS: 26630,Profit: 38227,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 9807,Discounts: 747.6,Sales: 9059.4,COGS: 10680,Profit: 1620.6,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3483`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 52245,Discounts: 1587,Sales: 50658,COGS: 21160,Profit: 29498,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2244`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 33660,Discounts: 416.25,Sales: 33243.75,COGS: 5550,Profit: 27693.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1360`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20400,Discounts: 2145.75,Sales: 18254.25,COGS: 28610,Profit: 10355.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `279`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 34875,Discounts: 5043.75,Sales: 29831.25,COGS: 96840,Profit: 67008.75,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2521`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 882350,Discounts: 10535,Sales: 871815,COGS: 156520,Profit: 715295,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2433`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 48660,Discounts: 2832,Sales: 45828,COGS: 28320,Profit: 17508,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1738`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 34760,Discounts: 1579,Sales: 33181,COGS: 15790,Profit: 17391,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1106`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 138250,Discounts: 5381.25,Sales: 132868.75,COGS: 103320,Profit: 29548.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3379`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422375,Discounts: 4400,Sales: 417975,COGS: 84480,Profit: 333495,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1221`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 24420,Discounts: 1033,Sales: 23387,COGS: 10330,Profit: 13057,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `213`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 63900,Discounts: 18750,Sales: 45150,COGS: 312500,Profit: 267350,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3335`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 66700,Discounts: 1389,Sales: 65311,COGS: 13890,Profit: 51421,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1260`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 25200,Discounts: 1265,Sales: 23935,COGS: 12650,Profit: 11285,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3034`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 60680,Discounts: 2297,Sales: 58383,COGS: 22970,Profit: 35413,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2929`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 58580,Discounts: 2663,Sales: 55917,COGS: 26630,Profit: 29287,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2389`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 16723,Discounts: 199.5,Sales: 16523.5,COGS: 2850,Profit: 13673.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3086`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21602,Discounts: 870.45,Sales: 20731.55,COGS: 12435,Profit: 8296.55,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `745`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 260750,Discounts: 23625,Sales: 237125,COGS: 351000,Profit: 113875,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1266`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 443100,Discounts: 9660,Sales: 433440,COGS: 143520,Profit: 289920,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3790`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1326500,Discounts: 21490,Sales: 1305010,COGS: 319280,Profit: 985730,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4287`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1286100,Discounts: 18750,Sales: 1267350,COGS: 312500,Profit: 954850,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 47895,Discounts: 3420.9,Sales: 44474.1,COGS: 38010,Profit: 6464.1,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1967`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39340,Discounts: 1341,Sales: 37999,COGS: 11175,Profit: 26824,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `631`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 9465,Discounts: 2559.6,Sales: 6905.4,COGS: 28440,Profit: 21534.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3469`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 41628,Discounts: 404.64,Sales: 41223.36,COGS: 1686,Profit: 39537.36,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `570`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 6840,Discounts: 1655.28,Sales: 5184.72,COGS: 6897,Profit: 1712.28,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3215`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 48225,Discounts: 1827,Sales: 46398,COGS: 20300,Profit: 26098,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3754`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 26278,Discounts: 110.46,Sales: 26167.54,COGS: 1315,Profit: 24852.54,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2187`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 273375,Discounts: 6652.5,Sales: 266722.5,COGS: 106440,Profit: 160282.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1959`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 685650,Discounts: 20580,Sales: 665070,COGS: 254800,Profit: 410270,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2181`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 763350,Discounts: 30660,Sales: 732690,COGS: 379600,Profit: 353090,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3559`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 24913,Discounts: 589.26,Sales: 24323.74,COGS: 7015,Profit: 17308.74,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2205`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 26460,Discounts: 1960.56,Sales: 24499.44,COGS: 8169,Profit: 16330.44,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1890`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 661500,Discounts: 31416,Sales: 630084,COGS: 388960,Profit: 241124,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1296`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 15552,Discounts: 1655.28,Sales: 13896.72,COGS: 6897,Profit: 6999.72,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `775`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 271250,Discounts: 15267,Sales: 255983,COGS: 189020,Profit: 66963,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2417`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 302125,Discounts: 7140,Sales: 294985,COGS: 114240,Profit: 180745,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1158`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 144750,Discounts: 20662.5,Sales: 124087.5,COGS: 330600,Profit: 206512.5,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `803`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 12045,Discounts: 1377,Sales: 10668,COGS: 15300,Profit: 4632,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3705`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1296750,Discounts: 31416,Sales: 1265334,COGS: 388960,Profit: 876374,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `589`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 4123,Discounts: 629.16,Sales: 3493.84,COGS: 7490,Profit: 3996.16,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3797`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1139100,Discounts: 21978,Sales: 1117122,COGS: 305250,Profit: 811872,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1321`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 462350,Discounts: 43596,Sales: 418754,COGS: 539760,Profit: 121006,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3999`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 59985,Discounts: 2559.6,Sales: 57425.4,COGS: 28440,Profit: 28985.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4256`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 29792,Discounts: 629.16,Sales: 29162.84,COGS: 7490,Profit: 21672.84,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1643`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 492900,Discounts: 21978,Sales: 470922,COGS: 305250,Profit: 165672,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1912`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 38240,Discounts: 1347.6,Sales: 36892.4,COGS: 11230,Profit: 25662.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1610`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 483000,Discounts: 43848,Sales: 439152,COGS: 609000,Profit: 169848,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2160`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 270000,Discounts: 14906.25,Sales: 255093.75,COGS: 238500,Profit: 16593.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `466`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 163100,Discounts: 35259,Sales: 127841,COGS: 436540,Profit: 308699,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `328`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 114800,Discounts: 15267,Sales: 99533,COGS: 189020,Profit: 89487,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `4099`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 28693,Discounts: 589.26,Sales: 28103.74,COGS: 7015,Profit: 21088.74,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `990`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 346500,Discounts: 43596,Sales: 302904,COGS: 539760,Profit: 236856,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1433`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 28660,Discounts: 2108.4,Sales: 26551.6,COGS: 17570,Profit: 8981.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1478`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 22170,Discounts: 1978.2,Sales: 20191.8,COGS: 21980,Profit: 1788.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3798`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 56970,Discounts: 1568.7,Sales: 55401.3,COGS: 17430,Profit: 37971.3,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `447`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 6705,Discounts: 1037.7,Sales: 5667.3,COGS: 11530,Profit: 5862.7,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1711`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34220,Discounts: 2108.4,Sales: 32111.6,COGS: 17570,Profit: 14541.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `745`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 14900,Discounts: 1201.2,Sales: 13698.8,COGS: 10010,Profit: 3688.8,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1732`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 12124,Discounts: 559.86,Sales: 11564.14,COGS: 6665,Profit: 4899.14,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1759`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 26385,Discounts: 1037.7,Sales: 25347.3,COGS: 11530,Profit: 13817.3,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `338`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 4056,Discounts: 610.68,Sales: 3445.32,COGS: 2181,Profit: 1264.32,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3911`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 46932,Discounts: 1582.56,Sales: 45349.44,COGS: 5652,Profit: 39697.44,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3691`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 73820,Discounts: 2567.6,Sales: 71252.4,COGS: 18340,Profit: 52912.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `4473`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 53676,Discounts: 1965.6,Sales: 51710.4,COGS: 7020,Profit: 44690.4,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `383`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 4596,Discounts: 1967.28,Sales: 2628.72,COGS: 7026,Profit: 4397.28,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3105`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21735,Discounts: 505.19,Sales: 21229.81,COGS: 5155,Profit: 16074.81,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1062`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 15930,Discounts: 1325.1,Sales: 14604.9,COGS: 12620,Profit: 1984.9,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4083`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 28581,Discounts: 556.15,Sales: 28024.85,COGS: 5675,Profit: 22349.85,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3974`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 27818,Discounts: 268.03,Sales: 27549.97,COGS: 2735,Profit: 24814.97,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3723`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 26061,Discounts: 775.18,Sales: 25285.82,COGS: 7910,Profit: 17375.82,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2435`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 29220,Discounts: 1460.34,Sales: 27759.66,COGS: 5215.5,Profit: 22544.16,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1678`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 20136,Discounts: 1860.6,Sales: 18275.4,COGS: 6645,Profit: 11630.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1763`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 12341,Discounts: 775.18,Sales: 11565.82,COGS: 7910,Profit: 3655.82,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4473`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31311,Discounts: 556.15,Sales: 30754.85,COGS: 5675,Profit: 25079.85,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1246`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 436100,Discounts: 43144.5,Sales: 392955.5,COGS: 457860,Profit: 64904.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1615`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 484500,Discounts: 9408,Sales: 475092,COGS: 112000,Profit: 363092,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `749`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 224700,Discounts: 45801,Sales: 178899,COGS: 545250,Profit: 366351,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1318`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 26360,Discounts: 2766.4,Sales: 23593.6,COGS: 19760,Profit: 3833.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2882`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 864600,Discounts: 45801,Sales: 818799,COGS: 545250,Profit: 273549,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3039`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 379875,Discounts: 21875,Sales: 358000,COGS: 300000,Profit: 58000,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2484`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 745200,Discounts: 35742,Sales: 709458,COGS: 425500,Profit: 283958,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3169`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 950700,Discounts: 9408,Sales: 941292,COGS: 112000,Profit: 829292,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 510000,Discounts: 30738.75,Sales: 479261.25,COGS: 421560,Profit: 57701.25,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3943`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 59145,Discounts: 2206.05,Sales: 56938.95,COGS: 21010,Profit: 35928.95,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `784`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11760,Discounts: 3077.55,Sales: 8682.45,COGS: 29310,Profit: 20627.55,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `253`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5060,Discounts: 2149,Sales: 2911,COGS: 15350,Profit: 12439,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1316`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 394800,Discounts: 23583,Sales: 371217,COGS: 280750,Profit: 90467,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `808`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 242400,Discounts: 29484,Sales: 212916,COGS: 351000,Profit: 138084,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3295`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 39540,Discounts: 2320.92,Sales: 37219.08,COGS: 8289,Profit: 28930.08,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `520`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 3640,Discounts: 1041.25,Sales: 2598.75,COGS: 10625,Profit: 8026.25,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `799`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 239700,Discounts: 34839,Sales: 204861,COGS: 414750,Profit: 209889,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3942`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 78840,Discounts: 852.6,Sales: 77987.4,COGS: 6090,Profit: 71897.4,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2498`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 312250,Discounts: 18261.25,Sales: 293988.75,COGS: 250440,Profit: 43548.75,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2517`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 50340,Discounts: 2766.4,Sales: 47573.6,COGS: 19760,Profit: 27813.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3182`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 63640,Discounts: 1989.4,Sales: 61650.6,COGS: 14210,Profit: 47440.6,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1145`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 343500,Discounts: 28812,Sales: 314688,COGS: 343000,Profit: 28312,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `895`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 17900,Discounts: 823.2,Sales: 17076.8,COGS: 5880,Profit: 11196.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3814`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 45768,Discounts: 2725.38,Sales: 43042.62,COGS: 9733.5,Profit: 33309.12,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1188`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 356400,Discounts: 20139,Sales: 336261,COGS: 239750,Profit: 96511,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2233`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 669900,Discounts: 57687,Sales: 612213,COGS: 686750,Profit: 74537,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `421`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 52625,Discounts: 14393.75,Sales: 38231.25,COGS: 197400,Profit: 159168.75,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `269`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 94150,Discounts: 70462,Sales: 23688,COGS: 747760,Profit: 724072,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3766`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 470750,Discounts: 8697.5,Sales: 462052.5,COGS: 119280,Profit: 342772.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `952`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19040,Discounts: 1565.2,Sales: 17474.8,COGS: 11180,Profit: 6294.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2964`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 889200,Discounts: 28812,Sales: 860388,COGS: 343000,Profit: 517388,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1505`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10535,Discounts: 273.28,Sales: 10261.72,COGS: 2440,Profit: 7821.72,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1678`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 33560,Discounts: 2051.2,Sales: 31508.8,COGS: 12820,Profit: 18688.8,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4249`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 29743,Discounts: 143.92,Sales: 29599.08,COGS: 1285,Profit: 28314.08,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1677`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 33540,Discounts: 2051.2,Sales: 31488.8,COGS: 12820,Profit: 18668.8,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3051`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 381375,Discounts: 15400,Sales: 365975,COGS: 184800,Profit: 181175,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3372`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 50580,Discounts: 588,Sales: 49992,COGS: 4900,Profit: 45092,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1686`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 590100,Discounts: 38136,Sales: 551964,COGS: 354120,Profit: 197844,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3086`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 46290,Discounts: 3001.2,Sales: 43288.8,COGS: 25010,Profit: 18278.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4150`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 83000,Discounts: 1132.8,Sales: 81867.2,COGS: 7080,Profit: 74787.2,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3027`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 60540,Discounts: 1032,Sales: 59508,COGS: 6450,Profit: 53058,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4359`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1307700,Discounts: 37488,Sales: 1270212,COGS: 390500,Profit: 879712,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3628`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1088400,Discounts: 30792,Sales: 1057608,COGS: 320750,Profit: 736858,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1589`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 23835,Discounts: 853.2,Sales: 22981.8,COGS: 7110,Profit: 15871.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2679`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 334875,Discounts: 11140,Sales: 323735,COGS: 133680,Profit: 190055,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 23807,Discounts: 705.04,Sales: 23101.96,COGS: 6295,Profit: 16806.96,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2815`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19705,Discounts: 613.2,Sales: 19091.8,COGS: 5475,Profit: 13616.8,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2964`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 59280,Discounts: 2185.6,Sales: 57094.4,COGS: 13660,Profit: 43434.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4173`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1251900,Discounts: 59040,Sales: 1192860,COGS: 615000,Profit: 577860,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1157`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 8099,Discounts: 379.68,Sales: 7719.32,COGS: 3390,Profit: 4329.32,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3065`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21455,Discounts: 894.88,Sales: 20560.12,COGS: 7990,Profit: 12570.12,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1962`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 13734,Discounts: 1349.04,Sales: 12384.96,COGS: 12045,Profit: 339.96,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 81600,Discounts: 3094.4,Sales: 78505.6,COGS: 19340,Profit: 59165.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1713`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34260,Discounts: 4788.8,Sales: 29471.2,COGS: 29930,Profit: 458.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 978250,Discounts: 60088,Sales: 918162,COGS: 557960,Profit: 360202,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4082`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 28574,Discounts: 1089.76,Sales: 27484.24,COGS: 9730,Profit: 17754.24,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1691`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 591850,Discounts: 38136,Sales: 553714,COGS: 354120,Profit: 199594,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2305`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27660,Discounts: 574.08,Sales: 27085.92,COGS: 1794,Profit: 25291.92,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3401`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 23807,Discounts: 1627.92,Sales: 22179.08,COGS: 14535,Profit: 7644.08,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2288`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 16016,Discounts: 1309.28,Sales: 14706.72,COGS: 11690,Profit: 3016.72,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2399`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 719700,Discounts: 9264,Sales: 710436,COGS: 96500,Profit: 613936,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4086`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1225800,Discounts: 15240,Sales: 1210560,COGS: 158750,Profit: 1051810,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2651`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 927850,Discounts: 16086,Sales: 911764,COGS: 149370,Profit: 762394,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3971`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27797,Discounts: 1309.28,Sales: 26487.72,COGS: 11690,Profit: 14797.72,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2512`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 879200,Discounts: 10668,Sales: 868532,COGS: 99060,Profit: 769472,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 960750,Discounts: 11816,Sales: 948934,COGS: 109720,Profit: 839214,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1903`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 570900,Discounts: 51216,Sales: 519684,COGS: 533500,Profit: 13816,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `647`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 194100,Discounts: 19392,Sales: 174708,COGS: 202000,Profit: 27292,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2914`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 58280,Discounts: 1132.8,Sales: 57147.2,COGS: 7080,Profit: 50067.2,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1889`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 13223,Discounts: 1627.92,Sales: 11595.08,COGS: 14535,Profit: 2939.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1466`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 29320,Discounts: 2185.6,Sales: 27134.4,COGS: 13660,Profit: 13474.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `887`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 266100,Discounts: 59040,Sales: 207060,COGS: 615000,Profit: 407940,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `395`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 7900,Discounts: 2432,Sales: 5468,COGS: 15200,Profit: 9732,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1693`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 25395,Discounts: 853.2,Sales: 24541.8,COGS: 7110,Profit: 17431.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2459`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 29508,Discounts: 1320,Sales: 28188,COGS: 4125,Profit: 24063,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2649`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 794700,Discounts: 15240,Sales: 779460,COGS: 158750,Profit: 620710,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3608`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 72160,Discounts: 698.4,Sales: 71461.6,COGS: 4365,Profit: 67096.6,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1073`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 321900,Discounts: 29538,Sales: 292362,COGS: 273500,Profit: 18862,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1754`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 21048,Discounts: 396.36,Sales: 20651.64,COGS: 1101,Profit: 19550.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2167`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 650100,Discounts: 102667.5,Sales: 547432.5,COGS: 950625,Profit: 403192.5,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1319`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 461650,Discounts: 52479,Sales: 409171,COGS: 433160,Profit: 23989,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1679`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 503700,Discounts: 8694,Sales: 495006,COGS: 80500,Profit: 414506,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1252`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 15024,Discounts: 2506.68,Sales: 12517.32,COGS: 6963,Profit: 5554.32,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3493`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 436625,Discounts: 20891.25,Sales: 415733.75,COGS: 222840,Profit: 192893.75,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1697`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 11879,Discounts: 1014.93,Sales: 10864.07,COGS: 8055,Profit: 2809.07,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1156`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 144500,Discounts: 31466.25,Sales: 113033.75,COGS: 335640,Profit: 222606.25,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `726`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 217800,Discounts: 9018,Sales: 208782,COGS: 83500,Profit: 125282,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1153`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 345900,Discounts: 69255,Sales: 276645,COGS: 641250,Profit: 364605,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2720`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 952000,Discounts: 76135.5,Sales: 875864.5,COGS: 628420,Profit: 247444.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 54870,Discounts: 4961.25,Sales: 49908.75,COGS: 36750,Profit: 13158.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2950`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 885000,Discounts: 29538,Sales: 855462,COGS: 273500,Profit: 581962,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1821`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27315,Discounts: 1656.45,Sales: 25658.55,COGS: 12270,Profit: 13388.55,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4174`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 50088,Discounts: 396.36,Sales: 49691.64,COGS: 1101,Profit: 48590.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1127`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 338100,Discounts: 35748,Sales: 302352,COGS: 331000,Profit: 28648,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2209`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 26508,Discounts: 1917,Sales: 24591,COGS: 5325,Profit: 19266,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `862`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 107750,Discounts: 31466.25,Sales: 76283.75,COGS: 335640,Profit: 259356.25,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3805`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 57075,Discounts: 330.75,Sales: 56744.25,COGS: 2450,Profit: 54294.25,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1415`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 424500,Discounts: 102424.5,Sales: 322075.5,COGS: 948375,Profit: 626299.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2231`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 780850,Discounts: 41170.5,Sales: 739679.5,COGS: 339820,Profit: 399859.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3649`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 456125,Discounts: 6378.75,Sales: 449746.25,COGS: 68040,Profit: 381706.25,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2948`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 368500,Discounts: 23737.5,Sales: 344762.5,COGS: 253200,Profit: 91562.5,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3395`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1188250,Discounts: 39973.5,Sales: 1148276.5,COGS: 329940,Profit: 818336.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2650`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31800,Discounts: 2112.48,Sales: 29687.52,COGS: 5868,Profit: 23819.52,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `585`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 175500,Discounts: 71793,Sales: 103707,COGS: 664750,Profit: 561043,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1316`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 460600,Discounts: 42572.25,Sales: 418027.75,COGS: 351390,Profit: 66637.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4459`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 53508,Discounts: 950.4,Sales: 52557.6,COGS: 2640,Profit: 49917.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2711`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 813300,Discounts: 50409,Sales: 762891,COGS: 466750,Profit: 296141,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2621`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31452,Discounts: 2412.72,Sales: 29039.28,COGS: 6702,Profit: 22337.28,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3613`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 54195,Discounts: 1656.45,Sales: 52538.55,COGS: 12270,Profit: 40268.55,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1847`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 230875,Discounts: 9866.25,Sales: 221008.75,COGS: 105240,Profit: 115768.75,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2996`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1048600,Discounts: 65236.5,Sales: 983363.5,COGS: 538460,Profit: 444903.5,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2838`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 993300,Discounts: 39973.5,Sales: 953326.5,COGS: 329940,Profit: 623386.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1302`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 19530,Discounts: 1309.5,Sales: 18220.5,COGS: 9700,Profit: 8520.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1536`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 30720,Discounts: 3049.2,Sales: 27670.8,COGS: 16940,Profit: 10730.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1291`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 25820,Discounts: 1193.4,Sales: 24626.6,COGS: 6630,Profit: 17996.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1213`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 8491,Discounts: 515.97,Sales: 7975.03,COGS: 4095,Profit: 3880.03,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2370`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 28440,Discounts: 1706.4,Sales: 26733.6,COGS: 4740,Profit: 21993.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1979`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 13853,Discounts: 328.23,Sales: 13524.77,COGS: 2605,Profit: 10919.77,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2879`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57580,Discounts: 1751.4,Sales: 55828.6,COGS: 9730,Profit: 46098.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1707`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34140,Discounts: 1868.4,Sales: 32271.6,COGS: 10380,Profit: 21891.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2933`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 20531,Discounts: 226.8,Sales: 20304.2,COGS: 1800,Profit: 18504.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1014`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 12168,Discounts: 2124.36,Sales: 10043.64,COGS: 5901,Profit: 4142.64,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `693`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 10395,Discounts: 3547.8,Sales: 6847.2,COGS: 26280,Profit: 19432.8,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3741`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26187,Discounts: 226.8,Sales: 25960.2,COGS: 1800,Profit: 24160.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3116`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 62320,Discounts: 4827.6,Sales: 57492.4,COGS: 26820,Profit: 30672.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3995`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27965,Discounts: 328.23,Sales: 27636.77,COGS: 2605,Profit: 25031.77,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `953`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19060,Discounts: 1868.4,Sales: 17191.6,COGS: 10380,Profit: 6811.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2530`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 37950,Discounts: 2201.18,Sales: 35748.82,COGS: 16305,Profit: 19443.82,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2565`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 30780,Discounts: 330.48,Sales: 30449.52,COGS: 918,Profit: 29531.52,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `4297`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51564,Discounts: 463.2,Sales: 51100.8,COGS: 1158,Profit: 49942.8,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2871`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20097,Discounts: 1629.6,Sales: 18467.4,COGS: 11640,Profit: 6827.4,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3537`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 42444,Discounts: 463.2,Sales: 41980.8,COGS: 1158,Profit: 40822.8,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1598`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 199750,Discounts: 43068.75,Sales: 156681.25,COGS: 413460,Profit: 256778.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2616`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 327000,Discounts: 18525,Sales: 308475,COGS: 177840,Profit: 130635,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2836`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 992600,Discounts: 80955,Sales: 911645,COGS: 601380,Profit: 310265,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `4023`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 502875,Discounts: 22550,Sales: 480325,COGS: 216480,Profit: 263845,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3994`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 59910,Discounts: 3108,Sales: 56802,COGS: 20720,Profit: 36082,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2928`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58560,Discounts: 3908,Sales: 54652,COGS: 19540,Profit: 35112,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2912`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 873600,Discounts: 17730,Sales: 855870,COGS: 147750,Profit: 708120,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3671`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 55065,Discounts: 3250.5,Sales: 51814.5,COGS: 21670,Profit: 30144.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2778`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 55560,Discounts: 482,Sales: 55078,COGS: 2410,Profit: 52668,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `405`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 6075,Discounts: 1021.5,Sales: 5053.5,COGS: 6810,Profit: 1756.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2013`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 30195,Discounts: 765,Sales: 29430,COGS: 5100,Profit: 24330,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2634`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 39510,Discounts: 1185,Sales: 38325,COGS: 7900,Profit: 30425,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4166`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1458100,Discounts: 22365,Sales: 1435735,COGS: 166140,Profit: 1269595,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `355`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 44375,Discounts: 19950,Sales: 24425,COGS: 191520,Profit: 167095,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2382`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 714600,Discounts: 68820,Sales: 645780,COGS: 573500,Profit: 72280,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `4170`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 83400,Discounts: 482,Sales: 82918,COGS: 2410,Profit: 80508,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `892`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6244,Discounts: 1865.5,Sales: 4378.5,COGS: 13325,Profit: 8946.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2200`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 275000,Discounts: 23950,Sales: 251050,COGS: 229920,Profit: 21130,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3389`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1016700,Discounts: 25590,Sales: 991110,COGS: 213250,Profit: 777860,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2990`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 373750,Discounts: 4262.5,Sales: 369487.5,COGS: 40920,Profit: 328567.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4013`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 60195,Discounts: 961.5,Sales: 59233.5,COGS: 6410,Profit: 52823.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `739`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 258650,Discounts: 98245,Sales: 160405,COGS: 729820,Profit: 569415,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1989`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 596700,Discounts: 12960,Sales: 583740,COGS: 108000,Profit: 475740,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2991`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 897300,Discounts: 68820,Sales: 828480,COGS: 573500,Profit: 254980,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `4237`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 63555,Discounts: 3250.5,Sales: 60304.5,COGS: 21670,Profit: 38634.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1442`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 180250,Discounts: 31612.5,Sales: 148637.5,COGS: 303480,Profit: 154842.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2712`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 949200,Discounts: 65450,Sales: 883750,COGS: 486200,Profit: 397550,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1508`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 188500,Discounts: 7237.5,Sales: 181262.5,COGS: 69480,Profit: 111782.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4245`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1485750,Discounts: 78400,Sales: 1407350,COGS: 582400,Profit: 824950,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2630`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 789000,Discounts: 89790,Sales: 699210,COGS: 748250,Profit: 49040,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1182`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 14184,Discounts: 4224.6,Sales: 9959.4,COGS: 10561.5,Profit: 602.1,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1221`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 24420,Discounts: 4078,Sales: 20342,COGS: 20390,Profit: 48,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `963`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 11556,Discounts: 3088.8,Sales: 8467.2,COGS: 7722,Profit: 745.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3243`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1135050,Discounts: 24745,Sales: 1110305,COGS: 183820,Profit: 926485,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1120`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 16800,Discounts: 3108,Sales: 13692,COGS: 20720,Profit: 7028,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1174`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 352200,Discounts: 25590,Sales: 326610,COGS: 213250,Profit: 113360,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2541`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 30492,Discounts: 1581.36,Sales: 28910.64,COGS: 3594,Profit: 25316.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3246`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 22722,Discounts: 1949.64,Sales: 20772.36,COGS: 12660,Profit: 8112.36,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1531`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 18372,Discounts: 1581.36,Sales: 16790.64,COGS: 3594,Profit: 13196.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2526`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 37890,Discounts: 633.6,Sales: 37256.4,COGS: 3840,Profit: 33416.4,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1136`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 13632,Discounts: 623.04,Sales: 13008.96,COGS: 1416,Profit: 11592.96,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1983`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 13881,Discounts: 1215.83,Sales: 12665.17,COGS: 7895,Profit: 4770.17,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3259`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 39108,Discounts: 1326.6,Sales: 37781.4,COGS: 3015,Profit: 34766.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `3267`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 49005,Discounts: 5279.17,Sales: 43725.82,COGS: 31995,Profit: 11730.82,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `2454`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 29448,Discounts: 623.04,Sales: 28824.96,COGS: 1416,Profit: 27408.96,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `2643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 31716,Discounts: 2556.84,Sales: 29159.16,COGS: 5811,Profit: 23348.16,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `383`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 134050,Discounts: 30492,Sales: 103558,COGS: 205920,Profit: 102362,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2801`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 840300,Discounts: 92763,Sales: 747537,COGS: 702750,Profit: 44787,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1667`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 208375,Discounts: 33563.75,Sales: 174811.25,COGS: 292920,Profit: 118108.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3539`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53085,Discounts: 2574,Sales: 50511,COGS: 15600,Profit: 34911,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `4226`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 29582,Discounts: 2083.62,Sales: 27498.38,COGS: 13530,Profit: 13968.38,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2220`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 777000,Discounts: 29491,Sales: 747509,COGS: 199160,Profit: 548349,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `776`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15520,Discounts: 6582.4,Sales: 8937.6,COGS: 29920,Profit: 20982.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `553`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 8295,Discounts: 3559.05,Sales: 4735.95,COGS: 21570,Profit: 16834.05,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2107`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 632100,Discounts: 28809,Sales: 603291,COGS: 218250,Profit: 385041,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2468`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 49360,Discounts: 2468.4,Sales: 46891.6,COGS: 11220,Profit: 35671.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1905`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 666750,Discounts: 81023.25,Sales: 585726.75,COGS: 547170,Profit: 38556.75,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 43896,Discounts: 5314.32,Sales: 38581.68,COGS: 12078,Profit: 26503.68,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4301`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 51612,Discounts: 3201.66,Sales: 48410.34,COGS: 7276.5,Profit: 41133.84,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2446`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 48920,Discounts: 5266.8,Sales: 43653.2,COGS: 23940,Profit: 19713.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4209`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 63135,Discounts: 3273.6,Sales: 59861.4,COGS: 19840,Profit: 40021.4,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3353`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 419125,Discounts: 33563.75,Sales: 385561.25,COGS: 292920,Profit: 92641.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1401`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 28020,Discounts: 6582.4,Sales: 21437.6,COGS: 29920,Profit: 8482.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1865`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 559500,Discounts: 45078,Sales: 514422,COGS: 341500,Profit: 172922,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `463`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 9260,Discounts: 6171,Sales: 3089,COGS: 28050,Profit: 24961,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4177`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 62655,Discounts: 1080.75,Sales: 61574.25,COGS: 6550,Profit: 55024.25,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2523`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 883050,Discounts: 13244,Sales: 869806,COGS: 89440,Profit: 780366,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1930`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 13510,Discounts: 1392.16,Sales: 12117.84,COGS: 9040,Profit: 3077.84,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1301`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 15612,Discounts: 2288.88,Sales: 13323.12,COGS: 5202,Profit: 8121.12,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4125`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 515625,Discounts: 7617.5,Sales: 508007.5,COGS: 66480,Profit: 441527.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `607`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 12140,Discounts: 6457,Sales: 5683,COGS: 29350,Profit: 23667,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `478`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 59750,Discounts: 43518.75,Sales: 16231.25,COGS: 379800,Profit: 363568.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4489`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 89780,Discounts: 5783.8,Sales: 83996.2,COGS: 26290,Profit: 57706.2,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1504`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 188000,Discounts: 19703.75,Sales: 168296.25,COGS: 171960,Profit: 3663.75,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `3763`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 470375,Discounts: 13021.25,Sales: 457353.75,COGS: 113640,Profit: 343713.75,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2412`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 844200,Discounts: 13244,Sales: 830956,COGS: 89440,Profit: 741516,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2342`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 35130,Discounts: 3559.05,Sales: 31570.95,COGS: 21570,Profit: 10000.95,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4451`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 31157,Discounts: 292.6,Sales: 30864.4,COGS: 1900,Profit: 28964.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3796`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1328600,Discounts: 37212,Sales: 1291388,COGS: 230360,Profit: 1061028,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `2286`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 285750,Discounts: 36240,Sales: 249510,COGS: 289920,Profit: 40410,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3614`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 451750,Discounts: 32340,Sales: 419410,COGS: 258720,Profit: 160690,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1716`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 25740,Discounts: 4840.2,Sales: 20899.8,COGS: 26890,Profit: 5990.2,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1301`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 19515,Discounts: 1218.6,Sales: 18296.4,COGS: 6770,Profit: 11526.4,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4175`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1252500,Discounts: 63828,Sales: 1188672,COGS: 443250,Profit: 745422,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `975`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 6825,Discounts: 2032.8,Sales: 4792.2,COGS: 12100,Profit: 7307.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1154`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 8078,Discounts: 2296.56,Sales: 5781.44,COGS: 13670,Profit: 7888.56,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1873`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 37460,Discounts: 4116,Sales: 33344,COGS: 17150,Profit: 16194,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3766`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1129800,Discounts: 42696,Sales: 1087104,COGS: 296500,Profit: 790604,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3558`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1067400,Discounts: 125820,Sales: 941580,COGS: 873750,Profit: 67830,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3156`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1104600,Discounts: 37212,Sales: 1067388,COGS: 230360,Profit: 837028,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2994`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 374250,Discounts: 32340,Sales: 341910,COGS: 258720,Profit: 83190,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 41740,Discounts: 2172,Sales: 39568,COGS: 9050,Profit: 30518,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1056`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 21120,Discounts: 4116,Sales: 17004,COGS: 17150,Profit: 146,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1353`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 473550,Discounts: 66948,Sales: 406602,COGS: 414440,Profit: 7838,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `416`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 124800,Discounts: 48924,Sales: 75876,COGS: 339750,Profit: 263874,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3880`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1164000,Discounts: 77400,Sales: 1086600,COGS: 537500,Profit: 549100,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `809`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 283150,Discounts: 50274,Sales: 232876,COGS: 311220,Profit: 78344,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1892`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 28380,Discounts: 684,Sales: 27696,COGS: 3800,Profit: 23896,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2072`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 41440,Discounts: 2959.2,Sales: 38480.8,COGS: 12330,Profit: 26150.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3052`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1068200,Discounts: 58590,Sales: 1009610,COGS: 362700,Profit: 646910,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3121`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1092350,Discounts: 41412,Sales: 1050938,COGS: 256360,Profit: 794578,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2059`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 41180,Discounts: 2172,Sales: 39008,COGS: 9050,Profit: 29958,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4254`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 51048,Discounts: 3036.96,Sales: 48011.04,COGS: 6327,Profit: 41684.04,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1293`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 19395,Discounts: 6974.1,Sales: 12420.9,COGS: 38745,Profit: 26324.1,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1293`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 452550,Discounts: 26166,Sales: 426384,COGS: 161980,Profit: 264404,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `230`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 80500,Discounts: 41412,Sales: 39088,COGS: 256360,Profit: 217272,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1723`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 215375,Discounts: 35805,Sales: 179570,COGS: 286440,Profit: 106870,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `240`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 4800,Discounts: 2959.2,Sales: 1840.8,COGS: 12330,Profit: 10489.2,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2571`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 899850,Discounts: 11340,Sales: 888510,COGS: 70200,Profit: 818310,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1661`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 11627,Discounts: 2874.06,Sales: 8752.94,COGS: 17107.5,Profit: 8354.56,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4474`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31318,Discounts: 2296.56,Sales: 29021.44,COGS: 13670,Profit: 15351.44,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `833`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 12495,Discounts: 4586.4,Sales: 7908.6,COGS: 25480,Profit: 17571.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `674`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 13480,Discounts: 6051.6,Sales: 7428.4,COGS: 25215,Profit: 17786.6,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `778`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 9336,Discounts: 3831.84,Sales: 5504.16,COGS: 7983,Profit: 2478.84,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1457`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 29140,Discounts: 3674.4,Sales: 25465.6,COGS: 15310,Profit: 10155.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3158`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 22106,Discounts: 1252.44,Sales: 20853.56,COGS: 7455,Profit: 13398.56,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4095`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 81900,Discounts: 3674.4,Sales: 78225.6,COGS: 15310,Profit: 62915.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3170`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 38040,Discounts: 3975.84,Sales: 34064.16,COGS: 8283,Profit: 25781.16,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `493`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 7395,Discounts: 5005.65,Sales: 2389.35,COGS: 25670,Profit: 23280.65,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3286`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 49290,Discounts: 5005.65,Sales: 44284.35,COGS: 25670,Profit: 18614.35,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3563`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1247050,Discounts: 41996.5,Sales: 1205053.5,COGS: 239980,Profit: 965073.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4109`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1438150,Discounts: 81445,Sales: 1356705,COGS: 465400,Profit: 891305,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `3653`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 73060,Discounts: 1149.2,Sales: 71910.8,COGS: 4420,Profit: 67490.8,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2203`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 771050,Discounts: 44703.75,Sales: 726346.25,COGS: 255450,Profit: 470896.25,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2924`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20468,Discounts: 1181.18,Sales: 19286.82,COGS: 6490,Profit: 12796.82,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2650`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 31800,Discounts: 942.24,Sales: 30857.76,COGS: 1812,Profit: 29045.76,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1194`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 23880,Discounts: 5863,Sales: 18017,COGS: 22550,Profit: 4533,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3366`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 67320,Discounts: 3247.4,Sales: 64072.6,COGS: 12490,Profit: 51582.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 9275,Discounts: 1309.04,Sales: 7965.97,COGS: 7192.5,Profit: 773.47,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4243`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1272900,Discounts: 31473,Sales: 1241427,COGS: 201750,Profit: 1039677,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2887`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57740,Discounts: 6866.6,Sales: 50873.4,COGS: 26410,Profit: 24463.4,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3839`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 76780,Discounts: 7040.8,Sales: 69739.2,COGS: 27080,Profit: 42659.2,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1863`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 652050,Discounts: 119756,Sales: 532294,COGS: 684320,Profit: 152026,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2858`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 357250,Discounts: 25723.75,Sales: 331526.25,COGS: 189960,Profit: 141566.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2868`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34416,Discounts: 890.76,Sales: 33525.24,COGS: 1713,Profit: 31812.24,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3805`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 26635,Discounts: 2453.36,Sales: 24181.64,COGS: 13480,Profit: 10701.64,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3914`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 58710,Discounts: 3051.75,Sales: 55658.25,COGS: 15650,Profit: 40008.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `524`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 10480,Discounts: 3247.4,Sales: 7232.6,COGS: 12490,Profit: 5257.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3095`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1083250,Discounts: 16243.5,Sales: 1067006.5,COGS: 92820,Profit: 974186.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2410`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28920,Discounts: 1580.28,Sales: 27339.72,COGS: 3039,Profit: 24300.72,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4263`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 63945,Discounts: 7795.13,Sales: 56149.88,COGS: 39975,Profit: 16174.88,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2239`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 783650,Discounts: 119756,Sales: 663894,COGS: 684320,Profit: 20426,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `569`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3983,Discounts: 1082.9,Sales: 2900.1,COGS: 5950,Profit: 3049.9,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3889`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 46668,Discounts: 942.24,Sales: 45725.76,COGS: 1812,Profit: 43913.76,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1378`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20670,Discounts: 1287,Sales: 19383,COGS: 6600,Profit: 12783,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2253`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27036,Discounts: 639.6,Sales: 26396.4,COGS: 1230,Profit: 25166.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3202`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 960600,Discounts: 101595,Sales: 859005,COGS: 651250,Profit: 207755,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 46020,Discounts: 1580.28,Sales: 44439.72,COGS: 3039,Profit: 41400.72,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `2487`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 310875,Discounts: 25723.75,Sales: 285151.25,COGS: 189960,Profit: 95191.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4428`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 66420,Discounts: 3051.75,Sales: 63368.25,COGS: 15650,Profit: 47718.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1200`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 150000,Discounts: 26958.75,Sales: 123041.25,COGS: 199080,Profit: 76038.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2953`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 20671,Discounts: 1082.9,Sales: 19588.1,COGS: 5950,Profit: 13638.1,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1453`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 17436,Discounts: 639.6,Sales: 16796.4,COGS: 1230,Profit: 15566.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `865`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 10380,Discounts: 2761.2,Sales: 7618.8,COGS: 5310,Profit: 2308.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1072`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 21440,Discounts: 7221.2,Sales: 14218.8,COGS: 25790,Profit: 11571.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1737`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 34740,Discounts: 4880.4,Sales: 29859.6,COGS: 17430,Profit: 12429.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1535`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 10745,Discounts: 2936.08,Sales: 7808.92,COGS: 14980,Profit: 7171.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2532`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17724,Discounts: 274.4,Sales: 17449.6,COGS: 1400,Profit: 16049.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1765`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 12355,Discounts: 287.14,Sales: 12067.86,COGS: 1465,Profit: 10602.86,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1567`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10969,Discounts: 2936.08,Sales: 8032.92,COGS: 14980,Profit: 6947.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2640`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 39600,Discounts: 583.8,Sales: 39016.2,COGS: 2780,Profit: 36236.2,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3079`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 61580,Discounts: 6798.4,Sales: 54781.6,COGS: 24280,Profit: 30501.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4130`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 61950,Discounts: 3710.7,Sales: 58239.3,COGS: 17670,Profit: 40569.3,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 35256,Discounts: 2340.24,Sales: 32915.76,COGS: 4179,Profit: 28736.76,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3080`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21560,Discounts: 274.4,Sales: 21285.6,COGS: 1400,Profit: 19885.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1530`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 18360,Discounts: 2340.24,Sales: 16019.76,COGS: 4179,Profit: 11840.76,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `3537`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 42444,Discounts: 3385.2,Sales: 39058.8,COGS: 6045,Profit: 33013.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `2021`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 606300,Discounts: 33642,Sales: 572658,COGS: 200250,Profit: 372408,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1804`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 225500,Discounts: 17902.5,Sales: 207597.5,COGS: 122760,Profit: 84837.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1014`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 304200,Discounts: 62832,Sales: 241368,COGS: 374000,Profit: 132632,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2913`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 873900,Discounts: 42420,Sales: 831480,COGS: 252500,Profit: 578980,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `763`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 11445,Discounts: 3177.3,Sales: 8267.7,COGS: 15130,Profit: 6862.3,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1425`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21375,Discounts: 4830,Sales: 16545,COGS: 23000,Profit: 6455,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `4357`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 544625,Discounts: 49367.5,Sales: 495257.5,COGS: 338520,Profit: 156737.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2138`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 748300,Discounts: 109147.5,Sales: 639152.5,COGS: 579150,Profit: 60002.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3825`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1338750,Discounts: 58751,Sales: 1279999,COGS: 311740,Profit: 968259,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3393`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1187550,Discounts: 9800,Sales: 1177750,COGS: 52000,Profit: 1125750,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2215`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 15505,Discounts: 380.24,Sales: 15124.76,COGS: 1940,Profit: 13184.76,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2278`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 15946,Discounts: 1692.46,Sales: 14253.54,COGS: 8635,Profit: 5618.54,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `403`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 6045,Discounts: 4830,Sales: 1215,COGS: 23000,Profit: 21785,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `289`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5780,Discounts: 728,Sales: 5052,COGS: 2600,Profit: 2452,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `749`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11235,Discounts: 5187,Sales: 6048,COGS: 24700,Profit: 18652,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `372`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 5580,Discounts: 3660.3,Sales: 1919.7,COGS: 17430,Profit: 15510.3,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3781`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 45372,Discounts: 4895.52,Sales: 40476.48,COGS: 8742,Profit: 31734.48,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1785`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 12495,Discounts: 1696.38,Sales: 10798.62,COGS: 8655,Profit: 2143.62,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4029`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1410150,Discounts: 34300,Sales: 1375850,COGS: 182000,Profit: 1193850,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2813`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 33756,Discounts: 3732.96,Sales: 30023.04,COGS: 6666,Profit: 23357.04,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2150`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 752500,Discounts: 57673,Sales: 694827,COGS: 306020,Profit: 388807,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2093`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 732550,Discounts: 94178,Sales: 638372,COGS: 499720,Profit: 138652,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4391`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 548875,Discounts: 27562.5,Sales: 521312.5,COGS: 189000,Profit: 332312.5,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2695`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 53900,Discounts: 1696.8,Sales: 52203.2,COGS: 6060,Profit: 46143.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1337`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 401100,Discounts: 103320,Sales: 297780,COGS: 615000,Profit: 317220,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2621`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 786300,Discounts: 11298,Sales: 775002,COGS: 67250,Profit: 707752,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3735`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1120500,Discounts: 106512,Sales: 1013988,COGS: 634000,Profit: 379988,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4320`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 30240,Discounts: 2844.94,Sales: 27395.06,COGS: 14515,Profit: 12880.06,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2828`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 848400,Discounts: 106722,Sales: 741678,COGS: 635250,Profit: 106428,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `2586`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 775800,Discounts: 11298,Sales: 764502,COGS: 67250,Profit: 697252,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1248`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 374400,Discounts: 62832,Sales: 311568,COGS: 374000,Profit: 62432,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `4035`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1210500,Discounts: 42420,Sales: 1168080,COGS: 252500,Profit: 915580,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `359`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 125650,Discounts: 62769,Sales: 62881,COGS: 333060,Profit: 270179,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3926`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1177800,Discounts: 37296,Sales: 1140504,COGS: 222000,Profit: 918504,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `4247`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 530875,Discounts: 49770,Sales: 481105,COGS: 341280,Profit: 139825,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2695`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 32340,Discounts: 4158,Sales: 28182,COGS: 7425,Profit: 20757,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1104`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 16560,Discounts: 3660.3,Sales: 12899.7,COGS: 17430,Profit: 4530.3,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1449`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 17388,Discounts: 4895.52,Sales: 12492.48,COGS: 8742,Profit: 3750.48,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1131`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7917,Discounts: 1696.38,Sales: 6220.62,COGS: 8655,Profit: 2434.38,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1468`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 10276,Discounts: 1692.46,Sales: 8583.54,COGS: 8635,Profit: 51.46,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1272`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 19080,Discounts: 3927,Sales: 15153,COGS: 18700,Profit: 3547,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1403`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 175375,Discounts: 22012.5,Sales: 153362.5,COGS: 140880,Profit: 12482.5,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2161`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 270125,Discounts: 51881.25,Sales: 218243.75,COGS: 332040,Profit: 113796.25,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1937`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 242125,Discounts: 20343.75,Sales: 221781.25,COGS: 130200,Profit: 91581.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2879`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 863700,Discounts: 24570,Sales: 839130,COGS: 136500,Profit: 702630,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1330`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 26600,Discounts: 3474,Sales: 23126,COGS: 11580,Profit: 11546,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2426`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 36390,Discounts: 3631.5,Sales: 32758.5,COGS: 16140,Profit: 16618.5,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2033`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14231,Discounts: 2661.75,Sales: 11569.25,COGS: 12675,Profit: 1105.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2029`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 710150,Discounts: 149677.5,Sales: 560472.5,COGS: 741260,Profit: 180787.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1049`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 15735,Discounts: 5757.75,Sales: 9977.25,COGS: 25590,Profit: 15612.75,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1062`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 21240,Discounts: 801,Sales: 20439,COGS: 2670,Profit: 17769,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2509`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 313625,Discounts: 20343.75,Sales: 293281.25,COGS: 130200,Profit: 163081.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1743`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 26145,Discounts: 2643.75,Sales: 23501.25,COGS: 11750,Profit: 11751.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3418`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1196300,Discounts: 105367.5,Sales: 1090932.5,COGS: 521820,Profit: 569112.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1751`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 612850,Discounts: 112927.5,Sales: 499922.5,COGS: 559260,Profit: 59337.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3228`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 38736,Discounts: 1645.2,Sales: 37090.8,COGS: 2742,Profit: 34348.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1105`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 22100,Discounts: 879,Sales: 21221,COGS: 2930,Profit: 18291,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2778`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 33336,Discounts: 900,Sales: 32436,COGS: 1500,Profit: 30936,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1173`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 17595,Discounts: 6358.5,Sales: 11236.5,COGS: 28260,Profit: 17023.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3160`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 395000,Discounts: 12431.25,Sales: 382568.75,COGS: 79560,Profit: 303008.75,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `4322`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1296600,Discounts: 115830,Sales: 1180770,COGS: 643500,Profit: 537270,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1901`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 237625,Discounts: 45712.5,Sales: 191912.5,COGS: 292560,Profit: 100647.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2980`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35760,Discounts: 1645.2,Sales: 34114.8,COGS: 2742,Profit: 31372.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4068`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 81360,Discounts: 2596.5,Sales: 78763.5,COGS: 8655,Profit: 70108.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2105`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 31575,Discounts: 1107,Sales: 30468,COGS: 4920,Profit: 25548,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1647`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 32940,Discounts: 801,Sales: 32139,COGS: 2670,Profit: 29469,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `235`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 3525,Discounts: 2643.75,Sales: 881.25,COGS: 11750,Profit: 10868.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3617`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 452125,Discounts: 55387.5,Sales: 396737.5,COGS: 354480,Profit: 42257.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2106`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 263250,Discounts: 10350,Sales: 252900,COGS: 66240,Profit: 186660,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2351`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 47020,Discounts: 879,Sales: 46141,COGS: 2930,Profit: 43211,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1897`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 569100,Discounts: 111375,Sales: 457725,COGS: 618750,Profit: 161025,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `647`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 194100,Discounts: 24570,Sales: 169530,COGS: 136500,Profit: 33030,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3621`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 25347,Discounts: 1436.4,Sales: 23910.6,COGS: 6840,Profit: 17070.6,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3221`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 22547,Discounts: 759.15,Sales: 21787.85,COGS: 3615,Profit: 18172.85,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `493`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 5916,Discounts: 3250.8,Sales: 2665.2,COGS: 5418,Profit: 2752.8,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - } -} - export class SalesDataItem { public constructor(init: Partial) { Object.assign(this, init); @@ -1054,7 +5,7 @@ export class SalesDataItem { public Country: string; public Product: string; - public UnitsSold: string; + public UnitsSold: number; public ManufacturingPrice: number; public SalePrice: number; public GrossSales: number; @@ -1063,8 +14,16690 @@ export class SalesDataItem { public COGS: number; public Profit: number; public Date: string; - public MonthName: string; + public Month: string; public Year: string; } -//end data \ No newline at end of file +export class SalesData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 501, + ManufacturingPrice: 15, + SalePrice: 23, + GrossSales: 26440, + Discounts: 0, + Sales: 26440, + COGS: 16185, + Profit: 11255, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1372, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 27440, + Discounts: 0, + Sales: 27440, + COGS: 16185, + Profit: 11255, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2762, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 55240, + Discounts: 0, + Sales: 55240, + COGS: 13210, + Profit: 42030, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1464, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 21960, + Discounts: 0, + Sales: 21960, + COGS: 21780, + Profit: 180, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 719, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 10785, + Discounts: 0, + Sales: 10785, + COGS: 8880, + Profit: 1905, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3576, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 53640, + Discounts: 0, + Sales: 53640, + COGS: 24700, + Profit: 28940, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 4422, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1547700, + Discounts: 0, + Sales: 1547700, + COGS: 393380, + Profit: 1154320, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3649, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 54735, + Discounts: 0, + Sales: 54735, + COGS: 9210, + Profit: 45525, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4172, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 50064, + Discounts: 0, + Sales: 50064, + COGS: 7554, + Profit: 42510, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3841, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 76820, + Discounts: 0, + Sales: 76820, + COGS: 18990, + Profit: 57830, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3726, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 44712, + Discounts: 0, + Sales: 44712, + COGS: 4635, + Profit: 40077, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2625, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 39375, + Discounts: 0, + Sales: 39375, + COGS: 24700, + Profit: 14675, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1958, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 244750, + Discounts: 0, + Sales: 244750, + COGS: 319860, + Profit: 75110, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 3271, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 981300, + Discounts: 0, + Sales: 981300, + COGS: 239500, + Profit: 741800, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2091, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 14637, + Discounts: 0, + Sales: 14637, + COGS: 10730, + Profit: 3907, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2825, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 42375, + Discounts: 0, + Sales: 42375, + COGS: 6150, + Profit: 36225, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2513, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 50260, + Discounts: 0, + Sales: 50260, + COGS: 2920, + Profit: 47340, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 883, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 13245, + Discounts: 0, + Sales: 13245, + COGS: 9740, + Profit: 3505, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2087, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 25044, + Discounts: 0, + Sales: 25044, + COGS: 7554, + Profit: 17490, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2563, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 897050, + Discounts: 0, + Sales: 897050, + COGS: 261560, + Profit: 635490, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2846, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 34152, + Discounts: 0, + Sales: 34152, + COGS: 1101, + Profit: 33051, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 997, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 6979, + Discounts: 0, + Sales: 6979, + COGS: 4415, + Profit: 2564, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2290, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 34350, + Discounts: 0, + Sales: 34350, + COGS: 24720, + Profit: 9630, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2133, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14931, + Discounts: 0, + Sales: 14931, + COGS: 5715, + Profit: 9216, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3617, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 72340, + Discounts: 0, + Sales: 72340, + COGS: 18170, + Profit: 54170, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1266, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 443100, + Discounts: 0, + Sales: 443100, + COGS: 393380, + Profit: 49720, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 894, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 6258, + Discounts: 0, + Sales: 6258, + COGS: 7465, + Profit: 1207, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 2725, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 340625, + Discounts: 0, + Sales: 340625, + COGS: 216480, + Profit: 124145, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3061, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 36732, + Discounts: 0, + Sales: 36732, + COGS: 6483, + Profit: 30249, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3958, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1385300, + Discounts: 0, + Sales: 1385300, + COGS: 261560, + Profit: 1123740, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3920, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 47040, + Discounts: 0, + Sales: 47040, + COGS: 4635, + Profit: 42405, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3381, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 422625, + Discounts: 0, + Sales: 422625, + COGS: 338520, + Profit: 84105, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4307, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 1292100, + Discounts: 0, + Sales: 1292100, + COGS: 500250, + Profit: 791850, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 878, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10536, + Discounts: 0, + Sales: 10536, + COGS: 8514, + Profit: 2022, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 496, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 7440, + Discounts: 0, + Sales: 7440, + COGS: 21780, + Profit: 14340, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3367, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 50505, + Discounts: 0, + Sales: 50505, + COGS: 8880, + Profit: 41625, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2055, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 616500, + Discounts: 0, + Sales: 616500, + COGS: 537750, + Profit: 78750, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4041, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 80820, + Discounts: 0, + Sales: 80820, + COGS: 18170, + Profit: 62650, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 3237, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1132950, + Discounts: 0, + Sales: 1132950, + COGS: 715000, + Profit: 417950, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 630, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 7560, + Discounts: 0, + Sales: 7560, + COGS: 5859, + Profit: 1701, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4210, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 526250, + Discounts: 0, + Sales: 526250, + COGS: 506340, + Profit: 19910, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1127, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 22540, + Discounts: 0, + Sales: 22540, + COGS: 18990, + Profit: 3550, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 3438, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 24066, + Discounts: 0, + Sales: 24066, + COGS: 8430, + Profit: 15636, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2015, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 24180, + Discounts: 0, + Sales: 24180, + COGS: 6423, + Profit: 17757, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2534, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 17738, + Discounts: 0, + Sales: 17738, + COGS: 5715, + Profit: 12023, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1384, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 20760, + Discounts: 0, + Sales: 20760, + COGS: 6150, + Profit: 14610, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3561, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 24927, + Discounts: 276.15, + Sales: 24650.85, + COGS: 19725, + Profit: 4925.85, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1823, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27345, + Discounts: 344.4, + Sales: 27000.6, + COGS: 22960, + Profit: 4040.6, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2795, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19565, + Discounts: 72.1, + Sales: 19492.9, + COGS: 5150, + Profit: 14342.9, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 457, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 3199, + Discounts: 44.73, + Sales: 3154.27, + COGS: 3195, + Profit: 40.73, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3785, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26495, + Discounts: 92.82, + Sales: 26402.18, + COGS: 6630, + Profit: 19772.18, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 748, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 8976, + Discounts: 222.96, + Sales: 8753.04, + COGS: 5574, + Profit: 3179.04, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1021, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 357350, + Discounts: 4235, + Sales: 353115, + COGS: 314600, + Profit: 38515, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2076, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 14532, + Discounts: 177.03, + Sales: 14354.97, + COGS: 12645, + Profit: 1709.97, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 4316, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 51792, + Discounts: 173.4, + Sales: 51618.6, + COGS: 4335, + Profit: 47283.6, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 4174, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50088, + Discounts: 320.52, + Sales: 49767.48, + COGS: 8013, + Profit: 41754.48, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3736, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1307600, + Discounts: 4889.5, + Sales: 1302710.5, + COGS: 363220, + Profit: 939490.5, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1914, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 669900, + Discounts: 7542.5, + Sales: 662357.5, + COGS: 560300, + Profit: 102057.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2742, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 41130, + Discounts: 332.1, + Sales: 40797.9, + COGS: 22140, + Profit: 18657.9, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1499, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 449700, + Discounts: 6903, + Sales: 442797, + COGS: 575250, + Profit: 132453, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3772, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 75440, + Discounts: 275.1, + Sales: 75164.9, + COGS: 13755, + Profit: 61409.9, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1112, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 7784, + Discounts: 128.1, + Sales: 7655.9, + COGS: 9150, + Profit: 1494.1, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2368, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 35520, + Discounts: 227.1, + Sales: 35292.9, + COGS: 15140, + Profit: 20152.9, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1586, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 11102, + Discounts: 314.48, + Sales: 10787.52, + COGS: 22462.5, + Profit: 11674.98, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3386, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 423250, + Discounts: 908.75, + Sales: 422341.25, + COGS: 87240, + Profit: 335101.25, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 852, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 106500, + Discounts: 983.75, + Sales: 105516.25, + COGS: 94440, + Profit: 11076.25, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2783, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 347875, + Discounts: 2278.75, + Sales: 345596.25, + COGS: 218760, + Profit: 126836.25, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2684, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 40260, + Discounts: 112.05, + Sales: 40147.95, + COGS: 7470, + Profit: 32677.95, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4083, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1224900, + Discounts: 8715, + Sales: 1216185, + COGS: 726250, + Profit: 489935, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2816, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 985600, + Discounts: 7542.5, + Sales: 978057.5, + COGS: 560300, + Profit: 417757.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 4294, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 85880, + Discounts: 772.8, + Sales: 85107.2, + COGS: 38640, + Profit: 46467.2, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2856, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 19992, + Discounts: 25.34, + Sales: 19966.66, + COGS: 1810, + Profit: 18156.66, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1407, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 175875, + Discounts: 1153.75, + Sales: 174721.25, + COGS: 110760, + Profit: 63961.25, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1265, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 8855, + Discounts: 18.41, + Sales: 8836.59, + COGS: 1315, + Profit: 7521.59, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3892, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1362200, + Discounts: 3302.25, + Sales: 1358897.75, + COGS: 245310, + Profit: 1113587.75, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 3068, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 383500, + Discounts: 908.75, + Sales: 382591.25, + COGS: 87240, + Profit: 295351.25, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2181, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 272625, + Discounts: 983.75, + Sales: 271641.25, + COGS: 94440, + Profit: 177201.25, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1356, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 406800, + Discounts: 2958, + Sales: 403842, + COGS: 246500, + Profit: 177201.25, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1814, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 634900, + Discounts: 4889.5, + Sales: 630010.5, + COGS: 363220, + Profit: 266790.5, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1495, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 186875, + Discounts: 2180, + Sales: 184695, + COGS: 209280, + Profit: 24585, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1463, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 182875, + Discounts: 1856.25, + Sales: 181018.75, + COGS: 89100, + Profit: 91918.75, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 215, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 2580, + Discounts: 310.8, + Sales: 2269.2, + COGS: 3885, + Profit: 1615.8, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 566, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 198100, + Discounts: 19964, + Sales: 178136, + COGS: 741520, + Profit: 563384, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 3255, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 39060, + Discounts: 274.08, + Sales: 38785.92, + COGS: 3426, + Profit: 35359.92, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 772, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 15440, + Discounts: 626.4, + Sales: 14813.6, + COGS: 15660, + Profit: 846.4, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1135, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13620, + Discounts: 165.6, + Sales: 13454.4, + COGS: 2070, + Profit: 11384.4, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1193, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 17895, + Discounts: 708.9, + Sales: 17186.1, + COGS: 23630, + Profit: 6443.9, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2530, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 759000, + Discounts: 5508, + Sales: 753492, + COGS: 229500, + Profit: 523992, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3451, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1035300, + Discounts: 10368, + Sales: 1024932, + COGS: 432000, + Profit: 592932, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3059, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 36708, + Discounts: 274.08, + Sales: 36433.92, + COGS: 3426, + Profit: 33007.92, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3957, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 494625, + Discounts: 1655, + Sales: 492970, + COGS: 79440, + Profit: 413530, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3444, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 41328, + Discounts: 310.8, + Sales: 41017.2, + COGS: 3885, + Profit: 37132.2, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3154, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 946200, + Discounts: 11496, + Sales: 934704, + COGS: 479000, + Profit: 455704, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4108, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1437800, + Discounts: 19964, + Sales: 1417836, + COGS: 741520, + Profit: 676316, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3760, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 470000, + Discounts: 6822.5, + Sales: 463177.5, + COGS: 327480, + Profit: 135697.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2334, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 28008, + Discounts: 253.2, + Sales: 27754.8, + COGS: 3165, + Profit: 24589.8, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 580, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 6960, + Discounts: 260.16, + Sales: 6699.84, + COGS: 3252, + Profit: 3447.84, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2610, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 52200, + Discounts: 626.4, + Sales: 51573.6, + COGS: 15660, + Profit: 35913.6, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 1459, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 510650, + Discounts: 20139, + Sales: 490511, + COGS: 748020, + Profit: 257509, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3774, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 45288, + Discounts: 253.2, + Sales: 45034.8, + COGS: 3165, + Profit: 41869.8, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2572, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 30864, + Discounts: 260.16, + Sales: 30603.84, + COGS: 3252, + Profit: 27351.84, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 320, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 40000, + Discounts: 1655, + Sales: 38345, + COGS: 79440, + Profit: 41095, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3275, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1146250, + Discounts: 20139, + Sales: 1126111, + COGS: 748020, + Profit: 378091, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3582, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 447750, + Discounts: 6822.5, + Sales: 440927.5, + COGS: 327480, + Profit: 113447.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4056, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1216800, + Discounts: 1554, + Sales: 1215246, + COGS: 64750, + Profit: 1150496, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2144, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 643200, + Discounts: 6606, + Sales: 636594, + COGS: 275250, + Profit: 361344, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 3502, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 437750, + Discounts: 5690, + Sales: 432060, + COGS: 273120, + Profit: 158940, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 679, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 13580, + Discounts: 494.4, + Sales: 13085.6, + COGS: 12360, + Profit: 725.6, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2351, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 47020, + Discounts: 376.4, + Sales: 46643.6, + COGS: 9410, + Profit: 37233.6, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2043, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 612900, + Discounts: 11496, + Sales: 601404, + COGS: 479000, + Profit: 122404, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 3565, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 445625, + Discounts: 15913.13, + Sales: 429711.88, + COGS: 509220, + Profit: 79508.13, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1401, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 28020, + Discounts: 1548, + Sales: 26472, + COGS: 25800, + Profit: 672, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2077, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 623100, + Discounts: 6201, + Sales: 616899, + COGS: 172250, + Profit: 444649, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 3643, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 43716, + Discounts: 700.92, + Sales: 43015.08, + COGS: 5841, + Profit: 37174.08, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2960, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20720, + Discounts: 411.18, + Sales: 20308.82, + COGS: 9790, + Profit: 10518.82, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1201, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 14412, + Discounts: 684.36, + Sales: 13727.64, + COGS: 5703, + Profit: 8024.64, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 2321, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 16247, + Discounts: 114.24, + Sales: 16132.76, + COGS: 2720, + Profit: 13412.76, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3972, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 496500, + Discounts: 4826.25, + Sales: 491673.75, + COGS: 154440, + Profit: 337233.75, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3878, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 484750, + Discounts: 6397.5, + Sales: 478352.5, + COGS: 204720, + Profit: 273632.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2278, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 683400, + Discounts: 21910.5, + Sales: 661489.5, + COGS: 608625, + Profit: 52864.5, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1075, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 134375, + Discounts: 6652.5, + Sales: 127722.5, + COGS: 212880, + Profit: 85157.5, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 4050, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 48600, + Discounts: 684.36, + Sales: 47915.64, + COGS: 5703, + Profit: 42212.64, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3035, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 910500, + Discounts: 6201, + Sales: 904299, + COGS: 172250, + Profit: 732049, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3636, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 454500, + Discounts: 5887.5, + Sales: 448612.5, + COGS: 188400, + Profit: 260212.5, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1379, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 16548, + Discounts: 493.02, + Sales: 16054.98, + COGS: 4108.5, + Profit: 11946.48, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4492, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 561500, + Discounts: 7533.75, + Sales: 553966.25, + COGS: 241080, + Profit: 312886.25, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1744, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 218000, + Discounts: 4826.25, + Sales: 213173.75, + COGS: 154440, + Profit: 58733.75, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2341, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 292625, + Discounts: 6397.5, + Sales: 286227.5, + COGS: 204720, + Profit: 81507.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3835, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 479375, + Discounts: 7533.75, + Sales: 471841.25, + COGS: 241080, + Profit: 230761.25, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1161, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 348300, + Discounts: 25596, + Sales: 322704, + COGS: 711000, + Profit: 388296, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 876, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10512, + Discounts: 689.76, + Sales: 9822.24, + COGS: 5748, + Profit: 4074.24, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1705, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 213125, + Discounts: 5887.5, + Sales: 207237.5, + COGS: 188400, + Profit: 18837.5, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1805, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 541500, + Discounts: 16866, + Sales: 524634, + COGS: 468500, + Profit: 56134, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 389, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 136150, + Discounts: 17241, + Sales: 118909, + COGS: 426920, + Profit: 308011, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1459, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 29180, + Discounts: 498.6, + Sales: 28681.4, + COGS: 8310, + Profit: 20371.4, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 4236, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 84720, + Discounts: 2310.3, + Sales: 82409.7, + COGS: 38505, + Profit: 43904.7, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3627, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 43524, + Discounts: 892.44, + Sales: 42631.56, + COGS: 7437, + Profit: 35194.56, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1756, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 26340, + Discounts: 1218.6, + Sales: 25121.4, + COGS: 20310, + Profit: 4811.4, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 307, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 4605, + Discounts: 1218.6, + Sales: 3386.4, + COGS: 20310, + Profit: 16923.6, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1222, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 366600, + Discounts: 24252, + Sales: 342348, + COGS: 505250, + Profit: 162902, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 489, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 171150, + Discounts: 3836, + Sales: 167314, + COGS: 71240, + Profit: 96074, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4133, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 61995, + Discounts: 1180.2, + Sales: 60814.8, + COGS: 19670, + Profit: 41144.8, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2743, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 822900, + Discounts: 22308, + Sales: 800592, + COGS: 464750, + Profit: 335842, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 4460, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1338000, + Discounts: 24252, + Sales: 1313748, + COGS: 505250, + Profit: 808498, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1232, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 154000, + Discounts: 5690, + Sales: 148310, + COGS: 136560, + Profit: 11750, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2586, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 18102, + Discounts: 1190.28, + Sales: 16911.72, + COGS: 21255, + Profit: 4343.28, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1332, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 166500, + Discounts: 3975, + Sales: 162525, + COGS: 95400, + Profit: 67125, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4487, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1346100, + Discounts: 16974, + Sales: 1329126, + COGS: 353625, + Profit: 975501, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3862, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1158600, + Discounts: 35016, + Sales: 1123584, + COGS: 729500, + Profit: 394084, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1765, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 617750, + Discounts: 48300, + Sales: 569450, + COGS: 897000, + Profit: 327550, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3533, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 441625, + Discounts: 14940, + Sales: 426685, + COGS: 358560, + Profit: 68125, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2016, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 30240, + Discounts: 130.8, + Sales: 30109.2, + COGS: 2180, + Profit: 27929.2, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2938, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 58760, + Discounts: 1659.2, + Sales: 57100.8, + COGS: 20740, + Profit: 36360.8, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3352, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67040, + Discounts: 844.8, + Sales: 66195.2, + COGS: 10560, + Profit: 55635.2, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2430, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 850500, + Discounts: 3836, + Sales: 846664, + COGS: 71240, + Profit: 775424, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 535, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 66875, + Discounts: 5690, + Sales: 61185, + COGS: 136560, + Profit: 75375, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1523, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 18276, + Discounts: 703.2, + Sales: 17572.8, + COGS: 4395, + Profit: 13177.8, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1782, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 623700, + Discounts: 30478, + Sales: 593222, + COGS: 566020, + Profit: 27202, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 347, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 4164, + Discounts: 415.68, + Sales: 3748.32, + COGS: 2598, + Profit: 1150.32, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3509, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1228150, + Discounts: 30478, + Sales: 1197672, + COGS: 566020, + Profit: 631652, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2943, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1030050, + Discounts: 26110, + Sales: 1003940, + COGS: 484900, + Profit: 519040, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 4037, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 504625, + Discounts: 5370, + Sales: 499255, + COGS: 128880, + Profit: 370375, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4146, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1451100, + Discounts: 26698, + Sales: 1424402, + COGS: 495820, + Profit: 928582, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 725, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 5075, + Discounts: 480.2, + Sales: 4594.8, + COGS: 6860, + Profit: 2265.2, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2325, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 16275, + Discounts: 941.15, + Sales: 15333.85, + COGS: 13445, + Profit: 1888.85, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 675, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 8100, + Discounts: 1458.6, + Sales: 6641.4, + COGS: 7293, + Profit: 651.6, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2990, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 35880, + Discounts: 1458.6, + Sales: 34421.4, + COGS: 7293, + Profit: 27128.4, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1072, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 7504, + Discounts: 941.15, + Sales: 6562.85, + COGS: 13445, + Profit: 6882.15, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1048, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 7336, + Discounts: 589.05, + Sales: 6746.95, + COGS: 8415, + Profit: 1668.05, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 469, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 5628, + Discounts: 673.8, + Sales: 4954.2, + COGS: 3369, + Profit: 1585.2, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 4240, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50880, + Discounts: 1119, + Sales: 49761, + COGS: 5595, + Profit: 44166, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1976, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 23712, + Discounts: 669.6, + Sales: 23042.4, + COGS: 3348, + Profit: 19694.4, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1984, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39680, + Discounts: 1563, + Sales: 38117, + COGS: 15630, + Profit: 22487, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 480, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 144000, + Discounts: 14865, + Sales: 129135, + COGS: 247750, + Profit: 118615, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1205, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 18075, + Discounts: 2093.25, + Sales: 15981.75, + COGS: 27910, + Profit: 11928.25, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2480, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 17360, + Discounts: 199.5, + Sales: 17160.5, + COGS: 2850, + Profit: 14310.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 2926, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 20482, + Discounts: 870.45, + Sales: 19611.55, + COGS: 12435, + Profit: 7176.55, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3210, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1123500, + Discounts: 24228.75, + Sales: 1099271.25, + COGS: 359970, + Profit: 739301.25, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 3221, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 402625, + Discounts: 22668.75, + Sales: 379956.25, + COGS: 435240, + Profit: 55283.75, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 1127, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13524, + Discounts: 1405.2, + Sales: 12118.8, + COGS: 7026, + Profit: 5092.8, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1610, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 32200, + Discounts: 1303, + Sales: 30897, + COGS: 13030, + Profit: 17867, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4100, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 512500, + Discounts: 18700, + Sales: 493800, + COGS: 359040, + Profit: 134760, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1012, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 126500, + Discounts: 14906.25, + Sales: 111593.75, + COGS: 286200, + Profit: 174606.25, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3337, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1001100, + Discounts: 24105, + Sales: 976995, + COGS: 401750, + Profit: 575245, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3955, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 27685, + Discounts: 814.45, + Sales: 26870.55, + COGS: 11635, + Profit: 15235.55, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4347, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1304100, + Discounts: 14865, + Sales: 1289235, + COGS: 247750, + Profit: 1041485, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1548, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 541800, + Discounts: 10535, + Sales: 531265, + COGS: 156520, + Profit: 374745, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2153, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 32295, + Discounts: 1965, + Sales: 30330, + COGS: 26200, + Profit: 4130, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4126, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 515750, + Discounts: 5381.25, + Sales: 510368.75, + COGS: 103320, + Profit: 407048.75, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3376, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67520, + Discounts: 2663, + Sales: 64857, + COGS: 26630, + Profit: 38227, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2244, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 33660, + Discounts: 416.25, + Sales: 33243.75, + COGS: 5550, + Profit: 27693.75, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 1360, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 20400, + Discounts: 2145.75, + Sales: 18254.25, + COGS: 28610, + Profit: 10355.75, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 279, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 34875, + Discounts: 5043.75, + Sales: 29831.25, + COGS: 96840, + Profit: 67008.75, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2521, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 882350, + Discounts: 10535, + Sales: 871815, + COGS: 156520, + Profit: 715295, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2433, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 48660, + Discounts: 2832, + Sales: 45828, + COGS: 28320, + Profit: 17508, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1738, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 34760, + Discounts: 1579, + Sales: 33181, + COGS: 15790, + Profit: 17391, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1106, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 138250, + Discounts: 5381.25, + Sales: 132868.75, + COGS: 103320, + Profit: 29548.75, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 213, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 63900, + Discounts: 18750, + Sales: 45150, + COGS: 312500, + Profit: 267350, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2929, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 58580, + Discounts: 2663, + Sales: 55917, + COGS: 26630, + Profit: 29287, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2389, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 16723, + Discounts: 199.5, + Sales: 16523.5, + COGS: 2850, + Profit: 13673.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3086, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 21602, + Discounts: 870.45, + Sales: 20731.55, + COGS: 12435, + Profit: 8296.55, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 745, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 260750, + Discounts: 23625, + Sales: 237125, + COGS: 351000, + Profit: 113875, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1266, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 443100, + Discounts: 9660, + Sales: 433440, + COGS: 143520, + Profit: 289920, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4287, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1286100, + Discounts: 18750, + Sales: 1267350, + COGS: 312500, + Profit: 954850, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3193, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 47895, + Discounts: 3420.9, + Sales: 44474.1, + COGS: 38010, + Profit: 6464.1, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1967, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39340, + Discounts: 1341, + Sales: 37999, + COGS: 11175, + Profit: 26824, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 631, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 9465, + Discounts: 2559.6, + Sales: 6905.4, + COGS: 28440, + Profit: 21534.6, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3469, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 41628, + Discounts: 404.64, + Sales: 41223.36, + COGS: 1686, + Profit: 39537.36, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 3215, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 48225, + Discounts: 1827, + Sales: 46398, + COGS: 20300, + Profit: 26098, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1959, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 685650, + Discounts: 20580, + Sales: 665070, + COGS: 254800, + Profit: 410270, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2181, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 763350, + Discounts: 30660, + Sales: 732690, + COGS: 379600, + Profit: 353090, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2205, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 26460, + Discounts: 1960.56, + Sales: 24499.44, + COGS: 8169, + Profit: 16330.44, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1890, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 661500, + Discounts: 31416, + Sales: 630084, + COGS: 388960, + Profit: 241124, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2417, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 302125, + Discounts: 7140, + Sales: 294985, + COGS: 114240, + Profit: 180745, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1158, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 144750, + Discounts: 20662.5, + Sales: 124087.5, + COGS: 330600, + Profit: 206512.5, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 803, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 12045, + Discounts: 1377, + Sales: 10668, + COGS: 15300, + Profit: 4632, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3705, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1296750, + Discounts: 31416, + Sales: 1265334, + COGS: 388960, + Profit: 876374, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 589, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 4123, + Discounts: 629.16, + Sales: 3493.84, + COGS: 7490, + Profit: 3996.16, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3999, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 59985, + Discounts: 2559.6, + Sales: 57425.4, + COGS: 28440, + Profit: 28985.4, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 4256, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 29792, + Discounts: 629.16, + Sales: 29162.84, + COGS: 7490, + Profit: 21672.84, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2160, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 270000, + Discounts: 14906.25, + Sales: 255093.75, + COGS: 238500, + Profit: 16593.75, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 466, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 163100, + Discounts: 35259, + Sales: 127841, + COGS: 436540, + Profit: 308699, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1478, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 22170, + Discounts: 1978.2, + Sales: 20191.8, + COGS: 21980, + Profit: 1788.2, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3798, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 56970, + Discounts: 1568.7, + Sales: 55401.3, + COGS: 17430, + Profit: 37971.3, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 447, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 6705, + Discounts: 1037.7, + Sales: 5667.3, + COGS: 11530, + Profit: 5862.7, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 745, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 14900, + Discounts: 1201.2, + Sales: 13698.8, + COGS: 10010, + Profit: 3688.8, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 1732, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 12124, + Discounts: 559.86, + Sales: 11564.14, + COGS: 6665, + Profit: 4899.14, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1759, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 26385, + Discounts: 1037.7, + Sales: 25347.3, + COGS: 11530, + Profit: 13817.3, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 338, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 4056, + Discounts: 610.68, + Sales: 3445.32, + COGS: 2181, + Profit: 1264.32, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 3911, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 46932, + Discounts: 1582.56, + Sales: 45349.44, + COGS: 5652, + Profit: 39697.44, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 4473, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 53676, + Discounts: 1965.6, + Sales: 51710.4, + COGS: 7020, + Profit: 44690.4, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 383, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 4596, + Discounts: 1967.28, + Sales: 2628.72, + COGS: 7026, + Profit: 4397.28, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1062, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 15930, + Discounts: 1325.1, + Sales: 14604.9, + COGS: 12620, + Profit: 1984.9, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 4083, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 28581, + Discounts: 556.15, + Sales: 28024.85, + COGS: 5675, + Profit: 22349.85, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3974, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 27818, + Discounts: 268.03, + Sales: 27549.97, + COGS: 2735, + Profit: 24814.97, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3723, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 26061, + Discounts: 775.18, + Sales: 25285.82, + COGS: 7910, + Profit: 17375.82, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2435, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 29220, + Discounts: 1460.34, + Sales: 27759.66, + COGS: 5215.5, + Profit: 22544.16, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1763, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 12341, + Discounts: 775.18, + Sales: 11565.82, + COGS: 7910, + Profit: 3655.82, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 4473, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 31311, + Discounts: 556.15, + Sales: 30754.85, + COGS: 5675, + Profit: 25079.85, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1246, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 436100, + Discounts: 43144.5, + Sales: 392955.5, + COGS: 457860, + Profit: 64904.5, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1615, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 484500, + Discounts: 9408, + Sales: 475092, + COGS: 112000, + Profit: 363092, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 749, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 224700, + Discounts: 45801, + Sales: 178899, + COGS: 545250, + Profit: 366351, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1318, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 26360, + Discounts: 2766.4, + Sales: 23593.6, + COGS: 19760, + Profit: 3833.6, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 2882, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 864600, + Discounts: 45801, + Sales: 818799, + COGS: 545250, + Profit: 273549, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2484, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 745200, + Discounts: 35742, + Sales: 709458, + COGS: 425500, + Profit: 283958, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3169, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 950700, + Discounts: 9408, + Sales: 941292, + COGS: 112000, + Profit: 829292, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4080, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 510000, + Discounts: 30738.75, + Sales: 479261.25, + COGS: 421560, + Profit: 57701.25, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3943, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 59145, + Discounts: 2206.05, + Sales: 56938.95, + COGS: 21010, + Profit: 35928.95, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 253, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 5060, + Discounts: 2149, + Sales: 2911, + COGS: 15350, + Profit: 12439, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 799, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 239700, + Discounts: 34839, + Sales: 204861, + COGS: 414750, + Profit: 209889, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3942, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 78840, + Discounts: 852.6, + Sales: 77987.4, + COGS: 6090, + Profit: 71897.4, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2498, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 312250, + Discounts: 18261.25, + Sales: 293988.75, + COGS: 250440, + Profit: 43548.75, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 2517, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 50340, + Discounts: 2766.4, + Sales: 47573.6, + COGS: 19760, + Profit: 27813.6, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1145, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 343500, + Discounts: 28812, + Sales: 314688, + COGS: 343000, + Profit: 28312, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3814, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 45768, + Discounts: 2725.38, + Sales: 43042.62, + COGS: 9733.5, + Profit: 33309.12, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1188, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 356400, + Discounts: 20139, + Sales: 336261, + COGS: 239750, + Profit: 96511, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 2233, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 669900, + Discounts: 57687, + Sales: 612213, + COGS: 686750, + Profit: 74537, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 421, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 52625, + Discounts: 14393.75, + Sales: 38231.25, + COGS: 197400, + Profit: 159168.75, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 269, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 94150, + Discounts: 70462, + Sales: 23688, + COGS: 747760, + Profit: 724072, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 952, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19040, + Discounts: 1565.2, + Sales: 17474.8, + COGS: 11180, + Profit: 6294.8, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2964, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 889200, + Discounts: 28812, + Sales: 860388, + COGS: 343000, + Profit: 517388, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1505, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 10535, + Discounts: 273.28, + Sales: 10261.72, + COGS: 2440, + Profit: 7821.72, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1678, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 33560, + Discounts: 2051.2, + Sales: 31508.8, + COGS: 12820, + Profit: 18688.8, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4249, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 29743, + Discounts: 143.92, + Sales: 29599.08, + COGS: 1285, + Profit: 28314.08, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1677, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 33540, + Discounts: 2051.2, + Sales: 31488.8, + COGS: 12820, + Profit: 18668.8, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3051, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 381375, + Discounts: 15400, + Sales: 365975, + COGS: 184800, + Profit: 181175, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 3372, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 50580, + Discounts: 588, + Sales: 49992, + COGS: 4900, + Profit: 45092, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1686, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 590100, + Discounts: 38136, + Sales: 551964, + COGS: 354120, + Profit: 197844, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3086, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 46290, + Discounts: 3001.2, + Sales: 43288.8, + COGS: 25010, + Profit: 18278.8, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4150, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 83000, + Discounts: 1132.8, + Sales: 81867.2, + COGS: 7080, + Profit: 74787.2, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3027, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 60540, + Discounts: 1032, + Sales: 59508, + COGS: 6450, + Profit: 53058, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 4359, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1307700, + Discounts: 37488, + Sales: 1270212, + COGS: 390500, + Profit: 879712, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 1589, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 23835, + Discounts: 853.2, + Sales: 22981.8, + COGS: 7110, + Profit: 15871.8, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2679, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 334875, + Discounts: 11140, + Sales: 323735, + COGS: 133680, + Profit: 190055, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3401, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 23807, + Discounts: 705.04, + Sales: 23101.96, + COGS: 6295, + Profit: 16806.96, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2815, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19705, + Discounts: 613.2, + Sales: 19091.8, + COGS: 5475, + Profit: 13616.8, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2964, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 59280, + Discounts: 2185.6, + Sales: 57094.4, + COGS: 13660, + Profit: 43434.4, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 4173, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1251900, + Discounts: 59040, + Sales: 1192860, + COGS: 615000, + Profit: 577860, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1157, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 8099, + Discounts: 379.68, + Sales: 7719.32, + COGS: 3390, + Profit: 4329.32, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3065, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 21455, + Discounts: 894.88, + Sales: 20560.12, + COGS: 7990, + Profit: 12570.12, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4080, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 81600, + Discounts: 3094.4, + Sales: 78505.6, + COGS: 19340, + Profit: 59165.6, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1713, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34260, + Discounts: 4788.8, + Sales: 29471.2, + COGS: 29930, + Profit: 458.8, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1691, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 591850, + Discounts: 38136, + Sales: 553714, + COGS: 354120, + Profit: 199594, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2305, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 27660, + Discounts: 574.08, + Sales: 27085.92, + COGS: 1794, + Profit: 25291.92, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3401, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 23807, + Discounts: 1627.92, + Sales: 22179.08, + COGS: 14535, + Profit: 7644.08, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2288, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 16016, + Discounts: 1309.28, + Sales: 14706.72, + COGS: 11690, + Profit: 3016.72, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 4086, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1225800, + Discounts: 15240, + Sales: 1210560, + COGS: 158750, + Profit: 1051810, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2651, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 927850, + Discounts: 16086, + Sales: 911764, + COGS: 149370, + Profit: 762394, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3971, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27797, + Discounts: 1309.28, + Sales: 26487.72, + COGS: 11690, + Profit: 14797.72, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2512, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 879200, + Discounts: 10668, + Sales: 868532, + COGS: 99060, + Profit: 769472, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2745, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 960750, + Discounts: 11816, + Sales: 948934, + COGS: 109720, + Profit: 839214, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1903, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 570900, + Discounts: 51216, + Sales: 519684, + COGS: 533500, + Profit: 13816, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2914, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 58280, + Discounts: 1132.8, + Sales: 57147.2, + COGS: 7080, + Profit: 50067.2, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1889, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 13223, + Discounts: 1627.92, + Sales: 11595.08, + COGS: 14535, + Profit: 2939.92, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1466, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 29320, + Discounts: 2185.6, + Sales: 27134.4, + COGS: 13660, + Profit: 13474.4, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 887, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 266100, + Discounts: 59040, + Sales: 207060, + COGS: 615000, + Profit: 407940, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 395, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 7900, + Discounts: 2432, + Sales: 5468, + COGS: 15200, + Profit: 9732, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1693, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 25395, + Discounts: 853.2, + Sales: 24541.8, + COGS: 7110, + Profit: 17431.8, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2649, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 794700, + Discounts: 15240, + Sales: 779460, + COGS: 158750, + Profit: 620710, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 3608, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 72160, + Discounts: 698.4, + Sales: 71461.6, + COGS: 4365, + Profit: 67096.6, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1073, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 321900, + Discounts: 29538, + Sales: 292362, + COGS: 273500, + Profit: 18862, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 2167, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 650100, + Discounts: 102667.5, + Sales: 547432.5, + COGS: 950625, + Profit: 403192.5, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1319, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 461650, + Discounts: 52479, + Sales: 409171, + COGS: 433160, + Profit: 23989, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1252, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 15024, + Discounts: 2506.68, + Sales: 12517.32, + COGS: 6963, + Profit: 5554.32, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1156, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 144500, + Discounts: 31466.25, + Sales: 113033.75, + COGS: 335640, + Profit: 222606.25, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1153, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 345900, + Discounts: 69255, + Sales: 276645, + COGS: 641250, + Profit: 364605, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2720, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 952000, + Discounts: 76135.5, + Sales: 875864.5, + COGS: 628420, + Profit: 247444.5, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3658, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 54870, + Discounts: 4961.25, + Sales: 49908.75, + COGS: 36750, + Profit: 13158.75, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2950, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 885000, + Discounts: 29538, + Sales: 855462, + COGS: 273500, + Profit: 581962, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1821, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27315, + Discounts: 1656.45, + Sales: 25658.55, + COGS: 12270, + Profit: 13388.55, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1127, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 338100, + Discounts: 35748, + Sales: 302352, + COGS: 331000, + Profit: 28648, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 862, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 107750, + Discounts: 31466.25, + Sales: 76283.75, + COGS: 335640, + Profit: 259356.25, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3805, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 57075, + Discounts: 330.75, + Sales: 56744.25, + COGS: 2450, + Profit: 54294.25, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1415, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 424500, + Discounts: 102424.5, + Sales: 322075.5, + COGS: 948375, + Profit: 626299.5, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2231, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 780850, + Discounts: 41170.5, + Sales: 739679.5, + COGS: 339820, + Profit: 399859.5, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3649, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 456125, + Discounts: 6378.75, + Sales: 449746.25, + COGS: 68040, + Profit: 381706.25, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2948, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 368500, + Discounts: 23737.5, + Sales: 344762.5, + COGS: 253200, + Profit: 91562.5, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3395, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1188250, + Discounts: 39973.5, + Sales: 1148276.5, + COGS: 329940, + Profit: 818336.5, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2650, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 31800, + Discounts: 2112.48, + Sales: 29687.52, + COGS: 5868, + Profit: 23819.52, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 585, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 175500, + Discounts: 71793, + Sales: 103707, + COGS: 664750, + Profit: 561043, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1316, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 460600, + Discounts: 42572.25, + Sales: 418027.75, + COGS: 351390, + Profit: 66637.75, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 4459, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 53508, + Discounts: 950.4, + Sales: 52557.6, + COGS: 2640, + Profit: 49917.6, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2711, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 813300, + Discounts: 50409, + Sales: 762891, + COGS: 466750, + Profit: 296141, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3613, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 54195, + Discounts: 1656.45, + Sales: 52538.55, + COGS: 12270, + Profit: 40268.55, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1847, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 230875, + Discounts: 9866.25, + Sales: 221008.75, + COGS: 105240, + Profit: 115768.75, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2996, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1048600, + Discounts: 65236.5, + Sales: 983363.5, + COGS: 538460, + Profit: 444903.5, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2838, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 993300, + Discounts: 39973.5, + Sales: 953326.5, + COGS: 329940, + Profit: 623386.5, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1536, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 30720, + Discounts: 3049.2, + Sales: 27670.8, + COGS: 16940, + Profit: 10730.8, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1291, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 25820, + Discounts: 1193.4, + Sales: 24626.6, + COGS: 6630, + Profit: 17996.6, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1213, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 8491, + Discounts: 515.97, + Sales: 7975.03, + COGS: 4095, + Profit: 3880.03, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2370, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 28440, + Discounts: 1706.4, + Sales: 26733.6, + COGS: 4740, + Profit: 21993.6, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1979, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 13853, + Discounts: 328.23, + Sales: 13524.77, + COGS: 2605, + Profit: 10919.77, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2879, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 57580, + Discounts: 1751.4, + Sales: 55828.6, + COGS: 9730, + Profit: 46098.6, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1707, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34140, + Discounts: 1868.4, + Sales: 32271.6, + COGS: 10380, + Profit: 21891.6, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2933, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 20531, + Discounts: 226.8, + Sales: 20304.2, + COGS: 1800, + Profit: 18504.2, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1014, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 12168, + Discounts: 2124.36, + Sales: 10043.64, + COGS: 5901, + Profit: 4142.64, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 693, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 10395, + Discounts: 3547.8, + Sales: 6847.2, + COGS: 26280, + Profit: 19432.8, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3741, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26187, + Discounts: 226.8, + Sales: 25960.2, + COGS: 1800, + Profit: 24160.2, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 3995, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27965, + Discounts: 328.23, + Sales: 27636.77, + COGS: 2605, + Profit: 25031.77, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 953, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19060, + Discounts: 1868.4, + Sales: 17191.6, + COGS: 10380, + Profit: 6811.6, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2530, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 37950, + Discounts: 2201.18, + Sales: 35748.82, + COGS: 16305, + Profit: 19443.82, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1372, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 27440, + Discounts: 0, + Sales: 27440, + COGS: 16185, + Profit: 11255, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2762, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 55240, + Discounts: 0, + Sales: 55240, + COGS: 13210, + Profit: 42030, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1464, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 21960, + Discounts: 0, + Sales: 21960, + COGS: 21780, + Profit: 180, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 719, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 10785, + Discounts: 0, + Sales: 10785, + COGS: 8880, + Profit: 1905, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3576, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 53640, + Discounts: 0, + Sales: 53640, + COGS: 24700, + Profit: 28940, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 4422, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1547700, + Discounts: 0, + Sales: 1547700, + COGS: 393380, + Profit: 1154320, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3649, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 54735, + Discounts: 0, + Sales: 54735, + COGS: 9210, + Profit: 45525, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4172, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 50064, + Discounts: 0, + Sales: 50064, + COGS: 7554, + Profit: 42510, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3841, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 76820, + Discounts: 0, + Sales: 76820, + COGS: 18990, + Profit: 57830, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3726, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 44712, + Discounts: 0, + Sales: 44712, + COGS: 4635, + Profit: 40077, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2625, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 39375, + Discounts: 0, + Sales: 39375, + COGS: 24700, + Profit: 14675, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1958, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 244750, + Discounts: 0, + Sales: 244750, + COGS: 319860, + Profit: 75110, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 3271, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 981300, + Discounts: 0, + Sales: 981300, + COGS: 239500, + Profit: 741800, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2091, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 14637, + Discounts: 0, + Sales: 14637, + COGS: 10730, + Profit: 3907, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 2530, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 316250, + Discounts: 0, + Sales: 316250, + COGS: 41400, + Profit: 274850, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2825, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 42375, + Discounts: 0, + Sales: 42375, + COGS: 6150, + Profit: 36225, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2513, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 50260, + Discounts: 0, + Sales: 50260, + COGS: 2920, + Profit: 47340, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 883, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 13245, + Discounts: 0, + Sales: 13245, + COGS: 9740, + Profit: 3505, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2087, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 25044, + Discounts: 0, + Sales: 25044, + COGS: 7554, + Profit: 17490, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2563, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 897050, + Discounts: 0, + Sales: 897050, + COGS: 261560, + Profit: 635490, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2846, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 34152, + Discounts: 0, + Sales: 34152, + COGS: 1101, + Profit: 33051, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 997, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 6979, + Discounts: 0, + Sales: 6979, + COGS: 4415, + Profit: 2564, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3421, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 51315, + Discounts: 0, + Sales: 51315, + COGS: 5490, + Profit: 45825, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Marchesa`, + UnitsSold: 70000, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 1050000, + Discounts: 0, + Sales: 1050000, + COGS: 5490, + Profit: 1044510, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2291, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 687300, + Discounts: 0, + Sales: 687300, + COGS: 197000, + Profit: 490300, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2290, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 34350, + Discounts: 0, + Sales: 34350, + COGS: 24720, + Profit: 9630, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2133, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14931, + Discounts: 0, + Sales: 14931, + COGS: 5715, + Profit: 9216, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3475, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1216250, + Discounts: 0, + Sales: 1216250, + COGS: 448500, + Profit: 767750, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3686, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 44232, + Discounts: 0, + Sales: 44232, + COGS: 2736, + Profit: 41496, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3319, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 49785, + Discounts: 0, + Sales: 49785, + COGS: 21520, + Profit: 28265, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3617, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 72340, + Discounts: 0, + Sales: 72340, + COGS: 18170, + Profit: 54170, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1266, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 443100, + Discounts: 0, + Sales: 443100, + COGS: 393380, + Profit: 49720, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 894, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 6258, + Discounts: 0, + Sales: 6258, + COGS: 7465, + Profit: 1207, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 2725, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 340625, + Discounts: 0, + Sales: 340625, + COGS: 216480, + Profit: 124145, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3061, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 36732, + Discounts: 0, + Sales: 36732, + COGS: 6483, + Profit: 30249, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3958, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1385300, + Discounts: 0, + Sales: 1385300, + COGS: 261560, + Profit: 1123740, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3920, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 47040, + Discounts: 0, + Sales: 47040, + COGS: 4635, + Profit: 42405, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3381, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 422625, + Discounts: 0, + Sales: 422625, + COGS: 338520, + Profit: 84105, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1094, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 136750, + Discounts: 0, + Sales: 136750, + COGS: 41400, + Profit: 95350, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4307, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 1292100, + Discounts: 0, + Sales: 1292100, + COGS: 500250, + Profit: 791850, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 878, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10536, + Discounts: 0, + Sales: 10536, + COGS: 8514, + Profit: 2022, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 496, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 7440, + Discounts: 0, + Sales: 7440, + COGS: 21780, + Profit: 14340, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3367, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 50505, + Discounts: 0, + Sales: 50505, + COGS: 8880, + Profit: 41625, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3880, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1358000, + Discounts: 0, + Sales: 1358000, + COGS: 397020, + Profit: 960980, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2055, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 616500, + Discounts: 0, + Sales: 616500, + COGS: 537750, + Profit: 78750, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4041, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 80820, + Discounts: 0, + Sales: 80820, + COGS: 18170, + Profit: 62650, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 3237, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1132950, + Discounts: 0, + Sales: 1132950, + COGS: 715000, + Profit: 417950, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 630, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 7560, + Discounts: 0, + Sales: 7560, + COGS: 5859, + Profit: 1701, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4210, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 526250, + Discounts: 0, + Sales: 526250, + COGS: 506340, + Profit: 19910, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1127, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 22540, + Discounts: 0, + Sales: 22540, + COGS: 18990, + Profit: 3550, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 3438, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 24066, + Discounts: 0, + Sales: 24066, + COGS: 8430, + Profit: 15636, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2015, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 24180, + Discounts: 0, + Sales: 24180, + COGS: 6423, + Profit: 17757, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2534, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 17738, + Discounts: 0, + Sales: 17738, + COGS: 5715, + Profit: 12023, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1384, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 20760, + Discounts: 0, + Sales: 20760, + COGS: 6150, + Profit: 14610, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3561, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 24927, + Discounts: 276.15, + Sales: 24650.85, + COGS: 19725, + Profit: 4925.85, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1823, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27345, + Discounts: 344.4, + Sales: 27000.6, + COGS: 22960, + Profit: 4040.6, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2795, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19565, + Discounts: 72.1, + Sales: 19492.9, + COGS: 5150, + Profit: 14342.9, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 457, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 3199, + Discounts: 44.73, + Sales: 3154.27, + COGS: 3195, + Profit: 40.73, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3785, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26495, + Discounts: 92.82, + Sales: 26402.18, + COGS: 6630, + Profit: 19772.18, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 748, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 8976, + Discounts: 222.96, + Sales: 8753.04, + COGS: 5574, + Profit: 3179.04, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1021, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 357350, + Discounts: 4235, + Sales: 353115, + COGS: 314600, + Profit: 38515, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2076, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 14532, + Discounts: 177.03, + Sales: 14354.97, + COGS: 12645, + Profit: 1709.97, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 4316, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 51792, + Discounts: 173.4, + Sales: 51618.6, + COGS: 4335, + Profit: 47283.6, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2654, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 331750, + Discounts: 412.5, + Sales: 331337.5, + COGS: 39600, + Profit: 291737.5, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 4174, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50088, + Discounts: 320.52, + Sales: 49767.48, + COGS: 8013, + Profit: 41754.48, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1675, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 20100, + Discounts: 91.92, + Sales: 20008.08, + COGS: 2298, + Profit: 17710.08, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1572, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 471600, + Discounts: 1482, + Sales: 470118, + COGS: 123500, + Profit: 346618, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3736, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1307600, + Discounts: 4889.5, + Sales: 1302710.5, + COGS: 363220, + Profit: 939490.5, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1914, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 669900, + Discounts: 7542.5, + Sales: 662357.5, + COGS: 560300, + Profit: 102057.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2742, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 41130, + Discounts: 332.1, + Sales: 40797.9, + COGS: 22140, + Profit: 18657.9, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1499, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 449700, + Discounts: 6903, + Sales: 442797, + COGS: 575250, + Profit: 132453, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3772, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 75440, + Discounts: 275.1, + Sales: 75164.9, + COGS: 13755, + Profit: 61409.9, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1112, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 7784, + Discounts: 128.1, + Sales: 7655.9, + COGS: 9150, + Profit: 1494.1, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1723, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 516900, + Discounts: 7494, + Sales: 509406, + COGS: 624500, + Profit: 115094, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 423, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 52875, + Discounts: 828.75, + Sales: 52046.25, + COGS: 79560, + Profit: 27513.75, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2368, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 35520, + Discounts: 227.1, + Sales: 35292.9, + COGS: 15140, + Profit: 20152.9, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1586, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 11102, + Discounts: 314.48, + Sales: 10787.52, + COGS: 22462.5, + Profit: 11674.98, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3386, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 423250, + Discounts: 908.75, + Sales: 422341.25, + COGS: 87240, + Profit: 335101.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 852, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 106500, + Discounts: 983.75, + Sales: 105516.25, + COGS: 94440, + Profit: 11076.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2783, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 347875, + Discounts: 2278.75, + Sales: 345596.25, + COGS: 218760, + Profit: 126836.25, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2684, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 40260, + Discounts: 112.05, + Sales: 40147.95, + COGS: 7470, + Profit: 32677.95, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4393, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 52716, + Discounts: 91.92, + Sales: 52624.08, + COGS: 2298, + Profit: 50326.08, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4083, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1224900, + Discounts: 8715, + Sales: 1216185, + COGS: 726250, + Profit: 489935, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2816, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 985600, + Discounts: 7542.5, + Sales: 978057.5, + COGS: 560300, + Profit: 417757.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 4294, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 85880, + Discounts: 772.8, + Sales: 85107.2, + COGS: 38640, + Profit: 46467.2, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2856, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 19992, + Discounts: 25.34, + Sales: 19966.66, + COGS: 1810, + Profit: 18156.66, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1407, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 175875, + Discounts: 1153.75, + Sales: 174721.25, + COGS: 110760, + Profit: 63961.25, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3850, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 481250, + Discounts: 828.75, + Sales: 480421.25, + COGS: 79560, + Profit: 400861.25, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2856, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 19992, + Discounts: 146.44, + Sales: 19845.56, + COGS: 10460, + Profit: 9385.56, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1265, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 8855, + Discounts: 18.41, + Sales: 8836.59, + COGS: 1315, + Profit: 7521.59, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3892, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1362200, + Discounts: 3302.25, + Sales: 1358897.75, + COGS: 245310, + Profit: 1113587.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 3068, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 383500, + Discounts: 908.75, + Sales: 382591.25, + COGS: 87240, + Profit: 295351.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2181, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 272625, + Discounts: 983.75, + Sales: 271641.25, + COGS: 94440, + Profit: 177201.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1356, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 406800, + Discounts: 2958, + Sales: 403842, + COGS: 246500, + Profit: 157342, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 2545, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 763500, + Discounts: 1482, + Sales: 762018, + COGS: 123500, + Profit: 638518, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1814, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 634900, + Discounts: 4889.5, + Sales: 630010.5, + COGS: 363220, + Profit: 266790.5, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1495, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 186875, + Discounts: 2180, + Sales: 184695, + COGS: 209280, + Profit: 24585, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1154, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 13848, + Discounts: 238.68, + Sales: 13609.32, + COGS: 5967, + Profit: 7642.32, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 4180, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 62700, + Discounts: 48.15, + Sales: 62651.85, + COGS: 3210, + Profit: 59441.85, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1463, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 182875, + Discounts: 1856.25, + Sales: 181018.75, + COGS: 89100, + Profit: 91918.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 215, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 2580, + Discounts: 310.8, + Sales: 2269.2, + COGS: 3885, + Profit: 1615.8, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 4099, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 1229700, + Discounts: 1284, + Sales: 1228416, + COGS: 53500, + Profit: 1174916, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 2660, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 18620, + Discounts: 300.3, + Sales: 18319.7, + COGS: 10725, + Profit: 7594.7, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 566, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 198100, + Discounts: 19964, + Sales: 178136, + COGS: 741520, + Profit: 563384, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 3255, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 39060, + Discounts: 274.08, + Sales: 38785.92, + COGS: 3426, + Profit: 35359.92, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 772, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 15440, + Discounts: 626.4, + Sales: 14813.6, + COGS: 15660, + Profit: 846.4, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1135, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13620, + Discounts: 165.6, + Sales: 13454.4, + COGS: 2070, + Profit: 11384.4, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 3826, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 478250, + Discounts: 4150, + Sales: 474100, + COGS: 199200, + Profit: 274900, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1193, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 17895, + Discounts: 708.9, + Sales: 17186.1, + COGS: 23630, + Profit: 6443.9, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2530, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 759000, + Discounts: 5508, + Sales: 753492, + COGS: 229500, + Profit: 523992, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3451, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1035300, + Discounts: 10368, + Sales: 1024932, + COGS: 432000, + Profit: 592932, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3059, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 36708, + Discounts: 274.08, + Sales: 36433.92, + COGS: 3426, + Profit: 33007.92, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3957, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 494625, + Discounts: 1655, + Sales: 492970, + COGS: 79440, + Profit: 413530, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3444, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 41328, + Discounts: 310.8, + Sales: 41017.2, + COGS: 3885, + Profit: 37132.2, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4388, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 548500, + Discounts: 2022.5, + Sales: 546477.5, + COGS: 97080, + Profit: 449397.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2106, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 263250, + Discounts: 5362.5, + Sales: 257887.5, + COGS: 257400, + Profit: 487.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 799, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 9588, + Discounts: 428.4, + Sales: 9159.6, + COGS: 5355, + Profit: 3804.6, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3154, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 946200, + Discounts: 11496, + Sales: 934704, + COGS: 479000, + Profit: 455704, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4108, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1437800, + Discounts: 19964, + Sales: 1417836, + COGS: 741520, + Profit: 676316, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3760, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 470000, + Discounts: 6822.5, + Sales: 463177.5, + COGS: 327480, + Profit: 135697.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 377, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 5655, + Discounts: 577.5, + Sales: 5077.5, + COGS: 19250, + Profit: 14172.5, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2110, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14770, + Discounts: 281.82, + Sales: 14488.18, + COGS: 10065, + Profit: 4423.18, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2334, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 28008, + Discounts: 253.2, + Sales: 27754.8, + COGS: 3165, + Profit: 24589.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 580, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 6960, + Discounts: 260.16, + Sales: 6699.84, + COGS: 3252, + Profit: 3447.84, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2610, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 52200, + Discounts: 626.4, + Sales: 51573.6, + COGS: 15660, + Profit: 35913.6, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 1598, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 559300, + Discounts: 20762, + Sales: 538538, + COGS: 771160, + Profit: 232622, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 1459, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 510650, + Discounts: 20139, + Sales: 490511, + COGS: 748020, + Profit: 257509, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3284, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 410500, + Discounts: 2022.5, + Sales: 408477.5, + COGS: 97080, + Profit: 311397.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 1197, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 149625, + Discounts: 5362.5, + Sales: 144262.5, + COGS: 257400, + Profit: 113137.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3774, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 45288, + Discounts: 253.2, + Sales: 45034.8, + COGS: 3165, + Profit: 41869.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2303, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 46060, + Discounts: 217.6, + Sales: 45842.4, + COGS: 5440, + Profit: 40402.4, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2572, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 30864, + Discounts: 260.16, + Sales: 30603.84, + COGS: 3252, + Profit: 27351.84, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 320, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 40000, + Discounts: 1655, + Sales: 38345, + COGS: 79440, + Profit: 41095, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2126, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 637800, + Discounts: 1284, + Sales: 636516, + COGS: 53500, + Profit: 583016, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3275, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1146250, + Discounts: 20139, + Sales: 1126111, + COGS: 748020, + Profit: 378091, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3582, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 447750, + Discounts: 6822.5, + Sales: 440927.5, + COGS: 327480, + Profit: 113447.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 783, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 274050, + Discounts: 1862, + Sales: 272188, + COGS: 69160, + Profit: 203028, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1202, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 420700, + Discounts: 13580, + Sales: 407120, + COGS: 504400, + Profit: 97280, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4056, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1216800, + Discounts: 1554, + Sales: 1215246, + COGS: 64750, + Profit: 1150496, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2144, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 643200, + Discounts: 6606, + Sales: 636594, + COGS: 275250, + Profit: 361344, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 3502, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 437750, + Discounts: 5690, + Sales: 432060, + COGS: 273120, + Profit: 158940, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1397, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 488950, + Discounts: 20762, + Sales: 468188, + COGS: 771160, + Profit: 302972, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 679, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 13580, + Discounts: 494.4, + Sales: 13085.6, + COGS: 12360, + Profit: 725.6, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2351, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 47020, + Discounts: 376.4, + Sales: 46643.6, + COGS: 9410, + Profit: 37233.6, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2043, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 612900, + Discounts: 11496, + Sales: 601404, + COGS: 479000, + Profit: 122404, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 3565, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 445625, + Discounts: 15913.13, + Sales: 429711.88, + COGS: 509220, + Profit: 79508.13, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1401, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 28020, + Discounts: 1548, + Sales: 26472, + COGS: 25800, + Profit: 672, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2077, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 623100, + Discounts: 6201, + Sales: 616899, + COGS: 172250, + Profit: 444649, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 3643, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 43716, + Discounts: 700.92, + Sales: 43015.08, + COGS: 5841, + Profit: 37174.08, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1105, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 13260, + Discounts: 326.88, + Sales: 12933.12, + COGS: 2724, + Profit: 10209.12, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2960, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20720, + Discounts: 411.18, + Sales: 20308.82, + COGS: 9790, + Profit: 10518.82, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1201, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 14412, + Discounts: 684.36, + Sales: 13727.64, + COGS: 5703, + Profit: 8024.64, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 2321, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 16247, + Discounts: 114.24, + Sales: 16132.76, + COGS: 2720, + Profit: 13412.76, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3640, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1274000, + Discounts: 18868.5, + Sales: 1255131.5, + COGS: 467220, + Profit: 787911.5, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3972, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 496500, + Discounts: 4826.25, + Sales: 491673.75, + COGS: 154440, + Profit: 337233.75, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3878, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 484750, + Discounts: 6397.5, + Sales: 478352.5, + COGS: 204720, + Profit: 273632.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2278, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 683400, + Discounts: 21910.5, + Sales: 661489.5, + COGS: 608625, + Profit: 52864.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1075, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 134375, + Discounts: 6652.5, + Sales: 127722.5, + COGS: 212880, + Profit: 85157.5, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 4050, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 48600, + Discounts: 684.36, + Sales: 47915.64, + COGS: 5703, + Profit: 42212.64, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3035, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 910500, + Discounts: 6201, + Sales: 904299, + COGS: 172250, + Profit: 732049, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3636, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 454500, + Discounts: 5887.5, + Sales: 448612.5, + COGS: 188400, + Profit: 260212.5, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1379, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 16548, + Discounts: 493.02, + Sales: 16054.98, + COGS: 4108.5, + Profit: 11946.48, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4492, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 561500, + Discounts: 7533.75, + Sales: 553966.25, + COGS: 241080, + Profit: 312886.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 764, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 11460, + Discounts: 875.25, + Sales: 10584.75, + COGS: 19450, + Profit: 8865.25, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1744, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 218000, + Discounts: 4826.25, + Sales: 213173.75, + COGS: 154440, + Profit: 58733.75, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2341, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 292625, + Discounts: 6397.5, + Sales: 286227.5, + COGS: 204720, + Profit: 81507.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3835, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 479375, + Discounts: 7533.75, + Sales: 471841.25, + COGS: 241080, + Profit: 230761.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1161, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 348300, + Discounts: 25596, + Sales: 322704, + COGS: 711000, + Profit: 388296, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 876, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10512, + Discounts: 689.76, + Sales: 9822.24, + COGS: 5748, + Profit: 4074.24, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1705, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 213125, + Discounts: 5887.5, + Sales: 207237.5, + COGS: 188400, + Profit: 18837.5, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1805, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 541500, + Discounts: 16866, + Sales: 524634, + COGS: 468500, + Profit: 56134, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 389, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 136150, + Discounts: 17241, + Sales: 118909, + COGS: 426920, + Profit: 308011, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2745, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 41175, + Discounts: 875.25, + Sales: 40299.75, + COGS: 19450, + Profit: 20849.75, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1459, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 29180, + Discounts: 498.6, + Sales: 28681.4, + COGS: 8310, + Profit: 20371.4, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3938, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 27566, + Discounts: 369.6, + Sales: 27196.4, + COGS: 8800, + Profit: 18396.4, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 4236, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 84720, + Discounts: 2310.3, + Sales: 82409.7, + COGS: 38505, + Profit: 43904.7, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3627, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 43524, + Discounts: 892.44, + Sales: 42631.56, + COGS: 7437, + Profit: 35194.56, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1756, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 26340, + Discounts: 1218.6, + Sales: 25121.4, + COGS: 20310, + Profit: 4811.4, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 307, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 4605, + Discounts: 1218.6, + Sales: 3386.4, + COGS: 20310, + Profit: 16923.6, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 4489, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 67335, + Discounts: 1356.6, + Sales: 65978.4, + COGS: 22610, + Profit: 43368.4, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2167, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 43340, + Discounts: 588.8, + Sales: 42751.2, + COGS: 7360, + Profit: 35391.2, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1137, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 7959, + Discounts: 798.28, + Sales: 7160.72, + COGS: 14255, + Profit: 7094.28, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1222, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 366600, + Discounts: 24252, + Sales: 342348, + COGS: 505250, + Profit: 162902, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 489, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 171150, + Discounts: 3836, + Sales: 167314, + COGS: 71240, + Profit: 96074, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4133, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 61995, + Discounts: 1180.2, + Sales: 60814.8, + COGS: 19670, + Profit: 41144.8, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2743, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 822900, + Discounts: 22308, + Sales: 800592, + COGS: 464750, + Profit: 335842, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 3699, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 25893, + Discounts: 798.28, + Sales: 25094.72, + COGS: 14255, + Profit: 10839.72, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 4460, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1338000, + Discounts: 24252, + Sales: 1313748, + COGS: 505250, + Profit: 808498, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1232, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 154000, + Discounts: 5690, + Sales: 148310, + COGS: 136560, + Profit: 11750, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2586, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 18102, + Discounts: 1190.28, + Sales: 16911.72, + COGS: 21255, + Profit: 4343.28, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1332, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 166500, + Discounts: 3975, + Sales: 162525, + COGS: 95400, + Profit: 67125, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4487, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1346100, + Discounts: 16974, + Sales: 1329126, + COGS: 353625, + Profit: 975501, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3862, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1158600, + Discounts: 35016, + Sales: 1123584, + COGS: 729500, + Profit: 394084, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1765, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 617750, + Discounts: 48300, + Sales: 569450, + COGS: 897000, + Profit: 327550, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3533, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 441625, + Discounts: 14940, + Sales: 426685, + COGS: 358560, + Profit: 68125, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2016, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 30240, + Discounts: 130.8, + Sales: 30109.2, + COGS: 2180, + Profit: 27929.2, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2938, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 58760, + Discounts: 1659.2, + Sales: 57100.8, + COGS: 20740, + Profit: 36360.8, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3352, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67040, + Discounts: 844.8, + Sales: 66195.2, + COGS: 10560, + Profit: 55635.2, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4409, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 66135, + Discounts: 402.6, + Sales: 65732.4, + COGS: 6710, + Profit: 59022.4, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3323, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 49845, + Discounts: 908.4, + Sales: 48936.6, + COGS: 15140, + Profit: 33796.6, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2430, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 850500, + Discounts: 3836, + Sales: 846664, + COGS: 71240, + Profit: 775424, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 535, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 66875, + Discounts: 5690, + Sales: 61185, + COGS: 136560, + Profit: 75375, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1523, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 18276, + Discounts: 703.2, + Sales: 17572.8, + COGS: 4395, + Profit: 13177.8, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3631, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 72620, + Discounts: 2116.8, + Sales: 70503.2, + COGS: 26460, + Profit: 44043.2, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1782, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 623700, + Discounts: 30478, + Sales: 593222, + COGS: 566020, + Profit: 27202, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 347, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 4164, + Discounts: 415.68, + Sales: 3748.32, + COGS: 2598, + Profit: 1150.32, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 4147, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1451450, + Discounts: 4886, + Sales: 1446564, + COGS: 90740, + Profit: 1355824, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3509, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1228150, + Discounts: 30478, + Sales: 1197672, + COGS: 566020, + Profit: 631652, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 2774, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 41610, + Discounts: 908.4, + Sales: 40701.6, + COGS: 15140, + Profit: 25561.6, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2943, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1030050, + Discounts: 26110, + Sales: 1003940, + COGS: 484900, + Profit: 519040, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 4037, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 504625, + Discounts: 5370, + Sales: 499255, + COGS: 128880, + Profit: 370375, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4146, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1451100, + Discounts: 26698, + Sales: 1424402, + COGS: 495820, + Profit: 928582, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 4123, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 61845, + Discounts: 402.6, + Sales: 61442.4, + COGS: 6710, + Profit: 54732.4, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1337, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 467950, + Discounts: 24892, + Sales: 443058, + COGS: 462280, + Profit: 19222, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 599, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 4193, + Discounts: 405.65, + Sales: 3787.35, + COGS: 5795, + Profit: 2007.65, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 725, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 5075, + Discounts: 480.2, + Sales: 4594.8, + COGS: 6860, + Profit: 2265.2, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 477, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 3339, + Discounts: 822.15, + Sales: 2516.85, + COGS: 11745, + Profit: 9228.15, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2325, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 16275, + Discounts: 941.15, + Sales: 15333.85, + COGS: 13445, + Profit: 1888.85, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 675, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 8100, + Discounts: 1458.6, + Sales: 6641.4, + COGS: 7293, + Profit: 651.6, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2990, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 35880, + Discounts: 1458.6, + Sales: 34421.4, + COGS: 7293, + Profit: 27128.4, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1072, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 7504, + Discounts: 941.15, + Sales: 6562.85, + COGS: 13445, + Profit: 6882.15, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1048, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 7336, + Discounts: 589.05, + Sales: 6746.95, + COGS: 8415, + Profit: 1668.05, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 469, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 5628, + Discounts: 673.8, + Sales: 4954.2, + COGS: 3369, + Profit: 1585.2, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 804, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 5628, + Discounts: 405.65, + Sales: 5222.35, + COGS: 5795, + Profit: 572.65, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 4240, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50880, + Discounts: 1119, + Sales: 49761, + COGS: 5595, + Profit: 44166, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1976, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 23712, + Discounts: 669.6, + Sales: 23042.4, + COGS: 3348, + Profit: 19694.4, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1984, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39680, + Discounts: 1563, + Sales: 38117, + COGS: 15630, + Profit: 22487, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 480, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 144000, + Discounts: 14865, + Sales: 129135, + COGS: 247750, + Profit: 118615, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 3551, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 24857, + Discounts: 355.6, + Sales: 24501.4, + COGS: 5080, + Profit: 19421.4, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1205, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 18075, + Discounts: 2093.25, + Sales: 15981.75, + COGS: 27910, + Profit: 11928.25, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2480, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 17360, + Discounts: 199.5, + Sales: 17160.5, + COGS: 2850, + Profit: 14310.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 2926, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 20482, + Discounts: 870.45, + Sales: 19611.55, + COGS: 12435, + Profit: 7176.55, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3210, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1123500, + Discounts: 24228.75, + Sales: 1099271.25, + COGS: 359970, + Profit: 739301.25, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 3221, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 402625, + Discounts: 22668.75, + Sales: 379956.25, + COGS: 435240, + Profit: 55283.75, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2389, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 836150, + Discounts: 12600, + Sales: 823550, + COGS: 187200, + Profit: 636350, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 1127, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13524, + Discounts: 1405.2, + Sales: 12118.8, + COGS: 7026, + Profit: 5092.8, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 319, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 95700, + Discounts: 16500, + Sales: 79200, + COGS: 275000, + Profit: 195800, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1610, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 32200, + Discounts: 1303, + Sales: 30897, + COGS: 13030, + Profit: 17867, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4100, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 512500, + Discounts: 18700, + Sales: 493800, + COGS: 359040, + Profit: 134760, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1012, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 126500, + Discounts: 14906.25, + Sales: 111593.75, + COGS: 286200, + Profit: 174606.25, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3337, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1001100, + Discounts: 24105, + Sales: 976995, + COGS: 401750, + Profit: 575245, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3955, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 27685, + Discounts: 814.45, + Sales: 26870.55, + COGS: 11635, + Profit: 15235.55, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4347, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1304100, + Discounts: 14865, + Sales: 1289235, + COGS: 247750, + Profit: 1041485, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1548, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 541800, + Discounts: 10535, + Sales: 531265, + COGS: 156520, + Profit: 374745, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2153, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 32295, + Discounts: 1965, + Sales: 30330, + COGS: 26200, + Profit: 4130, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3789, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1326150, + Discounts: 21490, + Sales: 1304660, + COGS: 319280, + Profit: 985380, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4364, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 87280, + Discounts: 1389, + Sales: 85891, + COGS: 13890, + Profit: 72001, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4126, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 515750, + Discounts: 5381.25, + Sales: 510368.75, + COGS: 103320, + Profit: 407048.75, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1343, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 167875, + Discounts: 4400, + Sales: 163475, + COGS: 84480, + Profit: 78995, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 245, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 4900, + Discounts: 1802, + Sales: 3098, + COGS: 18020, + Profit: 14922, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3376, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67520, + Discounts: 2663, + Sales: 64857, + COGS: 26630, + Profit: 38227, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1401, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 9807, + Discounts: 747.6, + Sales: 9059.4, + COGS: 10680, + Profit: 1620.6, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3483, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 52245, + Discounts: 1587, + Sales: 50658, + COGS: 21160, + Profit: 29498, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2244, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 33660, + Discounts: 416.25, + Sales: 33243.75, + COGS: 5550, + Profit: 27693.75, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 1360, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 20400, + Discounts: 2145.75, + Sales: 18254.25, + COGS: 28610, + Profit: 10355.75, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 279, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 34875, + Discounts: 5043.75, + Sales: 29831.25, + COGS: 96840, + Profit: 67008.75, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2521, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 882350, + Discounts: 10535, + Sales: 871815, + COGS: 156520, + Profit: 715295, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2433, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 48660, + Discounts: 2832, + Sales: 45828, + COGS: 28320, + Profit: 17508, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1738, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 34760, + Discounts: 1579, + Sales: 33181, + COGS: 15790, + Profit: 17391, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1106, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 138250, + Discounts: 5381.25, + Sales: 132868.75, + COGS: 103320, + Profit: 29548.75, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3379, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 422375, + Discounts: 4400, + Sales: 417975, + COGS: 84480, + Profit: 333495, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1221, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 24420, + Discounts: 1033, + Sales: 23387, + COGS: 10330, + Profit: 13057, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 213, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 63900, + Discounts: 18750, + Sales: 45150, + COGS: 312500, + Profit: 267350, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3335, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 66700, + Discounts: 1389, + Sales: 65311, + COGS: 13890, + Profit: 51421, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1260, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 25200, + Discounts: 1265, + Sales: 23935, + COGS: 12650, + Profit: 11285, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3034, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 60680, + Discounts: 2297, + Sales: 58383, + COGS: 22970, + Profit: 35413, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2929, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 58580, + Discounts: 2663, + Sales: 55917, + COGS: 26630, + Profit: 29287, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2389, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 16723, + Discounts: 199.5, + Sales: 16523.5, + COGS: 2850, + Profit: 13673.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3086, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 21602, + Discounts: 870.45, + Sales: 20731.55, + COGS: 12435, + Profit: 8296.55, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 745, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 260750, + Discounts: 23625, + Sales: 237125, + COGS: 351000, + Profit: 113875, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1266, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 443100, + Discounts: 9660, + Sales: 433440, + COGS: 143520, + Profit: 289920, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 3790, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1326500, + Discounts: 21490, + Sales: 1305010, + COGS: 319280, + Profit: 985730, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4287, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1286100, + Discounts: 18750, + Sales: 1267350, + COGS: 312500, + Profit: 954850, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3193, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 47895, + Discounts: 3420.9, + Sales: 44474.1, + COGS: 38010, + Profit: 6464.1, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1967, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39340, + Discounts: 1341, + Sales: 37999, + COGS: 11175, + Profit: 26824, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 631, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 9465, + Discounts: 2559.6, + Sales: 6905.4, + COGS: 28440, + Profit: 21534.6, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3469, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 41628, + Discounts: 404.64, + Sales: 41223.36, + COGS: 1686, + Profit: 39537.36, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 570, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 6840, + Discounts: 1655.28, + Sales: 5184.72, + COGS: 6897, + Profit: 1712.28, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 3215, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 48225, + Discounts: 1827, + Sales: 46398, + COGS: 20300, + Profit: 26098, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 3754, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 26278, + Discounts: 110.46, + Sales: 26167.54, + COGS: 1315, + Profit: 24852.54, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2187, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 273375, + Discounts: 6652.5, + Sales: 266722.5, + COGS: 106440, + Profit: 160282.5, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1959, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 685650, + Discounts: 20580, + Sales: 665070, + COGS: 254800, + Profit: 410270, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2181, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 763350, + Discounts: 30660, + Sales: 732690, + COGS: 379600, + Profit: 353090, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3559, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 24913, + Discounts: 589.26, + Sales: 24323.74, + COGS: 7015, + Profit: 17308.74, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2205, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 26460, + Discounts: 1960.56, + Sales: 24499.44, + COGS: 8169, + Profit: 16330.44, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1890, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 661500, + Discounts: 31416, + Sales: 630084, + COGS: 388960, + Profit: 241124, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1296, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 15552, + Discounts: 1655.28, + Sales: 13896.72, + COGS: 6897, + Profit: 6999.72, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 775, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 271250, + Discounts: 15267, + Sales: 255983, + COGS: 189020, + Profit: 66963, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2417, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 302125, + Discounts: 7140, + Sales: 294985, + COGS: 114240, + Profit: 180745, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1158, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 144750, + Discounts: 20662.5, + Sales: 124087.5, + COGS: 330600, + Profit: 206512.5, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 803, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 12045, + Discounts: 1377, + Sales: 10668, + COGS: 15300, + Profit: 4632, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3705, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1296750, + Discounts: 31416, + Sales: 1265334, + COGS: 388960, + Profit: 876374, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 589, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 4123, + Discounts: 629.16, + Sales: 3493.84, + COGS: 7490, + Profit: 3996.16, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3797, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1139100, + Discounts: 21978, + Sales: 1117122, + COGS: 305250, + Profit: 811872, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1321, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 462350, + Discounts: 43596, + Sales: 418754, + COGS: 539760, + Profit: 121006, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3999, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 59985, + Discounts: 2559.6, + Sales: 57425.4, + COGS: 28440, + Profit: 28985.4, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 4256, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 29792, + Discounts: 629.16, + Sales: 29162.84, + COGS: 7490, + Profit: 21672.84, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1643, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 492900, + Discounts: 21978, + Sales: 470922, + COGS: 305250, + Profit: 165672, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1912, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 38240, + Discounts: 1347.6, + Sales: 36892.4, + COGS: 11230, + Profit: 25662.4, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1610, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 483000, + Discounts: 43848, + Sales: 439152, + COGS: 609000, + Profit: 169848, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2160, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 270000, + Discounts: 14906.25, + Sales: 255093.75, + COGS: 238500, + Profit: 16593.75, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 466, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 163100, + Discounts: 35259, + Sales: 127841, + COGS: 436540, + Profit: 308699, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 328, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 114800, + Discounts: 15267, + Sales: 99533, + COGS: 189020, + Profit: 89487, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 4099, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 28693, + Discounts: 589.26, + Sales: 28103.74, + COGS: 7015, + Profit: 21088.74, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 990, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 346500, + Discounts: 43596, + Sales: 302904, + COGS: 539760, + Profit: 236856, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1433, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 28660, + Discounts: 2108.4, + Sales: 26551.6, + COGS: 17570, + Profit: 8981.6, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1478, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 22170, + Discounts: 1978.2, + Sales: 20191.8, + COGS: 21980, + Profit: 1788.2, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3798, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 56970, + Discounts: 1568.7, + Sales: 55401.3, + COGS: 17430, + Profit: 37971.3, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 447, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 6705, + Discounts: 1037.7, + Sales: 5667.3, + COGS: 11530, + Profit: 5862.7, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1711, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34220, + Discounts: 2108.4, + Sales: 32111.6, + COGS: 17570, + Profit: 14541.6, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 745, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 14900, + Discounts: 1201.2, + Sales: 13698.8, + COGS: 10010, + Profit: 3688.8, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 1732, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 12124, + Discounts: 559.86, + Sales: 11564.14, + COGS: 6665, + Profit: 4899.14, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1759, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 26385, + Discounts: 1037.7, + Sales: 25347.3, + COGS: 11530, + Profit: 13817.3, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 338, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 4056, + Discounts: 610.68, + Sales: 3445.32, + COGS: 2181, + Profit: 1264.32, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 3911, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 46932, + Discounts: 1582.56, + Sales: 45349.44, + COGS: 5652, + Profit: 39697.44, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3691, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 73820, + Discounts: 2567.6, + Sales: 71252.4, + COGS: 18340, + Profit: 52912.4, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 4473, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 53676, + Discounts: 1965.6, + Sales: 51710.4, + COGS: 7020, + Profit: 44690.4, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 383, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 4596, + Discounts: 1967.28, + Sales: 2628.72, + COGS: 7026, + Profit: 4397.28, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3105, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 21735, + Discounts: 505.19, + Sales: 21229.81, + COGS: 5155, + Profit: 16074.81, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1062, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 15930, + Discounts: 1325.1, + Sales: 14604.9, + COGS: 12620, + Profit: 1984.9, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 4083, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 28581, + Discounts: 556.15, + Sales: 28024.85, + COGS: 5675, + Profit: 22349.85, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3974, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 27818, + Discounts: 268.03, + Sales: 27549.97, + COGS: 2735, + Profit: 24814.97, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3723, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 26061, + Discounts: 775.18, + Sales: 25285.82, + COGS: 7910, + Profit: 17375.82, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2435, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 29220, + Discounts: 1460.34, + Sales: 27759.66, + COGS: 5215.5, + Profit: 22544.16, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1678, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 20136, + Discounts: 1860.6, + Sales: 18275.4, + COGS: 6645, + Profit: 11630.4, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1763, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 12341, + Discounts: 775.18, + Sales: 11565.82, + COGS: 7910, + Profit: 3655.82, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 4473, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 31311, + Discounts: 556.15, + Sales: 30754.85, + COGS: 5675, + Profit: 25079.85, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1246, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 436100, + Discounts: 43144.5, + Sales: 392955.5, + COGS: 457860, + Profit: 64904.5, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1615, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 484500, + Discounts: 9408, + Sales: 475092, + COGS: 112000, + Profit: 363092, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 749, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 224700, + Discounts: 45801, + Sales: 178899, + COGS: 545250, + Profit: 366351, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1318, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 26360, + Discounts: 2766.4, + Sales: 23593.6, + COGS: 19760, + Profit: 3833.6, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 2882, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 864600, + Discounts: 45801, + Sales: 818799, + COGS: 545250, + Profit: 273549, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3039, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 379875, + Discounts: 21875, + Sales: 358000, + COGS: 300000, + Profit: 58000, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2484, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 745200, + Discounts: 35742, + Sales: 709458, + COGS: 425500, + Profit: 283958, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3169, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 950700, + Discounts: 9408, + Sales: 941292, + COGS: 112000, + Profit: 829292, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4080, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 510000, + Discounts: 30738.75, + Sales: 479261.25, + COGS: 421560, + Profit: 57701.25, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3943, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 59145, + Discounts: 2206.05, + Sales: 56938.95, + COGS: 21010, + Profit: 35928.95, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 784, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 11760, + Discounts: 3077.55, + Sales: 8682.45, + COGS: 29310, + Profit: 20627.55, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 253, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 5060, + Discounts: 2149, + Sales: 2911, + COGS: 15350, + Profit: 12439, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1316, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 394800, + Discounts: 23583, + Sales: 371217, + COGS: 280750, + Profit: 90467, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 808, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 242400, + Discounts: 29484, + Sales: 212916, + COGS: 351000, + Profit: 138084, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3295, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 39540, + Discounts: 2320.92, + Sales: 37219.08, + COGS: 8289, + Profit: 28930.08, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 520, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 3640, + Discounts: 1041.25, + Sales: 2598.75, + COGS: 10625, + Profit: 8026.25, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 799, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 239700, + Discounts: 34839, + Sales: 204861, + COGS: 414750, + Profit: 209889, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3942, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 78840, + Discounts: 852.6, + Sales: 77987.4, + COGS: 6090, + Profit: 71897.4, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2498, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 312250, + Discounts: 18261.25, + Sales: 293988.75, + COGS: 250440, + Profit: 43548.75, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 2517, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 50340, + Discounts: 2766.4, + Sales: 47573.6, + COGS: 19760, + Profit: 27813.6, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3182, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 63640, + Discounts: 1989.4, + Sales: 61650.6, + COGS: 14210, + Profit: 47440.6, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1145, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 343500, + Discounts: 28812, + Sales: 314688, + COGS: 343000, + Profit: 28312, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 895, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 17900, + Discounts: 823.2, + Sales: 17076.8, + COGS: 5880, + Profit: 11196.8, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3814, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 45768, + Discounts: 2725.38, + Sales: 43042.62, + COGS: 9733.5, + Profit: 33309.12, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1188, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 356400, + Discounts: 20139, + Sales: 336261, + COGS: 239750, + Profit: 96511, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 2233, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 669900, + Discounts: 57687, + Sales: 612213, + COGS: 686750, + Profit: 74537, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 421, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 52625, + Discounts: 14393.75, + Sales: 38231.25, + COGS: 197400, + Profit: 159168.75, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 269, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 94150, + Discounts: 70462, + Sales: 23688, + COGS: 747760, + Profit: 724072, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 3766, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 470750, + Discounts: 8697.5, + Sales: 462052.5, + COGS: 119280, + Profit: 342772.5, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 952, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19040, + Discounts: 1565.2, + Sales: 17474.8, + COGS: 11180, + Profit: 6294.8, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2964, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 889200, + Discounts: 28812, + Sales: 860388, + COGS: 343000, + Profit: 517388, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1505, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 10535, + Discounts: 273.28, + Sales: 10261.72, + COGS: 2440, + Profit: 7821.72, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1678, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 33560, + Discounts: 2051.2, + Sales: 31508.8, + COGS: 12820, + Profit: 18688.8, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4249, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 29743, + Discounts: 143.92, + Sales: 29599.08, + COGS: 1285, + Profit: 28314.08, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1677, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 33540, + Discounts: 2051.2, + Sales: 31488.8, + COGS: 12820, + Profit: 18668.8, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3051, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 381375, + Discounts: 15400, + Sales: 365975, + COGS: 184800, + Profit: 181175, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 3372, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 50580, + Discounts: 588, + Sales: 49992, + COGS: 4900, + Profit: 45092, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1686, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 590100, + Discounts: 38136, + Sales: 551964, + COGS: 354120, + Profit: 197844, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3086, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 46290, + Discounts: 3001.2, + Sales: 43288.8, + COGS: 25010, + Profit: 18278.8, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4150, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 83000, + Discounts: 1132.8, + Sales: 81867.2, + COGS: 7080, + Profit: 74787.2, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3027, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 60540, + Discounts: 1032, + Sales: 59508, + COGS: 6450, + Profit: 53058, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 4359, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1307700, + Discounts: 37488, + Sales: 1270212, + COGS: 390500, + Profit: 879712, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 3628, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1088400, + Discounts: 30792, + Sales: 1057608, + COGS: 320750, + Profit: 736858, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 1589, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 23835, + Discounts: 853.2, + Sales: 22981.8, + COGS: 7110, + Profit: 15871.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2679, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 334875, + Discounts: 11140, + Sales: 323735, + COGS: 133680, + Profit: 190055, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3401, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 23807, + Discounts: 705.04, + Sales: 23101.96, + COGS: 6295, + Profit: 16806.96, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2815, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19705, + Discounts: 613.2, + Sales: 19091.8, + COGS: 5475, + Profit: 13616.8, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2964, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 59280, + Discounts: 2185.6, + Sales: 57094.4, + COGS: 13660, + Profit: 43434.4, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 4173, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1251900, + Discounts: 59040, + Sales: 1192860, + COGS: 615000, + Profit: 577860, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1157, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 8099, + Discounts: 379.68, + Sales: 7719.32, + COGS: 3390, + Profit: 4329.32, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3065, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 21455, + Discounts: 894.88, + Sales: 20560.12, + COGS: 7990, + Profit: 12570.12, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1962, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 13734, + Discounts: 1349.04, + Sales: 12384.96, + COGS: 12045, + Profit: 339.96, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4080, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 81600, + Discounts: 3094.4, + Sales: 78505.6, + COGS: 19340, + Profit: 59165.6, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1713, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34260, + Discounts: 4788.8, + Sales: 29471.2, + COGS: 29930, + Profit: 458.8, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2795, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 978250, + Discounts: 60088, + Sales: 918162, + COGS: 557960, + Profit: 360202, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 4082, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 28574, + Discounts: 1089.76, + Sales: 27484.24, + COGS: 9730, + Profit: 17754.24, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1691, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 591850, + Discounts: 38136, + Sales: 553714, + COGS: 354120, + Profit: 199594, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2305, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 27660, + Discounts: 574.08, + Sales: 27085.92, + COGS: 1794, + Profit: 25291.92, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3401, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 23807, + Discounts: 1627.92, + Sales: 22179.08, + COGS: 14535, + Profit: 7644.08, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2288, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 16016, + Discounts: 1309.28, + Sales: 14706.72, + COGS: 11690, + Profit: 3016.72, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 2399, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 719700, + Discounts: 9264, + Sales: 710436, + COGS: 96500, + Profit: 613936, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 4086, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1225800, + Discounts: 15240, + Sales: 1210560, + COGS: 158750, + Profit: 1051810, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2651, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 927850, + Discounts: 16086, + Sales: 911764, + COGS: 149370, + Profit: 762394, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3971, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27797, + Discounts: 1309.28, + Sales: 26487.72, + COGS: 11690, + Profit: 14797.72, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2512, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 879200, + Discounts: 10668, + Sales: 868532, + COGS: 99060, + Profit: 769472, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2745, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 960750, + Discounts: 11816, + Sales: 948934, + COGS: 109720, + Profit: 839214, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1903, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 570900, + Discounts: 51216, + Sales: 519684, + COGS: 533500, + Profit: 13816, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 647, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 194100, + Discounts: 19392, + Sales: 174708, + COGS: 202000, + Profit: 27292, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2914, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 58280, + Discounts: 1132.8, + Sales: 57147.2, + COGS: 7080, + Profit: 50067.2, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1889, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 13223, + Discounts: 1627.92, + Sales: 11595.08, + COGS: 14535, + Profit: 2939.92, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1466, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 29320, + Discounts: 2185.6, + Sales: 27134.4, + COGS: 13660, + Profit: 13474.4, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 887, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 266100, + Discounts: 59040, + Sales: 207060, + COGS: 615000, + Profit: 407940, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 395, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 7900, + Discounts: 2432, + Sales: 5468, + COGS: 15200, + Profit: 9732, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1693, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 25395, + Discounts: 853.2, + Sales: 24541.8, + COGS: 7110, + Profit: 17431.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2459, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 29508, + Discounts: 1320, + Sales: 28188, + COGS: 4125, + Profit: 24063, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2649, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 794700, + Discounts: 15240, + Sales: 779460, + COGS: 158750, + Profit: 620710, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 3608, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 72160, + Discounts: 698.4, + Sales: 71461.6, + COGS: 4365, + Profit: 67096.6, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1073, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 321900, + Discounts: 29538, + Sales: 292362, + COGS: 273500, + Profit: 18862, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1754, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 21048, + Discounts: 396.36, + Sales: 20651.64, + COGS: 1101, + Profit: 19550.64, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 2167, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 650100, + Discounts: 102667.5, + Sales: 547432.5, + COGS: 950625, + Profit: 403192.5, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1319, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 461650, + Discounts: 52479, + Sales: 409171, + COGS: 433160, + Profit: 23989, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1679, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 503700, + Discounts: 8694, + Sales: 495006, + COGS: 80500, + Profit: 414506, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1252, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 15024, + Discounts: 2506.68, + Sales: 12517.32, + COGS: 6963, + Profit: 5554.32, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3493, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 436625, + Discounts: 20891.25, + Sales: 415733.75, + COGS: 222840, + Profit: 192893.75, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1697, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 11879, + Discounts: 1014.93, + Sales: 10864.07, + COGS: 8055, + Profit: 2809.07, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1156, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 144500, + Discounts: 31466.25, + Sales: 113033.75, + COGS: 335640, + Profit: 222606.25, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 726, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 217800, + Discounts: 9018, + Sales: 208782, + COGS: 83500, + Profit: 125282, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1153, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 345900, + Discounts: 69255, + Sales: 276645, + COGS: 641250, + Profit: 364605, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2720, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 952000, + Discounts: 76135.5, + Sales: 875864.5, + COGS: 628420, + Profit: 247444.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3658, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 54870, + Discounts: 4961.25, + Sales: 49908.75, + COGS: 36750, + Profit: 13158.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2950, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 885000, + Discounts: 29538, + Sales: 855462, + COGS: 273500, + Profit: 581962, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1821, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27315, + Discounts: 1656.45, + Sales: 25658.55, + COGS: 12270, + Profit: 13388.55, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 4174, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 50088, + Discounts: 396.36, + Sales: 49691.64, + COGS: 1101, + Profit: 48590.64, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1127, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 338100, + Discounts: 35748, + Sales: 302352, + COGS: 331000, + Profit: 28648, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2209, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 26508, + Discounts: 1917, + Sales: 24591, + COGS: 5325, + Profit: 19266, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 862, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 107750, + Discounts: 31466.25, + Sales: 76283.75, + COGS: 335640, + Profit: 259356.25, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3805, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 57075, + Discounts: 330.75, + Sales: 56744.25, + COGS: 2450, + Profit: 54294.25, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1415, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 424500, + Discounts: 102424.5, + Sales: 322075.5, + COGS: 948375, + Profit: 626299.5, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2231, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 780850, + Discounts: 41170.5, + Sales: 739679.5, + COGS: 339820, + Profit: 399859.5, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3649, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 456125, + Discounts: 6378.75, + Sales: 449746.25, + COGS: 68040, + Profit: 381706.25, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2948, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 368500, + Discounts: 23737.5, + Sales: 344762.5, + COGS: 253200, + Profit: 91562.5, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3395, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1188250, + Discounts: 39973.5, + Sales: 1148276.5, + COGS: 329940, + Profit: 818336.5, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2650, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 31800, + Discounts: 2112.48, + Sales: 29687.52, + COGS: 5868, + Profit: 23819.52, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 585, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 175500, + Discounts: 71793, + Sales: 103707, + COGS: 664750, + Profit: 561043, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1316, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 460600, + Discounts: 42572.25, + Sales: 418027.75, + COGS: 351390, + Profit: 66637.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 4459, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 53508, + Discounts: 950.4, + Sales: 52557.6, + COGS: 2640, + Profit: 49917.6, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2711, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 813300, + Discounts: 50409, + Sales: 762891, + COGS: 466750, + Profit: 296141, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2621, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 31452, + Discounts: 2412.72, + Sales: 29039.28, + COGS: 6702, + Profit: 22337.28, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3613, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 54195, + Discounts: 1656.45, + Sales: 52538.55, + COGS: 12270, + Profit: 40268.55, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1847, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 230875, + Discounts: 9866.25, + Sales: 221008.75, + COGS: 105240, + Profit: 115768.75, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2996, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1048600, + Discounts: 65236.5, + Sales: 983363.5, + COGS: 538460, + Profit: 444903.5, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2838, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 993300, + Discounts: 39973.5, + Sales: 953326.5, + COGS: 329940, + Profit: 623386.5, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1302, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 19530, + Discounts: 1309.5, + Sales: 18220.5, + COGS: 9700, + Profit: 8520.5, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1536, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 30720, + Discounts: 3049.2, + Sales: 27670.8, + COGS: 16940, + Profit: 10730.8, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1291, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 25820, + Discounts: 1193.4, + Sales: 24626.6, + COGS: 6630, + Profit: 17996.6, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1213, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 8491, + Discounts: 515.97, + Sales: 7975.03, + COGS: 4095, + Profit: 3880.03, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2370, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 28440, + Discounts: 1706.4, + Sales: 26733.6, + COGS: 4740, + Profit: 21993.6, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1979, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 13853, + Discounts: 328.23, + Sales: 13524.77, + COGS: 2605, + Profit: 10919.77, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2879, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 57580, + Discounts: 1751.4, + Sales: 55828.6, + COGS: 9730, + Profit: 46098.6, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1707, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34140, + Discounts: 1868.4, + Sales: 32271.6, + COGS: 10380, + Profit: 21891.6, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2933, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 20531, + Discounts: 226.8, + Sales: 20304.2, + COGS: 1800, + Profit: 18504.2, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1014, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 12168, + Discounts: 2124.36, + Sales: 10043.64, + COGS: 5901, + Profit: 4142.64, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 693, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 10395, + Discounts: 3547.8, + Sales: 6847.2, + COGS: 26280, + Profit: 19432.8, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3741, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26187, + Discounts: 226.8, + Sales: 25960.2, + COGS: 1800, + Profit: 24160.2, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3116, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 62320, + Discounts: 4827.6, + Sales: 57492.4, + COGS: 26820, + Profit: 30672.4, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 3995, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27965, + Discounts: 328.23, + Sales: 27636.77, + COGS: 2605, + Profit: 25031.77, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 953, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19060, + Discounts: 1868.4, + Sales: 17191.6, + COGS: 10380, + Profit: 6811.6, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2530, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 37950, + Discounts: 2201.18, + Sales: 35748.82, + COGS: 16305, + Profit: 19443.82, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2565, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 30780, + Discounts: 330.48, + Sales: 30449.52, + COGS: 918, + Profit: 29531.52, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 4297, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 51564, + Discounts: 463.2, + Sales: 51100.8, + COGS: 1158, + Profit: 49942.8, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2871, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20097, + Discounts: 1629.6, + Sales: 18467.4, + COGS: 11640, + Profit: 6827.4, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3537, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 42444, + Discounts: 463.2, + Sales: 41980.8, + COGS: 1158, + Profit: 40822.8, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1598, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 199750, + Discounts: 43068.75, + Sales: 156681.25, + COGS: 413460, + Profit: 256778.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 2616, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 327000, + Discounts: 18525, + Sales: 308475, + COGS: 177840, + Profit: 130635, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2836, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 992600, + Discounts: 80955, + Sales: 911645, + COGS: 601380, + Profit: 310265, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 4023, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 502875, + Discounts: 22550, + Sales: 480325, + COGS: 216480, + Profit: 263845, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3994, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 59910, + Discounts: 3108, + Sales: 56802, + COGS: 20720, + Profit: 36082, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2928, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 58560, + Discounts: 3908, + Sales: 54652, + COGS: 19540, + Profit: 35112, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2912, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 873600, + Discounts: 17730, + Sales: 855870, + COGS: 147750, + Profit: 708120, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3671, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 55065, + Discounts: 3250.5, + Sales: 51814.5, + COGS: 21670, + Profit: 30144.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2778, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 55560, + Discounts: 482, + Sales: 55078, + COGS: 2410, + Profit: 52668, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 405, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 6075, + Discounts: 1021.5, + Sales: 5053.5, + COGS: 6810, + Profit: 1756.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2013, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 30195, + Discounts: 765, + Sales: 29430, + COGS: 5100, + Profit: 24330, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2634, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 39510, + Discounts: 1185, + Sales: 38325, + COGS: 7900, + Profit: 30425, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 4166, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1458100, + Discounts: 22365, + Sales: 1435735, + COGS: 166140, + Profit: 1269595, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 355, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 44375, + Discounts: 19950, + Sales: 24425, + COGS: 191520, + Profit: 167095, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2382, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 714600, + Discounts: 68820, + Sales: 645780, + COGS: 573500, + Profit: 72280, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 4170, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 83400, + Discounts: 482, + Sales: 82918, + COGS: 2410, + Profit: 80508, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 892, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 6244, + Discounts: 1865.5, + Sales: 4378.5, + COGS: 13325, + Profit: 8946.5, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2200, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 275000, + Discounts: 23950, + Sales: 251050, + COGS: 229920, + Profit: 21130, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3389, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1016700, + Discounts: 25590, + Sales: 991110, + COGS: 213250, + Profit: 777860, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 2990, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 373750, + Discounts: 4262.5, + Sales: 369487.5, + COGS: 40920, + Profit: 328567.5, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 4013, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 60195, + Discounts: 961.5, + Sales: 59233.5, + COGS: 6410, + Profit: 52823.5, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 739, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 258650, + Discounts: 98245, + Sales: 160405, + COGS: 729820, + Profit: 569415, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1989, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 596700, + Discounts: 12960, + Sales: 583740, + COGS: 108000, + Profit: 475740, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2991, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 897300, + Discounts: 68820, + Sales: 828480, + COGS: 573500, + Profit: 254980, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 4237, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 63555, + Discounts: 3250.5, + Sales: 60304.5, + COGS: 21670, + Profit: 38634.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1442, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 180250, + Discounts: 31612.5, + Sales: 148637.5, + COGS: 303480, + Profit: 154842.5, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2712, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 949200, + Discounts: 65450, + Sales: 883750, + COGS: 486200, + Profit: 397550, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1508, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 188500, + Discounts: 7237.5, + Sales: 181262.5, + COGS: 69480, + Profit: 111782.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 4245, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1485750, + Discounts: 78400, + Sales: 1407350, + COGS: 582400, + Profit: 824950, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2630, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 789000, + Discounts: 89790, + Sales: 699210, + COGS: 748250, + Profit: 49040, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1182, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 14184, + Discounts: 4224.6, + Sales: 9959.4, + COGS: 10561.5, + Profit: 602.1, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1221, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 24420, + Discounts: 4078, + Sales: 20342, + COGS: 20390, + Profit: 48, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 963, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 11556, + Discounts: 3088.8, + Sales: 8467.2, + COGS: 7722, + Profit: 745.2, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 3243, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1135050, + Discounts: 24745, + Sales: 1110305, + COGS: 183820, + Profit: 926485, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1120, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 16800, + Discounts: 3108, + Sales: 13692, + COGS: 20720, + Profit: 7028, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1174, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 352200, + Discounts: 25590, + Sales: 326610, + COGS: 213250, + Profit: 113360, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 2541, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 30492, + Discounts: 1581.36, + Sales: 28910.64, + COGS: 3594, + Profit: 25316.64, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3246, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 22722, + Discounts: 1949.64, + Sales: 20772.36, + COGS: 12660, + Profit: 8112.36, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1531, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 18372, + Discounts: 1581.36, + Sales: 16790.64, + COGS: 3594, + Profit: 13196.64, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2526, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 37890, + Discounts: 633.6, + Sales: 37256.4, + COGS: 3840, + Profit: 33416.4, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 1136, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 13632, + Discounts: 623.04, + Sales: 13008.96, + COGS: 1416, + Profit: 11592.96, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1983, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 13881, + Discounts: 1215.83, + Sales: 12665.17, + COGS: 7895, + Profit: 4770.17, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 3259, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 39108, + Discounts: 1326.6, + Sales: 37781.4, + COGS: 3015, + Profit: 34766.4, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 3267, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 49005, + Discounts: 5279.17, + Sales: 43725.82, + COGS: 31995, + Profit: 11730.82, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 2454, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 29448, + Discounts: 623.04, + Sales: 28824.96, + COGS: 1416, + Profit: 27408.96, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 2643, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 31716, + Discounts: 2556.84, + Sales: 29159.16, + COGS: 5811, + Profit: 23348.16, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 383, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 134050, + Discounts: 30492, + Sales: 103558, + COGS: 205920, + Profit: 102362, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2801, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 840300, + Discounts: 92763, + Sales: 747537, + COGS: 702750, + Profit: 44787, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1667, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 208375, + Discounts: 33563.75, + Sales: 174811.25, + COGS: 292920, + Profit: 118108.75, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 3539, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 53085, + Discounts: 2574, + Sales: 50511, + COGS: 15600, + Profit: 34911, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 4226, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 29582, + Discounts: 2083.62, + Sales: 27498.38, + COGS: 13530, + Profit: 13968.38, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2220, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 777000, + Discounts: 29491, + Sales: 747509, + COGS: 199160, + Profit: 548349, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 776, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 15520, + Discounts: 6582.4, + Sales: 8937.6, + COGS: 29920, + Profit: 20982.4, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 553, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 8295, + Discounts: 3559.05, + Sales: 4735.95, + COGS: 21570, + Profit: 16834.05, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2107, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 632100, + Discounts: 28809, + Sales: 603291, + COGS: 218250, + Profit: 385041, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2468, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 49360, + Discounts: 2468.4, + Sales: 46891.6, + COGS: 11220, + Profit: 35671.6, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1905, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 666750, + Discounts: 81023.25, + Sales: 585726.75, + COGS: 547170, + Profit: 38556.75, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3658, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 43896, + Discounts: 5314.32, + Sales: 38581.68, + COGS: 12078, + Profit: 26503.68, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 4301, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 51612, + Discounts: 3201.66, + Sales: 48410.34, + COGS: 7276.5, + Profit: 41133.84, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2446, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 48920, + Discounts: 5266.8, + Sales: 43653.2, + COGS: 23940, + Profit: 19713.2, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 4209, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 63135, + Discounts: 3273.6, + Sales: 59861.4, + COGS: 19840, + Profit: 40021.4, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3353, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 419125, + Discounts: 33563.75, + Sales: 385561.25, + COGS: 292920, + Profit: 92641.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1401, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 28020, + Discounts: 6582.4, + Sales: 21437.6, + COGS: 29920, + Profit: 8482.4, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1865, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 559500, + Discounts: 45078, + Sales: 514422, + COGS: 341500, + Profit: 172922, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 463, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 9260, + Discounts: 6171, + Sales: 3089, + COGS: 28050, + Profit: 24961, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 4177, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 62655, + Discounts: 1080.75, + Sales: 61574.25, + COGS: 6550, + Profit: 55024.25, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2523, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 883050, + Discounts: 13244, + Sales: 869806, + COGS: 89440, + Profit: 780366, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1930, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 13510, + Discounts: 1392.16, + Sales: 12117.84, + COGS: 9040, + Profit: 3077.84, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1301, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 15612, + Discounts: 2288.88, + Sales: 13323.12, + COGS: 5202, + Profit: 8121.12, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 4125, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 515625, + Discounts: 7617.5, + Sales: 508007.5, + COGS: 66480, + Profit: 441527.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 607, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 12140, + Discounts: 6457, + Sales: 5683, + COGS: 29350, + Profit: 23667, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 478, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 59750, + Discounts: 43518.75, + Sales: 16231.25, + COGS: 379800, + Profit: 363568.75, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 4489, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 89780, + Discounts: 5783.8, + Sales: 83996.2, + COGS: 26290, + Profit: 57706.2, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1504, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 188000, + Discounts: 19703.75, + Sales: 168296.25, + COGS: 171960, + Profit: 3663.75, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 3763, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 470375, + Discounts: 13021.25, + Sales: 457353.75, + COGS: 113640, + Profit: 343713.75, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2412, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 844200, + Discounts: 13244, + Sales: 830956, + COGS: 89440, + Profit: 741516, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2342, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 35130, + Discounts: 3559.05, + Sales: 31570.95, + COGS: 21570, + Profit: 10000.95, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4451, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 31157, + Discounts: 292.6, + Sales: 30864.4, + COGS: 1900, + Profit: 28964.4, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3796, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1328600, + Discounts: 37212, + Sales: 1291388, + COGS: 230360, + Profit: 1061028, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 2286, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 285750, + Discounts: 36240, + Sales: 249510, + COGS: 289920, + Profit: 40410, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3614, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 451750, + Discounts: 32340, + Sales: 419410, + COGS: 258720, + Profit: 160690, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1716, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 25740, + Discounts: 4840.2, + Sales: 20899.8, + COGS: 26890, + Profit: 5990.2, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1301, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 19515, + Discounts: 1218.6, + Sales: 18296.4, + COGS: 6770, + Profit: 11526.4, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 4175, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1252500, + Discounts: 63828, + Sales: 1188672, + COGS: 443250, + Profit: 745422, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 975, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 6825, + Discounts: 2032.8, + Sales: 4792.2, + COGS: 12100, + Profit: 7307.8, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1154, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 8078, + Discounts: 2296.56, + Sales: 5781.44, + COGS: 13670, + Profit: 7888.56, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1873, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 37460, + Discounts: 4116, + Sales: 33344, + COGS: 17150, + Profit: 16194, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3766, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1129800, + Discounts: 42696, + Sales: 1087104, + COGS: 296500, + Profit: 790604, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3558, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1067400, + Discounts: 125820, + Sales: 941580, + COGS: 873750, + Profit: 67830, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3156, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1104600, + Discounts: 37212, + Sales: 1067388, + COGS: 230360, + Profit: 837028, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2994, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 374250, + Discounts: 32340, + Sales: 341910, + COGS: 258720, + Profit: 83190, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2087, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 41740, + Discounts: 2172, + Sales: 39568, + COGS: 9050, + Profit: 30518, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1056, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 21120, + Discounts: 4116, + Sales: 17004, + COGS: 17150, + Profit: 146, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1353, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 473550, + Discounts: 66948, + Sales: 406602, + COGS: 414440, + Profit: 7838, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 416, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 124800, + Discounts: 48924, + Sales: 75876, + COGS: 339750, + Profit: 263874, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3880, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1164000, + Discounts: 77400, + Sales: 1086600, + COGS: 537500, + Profit: 549100, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 809, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 283150, + Discounts: 50274, + Sales: 232876, + COGS: 311220, + Profit: 78344, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1892, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 28380, + Discounts: 684, + Sales: 27696, + COGS: 3800, + Profit: 23896, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2072, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 41440, + Discounts: 2959.2, + Sales: 38480.8, + COGS: 12330, + Profit: 26150.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3052, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1068200, + Discounts: 58590, + Sales: 1009610, + COGS: 362700, + Profit: 646910, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3121, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1092350, + Discounts: 41412, + Sales: 1050938, + COGS: 256360, + Profit: 794578, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2059, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 41180, + Discounts: 2172, + Sales: 39008, + COGS: 9050, + Profit: 29958, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4254, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 51048, + Discounts: 3036.96, + Sales: 48011.04, + COGS: 6327, + Profit: 41684.04, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1293, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 19395, + Discounts: 6974.1, + Sales: 12420.9, + COGS: 38745, + Profit: 26324.1, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1293, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 452550, + Discounts: 26166, + Sales: 426384, + COGS: 161980, + Profit: 264404, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 230, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 80500, + Discounts: 41412, + Sales: 39088, + COGS: 256360, + Profit: 217272, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1723, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 215375, + Discounts: 35805, + Sales: 179570, + COGS: 286440, + Profit: 106870, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 240, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 4800, + Discounts: 2959.2, + Sales: 1840.8, + COGS: 12330, + Profit: 10489.2, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2571, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 899850, + Discounts: 11340, + Sales: 888510, + COGS: 70200, + Profit: 818310, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1661, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 11627, + Discounts: 2874.06, + Sales: 8752.94, + COGS: 17107.5, + Profit: 8354.56, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 4474, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 31318, + Discounts: 2296.56, + Sales: 29021.44, + COGS: 13670, + Profit: 15351.44, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 833, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 12495, + Discounts: 4586.4, + Sales: 7908.6, + COGS: 25480, + Profit: 17571.4, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 674, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 13480, + Discounts: 6051.6, + Sales: 7428.4, + COGS: 25215, + Profit: 17786.6, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 778, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 9336, + Discounts: 3831.84, + Sales: 5504.16, + COGS: 7983, + Profit: 2478.84, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1457, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 29140, + Discounts: 3674.4, + Sales: 25465.6, + COGS: 15310, + Profit: 10155.6, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3158, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 22106, + Discounts: 1252.44, + Sales: 20853.56, + COGS: 7455, + Profit: 13398.56, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 4095, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 81900, + Discounts: 3674.4, + Sales: 78225.6, + COGS: 15310, + Profit: 62915.6, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 3170, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 38040, + Discounts: 3975.84, + Sales: 34064.16, + COGS: 8283, + Profit: 25781.16, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 493, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 7395, + Discounts: 5005.65, + Sales: 2389.35, + COGS: 25670, + Profit: 23280.65, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 3286, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 49290, + Discounts: 5005.65, + Sales: 44284.35, + COGS: 25670, + Profit: 18614.35, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 3563, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1247050, + Discounts: 41996.5, + Sales: 1205053.5, + COGS: 239980, + Profit: 965073.5, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 4109, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1438150, + Discounts: 81445, + Sales: 1356705, + COGS: 465400, + Profit: 891305, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 3653, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 73060, + Discounts: 1149.2, + Sales: 71910.8, + COGS: 4420, + Profit: 67490.8, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2203, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 771050, + Discounts: 44703.75, + Sales: 726346.25, + COGS: 255450, + Profit: 470896.25, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2924, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20468, + Discounts: 1181.18, + Sales: 19286.82, + COGS: 6490, + Profit: 12796.82, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2650, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 31800, + Discounts: 942.24, + Sales: 30857.76, + COGS: 1812, + Profit: 29045.76, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1194, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 23880, + Discounts: 5863, + Sales: 18017, + COGS: 22550, + Profit: 4533, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 3366, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 67320, + Discounts: 3247.4, + Sales: 64072.6, + COGS: 12490, + Profit: 51582.6, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1325, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 9275, + Discounts: 1309.04, + Sales: 7965.97, + COGS: 7192.5, + Profit: 773.47, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4243, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1272900, + Discounts: 31473, + Sales: 1241427, + COGS: 201750, + Profit: 1039677, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2887, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 57740, + Discounts: 6866.6, + Sales: 50873.4, + COGS: 26410, + Profit: 24463.4, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3839, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 76780, + Discounts: 7040.8, + Sales: 69739.2, + COGS: 27080, + Profit: 42659.2, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1863, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 652050, + Discounts: 119756, + Sales: 532294, + COGS: 684320, + Profit: 152026, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2858, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 357250, + Discounts: 25723.75, + Sales: 331526.25, + COGS: 189960, + Profit: 141566.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2868, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 34416, + Discounts: 890.76, + Sales: 33525.24, + COGS: 1713, + Profit: 31812.24, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3805, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 26635, + Discounts: 2453.36, + Sales: 24181.64, + COGS: 13480, + Profit: 10701.64, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3914, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 58710, + Discounts: 3051.75, + Sales: 55658.25, + COGS: 15650, + Profit: 40008.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 524, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 10480, + Discounts: 3247.4, + Sales: 7232.6, + COGS: 12490, + Profit: 5257.4, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3095, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1083250, + Discounts: 16243.5, + Sales: 1067006.5, + COGS: 92820, + Profit: 974186.5, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2410, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 28920, + Discounts: 1580.28, + Sales: 27339.72, + COGS: 3039, + Profit: 24300.72, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 4263, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 63945, + Discounts: 7795.13, + Sales: 56149.88, + COGS: 39975, + Profit: 16174.88, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2239, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 783650, + Discounts: 119756, + Sales: 663894, + COGS: 684320, + Profit: 20426, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 569, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 3983, + Discounts: 1082.9, + Sales: 2900.1, + COGS: 5950, + Profit: 3049.9, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3889, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 46668, + Discounts: 942.24, + Sales: 45725.76, + COGS: 1812, + Profit: 43913.76, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 1378, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 20670, + Discounts: 1287, + Sales: 19383, + COGS: 6600, + Profit: 12783, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2253, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 27036, + Discounts: 639.6, + Sales: 26396.4, + COGS: 1230, + Profit: 25166.4, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3202, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 960600, + Discounts: 101595, + Sales: 859005, + COGS: 651250, + Profit: 207755, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3835, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 46020, + Discounts: 1580.28, + Sales: 44439.72, + COGS: 3039, + Profit: 41400.72, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 2487, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 310875, + Discounts: 25723.75, + Sales: 285151.25, + COGS: 189960, + Profit: 95191.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4428, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 66420, + Discounts: 3051.75, + Sales: 63368.25, + COGS: 15650, + Profit: 47718.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1200, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 150000, + Discounts: 26958.75, + Sales: 123041.25, + COGS: 199080, + Profit: 76038.75, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2953, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 20671, + Discounts: 1082.9, + Sales: 19588.1, + COGS: 5950, + Profit: 13638.1, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1453, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 17436, + Discounts: 639.6, + Sales: 16796.4, + COGS: 1230, + Profit: 15566.4, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 865, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 10380, + Discounts: 2761.2, + Sales: 7618.8, + COGS: 5310, + Profit: 2308.8, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1072, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 21440, + Discounts: 7221.2, + Sales: 14218.8, + COGS: 25790, + Profit: 11571.2, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1737, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 34740, + Discounts: 4880.4, + Sales: 29859.6, + COGS: 17430, + Profit: 12429.6, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1535, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 10745, + Discounts: 2936.08, + Sales: 7808.92, + COGS: 14980, + Profit: 7171.08, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2532, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 17724, + Discounts: 274.4, + Sales: 17449.6, + COGS: 1400, + Profit: 16049.6, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1765, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 12355, + Discounts: 287.14, + Sales: 12067.86, + COGS: 1465, + Profit: 10602.86, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1567, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 10969, + Discounts: 2936.08, + Sales: 8032.92, + COGS: 14980, + Profit: 6947.08, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2640, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 39600, + Discounts: 583.8, + Sales: 39016.2, + COGS: 2780, + Profit: 36236.2, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3079, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 61580, + Discounts: 6798.4, + Sales: 54781.6, + COGS: 24280, + Profit: 30501.6, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4130, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 61950, + Discounts: 3710.7, + Sales: 58239.3, + COGS: 17670, + Profit: 40569.3, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2938, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 35256, + Discounts: 2340.24, + Sales: 32915.76, + COGS: 4179, + Profit: 28736.76, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3080, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 21560, + Discounts: 274.4, + Sales: 21285.6, + COGS: 1400, + Profit: 19885.6, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1530, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 18360, + Discounts: 2340.24, + Sales: 16019.76, + COGS: 4179, + Profit: 11840.76, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 3537, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 42444, + Discounts: 3385.2, + Sales: 39058.8, + COGS: 6045, + Profit: 33013.8, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 2021, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 606300, + Discounts: 33642, + Sales: 572658, + COGS: 200250, + Profit: 372408, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1804, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 225500, + Discounts: 17902.5, + Sales: 207597.5, + COGS: 122760, + Profit: 84837.5, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1014, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 304200, + Discounts: 62832, + Sales: 241368, + COGS: 374000, + Profit: 132632, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2913, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 873900, + Discounts: 42420, + Sales: 831480, + COGS: 252500, + Profit: 578980, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 763, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 11445, + Discounts: 3177.3, + Sales: 8267.7, + COGS: 15130, + Profit: 6862.3, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1425, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 21375, + Discounts: 4830, + Sales: 16545, + COGS: 23000, + Profit: 6455, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 4357, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 544625, + Discounts: 49367.5, + Sales: 495257.5, + COGS: 338520, + Profit: 156737.5, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 2138, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 748300, + Discounts: 109147.5, + Sales: 639152.5, + COGS: 579150, + Profit: 60002.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3825, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1338750, + Discounts: 58751, + Sales: 1279999, + COGS: 311740, + Profit: 968259, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 3393, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1187550, + Discounts: 9800, + Sales: 1177750, + COGS: 52000, + Profit: 1125750, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 2215, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 15505, + Discounts: 380.24, + Sales: 15124.76, + COGS: 1940, + Profit: 13184.76, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2278, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 15946, + Discounts: 1692.46, + Sales: 14253.54, + COGS: 8635, + Profit: 5618.54, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 403, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 6045, + Discounts: 4830, + Sales: 1215, + COGS: 23000, + Profit: 21785, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 289, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 5780, + Discounts: 728, + Sales: 5052, + COGS: 2600, + Profit: 2452, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 749, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 11235, + Discounts: 5187, + Sales: 6048, + COGS: 24700, + Profit: 18652, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 372, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 5580, + Discounts: 3660.3, + Sales: 1919.7, + COGS: 17430, + Profit: 15510.3, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3781, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 45372, + Discounts: 4895.52, + Sales: 40476.48, + COGS: 8742, + Profit: 31734.48, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1785, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 12495, + Discounts: 1696.38, + Sales: 10798.62, + COGS: 8655, + Profit: 2143.62, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4029, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1410150, + Discounts: 34300, + Sales: 1375850, + COGS: 182000, + Profit: 1193850, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2813, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 33756, + Discounts: 3732.96, + Sales: 30023.04, + COGS: 6666, + Profit: 23357.04, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2150, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 752500, + Discounts: 57673, + Sales: 694827, + COGS: 306020, + Profit: 388807, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2093, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 732550, + Discounts: 94178, + Sales: 638372, + COGS: 499720, + Profit: 138652, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 4391, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 548875, + Discounts: 27562.5, + Sales: 521312.5, + COGS: 189000, + Profit: 332312.5, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2695, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 53900, + Discounts: 1696.8, + Sales: 52203.2, + COGS: 6060, + Profit: 46143.2, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1337, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 401100, + Discounts: 103320, + Sales: 297780, + COGS: 615000, + Profit: 317220, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2621, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 786300, + Discounts: 11298, + Sales: 775002, + COGS: 67250, + Profit: 707752, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3735, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1120500, + Discounts: 106512, + Sales: 1013988, + COGS: 634000, + Profit: 379988, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 4320, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 30240, + Discounts: 2844.94, + Sales: 27395.06, + COGS: 14515, + Profit: 12880.06, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2828, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 848400, + Discounts: 106722, + Sales: 741678, + COGS: 635250, + Profit: 106428, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 2586, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 775800, + Discounts: 11298, + Sales: 764502, + COGS: 67250, + Profit: 697252, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1248, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 374400, + Discounts: 62832, + Sales: 311568, + COGS: 374000, + Profit: 62432, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 4035, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 1210500, + Discounts: 42420, + Sales: 1168080, + COGS: 252500, + Profit: 915580, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 359, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 125650, + Discounts: 62769, + Sales: 62881, + COGS: 333060, + Profit: 270179, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 3926, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1177800, + Discounts: 37296, + Sales: 1140504, + COGS: 222000, + Profit: 918504, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 4247, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 530875, + Discounts: 49770, + Sales: 481105, + COGS: 341280, + Profit: 139825, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2695, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 32340, + Discounts: 4158, + Sales: 28182, + COGS: 7425, + Profit: 20757, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1104, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 16560, + Discounts: 3660.3, + Sales: 12899.7, + COGS: 17430, + Profit: 4530.3, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1449, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 17388, + Discounts: 4895.52, + Sales: 12492.48, + COGS: 8742, + Profit: 3750.48, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1131, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 7917, + Discounts: 1696.38, + Sales: 6220.62, + COGS: 8655, + Profit: 2434.38, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1468, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 10276, + Discounts: 1692.46, + Sales: 8583.54, + COGS: 8635, + Profit: 51.46, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1272, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 19080, + Discounts: 3927, + Sales: 15153, + COGS: 18700, + Profit: 3547, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1403, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 175375, + Discounts: 22012.5, + Sales: 153362.5, + COGS: 140880, + Profit: 12482.5, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2161, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 270125, + Discounts: 51881.25, + Sales: 218243.75, + COGS: 332040, + Profit: 113796.25, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1937, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 242125, + Discounts: 20343.75, + Sales: 221781.25, + COGS: 130200, + Profit: 91581.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2879, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 863700, + Discounts: 24570, + Sales: 839130, + COGS: 136500, + Profit: 702630, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1330, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 26600, + Discounts: 3474, + Sales: 23126, + COGS: 11580, + Profit: 11546, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2426, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 36390, + Discounts: 3631.5, + Sales: 32758.5, + COGS: 16140, + Profit: 16618.5, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2033, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14231, + Discounts: 2661.75, + Sales: 11569.25, + COGS: 12675, + Profit: 1105.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2029, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 710150, + Discounts: 149677.5, + Sales: 560472.5, + COGS: 741260, + Profit: 180787.5, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1049, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 15735, + Discounts: 5757.75, + Sales: 9977.25, + COGS: 25590, + Profit: 15612.75, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1062, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 21240, + Discounts: 801, + Sales: 20439, + COGS: 2670, + Profit: 17769, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2509, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 313625, + Discounts: 20343.75, + Sales: 293281.25, + COGS: 130200, + Profit: 163081.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1743, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 26145, + Discounts: 2643.75, + Sales: 23501.25, + COGS: 11750, + Profit: 11751.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3418, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1196300, + Discounts: 105367.5, + Sales: 1090932.5, + COGS: 521820, + Profit: 569112.5, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1751, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 612850, + Discounts: 112927.5, + Sales: 499922.5, + COGS: 559260, + Profit: 59337.5, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3228, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 38736, + Discounts: 1645.2, + Sales: 37090.8, + COGS: 2742, + Profit: 34348.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1105, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 22100, + Discounts: 879, + Sales: 21221, + COGS: 2930, + Profit: 18291, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2778, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 33336, + Discounts: 900, + Sales: 32436, + COGS: 1500, + Profit: 30936, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1173, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 17595, + Discounts: 6358.5, + Sales: 11236.5, + COGS: 28260, + Profit: 17023.5, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3160, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 395000, + Discounts: 12431.25, + Sales: 382568.75, + COGS: 79560, + Profit: 303008.75, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 4322, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1296600, + Discounts: 115830, + Sales: 1180770, + COGS: 643500, + Profit: 537270, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1901, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 237625, + Discounts: 45712.5, + Sales: 191912.5, + COGS: 292560, + Profit: 100647.5, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2980, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 35760, + Discounts: 1645.2, + Sales: 34114.8, + COGS: 2742, + Profit: 31372.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4068, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 81360, + Discounts: 2596.5, + Sales: 78763.5, + COGS: 8655, + Profit: 70108.5, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2105, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 31575, + Discounts: 1107, + Sales: 30468, + COGS: 4920, + Profit: 25548, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1647, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 32940, + Discounts: 801, + Sales: 32139, + COGS: 2670, + Profit: 29469, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 235, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 3525, + Discounts: 2643.75, + Sales: 881.25, + COGS: 11750, + Profit: 10868.75, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3617, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 452125, + Discounts: 55387.5, + Sales: 396737.5, + COGS: 354480, + Profit: 42257.5, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2106, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 263250, + Discounts: 10350, + Sales: 252900, + COGS: 66240, + Profit: 186660, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2351, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 47020, + Discounts: 879, + Sales: 46141, + COGS: 2930, + Profit: 43211, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1897, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 569100, + Discounts: 111375, + Sales: 457725, + COGS: 618750, + Profit: 161025, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 647, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 194100, + Discounts: 24570, + Sales: 169530, + COGS: 136500, + Profit: 33030, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 3621, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 25347, + Discounts: 1436.4, + Sales: 23910.6, + COGS: 6840, + Profit: 17070.6, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3221, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 22547, + Discounts: 759.15, + Sales: 21787.85, + COGS: 3615, + Profit: 18172.85, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 493, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 5916, + Discounts: 3250.8, + Sales: 2665.2, + COGS: 5418, + Profit: 2752.8, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/category-chart/data-aggregations/src/app.component.html b/samples/charts/category-chart/data-aggregations/src/app.component.html index 5832fb19d..d33701c0f 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.component.html +++ b/samples/charts/category-chart/data-aggregations/src/app.component.html @@ -15,8 +15,8 @@ label="Initial Groups" valueType="EnumValue" shouldOverrideDefaultEditor="true" - dropDownNames="Country, Product, MonthName, Year" - dropDownValues="Country, Product, MonthName, Year" + dropDownNames="Country, Product, Month, Year" + dropDownValues="Country, Product, Month, Year" primitiveValue="Country" (changed)="this.editorChangeUpdateInitialGroups($event)"> diff --git a/samples/charts/category-chart/data-aggregations/src/app.component.ts b/samples/charts/category-chart/data-aggregations/src/app.component.ts index 058bbe74e..6034ed51f 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.component.ts +++ b/samples/charts/category-chart/data-aggregations/src/app.component.ts @@ -1,6 +1,6 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; -import { SalesData } from './SalesData'; +import { SalesDataItem, SalesData } from './SalesData'; import { IgxPropertyEditorPanelComponent, PropertyEditorValueType, IgxPropertyEditorPropertyDescriptionChangedEventArgs, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; import { IgxCategoryChartComponent, MarkerType, MarkerType_$type } from 'igniteui-angular-charts'; import { EnumUtil } from 'igniteui-angular-core'; diff --git a/samples/charts/category-chart/data-filter/src/SalesData.ts b/samples/charts/category-chart/data-filter/src/SalesData.ts index 25697b809..50d5fe209 100644 --- a/samples/charts/category-chart/data-filter/src/SalesData.ts +++ b/samples/charts/category-chart/data-filter/src/SalesData.ts @@ -1,1052 +1,3 @@ -//begin data -export class SalesData extends Array { - public constructor() { - super(); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `501`,ManufacturingPrice: 15,SalePrice: 23,GrossSales: 26440,Discounts: 0,Sales: 26440,COGS: 16185,Profit: 11255,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1372`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 27440,Discounts: 0,Sales: 27440,COGS: 16185,Profit: 11255,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2762`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 55240,Discounts: 0,Sales: 55240,COGS: 13210,Profit: 42030,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1464`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21960,Discounts: 0,Sales: 21960,COGS: 21780,Profit: 180,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `719`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 10785,Discounts: 0,Sales: 10785,COGS: 8880,Profit: 1905,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3576`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53640,Discounts: 0,Sales: 53640,COGS: 24700,Profit: 28940,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4422`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1547700,Discounts: 0,Sales: 1547700,COGS: 393380,Profit: 1154320,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3649`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 54735,Discounts: 0,Sales: 54735,COGS: 9210,Profit: 45525,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4172`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 50064,Discounts: 0,Sales: 50064,COGS: 7554,Profit: 42510,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3841`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 76820,Discounts: 0,Sales: 76820,COGS: 18990,Profit: 57830,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3726`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 44712,Discounts: 0,Sales: 44712,COGS: 4635,Profit: 40077,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2625`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 39375,Discounts: 0,Sales: 39375,COGS: 24700,Profit: 14675,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1958`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 244750,Discounts: 0,Sales: 244750,COGS: 319860,Profit: 75110,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3271`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 981300,Discounts: 0,Sales: 981300,COGS: 239500,Profit: 741800,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2091`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 14637,Discounts: 0,Sales: 14637,COGS: 10730,Profit: 3907,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2825`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 42375,Discounts: 0,Sales: 42375,COGS: 6150,Profit: 36225,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2513`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 50260,Discounts: 0,Sales: 50260,COGS: 2920,Profit: 47340,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `883`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 13245,Discounts: 0,Sales: 13245,COGS: 9740,Profit: 3505,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 25044,Discounts: 0,Sales: 25044,COGS: 7554,Profit: 17490,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2563`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 897050,Discounts: 0,Sales: 897050,COGS: 261560,Profit: 635490,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2846`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34152,Discounts: 0,Sales: 34152,COGS: 1101,Profit: 33051,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `997`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 6979,Discounts: 0,Sales: 6979,COGS: 4415,Profit: 2564,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2290`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 34350,Discounts: 0,Sales: 34350,COGS: 24720,Profit: 9630,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2133`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14931,Discounts: 0,Sales: 14931,COGS: 5715,Profit: 9216,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3617`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 72340,Discounts: 0,Sales: 72340,COGS: 18170,Profit: 54170,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1266`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 443100,Discounts: 0,Sales: 443100,COGS: 393380,Profit: 49720,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `894`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6258,Discounts: 0,Sales: 6258,COGS: 7465,Profit: 1207,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2725`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 340625,Discounts: 0,Sales: 340625,COGS: 216480,Profit: 124145,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3061`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 36732,Discounts: 0,Sales: 36732,COGS: 6483,Profit: 30249,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3958`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1385300,Discounts: 0,Sales: 1385300,COGS: 261560,Profit: 1123740,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3920`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 47040,Discounts: 0,Sales: 47040,COGS: 4635,Profit: 42405,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3381`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422625,Discounts: 0,Sales: 422625,COGS: 338520,Profit: 84105,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4307`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1292100,Discounts: 0,Sales: 1292100,COGS: 500250,Profit: 791850,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `878`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10536,Discounts: 0,Sales: 10536,COGS: 8514,Profit: 2022,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `496`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 7440,Discounts: 0,Sales: 7440,COGS: 21780,Profit: 14340,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3367`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 50505,Discounts: 0,Sales: 50505,COGS: 8880,Profit: 41625,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2055`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 616500,Discounts: 0,Sales: 616500,COGS: 537750,Profit: 78750,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4041`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 80820,Discounts: 0,Sales: 80820,COGS: 18170,Profit: 62650,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `3237`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1132950,Discounts: 0,Sales: 1132950,COGS: 715000,Profit: 417950,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `630`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 7560,Discounts: 0,Sales: 7560,COGS: 5859,Profit: 1701,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4210`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 526250,Discounts: 0,Sales: 526250,COGS: 506340,Profit: 19910,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1127`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 22540,Discounts: 0,Sales: 22540,COGS: 18990,Profit: 3550,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3438`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 24066,Discounts: 0,Sales: 24066,COGS: 8430,Profit: 15636,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2015`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 24180,Discounts: 0,Sales: 24180,COGS: 6423,Profit: 17757,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2534`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 17738,Discounts: 0,Sales: 17738,COGS: 5715,Profit: 12023,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1384`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 20760,Discounts: 0,Sales: 20760,COGS: 6150,Profit: 14610,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3561`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 24927,Discounts: 276.15,Sales: 24650.85,COGS: 19725,Profit: 4925.85,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1823`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27345,Discounts: 344.4,Sales: 27000.6,COGS: 22960,Profit: 4040.6,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19565,Discounts: 72.1,Sales: 19492.9,COGS: 5150,Profit: 14342.9,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `457`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3199,Discounts: 44.73,Sales: 3154.27,COGS: 3195,Profit: 40.73,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3785`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26495,Discounts: 92.82,Sales: 26402.18,COGS: 6630,Profit: 19772.18,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `748`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 8976,Discounts: 222.96,Sales: 8753.04,COGS: 5574,Profit: 3179.04,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1021`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 357350,Discounts: 4235,Sales: 353115,COGS: 314600,Profit: 38515,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2076`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 14532,Discounts: 177.03,Sales: 14354.97,COGS: 12645,Profit: 1709.97,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `4316`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51792,Discounts: 173.4,Sales: 51618.6,COGS: 4335,Profit: 47283.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4174`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50088,Discounts: 320.52,Sales: 49767.48,COGS: 8013,Profit: 41754.48,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3736`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1307600,Discounts: 4889.5,Sales: 1302710.5,COGS: 363220,Profit: 939490.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1914`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 669900,Discounts: 7542.5,Sales: 662357.5,COGS: 560300,Profit: 102057.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2742`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 41130,Discounts: 332.1,Sales: 40797.9,COGS: 22140,Profit: 18657.9,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1499`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 449700,Discounts: 6903,Sales: 442797,COGS: 575250,Profit: 132453,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 75440,Discounts: 275.1,Sales: 75164.9,COGS: 13755,Profit: 61409.9,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1112`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 7784,Discounts: 128.1,Sales: 7655.9,COGS: 9150,Profit: 1494.1,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2368`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 35520,Discounts: 227.1,Sales: 35292.9,COGS: 15140,Profit: 20152.9,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 11102,Discounts: 314.48,Sales: 10787.52,COGS: 22462.5,Profit: 11674.98,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3386`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 423250,Discounts: 908.75,Sales: 422341.25,COGS: 87240,Profit: 335101.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `852`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 106500,Discounts: 983.75,Sales: 105516.25,COGS: 94440,Profit: 11076.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2783`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 347875,Discounts: 2278.75,Sales: 345596.25,COGS: 218760,Profit: 126836.25,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2684`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 40260,Discounts: 112.05,Sales: 40147.95,COGS: 7470,Profit: 32677.95,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4083`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1224900,Discounts: 8715,Sales: 1216185,COGS: 726250,Profit: 489935,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2816`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 985600,Discounts: 7542.5,Sales: 978057.5,COGS: 560300,Profit: 417757.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4294`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 85880,Discounts: 772.8,Sales: 85107.2,COGS: 38640,Profit: 46467.2,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 25.34,Sales: 19966.66,COGS: 1810,Profit: 18156.66,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1407`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 175875,Discounts: 1153.75,Sales: 174721.25,COGS: 110760,Profit: 63961.25,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1265`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 8855,Discounts: 18.41,Sales: 8836.59,COGS: 1315,Profit: 7521.59,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3892`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1362200,Discounts: 3302.25,Sales: 1358897.75,COGS: 245310,Profit: 1113587.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3068`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 383500,Discounts: 908.75,Sales: 382591.25,COGS: 87240,Profit: 295351.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2181`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 272625,Discounts: 983.75,Sales: 271641.25,COGS: 94440,Profit: 177201.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1356`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 406800,Discounts: 2958,Sales: 403842,COGS: 246500,Profit: 177201.25,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1814`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 634900,Discounts: 4889.5,Sales: 630010.5,COGS: 363220,Profit: 266790.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1495`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 186875,Discounts: 2180,Sales: 184695,COGS: 209280,Profit: 24585,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1463`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 182875,Discounts: 1856.25,Sales: 181018.75,COGS: 89100,Profit: 91918.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `215`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 2580,Discounts: 310.8,Sales: 2269.2,COGS: 3885,Profit: 1615.8,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `566`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 198100,Discounts: 19964,Sales: 178136,COGS: 741520,Profit: 563384,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3255`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 39060,Discounts: 274.08,Sales: 38785.92,COGS: 3426,Profit: 35359.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15440,Discounts: 626.4,Sales: 14813.6,COGS: 15660,Profit: 846.4,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1135`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13620,Discounts: 165.6,Sales: 13454.4,COGS: 2070,Profit: 11384.4,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 17895,Discounts: 708.9,Sales: 17186.1,COGS: 23630,Profit: 6443.9,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2530`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 759000,Discounts: 5508,Sales: 753492,COGS: 229500,Profit: 523992,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3451`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1035300,Discounts: 10368,Sales: 1024932,COGS: 432000,Profit: 592932,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3059`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 36708,Discounts: 274.08,Sales: 36433.92,COGS: 3426,Profit: 33007.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3957`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 494625,Discounts: 1655,Sales: 492970,COGS: 79440,Profit: 413530,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3444`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 41328,Discounts: 310.8,Sales: 41017.2,COGS: 3885,Profit: 37132.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3154`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 946200,Discounts: 11496,Sales: 934704,COGS: 479000,Profit: 455704,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4108`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1437800,Discounts: 19964,Sales: 1417836,COGS: 741520,Profit: 676316,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3760`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 470000,Discounts: 6822.5,Sales: 463177.5,COGS: 327480,Profit: 135697.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2334`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28008,Discounts: 253.2,Sales: 27754.8,COGS: 3165,Profit: 24589.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `580`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 6960,Discounts: 260.16,Sales: 6699.84,COGS: 3252,Profit: 3447.84,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2610`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 52200,Discounts: 626.4,Sales: 51573.6,COGS: 15660,Profit: 35913.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1459`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 510650,Discounts: 20139,Sales: 490511,COGS: 748020,Profit: 257509,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3774`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 45288,Discounts: 253.2,Sales: 45034.8,COGS: 3165,Profit: 41869.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2572`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 30864,Discounts: 260.16,Sales: 30603.84,COGS: 3252,Profit: 27351.84,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `320`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 40000,Discounts: 1655,Sales: 38345,COGS: 79440,Profit: 41095,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3275`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1146250,Discounts: 20139,Sales: 1126111,COGS: 748020,Profit: 378091,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3582`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 447750,Discounts: 6822.5,Sales: 440927.5,COGS: 327480,Profit: 113447.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4056`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1216800,Discounts: 1554,Sales: 1215246,COGS: 64750,Profit: 1150496,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2144`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 643200,Discounts: 6606,Sales: 636594,COGS: 275250,Profit: 361344,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3502`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 437750,Discounts: 5690,Sales: 432060,COGS: 273120,Profit: 158940,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `679`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 13580,Discounts: 494.4,Sales: 13085.6,COGS: 12360,Profit: 725.6,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2351`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 47020,Discounts: 376.4,Sales: 46643.6,COGS: 9410,Profit: 37233.6,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2043`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 612900,Discounts: 11496,Sales: 601404,COGS: 479000,Profit: 122404,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3565`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 445625,Discounts: 15913.13,Sales: 429711.88,COGS: 509220,Profit: 79508.13,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1401`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 28020,Discounts: 1548,Sales: 26472,COGS: 25800,Profit: 672,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2077`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 623100,Discounts: 6201,Sales: 616899,COGS: 172250,Profit: 444649,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 43716,Discounts: 700.92,Sales: 43015.08,COGS: 5841,Profit: 37174.08,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2960`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20720,Discounts: 411.18,Sales: 20308.82,COGS: 9790,Profit: 10518.82,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1201`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 14412,Discounts: 684.36,Sales: 13727.64,COGS: 5703,Profit: 8024.64,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2321`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 16247,Discounts: 114.24,Sales: 16132.76,COGS: 2720,Profit: 13412.76,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3972`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 496500,Discounts: 4826.25,Sales: 491673.75,COGS: 154440,Profit: 337233.75,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3878`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 484750,Discounts: 6397.5,Sales: 478352.5,COGS: 204720,Profit: 273632.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2278`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 683400,Discounts: 21910.5,Sales: 661489.5,COGS: 608625,Profit: 52864.5,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1075`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 134375,Discounts: 6652.5,Sales: 127722.5,COGS: 212880,Profit: 85157.5,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4050`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 48600,Discounts: 684.36,Sales: 47915.64,COGS: 5703,Profit: 42212.64,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3035`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 910500,Discounts: 6201,Sales: 904299,COGS: 172250,Profit: 732049,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3636`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 454500,Discounts: 5887.5,Sales: 448612.5,COGS: 188400,Profit: 260212.5,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1379`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 16548,Discounts: 493.02,Sales: 16054.98,COGS: 4108.5,Profit: 11946.48,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4492`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 561500,Discounts: 7533.75,Sales: 553966.25,COGS: 241080,Profit: 312886.25,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1744`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 218000,Discounts: 4826.25,Sales: 213173.75,COGS: 154440,Profit: 58733.75,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2341`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 292625,Discounts: 6397.5,Sales: 286227.5,COGS: 204720,Profit: 81507.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 479375,Discounts: 7533.75,Sales: 471841.25,COGS: 241080,Profit: 230761.25,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1161`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 348300,Discounts: 25596,Sales: 322704,COGS: 711000,Profit: 388296,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `876`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10512,Discounts: 689.76,Sales: 9822.24,COGS: 5748,Profit: 4074.24,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1705`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 213125,Discounts: 5887.5,Sales: 207237.5,COGS: 188400,Profit: 18837.5,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1805`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 541500,Discounts: 16866,Sales: 524634,COGS: 468500,Profit: 56134,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `389`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 136150,Discounts: 17241,Sales: 118909,COGS: 426920,Profit: 308011,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1459`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 29180,Discounts: 498.6,Sales: 28681.4,COGS: 8310,Profit: 20371.4,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4236`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 84720,Discounts: 2310.3,Sales: 82409.7,COGS: 38505,Profit: 43904.7,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3627`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 43524,Discounts: 892.44,Sales: 42631.56,COGS: 7437,Profit: 35194.56,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1756`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 26340,Discounts: 1218.6,Sales: 25121.4,COGS: 20310,Profit: 4811.4,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `307`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 4605,Discounts: 1218.6,Sales: 3386.4,COGS: 20310,Profit: 16923.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1222`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 366600,Discounts: 24252,Sales: 342348,COGS: 505250,Profit: 162902,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `489`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 171150,Discounts: 3836,Sales: 167314,COGS: 71240,Profit: 96074,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4133`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 61995,Discounts: 1180.2,Sales: 60814.8,COGS: 19670,Profit: 41144.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2743`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 822900,Discounts: 22308,Sales: 800592,COGS: 464750,Profit: 335842,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `4460`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1338000,Discounts: 24252,Sales: 1313748,COGS: 505250,Profit: 808498,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1232`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 154000,Discounts: 5690,Sales: 148310,COGS: 136560,Profit: 11750,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 18102,Discounts: 1190.28,Sales: 16911.72,COGS: 21255,Profit: 4343.28,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1332`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 166500,Discounts: 3975,Sales: 162525,COGS: 95400,Profit: 67125,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4487`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1346100,Discounts: 16974,Sales: 1329126,COGS: 353625,Profit: 975501,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3862`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1158600,Discounts: 35016,Sales: 1123584,COGS: 729500,Profit: 394084,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1765`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 617750,Discounts: 48300,Sales: 569450,COGS: 897000,Profit: 327550,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3533`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 441625,Discounts: 14940,Sales: 426685,COGS: 358560,Profit: 68125,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2016`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 30240,Discounts: 130.8,Sales: 30109.2,COGS: 2180,Profit: 27929.2,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58760,Discounts: 1659.2,Sales: 57100.8,COGS: 20740,Profit: 36360.8,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3352`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67040,Discounts: 844.8,Sales: 66195.2,COGS: 10560,Profit: 55635.2,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2430`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 850500,Discounts: 3836,Sales: 846664,COGS: 71240,Profit: 775424,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `535`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 66875,Discounts: 5690,Sales: 61185,COGS: 136560,Profit: 75375,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1523`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 18276,Discounts: 703.2,Sales: 17572.8,COGS: 4395,Profit: 13177.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1782`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 623700,Discounts: 30478,Sales: 593222,COGS: 566020,Profit: 27202,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `347`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 4164,Discounts: 415.68,Sales: 3748.32,COGS: 2598,Profit: 1150.32,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3509`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1228150,Discounts: 30478,Sales: 1197672,COGS: 566020,Profit: 631652,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2943`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1030050,Discounts: 26110,Sales: 1003940,COGS: 484900,Profit: 519040,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4037`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 504625,Discounts: 5370,Sales: 499255,COGS: 128880,Profit: 370375,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4146`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1451100,Discounts: 26698,Sales: 1424402,COGS: 495820,Profit: 928582,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `725`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 5075,Discounts: 480.2,Sales: 4594.8,COGS: 6860,Profit: 2265.2,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 16275,Discounts: 941.15,Sales: 15333.85,COGS: 13445,Profit: 1888.85,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `675`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 8100,Discounts: 1458.6,Sales: 6641.4,COGS: 7293,Profit: 651.6,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2990`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35880,Discounts: 1458.6,Sales: 34421.4,COGS: 7293,Profit: 27128.4,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1072`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 7504,Discounts: 941.15,Sales: 6562.85,COGS: 13445,Profit: 6882.15,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1048`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7336,Discounts: 589.05,Sales: 6746.95,COGS: 8415,Profit: 1668.05,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `469`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 5628,Discounts: 673.8,Sales: 4954.2,COGS: 3369,Profit: 1585.2,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4240`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50880,Discounts: 1119,Sales: 49761,COGS: 5595,Profit: 44166,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1976`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 23712,Discounts: 669.6,Sales: 23042.4,COGS: 3348,Profit: 19694.4,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1984`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39680,Discounts: 1563,Sales: 38117,COGS: 15630,Profit: 22487,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `480`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 144000,Discounts: 14865,Sales: 129135,COGS: 247750,Profit: 118615,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1205`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 18075,Discounts: 2093.25,Sales: 15981.75,COGS: 27910,Profit: 11928.25,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2480`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17360,Discounts: 199.5,Sales: 17160.5,COGS: 2850,Profit: 14310.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2926`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 20482,Discounts: 870.45,Sales: 19611.55,COGS: 12435,Profit: 7176.55,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3210`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1123500,Discounts: 24228.75,Sales: 1099271.25,COGS: 359970,Profit: 739301.25,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3221`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 402625,Discounts: 22668.75,Sales: 379956.25,COGS: 435240,Profit: 55283.75,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1127`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13524,Discounts: 1405.2,Sales: 12118.8,COGS: 7026,Profit: 5092.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1610`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 32200,Discounts: 1303,Sales: 30897,COGS: 13030,Profit: 17867,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4100`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 512500,Discounts: 18700,Sales: 493800,COGS: 359040,Profit: 134760,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1012`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 126500,Discounts: 14906.25,Sales: 111593.75,COGS: 286200,Profit: 174606.25,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3337`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1001100,Discounts: 24105,Sales: 976995,COGS: 401750,Profit: 575245,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3955`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27685,Discounts: 814.45,Sales: 26870.55,COGS: 11635,Profit: 15235.55,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4347`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1304100,Discounts: 14865,Sales: 1289235,COGS: 247750,Profit: 1041485,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1548`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 541800,Discounts: 10535,Sales: 531265,COGS: 156520,Profit: 374745,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2153`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 32295,Discounts: 1965,Sales: 30330,COGS: 26200,Profit: 4130,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4126`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 515750,Discounts: 5381.25,Sales: 510368.75,COGS: 103320,Profit: 407048.75,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3376`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67520,Discounts: 2663,Sales: 64857,COGS: 26630,Profit: 38227,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2244`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 33660,Discounts: 416.25,Sales: 33243.75,COGS: 5550,Profit: 27693.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1360`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20400,Discounts: 2145.75,Sales: 18254.25,COGS: 28610,Profit: 10355.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `279`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 34875,Discounts: 5043.75,Sales: 29831.25,COGS: 96840,Profit: 67008.75,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2521`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 882350,Discounts: 10535,Sales: 871815,COGS: 156520,Profit: 715295,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2433`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 48660,Discounts: 2832,Sales: 45828,COGS: 28320,Profit: 17508,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1738`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 34760,Discounts: 1579,Sales: 33181,COGS: 15790,Profit: 17391,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1106`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 138250,Discounts: 5381.25,Sales: 132868.75,COGS: 103320,Profit: 29548.75,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `213`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 63900,Discounts: 18750,Sales: 45150,COGS: 312500,Profit: 267350,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2929`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 58580,Discounts: 2663,Sales: 55917,COGS: 26630,Profit: 29287,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2389`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 16723,Discounts: 199.5,Sales: 16523.5,COGS: 2850,Profit: 13673.5,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3086`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21602,Discounts: 870.45,Sales: 20731.55,COGS: 12435,Profit: 8296.55,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `745`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 260750,Discounts: 23625,Sales: 237125,COGS: 351000,Profit: 113875,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1266`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 443100,Discounts: 9660,Sales: 433440,COGS: 143520,Profit: 289920,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4287`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1286100,Discounts: 18750,Sales: 1267350,COGS: 312500,Profit: 954850,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 47895,Discounts: 3420.9,Sales: 44474.1,COGS: 38010,Profit: 6464.1,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1967`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39340,Discounts: 1341,Sales: 37999,COGS: 11175,Profit: 26824,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `631`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 9465,Discounts: 2559.6,Sales: 6905.4,COGS: 28440,Profit: 21534.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3469`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 41628,Discounts: 404.64,Sales: 41223.36,COGS: 1686,Profit: 39537.36,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3215`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 48225,Discounts: 1827,Sales: 46398,COGS: 20300,Profit: 26098,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1959`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 685650,Discounts: 20580,Sales: 665070,COGS: 254800,Profit: 410270,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2181`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 763350,Discounts: 30660,Sales: 732690,COGS: 379600,Profit: 353090,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2205`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 26460,Discounts: 1960.56,Sales: 24499.44,COGS: 8169,Profit: 16330.44,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1890`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 661500,Discounts: 31416,Sales: 630084,COGS: 388960,Profit: 241124,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2417`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 302125,Discounts: 7140,Sales: 294985,COGS: 114240,Profit: 180745,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1158`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 144750,Discounts: 20662.5,Sales: 124087.5,COGS: 330600,Profit: 206512.5,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `803`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 12045,Discounts: 1377,Sales: 10668,COGS: 15300,Profit: 4632,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3705`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1296750,Discounts: 31416,Sales: 1265334,COGS: 388960,Profit: 876374,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `589`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 4123,Discounts: 629.16,Sales: 3493.84,COGS: 7490,Profit: 3996.16,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3999`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 59985,Discounts: 2559.6,Sales: 57425.4,COGS: 28440,Profit: 28985.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4256`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 29792,Discounts: 629.16,Sales: 29162.84,COGS: 7490,Profit: 21672.84,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2160`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 270000,Discounts: 14906.25,Sales: 255093.75,COGS: 238500,Profit: 16593.75,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `466`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 163100,Discounts: 35259,Sales: 127841,COGS: 436540,Profit: 308699,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1478`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 22170,Discounts: 1978.2,Sales: 20191.8,COGS: 21980,Profit: 1788.2,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3798`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 56970,Discounts: 1568.7,Sales: 55401.3,COGS: 17430,Profit: 37971.3,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `447`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 6705,Discounts: 1037.7,Sales: 5667.3,COGS: 11530,Profit: 5862.7,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `745`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 14900,Discounts: 1201.2,Sales: 13698.8,COGS: 10010,Profit: 3688.8,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1732`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 12124,Discounts: 559.86,Sales: 11564.14,COGS: 6665,Profit: 4899.14,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1759`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 26385,Discounts: 1037.7,Sales: 25347.3,COGS: 11530,Profit: 13817.3,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `338`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 4056,Discounts: 610.68,Sales: 3445.32,COGS: 2181,Profit: 1264.32,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3911`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 46932,Discounts: 1582.56,Sales: 45349.44,COGS: 5652,Profit: 39697.44,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `4473`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 53676,Discounts: 1965.6,Sales: 51710.4,COGS: 7020,Profit: 44690.4,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `383`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 4596,Discounts: 1967.28,Sales: 2628.72,COGS: 7026,Profit: 4397.28,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1062`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 15930,Discounts: 1325.1,Sales: 14604.9,COGS: 12620,Profit: 1984.9,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4083`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 28581,Discounts: 556.15,Sales: 28024.85,COGS: 5675,Profit: 22349.85,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3974`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 27818,Discounts: 268.03,Sales: 27549.97,COGS: 2735,Profit: 24814.97,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3723`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 26061,Discounts: 775.18,Sales: 25285.82,COGS: 7910,Profit: 17375.82,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2435`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 29220,Discounts: 1460.34,Sales: 27759.66,COGS: 5215.5,Profit: 22544.16,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1763`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 12341,Discounts: 775.18,Sales: 11565.82,COGS: 7910,Profit: 3655.82,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4473`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31311,Discounts: 556.15,Sales: 30754.85,COGS: 5675,Profit: 25079.85,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1246`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 436100,Discounts: 43144.5,Sales: 392955.5,COGS: 457860,Profit: 64904.5,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1615`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 484500,Discounts: 9408,Sales: 475092,COGS: 112000,Profit: 363092,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `749`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 224700,Discounts: 45801,Sales: 178899,COGS: 545250,Profit: 366351,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1318`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 26360,Discounts: 2766.4,Sales: 23593.6,COGS: 19760,Profit: 3833.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2882`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 864600,Discounts: 45801,Sales: 818799,COGS: 545250,Profit: 273549,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2484`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 745200,Discounts: 35742,Sales: 709458,COGS: 425500,Profit: 283958,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3169`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 950700,Discounts: 9408,Sales: 941292,COGS: 112000,Profit: 829292,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 510000,Discounts: 30738.75,Sales: 479261.25,COGS: 421560,Profit: 57701.25,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3943`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 59145,Discounts: 2206.05,Sales: 56938.95,COGS: 21010,Profit: 35928.95,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `253`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5060,Discounts: 2149,Sales: 2911,COGS: 15350,Profit: 12439,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `799`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 239700,Discounts: 34839,Sales: 204861,COGS: 414750,Profit: 209889,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3942`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 78840,Discounts: 852.6,Sales: 77987.4,COGS: 6090,Profit: 71897.4,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2498`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 312250,Discounts: 18261.25,Sales: 293988.75,COGS: 250440,Profit: 43548.75,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2517`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 50340,Discounts: 2766.4,Sales: 47573.6,COGS: 19760,Profit: 27813.6,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1145`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 343500,Discounts: 28812,Sales: 314688,COGS: 343000,Profit: 28312,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3814`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 45768,Discounts: 2725.38,Sales: 43042.62,COGS: 9733.5,Profit: 33309.12,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1188`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 356400,Discounts: 20139,Sales: 336261,COGS: 239750,Profit: 96511,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2233`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 669900,Discounts: 57687,Sales: 612213,COGS: 686750,Profit: 74537,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `421`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 52625,Discounts: 14393.75,Sales: 38231.25,COGS: 197400,Profit: 159168.75,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `269`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 94150,Discounts: 70462,Sales: 23688,COGS: 747760,Profit: 724072,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `952`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19040,Discounts: 1565.2,Sales: 17474.8,COGS: 11180,Profit: 6294.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2964`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 889200,Discounts: 28812,Sales: 860388,COGS: 343000,Profit: 517388,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1505`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10535,Discounts: 273.28,Sales: 10261.72,COGS: 2440,Profit: 7821.72,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1678`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 33560,Discounts: 2051.2,Sales: 31508.8,COGS: 12820,Profit: 18688.8,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4249`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 29743,Discounts: 143.92,Sales: 29599.08,COGS: 1285,Profit: 28314.08,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1677`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 33540,Discounts: 2051.2,Sales: 31488.8,COGS: 12820,Profit: 18668.8,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3051`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 381375,Discounts: 15400,Sales: 365975,COGS: 184800,Profit: 181175,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3372`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 50580,Discounts: 588,Sales: 49992,COGS: 4900,Profit: 45092,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1686`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 590100,Discounts: 38136,Sales: 551964,COGS: 354120,Profit: 197844,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3086`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 46290,Discounts: 3001.2,Sales: 43288.8,COGS: 25010,Profit: 18278.8,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4150`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 83000,Discounts: 1132.8,Sales: 81867.2,COGS: 7080,Profit: 74787.2,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3027`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 60540,Discounts: 1032,Sales: 59508,COGS: 6450,Profit: 53058,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4359`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1307700,Discounts: 37488,Sales: 1270212,COGS: 390500,Profit: 879712,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1589`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 23835,Discounts: 853.2,Sales: 22981.8,COGS: 7110,Profit: 15871.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2679`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 334875,Discounts: 11140,Sales: 323735,COGS: 133680,Profit: 190055,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 23807,Discounts: 705.04,Sales: 23101.96,COGS: 6295,Profit: 16806.96,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2815`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19705,Discounts: 613.2,Sales: 19091.8,COGS: 5475,Profit: 13616.8,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2964`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 59280,Discounts: 2185.6,Sales: 57094.4,COGS: 13660,Profit: 43434.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4173`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1251900,Discounts: 59040,Sales: 1192860,COGS: 615000,Profit: 577860,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1157`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 8099,Discounts: 379.68,Sales: 7719.32,COGS: 3390,Profit: 4329.32,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3065`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21455,Discounts: 894.88,Sales: 20560.12,COGS: 7990,Profit: 12570.12,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 81600,Discounts: 3094.4,Sales: 78505.6,COGS: 19340,Profit: 59165.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1713`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34260,Discounts: 4788.8,Sales: 29471.2,COGS: 29930,Profit: 458.8,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1691`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 591850,Discounts: 38136,Sales: 553714,COGS: 354120,Profit: 199594,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2305`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27660,Discounts: 574.08,Sales: 27085.92,COGS: 1794,Profit: 25291.92,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3401`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 23807,Discounts: 1627.92,Sales: 22179.08,COGS: 14535,Profit: 7644.08,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2288`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 16016,Discounts: 1309.28,Sales: 14706.72,COGS: 11690,Profit: 3016.72,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4086`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1225800,Discounts: 15240,Sales: 1210560,COGS: 158750,Profit: 1051810,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2651`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 927850,Discounts: 16086,Sales: 911764,COGS: 149370,Profit: 762394,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3971`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27797,Discounts: 1309.28,Sales: 26487.72,COGS: 11690,Profit: 14797.72,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2512`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 879200,Discounts: 10668,Sales: 868532,COGS: 99060,Profit: 769472,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 960750,Discounts: 11816,Sales: 948934,COGS: 109720,Profit: 839214,Date: `8/1/20`,MonthName: `August`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1903`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 570900,Discounts: 51216,Sales: 519684,COGS: 533500,Profit: 13816,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2914`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 58280,Discounts: 1132.8,Sales: 57147.2,COGS: 7080,Profit: 50067.2,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1889`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 13223,Discounts: 1627.92,Sales: 11595.08,COGS: 14535,Profit: 2939.92,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1466`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 29320,Discounts: 2185.6,Sales: 27134.4,COGS: 13660,Profit: 13474.4,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `887`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 266100,Discounts: 59040,Sales: 207060,COGS: 615000,Profit: 407940,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `395`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 7900,Discounts: 2432,Sales: 5468,COGS: 15200,Profit: 9732,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1693`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 25395,Discounts: 853.2,Sales: 24541.8,COGS: 7110,Profit: 17431.8,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2649`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 794700,Discounts: 15240,Sales: 779460,COGS: 158750,Profit: 620710,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3608`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 72160,Discounts: 698.4,Sales: 71461.6,COGS: 4365,Profit: 67096.6,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1073`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 321900,Discounts: 29538,Sales: 292362,COGS: 273500,Profit: 18862,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2167`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 650100,Discounts: 102667.5,Sales: 547432.5,COGS: 950625,Profit: 403192.5,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1319`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 461650,Discounts: 52479,Sales: 409171,COGS: 433160,Profit: 23989,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1252`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 15024,Discounts: 2506.68,Sales: 12517.32,COGS: 6963,Profit: 5554.32,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1156`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 144500,Discounts: 31466.25,Sales: 113033.75,COGS: 335640,Profit: 222606.25,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1153`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 345900,Discounts: 69255,Sales: 276645,COGS: 641250,Profit: 364605,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2720`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 952000,Discounts: 76135.5,Sales: 875864.5,COGS: 628420,Profit: 247444.5,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 54870,Discounts: 4961.25,Sales: 49908.75,COGS: 36750,Profit: 13158.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2950`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 885000,Discounts: 29538,Sales: 855462,COGS: 273500,Profit: 581962,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1821`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27315,Discounts: 1656.45,Sales: 25658.55,COGS: 12270,Profit: 13388.55,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1127`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 338100,Discounts: 35748,Sales: 302352,COGS: 331000,Profit: 28648,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `862`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 107750,Discounts: 31466.25,Sales: 76283.75,COGS: 335640,Profit: 259356.25,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3805`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 57075,Discounts: 330.75,Sales: 56744.25,COGS: 2450,Profit: 54294.25,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1415`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 424500,Discounts: 102424.5,Sales: 322075.5,COGS: 948375,Profit: 626299.5,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2231`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 780850,Discounts: 41170.5,Sales: 739679.5,COGS: 339820,Profit: 399859.5,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3649`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 456125,Discounts: 6378.75,Sales: 449746.25,COGS: 68040,Profit: 381706.25,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2948`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 368500,Discounts: 23737.5,Sales: 344762.5,COGS: 253200,Profit: 91562.5,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3395`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1188250,Discounts: 39973.5,Sales: 1148276.5,COGS: 329940,Profit: 818336.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2650`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31800,Discounts: 2112.48,Sales: 29687.52,COGS: 5868,Profit: 23819.52,Date: `1/1/20`,MonthName: `January`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `585`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 175500,Discounts: 71793,Sales: 103707,COGS: 664750,Profit: 561043,Date: `2/1/20`,MonthName: `February`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1316`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 460600,Discounts: 42572.25,Sales: 418027.75,COGS: 351390,Profit: 66637.75,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4459`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 53508,Discounts: 950.4,Sales: 52557.6,COGS: 2640,Profit: 49917.6,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2711`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 813300,Discounts: 50409,Sales: 762891,COGS: 466750,Profit: 296141,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3613`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 54195,Discounts: 1656.45,Sales: 52538.55,COGS: 12270,Profit: 40268.55,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1847`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 230875,Discounts: 9866.25,Sales: 221008.75,COGS: 105240,Profit: 115768.75,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2996`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1048600,Discounts: 65236.5,Sales: 983363.5,COGS: 538460,Profit: 444903.5,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2838`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 993300,Discounts: 39973.5,Sales: 953326.5,COGS: 329940,Profit: 623386.5,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1536`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 30720,Discounts: 3049.2,Sales: 27670.8,COGS: 16940,Profit: 10730.8,Date: `11/1/20`,MonthName: `November`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1291`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 25820,Discounts: 1193.4,Sales: 24626.6,COGS: 6630,Profit: 17996.6,Date: `5/1/20`,MonthName: `May`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1213`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 8491,Discounts: 515.97,Sales: 7975.03,COGS: 4095,Profit: 3880.03,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2370`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 28440,Discounts: 1706.4,Sales: 26733.6,COGS: 4740,Profit: 21993.6,Date: `9/1/20`,MonthName: `September`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1979`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 13853,Discounts: 328.23,Sales: 13524.77,COGS: 2605,Profit: 10919.77,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2879`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57580,Discounts: 1751.4,Sales: 55828.6,COGS: 9730,Profit: 46098.6,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1707`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34140,Discounts: 1868.4,Sales: 32271.6,COGS: 10380,Profit: 21891.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2933`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 20531,Discounts: 226.8,Sales: 20304.2,COGS: 1800,Profit: 18504.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1014`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 12168,Discounts: 2124.36,Sales: 10043.64,COGS: 5901,Profit: 4142.64,Date: `3/1/20`,MonthName: `March`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `693`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 10395,Discounts: 3547.8,Sales: 6847.2,COGS: 26280,Profit: 19432.8,Date: `4/1/20`,MonthName: `April`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3741`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26187,Discounts: 226.8,Sales: 25960.2,COGS: 1800,Profit: 24160.2,Date: `10/1/20`,MonthName: `October`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3995`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27965,Discounts: 328.23,Sales: 27636.77,COGS: 2605,Profit: 25031.77,Date: `12/1/20`,MonthName: `December`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `953`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19060,Discounts: 1868.4,Sales: 17191.6,COGS: 10380,Profit: 6811.6,Date: `6/1/20`,MonthName: `June`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2530`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 37950,Discounts: 2201.18,Sales: 35748.82,COGS: 16305,Profit: 19443.82,Date: `7/1/20`,MonthName: `July`,Year: `2020` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1372`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 27440,Discounts: 0,Sales: 27440,COGS: 16185,Profit: 11255,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2762`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 55240,Discounts: 0,Sales: 55240,COGS: 13210,Profit: 42030,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1464`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21960,Discounts: 0,Sales: 21960,COGS: 21780,Profit: 180,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `719`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 10785,Discounts: 0,Sales: 10785,COGS: 8880,Profit: 1905,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3576`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53640,Discounts: 0,Sales: 53640,COGS: 24700,Profit: 28940,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4422`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1547700,Discounts: 0,Sales: 1547700,COGS: 393380,Profit: 1154320,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3649`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 54735,Discounts: 0,Sales: 54735,COGS: 9210,Profit: 45525,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4172`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 50064,Discounts: 0,Sales: 50064,COGS: 7554,Profit: 42510,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3841`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 76820,Discounts: 0,Sales: 76820,COGS: 18990,Profit: 57830,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3726`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 44712,Discounts: 0,Sales: 44712,COGS: 4635,Profit: 40077,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2625`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 39375,Discounts: 0,Sales: 39375,COGS: 24700,Profit: 14675,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1958`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 244750,Discounts: 0,Sales: 244750,COGS: 319860,Profit: 75110,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3271`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 981300,Discounts: 0,Sales: 981300,COGS: 239500,Profit: 741800,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2091`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 14637,Discounts: 0,Sales: 14637,COGS: 10730,Profit: 3907,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2530`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 316250,Discounts: 0,Sales: 316250,COGS: 41400,Profit: 274850,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2825`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 42375,Discounts: 0,Sales: 42375,COGS: 6150,Profit: 36225,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2513`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 50260,Discounts: 0,Sales: 50260,COGS: 2920,Profit: 47340,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `883`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 13245,Discounts: 0,Sales: 13245,COGS: 9740,Profit: 3505,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 25044,Discounts: 0,Sales: 25044,COGS: 7554,Profit: 17490,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2563`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 897050,Discounts: 0,Sales: 897050,COGS: 261560,Profit: 635490,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2846`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34152,Discounts: 0,Sales: 34152,COGS: 1101,Profit: 33051,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `997`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 6979,Discounts: 0,Sales: 6979,COGS: 4415,Profit: 2564,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3421`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 51315,Discounts: 0,Sales: 51315,COGS: 5490,Profit: 45825,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Marchesa`,UnitsSold: `70000`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 1050000,Discounts: 0,Sales: 1050000,COGS: 5490,Profit: 1044510,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2291`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 687300,Discounts: 0,Sales: 687300,COGS: 197000,Profit: 490300,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2290`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 34350,Discounts: 0,Sales: 34350,COGS: 24720,Profit: 9630,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2133`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14931,Discounts: 0,Sales: 14931,COGS: 5715,Profit: 9216,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3475`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1216250,Discounts: 0,Sales: 1216250,COGS: 448500,Profit: 767750,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3686`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 44232,Discounts: 0,Sales: 44232,COGS: 2736,Profit: 41496,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3319`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 49785,Discounts: 0,Sales: 49785,COGS: 21520,Profit: 28265,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3617`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 72340,Discounts: 0,Sales: 72340,COGS: 18170,Profit: 54170,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1266`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 443100,Discounts: 0,Sales: 443100,COGS: 393380,Profit: 49720,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `894`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6258,Discounts: 0,Sales: 6258,COGS: 7465,Profit: 1207,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2725`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 340625,Discounts: 0,Sales: 340625,COGS: 216480,Profit: 124145,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3061`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 36732,Discounts: 0,Sales: 36732,COGS: 6483,Profit: 30249,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3958`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1385300,Discounts: 0,Sales: 1385300,COGS: 261560,Profit: 1123740,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3920`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 47040,Discounts: 0,Sales: 47040,COGS: 4635,Profit: 42405,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3381`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422625,Discounts: 0,Sales: 422625,COGS: 338520,Profit: 84105,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1094`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 136750,Discounts: 0,Sales: 136750,COGS: 41400,Profit: 95350,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4307`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1292100,Discounts: 0,Sales: 1292100,COGS: 500250,Profit: 791850,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `878`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10536,Discounts: 0,Sales: 10536,COGS: 8514,Profit: 2022,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `496`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 7440,Discounts: 0,Sales: 7440,COGS: 21780,Profit: 14340,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3367`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 50505,Discounts: 0,Sales: 50505,COGS: 8880,Profit: 41625,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3880`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1358000,Discounts: 0,Sales: 1358000,COGS: 397020,Profit: 960980,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2055`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 616500,Discounts: 0,Sales: 616500,COGS: 537750,Profit: 78750,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4041`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 80820,Discounts: 0,Sales: 80820,COGS: 18170,Profit: 62650,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `3237`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1132950,Discounts: 0,Sales: 1132950,COGS: 715000,Profit: 417950,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `630`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 7560,Discounts: 0,Sales: 7560,COGS: 5859,Profit: 1701,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4210`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 526250,Discounts: 0,Sales: 526250,COGS: 506340,Profit: 19910,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1127`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 22540,Discounts: 0,Sales: 22540,COGS: 18990,Profit: 3550,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3438`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 24066,Discounts: 0,Sales: 24066,COGS: 8430,Profit: 15636,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2015`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 24180,Discounts: 0,Sales: 24180,COGS: 6423,Profit: 17757,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2534`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 17738,Discounts: 0,Sales: 17738,COGS: 5715,Profit: 12023,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1384`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 20760,Discounts: 0,Sales: 20760,COGS: 6150,Profit: 14610,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3561`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 24927,Discounts: 276.15,Sales: 24650.85,COGS: 19725,Profit: 4925.85,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1823`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27345,Discounts: 344.4,Sales: 27000.6,COGS: 22960,Profit: 4040.6,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19565,Discounts: 72.1,Sales: 19492.9,COGS: 5150,Profit: 14342.9,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `457`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3199,Discounts: 44.73,Sales: 3154.27,COGS: 3195,Profit: 40.73,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3785`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26495,Discounts: 92.82,Sales: 26402.18,COGS: 6630,Profit: 19772.18,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `748`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 8976,Discounts: 222.96,Sales: 8753.04,COGS: 5574,Profit: 3179.04,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1021`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 357350,Discounts: 4235,Sales: 353115,COGS: 314600,Profit: 38515,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2076`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 14532,Discounts: 177.03,Sales: 14354.97,COGS: 12645,Profit: 1709.97,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `4316`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51792,Discounts: 173.4,Sales: 51618.6,COGS: 4335,Profit: 47283.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2654`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 331750,Discounts: 412.5,Sales: 331337.5,COGS: 39600,Profit: 291737.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4174`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50088,Discounts: 320.52,Sales: 49767.48,COGS: 8013,Profit: 41754.48,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1675`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 20100,Discounts: 91.92,Sales: 20008.08,COGS: 2298,Profit: 17710.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1572`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 471600,Discounts: 1482,Sales: 470118,COGS: 123500,Profit: 346618,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3736`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1307600,Discounts: 4889.5,Sales: 1302710.5,COGS: 363220,Profit: 939490.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1914`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 669900,Discounts: 7542.5,Sales: 662357.5,COGS: 560300,Profit: 102057.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2742`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 41130,Discounts: 332.1,Sales: 40797.9,COGS: 22140,Profit: 18657.9,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1499`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 449700,Discounts: 6903,Sales: 442797,COGS: 575250,Profit: 132453,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 75440,Discounts: 275.1,Sales: 75164.9,COGS: 13755,Profit: 61409.9,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1112`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 7784,Discounts: 128.1,Sales: 7655.9,COGS: 9150,Profit: 1494.1,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1723`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 516900,Discounts: 7494,Sales: 509406,COGS: 624500,Profit: 115094,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `423`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 52875,Discounts: 828.75,Sales: 52046.25,COGS: 79560,Profit: 27513.75,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2368`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 35520,Discounts: 227.1,Sales: 35292.9,COGS: 15140,Profit: 20152.9,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 11102,Discounts: 314.48,Sales: 10787.52,COGS: 22462.5,Profit: 11674.98,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3386`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 423250,Discounts: 908.75,Sales: 422341.25,COGS: 87240,Profit: 335101.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `852`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 106500,Discounts: 983.75,Sales: 105516.25,COGS: 94440,Profit: 11076.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2783`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 347875,Discounts: 2278.75,Sales: 345596.25,COGS: 218760,Profit: 126836.25,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2684`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 40260,Discounts: 112.05,Sales: 40147.95,COGS: 7470,Profit: 32677.95,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4393`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 52716,Discounts: 91.92,Sales: 52624.08,COGS: 2298,Profit: 50326.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4083`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1224900,Discounts: 8715,Sales: 1216185,COGS: 726250,Profit: 489935,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2816`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 985600,Discounts: 7542.5,Sales: 978057.5,COGS: 560300,Profit: 417757.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4294`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 85880,Discounts: 772.8,Sales: 85107.2,COGS: 38640,Profit: 46467.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 25.34,Sales: 19966.66,COGS: 1810,Profit: 18156.66,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1407`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 175875,Discounts: 1153.75,Sales: 174721.25,COGS: 110760,Profit: 63961.25,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3850`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 481250,Discounts: 828.75,Sales: 480421.25,COGS: 79560,Profit: 400861.25,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2856`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 19992,Discounts: 146.44,Sales: 19845.56,COGS: 10460,Profit: 9385.56,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1265`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 8855,Discounts: 18.41,Sales: 8836.59,COGS: 1315,Profit: 7521.59,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3892`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1362200,Discounts: 3302.25,Sales: 1358897.75,COGS: 245310,Profit: 1113587.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3068`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 383500,Discounts: 908.75,Sales: 382591.25,COGS: 87240,Profit: 295351.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2181`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 272625,Discounts: 983.75,Sales: 271641.25,COGS: 94440,Profit: 177201.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1356`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 406800,Discounts: 2958,Sales: 403842,COGS: 246500,Profit: 157342,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2545`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 763500,Discounts: 1482,Sales: 762018,COGS: 123500,Profit: 638518,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1814`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 634900,Discounts: 4889.5,Sales: 630010.5,COGS: 363220,Profit: 266790.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1495`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 186875,Discounts: 2180,Sales: 184695,COGS: 209280,Profit: 24585,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1154`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 13848,Discounts: 238.68,Sales: 13609.32,COGS: 5967,Profit: 7642.32,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `4180`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 62700,Discounts: 48.15,Sales: 62651.85,COGS: 3210,Profit: 59441.85,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1463`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 182875,Discounts: 1856.25,Sales: 181018.75,COGS: 89100,Profit: 91918.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `215`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 2580,Discounts: 310.8,Sales: 2269.2,COGS: 3885,Profit: 1615.8,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `4099`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 1229700,Discounts: 1284,Sales: 1228416,COGS: 53500,Profit: 1174916,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2660`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 18620,Discounts: 300.3,Sales: 18319.7,COGS: 10725,Profit: 7594.7,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `566`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 198100,Discounts: 19964,Sales: 178136,COGS: 741520,Profit: 563384,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3255`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 39060,Discounts: 274.08,Sales: 38785.92,COGS: 3426,Profit: 35359.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `772`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15440,Discounts: 626.4,Sales: 14813.6,COGS: 15660,Profit: 846.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1135`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13620,Discounts: 165.6,Sales: 13454.4,COGS: 2070,Profit: 11384.4,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3826`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 478250,Discounts: 4150,Sales: 474100,COGS: 199200,Profit: 274900,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 17895,Discounts: 708.9,Sales: 17186.1,COGS: 23630,Profit: 6443.9,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2530`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 759000,Discounts: 5508,Sales: 753492,COGS: 229500,Profit: 523992,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3451`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1035300,Discounts: 10368,Sales: 1024932,COGS: 432000,Profit: 592932,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3059`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 36708,Discounts: 274.08,Sales: 36433.92,COGS: 3426,Profit: 33007.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3957`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 494625,Discounts: 1655,Sales: 492970,COGS: 79440,Profit: 413530,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3444`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 41328,Discounts: 310.8,Sales: 41017.2,COGS: 3885,Profit: 37132.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4388`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 548500,Discounts: 2022.5,Sales: 546477.5,COGS: 97080,Profit: 449397.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2106`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 263250,Discounts: 5362.5,Sales: 257887.5,COGS: 257400,Profit: 487.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `799`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 9588,Discounts: 428.4,Sales: 9159.6,COGS: 5355,Profit: 3804.6,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3154`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 946200,Discounts: 11496,Sales: 934704,COGS: 479000,Profit: 455704,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4108`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1437800,Discounts: 19964,Sales: 1417836,COGS: 741520,Profit: 676316,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3760`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 470000,Discounts: 6822.5,Sales: 463177.5,COGS: 327480,Profit: 135697.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `377`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 5655,Discounts: 577.5,Sales: 5077.5,COGS: 19250,Profit: 14172.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2110`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14770,Discounts: 281.82,Sales: 14488.18,COGS: 10065,Profit: 4423.18,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2334`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28008,Discounts: 253.2,Sales: 27754.8,COGS: 3165,Profit: 24589.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `580`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 6960,Discounts: 260.16,Sales: 6699.84,COGS: 3252,Profit: 3447.84,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2610`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 52200,Discounts: 626.4,Sales: 51573.6,COGS: 15660,Profit: 35913.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1598`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 559300,Discounts: 20762,Sales: 538538,COGS: 771160,Profit: 232622,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1459`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 510650,Discounts: 20139,Sales: 490511,COGS: 748020,Profit: 257509,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3284`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 410500,Discounts: 2022.5,Sales: 408477.5,COGS: 97080,Profit: 311397.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1197`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 149625,Discounts: 5362.5,Sales: 144262.5,COGS: 257400,Profit: 113137.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3774`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 45288,Discounts: 253.2,Sales: 45034.8,COGS: 3165,Profit: 41869.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2303`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 46060,Discounts: 217.6,Sales: 45842.4,COGS: 5440,Profit: 40402.4,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2572`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 30864,Discounts: 260.16,Sales: 30603.84,COGS: 3252,Profit: 27351.84,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `320`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 40000,Discounts: 1655,Sales: 38345,COGS: 79440,Profit: 41095,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2126`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 637800,Discounts: 1284,Sales: 636516,COGS: 53500,Profit: 583016,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3275`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1146250,Discounts: 20139,Sales: 1126111,COGS: 748020,Profit: 378091,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3582`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 447750,Discounts: 6822.5,Sales: 440927.5,COGS: 327480,Profit: 113447.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `783`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 274050,Discounts: 1862,Sales: 272188,COGS: 69160,Profit: 203028,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1202`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 420700,Discounts: 13580,Sales: 407120,COGS: 504400,Profit: 97280,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4056`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1216800,Discounts: 1554,Sales: 1215246,COGS: 64750,Profit: 1150496,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2144`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 643200,Discounts: 6606,Sales: 636594,COGS: 275250,Profit: 361344,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3502`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 437750,Discounts: 5690,Sales: 432060,COGS: 273120,Profit: 158940,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1397`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 488950,Discounts: 20762,Sales: 468188,COGS: 771160,Profit: 302972,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `679`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 13580,Discounts: 494.4,Sales: 13085.6,COGS: 12360,Profit: 725.6,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2351`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 47020,Discounts: 376.4,Sales: 46643.6,COGS: 9410,Profit: 37233.6,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2043`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 612900,Discounts: 11496,Sales: 601404,COGS: 479000,Profit: 122404,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3565`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 445625,Discounts: 15913.13,Sales: 429711.88,COGS: 509220,Profit: 79508.13,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1401`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 28020,Discounts: 1548,Sales: 26472,COGS: 25800,Profit: 672,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2077`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 623100,Discounts: 6201,Sales: 616899,COGS: 172250,Profit: 444649,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 43716,Discounts: 700.92,Sales: 43015.08,COGS: 5841,Profit: 37174.08,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1105`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 13260,Discounts: 326.88,Sales: 12933.12,COGS: 2724,Profit: 10209.12,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2960`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20720,Discounts: 411.18,Sales: 20308.82,COGS: 9790,Profit: 10518.82,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1201`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 14412,Discounts: 684.36,Sales: 13727.64,COGS: 5703,Profit: 8024.64,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2321`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 16247,Discounts: 114.24,Sales: 16132.76,COGS: 2720,Profit: 13412.76,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3640`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1274000,Discounts: 18868.5,Sales: 1255131.5,COGS: 467220,Profit: 787911.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3972`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 496500,Discounts: 4826.25,Sales: 491673.75,COGS: 154440,Profit: 337233.75,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3878`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 484750,Discounts: 6397.5,Sales: 478352.5,COGS: 204720,Profit: 273632.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2278`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 683400,Discounts: 21910.5,Sales: 661489.5,COGS: 608625,Profit: 52864.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1075`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 134375,Discounts: 6652.5,Sales: 127722.5,COGS: 212880,Profit: 85157.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4050`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 48600,Discounts: 684.36,Sales: 47915.64,COGS: 5703,Profit: 42212.64,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3035`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 910500,Discounts: 6201,Sales: 904299,COGS: 172250,Profit: 732049,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3636`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 454500,Discounts: 5887.5,Sales: 448612.5,COGS: 188400,Profit: 260212.5,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1379`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 16548,Discounts: 493.02,Sales: 16054.98,COGS: 4108.5,Profit: 11946.48,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4492`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 561500,Discounts: 7533.75,Sales: 553966.25,COGS: 241080,Profit: 312886.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `764`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11460,Discounts: 875.25,Sales: 10584.75,COGS: 19450,Profit: 8865.25,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1744`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 218000,Discounts: 4826.25,Sales: 213173.75,COGS: 154440,Profit: 58733.75,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2341`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 292625,Discounts: 6397.5,Sales: 286227.5,COGS: 204720,Profit: 81507.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 479375,Discounts: 7533.75,Sales: 471841.25,COGS: 241080,Profit: 230761.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1161`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 348300,Discounts: 25596,Sales: 322704,COGS: 711000,Profit: 388296,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `876`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 10512,Discounts: 689.76,Sales: 9822.24,COGS: 5748,Profit: 4074.24,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1705`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 213125,Discounts: 5887.5,Sales: 207237.5,COGS: 188400,Profit: 18837.5,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1805`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 541500,Discounts: 16866,Sales: 524634,COGS: 468500,Profit: 56134,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `389`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 136150,Discounts: 17241,Sales: 118909,COGS: 426920,Profit: 308011,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 41175,Discounts: 875.25,Sales: 40299.75,COGS: 19450,Profit: 20849.75,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1459`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 29180,Discounts: 498.6,Sales: 28681.4,COGS: 8310,Profit: 20371.4,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3938`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27566,Discounts: 369.6,Sales: 27196.4,COGS: 8800,Profit: 18396.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4236`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 84720,Discounts: 2310.3,Sales: 82409.7,COGS: 38505,Profit: 43904.7,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3627`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 43524,Discounts: 892.44,Sales: 42631.56,COGS: 7437,Profit: 35194.56,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1756`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 26340,Discounts: 1218.6,Sales: 25121.4,COGS: 20310,Profit: 4811.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `307`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 4605,Discounts: 1218.6,Sales: 3386.4,COGS: 20310,Profit: 16923.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4489`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 67335,Discounts: 1356.6,Sales: 65978.4,COGS: 22610,Profit: 43368.4,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2167`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 43340,Discounts: 588.8,Sales: 42751.2,COGS: 7360,Profit: 35391.2,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1137`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 7959,Discounts: 798.28,Sales: 7160.72,COGS: 14255,Profit: 7094.28,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1222`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 366600,Discounts: 24252,Sales: 342348,COGS: 505250,Profit: 162902,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `489`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 171150,Discounts: 3836,Sales: 167314,COGS: 71240,Profit: 96074,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4133`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 61995,Discounts: 1180.2,Sales: 60814.8,COGS: 19670,Profit: 41144.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2743`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 822900,Discounts: 22308,Sales: 800592,COGS: 464750,Profit: 335842,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3699`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 25893,Discounts: 798.28,Sales: 25094.72,COGS: 14255,Profit: 10839.72,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `4460`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1338000,Discounts: 24252,Sales: 1313748,COGS: 505250,Profit: 808498,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1232`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 154000,Discounts: 5690,Sales: 148310,COGS: 136560,Profit: 11750,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2586`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 18102,Discounts: 1190.28,Sales: 16911.72,COGS: 21255,Profit: 4343.28,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1332`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 166500,Discounts: 3975,Sales: 162525,COGS: 95400,Profit: 67125,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4487`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1346100,Discounts: 16974,Sales: 1329126,COGS: 353625,Profit: 975501,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3862`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1158600,Discounts: 35016,Sales: 1123584,COGS: 729500,Profit: 394084,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1765`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 617750,Discounts: 48300,Sales: 569450,COGS: 897000,Profit: 327550,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3533`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 441625,Discounts: 14940,Sales: 426685,COGS: 358560,Profit: 68125,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2016`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 30240,Discounts: 130.8,Sales: 30109.2,COGS: 2180,Profit: 27929.2,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58760,Discounts: 1659.2,Sales: 57100.8,COGS: 20740,Profit: 36360.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3352`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67040,Discounts: 844.8,Sales: 66195.2,COGS: 10560,Profit: 55635.2,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4409`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 66135,Discounts: 402.6,Sales: 65732.4,COGS: 6710,Profit: 59022.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3323`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 49845,Discounts: 908.4,Sales: 48936.6,COGS: 15140,Profit: 33796.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2430`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 850500,Discounts: 3836,Sales: 846664,COGS: 71240,Profit: 775424,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `535`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 66875,Discounts: 5690,Sales: 61185,COGS: 136560,Profit: 75375,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1523`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 18276,Discounts: 703.2,Sales: 17572.8,COGS: 4395,Profit: 13177.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3631`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 72620,Discounts: 2116.8,Sales: 70503.2,COGS: 26460,Profit: 44043.2,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1782`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 623700,Discounts: 30478,Sales: 593222,COGS: 566020,Profit: 27202,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `347`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 4164,Discounts: 415.68,Sales: 3748.32,COGS: 2598,Profit: 1150.32,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `4147`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1451450,Discounts: 4886,Sales: 1446564,COGS: 90740,Profit: 1355824,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3509`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 1228150,Discounts: 30478,Sales: 1197672,COGS: 566020,Profit: 631652,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2774`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 41610,Discounts: 908.4,Sales: 40701.6,COGS: 15140,Profit: 25561.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2943`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1030050,Discounts: 26110,Sales: 1003940,COGS: 484900,Profit: 519040,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4037`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 504625,Discounts: 5370,Sales: 499255,COGS: 128880,Profit: 370375,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4146`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1451100,Discounts: 26698,Sales: 1424402,COGS: 495820,Profit: 928582,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `4123`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 61845,Discounts: 402.6,Sales: 61442.4,COGS: 6710,Profit: 54732.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1337`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 467950,Discounts: 24892,Sales: 443058,COGS: 462280,Profit: 19222,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `599`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 4193,Discounts: 405.65,Sales: 3787.35,COGS: 5795,Profit: 2007.65,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `725`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 5075,Discounts: 480.2,Sales: 4594.8,COGS: 6860,Profit: 2265.2,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `477`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 3339,Discounts: 822.15,Sales: 2516.85,COGS: 11745,Profit: 9228.15,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 16275,Discounts: 941.15,Sales: 15333.85,COGS: 13445,Profit: 1888.85,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `675`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 8100,Discounts: 1458.6,Sales: 6641.4,COGS: 7293,Profit: 651.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2990`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35880,Discounts: 1458.6,Sales: 34421.4,COGS: 7293,Profit: 27128.4,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1072`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 7504,Discounts: 941.15,Sales: 6562.85,COGS: 13445,Profit: 6882.15,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1048`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7336,Discounts: 589.05,Sales: 6746.95,COGS: 8415,Profit: 1668.05,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `469`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 5628,Discounts: 673.8,Sales: 4954.2,COGS: 3369,Profit: 1585.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `804`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 5628,Discounts: 405.65,Sales: 5222.35,COGS: 5795,Profit: 572.65,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4240`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 50880,Discounts: 1119,Sales: 49761,COGS: 5595,Profit: 44166,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1976`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 23712,Discounts: 669.6,Sales: 23042.4,COGS: 3348,Profit: 19694.4,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1984`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39680,Discounts: 1563,Sales: 38117,COGS: 15630,Profit: 22487,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `480`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 144000,Discounts: 14865,Sales: 129135,COGS: 247750,Profit: 118615,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `3551`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 24857,Discounts: 355.6,Sales: 24501.4,COGS: 5080,Profit: 19421.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1205`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 18075,Discounts: 2093.25,Sales: 15981.75,COGS: 27910,Profit: 11928.25,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2480`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17360,Discounts: 199.5,Sales: 17160.5,COGS: 2850,Profit: 14310.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2926`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 20482,Discounts: 870.45,Sales: 19611.55,COGS: 12435,Profit: 7176.55,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3210`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1123500,Discounts: 24228.75,Sales: 1099271.25,COGS: 359970,Profit: 739301.25,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `3221`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 402625,Discounts: 22668.75,Sales: 379956.25,COGS: 435240,Profit: 55283.75,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2389`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 836150,Discounts: 12600,Sales: 823550,COGS: 187200,Profit: 636350,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1127`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 13524,Discounts: 1405.2,Sales: 12118.8,COGS: 7026,Profit: 5092.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `319`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 95700,Discounts: 16500,Sales: 79200,COGS: 275000,Profit: 195800,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1610`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 32200,Discounts: 1303,Sales: 30897,COGS: 13030,Profit: 17867,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4100`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 512500,Discounts: 18700,Sales: 493800,COGS: 359040,Profit: 134760,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1012`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 126500,Discounts: 14906.25,Sales: 111593.75,COGS: 286200,Profit: 174606.25,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3337`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1001100,Discounts: 24105,Sales: 976995,COGS: 401750,Profit: 575245,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3955`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 27685,Discounts: 814.45,Sales: 26870.55,COGS: 11635,Profit: 15235.55,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4347`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1304100,Discounts: 14865,Sales: 1289235,COGS: 247750,Profit: 1041485,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1548`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 541800,Discounts: 10535,Sales: 531265,COGS: 156520,Profit: 374745,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2153`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 32295,Discounts: 1965,Sales: 30330,COGS: 26200,Profit: 4130,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3789`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1326150,Discounts: 21490,Sales: 1304660,COGS: 319280,Profit: 985380,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4364`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 87280,Discounts: 1389,Sales: 85891,COGS: 13890,Profit: 72001,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4126`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 515750,Discounts: 5381.25,Sales: 510368.75,COGS: 103320,Profit: 407048.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1343`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 167875,Discounts: 4400,Sales: 163475,COGS: 84480,Profit: 78995,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `245`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 4900,Discounts: 1802,Sales: 3098,COGS: 18020,Profit: 14922,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3376`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 67520,Discounts: 2663,Sales: 64857,COGS: 26630,Profit: 38227,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 9807,Discounts: 747.6,Sales: 9059.4,COGS: 10680,Profit: 1620.6,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3483`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 52245,Discounts: 1587,Sales: 50658,COGS: 21160,Profit: 29498,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2244`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 33660,Discounts: 416.25,Sales: 33243.75,COGS: 5550,Profit: 27693.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1360`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20400,Discounts: 2145.75,Sales: 18254.25,COGS: 28610,Profit: 10355.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `279`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 34875,Discounts: 5043.75,Sales: 29831.25,COGS: 96840,Profit: 67008.75,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2521`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 882350,Discounts: 10535,Sales: 871815,COGS: 156520,Profit: 715295,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2433`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 48660,Discounts: 2832,Sales: 45828,COGS: 28320,Profit: 17508,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1738`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 34760,Discounts: 1579,Sales: 33181,COGS: 15790,Profit: 17391,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1106`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 138250,Discounts: 5381.25,Sales: 132868.75,COGS: 103320,Profit: 29548.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3379`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 422375,Discounts: 4400,Sales: 417975,COGS: 84480,Profit: 333495,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1221`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 24420,Discounts: 1033,Sales: 23387,COGS: 10330,Profit: 13057,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `213`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 63900,Discounts: 18750,Sales: 45150,COGS: 312500,Profit: 267350,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3335`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 66700,Discounts: 1389,Sales: 65311,COGS: 13890,Profit: 51421,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1260`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 25200,Discounts: 1265,Sales: 23935,COGS: 12650,Profit: 11285,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3034`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 60680,Discounts: 2297,Sales: 58383,COGS: 22970,Profit: 35413,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2929`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 58580,Discounts: 2663,Sales: 55917,COGS: 26630,Profit: 29287,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2389`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 16723,Discounts: 199.5,Sales: 16523.5,COGS: 2850,Profit: 13673.5,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3086`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21602,Discounts: 870.45,Sales: 20731.55,COGS: 12435,Profit: 8296.55,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `745`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 260750,Discounts: 23625,Sales: 237125,COGS: 351000,Profit: 113875,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1266`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 443100,Discounts: 9660,Sales: 433440,COGS: 143520,Profit: 289920,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3790`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1326500,Discounts: 21490,Sales: 1305010,COGS: 319280,Profit: 985730,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `4287`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1286100,Discounts: 18750,Sales: 1267350,COGS: 312500,Profit: 954850,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3193`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 47895,Discounts: 3420.9,Sales: 44474.1,COGS: 38010,Profit: 6464.1,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1967`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 39340,Discounts: 1341,Sales: 37999,COGS: 11175,Profit: 26824,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `631`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 9465,Discounts: 2559.6,Sales: 6905.4,COGS: 28440,Profit: 21534.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3469`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 41628,Discounts: 404.64,Sales: 41223.36,COGS: 1686,Profit: 39537.36,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `570`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 6840,Discounts: 1655.28,Sales: 5184.72,COGS: 6897,Profit: 1712.28,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3215`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 48225,Discounts: 1827,Sales: 46398,COGS: 20300,Profit: 26098,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `3754`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 26278,Discounts: 110.46,Sales: 26167.54,COGS: 1315,Profit: 24852.54,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2187`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 273375,Discounts: 6652.5,Sales: 266722.5,COGS: 106440,Profit: 160282.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1959`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 685650,Discounts: 20580,Sales: 665070,COGS: 254800,Profit: 410270,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2181`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 763350,Discounts: 30660,Sales: 732690,COGS: 379600,Profit: 353090,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3559`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 24913,Discounts: 589.26,Sales: 24323.74,COGS: 7015,Profit: 17308.74,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2205`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 26460,Discounts: 1960.56,Sales: 24499.44,COGS: 8169,Profit: 16330.44,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1890`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 661500,Discounts: 31416,Sales: 630084,COGS: 388960,Profit: 241124,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1296`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 15552,Discounts: 1655.28,Sales: 13896.72,COGS: 6897,Profit: 6999.72,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `775`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 271250,Discounts: 15267,Sales: 255983,COGS: 189020,Profit: 66963,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2417`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 302125,Discounts: 7140,Sales: 294985,COGS: 114240,Profit: 180745,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1158`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 144750,Discounts: 20662.5,Sales: 124087.5,COGS: 330600,Profit: 206512.5,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `803`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 12045,Discounts: 1377,Sales: 10668,COGS: 15300,Profit: 4632,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3705`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1296750,Discounts: 31416,Sales: 1265334,COGS: 388960,Profit: 876374,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `589`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 4123,Discounts: 629.16,Sales: 3493.84,COGS: 7490,Profit: 3996.16,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3797`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1139100,Discounts: 21978,Sales: 1117122,COGS: 305250,Profit: 811872,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1321`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 462350,Discounts: 43596,Sales: 418754,COGS: 539760,Profit: 121006,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3999`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 59985,Discounts: 2559.6,Sales: 57425.4,COGS: 28440,Profit: 28985.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4256`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 29792,Discounts: 629.16,Sales: 29162.84,COGS: 7490,Profit: 21672.84,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1643`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 492900,Discounts: 21978,Sales: 470922,COGS: 305250,Profit: 165672,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1912`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 38240,Discounts: 1347.6,Sales: 36892.4,COGS: 11230,Profit: 25662.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1610`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 483000,Discounts: 43848,Sales: 439152,COGS: 609000,Profit: 169848,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2160`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 270000,Discounts: 14906.25,Sales: 255093.75,COGS: 238500,Profit: 16593.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `466`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 163100,Discounts: 35259,Sales: 127841,COGS: 436540,Profit: 308699,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `328`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 114800,Discounts: 15267,Sales: 99533,COGS: 189020,Profit: 89487,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `4099`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 28693,Discounts: 589.26,Sales: 28103.74,COGS: 7015,Profit: 21088.74,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `990`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 346500,Discounts: 43596,Sales: 302904,COGS: 539760,Profit: 236856,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1433`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 28660,Discounts: 2108.4,Sales: 26551.6,COGS: 17570,Profit: 8981.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1478`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 22170,Discounts: 1978.2,Sales: 20191.8,COGS: 21980,Profit: 1788.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3798`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 56970,Discounts: 1568.7,Sales: 55401.3,COGS: 17430,Profit: 37971.3,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `447`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 6705,Discounts: 1037.7,Sales: 5667.3,COGS: 11530,Profit: 5862.7,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1711`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34220,Discounts: 2108.4,Sales: 32111.6,COGS: 17570,Profit: 14541.6,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `745`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 14900,Discounts: 1201.2,Sales: 13698.8,COGS: 10010,Profit: 3688.8,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `1732`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 12124,Discounts: 559.86,Sales: 11564.14,COGS: 6665,Profit: 4899.14,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1759`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 26385,Discounts: 1037.7,Sales: 25347.3,COGS: 11530,Profit: 13817.3,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `338`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 4056,Discounts: 610.68,Sales: 3445.32,COGS: 2181,Profit: 1264.32,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3911`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 46932,Discounts: 1582.56,Sales: 45349.44,COGS: 5652,Profit: 39697.44,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3691`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 73820,Discounts: 2567.6,Sales: 71252.4,COGS: 18340,Profit: 52912.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `4473`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 53676,Discounts: 1965.6,Sales: 51710.4,COGS: 7020,Profit: 44690.4,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `383`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 4596,Discounts: 1967.28,Sales: 2628.72,COGS: 7026,Profit: 4397.28,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3105`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21735,Discounts: 505.19,Sales: 21229.81,COGS: 5155,Profit: 16074.81,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1062`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 15930,Discounts: 1325.1,Sales: 14604.9,COGS: 12620,Profit: 1984.9,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `4083`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 28581,Discounts: 556.15,Sales: 28024.85,COGS: 5675,Profit: 22349.85,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3974`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 27818,Discounts: 268.03,Sales: 27549.97,COGS: 2735,Profit: 24814.97,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3723`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 26061,Discounts: 775.18,Sales: 25285.82,COGS: 7910,Profit: 17375.82,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2435`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 29220,Discounts: 1460.34,Sales: 27759.66,COGS: 5215.5,Profit: 22544.16,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `1678`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 20136,Discounts: 1860.6,Sales: 18275.4,COGS: 6645,Profit: 11630.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1763`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 12341,Discounts: 775.18,Sales: 11565.82,COGS: 7910,Profit: 3655.82,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4473`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31311,Discounts: 556.15,Sales: 30754.85,COGS: 5675,Profit: 25079.85,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1246`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 436100,Discounts: 43144.5,Sales: 392955.5,COGS: 457860,Profit: 64904.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1615`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 484500,Discounts: 9408,Sales: 475092,COGS: 112000,Profit: 363092,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `749`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 224700,Discounts: 45801,Sales: 178899,COGS: 545250,Profit: 366351,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1318`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 26360,Discounts: 2766.4,Sales: 23593.6,COGS: 19760,Profit: 3833.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `2882`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 864600,Discounts: 45801,Sales: 818799,COGS: 545250,Profit: 273549,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3039`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 379875,Discounts: 21875,Sales: 358000,COGS: 300000,Profit: 58000,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2484`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 745200,Discounts: 35742,Sales: 709458,COGS: 425500,Profit: 283958,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3169`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 950700,Discounts: 9408,Sales: 941292,COGS: 112000,Profit: 829292,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 510000,Discounts: 30738.75,Sales: 479261.25,COGS: 421560,Profit: 57701.25,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3943`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 59145,Discounts: 2206.05,Sales: 56938.95,COGS: 21010,Profit: 35928.95,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `784`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11760,Discounts: 3077.55,Sales: 8682.45,COGS: 29310,Profit: 20627.55,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `253`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5060,Discounts: 2149,Sales: 2911,COGS: 15350,Profit: 12439,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1316`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 394800,Discounts: 23583,Sales: 371217,COGS: 280750,Profit: 90467,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `808`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 242400,Discounts: 29484,Sales: 212916,COGS: 351000,Profit: 138084,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3295`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 39540,Discounts: 2320.92,Sales: 37219.08,COGS: 8289,Profit: 28930.08,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `520`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 3640,Discounts: 1041.25,Sales: 2598.75,COGS: 10625,Profit: 8026.25,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `799`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 239700,Discounts: 34839,Sales: 204861,COGS: 414750,Profit: 209889,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3942`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 78840,Discounts: 852.6,Sales: 77987.4,COGS: 6090,Profit: 71897.4,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2498`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 312250,Discounts: 18261.25,Sales: 293988.75,COGS: 250440,Profit: 43548.75,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2517`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 50340,Discounts: 2766.4,Sales: 47573.6,COGS: 19760,Profit: 27813.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3182`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 63640,Discounts: 1989.4,Sales: 61650.6,COGS: 14210,Profit: 47440.6,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1145`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 343500,Discounts: 28812,Sales: 314688,COGS: 343000,Profit: 28312,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `895`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 17900,Discounts: 823.2,Sales: 17076.8,COGS: 5880,Profit: 11196.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3814`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 45768,Discounts: 2725.38,Sales: 43042.62,COGS: 9733.5,Profit: 33309.12,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1188`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 356400,Discounts: 20139,Sales: 336261,COGS: 239750,Profit: 96511,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2233`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 669900,Discounts: 57687,Sales: 612213,COGS: 686750,Profit: 74537,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `421`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 52625,Discounts: 14393.75,Sales: 38231.25,COGS: 197400,Profit: 159168.75,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `269`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 94150,Discounts: 70462,Sales: 23688,COGS: 747760,Profit: 724072,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `3766`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 470750,Discounts: 8697.5,Sales: 462052.5,COGS: 119280,Profit: 342772.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `952`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19040,Discounts: 1565.2,Sales: 17474.8,COGS: 11180,Profit: 6294.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2964`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 889200,Discounts: 28812,Sales: 860388,COGS: 343000,Profit: 517388,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1505`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10535,Discounts: 273.28,Sales: 10261.72,COGS: 2440,Profit: 7821.72,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1678`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 33560,Discounts: 2051.2,Sales: 31508.8,COGS: 12820,Profit: 18688.8,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4249`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 29743,Discounts: 143.92,Sales: 29599.08,COGS: 1285,Profit: 28314.08,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1677`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 33540,Discounts: 2051.2,Sales: 31488.8,COGS: 12820,Profit: 18668.8,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3051`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 381375,Discounts: 15400,Sales: 365975,COGS: 184800,Profit: 181175,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `3372`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 50580,Discounts: 588,Sales: 49992,COGS: 4900,Profit: 45092,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1686`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 590100,Discounts: 38136,Sales: 551964,COGS: 354120,Profit: 197844,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3086`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 46290,Discounts: 3001.2,Sales: 43288.8,COGS: 25010,Profit: 18278.8,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `4150`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 83000,Discounts: 1132.8,Sales: 81867.2,COGS: 7080,Profit: 74787.2,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3027`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 60540,Discounts: 1032,Sales: 59508,COGS: 6450,Profit: 53058,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4359`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1307700,Discounts: 37488,Sales: 1270212,COGS: 390500,Profit: 879712,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3628`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1088400,Discounts: 30792,Sales: 1057608,COGS: 320750,Profit: 736858,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `1589`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 23835,Discounts: 853.2,Sales: 22981.8,COGS: 7110,Profit: 15871.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2679`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 334875,Discounts: 11140,Sales: 323735,COGS: 133680,Profit: 190055,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3401`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 23807,Discounts: 705.04,Sales: 23101.96,COGS: 6295,Profit: 16806.96,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2815`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 19705,Discounts: 613.2,Sales: 19091.8,COGS: 5475,Profit: 13616.8,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2964`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 59280,Discounts: 2185.6,Sales: 57094.4,COGS: 13660,Profit: 43434.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4173`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1251900,Discounts: 59040,Sales: 1192860,COGS: 615000,Profit: 577860,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1157`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 8099,Discounts: 379.68,Sales: 7719.32,COGS: 3390,Profit: 4329.32,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3065`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 21455,Discounts: 894.88,Sales: 20560.12,COGS: 7990,Profit: 12570.12,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1962`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 13734,Discounts: 1349.04,Sales: 12384.96,COGS: 12045,Profit: 339.96,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4080`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 81600,Discounts: 3094.4,Sales: 78505.6,COGS: 19340,Profit: 59165.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1713`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34260,Discounts: 4788.8,Sales: 29471.2,COGS: 29930,Profit: 458.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2795`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 978250,Discounts: 60088,Sales: 918162,COGS: 557960,Profit: 360202,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4082`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 28574,Discounts: 1089.76,Sales: 27484.24,COGS: 9730,Profit: 17754.24,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1691`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 591850,Discounts: 38136,Sales: 553714,COGS: 354120,Profit: 199594,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2305`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27660,Discounts: 574.08,Sales: 27085.92,COGS: 1794,Profit: 25291.92,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3401`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 23807,Discounts: 1627.92,Sales: 22179.08,COGS: 14535,Profit: 7644.08,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2288`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 16016,Discounts: 1309.28,Sales: 14706.72,COGS: 11690,Profit: 3016.72,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `2399`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 719700,Discounts: 9264,Sales: 710436,COGS: 96500,Profit: 613936,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4086`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1225800,Discounts: 15240,Sales: 1210560,COGS: 158750,Profit: 1051810,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2651`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 927850,Discounts: 16086,Sales: 911764,COGS: 149370,Profit: 762394,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3971`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27797,Discounts: 1309.28,Sales: 26487.72,COGS: 11690,Profit: 14797.72,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2512`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 879200,Discounts: 10668,Sales: 868532,COGS: 99060,Profit: 769472,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2745`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 960750,Discounts: 11816,Sales: 948934,COGS: 109720,Profit: 839214,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1903`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 570900,Discounts: 51216,Sales: 519684,COGS: 533500,Profit: 13816,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `647`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 194100,Discounts: 19392,Sales: 174708,COGS: 202000,Profit: 27292,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2914`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 58280,Discounts: 1132.8,Sales: 57147.2,COGS: 7080,Profit: 50067.2,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1889`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 13223,Discounts: 1627.92,Sales: 11595.08,COGS: 14535,Profit: 2939.92,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1466`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 29320,Discounts: 2185.6,Sales: 27134.4,COGS: 13660,Profit: 13474.4,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `887`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 266100,Discounts: 59040,Sales: 207060,COGS: 615000,Profit: 407940,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `395`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 7900,Discounts: 2432,Sales: 5468,COGS: 15200,Profit: 9732,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1693`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 25395,Discounts: 853.2,Sales: 24541.8,COGS: 7110,Profit: 17431.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2459`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 29508,Discounts: 1320,Sales: 28188,COGS: 4125,Profit: 24063,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2649`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 794700,Discounts: 15240,Sales: 779460,COGS: 158750,Profit: 620710,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3608`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 72160,Discounts: 698.4,Sales: 71461.6,COGS: 4365,Profit: 67096.6,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1073`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 321900,Discounts: 29538,Sales: 292362,COGS: 273500,Profit: 18862,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1754`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 21048,Discounts: 396.36,Sales: 20651.64,COGS: 1101,Profit: 19550.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2167`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 650100,Discounts: 102667.5,Sales: 547432.5,COGS: 950625,Profit: 403192.5,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1319`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 461650,Discounts: 52479,Sales: 409171,COGS: 433160,Profit: 23989,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1679`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 503700,Discounts: 8694,Sales: 495006,COGS: 80500,Profit: 414506,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1252`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 15024,Discounts: 2506.68,Sales: 12517.32,COGS: 6963,Profit: 5554.32,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3493`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 436625,Discounts: 20891.25,Sales: 415733.75,COGS: 222840,Profit: 192893.75,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1697`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 11879,Discounts: 1014.93,Sales: 10864.07,COGS: 8055,Profit: 2809.07,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1156`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 144500,Discounts: 31466.25,Sales: 113033.75,COGS: 335640,Profit: 222606.25,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `726`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 217800,Discounts: 9018,Sales: 208782,COGS: 83500,Profit: 125282,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1153`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 345900,Discounts: 69255,Sales: 276645,COGS: 641250,Profit: 364605,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2720`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 952000,Discounts: 76135.5,Sales: 875864.5,COGS: 628420,Profit: 247444.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 54870,Discounts: 4961.25,Sales: 49908.75,COGS: 36750,Profit: 13158.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2950`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 885000,Discounts: 29538,Sales: 855462,COGS: 273500,Profit: 581962,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1821`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 27315,Discounts: 1656.45,Sales: 25658.55,COGS: 12270,Profit: 13388.55,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4174`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 50088,Discounts: 396.36,Sales: 49691.64,COGS: 1101,Profit: 48590.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1127`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 338100,Discounts: 35748,Sales: 302352,COGS: 331000,Profit: 28648,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2209`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 26508,Discounts: 1917,Sales: 24591,COGS: 5325,Profit: 19266,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `862`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 107750,Discounts: 31466.25,Sales: 76283.75,COGS: 335640,Profit: 259356.25,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3805`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 57075,Discounts: 330.75,Sales: 56744.25,COGS: 2450,Profit: 54294.25,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1415`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 424500,Discounts: 102424.5,Sales: 322075.5,COGS: 948375,Profit: 626299.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2231`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 780850,Discounts: 41170.5,Sales: 739679.5,COGS: 339820,Profit: 399859.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3649`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 456125,Discounts: 6378.75,Sales: 449746.25,COGS: 68040,Profit: 381706.25,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2948`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 368500,Discounts: 23737.5,Sales: 344762.5,COGS: 253200,Profit: 91562.5,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `3395`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1188250,Discounts: 39973.5,Sales: 1148276.5,COGS: 329940,Profit: 818336.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2650`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31800,Discounts: 2112.48,Sales: 29687.52,COGS: 5868,Profit: 23819.52,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `585`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 175500,Discounts: 71793,Sales: 103707,COGS: 664750,Profit: 561043,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1316`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 460600,Discounts: 42572.25,Sales: 418027.75,COGS: 351390,Profit: 66637.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4459`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 53508,Discounts: 950.4,Sales: 52557.6,COGS: 2640,Profit: 49917.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2711`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 813300,Discounts: 50409,Sales: 762891,COGS: 466750,Profit: 296141,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2621`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 31452,Discounts: 2412.72,Sales: 29039.28,COGS: 6702,Profit: 22337.28,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3613`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 54195,Discounts: 1656.45,Sales: 52538.55,COGS: 12270,Profit: 40268.55,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1847`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 230875,Discounts: 9866.25,Sales: 221008.75,COGS: 105240,Profit: 115768.75,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2996`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1048600,Discounts: 65236.5,Sales: 983363.5,COGS: 538460,Profit: 444903.5,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2838`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 993300,Discounts: 39973.5,Sales: 953326.5,COGS: 329940,Profit: 623386.5,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `1302`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 19530,Discounts: 1309.5,Sales: 18220.5,COGS: 9700,Profit: 8520.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1536`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 30720,Discounts: 3049.2,Sales: 27670.8,COGS: 16940,Profit: 10730.8,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1291`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 25820,Discounts: 1193.4,Sales: 24626.6,COGS: 6630,Profit: 17996.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1213`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 8491,Discounts: 515.97,Sales: 7975.03,COGS: 4095,Profit: 3880.03,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2370`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 28440,Discounts: 1706.4,Sales: 26733.6,COGS: 4740,Profit: 21993.6,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1979`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 13853,Discounts: 328.23,Sales: 13524.77,COGS: 2605,Profit: 10919.77,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2879`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57580,Discounts: 1751.4,Sales: 55828.6,COGS: 9730,Profit: 46098.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1707`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 34140,Discounts: 1868.4,Sales: 32271.6,COGS: 10380,Profit: 21891.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2933`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 20531,Discounts: 226.8,Sales: 20304.2,COGS: 1800,Profit: 18504.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1014`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 12168,Discounts: 2124.36,Sales: 10043.64,COGS: 5901,Profit: 4142.64,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `693`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 10395,Discounts: 3547.8,Sales: 6847.2,COGS: 26280,Profit: 19432.8,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3741`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 26187,Discounts: 226.8,Sales: 25960.2,COGS: 1800,Profit: 24160.2,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3116`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 62320,Discounts: 4827.6,Sales: 57492.4,COGS: 26820,Profit: 30672.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3995`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 27965,Discounts: 328.23,Sales: 27636.77,COGS: 2605,Profit: 25031.77,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `953`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 19060,Discounts: 1868.4,Sales: 17191.6,COGS: 10380,Profit: 6811.6,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `2530`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 37950,Discounts: 2201.18,Sales: 35748.82,COGS: 16305,Profit: 19443.82,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2565`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 30780,Discounts: 330.48,Sales: 30449.52,COGS: 918,Profit: 29531.52,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `4297`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 51564,Discounts: 463.2,Sales: 51100.8,COGS: 1158,Profit: 49942.8,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2871`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20097,Discounts: 1629.6,Sales: 18467.4,COGS: 11640,Profit: 6827.4,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3537`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 42444,Discounts: 463.2,Sales: 41980.8,COGS: 1158,Profit: 40822.8,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1598`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 199750,Discounts: 43068.75,Sales: 156681.25,COGS: 413460,Profit: 256778.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2616`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 327000,Discounts: 18525,Sales: 308475,COGS: 177840,Profit: 130635,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2836`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 992600,Discounts: 80955,Sales: 911645,COGS: 601380,Profit: 310265,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `4023`,ManufacturingPrice: 5,SalePrice: 125,GrossSales: 502875,Discounts: 22550,Sales: 480325,COGS: 216480,Profit: 263845,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3994`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 59910,Discounts: 3108,Sales: 56802,COGS: 20720,Profit: 36082,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2928`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 58560,Discounts: 3908,Sales: 54652,COGS: 19540,Profit: 35112,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2912`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 873600,Discounts: 17730,Sales: 855870,COGS: 147750,Profit: 708120,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3671`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 55065,Discounts: 3250.5,Sales: 51814.5,COGS: 21670,Profit: 30144.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2778`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 55560,Discounts: 482,Sales: 55078,COGS: 2410,Profit: 52668,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `405`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 6075,Discounts: 1021.5,Sales: 5053.5,COGS: 6810,Profit: 1756.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `2013`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 30195,Discounts: 765,Sales: 29430,COGS: 5100,Profit: 24330,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2634`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 39510,Discounts: 1185,Sales: 38325,COGS: 7900,Profit: 30425,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4166`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1458100,Discounts: 22365,Sales: 1435735,COGS: 166140,Profit: 1269595,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `355`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 44375,Discounts: 19950,Sales: 24425,COGS: 191520,Profit: 167095,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2382`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 714600,Discounts: 68820,Sales: 645780,COGS: 573500,Profit: 72280,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `4170`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 83400,Discounts: 482,Sales: 82918,COGS: 2410,Profit: 80508,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `892`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 6244,Discounts: 1865.5,Sales: 4378.5,COGS: 13325,Profit: 8946.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2200`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 275000,Discounts: 23950,Sales: 251050,COGS: 229920,Profit: 21130,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3389`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1016700,Discounts: 25590,Sales: 991110,COGS: 213250,Profit: 777860,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `2990`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 373750,Discounts: 4262.5,Sales: 369487.5,COGS: 40920,Profit: 328567.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4013`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 60195,Discounts: 961.5,Sales: 59233.5,COGS: 6410,Profit: 52823.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `739`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 258650,Discounts: 98245,Sales: 160405,COGS: 729820,Profit: 569415,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `1989`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 596700,Discounts: 12960,Sales: 583740,COGS: 108000,Profit: 475740,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2991`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 897300,Discounts: 68820,Sales: 828480,COGS: 573500,Profit: 254980,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `4237`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 63555,Discounts: 3250.5,Sales: 60304.5,COGS: 21670,Profit: 38634.5,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1442`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 180250,Discounts: 31612.5,Sales: 148637.5,COGS: 303480,Profit: 154842.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2712`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 949200,Discounts: 65450,Sales: 883750,COGS: 486200,Profit: 397550,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1508`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 188500,Discounts: 7237.5,Sales: 181262.5,COGS: 69480,Profit: 111782.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4245`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1485750,Discounts: 78400,Sales: 1407350,COGS: 582400,Profit: 824950,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2630`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 789000,Discounts: 89790,Sales: 699210,COGS: 748250,Profit: 49040,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1182`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 14184,Discounts: 4224.6,Sales: 9959.4,COGS: 10561.5,Profit: 602.1,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1221`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 24420,Discounts: 4078,Sales: 20342,COGS: 20390,Profit: 48,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `963`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 11556,Discounts: 3088.8,Sales: 8467.2,COGS: 7722,Profit: 745.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3243`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 1135050,Discounts: 24745,Sales: 1110305,COGS: 183820,Profit: 926485,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1120`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 16800,Discounts: 3108,Sales: 13692,COGS: 20720,Profit: 7028,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1174`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 352200,Discounts: 25590,Sales: 326610,COGS: 213250,Profit: 113360,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `2541`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 30492,Discounts: 1581.36,Sales: 28910.64,COGS: 3594,Profit: 25316.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3246`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 22722,Discounts: 1949.64,Sales: 20772.36,COGS: 12660,Profit: 8112.36,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1531`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 18372,Discounts: 1581.36,Sales: 16790.64,COGS: 3594,Profit: 13196.64,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2526`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 37890,Discounts: 633.6,Sales: 37256.4,COGS: 3840,Profit: 33416.4,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1136`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 13632,Discounts: 623.04,Sales: 13008.96,COGS: 1416,Profit: 11592.96,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1983`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 13881,Discounts: 1215.83,Sales: 12665.17,COGS: 7895,Profit: 4770.17,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `3259`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 39108,Discounts: 1326.6,Sales: 37781.4,COGS: 3015,Profit: 34766.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `3267`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 49005,Discounts: 5279.17,Sales: 43725.82,COGS: 31995,Profit: 11730.82,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `2454`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 29448,Discounts: 623.04,Sales: 28824.96,COGS: 1416,Profit: 27408.96,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `2643`,ManufacturingPrice: 3,SalePrice: 12,GrossSales: 31716,Discounts: 2556.84,Sales: 29159.16,COGS: 5811,Profit: 23348.16,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `383`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 134050,Discounts: 30492,Sales: 103558,COGS: 205920,Profit: 102362,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2801`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 840300,Discounts: 92763,Sales: 747537,COGS: 702750,Profit: 44787,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1667`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 208375,Discounts: 33563.75,Sales: 174811.25,COGS: 292920,Profit: 118108.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3539`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 53085,Discounts: 2574,Sales: 50511,COGS: 15600,Profit: 34911,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `4226`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 29582,Discounts: 2083.62,Sales: 27498.38,COGS: 13530,Profit: 13968.38,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `2220`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 777000,Discounts: 29491,Sales: 747509,COGS: 199160,Profit: 548349,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `776`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 15520,Discounts: 6582.4,Sales: 8937.6,COGS: 29920,Profit: 20982.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `553`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 8295,Discounts: 3559.05,Sales: 4735.95,COGS: 21570,Profit: 16834.05,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2107`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 632100,Discounts: 28809,Sales: 603291,COGS: 218250,Profit: 385041,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2468`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 49360,Discounts: 2468.4,Sales: 46891.6,COGS: 11220,Profit: 35671.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1905`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 666750,Discounts: 81023.25,Sales: 585726.75,COGS: 547170,Profit: 38556.75,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3658`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 43896,Discounts: 5314.32,Sales: 38581.68,COGS: 12078,Profit: 26503.68,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `4301`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 51612,Discounts: 3201.66,Sales: 48410.34,COGS: 7276.5,Profit: 41133.84,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2446`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 48920,Discounts: 5266.8,Sales: 43653.2,COGS: 23940,Profit: 19713.2,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `4209`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 63135,Discounts: 3273.6,Sales: 59861.4,COGS: 19840,Profit: 40021.4,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3353`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 419125,Discounts: 33563.75,Sales: 385561.25,COGS: 292920,Profit: 92641.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1401`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 28020,Discounts: 6582.4,Sales: 21437.6,COGS: 29920,Profit: 8482.4,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1865`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 559500,Discounts: 45078,Sales: 514422,COGS: 341500,Profit: 172922,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `463`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 9260,Discounts: 6171,Sales: 3089,COGS: 28050,Profit: 24961,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4177`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 62655,Discounts: 1080.75,Sales: 61574.25,COGS: 6550,Profit: 55024.25,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2523`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 883050,Discounts: 13244,Sales: 869806,COGS: 89440,Profit: 780366,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `1930`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 13510,Discounts: 1392.16,Sales: 12117.84,COGS: 9040,Profit: 3077.84,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1301`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 15612,Discounts: 2288.88,Sales: 13323.12,COGS: 5202,Profit: 8121.12,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4125`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 515625,Discounts: 7617.5,Sales: 508007.5,COGS: 66480,Profit: 441527.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `607`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 12140,Discounts: 6457,Sales: 5683,COGS: 29350,Profit: 23667,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `478`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 59750,Discounts: 43518.75,Sales: 16231.25,COGS: 379800,Profit: 363568.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `4489`,ManufacturingPrice: 260,SalePrice: 20,GrossSales: 89780,Discounts: 5783.8,Sales: 83996.2,COGS: 26290,Profit: 57706.2,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1504`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 188000,Discounts: 19703.75,Sales: 168296.25,COGS: 171960,Profit: 3663.75,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `3763`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 470375,Discounts: 13021.25,Sales: 457353.75,COGS: 113640,Profit: 343713.75,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2412`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 844200,Discounts: 13244,Sales: 830956,COGS: 89440,Profit: 741516,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `2342`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 35130,Discounts: 3559.05,Sales: 31570.95,COGS: 21570,Profit: 10000.95,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4451`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 31157,Discounts: 292.6,Sales: 30864.4,COGS: 1900,Profit: 28964.4,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3796`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1328600,Discounts: 37212,Sales: 1291388,COGS: 230360,Profit: 1061028,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `2286`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 285750,Discounts: 36240,Sales: 249510,COGS: 289920,Profit: 40410,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `3614`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 451750,Discounts: 32340,Sales: 419410,COGS: 258720,Profit: 160690,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1716`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 25740,Discounts: 4840.2,Sales: 20899.8,COGS: 26890,Profit: 5990.2,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1301`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 19515,Discounts: 1218.6,Sales: 18296.4,COGS: 6770,Profit: 11526.4,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `4175`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1252500,Discounts: 63828,Sales: 1188672,COGS: 443250,Profit: 745422,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `975`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 6825,Discounts: 2032.8,Sales: 4792.2,COGS: 12100,Profit: 7307.8,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `1154`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 8078,Discounts: 2296.56,Sales: 5781.44,COGS: 13670,Profit: 7888.56,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1873`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 37460,Discounts: 4116,Sales: 33344,COGS: 17150,Profit: 16194,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `3766`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 1129800,Discounts: 42696,Sales: 1087104,COGS: 296500,Profit: 790604,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3558`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1067400,Discounts: 125820,Sales: 941580,COGS: 873750,Profit: 67830,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3156`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1104600,Discounts: 37212,Sales: 1067388,COGS: 230360,Profit: 837028,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2994`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 374250,Discounts: 32340,Sales: 341910,COGS: 258720,Profit: 83190,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2087`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 41740,Discounts: 2172,Sales: 39568,COGS: 9050,Profit: 30518,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1056`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 21120,Discounts: 4116,Sales: 17004,COGS: 17150,Profit: 146,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1353`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 473550,Discounts: 66948,Sales: 406602,COGS: 414440,Profit: 7838,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `416`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 124800,Discounts: 48924,Sales: 75876,COGS: 339750,Profit: 263874,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `3880`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1164000,Discounts: 77400,Sales: 1086600,COGS: 537500,Profit: 549100,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `809`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 283150,Discounts: 50274,Sales: 232876,COGS: 311220,Profit: 78344,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1892`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 28380,Discounts: 684,Sales: 27696,COGS: 3800,Profit: 23896,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2072`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 41440,Discounts: 2959.2,Sales: 38480.8,COGS: 12330,Profit: 26150.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3052`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1068200,Discounts: 58590,Sales: 1009610,COGS: 362700,Profit: 646910,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `3121`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 1092350,Discounts: 41412,Sales: 1050938,COGS: 256360,Profit: 794578,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2059`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 41180,Discounts: 2172,Sales: 39008,COGS: 9050,Profit: 29958,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4254`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 51048,Discounts: 3036.96,Sales: 48011.04,COGS: 6327,Profit: 41684.04,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `1293`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 19395,Discounts: 6974.1,Sales: 12420.9,COGS: 38745,Profit: 26324.1,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1293`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 452550,Discounts: 26166,Sales: 426384,COGS: 161980,Profit: 264404,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `230`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 80500,Discounts: 41412,Sales: 39088,COGS: 256360,Profit: 217272,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1723`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 215375,Discounts: 35805,Sales: 179570,COGS: 286440,Profit: 106870,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `240`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 4800,Discounts: 2959.2,Sales: 1840.8,COGS: 12330,Profit: 10489.2,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `2571`,ManufacturingPrice: 260,SalePrice: 350,GrossSales: 899850,Discounts: 11340,Sales: 888510,COGS: 70200,Profit: 818310,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1661`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 11627,Discounts: 2874.06,Sales: 8752.94,COGS: 17107.5,Profit: 8354.56,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `4474`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 31318,Discounts: 2296.56,Sales: 29021.44,COGS: 13670,Profit: 15351.44,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `833`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 12495,Discounts: 4586.4,Sales: 7908.6,COGS: 25480,Profit: 17571.4,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `674`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 13480,Discounts: 6051.6,Sales: 7428.4,COGS: 25215,Profit: 17786.6,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `778`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 9336,Discounts: 3831.84,Sales: 5504.16,COGS: 7983,Profit: 2478.84,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1457`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 29140,Discounts: 3674.4,Sales: 25465.6,COGS: 15310,Profit: 10155.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `3158`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 22106,Discounts: 1252.44,Sales: 20853.56,COGS: 7455,Profit: 13398.56,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `4095`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 81900,Discounts: 3674.4,Sales: 78225.6,COGS: 15310,Profit: 62915.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3170`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 38040,Discounts: 3975.84,Sales: 34064.16,COGS: 8283,Profit: 25781.16,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `493`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 7395,Discounts: 5005.65,Sales: 2389.35,COGS: 25670,Profit: 23280.65,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `3286`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 49290,Discounts: 5005.65,Sales: 44284.35,COGS: 25670,Profit: 18614.35,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `3563`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1247050,Discounts: 41996.5,Sales: 1205053.5,COGS: 239980,Profit: 965073.5,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `4109`,ManufacturingPrice: 3,SalePrice: 350,GrossSales: 1438150,Discounts: 81445,Sales: 1356705,COGS: 465400,Profit: 891305,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `3653`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 73060,Discounts: 1149.2,Sales: 71910.8,COGS: 4420,Profit: 67490.8,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2203`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 771050,Discounts: 44703.75,Sales: 726346.25,COGS: 255450,Profit: 470896.25,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `2924`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 20468,Discounts: 1181.18,Sales: 19286.82,COGS: 6490,Profit: 12796.82,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2650`,ManufacturingPrice: 5,SalePrice: 12,GrossSales: 31800,Discounts: 942.24,Sales: 30857.76,COGS: 1812,Profit: 29045.76,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `1194`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 23880,Discounts: 5863,Sales: 18017,COGS: 22550,Profit: 4533,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3366`,ManufacturingPrice: 5,SalePrice: 20,GrossSales: 67320,Discounts: 3247.4,Sales: 64072.6,COGS: 12490,Profit: 51582.6,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1325`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 9275,Discounts: 1309.04,Sales: 7965.97,COGS: 7192.5,Profit: 773.47,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `4243`,ManufacturingPrice: 10,SalePrice: 300,GrossSales: 1272900,Discounts: 31473,Sales: 1241427,COGS: 201750,Profit: 1039677,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2887`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 57740,Discounts: 6866.6,Sales: 50873.4,COGS: 26410,Profit: 24463.4,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3839`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 76780,Discounts: 7040.8,Sales: 69739.2,COGS: 27080,Profit: 42659.2,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1863`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 652050,Discounts: 119756,Sales: 532294,COGS: 684320,Profit: 152026,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2858`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 357250,Discounts: 25723.75,Sales: 331526.25,COGS: 189960,Profit: 141566.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2868`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 34416,Discounts: 890.76,Sales: 33525.24,COGS: 1713,Profit: 31812.24,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `3805`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 26635,Discounts: 2453.36,Sales: 24181.64,COGS: 13480,Profit: 10701.64,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3914`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 58710,Discounts: 3051.75,Sales: 55658.25,COGS: 15650,Profit: 40008.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `524`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 10480,Discounts: 3247.4,Sales: 7232.6,COGS: 12490,Profit: 5257.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `3095`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1083250,Discounts: 16243.5,Sales: 1067006.5,COGS: 92820,Profit: 974186.5,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2410`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 28920,Discounts: 1580.28,Sales: 27339.72,COGS: 3039,Profit: 24300.72,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `4263`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 63945,Discounts: 7795.13,Sales: 56149.88,COGS: 39975,Profit: 16174.88,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2239`,ManufacturingPrice: 120,SalePrice: 350,GrossSales: 783650,Discounts: 119756,Sales: 663894,COGS: 684320,Profit: 20426,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `569`,ManufacturingPrice: 120,SalePrice: 7,GrossSales: 3983,Discounts: 1082.9,Sales: 2900.1,COGS: 5950,Profit: 3049.9,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3889`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 46668,Discounts: 942.24,Sales: 45725.76,COGS: 1812,Profit: 43913.76,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `1378`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 20670,Discounts: 1287,Sales: 19383,COGS: 6600,Profit: 12783,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2253`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 27036,Discounts: 639.6,Sales: 26396.4,COGS: 1230,Profit: 25166.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `3202`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 960600,Discounts: 101595,Sales: 859005,COGS: 651250,Profit: 207755,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3835`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 46020,Discounts: 1580.28,Sales: 44439.72,COGS: 3039,Profit: 41400.72,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `2487`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 310875,Discounts: 25723.75,Sales: 285151.25,COGS: 189960,Profit: 95191.25,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4428`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 66420,Discounts: 3051.75,Sales: 63368.25,COGS: 15650,Profit: 47718.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1200`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 150000,Discounts: 26958.75,Sales: 123041.25,COGS: 199080,Profit: 76038.75,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2953`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 20671,Discounts: 1082.9,Sales: 19588.1,COGS: 5950,Profit: 13638.1,Date: `6/1/19`,MonthName: `June`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1453`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 17436,Discounts: 639.6,Sales: 16796.4,COGS: 1230,Profit: 15566.4,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Luxe`,UnitsSold: `865`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 10380,Discounts: 2761.2,Sales: 7618.8,COGS: 5310,Profit: 2308.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `1072`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 21440,Discounts: 7221.2,Sales: 14218.8,COGS: 25790,Profit: 11571.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1737`,ManufacturingPrice: 3,SalePrice: 20,GrossSales: 34740,Discounts: 4880.4,Sales: 29859.6,COGS: 17430,Profit: 12429.6,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `1535`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 10745,Discounts: 2936.08,Sales: 7808.92,COGS: 14980,Profit: 7171.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2532`,ManufacturingPrice: 3,SalePrice: 7,GrossSales: 17724,Discounts: 274.4,Sales: 17449.6,COGS: 1400,Profit: 16049.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Royal Oak`,UnitsSold: `1765`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 12355,Discounts: 287.14,Sales: 12067.86,COGS: 1465,Profit: 10602.86,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Royal Oak`,UnitsSold: `1567`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 10969,Discounts: 2936.08,Sales: 8032.92,COGS: 14980,Profit: 6947.08,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2640`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 39600,Discounts: 583.8,Sales: 39016.2,COGS: 2780,Profit: 36236.2,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3079`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 61580,Discounts: 6798.4,Sales: 54781.6,COGS: 24280,Profit: 30501.6,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `4130`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 61950,Discounts: 3710.7,Sales: 58239.3,COGS: 17670,Profit: 40569.3,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2938`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 35256,Discounts: 2340.24,Sales: 32915.76,COGS: 4179,Profit: 28736.76,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `3080`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 21560,Discounts: 274.4,Sales: 21285.6,COGS: 1400,Profit: 19885.6,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1530`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 18360,Discounts: 2340.24,Sales: 16019.76,COGS: 4179,Profit: 11840.76,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `3537`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 42444,Discounts: 3385.2,Sales: 39058.8,COGS: 6045,Profit: 33013.8,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `2021`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 606300,Discounts: 33642,Sales: 572658,COGS: 200250,Profit: 372408,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1804`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 225500,Discounts: 17902.5,Sales: 207597.5,COGS: 122760,Profit: 84837.5,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1014`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 304200,Discounts: 62832,Sales: 241368,COGS: 374000,Profit: 132632,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Kensington`,UnitsSold: `2913`,ManufacturingPrice: 3,SalePrice: 300,GrossSales: 873900,Discounts: 42420,Sales: 831480,COGS: 252500,Profit: 578980,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `763`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 11445,Discounts: 3177.3,Sales: 8267.7,COGS: 15130,Profit: 6862.3,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Kensington`,UnitsSold: `1425`,ManufacturingPrice: 3,SalePrice: 15,GrossSales: 21375,Discounts: 4830,Sales: 16545,COGS: 23000,Profit: 6455,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Kensington`,UnitsSold: `4357`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 544625,Discounts: 49367.5,Sales: 495257.5,COGS: 338520,Profit: 156737.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2138`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 748300,Discounts: 109147.5,Sales: 639152.5,COGS: 579150,Profit: 60002.5,Date: `1/1/19`,MonthName: `January`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Royal Oak`,UnitsSold: `3825`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1338750,Discounts: 58751,Sales: 1279999,COGS: 311740,Profit: 968259,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `3393`,ManufacturingPrice: 5,SalePrice: 350,GrossSales: 1187550,Discounts: 9800,Sales: 1177750,COGS: 52000,Profit: 1125750,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `2215`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 15505,Discounts: 380.24,Sales: 15124.76,COGS: 1940,Profit: 13184.76,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2278`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 15946,Discounts: 1692.46,Sales: 14253.54,COGS: 8635,Profit: 5618.54,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Royal Oak`,UnitsSold: `403`,ManufacturingPrice: 5,SalePrice: 15,GrossSales: 6045,Discounts: 4830,Sales: 1215,COGS: 23000,Profit: 21785,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `289`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 5780,Discounts: 728,Sales: 5052,COGS: 2600,Profit: 2452,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `749`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 11235,Discounts: 5187,Sales: 6048,COGS: 24700,Profit: 18652,Date: `9/1/18`,MonthName: `September`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `372`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 5580,Discounts: 3660.3,Sales: 1919.7,COGS: 17430,Profit: 15510.3,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3781`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 45372,Discounts: 4895.52,Sales: 40476.48,COGS: 8742,Profit: 31734.48,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1785`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 12495,Discounts: 1696.38,Sales: 10798.62,COGS: 8655,Profit: 2143.62,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `4029`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1410150,Discounts: 34300,Sales: 1375850,COGS: 182000,Profit: 1193850,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2813`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 33756,Discounts: 3732.96,Sales: 30023.04,COGS: 6666,Profit: 23357.04,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `2150`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 752500,Discounts: 57673,Sales: 694827,COGS: 306020,Profit: 388807,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `2093`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 732550,Discounts: 94178,Sales: 638372,COGS: 499720,Profit: 138652,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `4391`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 548875,Discounts: 27562.5,Sales: 521312.5,COGS: 189000,Profit: 332312.5,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2695`,ManufacturingPrice: 120,SalePrice: 20,GrossSales: 53900,Discounts: 1696.8,Sales: 52203.2,COGS: 6060,Profit: 46143.2,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1337`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 401100,Discounts: 103320,Sales: 297780,COGS: 615000,Profit: 317220,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Burlington`,UnitsSold: `2621`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 786300,Discounts: 11298,Sales: 775002,COGS: 67250,Profit: 707752,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Burlington`,UnitsSold: `3735`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1120500,Discounts: 106512,Sales: 1013988,COGS: 634000,Profit: 379988,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Mandarin`,UnitsSold: `4320`,ManufacturingPrice: 250,SalePrice: 7,GrossSales: 30240,Discounts: 2844.94,Sales: 27395.06,COGS: 14515,Profit: 12880.06,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `2828`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 848400,Discounts: 106722,Sales: 741678,COGS: 635250,Profit: 106428,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `2586`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 775800,Discounts: 11298,Sales: 764502,COGS: 67250,Profit: 697252,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `1248`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 374400,Discounts: 62832,Sales: 311568,COGS: 374000,Profit: 62432,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `4035`,ManufacturingPrice: 250,SalePrice: 300,GrossSales: 1210500,Discounts: 42420,Sales: 1168080,COGS: 252500,Profit: 915580,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `359`,ManufacturingPrice: 250,SalePrice: 350,GrossSales: 125650,Discounts: 62769,Sales: 62881,COGS: 333060,Profit: 270179,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `3926`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 1177800,Discounts: 37296,Sales: 1140504,COGS: 222000,Profit: 918504,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `4247`,ManufacturingPrice: 260,SalePrice: 125,GrossSales: 530875,Discounts: 49770,Sales: 481105,COGS: 341280,Profit: 139825,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `2695`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 32340,Discounts: 4158,Sales: 28182,COGS: 7425,Profit: 20757,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Luxe`,UnitsSold: `1104`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 16560,Discounts: 3660.3,Sales: 12899.7,COGS: 17430,Profit: 4530.3,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Luxe`,UnitsSold: `1449`,ManufacturingPrice: 260,SalePrice: 12,GrossSales: 17388,Discounts: 4895.52,Sales: 12492.48,COGS: 8742,Profit: 3750.48,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1131`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 7917,Discounts: 1696.38,Sales: 6220.62,COGS: 8655,Profit: 2434.38,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1468`,ManufacturingPrice: 260,SalePrice: 7,GrossSales: 10276,Discounts: 1692.46,Sales: 8583.54,COGS: 8635,Profit: 51.46,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `1272`,ManufacturingPrice: 260,SalePrice: 15,GrossSales: 19080,Discounts: 3927,Sales: 15153,COGS: 18700,Profit: 3547,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Kensington`,UnitsSold: `1403`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 175375,Discounts: 22012.5,Sales: 153362.5,COGS: 140880,Profit: 12482.5,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `2161`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 270125,Discounts: 51881.25,Sales: 218243.75,COGS: 332040,Profit: 113796.25,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Kensington`,UnitsSold: `1937`,ManufacturingPrice: 3,SalePrice: 125,GrossSales: 242125,Discounts: 20343.75,Sales: 221781.25,COGS: 130200,Profit: 91581.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `2879`,ManufacturingPrice: 5,SalePrice: 300,GrossSales: 863700,Discounts: 24570,Sales: 839130,COGS: 136500,Profit: 702630,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1330`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 26600,Discounts: 3474,Sales: 23126,COGS: 11580,Profit: 11546,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `2426`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 36390,Discounts: 3631.5,Sales: 32758.5,COGS: 16140,Profit: 16618.5,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2033`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 14231,Discounts: 2661.75,Sales: 11569.25,COGS: 12675,Profit: 1105.75,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `2029`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 710150,Discounts: 149677.5,Sales: 560472.5,COGS: 741260,Profit: 180787.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `1049`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 15735,Discounts: 5757.75,Sales: 9977.25,COGS: 25590,Profit: 15612.75,Date: `8/1/19`,MonthName: `August`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `1062`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 21240,Discounts: 801,Sales: 20439,COGS: 2670,Profit: 17769,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `2509`,ManufacturingPrice: 10,SalePrice: 125,GrossSales: 313625,Discounts: 20343.75,Sales: 293281.25,COGS: 130200,Profit: 163081.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Vermont`,UnitsSold: `1743`,ManufacturingPrice: 10,SalePrice: 15,GrossSales: 26145,Discounts: 2643.75,Sales: 23501.25,COGS: 11750,Profit: 11751.25,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3418`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 1196300,Discounts: 105367.5,Sales: 1090932.5,COGS: 521820,Profit: 569112.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Vermont`,UnitsSold: `1751`,ManufacturingPrice: 10,SalePrice: 350,GrossSales: 612850,Discounts: 112927.5,Sales: 499922.5,COGS: 559260,Profit: 59337.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Vermont`,UnitsSold: `3228`,ManufacturingPrice: 10,SalePrice: 12,GrossSales: 38736,Discounts: 1645.2,Sales: 37090.8,COGS: 2742,Profit: 34348.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Vermont`,UnitsSold: `1105`,ManufacturingPrice: 10,SalePrice: 20,GrossSales: 22100,Discounts: 879,Sales: 21221,COGS: 2930,Profit: 18291,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Burlington`,UnitsSold: `2778`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 33336,Discounts: 900,Sales: 32436,COGS: 1500,Profit: 30936,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `1173`,ManufacturingPrice: 120,SalePrice: 15,GrossSales: 17595,Discounts: 6358.5,Sales: 11236.5,COGS: 28260,Profit: 17023.5,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Burlington`,UnitsSold: `3160`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 395000,Discounts: 12431.25,Sales: 382568.75,COGS: 79560,Profit: 303008.75,Date: `9/1/19`,MonthName: `September`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `4322`,ManufacturingPrice: 120,SalePrice: 300,GrossSales: 1296600,Discounts: 115830,Sales: 1180770,COGS: 643500,Profit: 537270,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `1901`,ManufacturingPrice: 120,SalePrice: 125,GrossSales: 237625,Discounts: 45712.5,Sales: 191912.5,COGS: 292560,Profit: 100647.5,Date: `12/1/18`,MonthName: `December`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Burlington`,UnitsSold: `2980`,ManufacturingPrice: 120,SalePrice: 12,GrossSales: 35760,Discounts: 1645.2,Sales: 34114.8,COGS: 2742,Profit: 31372.8,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `4068`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 81360,Discounts: 2596.5,Sales: 78763.5,COGS: 8655,Profit: 70108.5,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2105`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 31575,Discounts: 1107,Sales: 30468,COGS: 4920,Profit: 25548,Date: `7/1/19`,MonthName: `July`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `1647`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 32940,Discounts: 801,Sales: 32139,COGS: 2670,Profit: 29469,Date: `10/1/18`,MonthName: `October`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `235`,ManufacturingPrice: 250,SalePrice: 15,GrossSales: 3525,Discounts: 2643.75,Sales: 881.25,COGS: 11750,Profit: 10868.75,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Mandarin`,UnitsSold: `3617`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 452125,Discounts: 55387.5,Sales: 396737.5,COGS: 354480,Profit: 42257.5,Date: `11/1/18`,MonthName: `November`,Year: `2018` })); - this.push(new SalesDataItem({ Country: `India`,Product: `Mandarin`,UnitsSold: `2106`,ManufacturingPrice: 250,SalePrice: 125,GrossSales: 263250,Discounts: 10350,Sales: 252900,COGS: 66240,Profit: 186660,Date: `11/1/19`,MonthName: `November`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Mandarin`,UnitsSold: `2351`,ManufacturingPrice: 250,SalePrice: 20,GrossSales: 47020,Discounts: 879,Sales: 46141,COGS: 2930,Profit: 43211,Date: `12/1/19`,MonthName: `December`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `UK`,Product: `Luxe`,UnitsSold: `1897`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 569100,Discounts: 111375,Sales: 457725,COGS: 618750,Profit: 161025,Date: `3/1/19`,MonthName: `March`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Luxe`,UnitsSold: `647`,ManufacturingPrice: 260,SalePrice: 300,GrossSales: 194100,Discounts: 24570,Sales: 169530,COGS: 136500,Profit: 33030,Date: `10/1/19`,MonthName: `October`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Brazil`,Product: `Royal Oak`,UnitsSold: `3621`,ManufacturingPrice: 5,SalePrice: 7,GrossSales: 25347,Discounts: 1436.4,Sales: 23910.6,COGS: 6840,Profit: 17070.6,Date: `2/1/19`,MonthName: `February`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `Japan`,Product: `Vermont`,UnitsSold: `3221`,ManufacturingPrice: 10,SalePrice: 7,GrossSales: 22547,Discounts: 759.15,Sales: 21787.85,COGS: 3615,Profit: 18172.85,Date: `4/1/19`,MonthName: `April`,Year: `2019` })); - this.push(new SalesDataItem({ Country: `USA`,Product: `Mandarin`,UnitsSold: `493`,ManufacturingPrice: 250,SalePrice: 12,GrossSales: 5916,Discounts: 3250.8,Sales: 2665.2,COGS: 5418,Profit: 2752.8,Date: `5/1/19`,MonthName: `May`,Year: `2019` })); - } -} - export class SalesDataItem { public constructor(init: Partial) { Object.assign(this, init); @@ -1054,7 +5,7 @@ export class SalesDataItem { public Country: string; public Product: string; - public UnitsSold: string; + public UnitsSold: number; public ManufacturingPrice: number; public SalePrice: number; public GrossSales: number; @@ -1063,8 +14,16690 @@ export class SalesDataItem { public COGS: number; public Profit: number; public Date: string; - public MonthName: string; + public Month: string; public Year: string; } -//end data \ No newline at end of file +export class SalesData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 501, + ManufacturingPrice: 15, + SalePrice: 23, + GrossSales: 26440, + Discounts: 0, + Sales: 26440, + COGS: 16185, + Profit: 11255, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1372, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 27440, + Discounts: 0, + Sales: 27440, + COGS: 16185, + Profit: 11255, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2762, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 55240, + Discounts: 0, + Sales: 55240, + COGS: 13210, + Profit: 42030, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1464, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 21960, + Discounts: 0, + Sales: 21960, + COGS: 21780, + Profit: 180, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 719, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 10785, + Discounts: 0, + Sales: 10785, + COGS: 8880, + Profit: 1905, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3576, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 53640, + Discounts: 0, + Sales: 53640, + COGS: 24700, + Profit: 28940, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 4422, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1547700, + Discounts: 0, + Sales: 1547700, + COGS: 393380, + Profit: 1154320, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3649, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 54735, + Discounts: 0, + Sales: 54735, + COGS: 9210, + Profit: 45525, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4172, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 50064, + Discounts: 0, + Sales: 50064, + COGS: 7554, + Profit: 42510, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3841, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 76820, + Discounts: 0, + Sales: 76820, + COGS: 18990, + Profit: 57830, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3726, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 44712, + Discounts: 0, + Sales: 44712, + COGS: 4635, + Profit: 40077, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2625, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 39375, + Discounts: 0, + Sales: 39375, + COGS: 24700, + Profit: 14675, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1958, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 244750, + Discounts: 0, + Sales: 244750, + COGS: 319860, + Profit: 75110, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 3271, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 981300, + Discounts: 0, + Sales: 981300, + COGS: 239500, + Profit: 741800, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2091, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 14637, + Discounts: 0, + Sales: 14637, + COGS: 10730, + Profit: 3907, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2825, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 42375, + Discounts: 0, + Sales: 42375, + COGS: 6150, + Profit: 36225, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2513, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 50260, + Discounts: 0, + Sales: 50260, + COGS: 2920, + Profit: 47340, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 883, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 13245, + Discounts: 0, + Sales: 13245, + COGS: 9740, + Profit: 3505, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2087, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 25044, + Discounts: 0, + Sales: 25044, + COGS: 7554, + Profit: 17490, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2563, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 897050, + Discounts: 0, + Sales: 897050, + COGS: 261560, + Profit: 635490, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2846, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 34152, + Discounts: 0, + Sales: 34152, + COGS: 1101, + Profit: 33051, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 997, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 6979, + Discounts: 0, + Sales: 6979, + COGS: 4415, + Profit: 2564, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2290, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 34350, + Discounts: 0, + Sales: 34350, + COGS: 24720, + Profit: 9630, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2133, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14931, + Discounts: 0, + Sales: 14931, + COGS: 5715, + Profit: 9216, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3617, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 72340, + Discounts: 0, + Sales: 72340, + COGS: 18170, + Profit: 54170, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1266, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 443100, + Discounts: 0, + Sales: 443100, + COGS: 393380, + Profit: 49720, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 894, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 6258, + Discounts: 0, + Sales: 6258, + COGS: 7465, + Profit: 1207, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 2725, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 340625, + Discounts: 0, + Sales: 340625, + COGS: 216480, + Profit: 124145, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3061, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 36732, + Discounts: 0, + Sales: 36732, + COGS: 6483, + Profit: 30249, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3958, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1385300, + Discounts: 0, + Sales: 1385300, + COGS: 261560, + Profit: 1123740, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3920, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 47040, + Discounts: 0, + Sales: 47040, + COGS: 4635, + Profit: 42405, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3381, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 422625, + Discounts: 0, + Sales: 422625, + COGS: 338520, + Profit: 84105, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4307, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 1292100, + Discounts: 0, + Sales: 1292100, + COGS: 500250, + Profit: 791850, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 878, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10536, + Discounts: 0, + Sales: 10536, + COGS: 8514, + Profit: 2022, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 496, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 7440, + Discounts: 0, + Sales: 7440, + COGS: 21780, + Profit: 14340, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3367, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 50505, + Discounts: 0, + Sales: 50505, + COGS: 8880, + Profit: 41625, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2055, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 616500, + Discounts: 0, + Sales: 616500, + COGS: 537750, + Profit: 78750, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4041, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 80820, + Discounts: 0, + Sales: 80820, + COGS: 18170, + Profit: 62650, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 3237, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1132950, + Discounts: 0, + Sales: 1132950, + COGS: 715000, + Profit: 417950, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 630, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 7560, + Discounts: 0, + Sales: 7560, + COGS: 5859, + Profit: 1701, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4210, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 526250, + Discounts: 0, + Sales: 526250, + COGS: 506340, + Profit: 19910, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1127, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 22540, + Discounts: 0, + Sales: 22540, + COGS: 18990, + Profit: 3550, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 3438, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 24066, + Discounts: 0, + Sales: 24066, + COGS: 8430, + Profit: 15636, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2015, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 24180, + Discounts: 0, + Sales: 24180, + COGS: 6423, + Profit: 17757, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2534, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 17738, + Discounts: 0, + Sales: 17738, + COGS: 5715, + Profit: 12023, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1384, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 20760, + Discounts: 0, + Sales: 20760, + COGS: 6150, + Profit: 14610, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3561, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 24927, + Discounts: 276.15, + Sales: 24650.85, + COGS: 19725, + Profit: 4925.85, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1823, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27345, + Discounts: 344.4, + Sales: 27000.6, + COGS: 22960, + Profit: 4040.6, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2795, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19565, + Discounts: 72.1, + Sales: 19492.9, + COGS: 5150, + Profit: 14342.9, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 457, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 3199, + Discounts: 44.73, + Sales: 3154.27, + COGS: 3195, + Profit: 40.73, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3785, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26495, + Discounts: 92.82, + Sales: 26402.18, + COGS: 6630, + Profit: 19772.18, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 748, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 8976, + Discounts: 222.96, + Sales: 8753.04, + COGS: 5574, + Profit: 3179.04, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1021, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 357350, + Discounts: 4235, + Sales: 353115, + COGS: 314600, + Profit: 38515, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2076, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 14532, + Discounts: 177.03, + Sales: 14354.97, + COGS: 12645, + Profit: 1709.97, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 4316, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 51792, + Discounts: 173.4, + Sales: 51618.6, + COGS: 4335, + Profit: 47283.6, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 4174, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50088, + Discounts: 320.52, + Sales: 49767.48, + COGS: 8013, + Profit: 41754.48, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3736, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1307600, + Discounts: 4889.5, + Sales: 1302710.5, + COGS: 363220, + Profit: 939490.5, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1914, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 669900, + Discounts: 7542.5, + Sales: 662357.5, + COGS: 560300, + Profit: 102057.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2742, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 41130, + Discounts: 332.1, + Sales: 40797.9, + COGS: 22140, + Profit: 18657.9, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1499, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 449700, + Discounts: 6903, + Sales: 442797, + COGS: 575250, + Profit: 132453, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3772, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 75440, + Discounts: 275.1, + Sales: 75164.9, + COGS: 13755, + Profit: 61409.9, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1112, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 7784, + Discounts: 128.1, + Sales: 7655.9, + COGS: 9150, + Profit: 1494.1, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2368, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 35520, + Discounts: 227.1, + Sales: 35292.9, + COGS: 15140, + Profit: 20152.9, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1586, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 11102, + Discounts: 314.48, + Sales: 10787.52, + COGS: 22462.5, + Profit: 11674.98, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3386, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 423250, + Discounts: 908.75, + Sales: 422341.25, + COGS: 87240, + Profit: 335101.25, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 852, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 106500, + Discounts: 983.75, + Sales: 105516.25, + COGS: 94440, + Profit: 11076.25, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2783, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 347875, + Discounts: 2278.75, + Sales: 345596.25, + COGS: 218760, + Profit: 126836.25, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2684, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 40260, + Discounts: 112.05, + Sales: 40147.95, + COGS: 7470, + Profit: 32677.95, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4083, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1224900, + Discounts: 8715, + Sales: 1216185, + COGS: 726250, + Profit: 489935, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2816, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 985600, + Discounts: 7542.5, + Sales: 978057.5, + COGS: 560300, + Profit: 417757.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 4294, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 85880, + Discounts: 772.8, + Sales: 85107.2, + COGS: 38640, + Profit: 46467.2, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2856, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 19992, + Discounts: 25.34, + Sales: 19966.66, + COGS: 1810, + Profit: 18156.66, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1407, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 175875, + Discounts: 1153.75, + Sales: 174721.25, + COGS: 110760, + Profit: 63961.25, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1265, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 8855, + Discounts: 18.41, + Sales: 8836.59, + COGS: 1315, + Profit: 7521.59, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3892, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1362200, + Discounts: 3302.25, + Sales: 1358897.75, + COGS: 245310, + Profit: 1113587.75, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 3068, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 383500, + Discounts: 908.75, + Sales: 382591.25, + COGS: 87240, + Profit: 295351.25, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2181, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 272625, + Discounts: 983.75, + Sales: 271641.25, + COGS: 94440, + Profit: 177201.25, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1356, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 406800, + Discounts: 2958, + Sales: 403842, + COGS: 246500, + Profit: 177201.25, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1814, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 634900, + Discounts: 4889.5, + Sales: 630010.5, + COGS: 363220, + Profit: 266790.5, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1495, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 186875, + Discounts: 2180, + Sales: 184695, + COGS: 209280, + Profit: 24585, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1463, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 182875, + Discounts: 1856.25, + Sales: 181018.75, + COGS: 89100, + Profit: 91918.75, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 215, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 2580, + Discounts: 310.8, + Sales: 2269.2, + COGS: 3885, + Profit: 1615.8, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 566, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 198100, + Discounts: 19964, + Sales: 178136, + COGS: 741520, + Profit: 563384, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 3255, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 39060, + Discounts: 274.08, + Sales: 38785.92, + COGS: 3426, + Profit: 35359.92, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 772, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 15440, + Discounts: 626.4, + Sales: 14813.6, + COGS: 15660, + Profit: 846.4, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1135, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13620, + Discounts: 165.6, + Sales: 13454.4, + COGS: 2070, + Profit: 11384.4, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1193, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 17895, + Discounts: 708.9, + Sales: 17186.1, + COGS: 23630, + Profit: 6443.9, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2530, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 759000, + Discounts: 5508, + Sales: 753492, + COGS: 229500, + Profit: 523992, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3451, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1035300, + Discounts: 10368, + Sales: 1024932, + COGS: 432000, + Profit: 592932, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3059, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 36708, + Discounts: 274.08, + Sales: 36433.92, + COGS: 3426, + Profit: 33007.92, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3957, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 494625, + Discounts: 1655, + Sales: 492970, + COGS: 79440, + Profit: 413530, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3444, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 41328, + Discounts: 310.8, + Sales: 41017.2, + COGS: 3885, + Profit: 37132.2, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3154, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 946200, + Discounts: 11496, + Sales: 934704, + COGS: 479000, + Profit: 455704, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4108, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1437800, + Discounts: 19964, + Sales: 1417836, + COGS: 741520, + Profit: 676316, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3760, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 470000, + Discounts: 6822.5, + Sales: 463177.5, + COGS: 327480, + Profit: 135697.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2334, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 28008, + Discounts: 253.2, + Sales: 27754.8, + COGS: 3165, + Profit: 24589.8, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 580, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 6960, + Discounts: 260.16, + Sales: 6699.84, + COGS: 3252, + Profit: 3447.84, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2610, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 52200, + Discounts: 626.4, + Sales: 51573.6, + COGS: 15660, + Profit: 35913.6, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 1459, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 510650, + Discounts: 20139, + Sales: 490511, + COGS: 748020, + Profit: 257509, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3774, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 45288, + Discounts: 253.2, + Sales: 45034.8, + COGS: 3165, + Profit: 41869.8, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2572, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 30864, + Discounts: 260.16, + Sales: 30603.84, + COGS: 3252, + Profit: 27351.84, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 320, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 40000, + Discounts: 1655, + Sales: 38345, + COGS: 79440, + Profit: 41095, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3275, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1146250, + Discounts: 20139, + Sales: 1126111, + COGS: 748020, + Profit: 378091, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3582, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 447750, + Discounts: 6822.5, + Sales: 440927.5, + COGS: 327480, + Profit: 113447.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4056, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1216800, + Discounts: 1554, + Sales: 1215246, + COGS: 64750, + Profit: 1150496, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2144, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 643200, + Discounts: 6606, + Sales: 636594, + COGS: 275250, + Profit: 361344, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 3502, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 437750, + Discounts: 5690, + Sales: 432060, + COGS: 273120, + Profit: 158940, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 679, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 13580, + Discounts: 494.4, + Sales: 13085.6, + COGS: 12360, + Profit: 725.6, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2351, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 47020, + Discounts: 376.4, + Sales: 46643.6, + COGS: 9410, + Profit: 37233.6, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2043, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 612900, + Discounts: 11496, + Sales: 601404, + COGS: 479000, + Profit: 122404, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 3565, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 445625, + Discounts: 15913.13, + Sales: 429711.88, + COGS: 509220, + Profit: 79508.13, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1401, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 28020, + Discounts: 1548, + Sales: 26472, + COGS: 25800, + Profit: 672, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2077, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 623100, + Discounts: 6201, + Sales: 616899, + COGS: 172250, + Profit: 444649, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 3643, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 43716, + Discounts: 700.92, + Sales: 43015.08, + COGS: 5841, + Profit: 37174.08, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2960, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20720, + Discounts: 411.18, + Sales: 20308.82, + COGS: 9790, + Profit: 10518.82, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1201, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 14412, + Discounts: 684.36, + Sales: 13727.64, + COGS: 5703, + Profit: 8024.64, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 2321, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 16247, + Discounts: 114.24, + Sales: 16132.76, + COGS: 2720, + Profit: 13412.76, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3972, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 496500, + Discounts: 4826.25, + Sales: 491673.75, + COGS: 154440, + Profit: 337233.75, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3878, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 484750, + Discounts: 6397.5, + Sales: 478352.5, + COGS: 204720, + Profit: 273632.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2278, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 683400, + Discounts: 21910.5, + Sales: 661489.5, + COGS: 608625, + Profit: 52864.5, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1075, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 134375, + Discounts: 6652.5, + Sales: 127722.5, + COGS: 212880, + Profit: 85157.5, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 4050, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 48600, + Discounts: 684.36, + Sales: 47915.64, + COGS: 5703, + Profit: 42212.64, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3035, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 910500, + Discounts: 6201, + Sales: 904299, + COGS: 172250, + Profit: 732049, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3636, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 454500, + Discounts: 5887.5, + Sales: 448612.5, + COGS: 188400, + Profit: 260212.5, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1379, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 16548, + Discounts: 493.02, + Sales: 16054.98, + COGS: 4108.5, + Profit: 11946.48, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4492, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 561500, + Discounts: 7533.75, + Sales: 553966.25, + COGS: 241080, + Profit: 312886.25, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1744, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 218000, + Discounts: 4826.25, + Sales: 213173.75, + COGS: 154440, + Profit: 58733.75, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2341, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 292625, + Discounts: 6397.5, + Sales: 286227.5, + COGS: 204720, + Profit: 81507.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3835, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 479375, + Discounts: 7533.75, + Sales: 471841.25, + COGS: 241080, + Profit: 230761.25, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1161, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 348300, + Discounts: 25596, + Sales: 322704, + COGS: 711000, + Profit: 388296, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 876, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10512, + Discounts: 689.76, + Sales: 9822.24, + COGS: 5748, + Profit: 4074.24, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1705, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 213125, + Discounts: 5887.5, + Sales: 207237.5, + COGS: 188400, + Profit: 18837.5, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1805, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 541500, + Discounts: 16866, + Sales: 524634, + COGS: 468500, + Profit: 56134, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 389, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 136150, + Discounts: 17241, + Sales: 118909, + COGS: 426920, + Profit: 308011, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1459, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 29180, + Discounts: 498.6, + Sales: 28681.4, + COGS: 8310, + Profit: 20371.4, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 4236, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 84720, + Discounts: 2310.3, + Sales: 82409.7, + COGS: 38505, + Profit: 43904.7, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3627, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 43524, + Discounts: 892.44, + Sales: 42631.56, + COGS: 7437, + Profit: 35194.56, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1756, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 26340, + Discounts: 1218.6, + Sales: 25121.4, + COGS: 20310, + Profit: 4811.4, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 307, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 4605, + Discounts: 1218.6, + Sales: 3386.4, + COGS: 20310, + Profit: 16923.6, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1222, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 366600, + Discounts: 24252, + Sales: 342348, + COGS: 505250, + Profit: 162902, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 489, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 171150, + Discounts: 3836, + Sales: 167314, + COGS: 71240, + Profit: 96074, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4133, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 61995, + Discounts: 1180.2, + Sales: 60814.8, + COGS: 19670, + Profit: 41144.8, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2743, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 822900, + Discounts: 22308, + Sales: 800592, + COGS: 464750, + Profit: 335842, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 4460, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1338000, + Discounts: 24252, + Sales: 1313748, + COGS: 505250, + Profit: 808498, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1232, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 154000, + Discounts: 5690, + Sales: 148310, + COGS: 136560, + Profit: 11750, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2586, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 18102, + Discounts: 1190.28, + Sales: 16911.72, + COGS: 21255, + Profit: 4343.28, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1332, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 166500, + Discounts: 3975, + Sales: 162525, + COGS: 95400, + Profit: 67125, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4487, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1346100, + Discounts: 16974, + Sales: 1329126, + COGS: 353625, + Profit: 975501, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3862, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1158600, + Discounts: 35016, + Sales: 1123584, + COGS: 729500, + Profit: 394084, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1765, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 617750, + Discounts: 48300, + Sales: 569450, + COGS: 897000, + Profit: 327550, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3533, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 441625, + Discounts: 14940, + Sales: 426685, + COGS: 358560, + Profit: 68125, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2016, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 30240, + Discounts: 130.8, + Sales: 30109.2, + COGS: 2180, + Profit: 27929.2, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2938, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 58760, + Discounts: 1659.2, + Sales: 57100.8, + COGS: 20740, + Profit: 36360.8, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3352, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67040, + Discounts: 844.8, + Sales: 66195.2, + COGS: 10560, + Profit: 55635.2, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2430, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 850500, + Discounts: 3836, + Sales: 846664, + COGS: 71240, + Profit: 775424, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 535, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 66875, + Discounts: 5690, + Sales: 61185, + COGS: 136560, + Profit: 75375, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1523, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 18276, + Discounts: 703.2, + Sales: 17572.8, + COGS: 4395, + Profit: 13177.8, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1782, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 623700, + Discounts: 30478, + Sales: 593222, + COGS: 566020, + Profit: 27202, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 347, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 4164, + Discounts: 415.68, + Sales: 3748.32, + COGS: 2598, + Profit: 1150.32, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3509, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1228150, + Discounts: 30478, + Sales: 1197672, + COGS: 566020, + Profit: 631652, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2943, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1030050, + Discounts: 26110, + Sales: 1003940, + COGS: 484900, + Profit: 519040, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 4037, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 504625, + Discounts: 5370, + Sales: 499255, + COGS: 128880, + Profit: 370375, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4146, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1451100, + Discounts: 26698, + Sales: 1424402, + COGS: 495820, + Profit: 928582, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 725, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 5075, + Discounts: 480.2, + Sales: 4594.8, + COGS: 6860, + Profit: 2265.2, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2325, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 16275, + Discounts: 941.15, + Sales: 15333.85, + COGS: 13445, + Profit: 1888.85, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 675, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 8100, + Discounts: 1458.6, + Sales: 6641.4, + COGS: 7293, + Profit: 651.6, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2990, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 35880, + Discounts: 1458.6, + Sales: 34421.4, + COGS: 7293, + Profit: 27128.4, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1072, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 7504, + Discounts: 941.15, + Sales: 6562.85, + COGS: 13445, + Profit: 6882.15, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1048, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 7336, + Discounts: 589.05, + Sales: 6746.95, + COGS: 8415, + Profit: 1668.05, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 469, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 5628, + Discounts: 673.8, + Sales: 4954.2, + COGS: 3369, + Profit: 1585.2, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 4240, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50880, + Discounts: 1119, + Sales: 49761, + COGS: 5595, + Profit: 44166, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1976, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 23712, + Discounts: 669.6, + Sales: 23042.4, + COGS: 3348, + Profit: 19694.4, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1984, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39680, + Discounts: 1563, + Sales: 38117, + COGS: 15630, + Profit: 22487, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 480, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 144000, + Discounts: 14865, + Sales: 129135, + COGS: 247750, + Profit: 118615, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1205, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 18075, + Discounts: 2093.25, + Sales: 15981.75, + COGS: 27910, + Profit: 11928.25, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2480, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 17360, + Discounts: 199.5, + Sales: 17160.5, + COGS: 2850, + Profit: 14310.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 2926, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 20482, + Discounts: 870.45, + Sales: 19611.55, + COGS: 12435, + Profit: 7176.55, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3210, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1123500, + Discounts: 24228.75, + Sales: 1099271.25, + COGS: 359970, + Profit: 739301.25, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 3221, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 402625, + Discounts: 22668.75, + Sales: 379956.25, + COGS: 435240, + Profit: 55283.75, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 1127, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13524, + Discounts: 1405.2, + Sales: 12118.8, + COGS: 7026, + Profit: 5092.8, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1610, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 32200, + Discounts: 1303, + Sales: 30897, + COGS: 13030, + Profit: 17867, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4100, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 512500, + Discounts: 18700, + Sales: 493800, + COGS: 359040, + Profit: 134760, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1012, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 126500, + Discounts: 14906.25, + Sales: 111593.75, + COGS: 286200, + Profit: 174606.25, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3337, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1001100, + Discounts: 24105, + Sales: 976995, + COGS: 401750, + Profit: 575245, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3955, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 27685, + Discounts: 814.45, + Sales: 26870.55, + COGS: 11635, + Profit: 15235.55, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4347, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1304100, + Discounts: 14865, + Sales: 1289235, + COGS: 247750, + Profit: 1041485, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1548, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 541800, + Discounts: 10535, + Sales: 531265, + COGS: 156520, + Profit: 374745, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2153, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 32295, + Discounts: 1965, + Sales: 30330, + COGS: 26200, + Profit: 4130, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4126, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 515750, + Discounts: 5381.25, + Sales: 510368.75, + COGS: 103320, + Profit: 407048.75, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3376, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67520, + Discounts: 2663, + Sales: 64857, + COGS: 26630, + Profit: 38227, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2244, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 33660, + Discounts: 416.25, + Sales: 33243.75, + COGS: 5550, + Profit: 27693.75, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 1360, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 20400, + Discounts: 2145.75, + Sales: 18254.25, + COGS: 28610, + Profit: 10355.75, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 279, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 34875, + Discounts: 5043.75, + Sales: 29831.25, + COGS: 96840, + Profit: 67008.75, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2521, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 882350, + Discounts: 10535, + Sales: 871815, + COGS: 156520, + Profit: 715295, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2433, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 48660, + Discounts: 2832, + Sales: 45828, + COGS: 28320, + Profit: 17508, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1738, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 34760, + Discounts: 1579, + Sales: 33181, + COGS: 15790, + Profit: 17391, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1106, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 138250, + Discounts: 5381.25, + Sales: 132868.75, + COGS: 103320, + Profit: 29548.75, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 213, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 63900, + Discounts: 18750, + Sales: 45150, + COGS: 312500, + Profit: 267350, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2929, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 58580, + Discounts: 2663, + Sales: 55917, + COGS: 26630, + Profit: 29287, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2389, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 16723, + Discounts: 199.5, + Sales: 16523.5, + COGS: 2850, + Profit: 13673.5, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3086, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 21602, + Discounts: 870.45, + Sales: 20731.55, + COGS: 12435, + Profit: 8296.55, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 745, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 260750, + Discounts: 23625, + Sales: 237125, + COGS: 351000, + Profit: 113875, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1266, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 443100, + Discounts: 9660, + Sales: 433440, + COGS: 143520, + Profit: 289920, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4287, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1286100, + Discounts: 18750, + Sales: 1267350, + COGS: 312500, + Profit: 954850, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3193, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 47895, + Discounts: 3420.9, + Sales: 44474.1, + COGS: 38010, + Profit: 6464.1, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1967, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39340, + Discounts: 1341, + Sales: 37999, + COGS: 11175, + Profit: 26824, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 631, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 9465, + Discounts: 2559.6, + Sales: 6905.4, + COGS: 28440, + Profit: 21534.6, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3469, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 41628, + Discounts: 404.64, + Sales: 41223.36, + COGS: 1686, + Profit: 39537.36, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 3215, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 48225, + Discounts: 1827, + Sales: 46398, + COGS: 20300, + Profit: 26098, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1959, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 685650, + Discounts: 20580, + Sales: 665070, + COGS: 254800, + Profit: 410270, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2181, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 763350, + Discounts: 30660, + Sales: 732690, + COGS: 379600, + Profit: 353090, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2205, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 26460, + Discounts: 1960.56, + Sales: 24499.44, + COGS: 8169, + Profit: 16330.44, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1890, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 661500, + Discounts: 31416, + Sales: 630084, + COGS: 388960, + Profit: 241124, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2417, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 302125, + Discounts: 7140, + Sales: 294985, + COGS: 114240, + Profit: 180745, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1158, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 144750, + Discounts: 20662.5, + Sales: 124087.5, + COGS: 330600, + Profit: 206512.5, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 803, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 12045, + Discounts: 1377, + Sales: 10668, + COGS: 15300, + Profit: 4632, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3705, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1296750, + Discounts: 31416, + Sales: 1265334, + COGS: 388960, + Profit: 876374, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 589, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 4123, + Discounts: 629.16, + Sales: 3493.84, + COGS: 7490, + Profit: 3996.16, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3999, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 59985, + Discounts: 2559.6, + Sales: 57425.4, + COGS: 28440, + Profit: 28985.4, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 4256, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 29792, + Discounts: 629.16, + Sales: 29162.84, + COGS: 7490, + Profit: 21672.84, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2160, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 270000, + Discounts: 14906.25, + Sales: 255093.75, + COGS: 238500, + Profit: 16593.75, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 466, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 163100, + Discounts: 35259, + Sales: 127841, + COGS: 436540, + Profit: 308699, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1478, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 22170, + Discounts: 1978.2, + Sales: 20191.8, + COGS: 21980, + Profit: 1788.2, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3798, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 56970, + Discounts: 1568.7, + Sales: 55401.3, + COGS: 17430, + Profit: 37971.3, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 447, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 6705, + Discounts: 1037.7, + Sales: 5667.3, + COGS: 11530, + Profit: 5862.7, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 745, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 14900, + Discounts: 1201.2, + Sales: 13698.8, + COGS: 10010, + Profit: 3688.8, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 1732, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 12124, + Discounts: 559.86, + Sales: 11564.14, + COGS: 6665, + Profit: 4899.14, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1759, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 26385, + Discounts: 1037.7, + Sales: 25347.3, + COGS: 11530, + Profit: 13817.3, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 338, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 4056, + Discounts: 610.68, + Sales: 3445.32, + COGS: 2181, + Profit: 1264.32, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 3911, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 46932, + Discounts: 1582.56, + Sales: 45349.44, + COGS: 5652, + Profit: 39697.44, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 4473, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 53676, + Discounts: 1965.6, + Sales: 51710.4, + COGS: 7020, + Profit: 44690.4, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 383, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 4596, + Discounts: 1967.28, + Sales: 2628.72, + COGS: 7026, + Profit: 4397.28, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1062, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 15930, + Discounts: 1325.1, + Sales: 14604.9, + COGS: 12620, + Profit: 1984.9, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 4083, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 28581, + Discounts: 556.15, + Sales: 28024.85, + COGS: 5675, + Profit: 22349.85, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3974, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 27818, + Discounts: 268.03, + Sales: 27549.97, + COGS: 2735, + Profit: 24814.97, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3723, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 26061, + Discounts: 775.18, + Sales: 25285.82, + COGS: 7910, + Profit: 17375.82, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2435, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 29220, + Discounts: 1460.34, + Sales: 27759.66, + COGS: 5215.5, + Profit: 22544.16, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1763, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 12341, + Discounts: 775.18, + Sales: 11565.82, + COGS: 7910, + Profit: 3655.82, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 4473, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 31311, + Discounts: 556.15, + Sales: 30754.85, + COGS: 5675, + Profit: 25079.85, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1246, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 436100, + Discounts: 43144.5, + Sales: 392955.5, + COGS: 457860, + Profit: 64904.5, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1615, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 484500, + Discounts: 9408, + Sales: 475092, + COGS: 112000, + Profit: 363092, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 749, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 224700, + Discounts: 45801, + Sales: 178899, + COGS: 545250, + Profit: 366351, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1318, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 26360, + Discounts: 2766.4, + Sales: 23593.6, + COGS: 19760, + Profit: 3833.6, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 2882, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 864600, + Discounts: 45801, + Sales: 818799, + COGS: 545250, + Profit: 273549, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2484, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 745200, + Discounts: 35742, + Sales: 709458, + COGS: 425500, + Profit: 283958, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3169, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 950700, + Discounts: 9408, + Sales: 941292, + COGS: 112000, + Profit: 829292, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4080, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 510000, + Discounts: 30738.75, + Sales: 479261.25, + COGS: 421560, + Profit: 57701.25, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3943, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 59145, + Discounts: 2206.05, + Sales: 56938.95, + COGS: 21010, + Profit: 35928.95, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 253, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 5060, + Discounts: 2149, + Sales: 2911, + COGS: 15350, + Profit: 12439, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 799, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 239700, + Discounts: 34839, + Sales: 204861, + COGS: 414750, + Profit: 209889, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3942, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 78840, + Discounts: 852.6, + Sales: 77987.4, + COGS: 6090, + Profit: 71897.4, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2498, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 312250, + Discounts: 18261.25, + Sales: 293988.75, + COGS: 250440, + Profit: 43548.75, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 2517, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 50340, + Discounts: 2766.4, + Sales: 47573.6, + COGS: 19760, + Profit: 27813.6, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1145, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 343500, + Discounts: 28812, + Sales: 314688, + COGS: 343000, + Profit: 28312, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3814, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 45768, + Discounts: 2725.38, + Sales: 43042.62, + COGS: 9733.5, + Profit: 33309.12, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1188, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 356400, + Discounts: 20139, + Sales: 336261, + COGS: 239750, + Profit: 96511, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 2233, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 669900, + Discounts: 57687, + Sales: 612213, + COGS: 686750, + Profit: 74537, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 421, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 52625, + Discounts: 14393.75, + Sales: 38231.25, + COGS: 197400, + Profit: 159168.75, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 269, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 94150, + Discounts: 70462, + Sales: 23688, + COGS: 747760, + Profit: 724072, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 952, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19040, + Discounts: 1565.2, + Sales: 17474.8, + COGS: 11180, + Profit: 6294.8, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2964, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 889200, + Discounts: 28812, + Sales: 860388, + COGS: 343000, + Profit: 517388, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1505, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 10535, + Discounts: 273.28, + Sales: 10261.72, + COGS: 2440, + Profit: 7821.72, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1678, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 33560, + Discounts: 2051.2, + Sales: 31508.8, + COGS: 12820, + Profit: 18688.8, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4249, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 29743, + Discounts: 143.92, + Sales: 29599.08, + COGS: 1285, + Profit: 28314.08, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1677, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 33540, + Discounts: 2051.2, + Sales: 31488.8, + COGS: 12820, + Profit: 18668.8, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3051, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 381375, + Discounts: 15400, + Sales: 365975, + COGS: 184800, + Profit: 181175, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 3372, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 50580, + Discounts: 588, + Sales: 49992, + COGS: 4900, + Profit: 45092, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1686, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 590100, + Discounts: 38136, + Sales: 551964, + COGS: 354120, + Profit: 197844, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3086, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 46290, + Discounts: 3001.2, + Sales: 43288.8, + COGS: 25010, + Profit: 18278.8, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4150, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 83000, + Discounts: 1132.8, + Sales: 81867.2, + COGS: 7080, + Profit: 74787.2, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3027, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 60540, + Discounts: 1032, + Sales: 59508, + COGS: 6450, + Profit: 53058, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 4359, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1307700, + Discounts: 37488, + Sales: 1270212, + COGS: 390500, + Profit: 879712, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 1589, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 23835, + Discounts: 853.2, + Sales: 22981.8, + COGS: 7110, + Profit: 15871.8, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2679, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 334875, + Discounts: 11140, + Sales: 323735, + COGS: 133680, + Profit: 190055, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3401, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 23807, + Discounts: 705.04, + Sales: 23101.96, + COGS: 6295, + Profit: 16806.96, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2815, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19705, + Discounts: 613.2, + Sales: 19091.8, + COGS: 5475, + Profit: 13616.8, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2964, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 59280, + Discounts: 2185.6, + Sales: 57094.4, + COGS: 13660, + Profit: 43434.4, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 4173, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1251900, + Discounts: 59040, + Sales: 1192860, + COGS: 615000, + Profit: 577860, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1157, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 8099, + Discounts: 379.68, + Sales: 7719.32, + COGS: 3390, + Profit: 4329.32, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3065, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 21455, + Discounts: 894.88, + Sales: 20560.12, + COGS: 7990, + Profit: 12570.12, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4080, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 81600, + Discounts: 3094.4, + Sales: 78505.6, + COGS: 19340, + Profit: 59165.6, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1713, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34260, + Discounts: 4788.8, + Sales: 29471.2, + COGS: 29930, + Profit: 458.8, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1691, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 591850, + Discounts: 38136, + Sales: 553714, + COGS: 354120, + Profit: 199594, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2305, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 27660, + Discounts: 574.08, + Sales: 27085.92, + COGS: 1794, + Profit: 25291.92, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3401, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 23807, + Discounts: 1627.92, + Sales: 22179.08, + COGS: 14535, + Profit: 7644.08, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2288, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 16016, + Discounts: 1309.28, + Sales: 14706.72, + COGS: 11690, + Profit: 3016.72, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 4086, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1225800, + Discounts: 15240, + Sales: 1210560, + COGS: 158750, + Profit: 1051810, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2651, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 927850, + Discounts: 16086, + Sales: 911764, + COGS: 149370, + Profit: 762394, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3971, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27797, + Discounts: 1309.28, + Sales: 26487.72, + COGS: 11690, + Profit: 14797.72, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2512, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 879200, + Discounts: 10668, + Sales: 868532, + COGS: 99060, + Profit: 769472, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2745, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 960750, + Discounts: 11816, + Sales: 948934, + COGS: 109720, + Profit: 839214, + Date: `8/1/20`, + Month: `August`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1903, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 570900, + Discounts: 51216, + Sales: 519684, + COGS: 533500, + Profit: 13816, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2914, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 58280, + Discounts: 1132.8, + Sales: 57147.2, + COGS: 7080, + Profit: 50067.2, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1889, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 13223, + Discounts: 1627.92, + Sales: 11595.08, + COGS: 14535, + Profit: 2939.92, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1466, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 29320, + Discounts: 2185.6, + Sales: 27134.4, + COGS: 13660, + Profit: 13474.4, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 887, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 266100, + Discounts: 59040, + Sales: 207060, + COGS: 615000, + Profit: 407940, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 395, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 7900, + Discounts: 2432, + Sales: 5468, + COGS: 15200, + Profit: 9732, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1693, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 25395, + Discounts: 853.2, + Sales: 24541.8, + COGS: 7110, + Profit: 17431.8, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2649, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 794700, + Discounts: 15240, + Sales: 779460, + COGS: 158750, + Profit: 620710, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 3608, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 72160, + Discounts: 698.4, + Sales: 71461.6, + COGS: 4365, + Profit: 67096.6, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1073, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 321900, + Discounts: 29538, + Sales: 292362, + COGS: 273500, + Profit: 18862, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 2167, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 650100, + Discounts: 102667.5, + Sales: 547432.5, + COGS: 950625, + Profit: 403192.5, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1319, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 461650, + Discounts: 52479, + Sales: 409171, + COGS: 433160, + Profit: 23989, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1252, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 15024, + Discounts: 2506.68, + Sales: 12517.32, + COGS: 6963, + Profit: 5554.32, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1156, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 144500, + Discounts: 31466.25, + Sales: 113033.75, + COGS: 335640, + Profit: 222606.25, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1153, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 345900, + Discounts: 69255, + Sales: 276645, + COGS: 641250, + Profit: 364605, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2720, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 952000, + Discounts: 76135.5, + Sales: 875864.5, + COGS: 628420, + Profit: 247444.5, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3658, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 54870, + Discounts: 4961.25, + Sales: 49908.75, + COGS: 36750, + Profit: 13158.75, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2950, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 885000, + Discounts: 29538, + Sales: 855462, + COGS: 273500, + Profit: 581962, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1821, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27315, + Discounts: 1656.45, + Sales: 25658.55, + COGS: 12270, + Profit: 13388.55, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1127, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 338100, + Discounts: 35748, + Sales: 302352, + COGS: 331000, + Profit: 28648, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 862, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 107750, + Discounts: 31466.25, + Sales: 76283.75, + COGS: 335640, + Profit: 259356.25, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3805, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 57075, + Discounts: 330.75, + Sales: 56744.25, + COGS: 2450, + Profit: 54294.25, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1415, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 424500, + Discounts: 102424.5, + Sales: 322075.5, + COGS: 948375, + Profit: 626299.5, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2231, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 780850, + Discounts: 41170.5, + Sales: 739679.5, + COGS: 339820, + Profit: 399859.5, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3649, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 456125, + Discounts: 6378.75, + Sales: 449746.25, + COGS: 68040, + Profit: 381706.25, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2948, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 368500, + Discounts: 23737.5, + Sales: 344762.5, + COGS: 253200, + Profit: 91562.5, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3395, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1188250, + Discounts: 39973.5, + Sales: 1148276.5, + COGS: 329940, + Profit: 818336.5, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2650, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 31800, + Discounts: 2112.48, + Sales: 29687.52, + COGS: 5868, + Profit: 23819.52, + Date: `1/1/20`, + Month: `January`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 585, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 175500, + Discounts: 71793, + Sales: 103707, + COGS: 664750, + Profit: 561043, + Date: `2/1/20`, + Month: `February`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1316, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 460600, + Discounts: 42572.25, + Sales: 418027.75, + COGS: 351390, + Profit: 66637.75, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 4459, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 53508, + Discounts: 950.4, + Sales: 52557.6, + COGS: 2640, + Profit: 49917.6, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2711, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 813300, + Discounts: 50409, + Sales: 762891, + COGS: 466750, + Profit: 296141, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3613, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 54195, + Discounts: 1656.45, + Sales: 52538.55, + COGS: 12270, + Profit: 40268.55, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1847, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 230875, + Discounts: 9866.25, + Sales: 221008.75, + COGS: 105240, + Profit: 115768.75, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2996, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1048600, + Discounts: 65236.5, + Sales: 983363.5, + COGS: 538460, + Profit: 444903.5, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2838, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 993300, + Discounts: 39973.5, + Sales: 953326.5, + COGS: 329940, + Profit: 623386.5, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1536, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 30720, + Discounts: 3049.2, + Sales: 27670.8, + COGS: 16940, + Profit: 10730.8, + Date: `11/1/20`, + Month: `November`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1291, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 25820, + Discounts: 1193.4, + Sales: 24626.6, + COGS: 6630, + Profit: 17996.6, + Date: `5/1/20`, + Month: `May`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1213, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 8491, + Discounts: 515.97, + Sales: 7975.03, + COGS: 4095, + Profit: 3880.03, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2370, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 28440, + Discounts: 1706.4, + Sales: 26733.6, + COGS: 4740, + Profit: 21993.6, + Date: `9/1/20`, + Month: `September`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1979, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 13853, + Discounts: 328.23, + Sales: 13524.77, + COGS: 2605, + Profit: 10919.77, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2879, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 57580, + Discounts: 1751.4, + Sales: 55828.6, + COGS: 9730, + Profit: 46098.6, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1707, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34140, + Discounts: 1868.4, + Sales: 32271.6, + COGS: 10380, + Profit: 21891.6, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2933, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 20531, + Discounts: 226.8, + Sales: 20304.2, + COGS: 1800, + Profit: 18504.2, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1014, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 12168, + Discounts: 2124.36, + Sales: 10043.64, + COGS: 5901, + Profit: 4142.64, + Date: `3/1/20`, + Month: `March`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 693, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 10395, + Discounts: 3547.8, + Sales: 6847.2, + COGS: 26280, + Profit: 19432.8, + Date: `4/1/20`, + Month: `April`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3741, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26187, + Discounts: 226.8, + Sales: 25960.2, + COGS: 1800, + Profit: 24160.2, + Date: `10/1/20`, + Month: `October`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 3995, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27965, + Discounts: 328.23, + Sales: 27636.77, + COGS: 2605, + Profit: 25031.77, + Date: `12/1/20`, + Month: `December`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 953, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19060, + Discounts: 1868.4, + Sales: 17191.6, + COGS: 10380, + Profit: 6811.6, + Date: `6/1/20`, + Month: `June`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2530, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 37950, + Discounts: 2201.18, + Sales: 35748.82, + COGS: 16305, + Profit: 19443.82, + Date: `7/1/20`, + Month: `July`, + Year: `2020` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1372, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 27440, + Discounts: 0, + Sales: 27440, + COGS: 16185, + Profit: 11255, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2762, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 55240, + Discounts: 0, + Sales: 55240, + COGS: 13210, + Profit: 42030, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1464, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 21960, + Discounts: 0, + Sales: 21960, + COGS: 21780, + Profit: 180, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 719, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 10785, + Discounts: 0, + Sales: 10785, + COGS: 8880, + Profit: 1905, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3576, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 53640, + Discounts: 0, + Sales: 53640, + COGS: 24700, + Profit: 28940, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 4422, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1547700, + Discounts: 0, + Sales: 1547700, + COGS: 393380, + Profit: 1154320, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3649, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 54735, + Discounts: 0, + Sales: 54735, + COGS: 9210, + Profit: 45525, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4172, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 50064, + Discounts: 0, + Sales: 50064, + COGS: 7554, + Profit: 42510, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3841, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 76820, + Discounts: 0, + Sales: 76820, + COGS: 18990, + Profit: 57830, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3726, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 44712, + Discounts: 0, + Sales: 44712, + COGS: 4635, + Profit: 40077, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2625, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 39375, + Discounts: 0, + Sales: 39375, + COGS: 24700, + Profit: 14675, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1958, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 244750, + Discounts: 0, + Sales: 244750, + COGS: 319860, + Profit: 75110, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 3271, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 981300, + Discounts: 0, + Sales: 981300, + COGS: 239500, + Profit: 741800, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2091, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 14637, + Discounts: 0, + Sales: 14637, + COGS: 10730, + Profit: 3907, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 2530, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 316250, + Discounts: 0, + Sales: 316250, + COGS: 41400, + Profit: 274850, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2825, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 42375, + Discounts: 0, + Sales: 42375, + COGS: 6150, + Profit: 36225, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2513, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 50260, + Discounts: 0, + Sales: 50260, + COGS: 2920, + Profit: 47340, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 883, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 13245, + Discounts: 0, + Sales: 13245, + COGS: 9740, + Profit: 3505, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2087, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 25044, + Discounts: 0, + Sales: 25044, + COGS: 7554, + Profit: 17490, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2563, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 897050, + Discounts: 0, + Sales: 897050, + COGS: 261560, + Profit: 635490, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2846, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 34152, + Discounts: 0, + Sales: 34152, + COGS: 1101, + Profit: 33051, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 997, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 6979, + Discounts: 0, + Sales: 6979, + COGS: 4415, + Profit: 2564, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3421, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 51315, + Discounts: 0, + Sales: 51315, + COGS: 5490, + Profit: 45825, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Marchesa`, + UnitsSold: 70000, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 1050000, + Discounts: 0, + Sales: 1050000, + COGS: 5490, + Profit: 1044510, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2291, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 687300, + Discounts: 0, + Sales: 687300, + COGS: 197000, + Profit: 490300, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2290, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 34350, + Discounts: 0, + Sales: 34350, + COGS: 24720, + Profit: 9630, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2133, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14931, + Discounts: 0, + Sales: 14931, + COGS: 5715, + Profit: 9216, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3475, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1216250, + Discounts: 0, + Sales: 1216250, + COGS: 448500, + Profit: 767750, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3686, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 44232, + Discounts: 0, + Sales: 44232, + COGS: 2736, + Profit: 41496, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3319, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 49785, + Discounts: 0, + Sales: 49785, + COGS: 21520, + Profit: 28265, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3617, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 72340, + Discounts: 0, + Sales: 72340, + COGS: 18170, + Profit: 54170, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1266, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 443100, + Discounts: 0, + Sales: 443100, + COGS: 393380, + Profit: 49720, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 894, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 6258, + Discounts: 0, + Sales: 6258, + COGS: 7465, + Profit: 1207, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 2725, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 340625, + Discounts: 0, + Sales: 340625, + COGS: 216480, + Profit: 124145, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3061, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 36732, + Discounts: 0, + Sales: 36732, + COGS: 6483, + Profit: 30249, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3958, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1385300, + Discounts: 0, + Sales: 1385300, + COGS: 261560, + Profit: 1123740, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3920, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 47040, + Discounts: 0, + Sales: 47040, + COGS: 4635, + Profit: 42405, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3381, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 422625, + Discounts: 0, + Sales: 422625, + COGS: 338520, + Profit: 84105, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1094, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 136750, + Discounts: 0, + Sales: 136750, + COGS: 41400, + Profit: 95350, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4307, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 1292100, + Discounts: 0, + Sales: 1292100, + COGS: 500250, + Profit: 791850, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 878, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10536, + Discounts: 0, + Sales: 10536, + COGS: 8514, + Profit: 2022, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 496, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 7440, + Discounts: 0, + Sales: 7440, + COGS: 21780, + Profit: 14340, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3367, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 50505, + Discounts: 0, + Sales: 50505, + COGS: 8880, + Profit: 41625, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3880, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1358000, + Discounts: 0, + Sales: 1358000, + COGS: 397020, + Profit: 960980, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2055, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 616500, + Discounts: 0, + Sales: 616500, + COGS: 537750, + Profit: 78750, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4041, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 80820, + Discounts: 0, + Sales: 80820, + COGS: 18170, + Profit: 62650, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 3237, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1132950, + Discounts: 0, + Sales: 1132950, + COGS: 715000, + Profit: 417950, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 630, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 7560, + Discounts: 0, + Sales: 7560, + COGS: 5859, + Profit: 1701, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4210, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 526250, + Discounts: 0, + Sales: 526250, + COGS: 506340, + Profit: 19910, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1127, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 22540, + Discounts: 0, + Sales: 22540, + COGS: 18990, + Profit: 3550, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 3438, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 24066, + Discounts: 0, + Sales: 24066, + COGS: 8430, + Profit: 15636, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2015, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 24180, + Discounts: 0, + Sales: 24180, + COGS: 6423, + Profit: 17757, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2534, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 17738, + Discounts: 0, + Sales: 17738, + COGS: 5715, + Profit: 12023, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1384, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 20760, + Discounts: 0, + Sales: 20760, + COGS: 6150, + Profit: 14610, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3561, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 24927, + Discounts: 276.15, + Sales: 24650.85, + COGS: 19725, + Profit: 4925.85, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1823, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27345, + Discounts: 344.4, + Sales: 27000.6, + COGS: 22960, + Profit: 4040.6, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2795, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19565, + Discounts: 72.1, + Sales: 19492.9, + COGS: 5150, + Profit: 14342.9, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 457, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 3199, + Discounts: 44.73, + Sales: 3154.27, + COGS: 3195, + Profit: 40.73, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3785, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26495, + Discounts: 92.82, + Sales: 26402.18, + COGS: 6630, + Profit: 19772.18, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 748, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 8976, + Discounts: 222.96, + Sales: 8753.04, + COGS: 5574, + Profit: 3179.04, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1021, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 357350, + Discounts: 4235, + Sales: 353115, + COGS: 314600, + Profit: 38515, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2076, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 14532, + Discounts: 177.03, + Sales: 14354.97, + COGS: 12645, + Profit: 1709.97, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 4316, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 51792, + Discounts: 173.4, + Sales: 51618.6, + COGS: 4335, + Profit: 47283.6, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2654, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 331750, + Discounts: 412.5, + Sales: 331337.5, + COGS: 39600, + Profit: 291737.5, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 4174, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50088, + Discounts: 320.52, + Sales: 49767.48, + COGS: 8013, + Profit: 41754.48, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1675, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 20100, + Discounts: 91.92, + Sales: 20008.08, + COGS: 2298, + Profit: 17710.08, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1572, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 471600, + Discounts: 1482, + Sales: 470118, + COGS: 123500, + Profit: 346618, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3736, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1307600, + Discounts: 4889.5, + Sales: 1302710.5, + COGS: 363220, + Profit: 939490.5, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1914, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 669900, + Discounts: 7542.5, + Sales: 662357.5, + COGS: 560300, + Profit: 102057.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2742, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 41130, + Discounts: 332.1, + Sales: 40797.9, + COGS: 22140, + Profit: 18657.9, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1499, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 449700, + Discounts: 6903, + Sales: 442797, + COGS: 575250, + Profit: 132453, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3772, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 75440, + Discounts: 275.1, + Sales: 75164.9, + COGS: 13755, + Profit: 61409.9, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1112, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 7784, + Discounts: 128.1, + Sales: 7655.9, + COGS: 9150, + Profit: 1494.1, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1723, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 516900, + Discounts: 7494, + Sales: 509406, + COGS: 624500, + Profit: 115094, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 423, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 52875, + Discounts: 828.75, + Sales: 52046.25, + COGS: 79560, + Profit: 27513.75, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2368, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 35520, + Discounts: 227.1, + Sales: 35292.9, + COGS: 15140, + Profit: 20152.9, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1586, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 11102, + Discounts: 314.48, + Sales: 10787.52, + COGS: 22462.5, + Profit: 11674.98, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3386, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 423250, + Discounts: 908.75, + Sales: 422341.25, + COGS: 87240, + Profit: 335101.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 852, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 106500, + Discounts: 983.75, + Sales: 105516.25, + COGS: 94440, + Profit: 11076.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2783, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 347875, + Discounts: 2278.75, + Sales: 345596.25, + COGS: 218760, + Profit: 126836.25, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2684, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 40260, + Discounts: 112.05, + Sales: 40147.95, + COGS: 7470, + Profit: 32677.95, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4393, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 52716, + Discounts: 91.92, + Sales: 52624.08, + COGS: 2298, + Profit: 50326.08, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4083, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1224900, + Discounts: 8715, + Sales: 1216185, + COGS: 726250, + Profit: 489935, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2816, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 985600, + Discounts: 7542.5, + Sales: 978057.5, + COGS: 560300, + Profit: 417757.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 4294, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 85880, + Discounts: 772.8, + Sales: 85107.2, + COGS: 38640, + Profit: 46467.2, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2856, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 19992, + Discounts: 25.34, + Sales: 19966.66, + COGS: 1810, + Profit: 18156.66, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1407, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 175875, + Discounts: 1153.75, + Sales: 174721.25, + COGS: 110760, + Profit: 63961.25, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3850, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 481250, + Discounts: 828.75, + Sales: 480421.25, + COGS: 79560, + Profit: 400861.25, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2856, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 19992, + Discounts: 146.44, + Sales: 19845.56, + COGS: 10460, + Profit: 9385.56, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1265, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 8855, + Discounts: 18.41, + Sales: 8836.59, + COGS: 1315, + Profit: 7521.59, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3892, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1362200, + Discounts: 3302.25, + Sales: 1358897.75, + COGS: 245310, + Profit: 1113587.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 3068, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 383500, + Discounts: 908.75, + Sales: 382591.25, + COGS: 87240, + Profit: 295351.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2181, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 272625, + Discounts: 983.75, + Sales: 271641.25, + COGS: 94440, + Profit: 177201.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1356, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 406800, + Discounts: 2958, + Sales: 403842, + COGS: 246500, + Profit: 157342, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 2545, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 763500, + Discounts: 1482, + Sales: 762018, + COGS: 123500, + Profit: 638518, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1814, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 634900, + Discounts: 4889.5, + Sales: 630010.5, + COGS: 363220, + Profit: 266790.5, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1495, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 186875, + Discounts: 2180, + Sales: 184695, + COGS: 209280, + Profit: 24585, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1154, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 13848, + Discounts: 238.68, + Sales: 13609.32, + COGS: 5967, + Profit: 7642.32, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 4180, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 62700, + Discounts: 48.15, + Sales: 62651.85, + COGS: 3210, + Profit: 59441.85, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1463, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 182875, + Discounts: 1856.25, + Sales: 181018.75, + COGS: 89100, + Profit: 91918.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 215, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 2580, + Discounts: 310.8, + Sales: 2269.2, + COGS: 3885, + Profit: 1615.8, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 4099, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 1229700, + Discounts: 1284, + Sales: 1228416, + COGS: 53500, + Profit: 1174916, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 2660, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 18620, + Discounts: 300.3, + Sales: 18319.7, + COGS: 10725, + Profit: 7594.7, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 566, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 198100, + Discounts: 19964, + Sales: 178136, + COGS: 741520, + Profit: 563384, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 3255, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 39060, + Discounts: 274.08, + Sales: 38785.92, + COGS: 3426, + Profit: 35359.92, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 772, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 15440, + Discounts: 626.4, + Sales: 14813.6, + COGS: 15660, + Profit: 846.4, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1135, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13620, + Discounts: 165.6, + Sales: 13454.4, + COGS: 2070, + Profit: 11384.4, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 3826, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 478250, + Discounts: 4150, + Sales: 474100, + COGS: 199200, + Profit: 274900, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1193, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 17895, + Discounts: 708.9, + Sales: 17186.1, + COGS: 23630, + Profit: 6443.9, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2530, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 759000, + Discounts: 5508, + Sales: 753492, + COGS: 229500, + Profit: 523992, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3451, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1035300, + Discounts: 10368, + Sales: 1024932, + COGS: 432000, + Profit: 592932, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3059, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 36708, + Discounts: 274.08, + Sales: 36433.92, + COGS: 3426, + Profit: 33007.92, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3957, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 494625, + Discounts: 1655, + Sales: 492970, + COGS: 79440, + Profit: 413530, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3444, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 41328, + Discounts: 310.8, + Sales: 41017.2, + COGS: 3885, + Profit: 37132.2, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4388, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 548500, + Discounts: 2022.5, + Sales: 546477.5, + COGS: 97080, + Profit: 449397.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2106, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 263250, + Discounts: 5362.5, + Sales: 257887.5, + COGS: 257400, + Profit: 487.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 799, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 9588, + Discounts: 428.4, + Sales: 9159.6, + COGS: 5355, + Profit: 3804.6, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3154, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 946200, + Discounts: 11496, + Sales: 934704, + COGS: 479000, + Profit: 455704, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4108, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1437800, + Discounts: 19964, + Sales: 1417836, + COGS: 741520, + Profit: 676316, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3760, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 470000, + Discounts: 6822.5, + Sales: 463177.5, + COGS: 327480, + Profit: 135697.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 377, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 5655, + Discounts: 577.5, + Sales: 5077.5, + COGS: 19250, + Profit: 14172.5, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2110, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14770, + Discounts: 281.82, + Sales: 14488.18, + COGS: 10065, + Profit: 4423.18, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2334, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 28008, + Discounts: 253.2, + Sales: 27754.8, + COGS: 3165, + Profit: 24589.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 580, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 6960, + Discounts: 260.16, + Sales: 6699.84, + COGS: 3252, + Profit: 3447.84, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2610, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 52200, + Discounts: 626.4, + Sales: 51573.6, + COGS: 15660, + Profit: 35913.6, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 1598, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 559300, + Discounts: 20762, + Sales: 538538, + COGS: 771160, + Profit: 232622, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 1459, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 510650, + Discounts: 20139, + Sales: 490511, + COGS: 748020, + Profit: 257509, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3284, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 410500, + Discounts: 2022.5, + Sales: 408477.5, + COGS: 97080, + Profit: 311397.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 1197, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 149625, + Discounts: 5362.5, + Sales: 144262.5, + COGS: 257400, + Profit: 113137.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3774, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 45288, + Discounts: 253.2, + Sales: 45034.8, + COGS: 3165, + Profit: 41869.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2303, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 46060, + Discounts: 217.6, + Sales: 45842.4, + COGS: 5440, + Profit: 40402.4, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2572, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 30864, + Discounts: 260.16, + Sales: 30603.84, + COGS: 3252, + Profit: 27351.84, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 320, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 40000, + Discounts: 1655, + Sales: 38345, + COGS: 79440, + Profit: 41095, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2126, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 637800, + Discounts: 1284, + Sales: 636516, + COGS: 53500, + Profit: 583016, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3275, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1146250, + Discounts: 20139, + Sales: 1126111, + COGS: 748020, + Profit: 378091, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3582, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 447750, + Discounts: 6822.5, + Sales: 440927.5, + COGS: 327480, + Profit: 113447.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 783, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 274050, + Discounts: 1862, + Sales: 272188, + COGS: 69160, + Profit: 203028, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1202, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 420700, + Discounts: 13580, + Sales: 407120, + COGS: 504400, + Profit: 97280, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4056, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1216800, + Discounts: 1554, + Sales: 1215246, + COGS: 64750, + Profit: 1150496, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2144, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 643200, + Discounts: 6606, + Sales: 636594, + COGS: 275250, + Profit: 361344, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 3502, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 437750, + Discounts: 5690, + Sales: 432060, + COGS: 273120, + Profit: 158940, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1397, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 488950, + Discounts: 20762, + Sales: 468188, + COGS: 771160, + Profit: 302972, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 679, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 13580, + Discounts: 494.4, + Sales: 13085.6, + COGS: 12360, + Profit: 725.6, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2351, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 47020, + Discounts: 376.4, + Sales: 46643.6, + COGS: 9410, + Profit: 37233.6, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2043, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 612900, + Discounts: 11496, + Sales: 601404, + COGS: 479000, + Profit: 122404, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 3565, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 445625, + Discounts: 15913.13, + Sales: 429711.88, + COGS: 509220, + Profit: 79508.13, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1401, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 28020, + Discounts: 1548, + Sales: 26472, + COGS: 25800, + Profit: 672, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2077, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 623100, + Discounts: 6201, + Sales: 616899, + COGS: 172250, + Profit: 444649, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 3643, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 43716, + Discounts: 700.92, + Sales: 43015.08, + COGS: 5841, + Profit: 37174.08, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1105, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 13260, + Discounts: 326.88, + Sales: 12933.12, + COGS: 2724, + Profit: 10209.12, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2960, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20720, + Discounts: 411.18, + Sales: 20308.82, + COGS: 9790, + Profit: 10518.82, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1201, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 14412, + Discounts: 684.36, + Sales: 13727.64, + COGS: 5703, + Profit: 8024.64, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 2321, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 16247, + Discounts: 114.24, + Sales: 16132.76, + COGS: 2720, + Profit: 13412.76, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3640, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1274000, + Discounts: 18868.5, + Sales: 1255131.5, + COGS: 467220, + Profit: 787911.5, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3972, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 496500, + Discounts: 4826.25, + Sales: 491673.75, + COGS: 154440, + Profit: 337233.75, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3878, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 484750, + Discounts: 6397.5, + Sales: 478352.5, + COGS: 204720, + Profit: 273632.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2278, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 683400, + Discounts: 21910.5, + Sales: 661489.5, + COGS: 608625, + Profit: 52864.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1075, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 134375, + Discounts: 6652.5, + Sales: 127722.5, + COGS: 212880, + Profit: 85157.5, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 4050, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 48600, + Discounts: 684.36, + Sales: 47915.64, + COGS: 5703, + Profit: 42212.64, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3035, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 910500, + Discounts: 6201, + Sales: 904299, + COGS: 172250, + Profit: 732049, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3636, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 454500, + Discounts: 5887.5, + Sales: 448612.5, + COGS: 188400, + Profit: 260212.5, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1379, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 16548, + Discounts: 493.02, + Sales: 16054.98, + COGS: 4108.5, + Profit: 11946.48, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4492, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 561500, + Discounts: 7533.75, + Sales: 553966.25, + COGS: 241080, + Profit: 312886.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 764, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 11460, + Discounts: 875.25, + Sales: 10584.75, + COGS: 19450, + Profit: 8865.25, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1744, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 218000, + Discounts: 4826.25, + Sales: 213173.75, + COGS: 154440, + Profit: 58733.75, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2341, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 292625, + Discounts: 6397.5, + Sales: 286227.5, + COGS: 204720, + Profit: 81507.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3835, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 479375, + Discounts: 7533.75, + Sales: 471841.25, + COGS: 241080, + Profit: 230761.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1161, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 348300, + Discounts: 25596, + Sales: 322704, + COGS: 711000, + Profit: 388296, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 876, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 10512, + Discounts: 689.76, + Sales: 9822.24, + COGS: 5748, + Profit: 4074.24, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1705, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 213125, + Discounts: 5887.5, + Sales: 207237.5, + COGS: 188400, + Profit: 18837.5, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1805, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 541500, + Discounts: 16866, + Sales: 524634, + COGS: 468500, + Profit: 56134, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 389, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 136150, + Discounts: 17241, + Sales: 118909, + COGS: 426920, + Profit: 308011, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2745, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 41175, + Discounts: 875.25, + Sales: 40299.75, + COGS: 19450, + Profit: 20849.75, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1459, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 29180, + Discounts: 498.6, + Sales: 28681.4, + COGS: 8310, + Profit: 20371.4, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3938, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 27566, + Discounts: 369.6, + Sales: 27196.4, + COGS: 8800, + Profit: 18396.4, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 4236, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 84720, + Discounts: 2310.3, + Sales: 82409.7, + COGS: 38505, + Profit: 43904.7, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3627, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 43524, + Discounts: 892.44, + Sales: 42631.56, + COGS: 7437, + Profit: 35194.56, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1756, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 26340, + Discounts: 1218.6, + Sales: 25121.4, + COGS: 20310, + Profit: 4811.4, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 307, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 4605, + Discounts: 1218.6, + Sales: 3386.4, + COGS: 20310, + Profit: 16923.6, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 4489, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 67335, + Discounts: 1356.6, + Sales: 65978.4, + COGS: 22610, + Profit: 43368.4, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2167, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 43340, + Discounts: 588.8, + Sales: 42751.2, + COGS: 7360, + Profit: 35391.2, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1137, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 7959, + Discounts: 798.28, + Sales: 7160.72, + COGS: 14255, + Profit: 7094.28, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1222, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 366600, + Discounts: 24252, + Sales: 342348, + COGS: 505250, + Profit: 162902, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 489, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 171150, + Discounts: 3836, + Sales: 167314, + COGS: 71240, + Profit: 96074, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4133, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 61995, + Discounts: 1180.2, + Sales: 60814.8, + COGS: 19670, + Profit: 41144.8, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2743, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 822900, + Discounts: 22308, + Sales: 800592, + COGS: 464750, + Profit: 335842, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 3699, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 25893, + Discounts: 798.28, + Sales: 25094.72, + COGS: 14255, + Profit: 10839.72, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 4460, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1338000, + Discounts: 24252, + Sales: 1313748, + COGS: 505250, + Profit: 808498, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1232, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 154000, + Discounts: 5690, + Sales: 148310, + COGS: 136560, + Profit: 11750, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2586, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 18102, + Discounts: 1190.28, + Sales: 16911.72, + COGS: 21255, + Profit: 4343.28, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1332, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 166500, + Discounts: 3975, + Sales: 162525, + COGS: 95400, + Profit: 67125, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4487, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1346100, + Discounts: 16974, + Sales: 1329126, + COGS: 353625, + Profit: 975501, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3862, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1158600, + Discounts: 35016, + Sales: 1123584, + COGS: 729500, + Profit: 394084, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1765, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 617750, + Discounts: 48300, + Sales: 569450, + COGS: 897000, + Profit: 327550, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3533, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 441625, + Discounts: 14940, + Sales: 426685, + COGS: 358560, + Profit: 68125, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2016, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 30240, + Discounts: 130.8, + Sales: 30109.2, + COGS: 2180, + Profit: 27929.2, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2938, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 58760, + Discounts: 1659.2, + Sales: 57100.8, + COGS: 20740, + Profit: 36360.8, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3352, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67040, + Discounts: 844.8, + Sales: 66195.2, + COGS: 10560, + Profit: 55635.2, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4409, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 66135, + Discounts: 402.6, + Sales: 65732.4, + COGS: 6710, + Profit: 59022.4, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3323, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 49845, + Discounts: 908.4, + Sales: 48936.6, + COGS: 15140, + Profit: 33796.6, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2430, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 850500, + Discounts: 3836, + Sales: 846664, + COGS: 71240, + Profit: 775424, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 535, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 66875, + Discounts: 5690, + Sales: 61185, + COGS: 136560, + Profit: 75375, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1523, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 18276, + Discounts: 703.2, + Sales: 17572.8, + COGS: 4395, + Profit: 13177.8, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3631, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 72620, + Discounts: 2116.8, + Sales: 70503.2, + COGS: 26460, + Profit: 44043.2, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1782, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 623700, + Discounts: 30478, + Sales: 593222, + COGS: 566020, + Profit: 27202, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 347, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 4164, + Discounts: 415.68, + Sales: 3748.32, + COGS: 2598, + Profit: 1150.32, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 4147, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1451450, + Discounts: 4886, + Sales: 1446564, + COGS: 90740, + Profit: 1355824, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3509, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 1228150, + Discounts: 30478, + Sales: 1197672, + COGS: 566020, + Profit: 631652, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 2774, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 41610, + Discounts: 908.4, + Sales: 40701.6, + COGS: 15140, + Profit: 25561.6, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2943, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1030050, + Discounts: 26110, + Sales: 1003940, + COGS: 484900, + Profit: 519040, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 4037, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 504625, + Discounts: 5370, + Sales: 499255, + COGS: 128880, + Profit: 370375, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4146, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1451100, + Discounts: 26698, + Sales: 1424402, + COGS: 495820, + Profit: 928582, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 4123, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 61845, + Discounts: 402.6, + Sales: 61442.4, + COGS: 6710, + Profit: 54732.4, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1337, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 467950, + Discounts: 24892, + Sales: 443058, + COGS: 462280, + Profit: 19222, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 599, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 4193, + Discounts: 405.65, + Sales: 3787.35, + COGS: 5795, + Profit: 2007.65, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 725, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 5075, + Discounts: 480.2, + Sales: 4594.8, + COGS: 6860, + Profit: 2265.2, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 477, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 3339, + Discounts: 822.15, + Sales: 2516.85, + COGS: 11745, + Profit: 9228.15, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2325, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 16275, + Discounts: 941.15, + Sales: 15333.85, + COGS: 13445, + Profit: 1888.85, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 675, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 8100, + Discounts: 1458.6, + Sales: 6641.4, + COGS: 7293, + Profit: 651.6, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2990, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 35880, + Discounts: 1458.6, + Sales: 34421.4, + COGS: 7293, + Profit: 27128.4, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1072, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 7504, + Discounts: 941.15, + Sales: 6562.85, + COGS: 13445, + Profit: 6882.15, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1048, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 7336, + Discounts: 589.05, + Sales: 6746.95, + COGS: 8415, + Profit: 1668.05, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 469, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 5628, + Discounts: 673.8, + Sales: 4954.2, + COGS: 3369, + Profit: 1585.2, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 804, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 5628, + Discounts: 405.65, + Sales: 5222.35, + COGS: 5795, + Profit: 572.65, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 4240, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 50880, + Discounts: 1119, + Sales: 49761, + COGS: 5595, + Profit: 44166, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1976, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 23712, + Discounts: 669.6, + Sales: 23042.4, + COGS: 3348, + Profit: 19694.4, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1984, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39680, + Discounts: 1563, + Sales: 38117, + COGS: 15630, + Profit: 22487, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 480, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 144000, + Discounts: 14865, + Sales: 129135, + COGS: 247750, + Profit: 118615, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 3551, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 24857, + Discounts: 355.6, + Sales: 24501.4, + COGS: 5080, + Profit: 19421.4, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1205, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 18075, + Discounts: 2093.25, + Sales: 15981.75, + COGS: 27910, + Profit: 11928.25, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2480, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 17360, + Discounts: 199.5, + Sales: 17160.5, + COGS: 2850, + Profit: 14310.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 2926, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 20482, + Discounts: 870.45, + Sales: 19611.55, + COGS: 12435, + Profit: 7176.55, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3210, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1123500, + Discounts: 24228.75, + Sales: 1099271.25, + COGS: 359970, + Profit: 739301.25, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 3221, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 402625, + Discounts: 22668.75, + Sales: 379956.25, + COGS: 435240, + Profit: 55283.75, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2389, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 836150, + Discounts: 12600, + Sales: 823550, + COGS: 187200, + Profit: 636350, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 1127, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 13524, + Discounts: 1405.2, + Sales: 12118.8, + COGS: 7026, + Profit: 5092.8, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 319, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 95700, + Discounts: 16500, + Sales: 79200, + COGS: 275000, + Profit: 195800, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1610, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 32200, + Discounts: 1303, + Sales: 30897, + COGS: 13030, + Profit: 17867, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4100, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 512500, + Discounts: 18700, + Sales: 493800, + COGS: 359040, + Profit: 134760, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1012, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 126500, + Discounts: 14906.25, + Sales: 111593.75, + COGS: 286200, + Profit: 174606.25, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3337, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1001100, + Discounts: 24105, + Sales: 976995, + COGS: 401750, + Profit: 575245, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3955, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 27685, + Discounts: 814.45, + Sales: 26870.55, + COGS: 11635, + Profit: 15235.55, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4347, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1304100, + Discounts: 14865, + Sales: 1289235, + COGS: 247750, + Profit: 1041485, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1548, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 541800, + Discounts: 10535, + Sales: 531265, + COGS: 156520, + Profit: 374745, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2153, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 32295, + Discounts: 1965, + Sales: 30330, + COGS: 26200, + Profit: 4130, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3789, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1326150, + Discounts: 21490, + Sales: 1304660, + COGS: 319280, + Profit: 985380, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4364, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 87280, + Discounts: 1389, + Sales: 85891, + COGS: 13890, + Profit: 72001, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4126, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 515750, + Discounts: 5381.25, + Sales: 510368.75, + COGS: 103320, + Profit: 407048.75, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1343, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 167875, + Discounts: 4400, + Sales: 163475, + COGS: 84480, + Profit: 78995, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 245, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 4900, + Discounts: 1802, + Sales: 3098, + COGS: 18020, + Profit: 14922, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3376, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 67520, + Discounts: 2663, + Sales: 64857, + COGS: 26630, + Profit: 38227, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1401, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 9807, + Discounts: 747.6, + Sales: 9059.4, + COGS: 10680, + Profit: 1620.6, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3483, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 52245, + Discounts: 1587, + Sales: 50658, + COGS: 21160, + Profit: 29498, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2244, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 33660, + Discounts: 416.25, + Sales: 33243.75, + COGS: 5550, + Profit: 27693.75, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 1360, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 20400, + Discounts: 2145.75, + Sales: 18254.25, + COGS: 28610, + Profit: 10355.75, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 279, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 34875, + Discounts: 5043.75, + Sales: 29831.25, + COGS: 96840, + Profit: 67008.75, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2521, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 882350, + Discounts: 10535, + Sales: 871815, + COGS: 156520, + Profit: 715295, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2433, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 48660, + Discounts: 2832, + Sales: 45828, + COGS: 28320, + Profit: 17508, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1738, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 34760, + Discounts: 1579, + Sales: 33181, + COGS: 15790, + Profit: 17391, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1106, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 138250, + Discounts: 5381.25, + Sales: 132868.75, + COGS: 103320, + Profit: 29548.75, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3379, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 422375, + Discounts: 4400, + Sales: 417975, + COGS: 84480, + Profit: 333495, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1221, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 24420, + Discounts: 1033, + Sales: 23387, + COGS: 10330, + Profit: 13057, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 213, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 63900, + Discounts: 18750, + Sales: 45150, + COGS: 312500, + Profit: 267350, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3335, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 66700, + Discounts: 1389, + Sales: 65311, + COGS: 13890, + Profit: 51421, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1260, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 25200, + Discounts: 1265, + Sales: 23935, + COGS: 12650, + Profit: 11285, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3034, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 60680, + Discounts: 2297, + Sales: 58383, + COGS: 22970, + Profit: 35413, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2929, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 58580, + Discounts: 2663, + Sales: 55917, + COGS: 26630, + Profit: 29287, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2389, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 16723, + Discounts: 199.5, + Sales: 16523.5, + COGS: 2850, + Profit: 13673.5, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3086, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 21602, + Discounts: 870.45, + Sales: 20731.55, + COGS: 12435, + Profit: 8296.55, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 745, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 260750, + Discounts: 23625, + Sales: 237125, + COGS: 351000, + Profit: 113875, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1266, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 443100, + Discounts: 9660, + Sales: 433440, + COGS: 143520, + Profit: 289920, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 3790, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1326500, + Discounts: 21490, + Sales: 1305010, + COGS: 319280, + Profit: 985730, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 4287, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1286100, + Discounts: 18750, + Sales: 1267350, + COGS: 312500, + Profit: 954850, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3193, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 47895, + Discounts: 3420.9, + Sales: 44474.1, + COGS: 38010, + Profit: 6464.1, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1967, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 39340, + Discounts: 1341, + Sales: 37999, + COGS: 11175, + Profit: 26824, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 631, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 9465, + Discounts: 2559.6, + Sales: 6905.4, + COGS: 28440, + Profit: 21534.6, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3469, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 41628, + Discounts: 404.64, + Sales: 41223.36, + COGS: 1686, + Profit: 39537.36, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 570, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 6840, + Discounts: 1655.28, + Sales: 5184.72, + COGS: 6897, + Profit: 1712.28, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 3215, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 48225, + Discounts: 1827, + Sales: 46398, + COGS: 20300, + Profit: 26098, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 3754, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 26278, + Discounts: 110.46, + Sales: 26167.54, + COGS: 1315, + Profit: 24852.54, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2187, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 273375, + Discounts: 6652.5, + Sales: 266722.5, + COGS: 106440, + Profit: 160282.5, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1959, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 685650, + Discounts: 20580, + Sales: 665070, + COGS: 254800, + Profit: 410270, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2181, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 763350, + Discounts: 30660, + Sales: 732690, + COGS: 379600, + Profit: 353090, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3559, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 24913, + Discounts: 589.26, + Sales: 24323.74, + COGS: 7015, + Profit: 17308.74, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2205, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 26460, + Discounts: 1960.56, + Sales: 24499.44, + COGS: 8169, + Profit: 16330.44, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1890, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 661500, + Discounts: 31416, + Sales: 630084, + COGS: 388960, + Profit: 241124, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1296, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 15552, + Discounts: 1655.28, + Sales: 13896.72, + COGS: 6897, + Profit: 6999.72, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 775, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 271250, + Discounts: 15267, + Sales: 255983, + COGS: 189020, + Profit: 66963, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2417, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 302125, + Discounts: 7140, + Sales: 294985, + COGS: 114240, + Profit: 180745, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1158, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 144750, + Discounts: 20662.5, + Sales: 124087.5, + COGS: 330600, + Profit: 206512.5, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 803, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 12045, + Discounts: 1377, + Sales: 10668, + COGS: 15300, + Profit: 4632, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3705, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1296750, + Discounts: 31416, + Sales: 1265334, + COGS: 388960, + Profit: 876374, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 589, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 4123, + Discounts: 629.16, + Sales: 3493.84, + COGS: 7490, + Profit: 3996.16, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3797, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1139100, + Discounts: 21978, + Sales: 1117122, + COGS: 305250, + Profit: 811872, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1321, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 462350, + Discounts: 43596, + Sales: 418754, + COGS: 539760, + Profit: 121006, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3999, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 59985, + Discounts: 2559.6, + Sales: 57425.4, + COGS: 28440, + Profit: 28985.4, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 4256, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 29792, + Discounts: 629.16, + Sales: 29162.84, + COGS: 7490, + Profit: 21672.84, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1643, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 492900, + Discounts: 21978, + Sales: 470922, + COGS: 305250, + Profit: 165672, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1912, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 38240, + Discounts: 1347.6, + Sales: 36892.4, + COGS: 11230, + Profit: 25662.4, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1610, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 483000, + Discounts: 43848, + Sales: 439152, + COGS: 609000, + Profit: 169848, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2160, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 270000, + Discounts: 14906.25, + Sales: 255093.75, + COGS: 238500, + Profit: 16593.75, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 466, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 163100, + Discounts: 35259, + Sales: 127841, + COGS: 436540, + Profit: 308699, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 328, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 114800, + Discounts: 15267, + Sales: 99533, + COGS: 189020, + Profit: 89487, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 4099, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 28693, + Discounts: 589.26, + Sales: 28103.74, + COGS: 7015, + Profit: 21088.74, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 990, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 346500, + Discounts: 43596, + Sales: 302904, + COGS: 539760, + Profit: 236856, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1433, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 28660, + Discounts: 2108.4, + Sales: 26551.6, + COGS: 17570, + Profit: 8981.6, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1478, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 22170, + Discounts: 1978.2, + Sales: 20191.8, + COGS: 21980, + Profit: 1788.2, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3798, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 56970, + Discounts: 1568.7, + Sales: 55401.3, + COGS: 17430, + Profit: 37971.3, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 447, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 6705, + Discounts: 1037.7, + Sales: 5667.3, + COGS: 11530, + Profit: 5862.7, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1711, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34220, + Discounts: 2108.4, + Sales: 32111.6, + COGS: 17570, + Profit: 14541.6, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 745, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 14900, + Discounts: 1201.2, + Sales: 13698.8, + COGS: 10010, + Profit: 3688.8, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 1732, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 12124, + Discounts: 559.86, + Sales: 11564.14, + COGS: 6665, + Profit: 4899.14, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1759, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 26385, + Discounts: 1037.7, + Sales: 25347.3, + COGS: 11530, + Profit: 13817.3, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 338, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 4056, + Discounts: 610.68, + Sales: 3445.32, + COGS: 2181, + Profit: 1264.32, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 3911, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 46932, + Discounts: 1582.56, + Sales: 45349.44, + COGS: 5652, + Profit: 39697.44, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3691, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 73820, + Discounts: 2567.6, + Sales: 71252.4, + COGS: 18340, + Profit: 52912.4, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 4473, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 53676, + Discounts: 1965.6, + Sales: 51710.4, + COGS: 7020, + Profit: 44690.4, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 383, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 4596, + Discounts: 1967.28, + Sales: 2628.72, + COGS: 7026, + Profit: 4397.28, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3105, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 21735, + Discounts: 505.19, + Sales: 21229.81, + COGS: 5155, + Profit: 16074.81, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1062, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 15930, + Discounts: 1325.1, + Sales: 14604.9, + COGS: 12620, + Profit: 1984.9, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 4083, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 28581, + Discounts: 556.15, + Sales: 28024.85, + COGS: 5675, + Profit: 22349.85, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3974, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 27818, + Discounts: 268.03, + Sales: 27549.97, + COGS: 2735, + Profit: 24814.97, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3723, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 26061, + Discounts: 775.18, + Sales: 25285.82, + COGS: 7910, + Profit: 17375.82, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2435, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 29220, + Discounts: 1460.34, + Sales: 27759.66, + COGS: 5215.5, + Profit: 22544.16, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 1678, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 20136, + Discounts: 1860.6, + Sales: 18275.4, + COGS: 6645, + Profit: 11630.4, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1763, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 12341, + Discounts: 775.18, + Sales: 11565.82, + COGS: 7910, + Profit: 3655.82, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 4473, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 31311, + Discounts: 556.15, + Sales: 30754.85, + COGS: 5675, + Profit: 25079.85, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1246, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 436100, + Discounts: 43144.5, + Sales: 392955.5, + COGS: 457860, + Profit: 64904.5, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1615, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 484500, + Discounts: 9408, + Sales: 475092, + COGS: 112000, + Profit: 363092, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 749, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 224700, + Discounts: 45801, + Sales: 178899, + COGS: 545250, + Profit: 366351, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1318, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 26360, + Discounts: 2766.4, + Sales: 23593.6, + COGS: 19760, + Profit: 3833.6, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 2882, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 864600, + Discounts: 45801, + Sales: 818799, + COGS: 545250, + Profit: 273549, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3039, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 379875, + Discounts: 21875, + Sales: 358000, + COGS: 300000, + Profit: 58000, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2484, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 745200, + Discounts: 35742, + Sales: 709458, + COGS: 425500, + Profit: 283958, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3169, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 950700, + Discounts: 9408, + Sales: 941292, + COGS: 112000, + Profit: 829292, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4080, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 510000, + Discounts: 30738.75, + Sales: 479261.25, + COGS: 421560, + Profit: 57701.25, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3943, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 59145, + Discounts: 2206.05, + Sales: 56938.95, + COGS: 21010, + Profit: 35928.95, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 784, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 11760, + Discounts: 3077.55, + Sales: 8682.45, + COGS: 29310, + Profit: 20627.55, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 253, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 5060, + Discounts: 2149, + Sales: 2911, + COGS: 15350, + Profit: 12439, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1316, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 394800, + Discounts: 23583, + Sales: 371217, + COGS: 280750, + Profit: 90467, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 808, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 242400, + Discounts: 29484, + Sales: 212916, + COGS: 351000, + Profit: 138084, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3295, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 39540, + Discounts: 2320.92, + Sales: 37219.08, + COGS: 8289, + Profit: 28930.08, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 520, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 3640, + Discounts: 1041.25, + Sales: 2598.75, + COGS: 10625, + Profit: 8026.25, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 799, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 239700, + Discounts: 34839, + Sales: 204861, + COGS: 414750, + Profit: 209889, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3942, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 78840, + Discounts: 852.6, + Sales: 77987.4, + COGS: 6090, + Profit: 71897.4, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2498, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 312250, + Discounts: 18261.25, + Sales: 293988.75, + COGS: 250440, + Profit: 43548.75, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 2517, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 50340, + Discounts: 2766.4, + Sales: 47573.6, + COGS: 19760, + Profit: 27813.6, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3182, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 63640, + Discounts: 1989.4, + Sales: 61650.6, + COGS: 14210, + Profit: 47440.6, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1145, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 343500, + Discounts: 28812, + Sales: 314688, + COGS: 343000, + Profit: 28312, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 895, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 17900, + Discounts: 823.2, + Sales: 17076.8, + COGS: 5880, + Profit: 11196.8, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3814, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 45768, + Discounts: 2725.38, + Sales: 43042.62, + COGS: 9733.5, + Profit: 33309.12, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1188, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 356400, + Discounts: 20139, + Sales: 336261, + COGS: 239750, + Profit: 96511, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 2233, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 669900, + Discounts: 57687, + Sales: 612213, + COGS: 686750, + Profit: 74537, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 421, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 52625, + Discounts: 14393.75, + Sales: 38231.25, + COGS: 197400, + Profit: 159168.75, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 269, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 94150, + Discounts: 70462, + Sales: 23688, + COGS: 747760, + Profit: 724072, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 3766, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 470750, + Discounts: 8697.5, + Sales: 462052.5, + COGS: 119280, + Profit: 342772.5, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 952, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19040, + Discounts: 1565.2, + Sales: 17474.8, + COGS: 11180, + Profit: 6294.8, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2964, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 889200, + Discounts: 28812, + Sales: 860388, + COGS: 343000, + Profit: 517388, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1505, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 10535, + Discounts: 273.28, + Sales: 10261.72, + COGS: 2440, + Profit: 7821.72, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1678, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 33560, + Discounts: 2051.2, + Sales: 31508.8, + COGS: 12820, + Profit: 18688.8, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4249, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 29743, + Discounts: 143.92, + Sales: 29599.08, + COGS: 1285, + Profit: 28314.08, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1677, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 33540, + Discounts: 2051.2, + Sales: 31488.8, + COGS: 12820, + Profit: 18668.8, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3051, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 381375, + Discounts: 15400, + Sales: 365975, + COGS: 184800, + Profit: 181175, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 3372, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 50580, + Discounts: 588, + Sales: 49992, + COGS: 4900, + Profit: 45092, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1686, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 590100, + Discounts: 38136, + Sales: 551964, + COGS: 354120, + Profit: 197844, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3086, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 46290, + Discounts: 3001.2, + Sales: 43288.8, + COGS: 25010, + Profit: 18278.8, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 4150, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 83000, + Discounts: 1132.8, + Sales: 81867.2, + COGS: 7080, + Profit: 74787.2, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3027, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 60540, + Discounts: 1032, + Sales: 59508, + COGS: 6450, + Profit: 53058, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 4359, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1307700, + Discounts: 37488, + Sales: 1270212, + COGS: 390500, + Profit: 879712, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 3628, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1088400, + Discounts: 30792, + Sales: 1057608, + COGS: 320750, + Profit: 736858, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 1589, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 23835, + Discounts: 853.2, + Sales: 22981.8, + COGS: 7110, + Profit: 15871.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2679, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 334875, + Discounts: 11140, + Sales: 323735, + COGS: 133680, + Profit: 190055, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3401, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 23807, + Discounts: 705.04, + Sales: 23101.96, + COGS: 6295, + Profit: 16806.96, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2815, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 19705, + Discounts: 613.2, + Sales: 19091.8, + COGS: 5475, + Profit: 13616.8, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2964, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 59280, + Discounts: 2185.6, + Sales: 57094.4, + COGS: 13660, + Profit: 43434.4, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 4173, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1251900, + Discounts: 59040, + Sales: 1192860, + COGS: 615000, + Profit: 577860, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1157, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 8099, + Discounts: 379.68, + Sales: 7719.32, + COGS: 3390, + Profit: 4329.32, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3065, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 21455, + Discounts: 894.88, + Sales: 20560.12, + COGS: 7990, + Profit: 12570.12, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1962, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 13734, + Discounts: 1349.04, + Sales: 12384.96, + COGS: 12045, + Profit: 339.96, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4080, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 81600, + Discounts: 3094.4, + Sales: 78505.6, + COGS: 19340, + Profit: 59165.6, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1713, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34260, + Discounts: 4788.8, + Sales: 29471.2, + COGS: 29930, + Profit: 458.8, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2795, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 978250, + Discounts: 60088, + Sales: 918162, + COGS: 557960, + Profit: 360202, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 4082, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 28574, + Discounts: 1089.76, + Sales: 27484.24, + COGS: 9730, + Profit: 17754.24, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1691, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 591850, + Discounts: 38136, + Sales: 553714, + COGS: 354120, + Profit: 199594, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2305, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 27660, + Discounts: 574.08, + Sales: 27085.92, + COGS: 1794, + Profit: 25291.92, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3401, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 23807, + Discounts: 1627.92, + Sales: 22179.08, + COGS: 14535, + Profit: 7644.08, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2288, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 16016, + Discounts: 1309.28, + Sales: 14706.72, + COGS: 11690, + Profit: 3016.72, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 2399, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 719700, + Discounts: 9264, + Sales: 710436, + COGS: 96500, + Profit: 613936, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 4086, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1225800, + Discounts: 15240, + Sales: 1210560, + COGS: 158750, + Profit: 1051810, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2651, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 927850, + Discounts: 16086, + Sales: 911764, + COGS: 149370, + Profit: 762394, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3971, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27797, + Discounts: 1309.28, + Sales: 26487.72, + COGS: 11690, + Profit: 14797.72, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2512, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 879200, + Discounts: 10668, + Sales: 868532, + COGS: 99060, + Profit: 769472, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2745, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 960750, + Discounts: 11816, + Sales: 948934, + COGS: 109720, + Profit: 839214, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1903, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 570900, + Discounts: 51216, + Sales: 519684, + COGS: 533500, + Profit: 13816, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 647, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 194100, + Discounts: 19392, + Sales: 174708, + COGS: 202000, + Profit: 27292, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2914, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 58280, + Discounts: 1132.8, + Sales: 57147.2, + COGS: 7080, + Profit: 50067.2, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1889, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 13223, + Discounts: 1627.92, + Sales: 11595.08, + COGS: 14535, + Profit: 2939.92, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1466, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 29320, + Discounts: 2185.6, + Sales: 27134.4, + COGS: 13660, + Profit: 13474.4, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 887, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 266100, + Discounts: 59040, + Sales: 207060, + COGS: 615000, + Profit: 407940, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 395, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 7900, + Discounts: 2432, + Sales: 5468, + COGS: 15200, + Profit: 9732, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1693, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 25395, + Discounts: 853.2, + Sales: 24541.8, + COGS: 7110, + Profit: 17431.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2459, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 29508, + Discounts: 1320, + Sales: 28188, + COGS: 4125, + Profit: 24063, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2649, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 794700, + Discounts: 15240, + Sales: 779460, + COGS: 158750, + Profit: 620710, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 3608, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 72160, + Discounts: 698.4, + Sales: 71461.6, + COGS: 4365, + Profit: 67096.6, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1073, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 321900, + Discounts: 29538, + Sales: 292362, + COGS: 273500, + Profit: 18862, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1754, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 21048, + Discounts: 396.36, + Sales: 20651.64, + COGS: 1101, + Profit: 19550.64, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 2167, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 650100, + Discounts: 102667.5, + Sales: 547432.5, + COGS: 950625, + Profit: 403192.5, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1319, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 461650, + Discounts: 52479, + Sales: 409171, + COGS: 433160, + Profit: 23989, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1679, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 503700, + Discounts: 8694, + Sales: 495006, + COGS: 80500, + Profit: 414506, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1252, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 15024, + Discounts: 2506.68, + Sales: 12517.32, + COGS: 6963, + Profit: 5554.32, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3493, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 436625, + Discounts: 20891.25, + Sales: 415733.75, + COGS: 222840, + Profit: 192893.75, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1697, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 11879, + Discounts: 1014.93, + Sales: 10864.07, + COGS: 8055, + Profit: 2809.07, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1156, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 144500, + Discounts: 31466.25, + Sales: 113033.75, + COGS: 335640, + Profit: 222606.25, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 726, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 217800, + Discounts: 9018, + Sales: 208782, + COGS: 83500, + Profit: 125282, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1153, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 345900, + Discounts: 69255, + Sales: 276645, + COGS: 641250, + Profit: 364605, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2720, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 952000, + Discounts: 76135.5, + Sales: 875864.5, + COGS: 628420, + Profit: 247444.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3658, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 54870, + Discounts: 4961.25, + Sales: 49908.75, + COGS: 36750, + Profit: 13158.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2950, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 885000, + Discounts: 29538, + Sales: 855462, + COGS: 273500, + Profit: 581962, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1821, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 27315, + Discounts: 1656.45, + Sales: 25658.55, + COGS: 12270, + Profit: 13388.55, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 4174, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 50088, + Discounts: 396.36, + Sales: 49691.64, + COGS: 1101, + Profit: 48590.64, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1127, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 338100, + Discounts: 35748, + Sales: 302352, + COGS: 331000, + Profit: 28648, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2209, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 26508, + Discounts: 1917, + Sales: 24591, + COGS: 5325, + Profit: 19266, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 862, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 107750, + Discounts: 31466.25, + Sales: 76283.75, + COGS: 335640, + Profit: 259356.25, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3805, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 57075, + Discounts: 330.75, + Sales: 56744.25, + COGS: 2450, + Profit: 54294.25, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1415, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 424500, + Discounts: 102424.5, + Sales: 322075.5, + COGS: 948375, + Profit: 626299.5, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2231, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 780850, + Discounts: 41170.5, + Sales: 739679.5, + COGS: 339820, + Profit: 399859.5, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3649, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 456125, + Discounts: 6378.75, + Sales: 449746.25, + COGS: 68040, + Profit: 381706.25, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2948, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 368500, + Discounts: 23737.5, + Sales: 344762.5, + COGS: 253200, + Profit: 91562.5, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 3395, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1188250, + Discounts: 39973.5, + Sales: 1148276.5, + COGS: 329940, + Profit: 818336.5, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2650, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 31800, + Discounts: 2112.48, + Sales: 29687.52, + COGS: 5868, + Profit: 23819.52, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 585, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 175500, + Discounts: 71793, + Sales: 103707, + COGS: 664750, + Profit: 561043, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1316, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 460600, + Discounts: 42572.25, + Sales: 418027.75, + COGS: 351390, + Profit: 66637.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 4459, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 53508, + Discounts: 950.4, + Sales: 52557.6, + COGS: 2640, + Profit: 49917.6, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2711, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 813300, + Discounts: 50409, + Sales: 762891, + COGS: 466750, + Profit: 296141, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2621, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 31452, + Discounts: 2412.72, + Sales: 29039.28, + COGS: 6702, + Profit: 22337.28, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3613, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 54195, + Discounts: 1656.45, + Sales: 52538.55, + COGS: 12270, + Profit: 40268.55, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1847, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 230875, + Discounts: 9866.25, + Sales: 221008.75, + COGS: 105240, + Profit: 115768.75, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2996, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1048600, + Discounts: 65236.5, + Sales: 983363.5, + COGS: 538460, + Profit: 444903.5, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2838, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 993300, + Discounts: 39973.5, + Sales: 953326.5, + COGS: 329940, + Profit: 623386.5, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 1302, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 19530, + Discounts: 1309.5, + Sales: 18220.5, + COGS: 9700, + Profit: 8520.5, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1536, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 30720, + Discounts: 3049.2, + Sales: 27670.8, + COGS: 16940, + Profit: 10730.8, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1291, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 25820, + Discounts: 1193.4, + Sales: 24626.6, + COGS: 6630, + Profit: 17996.6, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1213, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 8491, + Discounts: 515.97, + Sales: 7975.03, + COGS: 4095, + Profit: 3880.03, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2370, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 28440, + Discounts: 1706.4, + Sales: 26733.6, + COGS: 4740, + Profit: 21993.6, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1979, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 13853, + Discounts: 328.23, + Sales: 13524.77, + COGS: 2605, + Profit: 10919.77, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2879, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 57580, + Discounts: 1751.4, + Sales: 55828.6, + COGS: 9730, + Profit: 46098.6, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1707, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 34140, + Discounts: 1868.4, + Sales: 32271.6, + COGS: 10380, + Profit: 21891.6, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2933, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 20531, + Discounts: 226.8, + Sales: 20304.2, + COGS: 1800, + Profit: 18504.2, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1014, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 12168, + Discounts: 2124.36, + Sales: 10043.64, + COGS: 5901, + Profit: 4142.64, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 693, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 10395, + Discounts: 3547.8, + Sales: 6847.2, + COGS: 26280, + Profit: 19432.8, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3741, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 26187, + Discounts: 226.8, + Sales: 25960.2, + COGS: 1800, + Profit: 24160.2, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3116, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 62320, + Discounts: 4827.6, + Sales: 57492.4, + COGS: 26820, + Profit: 30672.4, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 3995, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 27965, + Discounts: 328.23, + Sales: 27636.77, + COGS: 2605, + Profit: 25031.77, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 953, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 19060, + Discounts: 1868.4, + Sales: 17191.6, + COGS: 10380, + Profit: 6811.6, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 2530, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 37950, + Discounts: 2201.18, + Sales: 35748.82, + COGS: 16305, + Profit: 19443.82, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2565, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 30780, + Discounts: 330.48, + Sales: 30449.52, + COGS: 918, + Profit: 29531.52, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 4297, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 51564, + Discounts: 463.2, + Sales: 51100.8, + COGS: 1158, + Profit: 49942.8, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2871, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20097, + Discounts: 1629.6, + Sales: 18467.4, + COGS: 11640, + Profit: 6827.4, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3537, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 42444, + Discounts: 463.2, + Sales: 41980.8, + COGS: 1158, + Profit: 40822.8, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1598, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 199750, + Discounts: 43068.75, + Sales: 156681.25, + COGS: 413460, + Profit: 256778.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 2616, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 327000, + Discounts: 18525, + Sales: 308475, + COGS: 177840, + Profit: 130635, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2836, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 992600, + Discounts: 80955, + Sales: 911645, + COGS: 601380, + Profit: 310265, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 4023, + ManufacturingPrice: 5, + SalePrice: 125, + GrossSales: 502875, + Discounts: 22550, + Sales: 480325, + COGS: 216480, + Profit: 263845, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3994, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 59910, + Discounts: 3108, + Sales: 56802, + COGS: 20720, + Profit: 36082, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2928, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 58560, + Discounts: 3908, + Sales: 54652, + COGS: 19540, + Profit: 35112, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2912, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 873600, + Discounts: 17730, + Sales: 855870, + COGS: 147750, + Profit: 708120, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3671, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 55065, + Discounts: 3250.5, + Sales: 51814.5, + COGS: 21670, + Profit: 30144.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2778, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 55560, + Discounts: 482, + Sales: 55078, + COGS: 2410, + Profit: 52668, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 405, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 6075, + Discounts: 1021.5, + Sales: 5053.5, + COGS: 6810, + Profit: 1756.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 2013, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 30195, + Discounts: 765, + Sales: 29430, + COGS: 5100, + Profit: 24330, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2634, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 39510, + Discounts: 1185, + Sales: 38325, + COGS: 7900, + Profit: 30425, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 4166, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1458100, + Discounts: 22365, + Sales: 1435735, + COGS: 166140, + Profit: 1269595, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 355, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 44375, + Discounts: 19950, + Sales: 24425, + COGS: 191520, + Profit: 167095, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2382, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 714600, + Discounts: 68820, + Sales: 645780, + COGS: 573500, + Profit: 72280, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 4170, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 83400, + Discounts: 482, + Sales: 82918, + COGS: 2410, + Profit: 80508, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 892, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 6244, + Discounts: 1865.5, + Sales: 4378.5, + COGS: 13325, + Profit: 8946.5, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2200, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 275000, + Discounts: 23950, + Sales: 251050, + COGS: 229920, + Profit: 21130, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3389, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1016700, + Discounts: 25590, + Sales: 991110, + COGS: 213250, + Profit: 777860, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 2990, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 373750, + Discounts: 4262.5, + Sales: 369487.5, + COGS: 40920, + Profit: 328567.5, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 4013, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 60195, + Discounts: 961.5, + Sales: 59233.5, + COGS: 6410, + Profit: 52823.5, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 739, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 258650, + Discounts: 98245, + Sales: 160405, + COGS: 729820, + Profit: 569415, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 1989, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 596700, + Discounts: 12960, + Sales: 583740, + COGS: 108000, + Profit: 475740, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2991, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 897300, + Discounts: 68820, + Sales: 828480, + COGS: 573500, + Profit: 254980, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 4237, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 63555, + Discounts: 3250.5, + Sales: 60304.5, + COGS: 21670, + Profit: 38634.5, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1442, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 180250, + Discounts: 31612.5, + Sales: 148637.5, + COGS: 303480, + Profit: 154842.5, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2712, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 949200, + Discounts: 65450, + Sales: 883750, + COGS: 486200, + Profit: 397550, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1508, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 188500, + Discounts: 7237.5, + Sales: 181262.5, + COGS: 69480, + Profit: 111782.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 4245, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1485750, + Discounts: 78400, + Sales: 1407350, + COGS: 582400, + Profit: 824950, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2630, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 789000, + Discounts: 89790, + Sales: 699210, + COGS: 748250, + Profit: 49040, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1182, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 14184, + Discounts: 4224.6, + Sales: 9959.4, + COGS: 10561.5, + Profit: 602.1, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1221, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 24420, + Discounts: 4078, + Sales: 20342, + COGS: 20390, + Profit: 48, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 963, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 11556, + Discounts: 3088.8, + Sales: 8467.2, + COGS: 7722, + Profit: 745.2, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 3243, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 1135050, + Discounts: 24745, + Sales: 1110305, + COGS: 183820, + Profit: 926485, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1120, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 16800, + Discounts: 3108, + Sales: 13692, + COGS: 20720, + Profit: 7028, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1174, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 352200, + Discounts: 25590, + Sales: 326610, + COGS: 213250, + Profit: 113360, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 2541, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 30492, + Discounts: 1581.36, + Sales: 28910.64, + COGS: 3594, + Profit: 25316.64, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3246, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 22722, + Discounts: 1949.64, + Sales: 20772.36, + COGS: 12660, + Profit: 8112.36, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1531, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 18372, + Discounts: 1581.36, + Sales: 16790.64, + COGS: 3594, + Profit: 13196.64, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2526, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 37890, + Discounts: 633.6, + Sales: 37256.4, + COGS: 3840, + Profit: 33416.4, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 1136, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 13632, + Discounts: 623.04, + Sales: 13008.96, + COGS: 1416, + Profit: 11592.96, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1983, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 13881, + Discounts: 1215.83, + Sales: 12665.17, + COGS: 7895, + Profit: 4770.17, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 3259, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 39108, + Discounts: 1326.6, + Sales: 37781.4, + COGS: 3015, + Profit: 34766.4, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 3267, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 49005, + Discounts: 5279.17, + Sales: 43725.82, + COGS: 31995, + Profit: 11730.82, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 2454, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 29448, + Discounts: 623.04, + Sales: 28824.96, + COGS: 1416, + Profit: 27408.96, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 2643, + ManufacturingPrice: 3, + SalePrice: 12, + GrossSales: 31716, + Discounts: 2556.84, + Sales: 29159.16, + COGS: 5811, + Profit: 23348.16, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 383, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 134050, + Discounts: 30492, + Sales: 103558, + COGS: 205920, + Profit: 102362, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2801, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 840300, + Discounts: 92763, + Sales: 747537, + COGS: 702750, + Profit: 44787, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1667, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 208375, + Discounts: 33563.75, + Sales: 174811.25, + COGS: 292920, + Profit: 118108.75, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 3539, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 53085, + Discounts: 2574, + Sales: 50511, + COGS: 15600, + Profit: 34911, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 4226, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 29582, + Discounts: 2083.62, + Sales: 27498.38, + COGS: 13530, + Profit: 13968.38, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 2220, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 777000, + Discounts: 29491, + Sales: 747509, + COGS: 199160, + Profit: 548349, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 776, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 15520, + Discounts: 6582.4, + Sales: 8937.6, + COGS: 29920, + Profit: 20982.4, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 553, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 8295, + Discounts: 3559.05, + Sales: 4735.95, + COGS: 21570, + Profit: 16834.05, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2107, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 632100, + Discounts: 28809, + Sales: 603291, + COGS: 218250, + Profit: 385041, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2468, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 49360, + Discounts: 2468.4, + Sales: 46891.6, + COGS: 11220, + Profit: 35671.6, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1905, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 666750, + Discounts: 81023.25, + Sales: 585726.75, + COGS: 547170, + Profit: 38556.75, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3658, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 43896, + Discounts: 5314.32, + Sales: 38581.68, + COGS: 12078, + Profit: 26503.68, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 4301, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 51612, + Discounts: 3201.66, + Sales: 48410.34, + COGS: 7276.5, + Profit: 41133.84, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2446, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 48920, + Discounts: 5266.8, + Sales: 43653.2, + COGS: 23940, + Profit: 19713.2, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 4209, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 63135, + Discounts: 3273.6, + Sales: 59861.4, + COGS: 19840, + Profit: 40021.4, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3353, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 419125, + Discounts: 33563.75, + Sales: 385561.25, + COGS: 292920, + Profit: 92641.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1401, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 28020, + Discounts: 6582.4, + Sales: 21437.6, + COGS: 29920, + Profit: 8482.4, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1865, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 559500, + Discounts: 45078, + Sales: 514422, + COGS: 341500, + Profit: 172922, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 463, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 9260, + Discounts: 6171, + Sales: 3089, + COGS: 28050, + Profit: 24961, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 4177, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 62655, + Discounts: 1080.75, + Sales: 61574.25, + COGS: 6550, + Profit: 55024.25, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2523, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 883050, + Discounts: 13244, + Sales: 869806, + COGS: 89440, + Profit: 780366, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 1930, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 13510, + Discounts: 1392.16, + Sales: 12117.84, + COGS: 9040, + Profit: 3077.84, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1301, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 15612, + Discounts: 2288.88, + Sales: 13323.12, + COGS: 5202, + Profit: 8121.12, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 4125, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 515625, + Discounts: 7617.5, + Sales: 508007.5, + COGS: 66480, + Profit: 441527.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 607, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 12140, + Discounts: 6457, + Sales: 5683, + COGS: 29350, + Profit: 23667, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 478, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 59750, + Discounts: 43518.75, + Sales: 16231.25, + COGS: 379800, + Profit: 363568.75, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 4489, + ManufacturingPrice: 260, + SalePrice: 20, + GrossSales: 89780, + Discounts: 5783.8, + Sales: 83996.2, + COGS: 26290, + Profit: 57706.2, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1504, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 188000, + Discounts: 19703.75, + Sales: 168296.25, + COGS: 171960, + Profit: 3663.75, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 3763, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 470375, + Discounts: 13021.25, + Sales: 457353.75, + COGS: 113640, + Profit: 343713.75, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2412, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 844200, + Discounts: 13244, + Sales: 830956, + COGS: 89440, + Profit: 741516, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 2342, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 35130, + Discounts: 3559.05, + Sales: 31570.95, + COGS: 21570, + Profit: 10000.95, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4451, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 31157, + Discounts: 292.6, + Sales: 30864.4, + COGS: 1900, + Profit: 28964.4, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3796, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1328600, + Discounts: 37212, + Sales: 1291388, + COGS: 230360, + Profit: 1061028, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 2286, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 285750, + Discounts: 36240, + Sales: 249510, + COGS: 289920, + Profit: 40410, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 3614, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 451750, + Discounts: 32340, + Sales: 419410, + COGS: 258720, + Profit: 160690, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1716, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 25740, + Discounts: 4840.2, + Sales: 20899.8, + COGS: 26890, + Profit: 5990.2, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1301, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 19515, + Discounts: 1218.6, + Sales: 18296.4, + COGS: 6770, + Profit: 11526.4, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 4175, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1252500, + Discounts: 63828, + Sales: 1188672, + COGS: 443250, + Profit: 745422, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 975, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 6825, + Discounts: 2032.8, + Sales: 4792.2, + COGS: 12100, + Profit: 7307.8, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 1154, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 8078, + Discounts: 2296.56, + Sales: 5781.44, + COGS: 13670, + Profit: 7888.56, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1873, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 37460, + Discounts: 4116, + Sales: 33344, + COGS: 17150, + Profit: 16194, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 3766, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 1129800, + Discounts: 42696, + Sales: 1087104, + COGS: 296500, + Profit: 790604, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3558, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1067400, + Discounts: 125820, + Sales: 941580, + COGS: 873750, + Profit: 67830, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3156, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1104600, + Discounts: 37212, + Sales: 1067388, + COGS: 230360, + Profit: 837028, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2994, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 374250, + Discounts: 32340, + Sales: 341910, + COGS: 258720, + Profit: 83190, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2087, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 41740, + Discounts: 2172, + Sales: 39568, + COGS: 9050, + Profit: 30518, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1056, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 21120, + Discounts: 4116, + Sales: 17004, + COGS: 17150, + Profit: 146, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1353, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 473550, + Discounts: 66948, + Sales: 406602, + COGS: 414440, + Profit: 7838, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 416, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 124800, + Discounts: 48924, + Sales: 75876, + COGS: 339750, + Profit: 263874, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 3880, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1164000, + Discounts: 77400, + Sales: 1086600, + COGS: 537500, + Profit: 549100, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 809, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 283150, + Discounts: 50274, + Sales: 232876, + COGS: 311220, + Profit: 78344, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1892, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 28380, + Discounts: 684, + Sales: 27696, + COGS: 3800, + Profit: 23896, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2072, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 41440, + Discounts: 2959.2, + Sales: 38480.8, + COGS: 12330, + Profit: 26150.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3052, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1068200, + Discounts: 58590, + Sales: 1009610, + COGS: 362700, + Profit: 646910, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 3121, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 1092350, + Discounts: 41412, + Sales: 1050938, + COGS: 256360, + Profit: 794578, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2059, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 41180, + Discounts: 2172, + Sales: 39008, + COGS: 9050, + Profit: 29958, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4254, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 51048, + Discounts: 3036.96, + Sales: 48011.04, + COGS: 6327, + Profit: 41684.04, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 1293, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 19395, + Discounts: 6974.1, + Sales: 12420.9, + COGS: 38745, + Profit: 26324.1, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1293, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 452550, + Discounts: 26166, + Sales: 426384, + COGS: 161980, + Profit: 264404, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 230, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 80500, + Discounts: 41412, + Sales: 39088, + COGS: 256360, + Profit: 217272, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1723, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 215375, + Discounts: 35805, + Sales: 179570, + COGS: 286440, + Profit: 106870, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 240, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 4800, + Discounts: 2959.2, + Sales: 1840.8, + COGS: 12330, + Profit: 10489.2, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 2571, + ManufacturingPrice: 260, + SalePrice: 350, + GrossSales: 899850, + Discounts: 11340, + Sales: 888510, + COGS: 70200, + Profit: 818310, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1661, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 11627, + Discounts: 2874.06, + Sales: 8752.94, + COGS: 17107.5, + Profit: 8354.56, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 4474, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 31318, + Discounts: 2296.56, + Sales: 29021.44, + COGS: 13670, + Profit: 15351.44, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 833, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 12495, + Discounts: 4586.4, + Sales: 7908.6, + COGS: 25480, + Profit: 17571.4, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 674, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 13480, + Discounts: 6051.6, + Sales: 7428.4, + COGS: 25215, + Profit: 17786.6, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 778, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 9336, + Discounts: 3831.84, + Sales: 5504.16, + COGS: 7983, + Profit: 2478.84, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1457, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 29140, + Discounts: 3674.4, + Sales: 25465.6, + COGS: 15310, + Profit: 10155.6, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 3158, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 22106, + Discounts: 1252.44, + Sales: 20853.56, + COGS: 7455, + Profit: 13398.56, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 4095, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 81900, + Discounts: 3674.4, + Sales: 78225.6, + COGS: 15310, + Profit: 62915.6, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 3170, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 38040, + Discounts: 3975.84, + Sales: 34064.16, + COGS: 8283, + Profit: 25781.16, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 493, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 7395, + Discounts: 5005.65, + Sales: 2389.35, + COGS: 25670, + Profit: 23280.65, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 3286, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 49290, + Discounts: 5005.65, + Sales: 44284.35, + COGS: 25670, + Profit: 18614.35, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 3563, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1247050, + Discounts: 41996.5, + Sales: 1205053.5, + COGS: 239980, + Profit: 965073.5, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 4109, + ManufacturingPrice: 3, + SalePrice: 350, + GrossSales: 1438150, + Discounts: 81445, + Sales: 1356705, + COGS: 465400, + Profit: 891305, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 3653, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 73060, + Discounts: 1149.2, + Sales: 71910.8, + COGS: 4420, + Profit: 67490.8, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2203, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 771050, + Discounts: 44703.75, + Sales: 726346.25, + COGS: 255450, + Profit: 470896.25, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 2924, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 20468, + Discounts: 1181.18, + Sales: 19286.82, + COGS: 6490, + Profit: 12796.82, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2650, + ManufacturingPrice: 5, + SalePrice: 12, + GrossSales: 31800, + Discounts: 942.24, + Sales: 30857.76, + COGS: 1812, + Profit: 29045.76, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 1194, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 23880, + Discounts: 5863, + Sales: 18017, + COGS: 22550, + Profit: 4533, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 3366, + ManufacturingPrice: 5, + SalePrice: 20, + GrossSales: 67320, + Discounts: 3247.4, + Sales: 64072.6, + COGS: 12490, + Profit: 51582.6, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1325, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 9275, + Discounts: 1309.04, + Sales: 7965.97, + COGS: 7192.5, + Profit: 773.47, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 4243, + ManufacturingPrice: 10, + SalePrice: 300, + GrossSales: 1272900, + Discounts: 31473, + Sales: 1241427, + COGS: 201750, + Profit: 1039677, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2887, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 57740, + Discounts: 6866.6, + Sales: 50873.4, + COGS: 26410, + Profit: 24463.4, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3839, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 76780, + Discounts: 7040.8, + Sales: 69739.2, + COGS: 27080, + Profit: 42659.2, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1863, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 652050, + Discounts: 119756, + Sales: 532294, + COGS: 684320, + Profit: 152026, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2858, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 357250, + Discounts: 25723.75, + Sales: 331526.25, + COGS: 189960, + Profit: 141566.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2868, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 34416, + Discounts: 890.76, + Sales: 33525.24, + COGS: 1713, + Profit: 31812.24, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 3805, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 26635, + Discounts: 2453.36, + Sales: 24181.64, + COGS: 13480, + Profit: 10701.64, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3914, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 58710, + Discounts: 3051.75, + Sales: 55658.25, + COGS: 15650, + Profit: 40008.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 524, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 10480, + Discounts: 3247.4, + Sales: 7232.6, + COGS: 12490, + Profit: 5257.4, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 3095, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1083250, + Discounts: 16243.5, + Sales: 1067006.5, + COGS: 92820, + Profit: 974186.5, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2410, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 28920, + Discounts: 1580.28, + Sales: 27339.72, + COGS: 3039, + Profit: 24300.72, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 4263, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 63945, + Discounts: 7795.13, + Sales: 56149.88, + COGS: 39975, + Profit: 16174.88, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2239, + ManufacturingPrice: 120, + SalePrice: 350, + GrossSales: 783650, + Discounts: 119756, + Sales: 663894, + COGS: 684320, + Profit: 20426, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 569, + ManufacturingPrice: 120, + SalePrice: 7, + GrossSales: 3983, + Discounts: 1082.9, + Sales: 2900.1, + COGS: 5950, + Profit: 3049.9, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3889, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 46668, + Discounts: 942.24, + Sales: 45725.76, + COGS: 1812, + Profit: 43913.76, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 1378, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 20670, + Discounts: 1287, + Sales: 19383, + COGS: 6600, + Profit: 12783, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2253, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 27036, + Discounts: 639.6, + Sales: 26396.4, + COGS: 1230, + Profit: 25166.4, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 3202, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 960600, + Discounts: 101595, + Sales: 859005, + COGS: 651250, + Profit: 207755, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3835, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 46020, + Discounts: 1580.28, + Sales: 44439.72, + COGS: 3039, + Profit: 41400.72, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 2487, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 310875, + Discounts: 25723.75, + Sales: 285151.25, + COGS: 189960, + Profit: 95191.25, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4428, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 66420, + Discounts: 3051.75, + Sales: 63368.25, + COGS: 15650, + Profit: 47718.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1200, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 150000, + Discounts: 26958.75, + Sales: 123041.25, + COGS: 199080, + Profit: 76038.75, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2953, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 20671, + Discounts: 1082.9, + Sales: 19588.1, + COGS: 5950, + Profit: 13638.1, + Date: `6/1/19`, + Month: `June`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1453, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 17436, + Discounts: 639.6, + Sales: 16796.4, + COGS: 1230, + Profit: 15566.4, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Luxe`, + UnitsSold: 865, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 10380, + Discounts: 2761.2, + Sales: 7618.8, + COGS: 5310, + Profit: 2308.8, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 1072, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 21440, + Discounts: 7221.2, + Sales: 14218.8, + COGS: 25790, + Profit: 11571.2, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1737, + ManufacturingPrice: 3, + SalePrice: 20, + GrossSales: 34740, + Discounts: 4880.4, + Sales: 29859.6, + COGS: 17430, + Profit: 12429.6, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 1535, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 10745, + Discounts: 2936.08, + Sales: 7808.92, + COGS: 14980, + Profit: 7171.08, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2532, + ManufacturingPrice: 3, + SalePrice: 7, + GrossSales: 17724, + Discounts: 274.4, + Sales: 17449.6, + COGS: 1400, + Profit: 16049.6, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Royal Oak`, + UnitsSold: 1765, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 12355, + Discounts: 287.14, + Sales: 12067.86, + COGS: 1465, + Profit: 10602.86, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Royal Oak`, + UnitsSold: 1567, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 10969, + Discounts: 2936.08, + Sales: 8032.92, + COGS: 14980, + Profit: 6947.08, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2640, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 39600, + Discounts: 583.8, + Sales: 39016.2, + COGS: 2780, + Profit: 36236.2, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3079, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 61580, + Discounts: 6798.4, + Sales: 54781.6, + COGS: 24280, + Profit: 30501.6, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 4130, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 61950, + Discounts: 3710.7, + Sales: 58239.3, + COGS: 17670, + Profit: 40569.3, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2938, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 35256, + Discounts: 2340.24, + Sales: 32915.76, + COGS: 4179, + Profit: 28736.76, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 3080, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 21560, + Discounts: 274.4, + Sales: 21285.6, + COGS: 1400, + Profit: 19885.6, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1530, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 18360, + Discounts: 2340.24, + Sales: 16019.76, + COGS: 4179, + Profit: 11840.76, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 3537, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 42444, + Discounts: 3385.2, + Sales: 39058.8, + COGS: 6045, + Profit: 33013.8, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 2021, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 606300, + Discounts: 33642, + Sales: 572658, + COGS: 200250, + Profit: 372408, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1804, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 225500, + Discounts: 17902.5, + Sales: 207597.5, + COGS: 122760, + Profit: 84837.5, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1014, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 304200, + Discounts: 62832, + Sales: 241368, + COGS: 374000, + Profit: 132632, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Kensington`, + UnitsSold: 2913, + ManufacturingPrice: 3, + SalePrice: 300, + GrossSales: 873900, + Discounts: 42420, + Sales: 831480, + COGS: 252500, + Profit: 578980, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 763, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 11445, + Discounts: 3177.3, + Sales: 8267.7, + COGS: 15130, + Profit: 6862.3, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Kensington`, + UnitsSold: 1425, + ManufacturingPrice: 3, + SalePrice: 15, + GrossSales: 21375, + Discounts: 4830, + Sales: 16545, + COGS: 23000, + Profit: 6455, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Kensington`, + UnitsSold: 4357, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 544625, + Discounts: 49367.5, + Sales: 495257.5, + COGS: 338520, + Profit: 156737.5, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 2138, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 748300, + Discounts: 109147.5, + Sales: 639152.5, + COGS: 579150, + Profit: 60002.5, + Date: `1/1/19`, + Month: `January`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Royal Oak`, + UnitsSold: 3825, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1338750, + Discounts: 58751, + Sales: 1279999, + COGS: 311740, + Profit: 968259, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 3393, + ManufacturingPrice: 5, + SalePrice: 350, + GrossSales: 1187550, + Discounts: 9800, + Sales: 1177750, + COGS: 52000, + Profit: 1125750, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 2215, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 15505, + Discounts: 380.24, + Sales: 15124.76, + COGS: 1940, + Profit: 13184.76, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2278, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 15946, + Discounts: 1692.46, + Sales: 14253.54, + COGS: 8635, + Profit: 5618.54, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Royal Oak`, + UnitsSold: 403, + ManufacturingPrice: 5, + SalePrice: 15, + GrossSales: 6045, + Discounts: 4830, + Sales: 1215, + COGS: 23000, + Profit: 21785, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 289, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 5780, + Discounts: 728, + Sales: 5052, + COGS: 2600, + Profit: 2452, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 749, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 11235, + Discounts: 5187, + Sales: 6048, + COGS: 24700, + Profit: 18652, + Date: `9/1/18`, + Month: `September`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 372, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 5580, + Discounts: 3660.3, + Sales: 1919.7, + COGS: 17430, + Profit: 15510.3, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3781, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 45372, + Discounts: 4895.52, + Sales: 40476.48, + COGS: 8742, + Profit: 31734.48, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1785, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 12495, + Discounts: 1696.38, + Sales: 10798.62, + COGS: 8655, + Profit: 2143.62, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 4029, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1410150, + Discounts: 34300, + Sales: 1375850, + COGS: 182000, + Profit: 1193850, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2813, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 33756, + Discounts: 3732.96, + Sales: 30023.04, + COGS: 6666, + Profit: 23357.04, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 2150, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 752500, + Discounts: 57673, + Sales: 694827, + COGS: 306020, + Profit: 388807, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 2093, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 732550, + Discounts: 94178, + Sales: 638372, + COGS: 499720, + Profit: 138652, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 4391, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 548875, + Discounts: 27562.5, + Sales: 521312.5, + COGS: 189000, + Profit: 332312.5, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2695, + ManufacturingPrice: 120, + SalePrice: 20, + GrossSales: 53900, + Discounts: 1696.8, + Sales: 52203.2, + COGS: 6060, + Profit: 46143.2, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1337, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 401100, + Discounts: 103320, + Sales: 297780, + COGS: 615000, + Profit: 317220, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Burlington`, + UnitsSold: 2621, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 786300, + Discounts: 11298, + Sales: 775002, + COGS: 67250, + Profit: 707752, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Burlington`, + UnitsSold: 3735, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1120500, + Discounts: 106512, + Sales: 1013988, + COGS: 634000, + Profit: 379988, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Mandarin`, + UnitsSold: 4320, + ManufacturingPrice: 250, + SalePrice: 7, + GrossSales: 30240, + Discounts: 2844.94, + Sales: 27395.06, + COGS: 14515, + Profit: 12880.06, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 2828, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 848400, + Discounts: 106722, + Sales: 741678, + COGS: 635250, + Profit: 106428, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 2586, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 775800, + Discounts: 11298, + Sales: 764502, + COGS: 67250, + Profit: 697252, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 1248, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 374400, + Discounts: 62832, + Sales: 311568, + COGS: 374000, + Profit: 62432, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 4035, + ManufacturingPrice: 250, + SalePrice: 300, + GrossSales: 1210500, + Discounts: 42420, + Sales: 1168080, + COGS: 252500, + Profit: 915580, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 359, + ManufacturingPrice: 250, + SalePrice: 350, + GrossSales: 125650, + Discounts: 62769, + Sales: 62881, + COGS: 333060, + Profit: 270179, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 3926, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 1177800, + Discounts: 37296, + Sales: 1140504, + COGS: 222000, + Profit: 918504, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 4247, + ManufacturingPrice: 260, + SalePrice: 125, + GrossSales: 530875, + Discounts: 49770, + Sales: 481105, + COGS: 341280, + Profit: 139825, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 2695, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 32340, + Discounts: 4158, + Sales: 28182, + COGS: 7425, + Profit: 20757, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Luxe`, + UnitsSold: 1104, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 16560, + Discounts: 3660.3, + Sales: 12899.7, + COGS: 17430, + Profit: 4530.3, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Luxe`, + UnitsSold: 1449, + ManufacturingPrice: 260, + SalePrice: 12, + GrossSales: 17388, + Discounts: 4895.52, + Sales: 12492.48, + COGS: 8742, + Profit: 3750.48, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1131, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 7917, + Discounts: 1696.38, + Sales: 6220.62, + COGS: 8655, + Profit: 2434.38, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1468, + ManufacturingPrice: 260, + SalePrice: 7, + GrossSales: 10276, + Discounts: 1692.46, + Sales: 8583.54, + COGS: 8635, + Profit: 51.46, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 1272, + ManufacturingPrice: 260, + SalePrice: 15, + GrossSales: 19080, + Discounts: 3927, + Sales: 15153, + COGS: 18700, + Profit: 3547, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Kensington`, + UnitsSold: 1403, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 175375, + Discounts: 22012.5, + Sales: 153362.5, + COGS: 140880, + Profit: 12482.5, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 2161, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 270125, + Discounts: 51881.25, + Sales: 218243.75, + COGS: 332040, + Profit: 113796.25, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Kensington`, + UnitsSold: 1937, + ManufacturingPrice: 3, + SalePrice: 125, + GrossSales: 242125, + Discounts: 20343.75, + Sales: 221781.25, + COGS: 130200, + Profit: 91581.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 2879, + ManufacturingPrice: 5, + SalePrice: 300, + GrossSales: 863700, + Discounts: 24570, + Sales: 839130, + COGS: 136500, + Profit: 702630, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1330, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 26600, + Discounts: 3474, + Sales: 23126, + COGS: 11580, + Profit: 11546, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 2426, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 36390, + Discounts: 3631.5, + Sales: 32758.5, + COGS: 16140, + Profit: 16618.5, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2033, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 14231, + Discounts: 2661.75, + Sales: 11569.25, + COGS: 12675, + Profit: 1105.75, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 2029, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 710150, + Discounts: 149677.5, + Sales: 560472.5, + COGS: 741260, + Profit: 180787.5, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 1049, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 15735, + Discounts: 5757.75, + Sales: 9977.25, + COGS: 25590, + Profit: 15612.75, + Date: `8/1/19`, + Month: `August`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 1062, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 21240, + Discounts: 801, + Sales: 20439, + COGS: 2670, + Profit: 17769, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 2509, + ManufacturingPrice: 10, + SalePrice: 125, + GrossSales: 313625, + Discounts: 20343.75, + Sales: 293281.25, + COGS: 130200, + Profit: 163081.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Vermont`, + UnitsSold: 1743, + ManufacturingPrice: 10, + SalePrice: 15, + GrossSales: 26145, + Discounts: 2643.75, + Sales: 23501.25, + COGS: 11750, + Profit: 11751.25, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3418, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 1196300, + Discounts: 105367.5, + Sales: 1090932.5, + COGS: 521820, + Profit: 569112.5, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Vermont`, + UnitsSold: 1751, + ManufacturingPrice: 10, + SalePrice: 350, + GrossSales: 612850, + Discounts: 112927.5, + Sales: 499922.5, + COGS: 559260, + Profit: 59337.5, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Vermont`, + UnitsSold: 3228, + ManufacturingPrice: 10, + SalePrice: 12, + GrossSales: 38736, + Discounts: 1645.2, + Sales: 37090.8, + COGS: 2742, + Profit: 34348.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Vermont`, + UnitsSold: 1105, + ManufacturingPrice: 10, + SalePrice: 20, + GrossSales: 22100, + Discounts: 879, + Sales: 21221, + COGS: 2930, + Profit: 18291, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Burlington`, + UnitsSold: 2778, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 33336, + Discounts: 900, + Sales: 32436, + COGS: 1500, + Profit: 30936, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 1173, + ManufacturingPrice: 120, + SalePrice: 15, + GrossSales: 17595, + Discounts: 6358.5, + Sales: 11236.5, + COGS: 28260, + Profit: 17023.5, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Burlington`, + UnitsSold: 3160, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 395000, + Discounts: 12431.25, + Sales: 382568.75, + COGS: 79560, + Profit: 303008.75, + Date: `9/1/19`, + Month: `September`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 4322, + ManufacturingPrice: 120, + SalePrice: 300, + GrossSales: 1296600, + Discounts: 115830, + Sales: 1180770, + COGS: 643500, + Profit: 537270, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 1901, + ManufacturingPrice: 120, + SalePrice: 125, + GrossSales: 237625, + Discounts: 45712.5, + Sales: 191912.5, + COGS: 292560, + Profit: 100647.5, + Date: `12/1/18`, + Month: `December`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Burlington`, + UnitsSold: 2980, + ManufacturingPrice: 120, + SalePrice: 12, + GrossSales: 35760, + Discounts: 1645.2, + Sales: 34114.8, + COGS: 2742, + Profit: 31372.8, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 4068, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 81360, + Discounts: 2596.5, + Sales: 78763.5, + COGS: 8655, + Profit: 70108.5, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2105, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 31575, + Discounts: 1107, + Sales: 30468, + COGS: 4920, + Profit: 25548, + Date: `7/1/19`, + Month: `July`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 1647, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 32940, + Discounts: 801, + Sales: 32139, + COGS: 2670, + Profit: 29469, + Date: `10/1/18`, + Month: `October`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 235, + ManufacturingPrice: 250, + SalePrice: 15, + GrossSales: 3525, + Discounts: 2643.75, + Sales: 881.25, + COGS: 11750, + Profit: 10868.75, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Mandarin`, + UnitsSold: 3617, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 452125, + Discounts: 55387.5, + Sales: 396737.5, + COGS: 354480, + Profit: 42257.5, + Date: `11/1/18`, + Month: `November`, + Year: `2018` + }), + new SalesDataItem( + { + Country: `India`, + Product: `Mandarin`, + UnitsSold: 2106, + ManufacturingPrice: 250, + SalePrice: 125, + GrossSales: 263250, + Discounts: 10350, + Sales: 252900, + COGS: 66240, + Profit: 186660, + Date: `11/1/19`, + Month: `November`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Mandarin`, + UnitsSold: 2351, + ManufacturingPrice: 250, + SalePrice: 20, + GrossSales: 47020, + Discounts: 879, + Sales: 46141, + COGS: 2930, + Profit: 43211, + Date: `12/1/19`, + Month: `December`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `UK`, + Product: `Luxe`, + UnitsSold: 1897, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 569100, + Discounts: 111375, + Sales: 457725, + COGS: 618750, + Profit: 161025, + Date: `3/1/19`, + Month: `March`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Luxe`, + UnitsSold: 647, + ManufacturingPrice: 260, + SalePrice: 300, + GrossSales: 194100, + Discounts: 24570, + Sales: 169530, + COGS: 136500, + Profit: 33030, + Date: `10/1/19`, + Month: `October`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Brazil`, + Product: `Royal Oak`, + UnitsSold: 3621, + ManufacturingPrice: 5, + SalePrice: 7, + GrossSales: 25347, + Discounts: 1436.4, + Sales: 23910.6, + COGS: 6840, + Profit: 17070.6, + Date: `2/1/19`, + Month: `February`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `Japan`, + Product: `Vermont`, + UnitsSold: 3221, + ManufacturingPrice: 10, + SalePrice: 7, + GrossSales: 22547, + Discounts: 759.15, + Sales: 21787.85, + COGS: 3615, + Profit: 18172.85, + Date: `4/1/19`, + Month: `April`, + Year: `2019` + }), + new SalesDataItem( + { + Country: `USA`, + Product: `Mandarin`, + UnitsSold: 493, + ManufacturingPrice: 250, + SalePrice: 12, + GrossSales: 5916, + Discounts: 3250.8, + Sales: 2665.2, + COGS: 5418, + Profit: 2752.8, + Date: `5/1/19`, + Month: `May`, + Year: `2019` + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/category-chart/data-filter/src/app.component.ts b/samples/charts/category-chart/data-filter/src/app.component.ts index 8c01c4b48..834626705 100644 --- a/samples/charts/category-chart/data-filter/src/app.component.ts +++ b/samples/charts/category-chart/data-filter/src/app.component.ts @@ -1,6 +1,6 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; -import { SalesData } from './SalesData'; +import { SalesDataItem, SalesData } from './SalesData'; import { IgxPropertyEditorPropertyDescriptionChangedEventArgs, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; import { IgxCategoryChartComponent, MarkerType, MarkerType_$type } from 'igniteui-angular-charts'; import { EnumUtil } from 'igniteui-angular-core'; From 57712d05ee664fa883d956b65cc10be70b3cacd7 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Tue, 14 May 2024 11:35:07 -0400 Subject: [PATCH 068/154] mdd-update-browser-packages 23.2.202 proget --- browser/package.json | 24 ++++++++--------- browser/scripts/browser.js | 26 +++++++++---------- browser/src/browser-info.json | 24 ++++++++--------- .../annotations-all/package.json | 14 +++++----- .../annotations-callouts/package.json | 14 +++++----- .../annotations-crosshairs/package.json | 14 +++++----- .../annotations-custom/package.json | 14 +++++----- .../annotations-final-value/package.json | 14 +++++----- .../annotations-highlighting/package.json | 14 +++++----- .../category-chart/annotations/package.json | 4 +-- .../area-chart-multiple-sources/package.json | 8 +++--- .../area-chart-single-source/package.json | 8 +++--- .../area-chart-styling/package.json | 8 +++--- .../category-chart/axis-gap/package.json | 14 +++++----- .../axis-gridlines/package.json | 14 +++++----- .../category-chart/axis-inverted/package.json | 14 +++++----- .../category-chart/axis-labels/package.json | 14 +++++----- .../axis-locations/package.json | 14 +++++----- .../category-chart/axis-options/package.json | 8 +++--- .../category-chart/axis-overlap/package.json | 14 +++++----- .../category-chart/axis-range/package.json | 14 +++++----- .../axis-tickmarks/package.json | 14 +++++----- .../category-chart/axis-titles/package.json | 8 +++--- .../chart-highlight-filter/package.json | 14 +++++----- .../package.json | 8 +++--- .../column-chart-single-source/package.json | 8 +++--- .../column-chart-styling/package.json | 8 +++--- .../package.json | 4 +-- .../column-chart-with-tooltips/package.json | 14 +++++----- .../custom-selection/package.json | 8 +++--- .../data-aggregations/package.json | 14 +++++----- .../category-chart/data-filter/package.json | 14 +++++----- .../package.json | 8 +++--- .../category-chart/data-legend/package.json | 8 +++--- .../package.json | 8 +++--- .../data-tooltip-positioning/package.json | 14 +++++----- .../category-chart/data-tooltip/package.json | 8 +++--- .../format-specifiers/package.json | 12 ++++----- .../high-frequency/package.json | 6 ++--- .../category-chart/high-volume/package.json | 6 ++--- .../highlighting-behavior/package.json | 14 +++++----- .../highlighting-mode/package.json | 14 +++++----- .../category-chart/highlighting/package.json | 4 +-- .../legend-highlighting/package.json | 8 +++--- .../line-chart-multiple-sources/package.json | 8 +++--- .../line-chart-single-source/package.json | 8 +++--- .../line-chart-styling/package.json | 8 +++--- .../line-chart-with-animations/package.json | 4 +-- .../line-chart-with-annotations/package.json | 4 +-- .../line-chart-with-legend/package.json | 4 +-- .../marker-options/package.json | 14 +++++----- .../marker-templates/package.json | 4 +-- .../category-chart/overview/package.json | 8 +++--- .../point-chart-multiple-sources/package.json | 8 +++--- .../point-chart-single-source/package.json | 8 +++--- .../point-chart-styling/package.json | 8 +++--- .../spline-area-multiple-sources/package.json | 8 +++--- .../spline-area-single-source/package.json | 8 +++--- .../spline-area-styling/package.json | 8 +++--- .../spline-multiple-sources/package.json | 8 +++--- .../spline-single-source/package.json | 8 +++--- .../spline-styling/package.json | 8 +++--- .../category-chart/stack-columns/package.json | 4 +-- .../step-area-multiple-sources/package.json | 8 +++--- .../step-area-single-source/package.json | 8 +++--- .../step-area-styling/package.json | 8 +++--- .../step-line-multiple-sources/package.json | 8 +++--- .../step-line-single-source/package.json | 8 +++--- .../step-line-styling/package.json | 8 +++--- .../tooltip-template/package.json | 4 +-- .../category-chart/tooltip-types/package.json | 4 +-- .../category-chart/trendline/package.json | 4 +-- .../category-chart/value-lines/package.json | 14 +++++----- .../annotations-custom/package.json | 8 +++--- .../package.json | 8 +++--- .../data-chart/axis-annotations/package.json | 4 +-- .../data-chart/axis-crossing/package.json | 4 +-- .../axis-label-rotation/package.json | 14 +++++----- .../data-chart/axis-locations/package.json | 4 +-- .../data-chart/axis-min-max-gap/package.json | 8 +++--- .../data-chart/axis-settings/package.json | 4 +-- .../data-chart/axis-sharing/package.json | 4 +-- .../charts/data-chart/axis-types/package.json | 4 +-- .../bar-chart-multiple-sources/package.json | 8 +++--- .../bar-chart-overlapping/package.json | 8 +++--- .../bar-chart-single-source/package.json | 8 +++--- .../data-chart/bar-chart-styling/package.json | 8 +++--- .../callout-layer-styling/package.json | 8 +++--- .../package.json | 14 +++++----- .../package.json | 14 +++++----- .../chart-highlight-filter/package.json | 14 +++++----- .../data-chart/chart-navigation/package.json | 4 +-- .../data-chart/chart-overview/package.json | 4 +-- .../data-chart/chart-performance/package.json | 4 +-- .../chart-synchronization/package.json | 4 +-- .../data-chart/chart-titles/package.json | 4 +-- .../column-chart-styling/package.json | 4 +-- .../data-chart/composite-chart/package.json | 4 +-- .../crosshair-layer-styling/package.json | 4 +-- .../custom-drawing-annotations/package.json | 8 +++--- .../custom-editing-data/package.json | 4 +-- .../data-chart/dash-array-axes/package.json | 8 +++--- .../data-chart/dash-array-series/package.json | 8 +++--- .../dash-array-tickmarks/package.json | 8 +++--- .../dash-array-trendline/package.json | 8 +++--- .../data-chart/data-legend/package.json | 8 +++--- .../data-chart/data-tooltip/package.json | 8 +++--- .../final-value-layer-styling/package.json | 4 +-- .../financial-price-series/package.json | 8 +++--- .../data-chart/format-specifiers/package.json | 8 +++--- .../charts/data-chart/legends/package.json | 4 +-- .../polar-area-chart-styling/package.json | 8 +++--- .../data-chart/polar-area-chart/package.json | 8 +++--- .../data-chart/polar-chart-types/package.json | 4 +-- .../data-chart/polar-line-chart/package.json | 8 +++--- .../polar-scatter-chart/package.json | 8 +++--- .../polar-spline-area-chart/package.json | 8 +++--- .../polar-spline-chart/package.json | 8 +++--- .../radial-area-chart-styling/package.json | 8 +++--- .../data-chart/radial-area-chart/package.json | 8 +++--- .../radial-chart-types/package.json | 4 +-- .../radial-column-chart/package.json | 8 +++--- .../data-chart/radial-line-chart/package.json | 8 +++--- .../data-chart/radial-pie-chart/package.json | 8 +++--- .../data-chart/range-area-chart/package.json | 8 +++--- .../range-column-chart/package.json | 8 +++--- .../package.json | 8 +++--- .../package.json | 8 +++--- .../package.json | 8 +++--- .../scatter-bubble-chart-styling/package.json | 8 +++--- .../scatter-line-chart/package.json | 8 +++--- .../scatter-point-chart/package.json | 8 +++--- .../scatter-spline-chart/package.json | 8 +++--- .../data-chart/series-animations/package.json | 4 +-- .../series-annotations/package.json | 4 +-- .../series-highlighting/package.json | 4 +-- .../series-marker-template/package.json | 4 +-- .../data-chart/series-markers/package.json | 4 +-- .../data-chart/series-tooltips/package.json | 4 +-- .../data-chart/series-trendlines/package.json | 4 +-- .../series-value-overlay/package.json | 4 +-- .../stacked-100-area-chart/package.json | 8 +++--- .../stacked-100-bar-chart/package.json | 8 +++--- .../stacked-100-column-chart/package.json | 8 +++--- .../stacked-100-line-chart/package.json | 8 +++--- .../package.json | 8 +++--- .../stacked-100-spline-chart/package.json | 8 +++--- .../stacked-area-chart/package.json | 8 +++--- .../data-chart/stacked-bar-chart/package.json | 8 +++--- .../stacked-chart-types/package.json | 4 +-- .../stacked-column-chart/package.json | 8 +++--- .../stacked-line-chart/package.json | 8 +++--- .../stacked-spline-area-chart/package.json | 8 +++--- .../stacked-spline-chart/package.json | 8 +++--- .../data-chart/tooltip-template/package.json | 4 +-- .../data-chart/transition-event/package.json | 14 +++++----- .../type-category-area-series/package.json | 4 +-- .../type-category-bar-series/package.json | 4 +-- .../type-category-column-series/package.json | 4 +-- .../type-category-line-series/package.json | 4 +-- .../type-category-point-series/package.json | 4 +-- .../type-category-series/package.json | 4 +-- .../package.json | 4 +-- .../type-category-spline-series/package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../type-financial-ohlc-series/package.json | 4 +-- .../type-financial-overlays/package.json | 4 +-- .../type-financial-series/package.json | 4 +-- .../type-radial-area-series/package.json | 4 +-- .../type-radial-column-series/package.json | 4 +-- .../type-radial-line-series/package.json | 4 +-- .../type-radial-pie-series/package.json | 4 +-- .../type-range-area-series/package.json | 4 +-- .../type-range-column-series/package.json | 4 +-- .../data-chart/type-range-series/package.json | 4 +-- .../type-scatter-area-series/package.json | 4 +-- .../type-scatter-bubble-series/package.json | 4 +-- .../type-scatter-contour-series/package.json | 4 +-- .../type-scatter-hd-series/package.json | 4 +-- .../type-scatter-line-series/package.json | 4 +-- .../type-scatter-point-series/package.json | 4 +-- .../type-scatter-polygon-series/package.json | 4 +-- .../type-scatter-polyline-series/package.json | 4 +-- .../type-scatter-series/package.json | 4 +-- .../type-scatter-spline-series/package.json | 4 +-- .../data-chart/type-shape-series/package.json | 4 +-- .../type-stacked-100-area-series/package.json | 4 +-- .../type-stacked-100-bar-series/package.json | 4 +-- .../package.json | 4 +-- .../type-stacked-100-line-series/package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../type-stacked-area-series/package.json | 4 +-- .../type-stacked-bar-series/package.json | 4 +-- .../type-stacked-column-series/package.json | 4 +-- .../type-stacked-line-series/package.json | 4 +-- .../package.json | 4 +-- .../type-stacked-spline-series/package.json | 4 +-- .../data-chart/waterfall-chart/package.json | 8 +++--- .../doughnut-chart/animation/package.json | 4 +-- .../doughnut-chart/explosion/package.json | 4 +-- .../charts/doughnut-chart/legend/package.json | 8 +++--- .../doughnut-chart/overview/package.json | 8 +++--- .../charts/doughnut-chart/rings/package.json | 8 +++--- .../doughnut-chart/selection/package.json | 4 +-- .../financial-chart/annotations/package.json | 4 +-- .../financial-chart/axis-types/package.json | 4 +-- .../package.json | 8 +++--- .../data-legend-styling-props/package.json | 8 +++--- .../financial-chart/data-legend/package.json | 8 +++--- .../package.json | 8 +++--- .../data-tooltip-styling-props/package.json | 8 +++--- .../financial-chart/data-tooltip/package.json | 8 +++--- .../format-specifiers/package.json | 8 +++--- .../high-frequency/package.json | 4 +-- .../financial-chart/high-volume/package.json | 4 +-- .../indicator-customization/package.json | 4 +-- .../indicator-types/package.json | 4 +-- .../multiple-data/package.json | 4 +-- .../multiple-feeds/package.json | 4 +-- .../financial-chart/overview/package.json | 4 +-- .../charts/financial-chart/panes/package.json | 4 +-- .../financial-chart/performance/package.json | 4 +-- .../financial-chart/scrollbars/package.json | 8 +++--- .../stock-index-chart/package.json | 4 +-- .../financial-chart/styling/package.json | 4 +-- .../financial-chart/theming/package.json | 4 +-- .../time-based-data/package.json | 4 +-- .../financial-chart/titles/package.json | 4 +-- .../tooltip-template/package.json | 4 +-- .../tooltip-types/package.json | 4 +-- .../financial-chart/trendlines/package.json | 4 +-- .../financial-chart/volume-types/package.json | 4 +-- .../charts/pie-chart/animation/package.json | 4 +-- .../charts/pie-chart/explosion/package.json | 4 +-- samples/charts/pie-chart/legend/package.json | 8 +++--- samples/charts/pie-chart/others/package.json | 8 +++--- .../charts/pie-chart/overview/package.json | 8 +++--- .../charts/pie-chart/selection/package.json | 4 +-- samples/charts/pie-chart/styling/package.json | 8 +++--- .../sparkline/display-area/package.json | 8 +++--- .../sparkline/display-column/package.json | 8 +++--- .../sparkline/display-lines/package.json | 12 ++++----- .../sparkline/display-types/package.json | 4 +-- .../sparkline/display-winloss/package.json | 8 +++--- samples/charts/sparkline/grid/package.json | 8 +++--- samples/charts/sparkline/markers/package.json | 14 +++++----- .../sparkline/normal-range/package.json | 14 +++++----- .../charts/sparkline/trendlines/package.json | 14 +++++----- .../sparkline/unknown-values/package.json | 14 +++++----- .../package.json | 12 ++++----- .../actions-built-in-data-chart/package.json | 12 ++++----- .../charts/toolbar/custom-tool/package.json | 10 +++---- .../package.json | 12 ++++----- .../package.json | 12 ++++----- samples/charts/toolbar/theming/package.json | 14 +++++----- samples/charts/tree-map/events/package.json | 6 ++--- .../charts/tree-map/highlighting/package.json | 10 +++---- samples/charts/tree-map/layout/package.json | 14 +++++----- samples/charts/tree-map/overview/package.json | 8 +++--- samples/charts/tree-map/styling/package.json | 8 +++--- .../charts/zoomslider/overview/package.json | 4 +-- .../operations-on-workbooks/package.json | 6 ++--- .../operations-on-worksheets/package.json | 4 +-- .../excel/excel-library/overview/package.json | 4 +-- .../working-with-cells/package.json | 4 +-- .../working-with-charts/package.json | 8 +++--- .../working-with-sparklines/package.json | 8 +++--- .../working-with-tables/package.json | 8 +++--- .../excel/spreadsheet/activation/package.json | 6 ++--- .../spreadsheet/adapter-chart/package.json | 10 +++---- .../spreadsheet/adapter-combo/package.json | 10 +++---- .../excel/spreadsheet/clipboard/package.json | 6 ++--- .../excel/spreadsheet/commands/package.json | 6 ++--- .../conditional-formatting/package.json | 6 ++--- .../spreadsheet/config-options/package.json | 6 ++--- .../spreadsheet/data-validation/package.json | 6 ++--- .../excel/spreadsheet/hyperlinks/package.json | 6 ++--- .../excel/spreadsheet/overview/package.json | 6 ++--- .../bullet-graph/animation/package.json | 6 ++--- .../bullet-graph/background/package.json | 4 +-- .../highlight-needle/package.json | 4 +-- .../gauges/bullet-graph/labels/package.json | 4 +-- .../gauges/bullet-graph/measures/package.json | 4 +-- .../gauges/bullet-graph/ranges/package.json | 4 +-- .../gauges/bullet-graph/scale/package.json | 4 +-- .../bullet-graph/tickmarks/package.json | 4 +-- .../linear-gauge/animation/package.json | 6 ++--- .../gauges/linear-gauge/backing/package.json | 4 +-- .../highlight-needle/package.json | 4 +-- .../gauges/linear-gauge/labels/package.json | 4 +-- .../gauges/linear-gauge/needle/package.json | 4 +-- .../gauges/linear-gauge/ranges/package.json | 4 +-- .../gauges/linear-gauge/scale/package.json | 4 +-- .../linear-gauge/tickmarks/package.json | 4 +-- .../radial-gauge/animation/package.json | 6 ++--- .../gauges/radial-gauge/backing/package.json | 4 +-- .../highlight-needle/package.json | 4 +-- .../gauges/radial-gauge/labels/package.json | 4 +-- .../gauges/radial-gauge/needle/package.json | 4 +-- .../radial-gauge/optical-scaling/package.json | 4 +-- .../gauges/radial-gauge/ranges/package.json | 4 +-- .../gauges/radial-gauge/scale/package.json | 4 +-- .../radial-gauge/tickmarks/package.json | 4 +-- .../geo-map/binding-data-csv/package.json | 6 ++--- .../binding-data-json-points/package.json | 6 ++--- .../geo-map/binding-data-model/package.json | 6 ++--- .../binding-multiple-shapes/package.json | 6 ++--- .../binding-multiple-sources/package.json | 6 ++--- .../geo-map/binding-shp-points/package.json | 6 ++--- .../geo-map/binding-shp-polygons/package.json | 6 ++--- .../binding-shp-polylines/package.json | 6 ++--- .../maps/geo-map/custom-tooltips/package.json | 6 ++--- .../geo-map/display-bing-imagery/package.json | 6 ++--- .../geo-map/display-esri-imagery/package.json | 6 ++--- .../geo-map/display-heat-imagery/package.json | 6 ++--- .../geo-map/display-osm-imagery/package.json | 6 ++--- .../maps/geo-map/marker-layouts/package.json | 6 ++--- .../maps/geo-map/marker-template/package.json | 6 ++--- samples/maps/geo-map/marker-type/package.json | 6 ++--- samples/maps/geo-map/navigation/package.json | 6 ++--- samples/maps/geo-map/overview/package.json | 6 ++--- .../maps/geo-map/shape-styling/package.json | 6 ++--- .../geo-map/triangulating-data/package.json | 6 ++--- .../type-scatter-area-series/package.json | 6 ++--- .../type-scatter-bubble-series/package.json | 6 ++--- .../type-scatter-contour-series/package.json | 6 ++--- .../type-scatter-density-series/package.json | 6 ++--- .../type-scatter-symbol-series/package.json | 6 ++--- .../type-shape-polygon-series/package.json | 6 ++--- .../type-shape-polyline-series/package.json | 6 ++--- 337 files changed, 1167 insertions(+), 1167 deletions(-) diff --git a/browser/package.json b/browser/package.json index 904b2ec9a..e8977c435 100644 --- a/browser/package.json +++ b/browser/package.json @@ -29,6 +29,15 @@ "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", "@angular/router": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", + "@infragistics/igniteui-angular-spreadsheet": "23.2.202", + "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.202", "@ionic/angular": "5.6.3", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", @@ -38,18 +47,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", - "igniteui-angular-gauges": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-angular-maps": "17.3.0", - "igniteui-angular-spreadsheet": "17.3.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.3.0", - "igniteui-theming": "3.3.1", - "igniteui-webcomponents": "4.7.0", + "igniteui-angular": "17.2.2", + "igniteui-theming": "6.2.0 ", + "igniteui-webcomponents": "4.9.0", "immediate": "3.2.3", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 72554861b..e62833470 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1071,20 +1071,20 @@ function updateIG(cb) { // { name: "igniteui-angular-charts", version: "14.1.0" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { name: "igniteui-angular-core" , version: "17.3.0" }, - { name: "igniteui-angular-charts" , version: "17.3.0" }, - { name: "igniteui-angular-excel" , version: "17.3.0" }, - { name: "igniteui-angular-gauges" , version: "17.3.0" }, - { name: "igniteui-angular-inputs" , version: "17.3.0" }, - { name: "igniteui-angular-layouts" , version: "17.3.0" }, - { name: "igniteui-angular-maps" , version: "17.3.0" }, - { name: "igniteui-angular-spreadsheet-chart-adapter", version: "17.3.0" }, - { name: "igniteui-angular-spreadsheet" , version: "17.3.0" }, - { name: "igniteui-angular-datasources" , version: "17.3.0" }, + { name: "@infragistics/igniteui-angular-core" , version: "23.2.202" }, + { name: "@infragistics/igniteui-angular-charts" , version: "23.2.202" }, + { name: "@infragistics/igniteui-angular-excel" , version: "23.2.202" }, + { name: "@infragistics/igniteui-angular-gauges" , version: "23.2.202" }, + { name: "@infragistics/igniteui-angular-inputs" , version: "23.2.202" }, + { name: "@infragistics/igniteui-angular-layouts" , version: "23.2.202" }, + { name: "@infragistics/igniteui-angular-maps" , version: "23.2.202" }, + { name: "@infragistics/igniteui-angular-spreadsheet-chart-adapter", version: "23.2.202" }, + { name: "@infragistics/igniteui-angular-spreadsheet" , version: "23.2.202" }, + { name: "@infragistics/igniteui-angular-datasources" , version: "23.2.202" }, // these IG packages are sometimes updated: - { name: "igniteui-webcomponents", version: "4.7.0" }, - { name: "igniteui-theming", version: "3.3.1" }, - { name: "igniteui-angular", version: "17.0.0" }, + { name: "igniteui-webcomponents", version: "4.9.0" }, + { name: "igniteui-theming", version: "6.2.0 " }, + { name: "igniteui-angular", version: "17.2.2" }, { name: "@angular/animations", version: "17.0.0" }, { name: "@angular/common", version: "17.0.0" }, { name: "@angular/compiler", version: "17.0.0" }, diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index 285b95435..09441a1f0 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,14 +1,14 @@ [ -{"ver":"17.0.0","name":"igniteui-angular"}, -{"ver":"17.3.0","name":"igniteui-angular-charts"}, -{"ver":"17.3.0","name":"igniteui-angular-core"}, -{"ver":"17.3.0","name":"igniteui-angular-excel"}, -{"ver":"17.3.0","name":"igniteui-angular-gauges"}, -{"ver":"17.3.0","name":"igniteui-angular-inputs"}, -{"ver":"17.3.0","name":"igniteui-angular-layouts"}, -{"ver":"17.3.0","name":"igniteui-angular-maps"}, -{"ver":"17.3.0","name":"igniteui-angular-spreadsheet"}, -{"ver":"17.3.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, -{"ver":"3.3.1","name":"igniteui-theming"}, -{"ver":"4.7.0","name":"igniteui-webcomponents"} +{"ver":"23.2.202","name":"igniteui-angular-charts"}, +{"ver":"23.2.202","name":"igniteui-angular-core"}, +{"ver":"23.2.202","name":"igniteui-angular-excel"}, +{"ver":"23.2.202","name":"igniteui-angular-gauges"}, +{"ver":"23.2.202","name":"igniteui-angular-inputs"}, +{"ver":"23.2.202","name":"igniteui-angular-layouts"}, +{"ver":"23.2.202","name":"igniteui-angular-maps"}, +{"ver":"23.2.202","name":"igniteui-angular-spreadsheet"}, +{"ver":"23.2.202","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"17.2.2","name":"igniteui-angular"}, +{"ver":"6.2.0","name":"igniteui-theming"}, +{"ver":"4.9.0","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index ce1218318..8963a6770 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -30,17 +30,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 5b5b92791..4193bf51f 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", + "igniteui-angular": "17.2.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 5b5b92791..4193bf51f 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", + "igniteui-angular": "17.2.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 85a502ef3..8963a6770 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index ce1218318..8963a6770 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -30,17 +30,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 7db519de7..dcc82ea9a 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-theming": "3.3.1", + "igniteui-angular": "17.2.2", + "igniteui-theming": "6.2.0 ", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index ce1218318..8963a6770 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -30,17 +30,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index ce1218318..8963a6770 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -30,17 +30,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 173f84277..b2e3f25fe 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -29,17 +29,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index ce1218318..8963a6770 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -30,17 +30,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index ce1218318..8963a6770 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -30,17 +30,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 5b5b92791..4193bf51f 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", + "igniteui-angular": "17.2.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 2581600e3..3e5d8508e 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.7.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 591a7aeab..3e5d8508e 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-inputs": "23.2.202", + "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-inputs": "17.3.0", - "igniteui-angular-layouts": "17.3.0", - "igniteui-webcomponents": "4.8.0", + "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index aab01e53b..aca65e5dc 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "9.1.1", + "tslint": "~6.1.3", "typescript": "5.2.2" } } diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 0a881a436..aca65e5dc 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 18eb42fce..991cc7643 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", + "igniteui-angular": "17.2.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index bea44b966..e21cd31e3 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index bea44b966..e21cd31e3 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index bea44b966..e21cd31e3 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index a394f3006..22e922749 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -14,16 +14,16 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", + "igniteui-angular": "17.2.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index a394f3006..22e922749 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -14,16 +14,16 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "17.0.0", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", + "igniteui-angular": "17.2.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index 26459cbfb..d06ba852b 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -14,16 +14,16 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", + "@infragistics/igniteui-angular-spreadsheet": "23.2.202", + "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", - "igniteui-angular-spreadsheet": "17.3.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index bb42b47f5..07a788d35 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", + "@infragistics/igniteui-angular-spreadsheet": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", - "igniteui-angular-spreadsheet": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 68f587425..f81e4cbe7 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -14,17 +14,17 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", + "@infragistics/igniteui-angular-spreadsheet": "23.2.202", + "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", - "igniteui-angular-spreadsheet": "17.3.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index 68f587425..f81e4cbe7 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -14,17 +14,17 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", + "@infragistics/igniteui-angular-spreadsheet": "23.2.202", + "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", - "igniteui-angular-spreadsheet": "17.3.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index bb42b47f5..07a788d35 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", + "@infragistics/igniteui-angular-spreadsheet": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", - "igniteui-angular-spreadsheet": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index bb42b47f5..07a788d35 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", + "@infragistics/igniteui-angular-spreadsheet": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", - "igniteui-angular-spreadsheet": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index bb42b47f5..07a788d35 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", + "@infragistics/igniteui-angular-spreadsheet": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", - "igniteui-angular-spreadsheet": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index bb42b47f5..07a788d35 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", + "@infragistics/igniteui-angular-spreadsheet": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", - "igniteui-angular-spreadsheet": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index bb42b47f5..07a788d35 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", + "@infragistics/igniteui-angular-spreadsheet": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", - "igniteui-angular-spreadsheet": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index bb42b47f5..07a788d35 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", + "@infragistics/igniteui-angular-spreadsheet": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", - "igniteui-angular-spreadsheet": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index bb42b47f5..07a788d35 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-excel": "23.2.202", + "@infragistics/igniteui-angular-spreadsheet": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-excel": "17.3.0", - "igniteui-angular-spreadsheet": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index f671b5c32..845688d85 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", + "igniteui-angular": "17.2.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index f671b5c32..845688d85 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", + "igniteui-angular": "17.2.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index f671b5c32..845688d85 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.0.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", + "igniteui-angular": "17.2.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 38e3054c5..e3c2464f4 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-gauges": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 501fd226e..c7657d04f 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", + "@infragistics/igniteui-angular-charts": "23.2.202", + "@infragistics/igniteui-angular-core": "23.2.202", + "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.0", - "igniteui-angular-core": "17.3.0", - "igniteui-angular-maps": "17.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", From bd6402e935c844610939112496cf96d02601ffc7 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Tue, 21 May 2024 15:44:45 -0400 Subject: [PATCH 069/154] 17.3.1-alpha.0 17.3.1-alpha.0 (xplat) 17.2.3 (igniteui-angular) 6.4.0-beta.2 (igniteui-theming) --- browser/package.json | 22 ++++++++--------- browser/scripts/browser.js | 24 +++++++++---------- browser/src/app/index/index.component.ts | 4 ++-- browser/src/browser-info.json | 22 ++++++++--------- .../annotations-all/package.json | 8 +++---- .../annotations-callouts/package.json | 8 +++---- .../annotations-crosshairs/package.json | 8 +++---- .../annotations-custom/package.json | 8 +++---- .../annotations-final-value/package.json | 8 +++---- .../annotations-highlighting/package.json | 8 +++---- .../category-chart/annotations/package.json | 4 ++-- .../area-chart-multiple-sources/package.json | 4 ++-- .../area-chart-single-source/package.json | 4 ++-- .../area-chart-styling/package.json | 4 ++-- .../category-chart/axis-gap/package.json | 8 +++---- .../axis-gridlines/package.json | 8 +++---- .../category-chart/axis-inverted/package.json | 8 +++---- .../category-chart/axis-labels/package.json | 8 +++---- .../axis-locations/package.json | 8 +++---- .../category-chart/axis-options/package.json | 4 ++-- .../category-chart/axis-overlap/package.json | 8 +++---- .../category-chart/axis-range/package.json | 8 +++---- .../axis-tickmarks/package.json | 8 +++---- .../category-chart/axis-titles/package.json | 4 ++-- .../chart-highlight-filter/package.json | 8 +++---- .../package.json | 4 ++-- .../column-chart-single-source/package.json | 4 ++-- .../column-chart-styling/package.json | 4 ++-- .../package.json | 4 ++-- .../column-chart-with-tooltips/package.json | 8 +++---- .../custom-selection/package.json | 4 ++-- .../data-aggregations/package.json | 8 +++---- .../category-chart/data-filter/package.json | 8 +++---- .../package.json | 4 ++-- .../category-chart/data-legend/package.json | 4 ++-- .../package.json | 4 ++-- .../data-tooltip-positioning/package.json | 8 +++---- .../category-chart/data-tooltip/package.json | 4 ++-- .../format-specifiers/package.json | 8 +++---- .../high-frequency/package.json | 6 ++--- .../category-chart/high-volume/package.json | 6 ++--- .../highlighting-behavior/package.json | 8 +++---- .../highlighting-mode/package.json | 8 +++---- .../category-chart/highlighting/package.json | 4 ++-- .../legend-highlighting/package.json | 4 ++-- .../line-chart-multiple-sources/package.json | 4 ++-- .../line-chart-single-source/package.json | 4 ++-- .../line-chart-styling/package.json | 4 ++-- .../line-chart-with-animations/package.json | 4 ++-- .../line-chart-with-annotations/package.json | 4 ++-- .../line-chart-with-legend/package.json | 4 ++-- .../marker-options/package.json | 8 +++---- .../marker-templates/package.json | 4 ++-- .../category-chart/overview/package.json | 4 ++-- .../point-chart-multiple-sources/package.json | 4 ++-- .../point-chart-single-source/package.json | 4 ++-- .../point-chart-styling/package.json | 4 ++-- .../spline-area-multiple-sources/package.json | 4 ++-- .../spline-area-single-source/package.json | 4 ++-- .../spline-area-styling/package.json | 4 ++-- .../spline-multiple-sources/package.json | 4 ++-- .../spline-single-source/package.json | 4 ++-- .../spline-styling/package.json | 4 ++-- .../category-chart/stack-columns/package.json | 4 ++-- .../step-area-multiple-sources/package.json | 4 ++-- .../step-area-single-source/package.json | 4 ++-- .../step-area-styling/package.json | 4 ++-- .../step-line-multiple-sources/package.json | 4 ++-- .../step-line-single-source/package.json | 4 ++-- .../step-line-styling/package.json | 4 ++-- .../tooltip-template/package.json | 4 ++-- .../category-chart/tooltip-types/package.json | 4 ++-- .../category-chart/trendline/package.json | 4 ++-- .../category-chart/value-lines/package.json | 8 +++---- .../annotations-custom/package.json | 4 ++-- .../package.json | 4 ++-- .../data-chart/axis-annotations/package.json | 4 ++-- .../data-chart/axis-crossing/package.json | 4 ++-- .../axis-label-rotation/package.json | 8 +++---- .../data-chart/axis-locations/package.json | 4 ++-- .../data-chart/axis-min-max-gap/package.json | 4 ++-- .../data-chart/axis-settings/package.json | 4 ++-- .../data-chart/axis-sharing/package.json | 4 ++-- .../charts/data-chart/axis-types/package.json | 4 ++-- .../bar-chart-multiple-sources/package.json | 4 ++-- .../bar-chart-overlapping/package.json | 4 ++-- .../bar-chart-single-source/package.json | 4 ++-- .../data-chart/bar-chart-styling/package.json | 4 ++-- .../callout-layer-styling/package.json | 4 ++-- .../package.json | 8 +++---- .../package.json | 8 +++---- .../chart-highlight-filter/package.json | 8 +++---- .../data-chart/chart-navigation/package.json | 4 ++-- .../data-chart/chart-overview/package.json | 4 ++-- .../data-chart/chart-performance/package.json | 4 ++-- .../chart-synchronization/package.json | 4 ++-- .../data-chart/chart-titles/package.json | 4 ++-- .../column-chart-styling/package.json | 4 ++-- .../data-chart/composite-chart/package.json | 4 ++-- .../crosshair-layer-styling/package.json | 4 ++-- .../custom-drawing-annotations/package.json | 8 +++---- .../custom-editing-data/package.json | 4 ++-- .../data-chart/dash-array-axes/package.json | 4 ++-- .../data-chart/dash-array-series/package.json | 4 ++-- .../dash-array-tickmarks/package.json | 4 ++-- .../dash-array-trendline/package.json | 4 ++-- .../data-chart/data-legend/package.json | 4 ++-- .../data-chart/data-tooltip/package.json | 4 ++-- .../final-value-layer-styling/package.json | 4 ++-- .../financial-price-series/package.json | 4 ++-- .../data-chart/format-specifiers/package.json | 4 ++-- .../charts/data-chart/legends/package.json | 4 ++-- .../polar-area-chart-styling/package.json | 4 ++-- .../data-chart/polar-area-chart/package.json | 4 ++-- .../data-chart/polar-chart-types/package.json | 4 ++-- .../data-chart/polar-line-chart/package.json | 4 ++-- .../polar-scatter-chart/package.json | 4 ++-- .../polar-spline-area-chart/package.json | 4 ++-- .../polar-spline-chart/package.json | 4 ++-- .../radial-area-chart-styling/package.json | 4 ++-- .../data-chart/radial-area-chart/package.json | 4 ++-- .../radial-chart-types/package.json | 4 ++-- .../radial-column-chart/package.json | 4 ++-- .../data-chart/radial-line-chart/package.json | 4 ++-- .../data-chart/radial-pie-chart/package.json | 4 ++-- .../data-chart/range-area-chart/package.json | 4 ++-- .../range-column-chart/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../scatter-bubble-chart-styling/package.json | 4 ++-- .../scatter-line-chart/package.json | 4 ++-- .../scatter-point-chart/package.json | 4 ++-- .../scatter-spline-chart/package.json | 4 ++-- .../data-chart/series-animations/package.json | 4 ++-- .../series-annotations/package.json | 4 ++-- .../series-highlighting/package.json | 4 ++-- .../series-marker-template/package.json | 4 ++-- .../data-chart/series-markers/package.json | 4 ++-- .../data-chart/series-tooltips/package.json | 4 ++-- .../data-chart/series-trendlines/package.json | 4 ++-- .../series-value-overlay/package.json | 4 ++-- .../stacked-100-area-chart/package.json | 4 ++-- .../stacked-100-bar-chart/package.json | 4 ++-- .../stacked-100-column-chart/package.json | 4 ++-- .../stacked-100-line-chart/package.json | 4 ++-- .../package.json | 4 ++-- .../stacked-100-spline-chart/package.json | 4 ++-- .../stacked-area-chart/package.json | 4 ++-- .../data-chart/stacked-bar-chart/package.json | 4 ++-- .../stacked-chart-types/package.json | 4 ++-- .../stacked-column-chart/package.json | 4 ++-- .../stacked-line-chart/package.json | 4 ++-- .../stacked-spline-area-chart/package.json | 4 ++-- .../stacked-spline-chart/package.json | 4 ++-- .../data-chart/tooltip-template/package.json | 4 ++-- .../data-chart/transition-event/package.json | 8 +++---- .../type-category-area-series/package.json | 4 ++-- .../type-category-bar-series/package.json | 4 ++-- .../type-category-column-series/package.json | 4 ++-- .../type-category-line-series/package.json | 4 ++-- .../type-category-point-series/package.json | 4 ++-- .../type-category-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-category-spline-series/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../type-financial-ohlc-series/package.json | 4 ++-- .../type-financial-overlays/package.json | 4 ++-- .../type-financial-series/package.json | 4 ++-- .../type-radial-area-series/package.json | 4 ++-- .../type-radial-column-series/package.json | 4 ++-- .../type-radial-line-series/package.json | 4 ++-- .../type-radial-pie-series/package.json | 4 ++-- .../type-range-area-series/package.json | 4 ++-- .../type-range-column-series/package.json | 4 ++-- .../data-chart/type-range-series/package.json | 4 ++-- .../type-scatter-area-series/package.json | 4 ++-- .../type-scatter-bubble-series/package.json | 4 ++-- .../type-scatter-contour-series/package.json | 4 ++-- .../type-scatter-hd-series/package.json | 4 ++-- .../type-scatter-line-series/package.json | 4 ++-- .../type-scatter-point-series/package.json | 4 ++-- .../type-scatter-polygon-series/package.json | 4 ++-- .../type-scatter-polyline-series/package.json | 4 ++-- .../type-scatter-series/package.json | 4 ++-- .../type-scatter-spline-series/package.json | 4 ++-- .../data-chart/type-shape-series/package.json | 4 ++-- .../type-stacked-100-area-series/package.json | 4 ++-- .../type-stacked-100-bar-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-100-line-series/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-area-series/package.json | 4 ++-- .../type-stacked-bar-series/package.json | 4 ++-- .../type-stacked-column-series/package.json | 4 ++-- .../type-stacked-line-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-spline-series/package.json | 4 ++-- .../data-chart/waterfall-chart/package.json | 4 ++-- .../doughnut-chart/animation/package.json | 4 ++-- .../doughnut-chart/explosion/package.json | 4 ++-- .../charts/doughnut-chart/legend/package.json | 4 ++-- .../doughnut-chart/overview/package.json | 4 ++-- .../charts/doughnut-chart/rings/package.json | 4 ++-- .../doughnut-chart/selection/package.json | 4 ++-- .../financial-chart/annotations/package.json | 4 ++-- .../financial-chart/axis-types/package.json | 4 ++-- .../package.json | 4 ++-- .../data-legend-styling-props/package.json | 4 ++-- .../financial-chart/data-legend/package.json | 4 ++-- .../package.json | 4 ++-- .../data-tooltip-styling-props/package.json | 4 ++-- .../financial-chart/data-tooltip/package.json | 4 ++-- .../format-specifiers/package.json | 4 ++-- .../high-frequency/package.json | 4 ++-- .../financial-chart/high-volume/package.json | 4 ++-- .../indicator-customization/package.json | 4 ++-- .../indicator-types/package.json | 4 ++-- .../multiple-data/package.json | 4 ++-- .../multiple-feeds/package.json | 4 ++-- .../financial-chart/overview/package.json | 4 ++-- .../charts/financial-chart/panes/package.json | 4 ++-- .../financial-chart/performance/package.json | 4 ++-- .../financial-chart/scrollbars/package.json | 4 ++-- .../stock-index-chart/package.json | 4 ++-- .../financial-chart/styling/package.json | 4 ++-- .../financial-chart/theming/package.json | 4 ++-- .../time-based-data/package.json | 4 ++-- .../financial-chart/titles/package.json | 4 ++-- .../tooltip-template/package.json | 4 ++-- .../tooltip-types/package.json | 4 ++-- .../financial-chart/trendlines/package.json | 4 ++-- .../financial-chart/volume-types/package.json | 4 ++-- .../charts/pie-chart/animation/package.json | 4 ++-- .../charts/pie-chart/explosion/package.json | 4 ++-- samples/charts/pie-chart/legend/package.json | 4 ++-- samples/charts/pie-chart/others/package.json | 4 ++-- .../charts/pie-chart/overview/package.json | 4 ++-- .../charts/pie-chart/selection/package.json | 4 ++-- samples/charts/pie-chart/styling/package.json | 4 ++-- .../sparkline/display-area/package.json | 4 ++-- .../sparkline/display-column/package.json | 4 ++-- .../sparkline/display-lines/package.json | 8 +++---- .../sparkline/display-types/package.json | 4 ++-- .../sparkline/display-winloss/package.json | 4 ++-- samples/charts/sparkline/grid/package.json | 8 +++---- samples/charts/sparkline/markers/package.json | 8 +++---- .../sparkline/normal-range/package.json | 8 +++---- .../charts/sparkline/trendlines/package.json | 8 +++---- .../sparkline/unknown-values/package.json | 8 +++---- .../package.json | 8 +++---- .../actions-built-in-data-chart/package.json | 8 +++---- .../charts/toolbar/custom-tool/package.json | 6 ++--- .../package.json | 8 +++---- .../package.json | 8 +++---- samples/charts/toolbar/theming/package.json | 8 +++---- samples/charts/tree-map/events/package.json | 6 ++--- .../charts/tree-map/highlighting/package.json | 8 +++---- samples/charts/tree-map/layout/package.json | 8 +++---- samples/charts/tree-map/overview/package.json | 4 ++-- samples/charts/tree-map/styling/package.json | 4 ++-- .../charts/zoomslider/overview/package.json | 4 ++-- .../operations-on-workbooks/package.json | 6 ++--- .../operations-on-worksheets/package.json | 4 ++-- .../excel/excel-library/overview/package.json | 4 ++-- .../working-with-cells/package.json | 4 ++-- .../working-with-charts/package.json | 8 +++---- .../working-with-sparklines/package.json | 8 +++---- .../working-with-tables/package.json | 8 +++---- .../excel/spreadsheet/activation/package.json | 6 ++--- .../spreadsheet/adapter-chart/package.json | 10 ++++---- .../spreadsheet/adapter-combo/package.json | 10 ++++---- .../excel/spreadsheet/clipboard/package.json | 6 ++--- .../excel/spreadsheet/commands/package.json | 6 ++--- .../conditional-formatting/package.json | 6 ++--- .../spreadsheet/config-options/package.json | 6 ++--- .../spreadsheet/data-validation/package.json | 6 ++--- .../excel/spreadsheet/hyperlinks/package.json | 6 ++--- .../excel/spreadsheet/overview/package.json | 6 ++--- .../bullet-graph/animation/package.json | 6 ++--- .../bullet-graph/background/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/bullet-graph/labels/package.json | 4 ++-- .../gauges/bullet-graph/measures/package.json | 4 ++-- .../gauges/bullet-graph/ranges/package.json | 4 ++-- .../gauges/bullet-graph/scale/package.json | 4 ++-- .../bullet-graph/tickmarks/package.json | 4 ++-- .../linear-gauge/animation/package.json | 6 ++--- .../gauges/linear-gauge/backing/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/linear-gauge/labels/package.json | 4 ++-- .../gauges/linear-gauge/needle/package.json | 4 ++-- .../gauges/linear-gauge/ranges/package.json | 4 ++-- .../gauges/linear-gauge/scale/package.json | 4 ++-- .../linear-gauge/tickmarks/package.json | 4 ++-- .../radial-gauge/animation/package.json | 6 ++--- .../gauges/radial-gauge/backing/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/radial-gauge/labels/package.json | 4 ++-- .../gauges/radial-gauge/needle/package.json | 4 ++-- .../radial-gauge/optical-scaling/package.json | 4 ++-- .../gauges/radial-gauge/ranges/package.json | 4 ++-- .../gauges/radial-gauge/scale/package.json | 4 ++-- .../radial-gauge/tickmarks/package.json | 4 ++-- .../geo-map/binding-data-csv/package.json | 6 ++--- .../binding-data-json-points/package.json | 6 ++--- .../geo-map/binding-data-model/package.json | 6 ++--- .../binding-multiple-shapes/package.json | 6 ++--- .../binding-multiple-sources/package.json | 6 ++--- .../geo-map/binding-shp-points/package.json | 6 ++--- .../geo-map/binding-shp-polygons/package.json | 6 ++--- .../binding-shp-polylines/package.json | 6 ++--- .../maps/geo-map/custom-tooltips/package.json | 6 ++--- .../geo-map/display-bing-imagery/package.json | 6 ++--- .../geo-map/display-esri-imagery/package.json | 6 ++--- .../geo-map/display-heat-imagery/package.json | 6 ++--- .../geo-map/display-osm-imagery/package.json | 6 ++--- .../maps/geo-map/marker-layouts/package.json | 6 ++--- .../maps/geo-map/marker-template/package.json | 6 ++--- samples/maps/geo-map/marker-type/package.json | 6 ++--- samples/maps/geo-map/navigation/package.json | 6 ++--- samples/maps/geo-map/overview/package.json | 6 ++--- .../maps/geo-map/shape-styling/package.json | 6 ++--- .../geo-map/triangulating-data/package.json | 6 ++--- .../type-scatter-area-series/package.json | 6 ++--- .../type-scatter-bubble-series/package.json | 6 ++--- .../type-scatter-contour-series/package.json | 6 ++--- .../type-scatter-density-series/package.json | 6 ++--- .../type-scatter-symbol-series/package.json | 6 ++--- .../type-shape-polygon-series/package.json | 6 ++--- .../type-shape-polyline-series/package.json | 6 ++--- 338 files changed, 845 insertions(+), 845 deletions(-) diff --git a/browser/package.json b/browser/package.json index e8977c435..c79d11311 100644 --- a/browser/package.json +++ b/browser/package.json @@ -29,15 +29,6 @@ "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", "@angular/router": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", - "@infragistics/igniteui-angular-spreadsheet": "23.2.202", - "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.202", "@ionic/angular": "5.6.3", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", @@ -47,8 +38,17 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.2", - "igniteui-theming": "6.2.0 ", + "igniteui-angular": "17.2.3", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-spreadsheet": "17.3.1-alpha.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", + "igniteui-theming": "6.4.0-beta.2", "igniteui-webcomponents": "4.9.0", "immediate": "3.2.3", "intl": "1.2.5", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index e62833470..75d2ab2f1 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1071,20 +1071,20 @@ function updateIG(cb) { // { name: "igniteui-angular-charts", version: "14.1.0" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { name: "@infragistics/igniteui-angular-core" , version: "23.2.202" }, - { name: "@infragistics/igniteui-angular-charts" , version: "23.2.202" }, - { name: "@infragistics/igniteui-angular-excel" , version: "23.2.202" }, - { name: "@infragistics/igniteui-angular-gauges" , version: "23.2.202" }, - { name: "@infragistics/igniteui-angular-inputs" , version: "23.2.202" }, - { name: "@infragistics/igniteui-angular-layouts" , version: "23.2.202" }, - { name: "@infragistics/igniteui-angular-maps" , version: "23.2.202" }, - { name: "@infragistics/igniteui-angular-spreadsheet-chart-adapter", version: "23.2.202" }, - { name: "@infragistics/igniteui-angular-spreadsheet" , version: "23.2.202" }, - { name: "@infragistics/igniteui-angular-datasources" , version: "23.2.202" }, + { name: "igniteui-angular-core" , version: "17.3.1-alpha.0" }, + { name: "igniteui-angular-charts" , version: "17.3.1-alpha.0" }, + { name: "igniteui-angular-excel" , version: "17.3.1-alpha.0" }, + { name: "igniteui-angular-gauges" , version: "17.3.1-alpha.0" }, + { name: "igniteui-angular-inputs" , version: "17.3.1-alpha.0" }, + { name: "igniteui-angular-layouts" , version: "17.3.1-alpha.0" }, + { name: "igniteui-angular-maps" , version: "17.3.1-alpha.0" }, + { name: "igniteui-angular-spreadsheet-chart-adapter", version: "17.3.1-alpha.0" }, + { name: "igniteui-angular-spreadsheet" , version: "17.3.1-alpha.0" }, + { name: "igniteui-angular-datasources" , version: "17.3.1-alpha.0" }, // these IG packages are sometimes updated: { name: "igniteui-webcomponents", version: "4.9.0" }, - { name: "igniteui-theming", version: "6.2.0 " }, - { name: "igniteui-angular", version: "17.2.2" }, + { name: "igniteui-theming", version: "6.4.0-beta.2" }, + { name: "igniteui-angular", version: "17.2.3" }, { name: "@angular/animations", version: "17.0.0" }, { name: "@angular/common", version: "17.0.0" }, { name: "@angular/compiler", version: "17.0.0" }, diff --git a/browser/src/app/index/index.component.ts b/browser/src/app/index/index.component.ts index 6213578a9..2700cd69a 100644 --- a/browser/src/app/index/index.component.ts +++ b/browser/src/app/index/index.component.ts @@ -9,8 +9,8 @@ import BrowserInfo from "../../browser-info.json"; // note these section is auto-generated - do not change it: // Auto-Insert-Imports-RoutingData-Start import { RoutingDataForCharts } from "../../samples/charts/routing-data"; -import { RoutingDataForExcel } from "../../samples/excel/routing-data"; import { RoutingDataForGauges } from "../../samples/gauges/routing-data"; +import { RoutingDataForExcel } from "../../samples/excel/routing-data"; import { RoutingDataForMaps } from "../../samples/maps/routing-data"; @@ -48,8 +48,8 @@ export class IndexComponent implements OnInit, AfterViewInit { private modulesRoutes = [ // Auto-Insert-SamplesRoutingArray-Start { path: "charts", routesData: RoutingDataForCharts }, - { path: "excel", routesData: RoutingDataForExcel }, { path: "gauges", routesData: RoutingDataForGauges }, + { path: "excel", routesData: RoutingDataForExcel }, { path: "maps", routesData: RoutingDataForMaps } diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index 09441a1f0..e8e2478a9 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,14 +1,14 @@ [ -{"ver":"23.2.202","name":"igniteui-angular-charts"}, -{"ver":"23.2.202","name":"igniteui-angular-core"}, -{"ver":"23.2.202","name":"igniteui-angular-excel"}, -{"ver":"23.2.202","name":"igniteui-angular-gauges"}, -{"ver":"23.2.202","name":"igniteui-angular-inputs"}, -{"ver":"23.2.202","name":"igniteui-angular-layouts"}, -{"ver":"23.2.202","name":"igniteui-angular-maps"}, -{"ver":"23.2.202","name":"igniteui-angular-spreadsheet"}, -{"ver":"23.2.202","name":"igniteui-angular-spreadsheet-chart-adapter"}, -{"ver":"17.2.2","name":"igniteui-angular"}, -{"ver":"6.2.0","name":"igniteui-theming"}, +{"ver":"17.2.3","name":"igniteui-angular"}, +{"ver":"17.3.1-alpha.0","name":"igniteui-angular-charts"}, +{"ver":"17.3.1-alpha.0","name":"igniteui-angular-core"}, +{"ver":"17.3.1-alpha.0","name":"igniteui-angular-excel"}, +{"ver":"17.3.1-alpha.0","name":"igniteui-angular-gauges"}, +{"ver":"17.3.1-alpha.0","name":"igniteui-angular-inputs"}, +{"ver":"17.3.1-alpha.0","name":"igniteui-angular-layouts"}, +{"ver":"17.3.1-alpha.0","name":"igniteui-angular-maps"}, +{"ver":"17.3.1-alpha.0","name":"igniteui-angular-spreadsheet"}, +{"ver":"17.3.1-alpha.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"6.4.0-beta.2","name":"igniteui-theming"}, {"ver":"4.9.0","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 8963a6770..0729f4eb9 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 4193bf51f..d46b4d159 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.2", + "igniteui-angular": "17.2.3", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 4193bf51f..d46b4d159 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.2", + "igniteui-angular": "17.2.3", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 8963a6770..0729f4eb9 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 8963a6770..0729f4eb9 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index dcc82ea9a..8515f8f61 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.2", - "igniteui-theming": "6.2.0 ", + "igniteui-angular": "17.2.3", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-theming": "6.4.0-beta.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 8963a6770..0729f4eb9 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 8963a6770..0729f4eb9 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index b2e3f25fe..94249220a 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 8963a6770..0729f4eb9 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 8963a6770..0729f4eb9 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 4193bf51f..d46b4d159 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.2", + "igniteui-angular": "17.2.3", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 3e5d8508e..4cf59528e 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-inputs": "23.2.202", - "@infragistics/igniteui-angular-layouts": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index aca65e5dc..fabb9adc1 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 991cc7643..b34847a1c 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.2", + "igniteui-angular": "17.2.3", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index e21cd31e3..803ca64b1 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index e21cd31e3..803ca64b1 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index e21cd31e3..803ca64b1 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -14,14 +14,14 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 22e922749..3f772389d 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -14,16 +14,16 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.2", + "igniteui-angular": "17.2.3", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 22e922749..3f772389d 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -14,16 +14,16 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.2", + "igniteui-angular": "17.2.3", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index d06ba852b..2f95054e6 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -14,16 +14,16 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", - "@infragistics/igniteui-angular-spreadsheet": "23.2.202", - "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular-spreadsheet": "17.3.1-alpha.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 07a788d35..2c19bda4b 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", - "@infragistics/igniteui-angular-spreadsheet": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index f81e4cbe7..e9684c6f3 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -14,17 +14,17 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", - "@infragistics/igniteui-angular-spreadsheet": "23.2.202", - "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular-spreadsheet": "17.3.1-alpha.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index f81e4cbe7..e9684c6f3 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -14,17 +14,17 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", - "@infragistics/igniteui-angular-spreadsheet": "23.2.202", - "@infragistics/igniteui-angular-spreadsheet-chart-adapter": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular-spreadsheet": "17.3.1-alpha.0", + "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index 07a788d35..2c19bda4b 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", - "@infragistics/igniteui-angular-spreadsheet": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 07a788d35..2c19bda4b 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", - "@infragistics/igniteui-angular-spreadsheet": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index 07a788d35..2c19bda4b 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", - "@infragistics/igniteui-angular-spreadsheet": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 07a788d35..2c19bda4b 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", - "@infragistics/igniteui-angular-spreadsheet": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 07a788d35..2c19bda4b 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", - "@infragistics/igniteui-angular-spreadsheet": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 07a788d35..2c19bda4b 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", - "@infragistics/igniteui-angular-spreadsheet": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index 07a788d35..2c19bda4b 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -14,15 +14,15 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-excel": "23.2.202", - "@infragistics/igniteui-angular-spreadsheet": "23.2.202", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 845688d85..e54771d28 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.2", + "igniteui-angular": "17.2.3", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 845688d85..e54771d28 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.2", + "igniteui-angular": "17.2.3", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 845688d85..e54771d28 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.2", + "igniteui-angular": "17.2.3", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index e3c2464f4..400a970dd 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -14,12 +14,12 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-gauges": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index c7657d04f..0c717502f 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -14,13 +14,13 @@ "@angular/forms": "17.0.0", "@angular/platform-browser": "17.0.0", "@angular/platform-browser-dynamic": "17.0.0", - "@infragistics/igniteui-angular-charts": "23.2.202", - "@infragistics/igniteui-angular-core": "23.2.202", - "@infragistics/igniteui-angular-maps": "23.2.202", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "6.6.7", From d0133b924b75ca55eeacc4eb47dd638d0bf897ec Mon Sep 17 00:00:00 2001 From: Borislav Traykov Date: Wed, 22 May 2024 16:54:57 +0300 Subject: [PATCH 070/154] Add --legacy-peer-deps (#173) npm ERR! Could not resolve dependency: npm ERR! peerOptional @types/hammerjs@"^2.0.40" from igniteui-angular@17.2.3 --- azure-pipelines/build-pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines/build-pipeline.yml b/azure-pipelines/build-pipeline.yml index 5a4b56a81..50ced6c96 100644 --- a/azure-pipelines/build-pipeline.yml +++ b/azure-pipelines/build-pipeline.yml @@ -39,9 +39,9 @@ jobs: - task: Npm@1 displayName: 'npm install' inputs: - command: 'install' + command: 'custom' workingDir: '$(Build.SourcesDirectory)\browser' - verbose: ${{ parameters.isVerbose }} + customCommand: 'install --legacy-peer-deps' - task: PowerShell@2 displayName: 'Apply very special configuration' From 89889aa5ffc78d935338953f303f5ac7770a0fa8 Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Mon, 3 Jun 2024 14:22:15 -0400 Subject: [PATCH 071/154] test codesandbox (#177) --- tests/donut/.stackblitzrc | 1 + tests/donut/ReadMe.md | 58 ++++++++ tests/donut/angular.json | 106 +++++++++++++++ tests/donut/package.json | 44 ++++++ tests/donut/sandbox.config.json | 5 + tests/donut/src/EnergyGlobalDemand.ts | 51 +++++++ tests/donut/src/app.component.html | 33 +++++ tests/donut/src/app.component.scss | 3 + tests/donut/src/app.component.ts | 39 ++++++ tests/donut/src/app.module.ts | 26 ++++ tests/donut/src/config/tsconfig-es5.app.json | 6 + tests/donut/src/config/tsconfig.app.json | 12 ++ tests/donut/src/config/tsconfig.base.json | 24 ++++ tests/donut/src/config/tsconfig.spec.json | 19 +++ tests/donut/src/config/tsconfig.worker.json | 14 ++ .../src/environments/environment.prod.ts | 3 + tests/donut/src/environments/environment.ts | 16 +++ tests/donut/src/index.html | 23 ++++ tests/donut/src/main.ts | 15 +++ tests/donut/src/polyfills.ts | 65 +++++++++ tests/donut/src/styles.scss | 9 ++ tests/donut/src/typings.d.ts | 5 + tests/donut/tsconfig.json | 21 +++ tests/donut/tslint.json | 31 +++++ tests/donut2/.codesandbox/Dockerfile | 1 + tests/donut2/.codesandbox/tasks.json | 17 +++ tests/donut2/.stackblitzrc | 1 + tests/donut2/ReadMe.md | 58 ++++++++ tests/donut2/angular.json | 106 +++++++++++++++ tests/donut2/package.json | 44 ++++++ tests/donut2/src/EnergyGlobalDemand.ts | 51 +++++++ tests/donut2/src/app.component.html | 33 +++++ tests/donut2/src/app.component.scss | 3 + tests/donut2/src/app.component.ts | 39 ++++++ tests/donut2/src/app.module.ts | 26 ++++ tests/donut2/src/config/tsconfig-es5.app.json | 6 + tests/donut2/src/config/tsconfig.app.json | 12 ++ tests/donut2/src/config/tsconfig.base.json | 24 ++++ tests/donut2/src/config/tsconfig.spec.json | 19 +++ tests/donut2/src/config/tsconfig.worker.json | 14 ++ .../src/environments/environment.prod.ts | 3 + tests/donut2/src/environments/environment.ts | 16 +++ tests/donut2/src/index.html | 23 ++++ tests/donut2/src/main.ts | 15 +++ tests/donut2/src/polyfills.ts | 65 +++++++++ tests/donut2/src/styles.scss | 9 ++ tests/donut2/src/typings.d.ts | 5 + tests/donut2/tsconfig.json | 21 +++ tests/donut2/tslint.json | 31 +++++ tests/donut3/.codesandbox/Dockerfile | 1 + tests/donut3/.codesandbox/tasks.json | 17 +++ tests/donut3/.stackblitzrc | 1 + tests/donut3/ReadMe.md | 58 ++++++++ tests/donut3/angular.json | 106 +++++++++++++++ tests/donut3/package.json | 44 ++++++ tests/donut3/sandbox.config.json | 5 + tests/donut3/src/EnergyGlobalDemand.ts | 51 +++++++ tests/donut3/src/app.component.html | 33 +++++ tests/donut3/src/app.component.scss | 3 + tests/donut3/src/app.component.ts | 39 ++++++ tests/donut3/src/app.module.ts | 26 ++++ tests/donut3/src/config/tsconfig-es5.app.json | 6 + tests/donut3/src/config/tsconfig.app.json | 12 ++ tests/donut3/src/config/tsconfig.base.json | 24 ++++ tests/donut3/src/config/tsconfig.spec.json | 19 +++ tests/donut3/src/config/tsconfig.worker.json | 14 ++ .../src/environments/environment.prod.ts | 3 + tests/donut3/src/environments/environment.ts | 16 +++ tests/donut3/src/index.html | 23 ++++ tests/donut3/src/main.ts | 15 +++ tests/donut3/src/polyfills.ts | 65 +++++++++ tests/donut3/src/styles.scss | 9 ++ tests/donut3/src/typings.d.ts | 5 + tests/donut3/tsconfig.json | 21 +++ tests/donut3/tslint.json | 31 +++++ tests/treegrid/.codesandbox/Dockerfile | 1 + tests/treegrid/.codesandbox/tasks.json | 17 +++ tests/treegrid/.stackblitzrc | 1 + tests/treegrid/angular.json | 110 +++++++++++++++ tests/treegrid/package.json | 30 +++++ tests/treegrid/src/_app-layout.scss | 84 ++++++++++++ tests/treegrid/src/_variables.scss | 18 +++ tests/treegrid/src/app/app.component.html | 1 + tests/treegrid/src/app/app.component.scss | 0 tests/treegrid/src/app/app.component.ts | 8 ++ tests/treegrid/src/app/app.module.ts | 41 ++++++ .../directives/prevent-scroll.directive.ts | 62 +++++++++ .../app/tree-grid-childdatakey-sample/data.ts | 125 ++++++++++++++++++ ...ee-grid-childdatakey-sample.component.html | 32 +++++ ...ee-grid-childdatakey-sample.component.scss | 3 + ...tree-grid-childdatakey-sample.component.ts | 58 ++++++++ .../src/environments/environment.prod.ts | 3 + .../treegrid/src/environments/environment.ts | 16 +++ tests/treegrid/src/index.html | 31 +++++ tests/treegrid/src/main.ts | 16 +++ tests/treegrid/src/polyfills.ts | 58 ++++++++ tests/treegrid/src/styles.scss | 49 +++++++ tests/treegrid/tsconfig.app.json | 10 ++ tests/treegrid/tsconfig.json | 25 ++++ 99 files changed, 2717 insertions(+) create mode 100644 tests/donut/.stackblitzrc create mode 100644 tests/donut/ReadMe.md create mode 100644 tests/donut/angular.json create mode 100644 tests/donut/package.json create mode 100644 tests/donut/sandbox.config.json create mode 100644 tests/donut/src/EnergyGlobalDemand.ts create mode 100644 tests/donut/src/app.component.html create mode 100644 tests/donut/src/app.component.scss create mode 100644 tests/donut/src/app.component.ts create mode 100644 tests/donut/src/app.module.ts create mode 100644 tests/donut/src/config/tsconfig-es5.app.json create mode 100644 tests/donut/src/config/tsconfig.app.json create mode 100644 tests/donut/src/config/tsconfig.base.json create mode 100644 tests/donut/src/config/tsconfig.spec.json create mode 100644 tests/donut/src/config/tsconfig.worker.json create mode 100644 tests/donut/src/environments/environment.prod.ts create mode 100644 tests/donut/src/environments/environment.ts create mode 100644 tests/donut/src/index.html create mode 100644 tests/donut/src/main.ts create mode 100644 tests/donut/src/polyfills.ts create mode 100644 tests/donut/src/styles.scss create mode 100644 tests/donut/src/typings.d.ts create mode 100644 tests/donut/tsconfig.json create mode 100644 tests/donut/tslint.json create mode 100644 tests/donut2/.codesandbox/Dockerfile create mode 100644 tests/donut2/.codesandbox/tasks.json create mode 100644 tests/donut2/.stackblitzrc create mode 100644 tests/donut2/ReadMe.md create mode 100644 tests/donut2/angular.json create mode 100644 tests/donut2/package.json create mode 100644 tests/donut2/src/EnergyGlobalDemand.ts create mode 100644 tests/donut2/src/app.component.html create mode 100644 tests/donut2/src/app.component.scss create mode 100644 tests/donut2/src/app.component.ts create mode 100644 tests/donut2/src/app.module.ts create mode 100644 tests/donut2/src/config/tsconfig-es5.app.json create mode 100644 tests/donut2/src/config/tsconfig.app.json create mode 100644 tests/donut2/src/config/tsconfig.base.json create mode 100644 tests/donut2/src/config/tsconfig.spec.json create mode 100644 tests/donut2/src/config/tsconfig.worker.json create mode 100644 tests/donut2/src/environments/environment.prod.ts create mode 100644 tests/donut2/src/environments/environment.ts create mode 100644 tests/donut2/src/index.html create mode 100644 tests/donut2/src/main.ts create mode 100644 tests/donut2/src/polyfills.ts create mode 100644 tests/donut2/src/styles.scss create mode 100644 tests/donut2/src/typings.d.ts create mode 100644 tests/donut2/tsconfig.json create mode 100644 tests/donut2/tslint.json create mode 100644 tests/donut3/.codesandbox/Dockerfile create mode 100644 tests/donut3/.codesandbox/tasks.json create mode 100644 tests/donut3/.stackblitzrc create mode 100644 tests/donut3/ReadMe.md create mode 100644 tests/donut3/angular.json create mode 100644 tests/donut3/package.json create mode 100644 tests/donut3/sandbox.config.json create mode 100644 tests/donut3/src/EnergyGlobalDemand.ts create mode 100644 tests/donut3/src/app.component.html create mode 100644 tests/donut3/src/app.component.scss create mode 100644 tests/donut3/src/app.component.ts create mode 100644 tests/donut3/src/app.module.ts create mode 100644 tests/donut3/src/config/tsconfig-es5.app.json create mode 100644 tests/donut3/src/config/tsconfig.app.json create mode 100644 tests/donut3/src/config/tsconfig.base.json create mode 100644 tests/donut3/src/config/tsconfig.spec.json create mode 100644 tests/donut3/src/config/tsconfig.worker.json create mode 100644 tests/donut3/src/environments/environment.prod.ts create mode 100644 tests/donut3/src/environments/environment.ts create mode 100644 tests/donut3/src/index.html create mode 100644 tests/donut3/src/main.ts create mode 100644 tests/donut3/src/polyfills.ts create mode 100644 tests/donut3/src/styles.scss create mode 100644 tests/donut3/src/typings.d.ts create mode 100644 tests/donut3/tsconfig.json create mode 100644 tests/donut3/tslint.json create mode 100644 tests/treegrid/.codesandbox/Dockerfile create mode 100644 tests/treegrid/.codesandbox/tasks.json create mode 100644 tests/treegrid/.stackblitzrc create mode 100644 tests/treegrid/angular.json create mode 100644 tests/treegrid/package.json create mode 100644 tests/treegrid/src/_app-layout.scss create mode 100644 tests/treegrid/src/_variables.scss create mode 100644 tests/treegrid/src/app/app.component.html create mode 100644 tests/treegrid/src/app/app.component.scss create mode 100644 tests/treegrid/src/app/app.component.ts create mode 100644 tests/treegrid/src/app/app.module.ts create mode 100644 tests/treegrid/src/app/directives/prevent-scroll.directive.ts create mode 100644 tests/treegrid/src/app/tree-grid-childdatakey-sample/data.ts create mode 100644 tests/treegrid/src/app/tree-grid-childdatakey-sample/tree-grid-childdatakey-sample.component.html create mode 100644 tests/treegrid/src/app/tree-grid-childdatakey-sample/tree-grid-childdatakey-sample.component.scss create mode 100644 tests/treegrid/src/app/tree-grid-childdatakey-sample/tree-grid-childdatakey-sample.component.ts create mode 100644 tests/treegrid/src/environments/environment.prod.ts create mode 100644 tests/treegrid/src/environments/environment.ts create mode 100644 tests/treegrid/src/index.html create mode 100644 tests/treegrid/src/main.ts create mode 100644 tests/treegrid/src/polyfills.ts create mode 100644 tests/treegrid/src/styles.scss create mode 100644 tests/treegrid/tsconfig.app.json create mode 100644 tests/treegrid/tsconfig.json diff --git a/tests/donut/.stackblitzrc b/tests/donut/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/tests/donut/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/tests/donut/ReadMe.md b/tests/donut/ReadMe.md new file mode 100644 index 000000000..88e6723a3 --- /dev/null +++ b/tests/donut/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Legend feature using [DoughnutChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/doughnut-chart/legend +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/tests/donut/angular.json b/tests/donut/angular.json new file mode 100644 index 000000000..11ffb8c9c --- /dev/null +++ b/tests/donut/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/tests/donut/package.json b/tests/donut/package.json new file mode 100644 index 000000000..fabb9adc1 --- /dev/null +++ b/tests/donut/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "9.1.1", + "tslint": "~6.1.3", + "typescript": "5.2.2" + } +} diff --git a/tests/donut/sandbox.config.json b/tests/donut/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/tests/donut/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/tests/donut/src/EnergyGlobalDemand.ts b/tests/donut/src/EnergyGlobalDemand.ts new file mode 100644 index 000000000..922fcf7a9 --- /dev/null +++ b/tests/donut/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/tests/donut/src/app.component.html b/tests/donut/src/app.component.html new file mode 100644 index 000000000..3c78e15c6 --- /dev/null +++ b/tests/donut/src/app.component.html @@ -0,0 +1,33 @@ +
+
+ Global Electricity Demand by Energy Use +
+
+ + +
+
+ + + + +
+
diff --git a/tests/donut/src/app.component.scss b/tests/donut/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/tests/donut/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/tests/donut/src/app.component.ts b/tests/donut/src/app.component.ts new file mode 100644 index 000000000..d7720aa4b --- /dev/null +++ b/tests/donut/src/app.component.ts @@ -0,0 +1,39 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { IgxItemLegendComponent, IgxDoughnutChartComponent, IgxRingSeriesComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxItemLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDoughnutChartComponent + @ViewChild("series", { static: true } ) + private series: IgxRingSeriesComponent + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/tests/donut/src/app.module.ts b/tests/donut/src/app.module.ts new file mode 100644 index 000000000..7d4332c43 --- /dev/null +++ b/tests/donut/src/app.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxItemLegendModule, IgxDoughnutChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxItemLegendModule, + IgxDoughnutChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/tests/donut/src/config/tsconfig-es5.app.json b/tests/donut/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/tests/donut/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/tests/donut/src/config/tsconfig.app.json b/tests/donut/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/tests/donut/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/tests/donut/src/config/tsconfig.base.json b/tests/donut/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/tests/donut/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/tests/donut/src/config/tsconfig.spec.json b/tests/donut/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/tests/donut/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/tests/donut/src/config/tsconfig.worker.json b/tests/donut/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/tests/donut/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/tests/donut/src/environments/environment.prod.ts b/tests/donut/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/tests/donut/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/tests/donut/src/environments/environment.ts b/tests/donut/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/tests/donut/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/tests/donut/src/index.html b/tests/donut/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/tests/donut/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/tests/donut/src/main.ts b/tests/donut/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/tests/donut/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/tests/donut/src/polyfills.ts b/tests/donut/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/tests/donut/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/tests/donut/src/styles.scss b/tests/donut/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/tests/donut/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/tests/donut/src/typings.d.ts b/tests/donut/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/tests/donut/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/tests/donut/tsconfig.json b/tests/donut/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/tests/donut/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/tests/donut/tslint.json b/tests/donut/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/tests/donut/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/tests/donut2/.codesandbox/Dockerfile b/tests/donut2/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/tests/donut2/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/tests/donut2/.codesandbox/tasks.json b/tests/donut2/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/tests/donut2/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/tests/donut2/.stackblitzrc b/tests/donut2/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/tests/donut2/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/tests/donut2/ReadMe.md b/tests/donut2/ReadMe.md new file mode 100644 index 000000000..88e6723a3 --- /dev/null +++ b/tests/donut2/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Legend feature using [DoughnutChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/doughnut-chart/legend +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/tests/donut2/angular.json b/tests/donut2/angular.json new file mode 100644 index 000000000..11ffb8c9c --- /dev/null +++ b/tests/donut2/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/tests/donut2/package.json b/tests/donut2/package.json new file mode 100644 index 000000000..fabb9adc1 --- /dev/null +++ b/tests/donut2/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "9.1.1", + "tslint": "~6.1.3", + "typescript": "5.2.2" + } +} diff --git a/tests/donut2/src/EnergyGlobalDemand.ts b/tests/donut2/src/EnergyGlobalDemand.ts new file mode 100644 index 000000000..922fcf7a9 --- /dev/null +++ b/tests/donut2/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/tests/donut2/src/app.component.html b/tests/donut2/src/app.component.html new file mode 100644 index 000000000..3c78e15c6 --- /dev/null +++ b/tests/donut2/src/app.component.html @@ -0,0 +1,33 @@ +
+
+ Global Electricity Demand by Energy Use +
+
+ + +
+
+ + + + +
+
diff --git a/tests/donut2/src/app.component.scss b/tests/donut2/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/tests/donut2/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/tests/donut2/src/app.component.ts b/tests/donut2/src/app.component.ts new file mode 100644 index 000000000..d7720aa4b --- /dev/null +++ b/tests/donut2/src/app.component.ts @@ -0,0 +1,39 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { IgxItemLegendComponent, IgxDoughnutChartComponent, IgxRingSeriesComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxItemLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDoughnutChartComponent + @ViewChild("series", { static: true } ) + private series: IgxRingSeriesComponent + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/tests/donut2/src/app.module.ts b/tests/donut2/src/app.module.ts new file mode 100644 index 000000000..7d4332c43 --- /dev/null +++ b/tests/donut2/src/app.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxItemLegendModule, IgxDoughnutChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxItemLegendModule, + IgxDoughnutChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/tests/donut2/src/config/tsconfig-es5.app.json b/tests/donut2/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/tests/donut2/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/tests/donut2/src/config/tsconfig.app.json b/tests/donut2/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/tests/donut2/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/tests/donut2/src/config/tsconfig.base.json b/tests/donut2/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/tests/donut2/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/tests/donut2/src/config/tsconfig.spec.json b/tests/donut2/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/tests/donut2/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/tests/donut2/src/config/tsconfig.worker.json b/tests/donut2/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/tests/donut2/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/tests/donut2/src/environments/environment.prod.ts b/tests/donut2/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/tests/donut2/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/tests/donut2/src/environments/environment.ts b/tests/donut2/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/tests/donut2/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/tests/donut2/src/index.html b/tests/donut2/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/tests/donut2/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/tests/donut2/src/main.ts b/tests/donut2/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/tests/donut2/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/tests/donut2/src/polyfills.ts b/tests/donut2/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/tests/donut2/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/tests/donut2/src/styles.scss b/tests/donut2/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/tests/donut2/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/tests/donut2/src/typings.d.ts b/tests/donut2/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/tests/donut2/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/tests/donut2/tsconfig.json b/tests/donut2/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/tests/donut2/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/tests/donut2/tslint.json b/tests/donut2/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/tests/donut2/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/tests/donut3/.codesandbox/Dockerfile b/tests/donut3/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/tests/donut3/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/tests/donut3/.codesandbox/tasks.json b/tests/donut3/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/tests/donut3/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/tests/donut3/.stackblitzrc b/tests/donut3/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/tests/donut3/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/tests/donut3/ReadMe.md b/tests/donut3/ReadMe.md new file mode 100644 index 000000000..88e6723a3 --- /dev/null +++ b/tests/donut3/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Legend feature using [DoughnutChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/doughnut-chart/legend +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/tests/donut3/angular.json b/tests/donut3/angular.json new file mode 100644 index 000000000..11ffb8c9c --- /dev/null +++ b/tests/donut3/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/tests/donut3/package.json b/tests/donut3/package.json new file mode 100644 index 000000000..fabb9adc1 --- /dev/null +++ b/tests/donut3/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "9.1.1", + "tslint": "~6.1.3", + "typescript": "5.2.2" + } +} diff --git a/tests/donut3/sandbox.config.json b/tests/donut3/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/tests/donut3/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/tests/donut3/src/EnergyGlobalDemand.ts b/tests/donut3/src/EnergyGlobalDemand.ts new file mode 100644 index 000000000..922fcf7a9 --- /dev/null +++ b/tests/donut3/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/tests/donut3/src/app.component.html b/tests/donut3/src/app.component.html new file mode 100644 index 000000000..3c78e15c6 --- /dev/null +++ b/tests/donut3/src/app.component.html @@ -0,0 +1,33 @@ +
+
+ Global Electricity Demand by Energy Use +
+
+ + +
+
+ + + + +
+
diff --git a/tests/donut3/src/app.component.scss b/tests/donut3/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/tests/donut3/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/tests/donut3/src/app.component.ts b/tests/donut3/src/app.component.ts new file mode 100644 index 000000000..d7720aa4b --- /dev/null +++ b/tests/donut3/src/app.component.ts @@ -0,0 +1,39 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { IgxItemLegendComponent, IgxDoughnutChartComponent, IgxRingSeriesComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxItemLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDoughnutChartComponent + @ViewChild("series", { static: true } ) + private series: IgxRingSeriesComponent + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/tests/donut3/src/app.module.ts b/tests/donut3/src/app.module.ts new file mode 100644 index 000000000..7d4332c43 --- /dev/null +++ b/tests/donut3/src/app.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxItemLegendModule, IgxDoughnutChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxItemLegendModule, + IgxDoughnutChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/tests/donut3/src/config/tsconfig-es5.app.json b/tests/donut3/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/tests/donut3/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/tests/donut3/src/config/tsconfig.app.json b/tests/donut3/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/tests/donut3/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/tests/donut3/src/config/tsconfig.base.json b/tests/donut3/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/tests/donut3/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/tests/donut3/src/config/tsconfig.spec.json b/tests/donut3/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/tests/donut3/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/tests/donut3/src/config/tsconfig.worker.json b/tests/donut3/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/tests/donut3/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/tests/donut3/src/environments/environment.prod.ts b/tests/donut3/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/tests/donut3/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/tests/donut3/src/environments/environment.ts b/tests/donut3/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/tests/donut3/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/tests/donut3/src/index.html b/tests/donut3/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/tests/donut3/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/tests/donut3/src/main.ts b/tests/donut3/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/tests/donut3/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/tests/donut3/src/polyfills.ts b/tests/donut3/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/tests/donut3/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/tests/donut3/src/styles.scss b/tests/donut3/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/tests/donut3/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/tests/donut3/src/typings.d.ts b/tests/donut3/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/tests/donut3/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/tests/donut3/tsconfig.json b/tests/donut3/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/tests/donut3/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/tests/donut3/tslint.json b/tests/donut3/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/tests/donut3/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/tests/treegrid/.codesandbox/Dockerfile b/tests/treegrid/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/tests/treegrid/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/tests/treegrid/.codesandbox/tasks.json b/tests/treegrid/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/tests/treegrid/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/tests/treegrid/.stackblitzrc b/tests/treegrid/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/tests/treegrid/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/tests/treegrid/angular.json b/tests/treegrid/angular.json new file mode 100644 index 000000000..f2ace893e --- /dev/null +++ b/tests/treegrid/angular.json @@ -0,0 +1,110 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "example-app": { + "projectType": "application", + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/example-app", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": ["src/favicon.ico", "src/assets"], + "styles": ["src/styles.scss"], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + }, + "scripts": [] + }, + "configurations": { + "production": { + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ], + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all" + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "browserTarget": "example-app:build:production" + }, + "development": { + "browserTarget": "example-app:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "browserTarget": "example-app:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "inlineStyleLanguage": "scss", + "assets": ["src/favicon.ico", "src/assets"], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + }, + "styles": ["src/styles.scss", "src/theme.scss"], + "scripts": [] + } + } + } + } + }, + "defaultProject": "example-app", + "cli": { + "analytics": false + } +} diff --git a/tests/treegrid/package.json b/tests/treegrid/package.json new file mode 100644 index 000000000..958b9ca33 --- /dev/null +++ b/tests/treegrid/package.json @@ -0,0 +1,30 @@ +{ + "dependencies": { + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/router": "^17.2.1", + "@types/hammerjs": "^2.0.39", + "hammerjs": "^2.0.8", + "igniteui-angular": "17.1.0-rc.0", + "igniteui-angular-charts": "17.2.1", + "igniteui-angular-core": "17.2.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", + "jasmine-core": "5.1.1", + "ts-node": "10.9.1", + "typescript": "5.3.3" + } +} \ No newline at end of file diff --git a/tests/treegrid/src/_app-layout.scss b/tests/treegrid/src/_app-layout.scss new file mode 100644 index 000000000..b5329f55b --- /dev/null +++ b/tests/treegrid/src/_app-layout.scss @@ -0,0 +1,84 @@ +.sample-wrapper { + width: inherit; + position: relative; + height: 100%; + margin: 0 auto; + background: transparent; +} + +.sample-content { + display: flex; + flex-grow: 1; + flex-flow: row wrap; + justify-content: flex-start; + padding: 0; + -webkit-animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both; + -moz-animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both; + animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both; +} + +.sample-column { + display: flex; + flex-flow: column nowrap; + flex: 1 0 25%; + align-content: flex-start; + margin: 16px; + min-width: 280px; +} + +.sample-title { + color: #0375be; + margin-bottom: 12px; + margin-top: 12px; +} + +.sample-title .light { + font-weight: 400; +} + +.sample-description { + font-size: 14px; + font-weight: normal; + color: #717171; +} + +@-webkit-keyframes color-change-2x { + 0% { + background: #fdf8f0; + } + 100% { + background: #f6e7ec; + } +} + +@keyframes color-change-2x { + 0% { + background: #fdf8f0; + } + 100% { + background: #f6e7ec; + } +} + +@-webkit-keyframes fade-in { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + +@keyframes fade-in { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + +.headerAlignSyle { + text-align: right !important; +} + diff --git a/tests/treegrid/src/_variables.scss b/tests/treegrid/src/_variables.scss new file mode 100644 index 000000000..011944da5 --- /dev/null +++ b/tests/treegrid/src/_variables.scss @@ -0,0 +1,18 @@ +@use 'igniteui-angular/theming' as *; +@forward 'igniteui-angular/theming'; + +$palette: $light-material-palette; +$schema: $light-material-schema; + +$green-palette: palette( + $primary: #09f, + $secondary: #72da67, + $gray: #fff, + $surface: #333, + $info: color($palette, 'info'), + $success: color($palette, 'success'), + $warn: color($palette, 'warn'), + $error: color($palette, 'error'), +); + +$gray-btn-color: color($green-palette, 'gray', 800); diff --git a/tests/treegrid/src/app/app.component.html b/tests/treegrid/src/app/app.component.html new file mode 100644 index 000000000..3ae58c22c --- /dev/null +++ b/tests/treegrid/src/app/app.component.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tests/treegrid/src/app/app.component.scss b/tests/treegrid/src/app/app.component.scss new file mode 100644 index 000000000..e69de29bb diff --git a/tests/treegrid/src/app/app.component.ts b/tests/treegrid/src/app/app.component.ts new file mode 100644 index 000000000..0fd0d7e3a --- /dev/null +++ b/tests/treegrid/src/app/app.component.ts @@ -0,0 +1,8 @@ +import { Component } from "@angular/core"; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html" +}) +export class AppComponent {} \ No newline at end of file diff --git a/tests/treegrid/src/app/app.module.ts b/tests/treegrid/src/app/app.module.ts new file mode 100644 index 000000000..d12cc778f --- /dev/null +++ b/tests/treegrid/src/app/app.module.ts @@ -0,0 +1,41 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; +import { IgxPreventDocumentScrollModule } from "./directives/prevent-scroll.directive"; +import { + IgxTreeGridModule, + IgxExcelExporterService, + IgxCsvExporterService + } from "igniteui-angular"; +import { TreeGridChilddatakeySampleComponent } from "./tree-grid-childdatakey-sample/tree-grid-childdatakey-sample.component"; +import { + IgxSparklineCoreModule, + IgxSparklineModule + } from "igniteui-angular-charts"; + + + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent, + TreeGridChilddatakeySampleComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + FormsModule, + IgxPreventDocumentScrollModule, + IgxTreeGridModule, + IgxSparklineCoreModule, + IgxSparklineModule +], + providers: [ + IgxExcelExporterService, + IgxCsvExporterService +], + schemas: [] +}) +export class AppModule {} diff --git a/tests/treegrid/src/app/directives/prevent-scroll.directive.ts b/tests/treegrid/src/app/directives/prevent-scroll.directive.ts new file mode 100644 index 000000000..11c97caa1 --- /dev/null +++ b/tests/treegrid/src/app/directives/prevent-scroll.directive.ts @@ -0,0 +1,62 @@ +import { AfterViewInit, Directive, Host, Input, NgModule, Optional, OnDestroy, Inject } from '@angular/core'; +import { GridType, IGX_GRID_BASE } from 'igniteui-angular'; + +@Directive({ + // eslint-disable-next-line @angular-eslint/directive-selector + selector: '[igxPreventDocumentScroll]' +}) +export class IgxPreventDocumentScrollDirective implements AfterViewInit, OnDestroy { + private _preventScroll = true; + private gridBody: HTMLElement; + + /** + * A boolean indicating if page scroll should be prevented while mouse wheeling over the grid, + * when grid scroll has reached top or bottom. Defaults to true. + * ```html + * + * + * ``` + */ + @Input('igxPreventDocumentScroll') + public set preventScroll(val: boolean) { + if (val === false) { this._preventScroll = false; } + } + + /** + * @hidden + */ + constructor(@Host() @Optional() @Inject(IGX_GRID_BASE) private grid: GridType) { + } + + public ngAfterViewInit() { + this.gridBody = this.getGridTBody(); + if (this._preventScroll) { + this.gridBody.addEventListener('wheel', this.preventDocumentScroll, { passive: false }); + } + } + + public ngOnDestroy() { + this.gridBody.removeEventListener('wheel', this.preventDocumentScroll); + } + + /** + * Prevents scrolling the page, when mouse wheel over the grid body. + */ + private preventDocumentScroll(event) { + event.preventDefault(); + } + + private getGridTBody(): HTMLElement { + return this.grid.tbody.nativeElement; + } +} + +/** + * @hidden + */ +@NgModule({ + declarations: [IgxPreventDocumentScrollDirective], + exports: [IgxPreventDocumentScrollDirective] +}) + +export class IgxPreventDocumentScrollModule { } diff --git a/tests/treegrid/src/app/tree-grid-childdatakey-sample/data.ts b/tests/treegrid/src/app/tree-grid-childdatakey-sample/data.ts new file mode 100644 index 000000000..f8e385339 --- /dev/null +++ b/tests/treegrid/src/app/tree-grid-childdatakey-sample/data.ts @@ -0,0 +1,125 @@ +/* eslint-disable @typescript-eslint/naming-convention */ +export const EMPLOYEE_DATA = [ + { + Age: 55, + Employees: [ + { + Age: 43, + Employees: [], + HireDate: new Date(2011, 6, 3), + ID: 3, + Name: 'Michael Burke' + }, + { + Age: 29, + Employees: undefined, + HireDate: new Date(2009, 6, 19), + ID: 2, + Name: 'Thomas Anderson' + }, + { + Age: 31, + Employees: [ + { + Age: 35, + HireDate: new Date(2015, 9, 17), + ID: 6, + Name: 'Roland Mendel' + }, + { + Age: 44, + HireDate: new Date(2009, 10, 11), + ID: 12, + Name: 'Sven Cooper' + } + ], + HireDate: new Date(2014, 8, 18), + ID: 11, + Name: 'Monica Reyes' + }], + HireDate: new Date(2008, 3, 20), + ID: 1, + Name: 'Johnathan Winchester' + }, + { + Age: 42, + Employees: [ + { + Age: 44, + HireDate: new Date(2014, 4, 4), + ID: 14, + Name: 'Laurence Johnson' + }, + { + Age: 25, + Employees: [ + { + Age: 39, + HireDate: new Date(2010, 3, 22), + ID: 13, + Name: 'Trevor Ashworth' + } + ], + HireDate: new Date(2017, 11, 9), + ID: 5, + Name: 'Elizabeth Richards' + }], + HireDate: new Date(2014, 1, 22), + ID: 4, + Name: 'Ana Sanders' + }, + { + Age: 49, + Employees: [ + { + Age: 44, + Employees: [], + HireDate: new Date(2014, 4, 4), + ID: 17, + Name: 'Antonio Moreno' + }], + HireDate: new Date(2014, 1, 22), + ID: 18, + Name: 'Victoria Lincoln' + }, + { + Age: 61, + Employees: [ + { + Age: 50, + Employees: [ + { + Age: 25, + Employees: [], + HireDate: new Date(2017, 11, 9), + ID: 15, + Name: 'Patricia Simpson' + }, + { + Age: 39, + HireDate: new Date(2010, 3, 22), + ID: 9, + Name: 'Francisco Chang' + }, + { + Age: 25, + HireDate: new Date(2018, 3, 18), + ID: 16, + Name: 'Peter Lewis' + } + ], + HireDate: new Date(2007, 11, 18), + ID: 7, + Name: 'Pedro Rodriguez' + }, + { + Age: 27, + HireDate: new Date(2016, 2, 19), + ID: 8, + Name: 'Casey Harper' + }], + HireDate: new Date(2010, 1, 1), + ID: 10, + Name: 'Yang Wang' + } +]; diff --git a/tests/treegrid/src/app/tree-grid-childdatakey-sample/tree-grid-childdatakey-sample.component.html b/tests/treegrid/src/app/tree-grid-childdatakey-sample/tree-grid-childdatakey-sample.component.html new file mode 100644 index 000000000..e7880eef7 --- /dev/null +++ b/tests/treegrid/src/app/tree-grid-childdatakey-sample/tree-grid-childdatakey-sample.component.html @@ -0,0 +1,32 @@ +
+ + + + Employees + + + + + Export to Excel + Export to CSV + + + + + + + + + + + + + + +
diff --git a/tests/treegrid/src/app/tree-grid-childdatakey-sample/tree-grid-childdatakey-sample.component.scss b/tests/treegrid/src/app/tree-grid-childdatakey-sample/tree-grid-childdatakey-sample.component.scss new file mode 100644 index 000000000..2649777ff --- /dev/null +++ b/tests/treegrid/src/app/tree-grid-childdatakey-sample/tree-grid-childdatakey-sample.component.scss @@ -0,0 +1,3 @@ +.grid__wrapper { + margin: 15px; +} diff --git a/tests/treegrid/src/app/tree-grid-childdatakey-sample/tree-grid-childdatakey-sample.component.ts b/tests/treegrid/src/app/tree-grid-childdatakey-sample/tree-grid-childdatakey-sample.component.ts new file mode 100644 index 000000000..99bb75fc3 --- /dev/null +++ b/tests/treegrid/src/app/tree-grid-childdatakey-sample/tree-grid-childdatakey-sample.component.ts @@ -0,0 +1,58 @@ +import { Component, OnInit } from '@angular/core'; +import { GridSelectionMode, IColumnExportingEventArgs, IgxCsvExporterService, IgxExcelExporterService } from 'igniteui-angular'; +import { EMPLOYEE_DATA } from './data'; + +@Component({ + selector: 'app-tree-grid-childdatakey-sample', + styleUrls: ['./tree-grid-childdatakey-sample.component.scss'], + templateUrl: './tree-grid-childdatakey-sample.component.html' +}) +export class TreeGridChilddatakeySampleComponent implements OnInit { + public localData: any[]; + public selectionMode: GridSelectionMode = 'multiple'; + constructor(private excelExporter: IgxExcelExporterService, private csvExporter: IgxCsvExporterService) { + const skipColumnExport = (eventArgs: IColumnExportingEventArgs) => { + eventArgs.cancel = eventArgs.header === 'Performance'; + }; + + this.excelExporter.columnExporting.subscribe(skipColumnExport); + this.csvExporter.columnExporting.subscribe(skipColumnExport); + } + + public ngOnInit() { + const employees = EMPLOYEE_DATA; + for (const employee of employees) { + this.getPerformance(employee); + } + this.localData = employees; + } + + public getPerformance(employee: any): any { + employee['Performance'] = this.getPerformanceData(12); + const hasEmployees = employee.Employees === undefined; + if (hasEmployees) { + return employee; + } else { + for (const employer of employee.Employees) { + this.getPerformance(employer); + } + } + } + + public getPerformanceData(weeks?: number): any[] { + if (weeks === undefined) { + weeks = 20; + } + const performance: any[] = []; + for (let w = 0; w < weeks; w++) { + const value = this.getRandomNumber(0, 100); + // eslint-disable-next-line @typescript-eslint/naming-convention + performance.push({Points: value, Week: w}); + } + return performance; + } + + public getRandomNumber(min: number, max: number): number { + return Math.round(min + Math.random() * (max - min)); + } +} diff --git a/tests/treegrid/src/environments/environment.prod.ts b/tests/treegrid/src/environments/environment.prod.ts new file mode 100644 index 000000000..c9669790b --- /dev/null +++ b/tests/treegrid/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true, +}; diff --git a/tests/treegrid/src/environments/environment.ts b/tests/treegrid/src/environments/environment.ts new file mode 100644 index 000000000..66998ae9a --- /dev/null +++ b/tests/treegrid/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false, +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/plugins/zone-error'; // Included with Angular CLI. diff --git a/tests/treegrid/src/index.html b/tests/treegrid/src/index.html new file mode 100644 index 000000000..44cb36c74 --- /dev/null +++ b/tests/treegrid/src/index.html @@ -0,0 +1,31 @@ + + + + + + + + + $OG_TITLE + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/treegrid/src/main.ts b/tests/treegrid/src/main.ts new file mode 100644 index 000000000..551d91605 --- /dev/null +++ b/tests/treegrid/src/main.ts @@ -0,0 +1,16 @@ +import './polyfills'; + +import { enableProdMode } from '@angular/core'; +import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; + +import { AppModule } from './app/app.module'; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // Ensure Angular destroys itself on hot reloads. + if (window['ngRef']) { + window['ngRef'].destroy(); + } + window['ngRef'] = ref; + + // Otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/tests/treegrid/src/polyfills.ts b/tests/treegrid/src/polyfills.ts new file mode 100644 index 000000000..665b7dacb --- /dev/null +++ b/tests/treegrid/src/polyfills.ts @@ -0,0 +1,58 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called 'evergreen' browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +//import 'core-js/es7/object'; + +//import 'core-js/es7/array'; // for Array.includes() // Run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +//import 'core-js/es6/reflect'; + +/* Evergreen browsers require these. */ +// Used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +//import 'core-js/es7/reflect'; // Run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import 'hammerjs/hammer'; +import 'zone.js'; // Included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import 'intl'; // Run `npm install --save intl`. +// import 'intl/locale-data/jsonp/de'; +/** + * Need to import at least one locale-data with intl. + */ +// import 'intl/locale-data/jsonp/en'; diff --git a/tests/treegrid/src/styles.scss b/tests/treegrid/src/styles.scss new file mode 100644 index 000000000..aae2eec21 --- /dev/null +++ b/tests/treegrid/src/styles.scss @@ -0,0 +1,49 @@ +@use 'igniteui-angular/theming' as *; +@use 'variables' as *; +@use 'app-layout'; +/* autoprefixer grid: on */ +html, +body { + height: 100%; + overflow: hidden; + margin: 0; +} +@include core(); +@include typography(); +@include theme( + $palette: $palette, + $schema: $schema +); +:root { + @include palette($palette); +} +.light-theme { + @include light-theme($palette); +} +.dark-theme { + background: #333; + color: #fff; + @include dark-theme( + $palette: $green-palette + ); + .grid-chart-contextmenu-wrapper { + @include fluent-dark-theme($fluent-excel-palette); + } + // remove this workaround after resolving https://github.com/IgniteUI/igniteui-angular/issues/13039 + igx-grid, + igx-hierarchical-grid, + igx-pivot-grid, + igx-tree-grid { + --igx-chip-disabled-background: #616161; + --igx-chip-disabled-border-color: #616161; + --igx-chip-disabled-text-color: #BDBDBD; + } +} +.fin-dark-theme { + @include dark-theme($green-palette); + background: #333; + + ::-moz-placeholder { + opacity: 1; + } +} \ No newline at end of file diff --git a/tests/treegrid/tsconfig.app.json b/tests/treegrid/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/tests/treegrid/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/tests/treegrid/tsconfig.json b/tests/treegrid/tsconfig.json new file mode 100644 index 000000000..3e90bf364 --- /dev/null +++ b/tests/treegrid/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": true, + "declaration": false, + "downlevelIteration": true, + "experimentalDecorators": true, + "module": "esnext", + "moduleResolution": "node", + "importHelpers": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file From e80cf60ce8509c1ea4f0e39c9c2933d589c28ee7 Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Mon, 3 Jun 2024 15:54:42 -0400 Subject: [PATCH 072/154] test CS config (#178) * test avatar * test CS config --- tests/avatar-sample-3/.codesandbox/Dockerfile | 1 + tests/avatar-sample-3/.codesandbox/tasks.json | 17 +++ tests/avatar-sample-3/.stackblitzrc | 1 + tests/avatar-sample-3/angular.json | 110 ++++++++++++++++++ tests/avatar-sample-3/package.json | 28 +++++ tests/avatar-sample-3/src/_app-layout.scss | 84 +++++++++++++ tests/avatar-sample-3/src/_variables.scss | 19 +++ .../src/app/app.component.html | 1 + .../src/app/app.component.scss | 0 .../avatar-sample-3/src/app/app.component.ts | 8 ++ tests/avatar-sample-3/src/app/app.module.ts | 26 +++++ .../avatar-sample-3.component.html | 11 ++ .../avatar-sample-3.component.scss | 22 ++++ .../avatar-sample-3.component.ts | 12 ++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ tests/avatar-sample-3/src/index.html | 21 ++++ tests/avatar-sample-3/src/main.ts | 16 +++ tests/avatar-sample-3/src/polyfills.ts | 58 +++++++++ tests/avatar-sample-3/src/styles.scss | 47 ++++++++ tests/avatar-sample-3/tsconfig.app.json | 10 ++ tests/avatar-sample-3/tsconfig.json | 25 ++++ tests/donut-ava/.codesandbox/Dockerfile | 1 + tests/donut-ava/.codesandbox/tasks.json | 17 +++ tests/donut-ava/.stackblitzrc | 1 + tests/donut-ava/angular.json | 108 +++++++++++++++++ tests/donut-ava/package.json | 45 +++++++ tests/donut-ava/src/EnergyGlobalDemand.ts | 51 ++++++++ tests/donut-ava/src/app.component.html | 33 ++++++ tests/donut-ava/src/app.component.scss | 3 + tests/donut-ava/src/app.component.ts | 39 +++++++ tests/donut-ava/src/app.module.ts | 26 +++++ .../src/config/tsconfig-es5.app.json | 6 + tests/donut-ava/src/config/tsconfig.app.json | 12 ++ tests/donut-ava/src/config/tsconfig.base.json | 24 ++++ tests/donut-ava/src/config/tsconfig.spec.json | 19 +++ .../donut-ava/src/config/tsconfig.worker.json | 14 +++ .../src/environments/environment.prod.ts | 3 + .../donut-ava/src/environments/environment.ts | 16 +++ tests/donut-ava/src/index.html | 23 ++++ tests/donut-ava/src/main.ts | 15 +++ tests/donut-ava/src/polyfills.ts | 65 +++++++++++ tests/donut-ava/src/styles.scss | 9 ++ tests/donut-ava/src/typings.d.ts | 5 + tests/donut-ava/tsconfig.app.json | 10 ++ tests/donut-ava/tsconfig.json | 25 ++++ tests/donut-ava/tslint.json | 31 +++++ tests/donut-upgrade/.stackblitzrc | 1 + tests/donut-upgrade/ReadMe.md | 58 +++++++++ tests/donut-upgrade/angular.json | 106 +++++++++++++++++ tests/donut-upgrade/package.json | 45 +++++++ tests/donut-upgrade/sandbox.config.json | 5 + tests/donut-upgrade/src/EnergyGlobalDemand.ts | 51 ++++++++ tests/donut-upgrade/src/app.component.html | 33 ++++++ tests/donut-upgrade/src/app.component.scss | 3 + tests/donut-upgrade/src/app.component.ts | 39 +++++++ tests/donut-upgrade/src/app.module.ts | 26 +++++ .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 ++ .../src/config/tsconfig.base.json | 24 ++++ .../src/config/tsconfig.spec.json | 19 +++ .../src/config/tsconfig.worker.json | 14 +++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ tests/donut-upgrade/src/index.html | 23 ++++ tests/donut-upgrade/src/main.ts | 15 +++ tests/donut-upgrade/src/polyfills.ts | 65 +++++++++++ tests/donut-upgrade/src/styles.scss | 9 ++ tests/donut-upgrade/src/typings.d.ts | 5 + tests/donut-upgrade/tsconfig.json | 21 ++++ tests/donut-upgrade/tslint.json | 31 +++++ tests/donut3/angular.json | 26 +++-- 72 files changed, 1781 insertions(+), 12 deletions(-) create mode 100644 tests/avatar-sample-3/.codesandbox/Dockerfile create mode 100644 tests/avatar-sample-3/.codesandbox/tasks.json create mode 100644 tests/avatar-sample-3/.stackblitzrc create mode 100644 tests/avatar-sample-3/angular.json create mode 100644 tests/avatar-sample-3/package.json create mode 100644 tests/avatar-sample-3/src/_app-layout.scss create mode 100644 tests/avatar-sample-3/src/_variables.scss create mode 100644 tests/avatar-sample-3/src/app/app.component.html create mode 100644 tests/avatar-sample-3/src/app/app.component.scss create mode 100644 tests/avatar-sample-3/src/app/app.component.ts create mode 100644 tests/avatar-sample-3/src/app/app.module.ts create mode 100644 tests/avatar-sample-3/src/app/avatar-sample-3/avatar-sample-3.component.html create mode 100644 tests/avatar-sample-3/src/app/avatar-sample-3/avatar-sample-3.component.scss create mode 100644 tests/avatar-sample-3/src/app/avatar-sample-3/avatar-sample-3.component.ts create mode 100644 tests/avatar-sample-3/src/environments/environment.prod.ts create mode 100644 tests/avatar-sample-3/src/environments/environment.ts create mode 100644 tests/avatar-sample-3/src/index.html create mode 100644 tests/avatar-sample-3/src/main.ts create mode 100644 tests/avatar-sample-3/src/polyfills.ts create mode 100644 tests/avatar-sample-3/src/styles.scss create mode 100644 tests/avatar-sample-3/tsconfig.app.json create mode 100644 tests/avatar-sample-3/tsconfig.json create mode 100644 tests/donut-ava/.codesandbox/Dockerfile create mode 100644 tests/donut-ava/.codesandbox/tasks.json create mode 100644 tests/donut-ava/.stackblitzrc create mode 100644 tests/donut-ava/angular.json create mode 100644 tests/donut-ava/package.json create mode 100644 tests/donut-ava/src/EnergyGlobalDemand.ts create mode 100644 tests/donut-ava/src/app.component.html create mode 100644 tests/donut-ava/src/app.component.scss create mode 100644 tests/donut-ava/src/app.component.ts create mode 100644 tests/donut-ava/src/app.module.ts create mode 100644 tests/donut-ava/src/config/tsconfig-es5.app.json create mode 100644 tests/donut-ava/src/config/tsconfig.app.json create mode 100644 tests/donut-ava/src/config/tsconfig.base.json create mode 100644 tests/donut-ava/src/config/tsconfig.spec.json create mode 100644 tests/donut-ava/src/config/tsconfig.worker.json create mode 100644 tests/donut-ava/src/environments/environment.prod.ts create mode 100644 tests/donut-ava/src/environments/environment.ts create mode 100644 tests/donut-ava/src/index.html create mode 100644 tests/donut-ava/src/main.ts create mode 100644 tests/donut-ava/src/polyfills.ts create mode 100644 tests/donut-ava/src/styles.scss create mode 100644 tests/donut-ava/src/typings.d.ts create mode 100644 tests/donut-ava/tsconfig.app.json create mode 100644 tests/donut-ava/tsconfig.json create mode 100644 tests/donut-ava/tslint.json create mode 100644 tests/donut-upgrade/.stackblitzrc create mode 100644 tests/donut-upgrade/ReadMe.md create mode 100644 tests/donut-upgrade/angular.json create mode 100644 tests/donut-upgrade/package.json create mode 100644 tests/donut-upgrade/sandbox.config.json create mode 100644 tests/donut-upgrade/src/EnergyGlobalDemand.ts create mode 100644 tests/donut-upgrade/src/app.component.html create mode 100644 tests/donut-upgrade/src/app.component.scss create mode 100644 tests/donut-upgrade/src/app.component.ts create mode 100644 tests/donut-upgrade/src/app.module.ts create mode 100644 tests/donut-upgrade/src/config/tsconfig-es5.app.json create mode 100644 tests/donut-upgrade/src/config/tsconfig.app.json create mode 100644 tests/donut-upgrade/src/config/tsconfig.base.json create mode 100644 tests/donut-upgrade/src/config/tsconfig.spec.json create mode 100644 tests/donut-upgrade/src/config/tsconfig.worker.json create mode 100644 tests/donut-upgrade/src/environments/environment.prod.ts create mode 100644 tests/donut-upgrade/src/environments/environment.ts create mode 100644 tests/donut-upgrade/src/index.html create mode 100644 tests/donut-upgrade/src/main.ts create mode 100644 tests/donut-upgrade/src/polyfills.ts create mode 100644 tests/donut-upgrade/src/styles.scss create mode 100644 tests/donut-upgrade/src/typings.d.ts create mode 100644 tests/donut-upgrade/tsconfig.json create mode 100644 tests/donut-upgrade/tslint.json diff --git a/tests/avatar-sample-3/.codesandbox/Dockerfile b/tests/avatar-sample-3/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/tests/avatar-sample-3/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/tests/avatar-sample-3/.codesandbox/tasks.json b/tests/avatar-sample-3/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/tests/avatar-sample-3/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/tests/avatar-sample-3/.stackblitzrc b/tests/avatar-sample-3/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/tests/avatar-sample-3/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/tests/avatar-sample-3/angular.json b/tests/avatar-sample-3/angular.json new file mode 100644 index 000000000..f2ace893e --- /dev/null +++ b/tests/avatar-sample-3/angular.json @@ -0,0 +1,110 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "example-app": { + "projectType": "application", + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/example-app", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": ["src/favicon.ico", "src/assets"], + "styles": ["src/styles.scss"], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + }, + "scripts": [] + }, + "configurations": { + "production": { + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ], + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all" + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "browserTarget": "example-app:build:production" + }, + "development": { + "browserTarget": "example-app:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "browserTarget": "example-app:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "inlineStyleLanguage": "scss", + "assets": ["src/favicon.ico", "src/assets"], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + }, + "styles": ["src/styles.scss", "src/theme.scss"], + "scripts": [] + } + } + } + } + }, + "defaultProject": "example-app", + "cli": { + "analytics": false + } +} diff --git a/tests/avatar-sample-3/package.json b/tests/avatar-sample-3/package.json new file mode 100644 index 000000000..3da0b1248 --- /dev/null +++ b/tests/avatar-sample-3/package.json @@ -0,0 +1,28 @@ +{ + "dependencies": { + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/router": "^17.2.1", + "@types/hammerjs": "^2.0.39", + "hammerjs": "^2.0.8", + "igniteui-angular": "17.2.0", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", + "jasmine-core": "5.1.1", + "ts-node": "10.9.1", + "typescript": "5.3.3" + } +} \ No newline at end of file diff --git a/tests/avatar-sample-3/src/_app-layout.scss b/tests/avatar-sample-3/src/_app-layout.scss new file mode 100644 index 000000000..b5329f55b --- /dev/null +++ b/tests/avatar-sample-3/src/_app-layout.scss @@ -0,0 +1,84 @@ +.sample-wrapper { + width: inherit; + position: relative; + height: 100%; + margin: 0 auto; + background: transparent; +} + +.sample-content { + display: flex; + flex-grow: 1; + flex-flow: row wrap; + justify-content: flex-start; + padding: 0; + -webkit-animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both; + -moz-animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both; + animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both; +} + +.sample-column { + display: flex; + flex-flow: column nowrap; + flex: 1 0 25%; + align-content: flex-start; + margin: 16px; + min-width: 280px; +} + +.sample-title { + color: #0375be; + margin-bottom: 12px; + margin-top: 12px; +} + +.sample-title .light { + font-weight: 400; +} + +.sample-description { + font-size: 14px; + font-weight: normal; + color: #717171; +} + +@-webkit-keyframes color-change-2x { + 0% { + background: #fdf8f0; + } + 100% { + background: #f6e7ec; + } +} + +@keyframes color-change-2x { + 0% { + background: #fdf8f0; + } + 100% { + background: #f6e7ec; + } +} + +@-webkit-keyframes fade-in { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + +@keyframes fade-in { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + +.headerAlignSyle { + text-align: right !important; +} + diff --git a/tests/avatar-sample-3/src/_variables.scss b/tests/avatar-sample-3/src/_variables.scss new file mode 100644 index 000000000..cf9f1048b --- /dev/null +++ b/tests/avatar-sample-3/src/_variables.scss @@ -0,0 +1,19 @@ +@use 'igniteui-angular/theming' as *; +@forward 'igniteui-angular/theming'; + +$palette: $light-material-palette; +$schema: $light-material-schema; + +$default-palette: $palette; + +$green-palette: palette( + $primary: #09f, + $secondary: #72da67, + $surface: #333, + $info: #1377d5, + $success: #4eb862, + $warn: #fbb13c, + $error: #ff134a, +); + +$gray-btn-color: color($green-palette, 'gray', 800); diff --git a/tests/avatar-sample-3/src/app/app.component.html b/tests/avatar-sample-3/src/app/app.component.html new file mode 100644 index 000000000..cf95400ac --- /dev/null +++ b/tests/avatar-sample-3/src/app/app.component.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tests/avatar-sample-3/src/app/app.component.scss b/tests/avatar-sample-3/src/app/app.component.scss new file mode 100644 index 000000000..e69de29bb diff --git a/tests/avatar-sample-3/src/app/app.component.ts b/tests/avatar-sample-3/src/app/app.component.ts new file mode 100644 index 000000000..0fd0d7e3a --- /dev/null +++ b/tests/avatar-sample-3/src/app/app.component.ts @@ -0,0 +1,8 @@ +import { Component } from "@angular/core"; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html" +}) +export class AppComponent {} \ No newline at end of file diff --git a/tests/avatar-sample-3/src/app/app.module.ts b/tests/avatar-sample-3/src/app/app.module.ts new file mode 100644 index 000000000..c84e79de0 --- /dev/null +++ b/tests/avatar-sample-3/src/app/app.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; +import { IgxAvatarModule } from "igniteui-angular"; +import { AvatarSample3Component } from "./avatar-sample-3/avatar-sample-3.component"; + + + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent, + AvatarSample3Component +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + FormsModule, + IgxAvatarModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/tests/avatar-sample-3/src/app/avatar-sample-3/avatar-sample-3.component.html b/tests/avatar-sample-3/src/app/avatar-sample-3/avatar-sample-3.component.html new file mode 100644 index 000000000..3e6532b86 --- /dev/null +++ b/tests/avatar-sample-3/src/app/avatar-sample-3/avatar-sample-3.component.html @@ -0,0 +1,11 @@ +
+
+ +
+
+ +
+
+ +
+
diff --git a/tests/avatar-sample-3/src/app/avatar-sample-3/avatar-sample-3.component.scss b/tests/avatar-sample-3/src/app/avatar-sample-3/avatar-sample-3.component.scss new file mode 100644 index 000000000..1ae4d3606 --- /dev/null +++ b/tests/avatar-sample-3/src/app/avatar-sample-3/avatar-sample-3.component.scss @@ -0,0 +1,22 @@ +.avatars-wrapper { + display: flex; + flex-flow: row wrap; +} + +.avatar-sample { + display: flex; + flex: 1 0 30%; + width: 88px; + height: 88px; + justify-content: center; + align-items: center; + margin: 15px 0; +} + +.avatar-sample.initials .igx-avatar{ + background: #e41c77; +} + +.avatar-sample.icon .igx-avatar{ + background: #9e9e9e; +} diff --git a/tests/avatar-sample-3/src/app/avatar-sample-3/avatar-sample-3.component.ts b/tests/avatar-sample-3/src/app/avatar-sample-3/avatar-sample-3.component.ts new file mode 100644 index 000000000..974d082ac --- /dev/null +++ b/tests/avatar-sample-3/src/app/avatar-sample-3/avatar-sample-3.component.ts @@ -0,0 +1,12 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-avatar-sample-3', + styleUrls: ['./avatar-sample-3.component.scss'], + templateUrl: './avatar-sample-3.component.html' +}) +export class AvatarSample3Component { + + constructor() { } + +} diff --git a/tests/avatar-sample-3/src/environments/environment.prod.ts b/tests/avatar-sample-3/src/environments/environment.prod.ts new file mode 100644 index 000000000..c9669790b --- /dev/null +++ b/tests/avatar-sample-3/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true, +}; diff --git a/tests/avatar-sample-3/src/environments/environment.ts b/tests/avatar-sample-3/src/environments/environment.ts new file mode 100644 index 000000000..66998ae9a --- /dev/null +++ b/tests/avatar-sample-3/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false, +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/plugins/zone-error'; // Included with Angular CLI. diff --git a/tests/avatar-sample-3/src/index.html b/tests/avatar-sample-3/src/index.html new file mode 100644 index 000000000..9920eced3 --- /dev/null +++ b/tests/avatar-sample-3/src/index.html @@ -0,0 +1,21 @@ + + + + + + Angular Demos + + + + + + + + + + + + + + + diff --git a/tests/avatar-sample-3/src/main.ts b/tests/avatar-sample-3/src/main.ts new file mode 100644 index 000000000..551d91605 --- /dev/null +++ b/tests/avatar-sample-3/src/main.ts @@ -0,0 +1,16 @@ +import './polyfills'; + +import { enableProdMode } from '@angular/core'; +import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; + +import { AppModule } from './app/app.module'; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // Ensure Angular destroys itself on hot reloads. + if (window['ngRef']) { + window['ngRef'].destroy(); + } + window['ngRef'] = ref; + + // Otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/tests/avatar-sample-3/src/polyfills.ts b/tests/avatar-sample-3/src/polyfills.ts new file mode 100644 index 000000000..665b7dacb --- /dev/null +++ b/tests/avatar-sample-3/src/polyfills.ts @@ -0,0 +1,58 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called 'evergreen' browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +//import 'core-js/es7/object'; + +//import 'core-js/es7/array'; // for Array.includes() // Run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +//import 'core-js/es6/reflect'; + +/* Evergreen browsers require these. */ +// Used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +//import 'core-js/es7/reflect'; // Run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import 'hammerjs/hammer'; +import 'zone.js'; // Included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import 'intl'; // Run `npm install --save intl`. +// import 'intl/locale-data/jsonp/de'; +/** + * Need to import at least one locale-data with intl. + */ +// import 'intl/locale-data/jsonp/en'; diff --git a/tests/avatar-sample-3/src/styles.scss b/tests/avatar-sample-3/src/styles.scss new file mode 100644 index 000000000..82df00bb3 --- /dev/null +++ b/tests/avatar-sample-3/src/styles.scss @@ -0,0 +1,47 @@ +@use 'igniteui-angular/theming' as *; +@use 'variables' as *; +@use 'app-layout'; + +/* autoprefixer grid: on */ +html, +body { + height: 100%; + overflow: hidden; + margin: 0; +} + +@include core(); +@include typography(); +@include theme( + $palette: $palette, + $schema: $schema +); + +:root { + @include palette($palette); +} + +.light-theme { + @include light-theme($palette); +} + +.dark-theme { + background: #333; + color: #fff; + @include dark-theme( + $palette: $green-palette + ); + + .grid-chart-contextmenu-wrapper { + @include fluent-dark-theme($fluent-excel-palette); + } +} + +.fin-dark-theme { + @include dark-theme($green-palette); + background: #333; + + ::-moz-placeholder { + opacity: 1; + } +} diff --git a/tests/avatar-sample-3/tsconfig.app.json b/tests/avatar-sample-3/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/tests/avatar-sample-3/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/tests/avatar-sample-3/tsconfig.json b/tests/avatar-sample-3/tsconfig.json new file mode 100644 index 000000000..3e90bf364 --- /dev/null +++ b/tests/avatar-sample-3/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": true, + "declaration": false, + "downlevelIteration": true, + "experimentalDecorators": true, + "module": "esnext", + "moduleResolution": "node", + "importHelpers": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/tests/donut-ava/.codesandbox/Dockerfile b/tests/donut-ava/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/tests/donut-ava/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/tests/donut-ava/.codesandbox/tasks.json b/tests/donut-ava/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/tests/donut-ava/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/tests/donut-ava/.stackblitzrc b/tests/donut-ava/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/tests/donut-ava/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/tests/donut-ava/angular.json b/tests/donut-ava/angular.json new file mode 100644 index 000000000..b2ae5957d --- /dev/null +++ b/tests/donut-ava/angular.json @@ -0,0 +1,108 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "projectType": "application", + + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + }, + "root": "", + "sourceRoot": "src" + } + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + +} diff --git a/tests/donut-ava/package.json b/tests/donut-ava/package.json new file mode 100644 index 000000000..7f8b3e6d4 --- /dev/null +++ b/tests/donut-ava/package.json @@ -0,0 +1,45 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/router": "^17.2.1", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "10.9.1", + "tslint": "~6.1.3", + "typescript": "5.3.3" + } +} diff --git a/tests/donut-ava/src/EnergyGlobalDemand.ts b/tests/donut-ava/src/EnergyGlobalDemand.ts new file mode 100644 index 000000000..922fcf7a9 --- /dev/null +++ b/tests/donut-ava/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/tests/donut-ava/src/app.component.html b/tests/donut-ava/src/app.component.html new file mode 100644 index 000000000..3c78e15c6 --- /dev/null +++ b/tests/donut-ava/src/app.component.html @@ -0,0 +1,33 @@ +
+
+ Global Electricity Demand by Energy Use +
+
+ + +
+
+ + + + +
+
diff --git a/tests/donut-ava/src/app.component.scss b/tests/donut-ava/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/tests/donut-ava/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/tests/donut-ava/src/app.component.ts b/tests/donut-ava/src/app.component.ts new file mode 100644 index 000000000..d7720aa4b --- /dev/null +++ b/tests/donut-ava/src/app.component.ts @@ -0,0 +1,39 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { IgxItemLegendComponent, IgxDoughnutChartComponent, IgxRingSeriesComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxItemLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDoughnutChartComponent + @ViewChild("series", { static: true } ) + private series: IgxRingSeriesComponent + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/tests/donut-ava/src/app.module.ts b/tests/donut-ava/src/app.module.ts new file mode 100644 index 000000000..7d4332c43 --- /dev/null +++ b/tests/donut-ava/src/app.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxItemLegendModule, IgxDoughnutChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxItemLegendModule, + IgxDoughnutChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/tests/donut-ava/src/config/tsconfig-es5.app.json b/tests/donut-ava/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/tests/donut-ava/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/tests/donut-ava/src/config/tsconfig.app.json b/tests/donut-ava/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/tests/donut-ava/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/tests/donut-ava/src/config/tsconfig.base.json b/tests/donut-ava/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/tests/donut-ava/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/tests/donut-ava/src/config/tsconfig.spec.json b/tests/donut-ava/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/tests/donut-ava/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/tests/donut-ava/src/config/tsconfig.worker.json b/tests/donut-ava/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/tests/donut-ava/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/tests/donut-ava/src/environments/environment.prod.ts b/tests/donut-ava/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/tests/donut-ava/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/tests/donut-ava/src/environments/environment.ts b/tests/donut-ava/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/tests/donut-ava/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/tests/donut-ava/src/index.html b/tests/donut-ava/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/tests/donut-ava/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/tests/donut-ava/src/main.ts b/tests/donut-ava/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/tests/donut-ava/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/tests/donut-ava/src/polyfills.ts b/tests/donut-ava/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/tests/donut-ava/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/tests/donut-ava/src/styles.scss b/tests/donut-ava/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/tests/donut-ava/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/tests/donut-ava/src/typings.d.ts b/tests/donut-ava/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/tests/donut-ava/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/tests/donut-ava/tsconfig.app.json b/tests/donut-ava/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/tests/donut-ava/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/tests/donut-ava/tsconfig.json b/tests/donut-ava/tsconfig.json new file mode 100644 index 000000000..3e90bf364 --- /dev/null +++ b/tests/donut-ava/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": true, + "declaration": false, + "downlevelIteration": true, + "experimentalDecorators": true, + "module": "esnext", + "moduleResolution": "node", + "importHelpers": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/tests/donut-ava/tslint.json b/tests/donut-ava/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/tests/donut-ava/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/tests/donut-upgrade/.stackblitzrc b/tests/donut-upgrade/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/tests/donut-upgrade/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/tests/donut-upgrade/ReadMe.md b/tests/donut-upgrade/ReadMe.md new file mode 100644 index 000000000..88e6723a3 --- /dev/null +++ b/tests/donut-upgrade/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Legend feature using [DoughnutChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/doughnut-chart/legend +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/tests/donut-upgrade/angular.json b/tests/donut-upgrade/angular.json new file mode 100644 index 000000000..11ffb8c9c --- /dev/null +++ b/tests/donut-upgrade/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/tests/donut-upgrade/package.json b/tests/donut-upgrade/package.json new file mode 100644 index 000000000..a10e416ab --- /dev/null +++ b/tests/donut-upgrade/package.json @@ -0,0 +1,45 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/router": "^17.2.1", + "@types/hammerjs": "^2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "10.9.1", + "tslint": "~6.1.3", + "typescript": "5.3.3" + } +} diff --git a/tests/donut-upgrade/sandbox.config.json b/tests/donut-upgrade/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/tests/donut-upgrade/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/tests/donut-upgrade/src/EnergyGlobalDemand.ts b/tests/donut-upgrade/src/EnergyGlobalDemand.ts new file mode 100644 index 000000000..922fcf7a9 --- /dev/null +++ b/tests/donut-upgrade/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/tests/donut-upgrade/src/app.component.html b/tests/donut-upgrade/src/app.component.html new file mode 100644 index 000000000..3c78e15c6 --- /dev/null +++ b/tests/donut-upgrade/src/app.component.html @@ -0,0 +1,33 @@ +
+
+ Global Electricity Demand by Energy Use +
+
+ + +
+
+ + + + +
+
diff --git a/tests/donut-upgrade/src/app.component.scss b/tests/donut-upgrade/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/tests/donut-upgrade/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/tests/donut-upgrade/src/app.component.ts b/tests/donut-upgrade/src/app.component.ts new file mode 100644 index 000000000..d7720aa4b --- /dev/null +++ b/tests/donut-upgrade/src/app.component.ts @@ -0,0 +1,39 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { IgxItemLegendComponent, IgxDoughnutChartComponent, IgxRingSeriesComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxItemLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDoughnutChartComponent + @ViewChild("series", { static: true } ) + private series: IgxRingSeriesComponent + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/tests/donut-upgrade/src/app.module.ts b/tests/donut-upgrade/src/app.module.ts new file mode 100644 index 000000000..7d4332c43 --- /dev/null +++ b/tests/donut-upgrade/src/app.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxItemLegendModule, IgxDoughnutChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxItemLegendModule, + IgxDoughnutChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/tests/donut-upgrade/src/config/tsconfig-es5.app.json b/tests/donut-upgrade/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/tests/donut-upgrade/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/tests/donut-upgrade/src/config/tsconfig.app.json b/tests/donut-upgrade/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/tests/donut-upgrade/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/tests/donut-upgrade/src/config/tsconfig.base.json b/tests/donut-upgrade/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/tests/donut-upgrade/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/tests/donut-upgrade/src/config/tsconfig.spec.json b/tests/donut-upgrade/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/tests/donut-upgrade/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/tests/donut-upgrade/src/config/tsconfig.worker.json b/tests/donut-upgrade/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/tests/donut-upgrade/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/tests/donut-upgrade/src/environments/environment.prod.ts b/tests/donut-upgrade/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/tests/donut-upgrade/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/tests/donut-upgrade/src/environments/environment.ts b/tests/donut-upgrade/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/tests/donut-upgrade/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/tests/donut-upgrade/src/index.html b/tests/donut-upgrade/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/tests/donut-upgrade/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/tests/donut-upgrade/src/main.ts b/tests/donut-upgrade/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/tests/donut-upgrade/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/tests/donut-upgrade/src/polyfills.ts b/tests/donut-upgrade/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/tests/donut-upgrade/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/tests/donut-upgrade/src/styles.scss b/tests/donut-upgrade/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/tests/donut-upgrade/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/tests/donut-upgrade/src/typings.d.ts b/tests/donut-upgrade/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/tests/donut-upgrade/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/tests/donut-upgrade/tsconfig.json b/tests/donut-upgrade/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/tests/donut-upgrade/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/tests/donut-upgrade/tslint.json b/tests/donut-upgrade/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/tests/donut-upgrade/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/tests/donut3/angular.json b/tests/donut3/angular.json index 11ffb8c9c..b2ae5957d 100644 --- a/tests/donut3/angular.json +++ b/tests/donut3/angular.json @@ -4,9 +4,19 @@ "newProjectRoot": "projects", "projects": { "demo": { - "root": "", - "sourceRoot": "src", - "projectType": "application", + "projectType": "application", + + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + }, + "root": "", + "sourceRoot": "src" + } "architect": { "build": { "builder": "@angular-devkit/build-angular:browser", @@ -94,13 +104,5 @@ } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } - } + } From 3c94702bc6150f1297d613c1cf4ea4557b44d5f1 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Tue, 4 Jun 2024 14:22:00 -0400 Subject: [PATCH 073/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.6.4.1 (#179) Co-authored-by: tfsbuild --- .../annotations-all/package.json | 4 +- .../annotations-callouts/package.json | 4 +- .../annotations-crosshairs/package.json | 4 +- .../annotations-custom/package.json | 4 +- .../annotations-final-value/package.json | 4 +- .../annotations-highlighting/package.json | 4 +- .../src/app.component.html | 6 +- .../area-chart-multiple-sources/package.json | 4 +- .../area-chart-single-source/package.json | 4 +- .../area-chart-styling/package.json | 4 +- .../category-chart/axis-gap/package.json | 4 +- .../axis-gridlines/package.json | 4 +- .../category-chart/axis-inverted/package.json | 4 +- .../category-chart/axis-labels/package.json | 4 +- .../axis-locations/package.json | 4 +- .../category-chart/axis-options/package.json | 4 +- .../category-chart/axis-overlap/package.json | 4 +- .../category-chart/axis-range/package.json | 4 +- .../axis-tickmarks/package.json | 4 +- .../category-chart/axis-titles/package.json | 4 +- .../chart-highlight-filter/package.json | 4 +- .../package.json | 4 +- .../column-chart-single-source/package.json | 4 +- .../column-chart-styling/package.json | 4 +- .../column-chart-with-tooltips/package.json | 4 +- .../custom-selection/package.json | 4 +- .../data-aggregations/package.json | 4 +- .../category-chart/data-filter/package.json | 4 +- .../data-filter/src/ContinentsBirthRate.ts | 105 +++++++++++++++++ .../data-filter/src/app.component.html | 16 +-- .../data-filter/src/app.component.ts | 18 +-- .../package.json | 4 +- .../category-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-positioning/package.json | 4 +- .../category-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 4 +- .../highlighting-behavior/package.json | 4 +- .../src/app.component.html | 1 - .../highlighting-mode/package.json | 4 +- .../highlighting-mode/src/app.component.html | 1 - .../legend-highlighting/package.json | 4 +- .../line-chart-multiple-sources/package.json | 4 +- .../line-chart-single-source/package.json | 4 +- .../line-chart-styling/package.json | 4 +- .../marker-options/package.json | 4 +- .../category-chart/overview/package.json | 4 +- .../point-chart-multiple-sources/package.json | 4 +- .../point-chart-single-source/package.json | 4 +- .../point-chart-styling/package.json | 4 +- .../spline-area-multiple-sources/package.json | 4 +- .../spline-area-single-source/package.json | 4 +- .../spline-area-styling/package.json | 4 +- .../spline-multiple-sources/package.json | 4 +- .../spline-single-source/package.json | 4 +- .../spline-styling/package.json | 4 +- .../step-area-multiple-sources/package.json | 4 +- .../step-area-single-source/package.json | 4 +- .../step-area-styling/package.json | 4 +- .../step-line-multiple-sources/package.json | 4 +- .../step-line-single-source/package.json | 4 +- .../step-line-styling/package.json | 4 +- .../category-chart/value-lines/package.json | 4 +- .../annotations-custom/package.json | 4 +- .../package.json | 4 +- .../axis-label-rotation/package.json | 4 +- .../data-chart/axis-min-max-gap/package.json | 4 +- .../bar-chart-multiple-sources/package.json | 4 +- .../bar-chart-overlapping/package.json | 4 +- .../bar-chart-single-source/package.json | 4 +- .../data-chart/bar-chart-styling/package.json | 4 +- .../callout-layer-styling/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../chart-highlight-filter/package.json | 4 +- .../data-chart/data-legend/package.json | 4 +- .../data-chart/data-tooltip/package.json | 4 +- .../financial-price-series/package.json | 4 +- .../polar-area-chart-styling/package.json | 4 +- .../data-chart/polar-area-chart/package.json | 4 +- .../data-chart/polar-line-chart/package.json | 4 +- .../polar-scatter-chart/package.json | 4 +- .../polar-spline-area-chart/package.json | 4 +- .../polar-spline-chart/package.json | 4 +- .../radial-area-chart-styling/package.json | 4 +- .../data-chart/radial-area-chart/package.json | 4 +- .../radial-column-chart/package.json | 4 +- .../data-chart/radial-line-chart/package.json | 4 +- .../data-chart/radial-pie-chart/package.json | 4 +- .../data-chart/range-area-chart/package.json | 4 +- .../range-column-chart/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../scatter-bubble-chart-styling/package.json | 4 +- .../scatter-line-chart/package.json | 4 +- .../scatter-point-chart/package.json | 4 +- .../scatter-spline-chart/package.json | 4 +- .../stacked-100-area-chart/package.json | 4 +- .../stacked-100-bar-chart/package.json | 4 +- .../stacked-100-column-chart/package.json | 4 +- .../stacked-100-line-chart/package.json | 4 +- .../package.json | 4 +- .../stacked-100-spline-chart/package.json | 4 +- .../stacked-area-chart/package.json | 4 +- .../data-chart/stacked-bar-chart/package.json | 4 +- .../stacked-column-chart/package.json | 4 +- .../src/app.component.html | 2 +- .../stacked-line-chart/package.json | 4 +- .../stacked-spline-area-chart/package.json | 4 +- .../stacked-spline-chart/package.json | 4 +- .../data-chart/transition-event/package.json | 4 +- .../data-chart/waterfall-chart/package.json | 4 +- .../charts/doughnut-chart/legend/package.json | 4 +- .../doughnut-chart/overview/package.json | 4 +- .../charts/doughnut-chart/rings/package.json | 4 +- .../package.json | 4 +- .../src/app.component.ts | 6 +- .../data-legend-styling-props/package.json | 4 +- .../financial-chart/data-legend/package.json | 4 +- .../data-legend/src/app.component.ts | 6 +- .../package.json | 4 +- .../src/app.component.ts | 6 +- .../data-tooltip-styling-props/package.json | 4 +- .../financial-chart/data-tooltip/package.json | 4 +- .../data-tooltip/src/app.component.ts | 6 +- .../format-specifiers/package.json | 4 +- .../format-specifiers/src/app.component.ts | 6 +- .../financial-chart/scrollbars/package.json | 4 +- .../scrollbars/src/app.component.ts | 6 +- samples/charts/pie-chart/legend/package.json | 4 +- samples/charts/pie-chart/others/package.json | 4 +- .../charts/pie-chart/overview/package.json | 4 +- samples/charts/pie-chart/styling/package.json | 4 +- .../sparkline/display-area/package.json | 4 +- .../sparkline/display-column/package.json | 4 +- .../sparkline/display-lines/package.json | 4 +- .../sparkline/display-winloss/package.json | 4 +- samples/charts/sparkline/markers/package.json | 4 +- .../sparkline/normal-range/package.json | 4 +- .../charts/sparkline/trendlines/package.json | 4 +- .../sparkline/unknown-values/package.json | 4 +- .../package.json | 4 +- .../actions-built-in-data-chart/package.json | 4 +- .../charts/toolbar/custom-tool/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- samples/charts/toolbar/theming/package.json | 4 +- .../highlighting-percent-based/.stackblitzrc | 1 + .../highlighting-percent-based/angular.json | 106 ++++++++++++++++++ .../highlighting-percent-based/package.json | 44 ++++++++ .../sandbox.config.json | 5 + .../src/CountryTopUrbanPopData.ts | 78 +++++++++++++ .../src/app.component.html | 27 +++++ .../src/app.component.scss | 3 + .../src/app.component.ts | 46 ++++++++ .../src/app.module.ts | 25 +++++ .../src/config/tsconfig-es5.app.json | 6 + .../src/config/tsconfig.app.json | 12 ++ .../src/config/tsconfig.base.json | 24 ++++ .../src/config/tsconfig.spec.json | 19 ++++ .../src/config/tsconfig.worker.json | 14 +++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../highlighting-percent-based/src/index.html | 23 ++++ .../highlighting-percent-based/src/main.ts | 15 +++ .../src/polyfills.ts | 65 +++++++++++ .../src/styles.scss | 9 ++ .../src/typings.d.ts | 5 + .../highlighting-percent-based/tsconfig.json | 21 ++++ .../highlighting-percent-based/tslint.json | 31 +++++ samples/charts/tree-map/layout/package.json | 4 +- samples/charts/tree-map/overview/package.json | 4 +- samples/charts/tree-map/styling/package.json | 4 +- 174 files changed, 1017 insertions(+), 318 deletions(-) create mode 100644 samples/charts/category-chart/data-filter/src/ContinentsBirthRate.ts create mode 100644 samples/charts/tree-map/highlighting-percent-based/.stackblitzrc create mode 100644 samples/charts/tree-map/highlighting-percent-based/angular.json create mode 100644 samples/charts/tree-map/highlighting-percent-based/package.json create mode 100644 samples/charts/tree-map/highlighting-percent-based/sandbox.config.json create mode 100644 samples/charts/tree-map/highlighting-percent-based/src/CountryTopUrbanPopData.ts create mode 100644 samples/charts/tree-map/highlighting-percent-based/src/app.component.html create mode 100644 samples/charts/tree-map/highlighting-percent-based/src/app.component.scss create mode 100644 samples/charts/tree-map/highlighting-percent-based/src/app.component.ts create mode 100644 samples/charts/tree-map/highlighting-percent-based/src/app.module.ts create mode 100644 samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig-es5.app.json create mode 100644 samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.app.json create mode 100644 samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.base.json create mode 100644 samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.spec.json create mode 100644 samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.worker.json create mode 100644 samples/charts/tree-map/highlighting-percent-based/src/environments/environment.prod.ts create mode 100644 samples/charts/tree-map/highlighting-percent-based/src/environments/environment.ts create mode 100644 samples/charts/tree-map/highlighting-percent-based/src/index.html create mode 100644 samples/charts/tree-map/highlighting-percent-based/src/main.ts create mode 100644 samples/charts/tree-map/highlighting-percent-based/src/polyfills.ts create mode 100644 samples/charts/tree-map/highlighting-percent-based/src/styles.scss create mode 100644 samples/charts/tree-map/highlighting-percent-based/src/typings.d.ts create mode 100644 samples/charts/tree-map/highlighting-percent-based/tsconfig.json create mode 100644 samples/charts/tree-map/highlighting-percent-based/tslint.json diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/annotations-highlighting/src/app.component.html b/samples/charts/category-chart/annotations-highlighting/src/app.component.html index 6dce2af35..34636f649 100644 --- a/samples/charts/category-chart/annotations-highlighting/src/app.component.html +++ b/samples/charts/category-chart/annotations-highlighting/src/app.component.html @@ -35,14 +35,12 @@ computedPlotAreaMarginMode="Series" isHorizontalZoomEnabled="false" isVerticalZoomEnabled="false" - includedProperties="month, temperature" [dataSource]="temperatureAnnotatedData" - isCategoryHighlightingEnabled="true" highlightingMode="FadeOthersSpecific" highlightingBehavior="NearestItemsAndSeries" - crosshairsAnnotationYAxisPrecision="0" yAxisMaximumValue="35" - yAxisLabelLocation="OutsideRight"> + yAxisLabelLocation="OutsideRight" + toolTipType="None">
diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-filter/src/ContinentsBirthRate.ts b/samples/charts/category-chart/data-filter/src/ContinentsBirthRate.ts new file mode 100644 index 000000000..77f28339d --- /dev/null +++ b/samples/charts/category-chart/data-filter/src/ContinentsBirthRate.ts @@ -0,0 +1,105 @@ +export class ContinentsBirthRateItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; + +} +export class ContinentsBirthRate extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new ContinentsBirthRateItem( + { + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 + }), + new ContinentsBirthRateItem( + { + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 + }), + new ContinentsBirthRateItem( + { + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 + }), + new ContinentsBirthRateItem( + { + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 + }), + new ContinentsBirthRateItem( + { + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 + }), + new ContinentsBirthRateItem( + { + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 + }), + new ContinentsBirthRateItem( + { + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 + }), + new ContinentsBirthRateItem( + { + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/category-chart/data-filter/src/app.component.html b/samples/charts/category-chart/data-filter/src/app.component.html index 9b3dcf130..21b390d29 100644 --- a/samples/charts/category-chart/data-filter/src/app.component.html +++ b/samples/charts/category-chart/data-filter/src/app.component.html @@ -10,18 +10,19 @@ isWrappingEnabled="true"> + dropDownNames="1950, 1960, 1970, 1980, 1990, 2000, 2010, 2020" + dropDownValues="1950, 1960, 1970, 1980, 1990, 2000, 2010, 2020" + (changed)="this.editorChangeDataFilter($event)">
- Sales Filtered by Country, Product, and Dates + Annual Birth Rates by World Region
+ yAxisLabelFormat="{0}M">
diff --git a/samples/charts/category-chart/data-filter/src/app.component.ts b/samples/charts/category-chart/data-filter/src/app.component.ts index 834626705..5432c3011 100644 --- a/samples/charts/category-chart/data-filter/src/app.component.ts +++ b/samples/charts/category-chart/data-filter/src/app.component.ts @@ -1,6 +1,6 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; -import { SalesDataItem, SalesData } from './SalesData'; +import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthRate'; import { IgxPropertyEditorPropertyDescriptionChangedEventArgs, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; import { IgxCategoryChartComponent, MarkerType, MarkerType_$type } from 'igniteui-angular-charts'; import { EnumUtil } from 'igniteui-angular-core'; @@ -29,13 +29,13 @@ export class AppComponent implements AfterViewInit private initialFilter: IgxPropertyEditorPropertyDescriptionComponent @ViewChild("chart", { static: true } ) private chart: IgxCategoryChartComponent - private _salesData: SalesData = null; - public get salesData(): SalesData { - if (this._salesData == null) + private _continentsBirthRate: ContinentsBirthRate = null; + public get continentsBirthRate(): ContinentsBirthRate { + if (this._continentsBirthRate == null) { - this._salesData = new SalesData(); + this._continentsBirthRate = new ContinentsBirthRate(); } - return this._salesData; + return this._continentsBirthRate; } private _componentRenderer: ComponentRenderer = null; @@ -58,11 +58,11 @@ export class AppComponent implements AfterViewInit { } - public editorChangeUpdateInitialFilter({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { + public editorChangeDataFilter({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { var chart = this.chart; - var intialFilterVal = args.newValue.toString(); - chart.initialFilter = intialFilterVal; + var filter = args.newValue.toString(); + chart.initialFilter = "(contains(Year," + "'" + filter + "'" + "))"; } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 0729f4eb9..35b77cb25 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -30,17 +30,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/highlighting-behavior/src/app.component.html b/samples/charts/category-chart/highlighting-behavior/src/app.component.html index 6fa8551eb..8ec2d58b5 100644 --- a/samples/charts/category-chart/highlighting-behavior/src/app.component.html +++ b/samples/charts/category-chart/highlighting-behavior/src/app.component.html @@ -28,7 +28,6 @@ [dataSource]="temperatureAnnotatedData" highlightingMode="Brighten" highlightingBehavior="DirectlyOver" - crosshairsAnnotationEnabled="false" toolTipType="None" crosshairsDisplayMode="None"> diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/highlighting-mode/src/app.component.html b/samples/charts/category-chart/highlighting-mode/src/app.component.html index 3ff4b3a23..a0dad92d9 100644 --- a/samples/charts/category-chart/highlighting-mode/src/app.component.html +++ b/samples/charts/category-chart/highlighting-mode/src/app.component.html @@ -27,7 +27,6 @@ isVerticalZoomEnabled="false" [dataSource]="temperatureAnnotatedData" highlightingMode="BrightenSpecific" - crosshairsAnnotationEnabled="false" toolTipType="None" crosshairsDisplayMode="None"> diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/data-chart/stacked-column-chart/src/app.component.html b/samples/charts/data-chart/stacked-column-chart/src/app.component.html index a977585f0..480da2e17 100644 --- a/samples/charts/data-chart/stacked-column-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-column-chart/src/app.component.html @@ -1,6 +1,6 @@
- Electricity Production from Renewables + Annual Birth Rates by World Region
{ this._multipleStocks = await (await MultipleStocks.fetch()); this._detector.markForCheck(); })(); } return this._multipleStocks; diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/data-legend/src/app.component.ts b/samples/charts/financial-chart/data-legend/src/app.component.ts index b97b8e7df..6fcf7c128 100644 --- a/samples/charts/financial-chart/data-legend/src/app.component.ts +++ b/samples/charts/financial-chart/data-legend/src/app.component.ts @@ -17,11 +17,11 @@ export class AppComponent implements AfterViewInit @ViewChild("chart", { static: true } ) private chart: IgxFinancialChartComponent private _multipleStocks: MultipleStocks = null; - private _multipleStocksFetching: boolean = false; + private _isFetching: boolean = false; public get multipleStocks(): MultipleStocks { - if (this._multipleStocks == null && !this._multipleStocksFetching) + if (this._multipleStocks == null && !this._isFetching) { - this._multipleStocksFetching = true; + this._isFetching = true; ( async () => { this._multipleStocks = await (await MultipleStocks.fetch()); this._detector.markForCheck(); })(); } return this._multipleStocks; diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/app.component.ts b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/app.component.ts index 8b78b3fad..b9221ae86 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/app.component.ts +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/app.component.ts @@ -15,11 +15,11 @@ export class AppComponent implements AfterViewInit @ViewChild("chart", { static: true } ) private chart: IgxFinancialChartComponent private _multipleStocks: MultipleStocks = null; - private _multipleStocksFetching: boolean = false; + private _isFetching: boolean = false; public get multipleStocks(): MultipleStocks { - if (this._multipleStocks == null && !this._multipleStocksFetching) + if (this._multipleStocks == null && !this._isFetching) { - this._multipleStocksFetching = true; + this._isFetching = true; ( async () => { this._multipleStocks = await (await MultipleStocks.fetch()); this._detector.markForCheck(); })(); } return this._multipleStocks; diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/data-tooltip/src/app.component.ts b/samples/charts/financial-chart/data-tooltip/src/app.component.ts index 8b78b3fad..b9221ae86 100644 --- a/samples/charts/financial-chart/data-tooltip/src/app.component.ts +++ b/samples/charts/financial-chart/data-tooltip/src/app.component.ts @@ -15,11 +15,11 @@ export class AppComponent implements AfterViewInit @ViewChild("chart", { static: true } ) private chart: IgxFinancialChartComponent private _multipleStocks: MultipleStocks = null; - private _multipleStocksFetching: boolean = false; + private _isFetching: boolean = false; public get multipleStocks(): MultipleStocks { - if (this._multipleStocks == null && !this._multipleStocksFetching) + if (this._multipleStocks == null && !this._isFetching) { - this._multipleStocksFetching = true; + this._isFetching = true; ( async () => { this._multipleStocks = await (await MultipleStocks.fetch()); this._detector.markForCheck(); })(); } return this._multipleStocks; diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/format-specifiers/src/app.component.ts b/samples/charts/financial-chart/format-specifiers/src/app.component.ts index 7dda26119..37c4fabf2 100644 --- a/samples/charts/financial-chart/format-specifiers/src/app.component.ts +++ b/samples/charts/financial-chart/format-specifiers/src/app.component.ts @@ -82,11 +82,11 @@ export class AppComponent implements AfterViewInit return this._dateTimeFormatSpecifier1; } private _multipleStocks: MultipleStocks = null; - private _multipleStocksFetching: boolean = false; + private _isFetching: boolean = false; public get multipleStocks(): MultipleStocks { - if (this._multipleStocks == null && !this._multipleStocksFetching) + if (this._multipleStocks == null && !this._isFetching) { - this._multipleStocksFetching = true; + this._isFetching = true; ( async () => { this._multipleStocks = await (await MultipleStocks.fetch()); this._detector.markForCheck(); })(); } return this._multipleStocks; diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/financial-chart/scrollbars/src/app.component.ts b/samples/charts/financial-chart/scrollbars/src/app.component.ts index 8b78b3fad..b9221ae86 100644 --- a/samples/charts/financial-chart/scrollbars/src/app.component.ts +++ b/samples/charts/financial-chart/scrollbars/src/app.component.ts @@ -15,11 +15,11 @@ export class AppComponent implements AfterViewInit @ViewChild("chart", { static: true } ) private chart: IgxFinancialChartComponent private _multipleStocks: MultipleStocks = null; - private _multipleStocksFetching: boolean = false; + private _isFetching: boolean = false; public get multipleStocks(): MultipleStocks { - if (this._multipleStocks == null && !this._multipleStocksFetching) + if (this._multipleStocks == null && !this._isFetching) { - this._multipleStocksFetching = true; + this._isFetching = true; ( async () => { this._multipleStocks = await (await MultipleStocks.fetch()); this._detector.markForCheck(); })(); } return this._multipleStocks; diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 0729f4eb9..35b77cb25 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -30,17 +30,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 0729f4eb9..35b77cb25 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -30,17 +30,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 0729f4eb9..35b77cb25 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -30,17 +30,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 94249220a..1af2038ac 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -29,17 +29,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 0729f4eb9..35b77cb25 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -30,17 +30,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 0729f4eb9..35b77cb25 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -30,17 +30,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/tree-map/highlighting-percent-based/.stackblitzrc b/samples/charts/tree-map/highlighting-percent-based/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting-percent-based/angular.json b/samples/charts/tree-map/highlighting-percent-based/angular.json new file mode 100644 index 000000000..11ffb8c9c --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json new file mode 100644 index 000000000..95e4ca151 --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "9.1.1", + "typescript": "5.2.2" + } +} diff --git a/samples/charts/tree-map/highlighting-percent-based/sandbox.config.json b/samples/charts/tree-map/highlighting-percent-based/sandbox.config.json new file mode 100644 index 000000000..07f53508e --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting-percent-based/src/CountryTopUrbanPopData.ts b/samples/charts/tree-map/highlighting-percent-based/src/CountryTopUrbanPopData.ts new file mode 100644 index 000000000..667fb3636 --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/src/CountryTopUrbanPopData.ts @@ -0,0 +1,78 @@ +export class CountryTopUrbanPopDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public code: string; + public parent: string; + public name: string; + public population: number; + public urbanPopulation: number; + public urbanPopPercent: string; + +} +export class CountryTopUrbanPopData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryTopUrbanPopDataItem( + { + code: `ASA`, + parent: null, + name: `Asia`, + population: null, + urbanPopulation: null, + urbanPopPercent: null + }), + new CountryTopUrbanPopDataItem( + { + code: `NAM`, + parent: null, + name: `North America`, + population: null, + urbanPopulation: null, + urbanPopPercent: null + }), + new CountryTopUrbanPopDataItem( + { + code: `CHI`, + parent: `Asia`, + name: `China`, + population: 1425178792, + urbanPopulation: 941865672, + urbanPopPercent: `65%` + }), + new CountryTopUrbanPopDataItem( + { + code: `IND`, + parent: `Asia`, + name: `India`, + population: 1428627663, + urbanPopulation: 530387142, + urbanPopPercent: `36%` + }), + new CountryTopUrbanPopDataItem( + { + code: `USA`, + parent: `North America`, + name: `United States`, + population: 341814420, + urbanPopulation: 284698234, + urbanPopPercent: `83%` + }), + new CountryTopUrbanPopDataItem( + { + code: `MEX`, + parent: `North America`, + name: `Mexico`, + population: 129388467, + urbanPopulation: 114397383, + urbanPopPercent: `88%` + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/tree-map/highlighting-percent-based/src/app.component.html b/samples/charts/tree-map/highlighting-percent-based/src/app.component.html new file mode 100644 index 000000000..bbd744618 --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/src/app.component.html @@ -0,0 +1,27 @@ +
+
+ Comparing Top Urban Population Percentages between North America & Asia +
+
+ + +
+
diff --git a/samples/charts/tree-map/highlighting-percent-based/src/app.component.scss b/samples/charts/tree-map/highlighting-percent-based/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/tree-map/highlighting-percent-based/src/app.component.ts b/samples/charts/tree-map/highlighting-percent-based/src/app.component.ts new file mode 100644 index 000000000..07c695377 --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/src/app.component.ts @@ -0,0 +1,46 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, TreemapDescriptionModule } from 'igniteui-angular-core'; +import { CountryTopUrbanPopDataItem, CountryTopUrbanPopData } from './CountryTopUrbanPopData'; +import { IgxTreemapComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("treemap", { static: true } ) + private treemap: IgxTreemapComponent + private _countryTopUrbanPopData: CountryTopUrbanPopData = null; + public get countryTopUrbanPopData(): CountryTopUrbanPopData { + if (this._countryTopUrbanPopData == null) + { + this._countryTopUrbanPopData = new CountryTopUrbanPopData(); + } + return this._countryTopUrbanPopData; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + TreemapDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/tree-map/highlighting-percent-based/src/app.module.ts b/samples/charts/tree-map/highlighting-percent-based/src/app.module.ts new file mode 100644 index 000000000..cd5876a1b --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/src/app.module.ts @@ -0,0 +1,25 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxTreemapModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxTreemapModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig-es5.app.json b/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.app.json b/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.base.json b/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.base.json new file mode 100644 index 000000000..5574be5e5 --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "ES2022", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.spec.json b/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.worker.json b/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/samples/charts/tree-map/highlighting-percent-based/src/environments/environment.prod.ts b/samples/charts/tree-map/highlighting-percent-based/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/tree-map/highlighting-percent-based/src/environments/environment.ts b/samples/charts/tree-map/highlighting-percent-based/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/tree-map/highlighting-percent-based/src/index.html b/samples/charts/tree-map/highlighting-percent-based/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/tree-map/highlighting-percent-based/src/main.ts b/samples/charts/tree-map/highlighting-percent-based/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/tree-map/highlighting-percent-based/src/polyfills.ts b/samples/charts/tree-map/highlighting-percent-based/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/tree-map/highlighting-percent-based/src/styles.scss b/samples/charts/tree-map/highlighting-percent-based/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/tree-map/highlighting-percent-based/src/typings.d.ts b/samples/charts/tree-map/highlighting-percent-based/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/tree-map/highlighting-percent-based/tsconfig.json b/samples/charts/tree-map/highlighting-percent-based/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting-percent-based/tslint.json b/samples/charts/tree-map/highlighting-percent-based/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 4cf59528e..1d130678d 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index fabb9adc1..95e4ca151 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -28,17 +28,17 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", "@angular/cli": "17.0.0", "@angular/compiler-cli": "17.0.0", "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "17.0.0", "@types/node": "14.14.28", "codelyzer": "6.0.2", "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", "tslint": "~6.1.3", + "ts-node": "9.1.1", "typescript": "5.2.2" } } From 94c58a240fd0023b9f70608731f168fd4e37eaff Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Tue, 4 Jun 2024 17:07:02 -0400 Subject: [PATCH 074/154] add test (#180) --- tests/donut-ava2/.codesandbox/Dockerfile | 1 + tests/donut-ava2/.codesandbox/tasks.json | 17 +++ tests/donut-ava2/.stackblitzrc | 1 + tests/donut-ava2/angular.json | 110 ++++++++++++++++++ tests/donut-ava2/package.json | 30 +++++ tests/donut-ava2/src/EnergyGlobalDemand.ts | 51 ++++++++ tests/donut-ava2/src/_app-layout.scss | 84 +++++++++++++ tests/donut-ava2/src/_variables.scss | 19 +++ tests/donut-ava2/src/app.component.html | 33 ++++++ tests/donut-ava2/src/app.component.scss | 3 + tests/donut-ava2/src/app.component.ts | 39 +++++++ tests/donut-ava2/src/app.module.ts | 26 +++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ tests/donut-ava2/src/index.html | 23 ++++ tests/donut-ava2/src/main.ts | 15 +++ tests/donut-ava2/src/polyfills.ts | 58 +++++++++ tests/donut-ava2/src/styles.scss | 58 +++++++++ tests/donut-ava2/tsconfig.app.json | 10 ++ tests/donut-ava2/tsconfig.json | 25 ++++ 20 files changed, 622 insertions(+) create mode 100644 tests/donut-ava2/.codesandbox/Dockerfile create mode 100644 tests/donut-ava2/.codesandbox/tasks.json create mode 100644 tests/donut-ava2/.stackblitzrc create mode 100644 tests/donut-ava2/angular.json create mode 100644 tests/donut-ava2/package.json create mode 100644 tests/donut-ava2/src/EnergyGlobalDemand.ts create mode 100644 tests/donut-ava2/src/_app-layout.scss create mode 100644 tests/donut-ava2/src/_variables.scss create mode 100644 tests/donut-ava2/src/app.component.html create mode 100644 tests/donut-ava2/src/app.component.scss create mode 100644 tests/donut-ava2/src/app.component.ts create mode 100644 tests/donut-ava2/src/app.module.ts create mode 100644 tests/donut-ava2/src/environments/environment.prod.ts create mode 100644 tests/donut-ava2/src/environments/environment.ts create mode 100644 tests/donut-ava2/src/index.html create mode 100644 tests/donut-ava2/src/main.ts create mode 100644 tests/donut-ava2/src/polyfills.ts create mode 100644 tests/donut-ava2/src/styles.scss create mode 100644 tests/donut-ava2/tsconfig.app.json create mode 100644 tests/donut-ava2/tsconfig.json diff --git a/tests/donut-ava2/.codesandbox/Dockerfile b/tests/donut-ava2/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/tests/donut-ava2/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/tests/donut-ava2/.codesandbox/tasks.json b/tests/donut-ava2/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/tests/donut-ava2/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/tests/donut-ava2/.stackblitzrc b/tests/donut-ava2/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/tests/donut-ava2/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/tests/donut-ava2/angular.json b/tests/donut-ava2/angular.json new file mode 100644 index 000000000..f2ace893e --- /dev/null +++ b/tests/donut-ava2/angular.json @@ -0,0 +1,110 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "example-app": { + "projectType": "application", + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/example-app", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": ["src/favicon.ico", "src/assets"], + "styles": ["src/styles.scss"], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + }, + "scripts": [] + }, + "configurations": { + "production": { + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ], + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all" + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "browserTarget": "example-app:build:production" + }, + "development": { + "browserTarget": "example-app:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "browserTarget": "example-app:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "inlineStyleLanguage": "scss", + "assets": ["src/favicon.ico", "src/assets"], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + }, + "styles": ["src/styles.scss", "src/theme.scss"], + "scripts": [] + } + } + } + } + }, + "defaultProject": "example-app", + "cli": { + "analytics": false + } +} diff --git a/tests/donut-ava2/package.json b/tests/donut-ava2/package.json new file mode 100644 index 000000000..a5a6da9ed --- /dev/null +++ b/tests/donut-ava2/package.json @@ -0,0 +1,30 @@ +{ + "dependencies": { + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/router": "^17.2.1", + "@types/hammerjs": "^2.0.39", + "hammerjs": "^2.0.8", + "igniteui-angular": "17.2.0", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", + "jasmine-core": "5.1.1", + "ts-node": "10.9.1", + "typescript": "5.3.3" + } +} \ No newline at end of file diff --git a/tests/donut-ava2/src/EnergyGlobalDemand.ts b/tests/donut-ava2/src/EnergyGlobalDemand.ts new file mode 100644 index 000000000..922fcf7a9 --- /dev/null +++ b/tests/donut-ava2/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/tests/donut-ava2/src/_app-layout.scss b/tests/donut-ava2/src/_app-layout.scss new file mode 100644 index 000000000..b5329f55b --- /dev/null +++ b/tests/donut-ava2/src/_app-layout.scss @@ -0,0 +1,84 @@ +.sample-wrapper { + width: inherit; + position: relative; + height: 100%; + margin: 0 auto; + background: transparent; +} + +.sample-content { + display: flex; + flex-grow: 1; + flex-flow: row wrap; + justify-content: flex-start; + padding: 0; + -webkit-animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both; + -moz-animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both; + animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both; +} + +.sample-column { + display: flex; + flex-flow: column nowrap; + flex: 1 0 25%; + align-content: flex-start; + margin: 16px; + min-width: 280px; +} + +.sample-title { + color: #0375be; + margin-bottom: 12px; + margin-top: 12px; +} + +.sample-title .light { + font-weight: 400; +} + +.sample-description { + font-size: 14px; + font-weight: normal; + color: #717171; +} + +@-webkit-keyframes color-change-2x { + 0% { + background: #fdf8f0; + } + 100% { + background: #f6e7ec; + } +} + +@keyframes color-change-2x { + 0% { + background: #fdf8f0; + } + 100% { + background: #f6e7ec; + } +} + +@-webkit-keyframes fade-in { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + +@keyframes fade-in { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + +.headerAlignSyle { + text-align: right !important; +} + diff --git a/tests/donut-ava2/src/_variables.scss b/tests/donut-ava2/src/_variables.scss new file mode 100644 index 000000000..cf9f1048b --- /dev/null +++ b/tests/donut-ava2/src/_variables.scss @@ -0,0 +1,19 @@ +@use 'igniteui-angular/theming' as *; +@forward 'igniteui-angular/theming'; + +$palette: $light-material-palette; +$schema: $light-material-schema; + +$default-palette: $palette; + +$green-palette: palette( + $primary: #09f, + $secondary: #72da67, + $surface: #333, + $info: #1377d5, + $success: #4eb862, + $warn: #fbb13c, + $error: #ff134a, +); + +$gray-btn-color: color($green-palette, 'gray', 800); diff --git a/tests/donut-ava2/src/app.component.html b/tests/donut-ava2/src/app.component.html new file mode 100644 index 000000000..3c78e15c6 --- /dev/null +++ b/tests/donut-ava2/src/app.component.html @@ -0,0 +1,33 @@ +
+
+ Global Electricity Demand by Energy Use +
+
+ + +
+
+ + + + +
+
diff --git a/tests/donut-ava2/src/app.component.scss b/tests/donut-ava2/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/tests/donut-ava2/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/tests/donut-ava2/src/app.component.ts b/tests/donut-ava2/src/app.component.ts new file mode 100644 index 000000000..d7720aa4b --- /dev/null +++ b/tests/donut-ava2/src/app.component.ts @@ -0,0 +1,39 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { IgxItemLegendComponent, IgxDoughnutChartComponent, IgxRingSeriesComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxItemLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDoughnutChartComponent + @ViewChild("series", { static: true } ) + private series: IgxRingSeriesComponent + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/tests/donut-ava2/src/app.module.ts b/tests/donut-ava2/src/app.module.ts new file mode 100644 index 000000000..7d4332c43 --- /dev/null +++ b/tests/donut-ava2/src/app.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxItemLegendModule, IgxDoughnutChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxItemLegendModule, + IgxDoughnutChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/tests/donut-ava2/src/environments/environment.prod.ts b/tests/donut-ava2/src/environments/environment.prod.ts new file mode 100644 index 000000000..c9669790b --- /dev/null +++ b/tests/donut-ava2/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true, +}; diff --git a/tests/donut-ava2/src/environments/environment.ts b/tests/donut-ava2/src/environments/environment.ts new file mode 100644 index 000000000..66998ae9a --- /dev/null +++ b/tests/donut-ava2/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false, +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/plugins/zone-error'; // Included with Angular CLI. diff --git a/tests/donut-ava2/src/index.html b/tests/donut-ava2/src/index.html new file mode 100644 index 000000000..6b7e74a5c --- /dev/null +++ b/tests/donut-ava2/src/index.html @@ -0,0 +1,23 @@ + + + + + + Angular Demos + + + + + + + + + + + + + + + + + diff --git a/tests/donut-ava2/src/main.ts b/tests/donut-ava2/src/main.ts new file mode 100644 index 000000000..4854dcd20 --- /dev/null +++ b/tests/donut-ava2/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from '@angular/core'; +import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; +import { AppModule } from './app.module'; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // Ensure Angular destroys itself on hot reloads. + if (window['ngRef']) { + window['ngRef'].destroy(); + } + window['ngRef'] = ref; + + // Otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/tests/donut-ava2/src/polyfills.ts b/tests/donut-ava2/src/polyfills.ts new file mode 100644 index 000000000..665b7dacb --- /dev/null +++ b/tests/donut-ava2/src/polyfills.ts @@ -0,0 +1,58 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called 'evergreen' browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +//import 'core-js/es7/object'; + +//import 'core-js/es7/array'; // for Array.includes() // Run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +//import 'core-js/es6/reflect'; + +/* Evergreen browsers require these. */ +// Used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +//import 'core-js/es7/reflect'; // Run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import 'hammerjs/hammer'; +import 'zone.js'; // Included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import 'intl'; // Run `npm install --save intl`. +// import 'intl/locale-data/jsonp/de'; +/** + * Need to import at least one locale-data with intl. + */ +// import 'intl/locale-data/jsonp/en'; diff --git a/tests/donut-ava2/src/styles.scss b/tests/donut-ava2/src/styles.scss new file mode 100644 index 000000000..5861d836a --- /dev/null +++ b/tests/donut-ava2/src/styles.scss @@ -0,0 +1,58 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} + + +// @use 'igniteui-angular/theming' as *; +// @use 'variables' as *; +// @use 'app-layout'; + +// /* autoprefixer grid: on */ +// html, +// body { +// height: 100%; +// overflow: hidden; +// margin: 0; +// } + +// @include core(); +// @include typography(); +// @include theme( +// $palette: $palette, +// $schema: $schema +// ); + +// :root { +// @include palette($palette); +// } + +// .light-theme { +// @include light-theme($palette); +// } + +// .dark-theme { +// background: #333; +// color: #fff; +// @include dark-theme( +// $palette: $green-palette +// ); + +// .grid-chart-contextmenu-wrapper { +// @include fluent-dark-theme($fluent-excel-palette); +// } +// } + +// .fin-dark-theme { +// @include dark-theme($green-palette); +// background: #333; + +// ::-moz-placeholder { +// opacity: 1; +// } +// } diff --git a/tests/donut-ava2/tsconfig.app.json b/tests/donut-ava2/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/tests/donut-ava2/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/tests/donut-ava2/tsconfig.json b/tests/donut-ava2/tsconfig.json new file mode 100644 index 000000000..3e90bf364 --- /dev/null +++ b/tests/donut-ava2/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": true, + "declaration": false, + "downlevelIteration": true, + "experimentalDecorators": true, + "module": "esnext", + "moduleResolution": "node", + "importHelpers": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file From 0dbd322276977927af64598d4d917206007b02b8 Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Wed, 5 Jun 2024 10:04:01 -0400 Subject: [PATCH 075/154] add CS tests (#185) --- .gitignore | 7 + tests/donut-ava2/package.json | 7 + tests/donut-ava3/.codesandbox/Dockerfile | 1 + tests/donut-ava3/.codesandbox/tasks.json | 17 +++ tests/donut-ava3/.stackblitzrc | 1 + tests/donut-ava3/angular.json | 120 ++++++++++++++++++ tests/donut-ava3/package.json | 45 +++++++ tests/donut-ava3/src/EnergyGlobalDemand.ts | 51 ++++++++ tests/donut-ava3/src/app.component.html | 33 +++++ tests/donut-ava3/src/app.component.scss | 3 + tests/donut-ava3/src/app.component.ts | 39 ++++++ tests/donut-ava3/src/app.module.ts | 26 ++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ tests/donut-ava3/src/index.html | 23 ++++ tests/donut-ava3/src/main.ts | 15 +++ tests/donut-ava3/src/polyfills.ts | 65 ++++++++++ tests/donut-ava3/src/styles.scss | 9 ++ tests/donut-ava3/tsconfig.app.json | 10 ++ tests/donut-ava3/tsconfig.json | 25 ++++ 20 files changed, 516 insertions(+) create mode 100644 tests/donut-ava3/.codesandbox/Dockerfile create mode 100644 tests/donut-ava3/.codesandbox/tasks.json create mode 100644 tests/donut-ava3/.stackblitzrc create mode 100644 tests/donut-ava3/angular.json create mode 100644 tests/donut-ava3/package.json create mode 100644 tests/donut-ava3/src/EnergyGlobalDemand.ts create mode 100644 tests/donut-ava3/src/app.component.html create mode 100644 tests/donut-ava3/src/app.component.scss create mode 100644 tests/donut-ava3/src/app.component.ts create mode 100644 tests/donut-ava3/src/app.module.ts create mode 100644 tests/donut-ava3/src/environments/environment.prod.ts create mode 100644 tests/donut-ava3/src/environments/environment.ts create mode 100644 tests/donut-ava3/src/index.html create mode 100644 tests/donut-ava3/src/main.ts create mode 100644 tests/donut-ava3/src/polyfills.ts create mode 100644 tests/donut-ava3/src/styles.scss create mode 100644 tests/donut-ava3/tsconfig.app.json create mode 100644 tests/donut-ava3/tsconfig.json diff --git a/.gitignore b/.gitignore index 21a9145d9..d8d1b938a 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,13 @@ # /samples-tmp/ # /samples-tmp/**/node_modules/ +/tests/**/build/ +/tests/**/dist/ +/tests/**/node_modules/ +/tests/**/package-lock.json +/tests/**/.angular +/tests/**/.git + # browser auto-generated files: # /porting/** # /browser/** diff --git a/tests/donut-ava2/package.json b/tests/donut-ava2/package.json index a5a6da9ed..6ae0e08f8 100644 --- a/tests/donut-ava2/package.json +++ b/tests/donut-ava2/package.json @@ -1,4 +1,11 @@ { + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, "dependencies": { "@angular/animations": "^17.2.1", "@angular/common": "^17.2.1", diff --git a/tests/donut-ava3/.codesandbox/Dockerfile b/tests/donut-ava3/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/tests/donut-ava3/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/tests/donut-ava3/.codesandbox/tasks.json b/tests/donut-ava3/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/tests/donut-ava3/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/tests/donut-ava3/.stackblitzrc b/tests/donut-ava3/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/tests/donut-ava3/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/tests/donut-ava3/angular.json b/tests/donut-ava3/angular.json new file mode 100644 index 000000000..0c2c173c9 --- /dev/null +++ b/tests/donut-ava3/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/tests/donut-ava3/package.json b/tests/donut-ava3/package.json new file mode 100644 index 000000000..d89744ff2 --- /dev/null +++ b/tests/donut-ava3/package.json @@ -0,0 +1,45 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/router": "^17.2.1", + "@types/hammerjs": "^2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "^2.0.8", + "igniteui-angular": "17.2.0", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "10.9.1", + "typescript": "5.3.3" + } +} \ No newline at end of file diff --git a/tests/donut-ava3/src/EnergyGlobalDemand.ts b/tests/donut-ava3/src/EnergyGlobalDemand.ts new file mode 100644 index 000000000..922fcf7a9 --- /dev/null +++ b/tests/donut-ava3/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/tests/donut-ava3/src/app.component.html b/tests/donut-ava3/src/app.component.html new file mode 100644 index 000000000..3c78e15c6 --- /dev/null +++ b/tests/donut-ava3/src/app.component.html @@ -0,0 +1,33 @@ +
+
+ Global Electricity Demand by Energy Use +
+
+ + +
+
+ + + + +
+
diff --git a/tests/donut-ava3/src/app.component.scss b/tests/donut-ava3/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/tests/donut-ava3/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/tests/donut-ava3/src/app.component.ts b/tests/donut-ava3/src/app.component.ts new file mode 100644 index 000000000..d7720aa4b --- /dev/null +++ b/tests/donut-ava3/src/app.component.ts @@ -0,0 +1,39 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { IgxItemLegendComponent, IgxDoughnutChartComponent, IgxRingSeriesComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxItemLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDoughnutChartComponent + @ViewChild("series", { static: true } ) + private series: IgxRingSeriesComponent + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/tests/donut-ava3/src/app.module.ts b/tests/donut-ava3/src/app.module.ts new file mode 100644 index 000000000..7d4332c43 --- /dev/null +++ b/tests/donut-ava3/src/app.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxItemLegendModule, IgxDoughnutChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxItemLegendModule, + IgxDoughnutChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/tests/donut-ava3/src/environments/environment.prod.ts b/tests/donut-ava3/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/tests/donut-ava3/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/tests/donut-ava3/src/environments/environment.ts b/tests/donut-ava3/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/tests/donut-ava3/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/tests/donut-ava3/src/index.html b/tests/donut-ava3/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/tests/donut-ava3/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/tests/donut-ava3/src/main.ts b/tests/donut-ava3/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/tests/donut-ava3/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/tests/donut-ava3/src/polyfills.ts b/tests/donut-ava3/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/tests/donut-ava3/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/tests/donut-ava3/src/styles.scss b/tests/donut-ava3/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/tests/donut-ava3/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/tests/donut-ava3/tsconfig.app.json b/tests/donut-ava3/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/tests/donut-ava3/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/tests/donut-ava3/tsconfig.json b/tests/donut-ava3/tsconfig.json new file mode 100644 index 000000000..3e90bf364 --- /dev/null +++ b/tests/donut-ava3/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": true, + "declaration": false, + "downlevelIteration": true, + "experimentalDecorators": true, + "module": "esnext", + "moduleResolution": "node", + "importHelpers": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file From 2d7f0ca11247926320cc0a858116fcc21b3e6cfe Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Wed, 5 Jun 2024 10:26:17 -0400 Subject: [PATCH 076/154] add cs test donut (#186) --- tests/donut-ava4/.codesandbox/Dockerfile | 1 + tests/donut-ava4/.codesandbox/tasks.json | 17 +++ tests/donut-ava4/.stackblitzrc | 1 + tests/donut-ava4/angular.json | 120 ++++++++++++++++++ tests/donut-ava4/package.json | 45 +++++++ tests/donut-ava4/src/EnergyGlobalDemand.ts | 51 ++++++++ tests/donut-ava4/src/app.component.html | 33 +++++ tests/donut-ava4/src/app.component.scss | 3 + tests/donut-ava4/src/app.component.ts | 39 ++++++ tests/donut-ava4/src/app.module.ts | 26 ++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ tests/donut-ava4/src/index.html | 23 ++++ tests/donut-ava4/src/main.ts | 15 +++ tests/donut-ava4/src/polyfills.ts | 65 ++++++++++ tests/donut-ava4/src/styles.scss | 9 ++ tests/donut-ava4/tsconfig.app.json | 10 ++ tests/donut-ava4/tsconfig.json | 27 ++++ 18 files changed, 504 insertions(+) create mode 100644 tests/donut-ava4/.codesandbox/Dockerfile create mode 100644 tests/donut-ava4/.codesandbox/tasks.json create mode 100644 tests/donut-ava4/.stackblitzrc create mode 100644 tests/donut-ava4/angular.json create mode 100644 tests/donut-ava4/package.json create mode 100644 tests/donut-ava4/src/EnergyGlobalDemand.ts create mode 100644 tests/donut-ava4/src/app.component.html create mode 100644 tests/donut-ava4/src/app.component.scss create mode 100644 tests/donut-ava4/src/app.component.ts create mode 100644 tests/donut-ava4/src/app.module.ts create mode 100644 tests/donut-ava4/src/environments/environment.prod.ts create mode 100644 tests/donut-ava4/src/environments/environment.ts create mode 100644 tests/donut-ava4/src/index.html create mode 100644 tests/donut-ava4/src/main.ts create mode 100644 tests/donut-ava4/src/polyfills.ts create mode 100644 tests/donut-ava4/src/styles.scss create mode 100644 tests/donut-ava4/tsconfig.app.json create mode 100644 tests/donut-ava4/tsconfig.json diff --git a/tests/donut-ava4/.codesandbox/Dockerfile b/tests/donut-ava4/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/tests/donut-ava4/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/tests/donut-ava4/.codesandbox/tasks.json b/tests/donut-ava4/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/tests/donut-ava4/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/tests/donut-ava4/.stackblitzrc b/tests/donut-ava4/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/tests/donut-ava4/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/tests/donut-ava4/angular.json b/tests/donut-ava4/angular.json new file mode 100644 index 000000000..0c2c173c9 --- /dev/null +++ b/tests/donut-ava4/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/tests/donut-ava4/package.json b/tests/donut-ava4/package.json new file mode 100644 index 000000000..d89744ff2 --- /dev/null +++ b/tests/donut-ava4/package.json @@ -0,0 +1,45 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/router": "^17.2.1", + "@types/hammerjs": "^2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "^2.0.8", + "igniteui-angular": "17.2.0", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "10.9.1", + "typescript": "5.3.3" + } +} \ No newline at end of file diff --git a/tests/donut-ava4/src/EnergyGlobalDemand.ts b/tests/donut-ava4/src/EnergyGlobalDemand.ts new file mode 100644 index 000000000..922fcf7a9 --- /dev/null +++ b/tests/donut-ava4/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/tests/donut-ava4/src/app.component.html b/tests/donut-ava4/src/app.component.html new file mode 100644 index 000000000..3c78e15c6 --- /dev/null +++ b/tests/donut-ava4/src/app.component.html @@ -0,0 +1,33 @@ +
+
+ Global Electricity Demand by Energy Use +
+
+ + +
+
+ + + + +
+
diff --git a/tests/donut-ava4/src/app.component.scss b/tests/donut-ava4/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/tests/donut-ava4/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/tests/donut-ava4/src/app.component.ts b/tests/donut-ava4/src/app.component.ts new file mode 100644 index 000000000..d7720aa4b --- /dev/null +++ b/tests/donut-ava4/src/app.component.ts @@ -0,0 +1,39 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { IgxItemLegendComponent, IgxDoughnutChartComponent, IgxRingSeriesComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxItemLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDoughnutChartComponent + @ViewChild("series", { static: true } ) + private series: IgxRingSeriesComponent + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/tests/donut-ava4/src/app.module.ts b/tests/donut-ava4/src/app.module.ts new file mode 100644 index 000000000..7d4332c43 --- /dev/null +++ b/tests/donut-ava4/src/app.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxItemLegendModule, IgxDoughnutChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxItemLegendModule, + IgxDoughnutChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/tests/donut-ava4/src/environments/environment.prod.ts b/tests/donut-ava4/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/tests/donut-ava4/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/tests/donut-ava4/src/environments/environment.ts b/tests/donut-ava4/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/tests/donut-ava4/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/tests/donut-ava4/src/index.html b/tests/donut-ava4/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/tests/donut-ava4/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/tests/donut-ava4/src/main.ts b/tests/donut-ava4/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/tests/donut-ava4/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/tests/donut-ava4/src/polyfills.ts b/tests/donut-ava4/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/tests/donut-ava4/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/tests/donut-ava4/src/styles.scss b/tests/donut-ava4/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/tests/donut-ava4/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/tests/donut-ava4/tsconfig.app.json b/tests/donut-ava4/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/tests/donut-ava4/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/tests/donut-ava4/tsconfig.json b/tests/donut-ava4/tsconfig.json new file mode 100644 index 000000000..547b10bb5 --- /dev/null +++ b/tests/donut-ava4/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "ES2022", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "ES2022", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "ES2022", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file From 5cd6c359066b67542671cd301e0e92b499939483 Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Wed, 5 Jun 2024 10:54:47 -0400 Subject: [PATCH 077/154] update CS tests (#187) --- tests/donut-ava3/tsconfig.json | 8 +- tests/donut-ava4/tsconfig.json | 6 +- tests/donut-mod/.codesandbox/Dockerfile | 1 + tests/donut-mod/.codesandbox/tasks.json | 17 +++ tests/donut-mod/.stackblitzrc | 1 + tests/donut-mod/ReadMe.md | 58 ++++++++++ tests/donut-mod/angular.json | 106 ++++++++++++++++++ tests/donut-mod/package.json | 44 ++++++++ tests/donut-mod/src/EnergyGlobalDemand.ts | 51 +++++++++ tests/donut-mod/src/app.component.html | 33 ++++++ tests/donut-mod/src/app.component.scss | 3 + tests/donut-mod/src/app.component.ts | 39 +++++++ tests/donut-mod/src/app.module.ts | 26 +++++ .../src/config/tsconfig-es5.app.json | 6 + tests/donut-mod/src/config/tsconfig.app.json | 12 ++ tests/donut-mod/src/config/tsconfig.base.json | 24 ++++ tests/donut-mod/src/config/tsconfig.spec.json | 19 ++++ .../donut-mod/src/config/tsconfig.worker.json | 14 +++ .../src/environments/environment.prod.ts | 3 + .../donut-mod/src/environments/environment.ts | 16 +++ tests/donut-mod/src/index.html | 23 ++++ tests/donut-mod/src/main.ts | 15 +++ tests/donut-mod/src/polyfills.ts | 65 +++++++++++ tests/donut-mod/src/styles.scss | 9 ++ tests/donut-mod/src/typings.d.ts | 5 + tests/donut-mod/tsconfig.json | 21 ++++ tests/donut-mod/tslint.json | 31 +++++ 27 files changed, 649 insertions(+), 7 deletions(-) create mode 100644 tests/donut-mod/.codesandbox/Dockerfile create mode 100644 tests/donut-mod/.codesandbox/tasks.json create mode 100644 tests/donut-mod/.stackblitzrc create mode 100644 tests/donut-mod/ReadMe.md create mode 100644 tests/donut-mod/angular.json create mode 100644 tests/donut-mod/package.json create mode 100644 tests/donut-mod/src/EnergyGlobalDemand.ts create mode 100644 tests/donut-mod/src/app.component.html create mode 100644 tests/donut-mod/src/app.component.scss create mode 100644 tests/donut-mod/src/app.component.ts create mode 100644 tests/donut-mod/src/app.module.ts create mode 100644 tests/donut-mod/src/config/tsconfig-es5.app.json create mode 100644 tests/donut-mod/src/config/tsconfig.app.json create mode 100644 tests/donut-mod/src/config/tsconfig.base.json create mode 100644 tests/donut-mod/src/config/tsconfig.spec.json create mode 100644 tests/donut-mod/src/config/tsconfig.worker.json create mode 100644 tests/donut-mod/src/environments/environment.prod.ts create mode 100644 tests/donut-mod/src/environments/environment.ts create mode 100644 tests/donut-mod/src/index.html create mode 100644 tests/donut-mod/src/main.ts create mode 100644 tests/donut-mod/src/polyfills.ts create mode 100644 tests/donut-mod/src/styles.scss create mode 100644 tests/donut-mod/src/typings.d.ts create mode 100644 tests/donut-mod/tsconfig.json create mode 100644 tests/donut-mod/tslint.json diff --git a/tests/donut-ava3/tsconfig.json b/tests/donut-ava3/tsconfig.json index 3e90bf364..6f9b68d09 100644 --- a/tests/donut-ava3/tsconfig.json +++ b/tests/donut-ava3/tsconfig.json @@ -1,15 +1,15 @@ { "compileOnSave": false, "compilerOptions": { + "importHelpers": true, + "module": "esnext", "baseUrl": "./", "outDir": "./dist/out-tsc", "sourceMap": true, "declaration": false, - "downlevelIteration": true, - "experimentalDecorators": true, - "module": "esnext", "moduleResolution": "node", - "importHelpers": true, + "experimentalDecorators": true, + "downlevelIteration": true, "target": "es2015", "typeRoots": [ "node_modules/@types" diff --git a/tests/donut-ava4/tsconfig.json b/tests/donut-ava4/tsconfig.json index 547b10bb5..22d546ab3 100644 --- a/tests/donut-ava4/tsconfig.json +++ b/tests/donut-ava4/tsconfig.json @@ -2,7 +2,7 @@ "compileOnSave": false, "compilerOptions": { "importHelpers": true, - "module": "ES2022", + "module": "esnext", "baseUrl": "./", "outDir": "./dist/out-tsc", "sourceMap": false, @@ -12,12 +12,12 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "ES2022", + "target": "es2015", "typeRoots": [ "node_modules/@types" ], "lib": [ - "ES2022", + "es2018", "dom" ] }, diff --git a/tests/donut-mod/.codesandbox/Dockerfile b/tests/donut-mod/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/tests/donut-mod/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/tests/donut-mod/.codesandbox/tasks.json b/tests/donut-mod/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/tests/donut-mod/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/tests/donut-mod/.stackblitzrc b/tests/donut-mod/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/tests/donut-mod/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/tests/donut-mod/ReadMe.md b/tests/donut-mod/ReadMe.md new file mode 100644 index 000000000..88e6723a3 --- /dev/null +++ b/tests/donut-mod/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Legend feature using [DoughnutChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/doughnut-chart/legend +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/tests/donut-mod/angular.json b/tests/donut-mod/angular.json new file mode 100644 index 000000000..11ffb8c9c --- /dev/null +++ b/tests/donut-mod/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/tests/donut-mod/package.json b/tests/donut-mod/package.json new file mode 100644 index 000000000..fabb9adc1 --- /dev/null +++ b/tests/donut-mod/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "9.1.1", + "tslint": "~6.1.3", + "typescript": "5.2.2" + } +} diff --git a/tests/donut-mod/src/EnergyGlobalDemand.ts b/tests/donut-mod/src/EnergyGlobalDemand.ts new file mode 100644 index 000000000..922fcf7a9 --- /dev/null +++ b/tests/donut-mod/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/tests/donut-mod/src/app.component.html b/tests/donut-mod/src/app.component.html new file mode 100644 index 000000000..3c78e15c6 --- /dev/null +++ b/tests/donut-mod/src/app.component.html @@ -0,0 +1,33 @@ +
+
+ Global Electricity Demand by Energy Use +
+
+ + +
+
+ + + + +
+
diff --git a/tests/donut-mod/src/app.component.scss b/tests/donut-mod/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/tests/donut-mod/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/tests/donut-mod/src/app.component.ts b/tests/donut-mod/src/app.component.ts new file mode 100644 index 000000000..d7720aa4b --- /dev/null +++ b/tests/donut-mod/src/app.component.ts @@ -0,0 +1,39 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { IgxItemLegendComponent, IgxDoughnutChartComponent, IgxRingSeriesComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxItemLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDoughnutChartComponent + @ViewChild("series", { static: true } ) + private series: IgxRingSeriesComponent + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/tests/donut-mod/src/app.module.ts b/tests/donut-mod/src/app.module.ts new file mode 100644 index 000000000..7d4332c43 --- /dev/null +++ b/tests/donut-mod/src/app.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxItemLegendModule, IgxDoughnutChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxItemLegendModule, + IgxDoughnutChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/tests/donut-mod/src/config/tsconfig-es5.app.json b/tests/donut-mod/src/config/tsconfig-es5.app.json new file mode 100644 index 000000000..7e8983eb4 --- /dev/null +++ b/tests/donut-mod/src/config/tsconfig-es5.app.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.app.json", + "compilerOptions": { + "target": "ES2022" + } + } diff --git a/tests/donut-mod/src/config/tsconfig.app.json b/tests/donut-mod/src/config/tsconfig.app.json new file mode 100644 index 000000000..f722e3fe4 --- /dev/null +++ b/tests/donut-mod/src/config/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/app", + "baseUrl": "./", + "types": [] + }, + "files": [ + "../main.ts", + "../polyfills.ts" + ] +} diff --git a/tests/donut-mod/src/config/tsconfig.base.json b/tests/donut-mod/src/config/tsconfig.base.json new file mode 100644 index 000000000..cee300867 --- /dev/null +++ b/tests/donut-mod/src/config/tsconfig.base.json @@ -0,0 +1,24 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "outDir": "../../dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, // required for excel library + "target": "es2015", + "typeRoots": [ + "../../node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ], + "useDefineForClassFields": false + } +} diff --git a/tests/donut-mod/src/config/tsconfig.spec.json b/tests/donut-mod/src/config/tsconfig.spec.json new file mode 100644 index 000000000..6eb8c055c --- /dev/null +++ b/tests/donut-mod/src/config/tsconfig.spec.json @@ -0,0 +1,19 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/spec", + "baseUrl": "./", + "types": [ + "jasmine", + "node" + ] + }, + "files": [ + "../test.ts", + "../polyfills.ts" + ], + "include": [ + "../**/*.spec.ts", + "../**/*.d.ts" + ] +} diff --git a/tests/donut-mod/src/config/tsconfig.worker.json b/tests/donut-mod/src/config/tsconfig.worker.json new file mode 100644 index 000000000..4867b1275 --- /dev/null +++ b/tests/donut-mod/src/config/tsconfig.worker.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "../../out-tsc/worker", + "lib": [ + "ES2022", + "DOM" + ], + "types": [] + }, + "include": [ + "../**/*Worker.ts" + ] +} diff --git a/tests/donut-mod/src/environments/environment.prod.ts b/tests/donut-mod/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/tests/donut-mod/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/tests/donut-mod/src/environments/environment.ts b/tests/donut-mod/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/tests/donut-mod/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/tests/donut-mod/src/index.html b/tests/donut-mod/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/tests/donut-mod/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/tests/donut-mod/src/main.ts b/tests/donut-mod/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/tests/donut-mod/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/tests/donut-mod/src/polyfills.ts b/tests/donut-mod/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/tests/donut-mod/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/tests/donut-mod/src/styles.scss b/tests/donut-mod/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/tests/donut-mod/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/tests/donut-mod/src/typings.d.ts b/tests/donut-mod/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/tests/donut-mod/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/tests/donut-mod/tsconfig.json b/tests/donut-mod/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/tests/donut-mod/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file diff --git a/tests/donut-mod/tslint.json b/tests/donut-mod/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/tests/donut-mod/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} From 4302a8593c7113bda0823bdbca754e704754b6d2 Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Wed, 5 Jun 2024 12:44:10 -0400 Subject: [PATCH 078/154] move remaining app files from \src\app to \src\ (#188) * move app files up from src\app to src * sort routing modules --- browser/gulpfile.js | 1 + browser/scripts/browser.js | 40 +++++++++++++ browser/src/app/index/index.component.ts | 4 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../annotations/src/{app => }/app.module.ts | 0 .../category-chart/annotations/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../category-chart/high-frequency/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../high-volume/src/{app => }/app.module.ts | 0 .../category-chart/high-volume/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../highlighting/src/{app => }/app.module.ts | 0 .../category-chart/highlighting/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../line-chart-with-animations/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../line-chart-with-annotations/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../line-chart-with-legend/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../marker-templates/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../stack-columns/src/{app => }/app.module.ts | 0 .../category-chart/stack-columns/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../tooltip-template/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../tooltip-types/src/{app => }/app.module.ts | 0 .../category-chart/tooltip-types/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../trendline/src/{app => }/app.component.ts | 0 .../trendline/src/{app => }/app.module.ts | 0 .../category-chart/trendline/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../data-chart/axis-annotations/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../axis-crossing/src/{app => }/app.module.ts | 0 .../data-chart/axis-crossing/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../data-chart/axis-locations/src/main.ts | 2 +- .../axis-settings/src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../axis-settings/src/{app => }/app.module.ts | 0 .../data-chart/axis-settings/src/main.ts | 2 +- .../src/{app => }/SampleFinancialData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../axis-sharing/src/{app => }/app.module.ts | 0 .../data-chart/axis-sharing/src/main.ts | 2 +- .../src/{app => }/SampleCategoryData.ts | 0 .../src/{app => }/SampleFinancialData.ts | 0 .../src/{app => }/SampleScatterData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../axis-types/src/{app => }/app.component.ts | 0 .../axis-types/src/{app => }/app.module.ts | 0 .../charts/data-chart/axis-types/src/main.ts | 2 +- .../src/{app => }/SampleScatterStats.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../data-chart/chart-navigation/src/main.ts | 2 +- .../src/{app => }/SampleScatterStats.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../data-chart/chart-overview/src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../data-chart/chart-performance/src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../chart-synchronization/src/main.ts | 2 +- .../chart-titles/src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../chart-titles/src/{app => }/app.module.ts | 0 .../data-chart/chart-titles/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../column-chart-styling/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../data-chart/composite-chart/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../crosshair-layer-styling/src/main.ts | 2 +- .../src/{app => }/StocksHistory.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../custom-drawing-annotations/src/main.ts | 2 +- .../src/{app => }/EditableDataSource.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../custom-editing-data/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../final-value-layer-styling/src/main.ts | 2 +- .../legends/src/{app => }/SharedData.ts | 0 .../legends/src/{app => }/app.component.html | 0 .../legends/src/{app => }/app.component.scss | 0 .../legends/src/{app => }/app.component.ts | 0 .../legends/src/{app => }/app.module.ts | 0 samples/charts/data-chart/legends/src/main.ts | 2 +- .../src/{app => }/SamplePolarData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../data-chart/polar-chart-types/src/main.ts | 2 +- .../src/{app => }/SampleRadialData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../data-chart/radial-chart-types/src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../data-chart/series-animations/src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../data-chart/series-annotations/src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../series-highlighting/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../series-marker-template/src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../data-chart/series-markers/src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../data-chart/series-tooltips/src/main.ts | 2 +- .../src/{app => }/SampleFinancialData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../data-chart/series-trendlines/src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../series-value-overlay/src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../stacked-chart-types/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../data-chart/tooltip-template/src/main.ts | 2 +- .../src/{app => }/SampleCategoryData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-category-area-series/src/main.ts | 2 +- .../src/{app => }/SampleCategoryData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-category-bar-series/src/main.ts | 2 +- .../src/{app => }/SampleCategoryData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-category-column-series/src/main.ts | 2 +- .../src/{app => }/SampleCategoryData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-category-line-series/src/main.ts | 2 +- .../src/{app => }/SampleCategoryData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-category-point-series/src/main.ts | 2 +- .../src/{app => }/SampleCategoryData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-category-series/src/main.ts | 2 +- .../src/{app => }/SampleCategoryData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../src/main.ts | 2 +- .../src/{app => }/SampleCategoryData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-category-spline-series/src/main.ts | 2 +- .../src/{app => }/SampleCategoryData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../src/main.ts | 2 +- .../src/{app => }/SampleCategoryData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../src/main.ts | 2 +- .../src/{app => }/SampleCategoryData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../src/main.ts | 2 +- .../src/{app => }/SampleFinancialData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../src/main.ts | 2 +- .../src/{app => }/SampleFinancialData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../src/main.ts | 2 +- .../src/{app => }/SampleFinancialData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../src/main.ts | 2 +- .../src/{app => }/SampleFinancialData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../src/main.ts | 2 +- .../src/{app => }/SampleFinancialData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-financial-ohlc-series/src/main.ts | 2 +- .../src/{app => }/SampleFinancialData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-financial-overlays/src/main.ts | 2 +- .../src/{app => }/SampleFinancialData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-financial-series/src/main.ts | 2 +- .../src/{app => }/SampleRadialData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-radial-area-series/src/main.ts | 2 +- .../src/{app => }/SampleRadialData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-radial-column-series/src/main.ts | 2 +- .../src/{app => }/SampleRadialData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-radial-line-series/src/main.ts | 2 +- .../src/{app => }/SampleRadialData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-radial-pie-series/src/main.ts | 2 +- .../src/{app => }/SampleRangeData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-range-area-series/src/main.ts | 2 +- .../src/{app => }/SampleRangeData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-range-column-series/src/main.ts | 2 +- .../src/{app => }/SampleRangeData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../data-chart/type-range-series/src/main.ts | 2 +- .../src/{app => }/SampleScatterData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-scatter-area-series/src/main.ts | 2 +- .../src/{app => }/SampleScatterStats.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-scatter-bubble-series/src/main.ts | 2 +- .../src/{app => }/SampleScatterData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-scatter-contour-series/src/main.ts | 2 +- .../src/{app => }/SampleDensityData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-scatter-hd-series/src/main.ts | 2 +- .../src/{app => }/SampleScatterStats.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-scatter-line-series/src/main.ts | 2 +- .../src/{app => }/SampleScatterStats.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-scatter-point-series/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-scatter-polygon-series/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-scatter-polyline-series/src/main.ts | 2 +- .../src/{app => }/SampleScatterStats.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-scatter-series/src/main.ts | 2 +- .../src/{app => }/SampleScatterStats.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-scatter-spline-series/src/main.ts | 2 +- .../src/{app => }/SampleShapeData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../data-chart/type-shape-series/src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-stacked-100-area-series/src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-stacked-100-bar-series/src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-stacked-100-line-series/src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-stacked-area-series/src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-stacked-bar-series/src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-stacked-column-series/src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-stacked-line-series/src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../src/main.ts | 2 +- .../src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-stacked-spline-series/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../animation/src/{app => }/app.component.ts | 0 .../animation/src/{app => }/app.module.ts | 0 .../doughnut-chart/animation/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../explosion/src/{app => }/app.component.ts | 0 .../explosion/src/{app => }/app.module.ts | 0 .../doughnut-chart/explosion/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../selection/src/{app => }/app.component.ts | 0 .../selection/src/{app => }/app.module.ts | 0 .../doughnut-chart/selection/src/main.ts | 2 +- .../src/{app => }/StocksUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../annotations/src/{app => }/app.module.ts | 0 .../financial-chart/annotations/src/main.ts | 2 +- .../src/{app => }/FinancialDataService.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../axis-types/src/{app => }/app.component.ts | 0 .../axis-types/src/{app => }/app.module.ts | 0 .../financial-chart/axis-types/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../high-frequency/src/main.ts | 2 +- .../{app => }/GenerateHourlyPricesService.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../high-volume/src/{app => }/app.module.ts | 0 .../financial-chart/high-volume/src/main.ts | 2 +- .../src/{app => }/FinancialDataService.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../indicator-customization/src/main.ts | 2 +- .../src/{app => }/FinancialDataService.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../indicator-types/src/main.ts | 2 +- .../src/{app => }/FinancialDataService.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../multiple-data/src/{app => }/app.module.ts | 0 .../financial-chart/multiple-data/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../multiple-feeds/src/main.ts | 2 +- .../src/{app => }/FinancialDataService.ts | 0 .../overview/src/{app => }/app.component.html | 0 .../overview/src/{app => }/app.component.scss | 0 .../overview/src/{app => }/app.component.ts | 0 .../overview/src/{app => }/app.module.ts | 0 .../financial-chart/overview/src/main.ts | 2 +- .../panes/src/{app => }/StockDataService.ts | 0 .../panes/src/{app => }/app.component.html | 0 .../panes/src/{app => }/app.component.scss | 0 .../panes/src/{app => }/app.component.ts | 0 .../panes/src/{app => }/app.module.ts | 0 .../charts/financial-chart/panes/src/main.ts | 2 +- .../{app => }/GenerateOhlcPricesService.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../performance/src/{app => }/app.module.ts | 0 .../financial-chart/performance/src/main.ts | 2 +- .../src/{app => }/StockIndexDataService.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../stock-index-chart/src/main.ts | 2 +- .../src/{app => }/FinancialDataService.ts | 0 .../styling/src/{app => }/app.component.html | 0 .../styling/src/{app => }/app.component.scss | 0 .../styling/src/{app => }/app.component.ts | 0 .../styling/src/{app => }/app.module.ts | 0 .../financial-chart/styling/src/main.ts | 2 +- .../theming/src/{app => }/StockDataService.ts | 0 .../theming/src/{app => }/app.component.html | 0 .../theming/src/{app => }/app.component.scss | 0 .../theming/src/{app => }/app.component.ts | 0 .../theming/src/{app => }/app.module.ts | 0 .../{app => }/dark-theme-financial-chart.css | 0 .../src/{app => }/dark-theme-legend.css | 0 .../src/{app => }/dark-theme-tooltips.css | 0 .../src/{app => }/dark-theme-zoom-slider.css | 0 .../financial-chart/theming/src/main.ts | 2 +- .../src/{app => }/FinancialDataService.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../time-based-data/src/main.ts | 2 +- .../titles/src/{app => }/StockDataService.ts | 0 .../titles/src/{app => }/app.component.html | 0 .../titles/src/{app => }/app.component.scss | 0 .../titles/src/{app => }/app.component.ts | 0 .../titles/src/{app => }/app.module.ts | 0 .../charts/financial-chart/titles/src/main.ts | 2 +- .../src/{app => }/FinancialDataService.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../tooltip-template/src/main.ts | 2 +- .../src/{app => }/FinancialDataService.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../tooltip-types/src/{app => }/app.module.ts | 0 .../financial-chart/tooltip-types/src/main.ts | 2 +- .../src/{app => }/FinancialDataService.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../trendlines/src/{app => }/app.component.ts | 0 .../trendlines/src/{app => }/app.module.ts | 0 .../financial-chart/trendlines/src/main.ts | 2 +- .../src/{app => }/FinancialDataService.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../volume-types/src/{app => }/app.module.ts | 0 .../financial-chart/volume-types/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../animation/src/{app => }/app.component.ts | 0 .../animation/src/{app => }/app.module.ts | 0 .../charts/pie-chart/animation/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../explosion/src/{app => }/app.component.ts | 0 .../explosion/src/{app => }/app.module.ts | 0 .../charts/pie-chart/explosion/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../selection/src/{app => }/app.component.ts | 0 .../selection/src/{app => }/app.module.ts | 0 .../charts/pie-chart/selection/src/main.ts | 2 +- .../display-types/src/{app => }/SharedData.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../display-types/src/{app => }/app.module.ts | 0 .../sparkline/display-types/src/main.ts | 2 +- .../sparkline/grid/src/{app => }/Products.ts | 0 .../grid/src/{app => }/app.component.html | 0 .../grid/src/{app => }/app.component.scss | 0 .../grid/src/{app => }/app.component.ts | 0 .../grid/src/{app => }/app.module.ts | 0 samples/charts/sparkline/grid/src/main.ts | 2 +- .../events/src/{app => }/app.component.html | 0 .../events/src/{app => }/app.component.scss | 0 .../events/src/{app => }/app.component.ts | 0 .../events/src/{app => }/app.module.ts | 0 samples/charts/tree-map/events/src/main.ts | 2 +- .../highlighting-percent-based/ReadMe.md | 58 +++++++++++++++++++ .../src/{app => }/SampleScatterStats.ts | 0 .../overview/src/{app => }/app.component.html | 0 .../overview/src/{app => }/app.component.scss | 0 .../overview/src/{app => }/app.component.ts | 0 .../overview/src/{app => }/app.module.ts | 0 .../charts/zoomslider/overview/src/main.ts | 2 +- .../src/{app => }/ExcelUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../operations-on-workbooks/src/main.ts | 2 +- .../src/{app => }/ExcelUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../operations-on-worksheets/src/main.ts | 2 +- .../overview/src/{app => }/ExcelUtility.ts | 0 .../overview/src/{app => }/app.component.html | 0 .../overview/src/{app => }/app.component.scss | 0 .../overview/src/{app => }/app.component.ts | 0 .../overview/src/{app => }/app.module.ts | 0 .../excel/excel-library/overview/src/main.ts | 2 +- .../src/{app => }/ExcelUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../working-with-cells/src/main.ts | 2 +- .../src/{app => }/ExcelUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../working-with-charts/src/main.ts | 2 +- .../src/{app => }/ExcelUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../working-with-sparklines/src/main.ts | 2 +- .../src/{app => }/ExcelUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../working-with-tables/src/main.ts | 2 +- .../activation/src/{app => }/ExcelUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../activation/src/{app => }/app.component.ts | 0 .../activation/src/{app => }/app.module.ts | 0 .../excel/spreadsheet/activation/src/main.ts | 2 +- .../src/{app => }/ExcelUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../adapter-chart/src/{app => }/app.module.ts | 0 .../spreadsheet/adapter-chart/src/main.ts | 2 +- .../src/{app => }/ExcelUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../adapter-combo/src/{app => }/app.module.ts | 0 .../spreadsheet/adapter-combo/src/main.ts | 2 +- .../clipboard/src/{app => }/ExcelUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../clipboard/src/{app => }/app.component.ts | 0 .../clipboard/src/{app => }/app.module.ts | 0 .../excel/spreadsheet/clipboard/src/main.ts | 2 +- .../commands/src/{app => }/ExcelUtility.ts | 0 .../commands/src/{app => }/app.component.html | 0 .../commands/src/{app => }/app.component.scss | 0 .../commands/src/{app => }/app.component.ts | 0 .../commands/src/{app => }/app.module.ts | 0 .../excel/spreadsheet/commands/src/main.ts | 2 +- .../src/{app => }/ExcelUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../conditional-formatting/src/main.ts | 2 +- .../src/{app => }/ExcelUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../spreadsheet/config-options/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../spreadsheet/data-validation/src/main.ts | 2 +- .../hyperlinks/src/{app => }/ExcelUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../hyperlinks/src/{app => }/app.component.ts | 0 .../hyperlinks/src/{app => }/app.module.ts | 0 .../excel/spreadsheet/hyperlinks/src/main.ts | 2 +- .../overview/src/{app => }/ExcelUtility.ts | 0 .../overview/src/{app => }/app.component.html | 0 .../overview/src/{app => }/app.component.scss | 0 .../overview/src/{app => }/app.component.ts | 0 .../overview/src/{app => }/app.module.ts | 0 .../excel/spreadsheet/overview/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../animation/src/{app => }/app.component.ts | 0 .../animation/src/{app => }/app.module.ts | 0 .../gauges/bullet-graph/animation/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../background/src/{app => }/app.component.ts | 0 .../background/src/{app => }/app.module.ts | 0 .../bullet-graph/background/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../bullet-graph/highlight-needle/src/main.ts | 2 +- .../labels/src/{app => }/app.component.html | 0 .../labels/src/{app => }/app.component.scss | 0 .../labels/src/{app => }/app.component.ts | 0 .../labels/src/{app => }/app.module.ts | 0 .../gauges/bullet-graph/labels/src/main.ts | 2 +- .../measures/src/{app => }/app.component.html | 0 .../measures/src/{app => }/app.component.scss | 0 .../measures/src/{app => }/app.component.ts | 0 .../measures/src/{app => }/app.module.ts | 0 .../gauges/bullet-graph/measures/src/main.ts | 2 +- .../ranges/src/{app => }/app.component.html | 0 .../ranges/src/{app => }/app.component.scss | 0 .../ranges/src/{app => }/app.component.ts | 0 .../ranges/src/{app => }/app.module.ts | 0 .../gauges/bullet-graph/ranges/src/main.ts | 2 +- .../scale/src/{app => }/app.component.html | 0 .../scale/src/{app => }/app.component.scss | 0 .../scale/src/{app => }/app.component.ts | 0 .../scale/src/{app => }/app.module.ts | 0 samples/gauges/bullet-graph/scale/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../tickmarks/src/{app => }/app.component.ts | 0 .../tickmarks/src/{app => }/app.module.ts | 0 .../gauges/bullet-graph/tickmarks/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../animation/src/{app => }/app.component.ts | 0 .../animation/src/{app => }/app.module.ts | 0 .../gauges/linear-gauge/animation/src/main.ts | 2 +- .../backing/src/{app => }/app.component.html | 0 .../backing/src/{app => }/app.component.scss | 0 .../backing/src/{app => }/app.component.ts | 0 .../backing/src/{app => }/app.module.ts | 0 .../gauges/linear-gauge/backing/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../linear-gauge/highlight-needle/src/main.ts | 2 +- .../labels/src/{app => }/app.component.html | 0 .../labels/src/{app => }/app.component.scss | 0 .../labels/src/{app => }/app.component.ts | 0 .../labels/src/{app => }/app.module.ts | 0 .../gauges/linear-gauge/labels/src/main.ts | 2 +- .../needle/src/{app => }/app.component.html | 0 .../needle/src/{app => }/app.component.scss | 0 .../needle/src/{app => }/app.component.ts | 0 .../needle/src/{app => }/app.module.ts | 0 .../gauges/linear-gauge/needle/src/main.ts | 2 +- .../ranges/src/{app => }/app.component.html | 0 .../ranges/src/{app => }/app.component.scss | 0 .../ranges/src/{app => }/app.component.ts | 0 .../ranges/src/{app => }/app.module.ts | 0 .../gauges/linear-gauge/ranges/src/main.ts | 2 +- .../scale/src/{app => }/app.component.html | 0 .../scale/src/{app => }/app.component.scss | 0 .../scale/src/{app => }/app.component.ts | 0 .../scale/src/{app => }/app.module.ts | 0 samples/gauges/linear-gauge/scale/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../tickmarks/src/{app => }/app.component.ts | 0 .../tickmarks/src/{app => }/app.module.ts | 0 .../gauges/linear-gauge/tickmarks/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../animation/src/{app => }/app.component.ts | 0 .../animation/src/{app => }/app.module.ts | 0 .../gauges/radial-gauge/animation/src/main.ts | 2 +- .../backing/src/{app => }/app.component.html | 0 .../backing/src/{app => }/app.component.scss | 0 .../backing/src/{app => }/app.component.ts | 0 .../backing/src/{app => }/app.module.ts | 0 .../gauges/radial-gauge/backing/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../radial-gauge/highlight-needle/src/main.ts | 2 +- .../labels/src/{app => }/app.component.html | 0 .../labels/src/{app => }/app.component.scss | 0 .../labels/src/{app => }/app.component.ts | 0 .../labels/src/{app => }/app.module.ts | 0 .../gauges/radial-gauge/labels/src/main.ts | 2 +- .../needle/src/{app => }/app.component.html | 0 .../needle/src/{app => }/app.component.scss | 0 .../needle/src/{app => }/app.component.ts | 0 .../needle/src/{app => }/app.module.ts | 0 .../gauges/radial-gauge/needle/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../radial-gauge/optical-scaling/src/main.ts | 2 +- .../ranges/src/{app => }/app.component.html | 0 .../ranges/src/{app => }/app.component.scss | 0 .../ranges/src/{app => }/app.component.ts | 0 .../ranges/src/{app => }/app.module.ts | 0 .../gauges/radial-gauge/ranges/src/main.ts | 2 +- .../scale/src/{app => }/app.component.html | 0 .../scale/src/{app => }/app.component.scss | 0 .../scale/src/{app => }/app.component.ts | 0 .../scale/src/{app => }/app.module.ts | 0 samples/gauges/radial-gauge/scale/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../tickmarks/src/{app => }/app.component.ts | 0 .../tickmarks/src/{app => }/app.module.ts | 0 .../gauges/radial-gauge/tickmarks/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../maps/geo-map/binding-data-csv/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../binding-data-json-points/src/main.ts | 2 +- .../src/{app => }/WorldUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../geo-map/binding-data-model/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../binding-multiple-shapes/src/main.ts | 2 +- .../src/{app => }/WorldConnections.ts | 0 .../src/{app => }/WorldLocations.ts | 0 .../src/{app => }/WorldUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../binding-multiple-sources/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../geo-map/binding-shp-points/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../geo-map/binding-shp-polygons/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../geo-map/binding-shp-polylines/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../maps/geo-map/custom-tooltips/src/main.ts | 2 +- .../src/{app => }/MapUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../geo-map/display-bing-imagery/src/main.ts | 2 +- .../src/{app => }/EsriUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../geo-map/display-esri-imagery/src/main.ts | 2 +- .../src/{app => }/HeatmapWorker.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../geo-map/display-heat-imagery/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../geo-map/display-osm-imagery/src/main.ts | 2 +- .../src/{app => }/WorldLocations.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../maps/geo-map/marker-layouts/src/main.ts | 2 +- .../src/{app => }/WorldLocations.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../maps/geo-map/marker-template/src/main.ts | 2 +- .../src/{app => }/WorldLocations.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../marker-type/src/{app => }/app.module.ts | 0 samples/maps/geo-map/marker-type/src/main.ts | 2 +- .../navigation/src/{app => }/EsriUtility.ts | 0 .../navigation/src/{app => }/MapUtility.ts | 0 .../navigation/src/{app => }/WorldUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../navigation/src/{app => }/app.component.ts | 0 .../navigation/src/{app => }/app.module.ts | 0 samples/maps/geo-map/navigation/src/main.ts | 2 +- .../overview/src/{app => }/app.component.html | 0 .../overview/src/{app => }/app.component.scss | 0 .../overview/src/{app => }/app.component.ts | 0 .../overview/src/{app => }/app.module.ts | 0 samples/maps/geo-map/overview/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../shape-styling/src/{app => }/app.module.ts | 0 .../maps/geo-map/shape-styling/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../geo-map/triangulating-data/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-scatter-area-series/src/main.ts | 2 +- .../src/{app => }/WorldLocations.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-scatter-bubble-series/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-scatter-contour-series/src/main.ts | 2 +- .../src/{app => }/WorldUtility.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-scatter-density-series/src/main.ts | 2 +- .../src/{app => }/WorldLocations.ts | 0 .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-scatter-symbol-series/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-shape-polygon-series/src/main.ts | 2 +- .../src/{app => }/app.component.html | 0 .../src/{app => }/app.component.scss | 0 .../src/{app => }/app.component.ts | 0 .../src/{app => }/app.module.ts | 0 .../type-shape-polyline-series/src/main.ts | 2 +- 1080 files changed, 291 insertions(+), 192 deletions(-) rename samples/charts/category-chart/annotations/src/{app => }/app.component.html (100%) rename samples/charts/category-chart/annotations/src/{app => }/app.component.scss (100%) rename samples/charts/category-chart/annotations/src/{app => }/app.component.ts (100%) rename samples/charts/category-chart/annotations/src/{app => }/app.module.ts (100%) rename samples/charts/category-chart/column-chart-with-highlighting/src/{app => }/app.component.html (100%) rename samples/charts/category-chart/column-chart-with-highlighting/src/{app => }/app.component.scss (100%) rename samples/charts/category-chart/column-chart-with-highlighting/src/{app => }/app.component.ts (100%) rename samples/charts/category-chart/column-chart-with-highlighting/src/{app => }/app.module.ts (100%) rename samples/charts/category-chart/high-frequency/src/{app => }/app.component.html (100%) rename samples/charts/category-chart/high-frequency/src/{app => }/app.component.scss (100%) rename samples/charts/category-chart/high-frequency/src/{app => }/app.component.ts (100%) rename samples/charts/category-chart/high-frequency/src/{app => }/app.module.ts (100%) rename samples/charts/category-chart/high-volume/src/{app => }/app.component.html (100%) rename samples/charts/category-chart/high-volume/src/{app => }/app.component.scss (100%) rename samples/charts/category-chart/high-volume/src/{app => }/app.component.ts (100%) rename samples/charts/category-chart/high-volume/src/{app => }/app.module.ts (100%) rename samples/charts/category-chart/highlighting/src/{app => }/app.component.html (100%) rename samples/charts/category-chart/highlighting/src/{app => }/app.component.scss (100%) rename samples/charts/category-chart/highlighting/src/{app => }/app.component.ts (100%) rename samples/charts/category-chart/highlighting/src/{app => }/app.module.ts (100%) rename samples/charts/category-chart/line-chart-with-animations/src/{app => }/app.component.html (100%) rename samples/charts/category-chart/line-chart-with-animations/src/{app => }/app.component.scss (100%) rename samples/charts/category-chart/line-chart-with-animations/src/{app => }/app.component.ts (100%) rename samples/charts/category-chart/line-chart-with-animations/src/{app => }/app.module.ts (100%) rename samples/charts/category-chart/line-chart-with-annotations/src/{app => }/app.component.html (100%) rename samples/charts/category-chart/line-chart-with-annotations/src/{app => }/app.component.scss (100%) rename samples/charts/category-chart/line-chart-with-annotations/src/{app => }/app.component.ts (100%) rename samples/charts/category-chart/line-chart-with-annotations/src/{app => }/app.module.ts (100%) rename samples/charts/category-chart/line-chart-with-legend/src/{app => }/app.component.html (100%) rename samples/charts/category-chart/line-chart-with-legend/src/{app => }/app.component.scss (100%) rename samples/charts/category-chart/line-chart-with-legend/src/{app => }/app.component.ts (100%) rename samples/charts/category-chart/line-chart-with-legend/src/{app => }/app.module.ts (100%) rename samples/charts/category-chart/marker-templates/src/{app => }/app.component.html (100%) rename samples/charts/category-chart/marker-templates/src/{app => }/app.component.scss (100%) rename samples/charts/category-chart/marker-templates/src/{app => }/app.component.ts (100%) rename samples/charts/category-chart/marker-templates/src/{app => }/app.module.ts (100%) rename samples/charts/category-chart/stack-columns/src/{app => }/app.component.html (100%) rename samples/charts/category-chart/stack-columns/src/{app => }/app.component.scss (100%) rename samples/charts/category-chart/stack-columns/src/{app => }/app.component.ts (100%) rename samples/charts/category-chart/stack-columns/src/{app => }/app.module.ts (100%) rename samples/charts/category-chart/tooltip-template/src/{app => }/app.component.html (100%) rename samples/charts/category-chart/tooltip-template/src/{app => }/app.component.scss (100%) rename samples/charts/category-chart/tooltip-template/src/{app => }/app.component.ts (100%) rename samples/charts/category-chart/tooltip-template/src/{app => }/app.module.ts (100%) rename samples/charts/category-chart/tooltip-types/src/{app => }/app.component.html (100%) rename samples/charts/category-chart/tooltip-types/src/{app => }/app.component.scss (100%) rename samples/charts/category-chart/tooltip-types/src/{app => }/app.component.ts (100%) rename samples/charts/category-chart/tooltip-types/src/{app => }/app.module.ts (100%) rename samples/charts/category-chart/trendline/src/{app => }/app.component.html (100%) rename samples/charts/category-chart/trendline/src/{app => }/app.component.scss (100%) rename samples/charts/category-chart/trendline/src/{app => }/app.component.ts (100%) rename samples/charts/category-chart/trendline/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/axis-annotations/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/axis-annotations/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/axis-annotations/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/axis-annotations/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/axis-crossing/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/axis-crossing/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/axis-crossing/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/axis-crossing/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/axis-locations/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/axis-locations/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/axis-locations/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/axis-locations/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/axis-settings/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/axis-settings/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/axis-settings/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/axis-settings/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/axis-settings/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/axis-sharing/src/{app => }/SampleFinancialData.ts (100%) rename samples/charts/data-chart/axis-sharing/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/axis-sharing/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/axis-sharing/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/axis-sharing/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/axis-types/src/{app => }/SampleCategoryData.ts (100%) rename samples/charts/data-chart/axis-types/src/{app => }/SampleFinancialData.ts (100%) rename samples/charts/data-chart/axis-types/src/{app => }/SampleScatterData.ts (100%) rename samples/charts/data-chart/axis-types/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/axis-types/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/axis-types/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/axis-types/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/chart-navigation/src/{app => }/SampleScatterStats.ts (100%) rename samples/charts/data-chart/chart-navigation/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/chart-navigation/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/chart-navigation/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/chart-navigation/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/chart-overview/src/{app => }/SampleScatterStats.ts (100%) rename samples/charts/data-chart/chart-overview/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/chart-overview/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/chart-overview/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/chart-overview/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/chart-performance/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/chart-performance/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/chart-performance/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/chart-performance/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/chart-performance/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/chart-synchronization/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/chart-synchronization/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/chart-synchronization/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/chart-synchronization/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/chart-synchronization/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/chart-titles/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/chart-titles/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/chart-titles/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/chart-titles/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/chart-titles/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/column-chart-styling/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/column-chart-styling/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/column-chart-styling/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/column-chart-styling/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/composite-chart/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/composite-chart/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/composite-chart/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/composite-chart/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/crosshair-layer-styling/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/crosshair-layer-styling/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/crosshair-layer-styling/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/crosshair-layer-styling/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/custom-drawing-annotations/src/{app => }/StocksHistory.ts (100%) rename samples/charts/data-chart/custom-drawing-annotations/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/custom-drawing-annotations/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/custom-drawing-annotations/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/custom-drawing-annotations/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/custom-editing-data/src/{app => }/EditableDataSource.ts (100%) rename samples/charts/data-chart/custom-editing-data/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/custom-editing-data/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/custom-editing-data/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/custom-editing-data/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/final-value-layer-styling/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/final-value-layer-styling/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/final-value-layer-styling/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/final-value-layer-styling/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/legends/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/legends/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/legends/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/legends/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/legends/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/polar-chart-types/src/{app => }/SamplePolarData.ts (100%) rename samples/charts/data-chart/polar-chart-types/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/polar-chart-types/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/polar-chart-types/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/polar-chart-types/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/radial-chart-types/src/{app => }/SampleRadialData.ts (100%) rename samples/charts/data-chart/radial-chart-types/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/radial-chart-types/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/radial-chart-types/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/radial-chart-types/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/series-animations/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/series-animations/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/series-animations/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/series-animations/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/series-animations/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/series-annotations/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/series-annotations/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/series-annotations/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/series-annotations/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/series-annotations/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/series-highlighting/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/series-highlighting/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/series-highlighting/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/series-highlighting/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/series-highlighting/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/series-marker-template/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/series-marker-template/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/series-marker-template/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/series-marker-template/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/series-markers/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/series-markers/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/series-markers/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/series-markers/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/series-markers/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/series-tooltips/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/series-tooltips/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/series-tooltips/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/series-tooltips/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/series-tooltips/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/series-trendlines/src/{app => }/SampleFinancialData.ts (100%) rename samples/charts/data-chart/series-trendlines/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/series-trendlines/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/series-trendlines/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/series-trendlines/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/series-value-overlay/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/series-value-overlay/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/series-value-overlay/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/series-value-overlay/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/series-value-overlay/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/stacked-chart-types/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/stacked-chart-types/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/stacked-chart-types/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/stacked-chart-types/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/stacked-chart-types/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/tooltip-template/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/tooltip-template/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/tooltip-template/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/tooltip-template/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-category-area-series/src/{app => }/SampleCategoryData.ts (100%) rename samples/charts/data-chart/type-category-area-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-category-area-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-category-area-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-category-area-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-category-bar-series/src/{app => }/SampleCategoryData.ts (100%) rename samples/charts/data-chart/type-category-bar-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-category-bar-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-category-bar-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-category-bar-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-category-column-series/src/{app => }/SampleCategoryData.ts (100%) rename samples/charts/data-chart/type-category-column-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-category-column-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-category-column-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-category-column-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-category-line-series/src/{app => }/SampleCategoryData.ts (100%) rename samples/charts/data-chart/type-category-line-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-category-line-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-category-line-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-category-line-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-category-point-series/src/{app => }/SampleCategoryData.ts (100%) rename samples/charts/data-chart/type-category-point-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-category-point-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-category-point-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-category-point-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-category-series/src/{app => }/SampleCategoryData.ts (100%) rename samples/charts/data-chart/type-category-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-category-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-category-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-category-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-category-spline-area-series/src/{app => }/SampleCategoryData.ts (100%) rename samples/charts/data-chart/type-category-spline-area-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-category-spline-area-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-category-spline-area-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-category-spline-area-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-category-spline-series/src/{app => }/SampleCategoryData.ts (100%) rename samples/charts/data-chart/type-category-spline-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-category-spline-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-category-spline-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-category-spline-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-category-step-area-series/src/{app => }/SampleCategoryData.ts (100%) rename samples/charts/data-chart/type-category-step-area-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-category-step-area-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-category-step-area-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-category-step-area-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-category-step-line-series/src/{app => }/SampleCategoryData.ts (100%) rename samples/charts/data-chart/type-category-step-line-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-category-step-line-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-category-step-line-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-category-step-line-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-category-waterfall-series/src/{app => }/SampleCategoryData.ts (100%) rename samples/charts/data-chart/type-category-waterfall-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-category-waterfall-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-category-waterfall-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-category-waterfall-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-financial-area-indicators/src/{app => }/SampleFinancialData.ts (100%) rename samples/charts/data-chart/type-financial-area-indicators/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-financial-area-indicators/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-financial-area-indicators/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-financial-area-indicators/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-financial-candlestick-series/src/{app => }/SampleFinancialData.ts (100%) rename samples/charts/data-chart/type-financial-candlestick-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-financial-candlestick-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-financial-candlestick-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-financial-candlestick-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-financial-column-indicators/src/{app => }/SampleFinancialData.ts (100%) rename samples/charts/data-chart/type-financial-column-indicators/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-financial-column-indicators/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-financial-column-indicators/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-financial-column-indicators/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-financial-line-indicators/src/{app => }/SampleFinancialData.ts (100%) rename samples/charts/data-chart/type-financial-line-indicators/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-financial-line-indicators/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-financial-line-indicators/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-financial-line-indicators/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-financial-ohlc-series/src/{app => }/SampleFinancialData.ts (100%) rename samples/charts/data-chart/type-financial-ohlc-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-financial-ohlc-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-financial-ohlc-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-financial-ohlc-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-financial-overlays/src/{app => }/SampleFinancialData.ts (100%) rename samples/charts/data-chart/type-financial-overlays/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-financial-overlays/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-financial-overlays/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-financial-overlays/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-financial-series/src/{app => }/SampleFinancialData.ts (100%) rename samples/charts/data-chart/type-financial-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-financial-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-financial-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-financial-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-radial-area-series/src/{app => }/SampleRadialData.ts (100%) rename samples/charts/data-chart/type-radial-area-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-radial-area-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-radial-area-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-radial-area-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-radial-column-series/src/{app => }/SampleRadialData.ts (100%) rename samples/charts/data-chart/type-radial-column-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-radial-column-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-radial-column-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-radial-column-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-radial-line-series/src/{app => }/SampleRadialData.ts (100%) rename samples/charts/data-chart/type-radial-line-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-radial-line-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-radial-line-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-radial-line-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-radial-pie-series/src/{app => }/SampleRadialData.ts (100%) rename samples/charts/data-chart/type-radial-pie-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-radial-pie-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-radial-pie-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-radial-pie-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-range-area-series/src/{app => }/SampleRangeData.ts (100%) rename samples/charts/data-chart/type-range-area-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-range-area-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-range-area-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-range-area-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-range-column-series/src/{app => }/SampleRangeData.ts (100%) rename samples/charts/data-chart/type-range-column-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-range-column-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-range-column-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-range-column-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-range-series/src/{app => }/SampleRangeData.ts (100%) rename samples/charts/data-chart/type-range-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-range-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-range-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-range-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-scatter-area-series/src/{app => }/SampleScatterData.ts (100%) rename samples/charts/data-chart/type-scatter-area-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-scatter-area-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-scatter-area-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-scatter-area-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-scatter-bubble-series/src/{app => }/SampleScatterStats.ts (100%) rename samples/charts/data-chart/type-scatter-bubble-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-scatter-bubble-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-scatter-bubble-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-scatter-bubble-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-scatter-contour-series/src/{app => }/SampleScatterData.ts (100%) rename samples/charts/data-chart/type-scatter-contour-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-scatter-contour-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-scatter-contour-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-scatter-contour-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-scatter-hd-series/src/{app => }/SampleDensityData.ts (100%) rename samples/charts/data-chart/type-scatter-hd-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-scatter-hd-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-scatter-hd-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-scatter-hd-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-scatter-line-series/src/{app => }/SampleScatterStats.ts (100%) rename samples/charts/data-chart/type-scatter-line-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-scatter-line-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-scatter-line-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-scatter-line-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-scatter-point-series/src/{app => }/SampleScatterStats.ts (100%) rename samples/charts/data-chart/type-scatter-point-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-scatter-point-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-scatter-point-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-scatter-point-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-scatter-polygon-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-scatter-polygon-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-scatter-polygon-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-scatter-polygon-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-scatter-polyline-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-scatter-polyline-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-scatter-polyline-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-scatter-polyline-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-scatter-series/src/{app => }/SampleScatterStats.ts (100%) rename samples/charts/data-chart/type-scatter-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-scatter-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-scatter-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-scatter-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-scatter-spline-series/src/{app => }/SampleScatterStats.ts (100%) rename samples/charts/data-chart/type-scatter-spline-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-scatter-spline-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-scatter-spline-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-scatter-spline-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-shape-series/src/{app => }/SampleShapeData.ts (100%) rename samples/charts/data-chart/type-shape-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-shape-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-shape-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-shape-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-stacked-100-area-series/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/type-stacked-100-area-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-stacked-100-area-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-stacked-100-area-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-stacked-100-area-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-stacked-100-bar-series/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/type-stacked-100-bar-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-stacked-100-bar-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-stacked-100-bar-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-stacked-100-bar-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-stacked-100-column-series/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/type-stacked-100-column-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-stacked-100-column-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-stacked-100-column-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-stacked-100-column-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-stacked-100-line-series/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/type-stacked-100-line-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-stacked-100-line-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-stacked-100-line-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-stacked-100-line-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-stacked-100-spline-area-series/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/type-stacked-100-spline-area-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-stacked-100-spline-area-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-stacked-100-spline-area-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-stacked-100-spline-area-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-stacked-100-spline-series/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/type-stacked-100-spline-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-stacked-100-spline-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-stacked-100-spline-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-stacked-100-spline-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-stacked-area-series/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/type-stacked-area-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-stacked-area-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-stacked-area-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-stacked-area-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-stacked-bar-series/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/type-stacked-bar-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-stacked-bar-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-stacked-bar-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-stacked-bar-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-stacked-column-series/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/type-stacked-column-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-stacked-column-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-stacked-column-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-stacked-column-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-stacked-line-series/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/type-stacked-line-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-stacked-line-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-stacked-line-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-stacked-line-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-stacked-spline-area-series/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/type-stacked-spline-area-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-stacked-spline-area-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-stacked-spline-area-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-stacked-spline-area-series/src/{app => }/app.module.ts (100%) rename samples/charts/data-chart/type-stacked-spline-series/src/{app => }/SharedData.ts (100%) rename samples/charts/data-chart/type-stacked-spline-series/src/{app => }/app.component.html (100%) rename samples/charts/data-chart/type-stacked-spline-series/src/{app => }/app.component.scss (100%) rename samples/charts/data-chart/type-stacked-spline-series/src/{app => }/app.component.ts (100%) rename samples/charts/data-chart/type-stacked-spline-series/src/{app => }/app.module.ts (100%) rename samples/charts/doughnut-chart/animation/src/{app => }/app.component.html (100%) rename samples/charts/doughnut-chart/animation/src/{app => }/app.component.scss (100%) rename samples/charts/doughnut-chart/animation/src/{app => }/app.component.ts (100%) rename samples/charts/doughnut-chart/animation/src/{app => }/app.module.ts (100%) rename samples/charts/doughnut-chart/explosion/src/{app => }/app.component.html (100%) rename samples/charts/doughnut-chart/explosion/src/{app => }/app.component.scss (100%) rename samples/charts/doughnut-chart/explosion/src/{app => }/app.component.ts (100%) rename samples/charts/doughnut-chart/explosion/src/{app => }/app.module.ts (100%) rename samples/charts/doughnut-chart/selection/src/{app => }/app.component.html (100%) rename samples/charts/doughnut-chart/selection/src/{app => }/app.component.scss (100%) rename samples/charts/doughnut-chart/selection/src/{app => }/app.component.ts (100%) rename samples/charts/doughnut-chart/selection/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/annotations/src/{app => }/StocksUtility.ts (100%) rename samples/charts/financial-chart/annotations/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/annotations/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/annotations/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/annotations/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/axis-types/src/{app => }/FinancialDataService.ts (100%) rename samples/charts/financial-chart/axis-types/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/axis-types/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/axis-types/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/axis-types/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/high-frequency/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/high-frequency/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/high-frequency/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/high-frequency/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/high-volume/src/{app => }/GenerateHourlyPricesService.ts (100%) rename samples/charts/financial-chart/high-volume/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/high-volume/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/high-volume/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/high-volume/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/indicator-customization/src/{app => }/FinancialDataService.ts (100%) rename samples/charts/financial-chart/indicator-customization/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/indicator-customization/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/indicator-customization/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/indicator-customization/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/indicator-types/src/{app => }/FinancialDataService.ts (100%) rename samples/charts/financial-chart/indicator-types/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/indicator-types/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/indicator-types/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/indicator-types/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/multiple-data/src/{app => }/FinancialDataService.ts (100%) rename samples/charts/financial-chart/multiple-data/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/multiple-data/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/multiple-data/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/multiple-data/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/multiple-feeds/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/multiple-feeds/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/multiple-feeds/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/multiple-feeds/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/overview/src/{app => }/FinancialDataService.ts (100%) rename samples/charts/financial-chart/overview/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/overview/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/overview/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/overview/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/panes/src/{app => }/StockDataService.ts (100%) rename samples/charts/financial-chart/panes/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/panes/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/panes/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/panes/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/performance/src/{app => }/GenerateOhlcPricesService.ts (100%) rename samples/charts/financial-chart/performance/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/performance/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/performance/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/performance/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/stock-index-chart/src/{app => }/StockIndexDataService.ts (100%) rename samples/charts/financial-chart/stock-index-chart/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/stock-index-chart/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/stock-index-chart/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/stock-index-chart/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/styling/src/{app => }/FinancialDataService.ts (100%) rename samples/charts/financial-chart/styling/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/styling/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/styling/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/styling/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/theming/src/{app => }/StockDataService.ts (100%) rename samples/charts/financial-chart/theming/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/theming/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/theming/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/theming/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/theming/src/{app => }/dark-theme-financial-chart.css (100%) rename samples/charts/financial-chart/theming/src/{app => }/dark-theme-legend.css (100%) rename samples/charts/financial-chart/theming/src/{app => }/dark-theme-tooltips.css (100%) rename samples/charts/financial-chart/theming/src/{app => }/dark-theme-zoom-slider.css (100%) rename samples/charts/financial-chart/time-based-data/src/{app => }/FinancialDataService.ts (100%) rename samples/charts/financial-chart/time-based-data/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/time-based-data/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/time-based-data/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/time-based-data/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/titles/src/{app => }/StockDataService.ts (100%) rename samples/charts/financial-chart/titles/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/titles/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/titles/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/titles/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/tooltip-template/src/{app => }/FinancialDataService.ts (100%) rename samples/charts/financial-chart/tooltip-template/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/tooltip-template/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/tooltip-template/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/tooltip-template/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/tooltip-types/src/{app => }/FinancialDataService.ts (100%) rename samples/charts/financial-chart/tooltip-types/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/tooltip-types/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/tooltip-types/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/tooltip-types/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/trendlines/src/{app => }/FinancialDataService.ts (100%) rename samples/charts/financial-chart/trendlines/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/trendlines/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/trendlines/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/trendlines/src/{app => }/app.module.ts (100%) rename samples/charts/financial-chart/volume-types/src/{app => }/FinancialDataService.ts (100%) rename samples/charts/financial-chart/volume-types/src/{app => }/app.component.html (100%) rename samples/charts/financial-chart/volume-types/src/{app => }/app.component.scss (100%) rename samples/charts/financial-chart/volume-types/src/{app => }/app.component.ts (100%) rename samples/charts/financial-chart/volume-types/src/{app => }/app.module.ts (100%) rename samples/charts/pie-chart/animation/src/{app => }/app.component.html (100%) rename samples/charts/pie-chart/animation/src/{app => }/app.component.scss (100%) rename samples/charts/pie-chart/animation/src/{app => }/app.component.ts (100%) rename samples/charts/pie-chart/animation/src/{app => }/app.module.ts (100%) rename samples/charts/pie-chart/explosion/src/{app => }/app.component.html (100%) rename samples/charts/pie-chart/explosion/src/{app => }/app.component.scss (100%) rename samples/charts/pie-chart/explosion/src/{app => }/app.component.ts (100%) rename samples/charts/pie-chart/explosion/src/{app => }/app.module.ts (100%) rename samples/charts/pie-chart/selection/src/{app => }/app.component.html (100%) rename samples/charts/pie-chart/selection/src/{app => }/app.component.scss (100%) rename samples/charts/pie-chart/selection/src/{app => }/app.component.ts (100%) rename samples/charts/pie-chart/selection/src/{app => }/app.module.ts (100%) rename samples/charts/sparkline/display-types/src/{app => }/SharedData.ts (100%) rename samples/charts/sparkline/display-types/src/{app => }/app.component.html (100%) rename samples/charts/sparkline/display-types/src/{app => }/app.component.scss (100%) rename samples/charts/sparkline/display-types/src/{app => }/app.component.ts (100%) rename samples/charts/sparkline/display-types/src/{app => }/app.module.ts (100%) rename samples/charts/sparkline/grid/src/{app => }/Products.ts (100%) rename samples/charts/sparkline/grid/src/{app => }/app.component.html (100%) rename samples/charts/sparkline/grid/src/{app => }/app.component.scss (100%) rename samples/charts/sparkline/grid/src/{app => }/app.component.ts (100%) rename samples/charts/sparkline/grid/src/{app => }/app.module.ts (100%) rename samples/charts/tree-map/events/src/{app => }/app.component.html (100%) rename samples/charts/tree-map/events/src/{app => }/app.component.scss (100%) rename samples/charts/tree-map/events/src/{app => }/app.component.ts (100%) rename samples/charts/tree-map/events/src/{app => }/app.module.ts (100%) create mode 100644 samples/charts/tree-map/highlighting-percent-based/ReadMe.md rename samples/charts/zoomslider/overview/src/{app => }/SampleScatterStats.ts (100%) rename samples/charts/zoomslider/overview/src/{app => }/app.component.html (100%) rename samples/charts/zoomslider/overview/src/{app => }/app.component.scss (100%) rename samples/charts/zoomslider/overview/src/{app => }/app.component.ts (100%) rename samples/charts/zoomslider/overview/src/{app => }/app.module.ts (100%) rename samples/excel/excel-library/operations-on-workbooks/src/{app => }/ExcelUtility.ts (100%) rename samples/excel/excel-library/operations-on-workbooks/src/{app => }/app.component.html (100%) rename samples/excel/excel-library/operations-on-workbooks/src/{app => }/app.component.scss (100%) rename samples/excel/excel-library/operations-on-workbooks/src/{app => }/app.component.ts (100%) rename samples/excel/excel-library/operations-on-workbooks/src/{app => }/app.module.ts (100%) rename samples/excel/excel-library/operations-on-worksheets/src/{app => }/ExcelUtility.ts (100%) rename samples/excel/excel-library/operations-on-worksheets/src/{app => }/app.component.html (100%) rename samples/excel/excel-library/operations-on-worksheets/src/{app => }/app.component.scss (100%) rename samples/excel/excel-library/operations-on-worksheets/src/{app => }/app.component.ts (100%) rename samples/excel/excel-library/operations-on-worksheets/src/{app => }/app.module.ts (100%) rename samples/excel/excel-library/overview/src/{app => }/ExcelUtility.ts (100%) rename samples/excel/excel-library/overview/src/{app => }/app.component.html (100%) rename samples/excel/excel-library/overview/src/{app => }/app.component.scss (100%) rename samples/excel/excel-library/overview/src/{app => }/app.component.ts (100%) rename samples/excel/excel-library/overview/src/{app => }/app.module.ts (100%) rename samples/excel/excel-library/working-with-cells/src/{app => }/ExcelUtility.ts (100%) rename samples/excel/excel-library/working-with-cells/src/{app => }/app.component.html (100%) rename samples/excel/excel-library/working-with-cells/src/{app => }/app.component.scss (100%) rename samples/excel/excel-library/working-with-cells/src/{app => }/app.component.ts (100%) rename samples/excel/excel-library/working-with-cells/src/{app => }/app.module.ts (100%) rename samples/excel/excel-library/working-with-charts/src/{app => }/ExcelUtility.ts (100%) rename samples/excel/excel-library/working-with-charts/src/{app => }/app.component.html (100%) rename samples/excel/excel-library/working-with-charts/src/{app => }/app.component.scss (100%) rename samples/excel/excel-library/working-with-charts/src/{app => }/app.component.ts (100%) rename samples/excel/excel-library/working-with-charts/src/{app => }/app.module.ts (100%) rename samples/excel/excel-library/working-with-sparklines/src/{app => }/ExcelUtility.ts (100%) rename samples/excel/excel-library/working-with-sparklines/src/{app => }/app.component.html (100%) rename samples/excel/excel-library/working-with-sparklines/src/{app => }/app.component.scss (100%) rename samples/excel/excel-library/working-with-sparklines/src/{app => }/app.component.ts (100%) rename samples/excel/excel-library/working-with-sparklines/src/{app => }/app.module.ts (100%) rename samples/excel/excel-library/working-with-tables/src/{app => }/ExcelUtility.ts (100%) rename samples/excel/excel-library/working-with-tables/src/{app => }/app.component.html (100%) rename samples/excel/excel-library/working-with-tables/src/{app => }/app.component.scss (100%) rename samples/excel/excel-library/working-with-tables/src/{app => }/app.component.ts (100%) rename samples/excel/excel-library/working-with-tables/src/{app => }/app.module.ts (100%) rename samples/excel/spreadsheet/activation/src/{app => }/ExcelUtility.ts (100%) rename samples/excel/spreadsheet/activation/src/{app => }/app.component.html (100%) rename samples/excel/spreadsheet/activation/src/{app => }/app.component.scss (100%) rename samples/excel/spreadsheet/activation/src/{app => }/app.component.ts (100%) rename samples/excel/spreadsheet/activation/src/{app => }/app.module.ts (100%) rename samples/excel/spreadsheet/adapter-chart/src/{app => }/ExcelUtility.ts (100%) rename samples/excel/spreadsheet/adapter-chart/src/{app => }/app.component.html (100%) rename samples/excel/spreadsheet/adapter-chart/src/{app => }/app.component.scss (100%) rename samples/excel/spreadsheet/adapter-chart/src/{app => }/app.component.ts (100%) rename samples/excel/spreadsheet/adapter-chart/src/{app => }/app.module.ts (100%) rename samples/excel/spreadsheet/adapter-combo/src/{app => }/ExcelUtility.ts (100%) rename samples/excel/spreadsheet/adapter-combo/src/{app => }/app.component.html (100%) rename samples/excel/spreadsheet/adapter-combo/src/{app => }/app.component.scss (100%) rename samples/excel/spreadsheet/adapter-combo/src/{app => }/app.component.ts (100%) rename samples/excel/spreadsheet/adapter-combo/src/{app => }/app.module.ts (100%) rename samples/excel/spreadsheet/clipboard/src/{app => }/ExcelUtility.ts (100%) rename samples/excel/spreadsheet/clipboard/src/{app => }/app.component.html (100%) rename samples/excel/spreadsheet/clipboard/src/{app => }/app.component.scss (100%) rename samples/excel/spreadsheet/clipboard/src/{app => }/app.component.ts (100%) rename samples/excel/spreadsheet/clipboard/src/{app => }/app.module.ts (100%) rename samples/excel/spreadsheet/commands/src/{app => }/ExcelUtility.ts (100%) rename samples/excel/spreadsheet/commands/src/{app => }/app.component.html (100%) rename samples/excel/spreadsheet/commands/src/{app => }/app.component.scss (100%) rename samples/excel/spreadsheet/commands/src/{app => }/app.component.ts (100%) rename samples/excel/spreadsheet/commands/src/{app => }/app.module.ts (100%) rename samples/excel/spreadsheet/conditional-formatting/src/{app => }/ExcelUtility.ts (100%) rename samples/excel/spreadsheet/conditional-formatting/src/{app => }/app.component.html (100%) rename samples/excel/spreadsheet/conditional-formatting/src/{app => }/app.component.scss (100%) rename samples/excel/spreadsheet/conditional-formatting/src/{app => }/app.component.ts (100%) rename samples/excel/spreadsheet/conditional-formatting/src/{app => }/app.module.ts (100%) rename samples/excel/spreadsheet/config-options/src/{app => }/ExcelUtility.ts (100%) rename samples/excel/spreadsheet/config-options/src/{app => }/app.component.html (100%) rename samples/excel/spreadsheet/config-options/src/{app => }/app.component.scss (100%) rename samples/excel/spreadsheet/config-options/src/{app => }/app.component.ts (100%) rename samples/excel/spreadsheet/config-options/src/{app => }/app.module.ts (100%) rename samples/excel/spreadsheet/data-validation/src/{app => }/app.component.html (100%) rename samples/excel/spreadsheet/data-validation/src/{app => }/app.component.scss (100%) rename samples/excel/spreadsheet/data-validation/src/{app => }/app.component.ts (100%) rename samples/excel/spreadsheet/data-validation/src/{app => }/app.module.ts (100%) rename samples/excel/spreadsheet/hyperlinks/src/{app => }/ExcelUtility.ts (100%) rename samples/excel/spreadsheet/hyperlinks/src/{app => }/app.component.html (100%) rename samples/excel/spreadsheet/hyperlinks/src/{app => }/app.component.scss (100%) rename samples/excel/spreadsheet/hyperlinks/src/{app => }/app.component.ts (100%) rename samples/excel/spreadsheet/hyperlinks/src/{app => }/app.module.ts (100%) rename samples/excel/spreadsheet/overview/src/{app => }/ExcelUtility.ts (100%) rename samples/excel/spreadsheet/overview/src/{app => }/app.component.html (100%) rename samples/excel/spreadsheet/overview/src/{app => }/app.component.scss (100%) rename samples/excel/spreadsheet/overview/src/{app => }/app.component.ts (100%) rename samples/excel/spreadsheet/overview/src/{app => }/app.module.ts (100%) rename samples/gauges/bullet-graph/animation/src/{app => }/app.component.html (100%) rename samples/gauges/bullet-graph/animation/src/{app => }/app.component.scss (100%) rename samples/gauges/bullet-graph/animation/src/{app => }/app.component.ts (100%) rename samples/gauges/bullet-graph/animation/src/{app => }/app.module.ts (100%) rename samples/gauges/bullet-graph/background/src/{app => }/app.component.html (100%) rename samples/gauges/bullet-graph/background/src/{app => }/app.component.scss (100%) rename samples/gauges/bullet-graph/background/src/{app => }/app.component.ts (100%) rename samples/gauges/bullet-graph/background/src/{app => }/app.module.ts (100%) rename samples/gauges/bullet-graph/highlight-needle/src/{app => }/app.component.html (100%) rename samples/gauges/bullet-graph/highlight-needle/src/{app => }/app.component.scss (100%) rename samples/gauges/bullet-graph/highlight-needle/src/{app => }/app.component.ts (100%) rename samples/gauges/bullet-graph/highlight-needle/src/{app => }/app.module.ts (100%) rename samples/gauges/bullet-graph/labels/src/{app => }/app.component.html (100%) rename samples/gauges/bullet-graph/labels/src/{app => }/app.component.scss (100%) rename samples/gauges/bullet-graph/labels/src/{app => }/app.component.ts (100%) rename samples/gauges/bullet-graph/labels/src/{app => }/app.module.ts (100%) rename samples/gauges/bullet-graph/measures/src/{app => }/app.component.html (100%) rename samples/gauges/bullet-graph/measures/src/{app => }/app.component.scss (100%) rename samples/gauges/bullet-graph/measures/src/{app => }/app.component.ts (100%) rename samples/gauges/bullet-graph/measures/src/{app => }/app.module.ts (100%) rename samples/gauges/bullet-graph/ranges/src/{app => }/app.component.html (100%) rename samples/gauges/bullet-graph/ranges/src/{app => }/app.component.scss (100%) rename samples/gauges/bullet-graph/ranges/src/{app => }/app.component.ts (100%) rename samples/gauges/bullet-graph/ranges/src/{app => }/app.module.ts (100%) rename samples/gauges/bullet-graph/scale/src/{app => }/app.component.html (100%) rename samples/gauges/bullet-graph/scale/src/{app => }/app.component.scss (100%) rename samples/gauges/bullet-graph/scale/src/{app => }/app.component.ts (100%) rename samples/gauges/bullet-graph/scale/src/{app => }/app.module.ts (100%) rename samples/gauges/bullet-graph/tickmarks/src/{app => }/app.component.html (100%) rename samples/gauges/bullet-graph/tickmarks/src/{app => }/app.component.scss (100%) rename samples/gauges/bullet-graph/tickmarks/src/{app => }/app.component.ts (100%) rename samples/gauges/bullet-graph/tickmarks/src/{app => }/app.module.ts (100%) rename samples/gauges/linear-gauge/animation/src/{app => }/app.component.html (100%) rename samples/gauges/linear-gauge/animation/src/{app => }/app.component.scss (100%) rename samples/gauges/linear-gauge/animation/src/{app => }/app.component.ts (100%) rename samples/gauges/linear-gauge/animation/src/{app => }/app.module.ts (100%) rename samples/gauges/linear-gauge/backing/src/{app => }/app.component.html (100%) rename samples/gauges/linear-gauge/backing/src/{app => }/app.component.scss (100%) rename samples/gauges/linear-gauge/backing/src/{app => }/app.component.ts (100%) rename samples/gauges/linear-gauge/backing/src/{app => }/app.module.ts (100%) rename samples/gauges/linear-gauge/highlight-needle/src/{app => }/app.component.html (100%) rename samples/gauges/linear-gauge/highlight-needle/src/{app => }/app.component.scss (100%) rename samples/gauges/linear-gauge/highlight-needle/src/{app => }/app.component.ts (100%) rename samples/gauges/linear-gauge/highlight-needle/src/{app => }/app.module.ts (100%) rename samples/gauges/linear-gauge/labels/src/{app => }/app.component.html (100%) rename samples/gauges/linear-gauge/labels/src/{app => }/app.component.scss (100%) rename samples/gauges/linear-gauge/labels/src/{app => }/app.component.ts (100%) rename samples/gauges/linear-gauge/labels/src/{app => }/app.module.ts (100%) rename samples/gauges/linear-gauge/needle/src/{app => }/app.component.html (100%) rename samples/gauges/linear-gauge/needle/src/{app => }/app.component.scss (100%) rename samples/gauges/linear-gauge/needle/src/{app => }/app.component.ts (100%) rename samples/gauges/linear-gauge/needle/src/{app => }/app.module.ts (100%) rename samples/gauges/linear-gauge/ranges/src/{app => }/app.component.html (100%) rename samples/gauges/linear-gauge/ranges/src/{app => }/app.component.scss (100%) rename samples/gauges/linear-gauge/ranges/src/{app => }/app.component.ts (100%) rename samples/gauges/linear-gauge/ranges/src/{app => }/app.module.ts (100%) rename samples/gauges/linear-gauge/scale/src/{app => }/app.component.html (100%) rename samples/gauges/linear-gauge/scale/src/{app => }/app.component.scss (100%) rename samples/gauges/linear-gauge/scale/src/{app => }/app.component.ts (100%) rename samples/gauges/linear-gauge/scale/src/{app => }/app.module.ts (100%) rename samples/gauges/linear-gauge/tickmarks/src/{app => }/app.component.html (100%) rename samples/gauges/linear-gauge/tickmarks/src/{app => }/app.component.scss (100%) rename samples/gauges/linear-gauge/tickmarks/src/{app => }/app.component.ts (100%) rename samples/gauges/linear-gauge/tickmarks/src/{app => }/app.module.ts (100%) rename samples/gauges/radial-gauge/animation/src/{app => }/app.component.html (100%) rename samples/gauges/radial-gauge/animation/src/{app => }/app.component.scss (100%) rename samples/gauges/radial-gauge/animation/src/{app => }/app.component.ts (100%) rename samples/gauges/radial-gauge/animation/src/{app => }/app.module.ts (100%) rename samples/gauges/radial-gauge/backing/src/{app => }/app.component.html (100%) rename samples/gauges/radial-gauge/backing/src/{app => }/app.component.scss (100%) rename samples/gauges/radial-gauge/backing/src/{app => }/app.component.ts (100%) rename samples/gauges/radial-gauge/backing/src/{app => }/app.module.ts (100%) rename samples/gauges/radial-gauge/highlight-needle/src/{app => }/app.component.html (100%) rename samples/gauges/radial-gauge/highlight-needle/src/{app => }/app.component.scss (100%) rename samples/gauges/radial-gauge/highlight-needle/src/{app => }/app.component.ts (100%) rename samples/gauges/radial-gauge/highlight-needle/src/{app => }/app.module.ts (100%) rename samples/gauges/radial-gauge/labels/src/{app => }/app.component.html (100%) rename samples/gauges/radial-gauge/labels/src/{app => }/app.component.scss (100%) rename samples/gauges/radial-gauge/labels/src/{app => }/app.component.ts (100%) rename samples/gauges/radial-gauge/labels/src/{app => }/app.module.ts (100%) rename samples/gauges/radial-gauge/needle/src/{app => }/app.component.html (100%) rename samples/gauges/radial-gauge/needle/src/{app => }/app.component.scss (100%) rename samples/gauges/radial-gauge/needle/src/{app => }/app.component.ts (100%) rename samples/gauges/radial-gauge/needle/src/{app => }/app.module.ts (100%) rename samples/gauges/radial-gauge/optical-scaling/src/{app => }/app.component.html (100%) rename samples/gauges/radial-gauge/optical-scaling/src/{app => }/app.component.scss (100%) rename samples/gauges/radial-gauge/optical-scaling/src/{app => }/app.component.ts (100%) rename samples/gauges/radial-gauge/optical-scaling/src/{app => }/app.module.ts (100%) rename samples/gauges/radial-gauge/ranges/src/{app => }/app.component.html (100%) rename samples/gauges/radial-gauge/ranges/src/{app => }/app.component.scss (100%) rename samples/gauges/radial-gauge/ranges/src/{app => }/app.component.ts (100%) rename samples/gauges/radial-gauge/ranges/src/{app => }/app.module.ts (100%) rename samples/gauges/radial-gauge/scale/src/{app => }/app.component.html (100%) rename samples/gauges/radial-gauge/scale/src/{app => }/app.component.scss (100%) rename samples/gauges/radial-gauge/scale/src/{app => }/app.component.ts (100%) rename samples/gauges/radial-gauge/scale/src/{app => }/app.module.ts (100%) rename samples/gauges/radial-gauge/tickmarks/src/{app => }/app.component.html (100%) rename samples/gauges/radial-gauge/tickmarks/src/{app => }/app.component.scss (100%) rename samples/gauges/radial-gauge/tickmarks/src/{app => }/app.component.ts (100%) rename samples/gauges/radial-gauge/tickmarks/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/binding-data-csv/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/binding-data-csv/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/binding-data-csv/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/binding-data-csv/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/binding-data-json-points/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/binding-data-json-points/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/binding-data-json-points/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/binding-data-json-points/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/binding-data-model/src/{app => }/WorldUtility.ts (100%) rename samples/maps/geo-map/binding-data-model/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/binding-data-model/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/binding-data-model/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/binding-data-model/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/binding-multiple-shapes/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/binding-multiple-shapes/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/binding-multiple-shapes/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/binding-multiple-shapes/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/binding-multiple-sources/src/{app => }/WorldConnections.ts (100%) rename samples/maps/geo-map/binding-multiple-sources/src/{app => }/WorldLocations.ts (100%) rename samples/maps/geo-map/binding-multiple-sources/src/{app => }/WorldUtility.ts (100%) rename samples/maps/geo-map/binding-multiple-sources/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/binding-multiple-sources/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/binding-multiple-sources/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/binding-multiple-sources/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/binding-shp-points/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/binding-shp-points/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/binding-shp-points/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/binding-shp-points/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/binding-shp-polygons/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/binding-shp-polygons/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/binding-shp-polygons/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/binding-shp-polygons/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/binding-shp-polylines/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/binding-shp-polylines/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/binding-shp-polylines/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/binding-shp-polylines/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/custom-tooltips/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/custom-tooltips/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/custom-tooltips/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/custom-tooltips/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/display-bing-imagery/src/{app => }/MapUtility.ts (100%) rename samples/maps/geo-map/display-bing-imagery/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/display-bing-imagery/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/display-bing-imagery/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/display-bing-imagery/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/display-esri-imagery/src/{app => }/EsriUtility.ts (100%) rename samples/maps/geo-map/display-esri-imagery/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/display-esri-imagery/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/display-esri-imagery/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/display-esri-imagery/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/display-heat-imagery/src/{app => }/HeatmapWorker.ts (100%) rename samples/maps/geo-map/display-heat-imagery/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/display-heat-imagery/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/display-heat-imagery/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/display-heat-imagery/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/display-osm-imagery/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/display-osm-imagery/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/display-osm-imagery/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/display-osm-imagery/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/marker-layouts/src/{app => }/WorldLocations.ts (100%) rename samples/maps/geo-map/marker-layouts/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/marker-layouts/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/marker-layouts/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/marker-layouts/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/marker-template/src/{app => }/WorldLocations.ts (100%) rename samples/maps/geo-map/marker-template/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/marker-template/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/marker-template/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/marker-template/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/marker-type/src/{app => }/WorldLocations.ts (100%) rename samples/maps/geo-map/marker-type/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/marker-type/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/marker-type/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/marker-type/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/navigation/src/{app => }/EsriUtility.ts (100%) rename samples/maps/geo-map/navigation/src/{app => }/MapUtility.ts (100%) rename samples/maps/geo-map/navigation/src/{app => }/WorldUtility.ts (100%) rename samples/maps/geo-map/navigation/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/navigation/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/navigation/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/navigation/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/overview/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/overview/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/overview/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/overview/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/shape-styling/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/shape-styling/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/shape-styling/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/shape-styling/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/triangulating-data/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/triangulating-data/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/triangulating-data/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/triangulating-data/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/type-scatter-area-series/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/type-scatter-area-series/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/type-scatter-area-series/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/type-scatter-area-series/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/type-scatter-bubble-series/src/{app => }/WorldLocations.ts (100%) rename samples/maps/geo-map/type-scatter-bubble-series/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/type-scatter-bubble-series/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/type-scatter-bubble-series/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/type-scatter-bubble-series/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/type-scatter-contour-series/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/type-scatter-contour-series/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/type-scatter-contour-series/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/type-scatter-contour-series/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/type-scatter-density-series/src/{app => }/WorldUtility.ts (100%) rename samples/maps/geo-map/type-scatter-density-series/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/type-scatter-density-series/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/type-scatter-density-series/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/type-scatter-density-series/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/type-scatter-symbol-series/src/{app => }/WorldLocations.ts (100%) rename samples/maps/geo-map/type-scatter-symbol-series/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/type-scatter-symbol-series/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/type-scatter-symbol-series/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/type-scatter-symbol-series/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/type-shape-polygon-series/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/type-shape-polygon-series/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/type-shape-polygon-series/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/type-shape-polygon-series/src/{app => }/app.module.ts (100%) rename samples/maps/geo-map/type-shape-polyline-series/src/{app => }/app.component.html (100%) rename samples/maps/geo-map/type-shape-polyline-series/src/{app => }/app.component.scss (100%) rename samples/maps/geo-map/type-shape-polyline-series/src/{app => }/app.component.ts (100%) rename samples/maps/geo-map/type-shape-polyline-series/src/{app => }/app.module.ts (100%) diff --git a/browser/gulpfile.js b/browser/gulpfile.js index 6cfca5606..ce20d6f06 100644 --- a/browser/gulpfile.js +++ b/browser/gulpfile.js @@ -48,6 +48,7 @@ gulp.task('copySamples', gulp.series(browser.findSamples, browser.copySamples)); gulp.task('generateSampleRouting', browser.generateSampleRouting); gulp.task('updateCodeViewer', gulp.series(browser.findSamples, browser.updateCodeViewer)); gulp.task('listSamples', browser.listSamples); +gulp.task('moveAppFiles', browser.moveAppFiles); gulp.task("overwrite-package-json", (done) => { const packagesPaths = [ diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 75d2ab2f1..3ecc7f8d0 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -725,6 +725,7 @@ function copySamples(cb) { for (let i = appIndexRoutingImportStart+1; i < appIndexRoutingImportEnd; i++) { appIndexLines[i] = ""; // clearing previously auto-generated inserts } + routingDataImports = routingDataImports.sort(); // adding latest auto-generated inserts for JS files appIndexLines[appIndexRoutingImportStart + 1] = routingDataImports.join('\r\n'); appIndexChanged = true; @@ -734,6 +735,7 @@ function copySamples(cb) { for (let i = appIndexRoutingArrayStart+1; i < appIndexRoutingArrayEnd; i++) { appIndexLines[i] = ""; // clearing previously auto-generated inserts } + routingDataArray = routingDataArray.sort(); // adding latest auto-generated inserts for JS files appIndexLines[appIndexRoutingArrayStart + 1] = routingDataArray.join(',\r\n'); appIndexChanged = true; @@ -1298,3 +1300,41 @@ function logVersionIgniteUI(cb) { } exports.logVersionIgniteUI = logVersionIgniteUI; +// move samples files up one level, e.g. /scr/app/*.* to /scr/*.* +exports.moveAppFiles = function moveAppFiles(cb) { + var appFolders = []; + + gulp.src( + "../samples/**/src/app/*.*", + "../samples/**/type-scatter-symbol-series/src/app/*.*", + {allowEmpty: true}) + .pipe(es.map(function(file, fileCallback) { + + var fileContent = file.contents.toString(); + let fileOutput = file.dirname.replace("\\app", "") + "\\" + file.basename; + + if (appFolders.indexOf(file.dirname) < 0) { + appFolders.push(file.dirname); + } + // console.log("" + fileOutput); + + fs.writeFileSync(fileOutput, fileContent); + fileCallback(null, file); + })) + .on("end", function() { + + console.log(appFolders); + console.log("moved " + appFolders.length + " samples from /scr/app/*.* to /scr/*.* "); + del(appFolders, {force: true}); + + for (let i = 0; i < appFolders.length; i++) { + + var mainPath = appFolders[i].replace("\\app", "") + "\\main.ts"; + let mainFile = fs.readFileSync(mainPath).toString(); + mainFile = mainFile.replace("/app/", "/"); + fs.writeFileSync(mainPath, mainFile); + } + cb(); + }); + +} \ No newline at end of file diff --git a/browser/src/app/index/index.component.ts b/browser/src/app/index/index.component.ts index 2700cd69a..6213578a9 100644 --- a/browser/src/app/index/index.component.ts +++ b/browser/src/app/index/index.component.ts @@ -9,8 +9,8 @@ import BrowserInfo from "../../browser-info.json"; // note these section is auto-generated - do not change it: // Auto-Insert-Imports-RoutingData-Start import { RoutingDataForCharts } from "../../samples/charts/routing-data"; -import { RoutingDataForGauges } from "../../samples/gauges/routing-data"; import { RoutingDataForExcel } from "../../samples/excel/routing-data"; +import { RoutingDataForGauges } from "../../samples/gauges/routing-data"; import { RoutingDataForMaps } from "../../samples/maps/routing-data"; @@ -48,8 +48,8 @@ export class IndexComponent implements OnInit, AfterViewInit { private modulesRoutes = [ // Auto-Insert-SamplesRoutingArray-Start { path: "charts", routesData: RoutingDataForCharts }, - { path: "gauges", routesData: RoutingDataForGauges }, { path: "excel", routesData: RoutingDataForExcel }, + { path: "gauges", routesData: RoutingDataForGauges }, { path: "maps", routesData: RoutingDataForMaps } diff --git a/samples/charts/category-chart/annotations/src/app/app.component.html b/samples/charts/category-chart/annotations/src/app.component.html similarity index 100% rename from samples/charts/category-chart/annotations/src/app/app.component.html rename to samples/charts/category-chart/annotations/src/app.component.html diff --git a/samples/charts/category-chart/annotations/src/app/app.component.scss b/samples/charts/category-chart/annotations/src/app.component.scss similarity index 100% rename from samples/charts/category-chart/annotations/src/app/app.component.scss rename to samples/charts/category-chart/annotations/src/app.component.scss diff --git a/samples/charts/category-chart/annotations/src/app/app.component.ts b/samples/charts/category-chart/annotations/src/app.component.ts similarity index 100% rename from samples/charts/category-chart/annotations/src/app/app.component.ts rename to samples/charts/category-chart/annotations/src/app.component.ts diff --git a/samples/charts/category-chart/annotations/src/app/app.module.ts b/samples/charts/category-chart/annotations/src/app.module.ts similarity index 100% rename from samples/charts/category-chart/annotations/src/app/app.module.ts rename to samples/charts/category-chart/annotations/src/app.module.ts diff --git a/samples/charts/category-chart/annotations/src/main.ts b/samples/charts/category-chart/annotations/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/category-chart/annotations/src/main.ts +++ b/samples/charts/category-chart/annotations/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/category-chart/column-chart-with-highlighting/src/app/app.component.html b/samples/charts/category-chart/column-chart-with-highlighting/src/app.component.html similarity index 100% rename from samples/charts/category-chart/column-chart-with-highlighting/src/app/app.component.html rename to samples/charts/category-chart/column-chart-with-highlighting/src/app.component.html diff --git a/samples/charts/category-chart/column-chart-with-highlighting/src/app/app.component.scss b/samples/charts/category-chart/column-chart-with-highlighting/src/app.component.scss similarity index 100% rename from samples/charts/category-chart/column-chart-with-highlighting/src/app/app.component.scss rename to samples/charts/category-chart/column-chart-with-highlighting/src/app.component.scss diff --git a/samples/charts/category-chart/column-chart-with-highlighting/src/app/app.component.ts b/samples/charts/category-chart/column-chart-with-highlighting/src/app.component.ts similarity index 100% rename from samples/charts/category-chart/column-chart-with-highlighting/src/app/app.component.ts rename to samples/charts/category-chart/column-chart-with-highlighting/src/app.component.ts diff --git a/samples/charts/category-chart/column-chart-with-highlighting/src/app/app.module.ts b/samples/charts/category-chart/column-chart-with-highlighting/src/app.module.ts similarity index 100% rename from samples/charts/category-chart/column-chart-with-highlighting/src/app/app.module.ts rename to samples/charts/category-chart/column-chart-with-highlighting/src/app.module.ts diff --git a/samples/charts/category-chart/column-chart-with-highlighting/src/main.ts b/samples/charts/category-chart/column-chart-with-highlighting/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/src/main.ts +++ b/samples/charts/category-chart/column-chart-with-highlighting/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/category-chart/high-frequency/src/app/app.component.html b/samples/charts/category-chart/high-frequency/src/app.component.html similarity index 100% rename from samples/charts/category-chart/high-frequency/src/app/app.component.html rename to samples/charts/category-chart/high-frequency/src/app.component.html diff --git a/samples/charts/category-chart/high-frequency/src/app/app.component.scss b/samples/charts/category-chart/high-frequency/src/app.component.scss similarity index 100% rename from samples/charts/category-chart/high-frequency/src/app/app.component.scss rename to samples/charts/category-chart/high-frequency/src/app.component.scss diff --git a/samples/charts/category-chart/high-frequency/src/app/app.component.ts b/samples/charts/category-chart/high-frequency/src/app.component.ts similarity index 100% rename from samples/charts/category-chart/high-frequency/src/app/app.component.ts rename to samples/charts/category-chart/high-frequency/src/app.component.ts diff --git a/samples/charts/category-chart/high-frequency/src/app/app.module.ts b/samples/charts/category-chart/high-frequency/src/app.module.ts similarity index 100% rename from samples/charts/category-chart/high-frequency/src/app/app.module.ts rename to samples/charts/category-chart/high-frequency/src/app.module.ts diff --git a/samples/charts/category-chart/high-frequency/src/main.ts b/samples/charts/category-chart/high-frequency/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/category-chart/high-frequency/src/main.ts +++ b/samples/charts/category-chart/high-frequency/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/category-chart/high-volume/src/app/app.component.html b/samples/charts/category-chart/high-volume/src/app.component.html similarity index 100% rename from samples/charts/category-chart/high-volume/src/app/app.component.html rename to samples/charts/category-chart/high-volume/src/app.component.html diff --git a/samples/charts/category-chart/high-volume/src/app/app.component.scss b/samples/charts/category-chart/high-volume/src/app.component.scss similarity index 100% rename from samples/charts/category-chart/high-volume/src/app/app.component.scss rename to samples/charts/category-chart/high-volume/src/app.component.scss diff --git a/samples/charts/category-chart/high-volume/src/app/app.component.ts b/samples/charts/category-chart/high-volume/src/app.component.ts similarity index 100% rename from samples/charts/category-chart/high-volume/src/app/app.component.ts rename to samples/charts/category-chart/high-volume/src/app.component.ts diff --git a/samples/charts/category-chart/high-volume/src/app/app.module.ts b/samples/charts/category-chart/high-volume/src/app.module.ts similarity index 100% rename from samples/charts/category-chart/high-volume/src/app/app.module.ts rename to samples/charts/category-chart/high-volume/src/app.module.ts diff --git a/samples/charts/category-chart/high-volume/src/main.ts b/samples/charts/category-chart/high-volume/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/category-chart/high-volume/src/main.ts +++ b/samples/charts/category-chart/high-volume/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/category-chart/highlighting/src/app/app.component.html b/samples/charts/category-chart/highlighting/src/app.component.html similarity index 100% rename from samples/charts/category-chart/highlighting/src/app/app.component.html rename to samples/charts/category-chart/highlighting/src/app.component.html diff --git a/samples/charts/category-chart/highlighting/src/app/app.component.scss b/samples/charts/category-chart/highlighting/src/app.component.scss similarity index 100% rename from samples/charts/category-chart/highlighting/src/app/app.component.scss rename to samples/charts/category-chart/highlighting/src/app.component.scss diff --git a/samples/charts/category-chart/highlighting/src/app/app.component.ts b/samples/charts/category-chart/highlighting/src/app.component.ts similarity index 100% rename from samples/charts/category-chart/highlighting/src/app/app.component.ts rename to samples/charts/category-chart/highlighting/src/app.component.ts diff --git a/samples/charts/category-chart/highlighting/src/app/app.module.ts b/samples/charts/category-chart/highlighting/src/app.module.ts similarity index 100% rename from samples/charts/category-chart/highlighting/src/app/app.module.ts rename to samples/charts/category-chart/highlighting/src/app.module.ts diff --git a/samples/charts/category-chart/highlighting/src/main.ts b/samples/charts/category-chart/highlighting/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/category-chart/highlighting/src/main.ts +++ b/samples/charts/category-chart/highlighting/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/category-chart/line-chart-with-animations/src/app/app.component.html b/samples/charts/category-chart/line-chart-with-animations/src/app.component.html similarity index 100% rename from samples/charts/category-chart/line-chart-with-animations/src/app/app.component.html rename to samples/charts/category-chart/line-chart-with-animations/src/app.component.html diff --git a/samples/charts/category-chart/line-chart-with-animations/src/app/app.component.scss b/samples/charts/category-chart/line-chart-with-animations/src/app.component.scss similarity index 100% rename from samples/charts/category-chart/line-chart-with-animations/src/app/app.component.scss rename to samples/charts/category-chart/line-chart-with-animations/src/app.component.scss diff --git a/samples/charts/category-chart/line-chart-with-animations/src/app/app.component.ts b/samples/charts/category-chart/line-chart-with-animations/src/app.component.ts similarity index 100% rename from samples/charts/category-chart/line-chart-with-animations/src/app/app.component.ts rename to samples/charts/category-chart/line-chart-with-animations/src/app.component.ts diff --git a/samples/charts/category-chart/line-chart-with-animations/src/app/app.module.ts b/samples/charts/category-chart/line-chart-with-animations/src/app.module.ts similarity index 100% rename from samples/charts/category-chart/line-chart-with-animations/src/app/app.module.ts rename to samples/charts/category-chart/line-chart-with-animations/src/app.module.ts diff --git a/samples/charts/category-chart/line-chart-with-animations/src/main.ts b/samples/charts/category-chart/line-chart-with-animations/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/category-chart/line-chart-with-animations/src/main.ts +++ b/samples/charts/category-chart/line-chart-with-animations/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/category-chart/line-chart-with-annotations/src/app/app.component.html b/samples/charts/category-chart/line-chart-with-annotations/src/app.component.html similarity index 100% rename from samples/charts/category-chart/line-chart-with-annotations/src/app/app.component.html rename to samples/charts/category-chart/line-chart-with-annotations/src/app.component.html diff --git a/samples/charts/category-chart/line-chart-with-annotations/src/app/app.component.scss b/samples/charts/category-chart/line-chart-with-annotations/src/app.component.scss similarity index 100% rename from samples/charts/category-chart/line-chart-with-annotations/src/app/app.component.scss rename to samples/charts/category-chart/line-chart-with-annotations/src/app.component.scss diff --git a/samples/charts/category-chart/line-chart-with-annotations/src/app/app.component.ts b/samples/charts/category-chart/line-chart-with-annotations/src/app.component.ts similarity index 100% rename from samples/charts/category-chart/line-chart-with-annotations/src/app/app.component.ts rename to samples/charts/category-chart/line-chart-with-annotations/src/app.component.ts diff --git a/samples/charts/category-chart/line-chart-with-annotations/src/app/app.module.ts b/samples/charts/category-chart/line-chart-with-annotations/src/app.module.ts similarity index 100% rename from samples/charts/category-chart/line-chart-with-annotations/src/app/app.module.ts rename to samples/charts/category-chart/line-chart-with-annotations/src/app.module.ts diff --git a/samples/charts/category-chart/line-chart-with-annotations/src/main.ts b/samples/charts/category-chart/line-chart-with-annotations/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/src/main.ts +++ b/samples/charts/category-chart/line-chart-with-annotations/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/category-chart/line-chart-with-legend/src/app/app.component.html b/samples/charts/category-chart/line-chart-with-legend/src/app.component.html similarity index 100% rename from samples/charts/category-chart/line-chart-with-legend/src/app/app.component.html rename to samples/charts/category-chart/line-chart-with-legend/src/app.component.html diff --git a/samples/charts/category-chart/line-chart-with-legend/src/app/app.component.scss b/samples/charts/category-chart/line-chart-with-legend/src/app.component.scss similarity index 100% rename from samples/charts/category-chart/line-chart-with-legend/src/app/app.component.scss rename to samples/charts/category-chart/line-chart-with-legend/src/app.component.scss diff --git a/samples/charts/category-chart/line-chart-with-legend/src/app/app.component.ts b/samples/charts/category-chart/line-chart-with-legend/src/app.component.ts similarity index 100% rename from samples/charts/category-chart/line-chart-with-legend/src/app/app.component.ts rename to samples/charts/category-chart/line-chart-with-legend/src/app.component.ts diff --git a/samples/charts/category-chart/line-chart-with-legend/src/app/app.module.ts b/samples/charts/category-chart/line-chart-with-legend/src/app.module.ts similarity index 100% rename from samples/charts/category-chart/line-chart-with-legend/src/app/app.module.ts rename to samples/charts/category-chart/line-chart-with-legend/src/app.module.ts diff --git a/samples/charts/category-chart/line-chart-with-legend/src/main.ts b/samples/charts/category-chart/line-chart-with-legend/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/category-chart/line-chart-with-legend/src/main.ts +++ b/samples/charts/category-chart/line-chart-with-legend/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/category-chart/marker-templates/src/app/app.component.html b/samples/charts/category-chart/marker-templates/src/app.component.html similarity index 100% rename from samples/charts/category-chart/marker-templates/src/app/app.component.html rename to samples/charts/category-chart/marker-templates/src/app.component.html diff --git a/samples/charts/category-chart/marker-templates/src/app/app.component.scss b/samples/charts/category-chart/marker-templates/src/app.component.scss similarity index 100% rename from samples/charts/category-chart/marker-templates/src/app/app.component.scss rename to samples/charts/category-chart/marker-templates/src/app.component.scss diff --git a/samples/charts/category-chart/marker-templates/src/app/app.component.ts b/samples/charts/category-chart/marker-templates/src/app.component.ts similarity index 100% rename from samples/charts/category-chart/marker-templates/src/app/app.component.ts rename to samples/charts/category-chart/marker-templates/src/app.component.ts diff --git a/samples/charts/category-chart/marker-templates/src/app/app.module.ts b/samples/charts/category-chart/marker-templates/src/app.module.ts similarity index 100% rename from samples/charts/category-chart/marker-templates/src/app/app.module.ts rename to samples/charts/category-chart/marker-templates/src/app.module.ts diff --git a/samples/charts/category-chart/marker-templates/src/main.ts b/samples/charts/category-chart/marker-templates/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/category-chart/marker-templates/src/main.ts +++ b/samples/charts/category-chart/marker-templates/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/category-chart/stack-columns/src/app/app.component.html b/samples/charts/category-chart/stack-columns/src/app.component.html similarity index 100% rename from samples/charts/category-chart/stack-columns/src/app/app.component.html rename to samples/charts/category-chart/stack-columns/src/app.component.html diff --git a/samples/charts/category-chart/stack-columns/src/app/app.component.scss b/samples/charts/category-chart/stack-columns/src/app.component.scss similarity index 100% rename from samples/charts/category-chart/stack-columns/src/app/app.component.scss rename to samples/charts/category-chart/stack-columns/src/app.component.scss diff --git a/samples/charts/category-chart/stack-columns/src/app/app.component.ts b/samples/charts/category-chart/stack-columns/src/app.component.ts similarity index 100% rename from samples/charts/category-chart/stack-columns/src/app/app.component.ts rename to samples/charts/category-chart/stack-columns/src/app.component.ts diff --git a/samples/charts/category-chart/stack-columns/src/app/app.module.ts b/samples/charts/category-chart/stack-columns/src/app.module.ts similarity index 100% rename from samples/charts/category-chart/stack-columns/src/app/app.module.ts rename to samples/charts/category-chart/stack-columns/src/app.module.ts diff --git a/samples/charts/category-chart/stack-columns/src/main.ts b/samples/charts/category-chart/stack-columns/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/category-chart/stack-columns/src/main.ts +++ b/samples/charts/category-chart/stack-columns/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/category-chart/tooltip-template/src/app/app.component.html b/samples/charts/category-chart/tooltip-template/src/app.component.html similarity index 100% rename from samples/charts/category-chart/tooltip-template/src/app/app.component.html rename to samples/charts/category-chart/tooltip-template/src/app.component.html diff --git a/samples/charts/category-chart/tooltip-template/src/app/app.component.scss b/samples/charts/category-chart/tooltip-template/src/app.component.scss similarity index 100% rename from samples/charts/category-chart/tooltip-template/src/app/app.component.scss rename to samples/charts/category-chart/tooltip-template/src/app.component.scss diff --git a/samples/charts/category-chart/tooltip-template/src/app/app.component.ts b/samples/charts/category-chart/tooltip-template/src/app.component.ts similarity index 100% rename from samples/charts/category-chart/tooltip-template/src/app/app.component.ts rename to samples/charts/category-chart/tooltip-template/src/app.component.ts diff --git a/samples/charts/category-chart/tooltip-template/src/app/app.module.ts b/samples/charts/category-chart/tooltip-template/src/app.module.ts similarity index 100% rename from samples/charts/category-chart/tooltip-template/src/app/app.module.ts rename to samples/charts/category-chart/tooltip-template/src/app.module.ts diff --git a/samples/charts/category-chart/tooltip-template/src/main.ts b/samples/charts/category-chart/tooltip-template/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/category-chart/tooltip-template/src/main.ts +++ b/samples/charts/category-chart/tooltip-template/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/category-chart/tooltip-types/src/app/app.component.html b/samples/charts/category-chart/tooltip-types/src/app.component.html similarity index 100% rename from samples/charts/category-chart/tooltip-types/src/app/app.component.html rename to samples/charts/category-chart/tooltip-types/src/app.component.html diff --git a/samples/charts/category-chart/tooltip-types/src/app/app.component.scss b/samples/charts/category-chart/tooltip-types/src/app.component.scss similarity index 100% rename from samples/charts/category-chart/tooltip-types/src/app/app.component.scss rename to samples/charts/category-chart/tooltip-types/src/app.component.scss diff --git a/samples/charts/category-chart/tooltip-types/src/app/app.component.ts b/samples/charts/category-chart/tooltip-types/src/app.component.ts similarity index 100% rename from samples/charts/category-chart/tooltip-types/src/app/app.component.ts rename to samples/charts/category-chart/tooltip-types/src/app.component.ts diff --git a/samples/charts/category-chart/tooltip-types/src/app/app.module.ts b/samples/charts/category-chart/tooltip-types/src/app.module.ts similarity index 100% rename from samples/charts/category-chart/tooltip-types/src/app/app.module.ts rename to samples/charts/category-chart/tooltip-types/src/app.module.ts diff --git a/samples/charts/category-chart/tooltip-types/src/main.ts b/samples/charts/category-chart/tooltip-types/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/category-chart/tooltip-types/src/main.ts +++ b/samples/charts/category-chart/tooltip-types/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/category-chart/trendline/src/app/app.component.html b/samples/charts/category-chart/trendline/src/app.component.html similarity index 100% rename from samples/charts/category-chart/trendline/src/app/app.component.html rename to samples/charts/category-chart/trendline/src/app.component.html diff --git a/samples/charts/category-chart/trendline/src/app/app.component.scss b/samples/charts/category-chart/trendline/src/app.component.scss similarity index 100% rename from samples/charts/category-chart/trendline/src/app/app.component.scss rename to samples/charts/category-chart/trendline/src/app.component.scss diff --git a/samples/charts/category-chart/trendline/src/app/app.component.ts b/samples/charts/category-chart/trendline/src/app.component.ts similarity index 100% rename from samples/charts/category-chart/trendline/src/app/app.component.ts rename to samples/charts/category-chart/trendline/src/app.component.ts diff --git a/samples/charts/category-chart/trendline/src/app/app.module.ts b/samples/charts/category-chart/trendline/src/app.module.ts similarity index 100% rename from samples/charts/category-chart/trendline/src/app/app.module.ts rename to samples/charts/category-chart/trendline/src/app.module.ts diff --git a/samples/charts/category-chart/trendline/src/main.ts b/samples/charts/category-chart/trendline/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/category-chart/trendline/src/main.ts +++ b/samples/charts/category-chart/trendline/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/axis-annotations/src/app/app.component.html b/samples/charts/data-chart/axis-annotations/src/app.component.html similarity index 100% rename from samples/charts/data-chart/axis-annotations/src/app/app.component.html rename to samples/charts/data-chart/axis-annotations/src/app.component.html diff --git a/samples/charts/data-chart/axis-annotations/src/app/app.component.scss b/samples/charts/data-chart/axis-annotations/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/axis-annotations/src/app/app.component.scss rename to samples/charts/data-chart/axis-annotations/src/app.component.scss diff --git a/samples/charts/data-chart/axis-annotations/src/app/app.component.ts b/samples/charts/data-chart/axis-annotations/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/axis-annotations/src/app/app.component.ts rename to samples/charts/data-chart/axis-annotations/src/app.component.ts diff --git a/samples/charts/data-chart/axis-annotations/src/app/app.module.ts b/samples/charts/data-chart/axis-annotations/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/axis-annotations/src/app/app.module.ts rename to samples/charts/data-chart/axis-annotations/src/app.module.ts diff --git a/samples/charts/data-chart/axis-annotations/src/main.ts b/samples/charts/data-chart/axis-annotations/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/axis-annotations/src/main.ts +++ b/samples/charts/data-chart/axis-annotations/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/axis-crossing/src/app/app.component.html b/samples/charts/data-chart/axis-crossing/src/app.component.html similarity index 100% rename from samples/charts/data-chart/axis-crossing/src/app/app.component.html rename to samples/charts/data-chart/axis-crossing/src/app.component.html diff --git a/samples/charts/data-chart/axis-crossing/src/app/app.component.scss b/samples/charts/data-chart/axis-crossing/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/axis-crossing/src/app/app.component.scss rename to samples/charts/data-chart/axis-crossing/src/app.component.scss diff --git a/samples/charts/data-chart/axis-crossing/src/app/app.component.ts b/samples/charts/data-chart/axis-crossing/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/axis-crossing/src/app/app.component.ts rename to samples/charts/data-chart/axis-crossing/src/app.component.ts diff --git a/samples/charts/data-chart/axis-crossing/src/app/app.module.ts b/samples/charts/data-chart/axis-crossing/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/axis-crossing/src/app/app.module.ts rename to samples/charts/data-chart/axis-crossing/src/app.module.ts diff --git a/samples/charts/data-chart/axis-crossing/src/main.ts b/samples/charts/data-chart/axis-crossing/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/axis-crossing/src/main.ts +++ b/samples/charts/data-chart/axis-crossing/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/axis-locations/src/app/app.component.html b/samples/charts/data-chart/axis-locations/src/app.component.html similarity index 100% rename from samples/charts/data-chart/axis-locations/src/app/app.component.html rename to samples/charts/data-chart/axis-locations/src/app.component.html diff --git a/samples/charts/data-chart/axis-locations/src/app/app.component.scss b/samples/charts/data-chart/axis-locations/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/axis-locations/src/app/app.component.scss rename to samples/charts/data-chart/axis-locations/src/app.component.scss diff --git a/samples/charts/data-chart/axis-locations/src/app/app.component.ts b/samples/charts/data-chart/axis-locations/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/axis-locations/src/app/app.component.ts rename to samples/charts/data-chart/axis-locations/src/app.component.ts diff --git a/samples/charts/data-chart/axis-locations/src/app/app.module.ts b/samples/charts/data-chart/axis-locations/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/axis-locations/src/app/app.module.ts rename to samples/charts/data-chart/axis-locations/src/app.module.ts diff --git a/samples/charts/data-chart/axis-locations/src/main.ts b/samples/charts/data-chart/axis-locations/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/axis-locations/src/main.ts +++ b/samples/charts/data-chart/axis-locations/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/axis-settings/src/app/SharedData.ts b/samples/charts/data-chart/axis-settings/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/axis-settings/src/app/SharedData.ts rename to samples/charts/data-chart/axis-settings/src/SharedData.ts diff --git a/samples/charts/data-chart/axis-settings/src/app/app.component.html b/samples/charts/data-chart/axis-settings/src/app.component.html similarity index 100% rename from samples/charts/data-chart/axis-settings/src/app/app.component.html rename to samples/charts/data-chart/axis-settings/src/app.component.html diff --git a/samples/charts/data-chart/axis-settings/src/app/app.component.scss b/samples/charts/data-chart/axis-settings/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/axis-settings/src/app/app.component.scss rename to samples/charts/data-chart/axis-settings/src/app.component.scss diff --git a/samples/charts/data-chart/axis-settings/src/app/app.component.ts b/samples/charts/data-chart/axis-settings/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/axis-settings/src/app/app.component.ts rename to samples/charts/data-chart/axis-settings/src/app.component.ts diff --git a/samples/charts/data-chart/axis-settings/src/app/app.module.ts b/samples/charts/data-chart/axis-settings/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/axis-settings/src/app/app.module.ts rename to samples/charts/data-chart/axis-settings/src/app.module.ts diff --git a/samples/charts/data-chart/axis-settings/src/main.ts b/samples/charts/data-chart/axis-settings/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/axis-settings/src/main.ts +++ b/samples/charts/data-chart/axis-settings/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/axis-sharing/src/app/SampleFinancialData.ts b/samples/charts/data-chart/axis-sharing/src/SampleFinancialData.ts similarity index 100% rename from samples/charts/data-chart/axis-sharing/src/app/SampleFinancialData.ts rename to samples/charts/data-chart/axis-sharing/src/SampleFinancialData.ts diff --git a/samples/charts/data-chart/axis-sharing/src/app/app.component.html b/samples/charts/data-chart/axis-sharing/src/app.component.html similarity index 100% rename from samples/charts/data-chart/axis-sharing/src/app/app.component.html rename to samples/charts/data-chart/axis-sharing/src/app.component.html diff --git a/samples/charts/data-chart/axis-sharing/src/app/app.component.scss b/samples/charts/data-chart/axis-sharing/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/axis-sharing/src/app/app.component.scss rename to samples/charts/data-chart/axis-sharing/src/app.component.scss diff --git a/samples/charts/data-chart/axis-sharing/src/app/app.component.ts b/samples/charts/data-chart/axis-sharing/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/axis-sharing/src/app/app.component.ts rename to samples/charts/data-chart/axis-sharing/src/app.component.ts diff --git a/samples/charts/data-chart/axis-sharing/src/app/app.module.ts b/samples/charts/data-chart/axis-sharing/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/axis-sharing/src/app/app.module.ts rename to samples/charts/data-chart/axis-sharing/src/app.module.ts diff --git a/samples/charts/data-chart/axis-sharing/src/main.ts b/samples/charts/data-chart/axis-sharing/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/axis-sharing/src/main.ts +++ b/samples/charts/data-chart/axis-sharing/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/axis-types/src/app/SampleCategoryData.ts b/samples/charts/data-chart/axis-types/src/SampleCategoryData.ts similarity index 100% rename from samples/charts/data-chart/axis-types/src/app/SampleCategoryData.ts rename to samples/charts/data-chart/axis-types/src/SampleCategoryData.ts diff --git a/samples/charts/data-chart/axis-types/src/app/SampleFinancialData.ts b/samples/charts/data-chart/axis-types/src/SampleFinancialData.ts similarity index 100% rename from samples/charts/data-chart/axis-types/src/app/SampleFinancialData.ts rename to samples/charts/data-chart/axis-types/src/SampleFinancialData.ts diff --git a/samples/charts/data-chart/axis-types/src/app/SampleScatterData.ts b/samples/charts/data-chart/axis-types/src/SampleScatterData.ts similarity index 100% rename from samples/charts/data-chart/axis-types/src/app/SampleScatterData.ts rename to samples/charts/data-chart/axis-types/src/SampleScatterData.ts diff --git a/samples/charts/data-chart/axis-types/src/app/app.component.html b/samples/charts/data-chart/axis-types/src/app.component.html similarity index 100% rename from samples/charts/data-chart/axis-types/src/app/app.component.html rename to samples/charts/data-chart/axis-types/src/app.component.html diff --git a/samples/charts/data-chart/axis-types/src/app/app.component.scss b/samples/charts/data-chart/axis-types/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/axis-types/src/app/app.component.scss rename to samples/charts/data-chart/axis-types/src/app.component.scss diff --git a/samples/charts/data-chart/axis-types/src/app/app.component.ts b/samples/charts/data-chart/axis-types/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/axis-types/src/app/app.component.ts rename to samples/charts/data-chart/axis-types/src/app.component.ts diff --git a/samples/charts/data-chart/axis-types/src/app/app.module.ts b/samples/charts/data-chart/axis-types/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/axis-types/src/app/app.module.ts rename to samples/charts/data-chart/axis-types/src/app.module.ts diff --git a/samples/charts/data-chart/axis-types/src/main.ts b/samples/charts/data-chart/axis-types/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/axis-types/src/main.ts +++ b/samples/charts/data-chart/axis-types/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/chart-navigation/src/app/SampleScatterStats.ts b/samples/charts/data-chart/chart-navigation/src/SampleScatterStats.ts similarity index 100% rename from samples/charts/data-chart/chart-navigation/src/app/SampleScatterStats.ts rename to samples/charts/data-chart/chart-navigation/src/SampleScatterStats.ts diff --git a/samples/charts/data-chart/chart-navigation/src/app/app.component.html b/samples/charts/data-chart/chart-navigation/src/app.component.html similarity index 100% rename from samples/charts/data-chart/chart-navigation/src/app/app.component.html rename to samples/charts/data-chart/chart-navigation/src/app.component.html diff --git a/samples/charts/data-chart/chart-navigation/src/app/app.component.scss b/samples/charts/data-chart/chart-navigation/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/chart-navigation/src/app/app.component.scss rename to samples/charts/data-chart/chart-navigation/src/app.component.scss diff --git a/samples/charts/data-chart/chart-navigation/src/app/app.component.ts b/samples/charts/data-chart/chart-navigation/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/chart-navigation/src/app/app.component.ts rename to samples/charts/data-chart/chart-navigation/src/app.component.ts diff --git a/samples/charts/data-chart/chart-navigation/src/app/app.module.ts b/samples/charts/data-chart/chart-navigation/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/chart-navigation/src/app/app.module.ts rename to samples/charts/data-chart/chart-navigation/src/app.module.ts diff --git a/samples/charts/data-chart/chart-navigation/src/main.ts b/samples/charts/data-chart/chart-navigation/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/chart-navigation/src/main.ts +++ b/samples/charts/data-chart/chart-navigation/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/chart-overview/src/app/SampleScatterStats.ts b/samples/charts/data-chart/chart-overview/src/SampleScatterStats.ts similarity index 100% rename from samples/charts/data-chart/chart-overview/src/app/SampleScatterStats.ts rename to samples/charts/data-chart/chart-overview/src/SampleScatterStats.ts diff --git a/samples/charts/data-chart/chart-overview/src/app/app.component.html b/samples/charts/data-chart/chart-overview/src/app.component.html similarity index 100% rename from samples/charts/data-chart/chart-overview/src/app/app.component.html rename to samples/charts/data-chart/chart-overview/src/app.component.html diff --git a/samples/charts/data-chart/chart-overview/src/app/app.component.scss b/samples/charts/data-chart/chart-overview/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/chart-overview/src/app/app.component.scss rename to samples/charts/data-chart/chart-overview/src/app.component.scss diff --git a/samples/charts/data-chart/chart-overview/src/app/app.component.ts b/samples/charts/data-chart/chart-overview/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/chart-overview/src/app/app.component.ts rename to samples/charts/data-chart/chart-overview/src/app.component.ts diff --git a/samples/charts/data-chart/chart-overview/src/app/app.module.ts b/samples/charts/data-chart/chart-overview/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/chart-overview/src/app/app.module.ts rename to samples/charts/data-chart/chart-overview/src/app.module.ts diff --git a/samples/charts/data-chart/chart-overview/src/main.ts b/samples/charts/data-chart/chart-overview/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/chart-overview/src/main.ts +++ b/samples/charts/data-chart/chart-overview/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/chart-performance/src/app/SharedData.ts b/samples/charts/data-chart/chart-performance/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/chart-performance/src/app/SharedData.ts rename to samples/charts/data-chart/chart-performance/src/SharedData.ts diff --git a/samples/charts/data-chart/chart-performance/src/app/app.component.html b/samples/charts/data-chart/chart-performance/src/app.component.html similarity index 100% rename from samples/charts/data-chart/chart-performance/src/app/app.component.html rename to samples/charts/data-chart/chart-performance/src/app.component.html diff --git a/samples/charts/data-chart/chart-performance/src/app/app.component.scss b/samples/charts/data-chart/chart-performance/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/chart-performance/src/app/app.component.scss rename to samples/charts/data-chart/chart-performance/src/app.component.scss diff --git a/samples/charts/data-chart/chart-performance/src/app/app.component.ts b/samples/charts/data-chart/chart-performance/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/chart-performance/src/app/app.component.ts rename to samples/charts/data-chart/chart-performance/src/app.component.ts diff --git a/samples/charts/data-chart/chart-performance/src/app/app.module.ts b/samples/charts/data-chart/chart-performance/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/chart-performance/src/app/app.module.ts rename to samples/charts/data-chart/chart-performance/src/app.module.ts diff --git a/samples/charts/data-chart/chart-performance/src/main.ts b/samples/charts/data-chart/chart-performance/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/chart-performance/src/main.ts +++ b/samples/charts/data-chart/chart-performance/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/chart-synchronization/src/app/SharedData.ts b/samples/charts/data-chart/chart-synchronization/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/chart-synchronization/src/app/SharedData.ts rename to samples/charts/data-chart/chart-synchronization/src/SharedData.ts diff --git a/samples/charts/data-chart/chart-synchronization/src/app/app.component.html b/samples/charts/data-chart/chart-synchronization/src/app.component.html similarity index 100% rename from samples/charts/data-chart/chart-synchronization/src/app/app.component.html rename to samples/charts/data-chart/chart-synchronization/src/app.component.html diff --git a/samples/charts/data-chart/chart-synchronization/src/app/app.component.scss b/samples/charts/data-chart/chart-synchronization/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/chart-synchronization/src/app/app.component.scss rename to samples/charts/data-chart/chart-synchronization/src/app.component.scss diff --git a/samples/charts/data-chart/chart-synchronization/src/app/app.component.ts b/samples/charts/data-chart/chart-synchronization/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/chart-synchronization/src/app/app.component.ts rename to samples/charts/data-chart/chart-synchronization/src/app.component.ts diff --git a/samples/charts/data-chart/chart-synchronization/src/app/app.module.ts b/samples/charts/data-chart/chart-synchronization/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/chart-synchronization/src/app/app.module.ts rename to samples/charts/data-chart/chart-synchronization/src/app.module.ts diff --git a/samples/charts/data-chart/chart-synchronization/src/main.ts b/samples/charts/data-chart/chart-synchronization/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/chart-synchronization/src/main.ts +++ b/samples/charts/data-chart/chart-synchronization/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/chart-titles/src/app/SharedData.ts b/samples/charts/data-chart/chart-titles/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/chart-titles/src/app/SharedData.ts rename to samples/charts/data-chart/chart-titles/src/SharedData.ts diff --git a/samples/charts/data-chart/chart-titles/src/app/app.component.html b/samples/charts/data-chart/chart-titles/src/app.component.html similarity index 100% rename from samples/charts/data-chart/chart-titles/src/app/app.component.html rename to samples/charts/data-chart/chart-titles/src/app.component.html diff --git a/samples/charts/data-chart/chart-titles/src/app/app.component.scss b/samples/charts/data-chart/chart-titles/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/chart-titles/src/app/app.component.scss rename to samples/charts/data-chart/chart-titles/src/app.component.scss diff --git a/samples/charts/data-chart/chart-titles/src/app/app.component.ts b/samples/charts/data-chart/chart-titles/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/chart-titles/src/app/app.component.ts rename to samples/charts/data-chart/chart-titles/src/app.component.ts diff --git a/samples/charts/data-chart/chart-titles/src/app/app.module.ts b/samples/charts/data-chart/chart-titles/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/chart-titles/src/app/app.module.ts rename to samples/charts/data-chart/chart-titles/src/app.module.ts diff --git a/samples/charts/data-chart/chart-titles/src/main.ts b/samples/charts/data-chart/chart-titles/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/chart-titles/src/main.ts +++ b/samples/charts/data-chart/chart-titles/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/column-chart-styling/src/app/app.component.html b/samples/charts/data-chart/column-chart-styling/src/app.component.html similarity index 100% rename from samples/charts/data-chart/column-chart-styling/src/app/app.component.html rename to samples/charts/data-chart/column-chart-styling/src/app.component.html diff --git a/samples/charts/data-chart/column-chart-styling/src/app/app.component.scss b/samples/charts/data-chart/column-chart-styling/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/column-chart-styling/src/app/app.component.scss rename to samples/charts/data-chart/column-chart-styling/src/app.component.scss diff --git a/samples/charts/data-chart/column-chart-styling/src/app/app.component.ts b/samples/charts/data-chart/column-chart-styling/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/column-chart-styling/src/app/app.component.ts rename to samples/charts/data-chart/column-chart-styling/src/app.component.ts diff --git a/samples/charts/data-chart/column-chart-styling/src/app/app.module.ts b/samples/charts/data-chart/column-chart-styling/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/column-chart-styling/src/app/app.module.ts rename to samples/charts/data-chart/column-chart-styling/src/app.module.ts diff --git a/samples/charts/data-chart/column-chart-styling/src/main.ts b/samples/charts/data-chart/column-chart-styling/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/column-chart-styling/src/main.ts +++ b/samples/charts/data-chart/column-chart-styling/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/composite-chart/src/app/app.component.html b/samples/charts/data-chart/composite-chart/src/app.component.html similarity index 100% rename from samples/charts/data-chart/composite-chart/src/app/app.component.html rename to samples/charts/data-chart/composite-chart/src/app.component.html diff --git a/samples/charts/data-chart/composite-chart/src/app/app.component.scss b/samples/charts/data-chart/composite-chart/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/composite-chart/src/app/app.component.scss rename to samples/charts/data-chart/composite-chart/src/app.component.scss diff --git a/samples/charts/data-chart/composite-chart/src/app/app.component.ts b/samples/charts/data-chart/composite-chart/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/composite-chart/src/app/app.component.ts rename to samples/charts/data-chart/composite-chart/src/app.component.ts diff --git a/samples/charts/data-chart/composite-chart/src/app/app.module.ts b/samples/charts/data-chart/composite-chart/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/composite-chart/src/app/app.module.ts rename to samples/charts/data-chart/composite-chart/src/app.module.ts diff --git a/samples/charts/data-chart/composite-chart/src/main.ts b/samples/charts/data-chart/composite-chart/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/composite-chart/src/main.ts +++ b/samples/charts/data-chart/composite-chart/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/crosshair-layer-styling/src/app/app.component.html b/samples/charts/data-chart/crosshair-layer-styling/src/app.component.html similarity index 100% rename from samples/charts/data-chart/crosshair-layer-styling/src/app/app.component.html rename to samples/charts/data-chart/crosshair-layer-styling/src/app.component.html diff --git a/samples/charts/data-chart/crosshair-layer-styling/src/app/app.component.scss b/samples/charts/data-chart/crosshair-layer-styling/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/crosshair-layer-styling/src/app/app.component.scss rename to samples/charts/data-chart/crosshair-layer-styling/src/app.component.scss diff --git a/samples/charts/data-chart/crosshair-layer-styling/src/app/app.component.ts b/samples/charts/data-chart/crosshair-layer-styling/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/crosshair-layer-styling/src/app/app.component.ts rename to samples/charts/data-chart/crosshair-layer-styling/src/app.component.ts diff --git a/samples/charts/data-chart/crosshair-layer-styling/src/app/app.module.ts b/samples/charts/data-chart/crosshair-layer-styling/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/crosshair-layer-styling/src/app/app.module.ts rename to samples/charts/data-chart/crosshair-layer-styling/src/app.module.ts diff --git a/samples/charts/data-chart/crosshair-layer-styling/src/main.ts b/samples/charts/data-chart/crosshair-layer-styling/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/src/main.ts +++ b/samples/charts/data-chart/crosshair-layer-styling/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/app/StocksHistory.ts b/samples/charts/data-chart/custom-drawing-annotations/src/StocksHistory.ts similarity index 100% rename from samples/charts/data-chart/custom-drawing-annotations/src/app/StocksHistory.ts rename to samples/charts/data-chart/custom-drawing-annotations/src/StocksHistory.ts diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.html b/samples/charts/data-chart/custom-drawing-annotations/src/app.component.html similarity index 100% rename from samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.html rename to samples/charts/data-chart/custom-drawing-annotations/src/app.component.html diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.scss b/samples/charts/data-chart/custom-drawing-annotations/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.scss rename to samples/charts/data-chart/custom-drawing-annotations/src/app.component.scss diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.ts b/samples/charts/data-chart/custom-drawing-annotations/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/custom-drawing-annotations/src/app/app.component.ts rename to samples/charts/data-chart/custom-drawing-annotations/src/app.component.ts diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/app/app.module.ts b/samples/charts/data-chart/custom-drawing-annotations/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/custom-drawing-annotations/src/app/app.module.ts rename to samples/charts/data-chart/custom-drawing-annotations/src/app.module.ts diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/main.ts b/samples/charts/data-chart/custom-drawing-annotations/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/src/main.ts +++ b/samples/charts/data-chart/custom-drawing-annotations/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/custom-editing-data/src/app/EditableDataSource.ts b/samples/charts/data-chart/custom-editing-data/src/EditableDataSource.ts similarity index 100% rename from samples/charts/data-chart/custom-editing-data/src/app/EditableDataSource.ts rename to samples/charts/data-chart/custom-editing-data/src/EditableDataSource.ts diff --git a/samples/charts/data-chart/custom-editing-data/src/app/app.component.html b/samples/charts/data-chart/custom-editing-data/src/app.component.html similarity index 100% rename from samples/charts/data-chart/custom-editing-data/src/app/app.component.html rename to samples/charts/data-chart/custom-editing-data/src/app.component.html diff --git a/samples/charts/data-chart/custom-editing-data/src/app/app.component.scss b/samples/charts/data-chart/custom-editing-data/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/custom-editing-data/src/app/app.component.scss rename to samples/charts/data-chart/custom-editing-data/src/app.component.scss diff --git a/samples/charts/data-chart/custom-editing-data/src/app/app.component.ts b/samples/charts/data-chart/custom-editing-data/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/custom-editing-data/src/app/app.component.ts rename to samples/charts/data-chart/custom-editing-data/src/app.component.ts diff --git a/samples/charts/data-chart/custom-editing-data/src/app/app.module.ts b/samples/charts/data-chart/custom-editing-data/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/custom-editing-data/src/app/app.module.ts rename to samples/charts/data-chart/custom-editing-data/src/app.module.ts diff --git a/samples/charts/data-chart/custom-editing-data/src/main.ts b/samples/charts/data-chart/custom-editing-data/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/custom-editing-data/src/main.ts +++ b/samples/charts/data-chart/custom-editing-data/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/final-value-layer-styling/src/app/app.component.html b/samples/charts/data-chart/final-value-layer-styling/src/app.component.html similarity index 100% rename from samples/charts/data-chart/final-value-layer-styling/src/app/app.component.html rename to samples/charts/data-chart/final-value-layer-styling/src/app.component.html diff --git a/samples/charts/data-chart/final-value-layer-styling/src/app/app.component.scss b/samples/charts/data-chart/final-value-layer-styling/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/final-value-layer-styling/src/app/app.component.scss rename to samples/charts/data-chart/final-value-layer-styling/src/app.component.scss diff --git a/samples/charts/data-chart/final-value-layer-styling/src/app/app.component.ts b/samples/charts/data-chart/final-value-layer-styling/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/final-value-layer-styling/src/app/app.component.ts rename to samples/charts/data-chart/final-value-layer-styling/src/app.component.ts diff --git a/samples/charts/data-chart/final-value-layer-styling/src/app/app.module.ts b/samples/charts/data-chart/final-value-layer-styling/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/final-value-layer-styling/src/app/app.module.ts rename to samples/charts/data-chart/final-value-layer-styling/src/app.module.ts diff --git a/samples/charts/data-chart/final-value-layer-styling/src/main.ts b/samples/charts/data-chart/final-value-layer-styling/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/final-value-layer-styling/src/main.ts +++ b/samples/charts/data-chart/final-value-layer-styling/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/legends/src/app/SharedData.ts b/samples/charts/data-chart/legends/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/legends/src/app/SharedData.ts rename to samples/charts/data-chart/legends/src/SharedData.ts diff --git a/samples/charts/data-chart/legends/src/app/app.component.html b/samples/charts/data-chart/legends/src/app.component.html similarity index 100% rename from samples/charts/data-chart/legends/src/app/app.component.html rename to samples/charts/data-chart/legends/src/app.component.html diff --git a/samples/charts/data-chart/legends/src/app/app.component.scss b/samples/charts/data-chart/legends/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/legends/src/app/app.component.scss rename to samples/charts/data-chart/legends/src/app.component.scss diff --git a/samples/charts/data-chart/legends/src/app/app.component.ts b/samples/charts/data-chart/legends/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/legends/src/app/app.component.ts rename to samples/charts/data-chart/legends/src/app.component.ts diff --git a/samples/charts/data-chart/legends/src/app/app.module.ts b/samples/charts/data-chart/legends/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/legends/src/app/app.module.ts rename to samples/charts/data-chart/legends/src/app.module.ts diff --git a/samples/charts/data-chart/legends/src/main.ts b/samples/charts/data-chart/legends/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/legends/src/main.ts +++ b/samples/charts/data-chart/legends/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/polar-chart-types/src/app/SamplePolarData.ts b/samples/charts/data-chart/polar-chart-types/src/SamplePolarData.ts similarity index 100% rename from samples/charts/data-chart/polar-chart-types/src/app/SamplePolarData.ts rename to samples/charts/data-chart/polar-chart-types/src/SamplePolarData.ts diff --git a/samples/charts/data-chart/polar-chart-types/src/app/app.component.html b/samples/charts/data-chart/polar-chart-types/src/app.component.html similarity index 100% rename from samples/charts/data-chart/polar-chart-types/src/app/app.component.html rename to samples/charts/data-chart/polar-chart-types/src/app.component.html diff --git a/samples/charts/data-chart/polar-chart-types/src/app/app.component.scss b/samples/charts/data-chart/polar-chart-types/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/polar-chart-types/src/app/app.component.scss rename to samples/charts/data-chart/polar-chart-types/src/app.component.scss diff --git a/samples/charts/data-chart/polar-chart-types/src/app/app.component.ts b/samples/charts/data-chart/polar-chart-types/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/polar-chart-types/src/app/app.component.ts rename to samples/charts/data-chart/polar-chart-types/src/app.component.ts diff --git a/samples/charts/data-chart/polar-chart-types/src/app/app.module.ts b/samples/charts/data-chart/polar-chart-types/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/polar-chart-types/src/app/app.module.ts rename to samples/charts/data-chart/polar-chart-types/src/app.module.ts diff --git a/samples/charts/data-chart/polar-chart-types/src/main.ts b/samples/charts/data-chart/polar-chart-types/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/polar-chart-types/src/main.ts +++ b/samples/charts/data-chart/polar-chart-types/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/radial-chart-types/src/app/SampleRadialData.ts b/samples/charts/data-chart/radial-chart-types/src/SampleRadialData.ts similarity index 100% rename from samples/charts/data-chart/radial-chart-types/src/app/SampleRadialData.ts rename to samples/charts/data-chart/radial-chart-types/src/SampleRadialData.ts diff --git a/samples/charts/data-chart/radial-chart-types/src/app/app.component.html b/samples/charts/data-chart/radial-chart-types/src/app.component.html similarity index 100% rename from samples/charts/data-chart/radial-chart-types/src/app/app.component.html rename to samples/charts/data-chart/radial-chart-types/src/app.component.html diff --git a/samples/charts/data-chart/radial-chart-types/src/app/app.component.scss b/samples/charts/data-chart/radial-chart-types/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/radial-chart-types/src/app/app.component.scss rename to samples/charts/data-chart/radial-chart-types/src/app.component.scss diff --git a/samples/charts/data-chart/radial-chart-types/src/app/app.component.ts b/samples/charts/data-chart/radial-chart-types/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/radial-chart-types/src/app/app.component.ts rename to samples/charts/data-chart/radial-chart-types/src/app.component.ts diff --git a/samples/charts/data-chart/radial-chart-types/src/app/app.module.ts b/samples/charts/data-chart/radial-chart-types/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/radial-chart-types/src/app/app.module.ts rename to samples/charts/data-chart/radial-chart-types/src/app.module.ts diff --git a/samples/charts/data-chart/radial-chart-types/src/main.ts b/samples/charts/data-chart/radial-chart-types/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/radial-chart-types/src/main.ts +++ b/samples/charts/data-chart/radial-chart-types/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/series-animations/src/app/SharedData.ts b/samples/charts/data-chart/series-animations/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/series-animations/src/app/SharedData.ts rename to samples/charts/data-chart/series-animations/src/SharedData.ts diff --git a/samples/charts/data-chart/series-animations/src/app/app.component.html b/samples/charts/data-chart/series-animations/src/app.component.html similarity index 100% rename from samples/charts/data-chart/series-animations/src/app/app.component.html rename to samples/charts/data-chart/series-animations/src/app.component.html diff --git a/samples/charts/data-chart/series-animations/src/app/app.component.scss b/samples/charts/data-chart/series-animations/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/series-animations/src/app/app.component.scss rename to samples/charts/data-chart/series-animations/src/app.component.scss diff --git a/samples/charts/data-chart/series-animations/src/app/app.component.ts b/samples/charts/data-chart/series-animations/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/series-animations/src/app/app.component.ts rename to samples/charts/data-chart/series-animations/src/app.component.ts diff --git a/samples/charts/data-chart/series-animations/src/app/app.module.ts b/samples/charts/data-chart/series-animations/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/series-animations/src/app/app.module.ts rename to samples/charts/data-chart/series-animations/src/app.module.ts diff --git a/samples/charts/data-chart/series-animations/src/main.ts b/samples/charts/data-chart/series-animations/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/series-animations/src/main.ts +++ b/samples/charts/data-chart/series-animations/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/series-annotations/src/app/SharedData.ts b/samples/charts/data-chart/series-annotations/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/series-annotations/src/app/SharedData.ts rename to samples/charts/data-chart/series-annotations/src/SharedData.ts diff --git a/samples/charts/data-chart/series-annotations/src/app/app.component.html b/samples/charts/data-chart/series-annotations/src/app.component.html similarity index 100% rename from samples/charts/data-chart/series-annotations/src/app/app.component.html rename to samples/charts/data-chart/series-annotations/src/app.component.html diff --git a/samples/charts/data-chart/series-annotations/src/app/app.component.scss b/samples/charts/data-chart/series-annotations/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/series-annotations/src/app/app.component.scss rename to samples/charts/data-chart/series-annotations/src/app.component.scss diff --git a/samples/charts/data-chart/series-annotations/src/app/app.component.ts b/samples/charts/data-chart/series-annotations/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/series-annotations/src/app/app.component.ts rename to samples/charts/data-chart/series-annotations/src/app.component.ts diff --git a/samples/charts/data-chart/series-annotations/src/app/app.module.ts b/samples/charts/data-chart/series-annotations/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/series-annotations/src/app/app.module.ts rename to samples/charts/data-chart/series-annotations/src/app.module.ts diff --git a/samples/charts/data-chart/series-annotations/src/main.ts b/samples/charts/data-chart/series-annotations/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/series-annotations/src/main.ts +++ b/samples/charts/data-chart/series-annotations/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/series-highlighting/src/app/SharedData.ts b/samples/charts/data-chart/series-highlighting/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/series-highlighting/src/app/SharedData.ts rename to samples/charts/data-chart/series-highlighting/src/SharedData.ts diff --git a/samples/charts/data-chart/series-highlighting/src/app/app.component.html b/samples/charts/data-chart/series-highlighting/src/app.component.html similarity index 100% rename from samples/charts/data-chart/series-highlighting/src/app/app.component.html rename to samples/charts/data-chart/series-highlighting/src/app.component.html diff --git a/samples/charts/data-chart/series-highlighting/src/app/app.component.scss b/samples/charts/data-chart/series-highlighting/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/series-highlighting/src/app/app.component.scss rename to samples/charts/data-chart/series-highlighting/src/app.component.scss diff --git a/samples/charts/data-chart/series-highlighting/src/app/app.component.ts b/samples/charts/data-chart/series-highlighting/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/series-highlighting/src/app/app.component.ts rename to samples/charts/data-chart/series-highlighting/src/app.component.ts diff --git a/samples/charts/data-chart/series-highlighting/src/app/app.module.ts b/samples/charts/data-chart/series-highlighting/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/series-highlighting/src/app/app.module.ts rename to samples/charts/data-chart/series-highlighting/src/app.module.ts diff --git a/samples/charts/data-chart/series-highlighting/src/main.ts b/samples/charts/data-chart/series-highlighting/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/series-highlighting/src/main.ts +++ b/samples/charts/data-chart/series-highlighting/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/series-marker-template/src/app/app.component.html b/samples/charts/data-chart/series-marker-template/src/app.component.html similarity index 100% rename from samples/charts/data-chart/series-marker-template/src/app/app.component.html rename to samples/charts/data-chart/series-marker-template/src/app.component.html diff --git a/samples/charts/data-chart/series-marker-template/src/app/app.component.scss b/samples/charts/data-chart/series-marker-template/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/series-marker-template/src/app/app.component.scss rename to samples/charts/data-chart/series-marker-template/src/app.component.scss diff --git a/samples/charts/data-chart/series-marker-template/src/app/app.component.ts b/samples/charts/data-chart/series-marker-template/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/series-marker-template/src/app/app.component.ts rename to samples/charts/data-chart/series-marker-template/src/app.component.ts diff --git a/samples/charts/data-chart/series-marker-template/src/app/app.module.ts b/samples/charts/data-chart/series-marker-template/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/series-marker-template/src/app/app.module.ts rename to samples/charts/data-chart/series-marker-template/src/app.module.ts diff --git a/samples/charts/data-chart/series-marker-template/src/main.ts b/samples/charts/data-chart/series-marker-template/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/series-marker-template/src/main.ts +++ b/samples/charts/data-chart/series-marker-template/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/series-markers/src/app/SharedData.ts b/samples/charts/data-chart/series-markers/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/series-markers/src/app/SharedData.ts rename to samples/charts/data-chart/series-markers/src/SharedData.ts diff --git a/samples/charts/data-chart/series-markers/src/app/app.component.html b/samples/charts/data-chart/series-markers/src/app.component.html similarity index 100% rename from samples/charts/data-chart/series-markers/src/app/app.component.html rename to samples/charts/data-chart/series-markers/src/app.component.html diff --git a/samples/charts/data-chart/series-markers/src/app/app.component.scss b/samples/charts/data-chart/series-markers/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/series-markers/src/app/app.component.scss rename to samples/charts/data-chart/series-markers/src/app.component.scss diff --git a/samples/charts/data-chart/series-markers/src/app/app.component.ts b/samples/charts/data-chart/series-markers/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/series-markers/src/app/app.component.ts rename to samples/charts/data-chart/series-markers/src/app.component.ts diff --git a/samples/charts/data-chart/series-markers/src/app/app.module.ts b/samples/charts/data-chart/series-markers/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/series-markers/src/app/app.module.ts rename to samples/charts/data-chart/series-markers/src/app.module.ts diff --git a/samples/charts/data-chart/series-markers/src/main.ts b/samples/charts/data-chart/series-markers/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/series-markers/src/main.ts +++ b/samples/charts/data-chart/series-markers/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/series-tooltips/src/app/SharedData.ts b/samples/charts/data-chart/series-tooltips/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/series-tooltips/src/app/SharedData.ts rename to samples/charts/data-chart/series-tooltips/src/SharedData.ts diff --git a/samples/charts/data-chart/series-tooltips/src/app/app.component.html b/samples/charts/data-chart/series-tooltips/src/app.component.html similarity index 100% rename from samples/charts/data-chart/series-tooltips/src/app/app.component.html rename to samples/charts/data-chart/series-tooltips/src/app.component.html diff --git a/samples/charts/data-chart/series-tooltips/src/app/app.component.scss b/samples/charts/data-chart/series-tooltips/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/series-tooltips/src/app/app.component.scss rename to samples/charts/data-chart/series-tooltips/src/app.component.scss diff --git a/samples/charts/data-chart/series-tooltips/src/app/app.component.ts b/samples/charts/data-chart/series-tooltips/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/series-tooltips/src/app/app.component.ts rename to samples/charts/data-chart/series-tooltips/src/app.component.ts diff --git a/samples/charts/data-chart/series-tooltips/src/app/app.module.ts b/samples/charts/data-chart/series-tooltips/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/series-tooltips/src/app/app.module.ts rename to samples/charts/data-chart/series-tooltips/src/app.module.ts diff --git a/samples/charts/data-chart/series-tooltips/src/main.ts b/samples/charts/data-chart/series-tooltips/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/series-tooltips/src/main.ts +++ b/samples/charts/data-chart/series-tooltips/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/series-trendlines/src/app/SampleFinancialData.ts b/samples/charts/data-chart/series-trendlines/src/SampleFinancialData.ts similarity index 100% rename from samples/charts/data-chart/series-trendlines/src/app/SampleFinancialData.ts rename to samples/charts/data-chart/series-trendlines/src/SampleFinancialData.ts diff --git a/samples/charts/data-chart/series-trendlines/src/app/app.component.html b/samples/charts/data-chart/series-trendlines/src/app.component.html similarity index 100% rename from samples/charts/data-chart/series-trendlines/src/app/app.component.html rename to samples/charts/data-chart/series-trendlines/src/app.component.html diff --git a/samples/charts/data-chart/series-trendlines/src/app/app.component.scss b/samples/charts/data-chart/series-trendlines/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/series-trendlines/src/app/app.component.scss rename to samples/charts/data-chart/series-trendlines/src/app.component.scss diff --git a/samples/charts/data-chart/series-trendlines/src/app/app.component.ts b/samples/charts/data-chart/series-trendlines/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/series-trendlines/src/app/app.component.ts rename to samples/charts/data-chart/series-trendlines/src/app.component.ts diff --git a/samples/charts/data-chart/series-trendlines/src/app/app.module.ts b/samples/charts/data-chart/series-trendlines/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/series-trendlines/src/app/app.module.ts rename to samples/charts/data-chart/series-trendlines/src/app.module.ts diff --git a/samples/charts/data-chart/series-trendlines/src/main.ts b/samples/charts/data-chart/series-trendlines/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/series-trendlines/src/main.ts +++ b/samples/charts/data-chart/series-trendlines/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/series-value-overlay/src/app/SharedData.ts b/samples/charts/data-chart/series-value-overlay/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/series-value-overlay/src/app/SharedData.ts rename to samples/charts/data-chart/series-value-overlay/src/SharedData.ts diff --git a/samples/charts/data-chart/series-value-overlay/src/app/app.component.html b/samples/charts/data-chart/series-value-overlay/src/app.component.html similarity index 100% rename from samples/charts/data-chart/series-value-overlay/src/app/app.component.html rename to samples/charts/data-chart/series-value-overlay/src/app.component.html diff --git a/samples/charts/data-chart/series-value-overlay/src/app/app.component.scss b/samples/charts/data-chart/series-value-overlay/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/series-value-overlay/src/app/app.component.scss rename to samples/charts/data-chart/series-value-overlay/src/app.component.scss diff --git a/samples/charts/data-chart/series-value-overlay/src/app/app.component.ts b/samples/charts/data-chart/series-value-overlay/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/series-value-overlay/src/app/app.component.ts rename to samples/charts/data-chart/series-value-overlay/src/app.component.ts diff --git a/samples/charts/data-chart/series-value-overlay/src/app/app.module.ts b/samples/charts/data-chart/series-value-overlay/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/series-value-overlay/src/app/app.module.ts rename to samples/charts/data-chart/series-value-overlay/src/app.module.ts diff --git a/samples/charts/data-chart/series-value-overlay/src/main.ts b/samples/charts/data-chart/series-value-overlay/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/series-value-overlay/src/main.ts +++ b/samples/charts/data-chart/series-value-overlay/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/stacked-chart-types/src/app/SharedData.ts b/samples/charts/data-chart/stacked-chart-types/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/stacked-chart-types/src/app/SharedData.ts rename to samples/charts/data-chart/stacked-chart-types/src/SharedData.ts diff --git a/samples/charts/data-chart/stacked-chart-types/src/app/app.component.html b/samples/charts/data-chart/stacked-chart-types/src/app.component.html similarity index 100% rename from samples/charts/data-chart/stacked-chart-types/src/app/app.component.html rename to samples/charts/data-chart/stacked-chart-types/src/app.component.html diff --git a/samples/charts/data-chart/stacked-chart-types/src/app/app.component.scss b/samples/charts/data-chart/stacked-chart-types/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/stacked-chart-types/src/app/app.component.scss rename to samples/charts/data-chart/stacked-chart-types/src/app.component.scss diff --git a/samples/charts/data-chart/stacked-chart-types/src/app/app.component.ts b/samples/charts/data-chart/stacked-chart-types/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/stacked-chart-types/src/app/app.component.ts rename to samples/charts/data-chart/stacked-chart-types/src/app.component.ts diff --git a/samples/charts/data-chart/stacked-chart-types/src/app/app.module.ts b/samples/charts/data-chart/stacked-chart-types/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/stacked-chart-types/src/app/app.module.ts rename to samples/charts/data-chart/stacked-chart-types/src/app.module.ts diff --git a/samples/charts/data-chart/stacked-chart-types/src/main.ts b/samples/charts/data-chart/stacked-chart-types/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/stacked-chart-types/src/main.ts +++ b/samples/charts/data-chart/stacked-chart-types/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/tooltip-template/src/app/app.component.html b/samples/charts/data-chart/tooltip-template/src/app.component.html similarity index 100% rename from samples/charts/data-chart/tooltip-template/src/app/app.component.html rename to samples/charts/data-chart/tooltip-template/src/app.component.html diff --git a/samples/charts/data-chart/tooltip-template/src/app/app.component.scss b/samples/charts/data-chart/tooltip-template/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/tooltip-template/src/app/app.component.scss rename to samples/charts/data-chart/tooltip-template/src/app.component.scss diff --git a/samples/charts/data-chart/tooltip-template/src/app/app.component.ts b/samples/charts/data-chart/tooltip-template/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/tooltip-template/src/app/app.component.ts rename to samples/charts/data-chart/tooltip-template/src/app.component.ts diff --git a/samples/charts/data-chart/tooltip-template/src/app/app.module.ts b/samples/charts/data-chart/tooltip-template/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/tooltip-template/src/app/app.module.ts rename to samples/charts/data-chart/tooltip-template/src/app.module.ts diff --git a/samples/charts/data-chart/tooltip-template/src/main.ts b/samples/charts/data-chart/tooltip-template/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/tooltip-template/src/main.ts +++ b/samples/charts/data-chart/tooltip-template/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-category-area-series/src/app/SampleCategoryData.ts b/samples/charts/data-chart/type-category-area-series/src/SampleCategoryData.ts similarity index 100% rename from samples/charts/data-chart/type-category-area-series/src/app/SampleCategoryData.ts rename to samples/charts/data-chart/type-category-area-series/src/SampleCategoryData.ts diff --git a/samples/charts/data-chart/type-category-area-series/src/app/app.component.html b/samples/charts/data-chart/type-category-area-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-category-area-series/src/app/app.component.html rename to samples/charts/data-chart/type-category-area-series/src/app.component.html diff --git a/samples/charts/data-chart/type-category-area-series/src/app/app.component.scss b/samples/charts/data-chart/type-category-area-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-category-area-series/src/app/app.component.scss rename to samples/charts/data-chart/type-category-area-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-category-area-series/src/app/app.component.ts b/samples/charts/data-chart/type-category-area-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-category-area-series/src/app/app.component.ts rename to samples/charts/data-chart/type-category-area-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-category-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-area-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-category-area-series/src/app/app.module.ts rename to samples/charts/data-chart/type-category-area-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-category-area-series/src/main.ts b/samples/charts/data-chart/type-category-area-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-category-area-series/src/main.ts +++ b/samples/charts/data-chart/type-category-area-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-category-bar-series/src/app/SampleCategoryData.ts b/samples/charts/data-chart/type-category-bar-series/src/SampleCategoryData.ts similarity index 100% rename from samples/charts/data-chart/type-category-bar-series/src/app/SampleCategoryData.ts rename to samples/charts/data-chart/type-category-bar-series/src/SampleCategoryData.ts diff --git a/samples/charts/data-chart/type-category-bar-series/src/app/app.component.html b/samples/charts/data-chart/type-category-bar-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-category-bar-series/src/app/app.component.html rename to samples/charts/data-chart/type-category-bar-series/src/app.component.html diff --git a/samples/charts/data-chart/type-category-bar-series/src/app/app.component.scss b/samples/charts/data-chart/type-category-bar-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-category-bar-series/src/app/app.component.scss rename to samples/charts/data-chart/type-category-bar-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-category-bar-series/src/app/app.component.ts b/samples/charts/data-chart/type-category-bar-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-category-bar-series/src/app/app.component.ts rename to samples/charts/data-chart/type-category-bar-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-category-bar-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-bar-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-category-bar-series/src/app/app.module.ts rename to samples/charts/data-chart/type-category-bar-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-category-bar-series/src/main.ts b/samples/charts/data-chart/type-category-bar-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-category-bar-series/src/main.ts +++ b/samples/charts/data-chart/type-category-bar-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-category-column-series/src/app/SampleCategoryData.ts b/samples/charts/data-chart/type-category-column-series/src/SampleCategoryData.ts similarity index 100% rename from samples/charts/data-chart/type-category-column-series/src/app/SampleCategoryData.ts rename to samples/charts/data-chart/type-category-column-series/src/SampleCategoryData.ts diff --git a/samples/charts/data-chart/type-category-column-series/src/app/app.component.html b/samples/charts/data-chart/type-category-column-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-category-column-series/src/app/app.component.html rename to samples/charts/data-chart/type-category-column-series/src/app.component.html diff --git a/samples/charts/data-chart/type-category-column-series/src/app/app.component.scss b/samples/charts/data-chart/type-category-column-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-category-column-series/src/app/app.component.scss rename to samples/charts/data-chart/type-category-column-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-category-column-series/src/app/app.component.ts b/samples/charts/data-chart/type-category-column-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-category-column-series/src/app/app.component.ts rename to samples/charts/data-chart/type-category-column-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-category-column-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-column-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-category-column-series/src/app/app.module.ts rename to samples/charts/data-chart/type-category-column-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-category-column-series/src/main.ts b/samples/charts/data-chart/type-category-column-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-category-column-series/src/main.ts +++ b/samples/charts/data-chart/type-category-column-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-category-line-series/src/app/SampleCategoryData.ts b/samples/charts/data-chart/type-category-line-series/src/SampleCategoryData.ts similarity index 100% rename from samples/charts/data-chart/type-category-line-series/src/app/SampleCategoryData.ts rename to samples/charts/data-chart/type-category-line-series/src/SampleCategoryData.ts diff --git a/samples/charts/data-chart/type-category-line-series/src/app/app.component.html b/samples/charts/data-chart/type-category-line-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-category-line-series/src/app/app.component.html rename to samples/charts/data-chart/type-category-line-series/src/app.component.html diff --git a/samples/charts/data-chart/type-category-line-series/src/app/app.component.scss b/samples/charts/data-chart/type-category-line-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-category-line-series/src/app/app.component.scss rename to samples/charts/data-chart/type-category-line-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-category-line-series/src/app/app.component.ts b/samples/charts/data-chart/type-category-line-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-category-line-series/src/app/app.component.ts rename to samples/charts/data-chart/type-category-line-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-category-line-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-line-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-category-line-series/src/app/app.module.ts rename to samples/charts/data-chart/type-category-line-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-category-line-series/src/main.ts b/samples/charts/data-chart/type-category-line-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-category-line-series/src/main.ts +++ b/samples/charts/data-chart/type-category-line-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-category-point-series/src/app/SampleCategoryData.ts b/samples/charts/data-chart/type-category-point-series/src/SampleCategoryData.ts similarity index 100% rename from samples/charts/data-chart/type-category-point-series/src/app/SampleCategoryData.ts rename to samples/charts/data-chart/type-category-point-series/src/SampleCategoryData.ts diff --git a/samples/charts/data-chart/type-category-point-series/src/app/app.component.html b/samples/charts/data-chart/type-category-point-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-category-point-series/src/app/app.component.html rename to samples/charts/data-chart/type-category-point-series/src/app.component.html diff --git a/samples/charts/data-chart/type-category-point-series/src/app/app.component.scss b/samples/charts/data-chart/type-category-point-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-category-point-series/src/app/app.component.scss rename to samples/charts/data-chart/type-category-point-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-category-point-series/src/app/app.component.ts b/samples/charts/data-chart/type-category-point-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-category-point-series/src/app/app.component.ts rename to samples/charts/data-chart/type-category-point-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-category-point-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-point-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-category-point-series/src/app/app.module.ts rename to samples/charts/data-chart/type-category-point-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-category-point-series/src/main.ts b/samples/charts/data-chart/type-category-point-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-category-point-series/src/main.ts +++ b/samples/charts/data-chart/type-category-point-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-category-series/src/app/SampleCategoryData.ts b/samples/charts/data-chart/type-category-series/src/SampleCategoryData.ts similarity index 100% rename from samples/charts/data-chart/type-category-series/src/app/SampleCategoryData.ts rename to samples/charts/data-chart/type-category-series/src/SampleCategoryData.ts diff --git a/samples/charts/data-chart/type-category-series/src/app/app.component.html b/samples/charts/data-chart/type-category-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-category-series/src/app/app.component.html rename to samples/charts/data-chart/type-category-series/src/app.component.html diff --git a/samples/charts/data-chart/type-category-series/src/app/app.component.scss b/samples/charts/data-chart/type-category-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-category-series/src/app/app.component.scss rename to samples/charts/data-chart/type-category-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-category-series/src/app/app.component.ts b/samples/charts/data-chart/type-category-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-category-series/src/app/app.component.ts rename to samples/charts/data-chart/type-category-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-category-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-category-series/src/app/app.module.ts rename to samples/charts/data-chart/type-category-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-category-series/src/main.ts b/samples/charts/data-chart/type-category-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-category-series/src/main.ts +++ b/samples/charts/data-chart/type-category-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-category-spline-area-series/src/app/SampleCategoryData.ts b/samples/charts/data-chart/type-category-spline-area-series/src/SampleCategoryData.ts similarity index 100% rename from samples/charts/data-chart/type-category-spline-area-series/src/app/SampleCategoryData.ts rename to samples/charts/data-chart/type-category-spline-area-series/src/SampleCategoryData.ts diff --git a/samples/charts/data-chart/type-category-spline-area-series/src/app/app.component.html b/samples/charts/data-chart/type-category-spline-area-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-category-spline-area-series/src/app/app.component.html rename to samples/charts/data-chart/type-category-spline-area-series/src/app.component.html diff --git a/samples/charts/data-chart/type-category-spline-area-series/src/app/app.component.scss b/samples/charts/data-chart/type-category-spline-area-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-category-spline-area-series/src/app/app.component.scss rename to samples/charts/data-chart/type-category-spline-area-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-category-spline-area-series/src/app/app.component.ts b/samples/charts/data-chart/type-category-spline-area-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-category-spline-area-series/src/app/app.component.ts rename to samples/charts/data-chart/type-category-spline-area-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-category-spline-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-spline-area-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-category-spline-area-series/src/app/app.module.ts rename to samples/charts/data-chart/type-category-spline-area-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-category-spline-area-series/src/main.ts b/samples/charts/data-chart/type-category-spline-area-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/src/main.ts +++ b/samples/charts/data-chart/type-category-spline-area-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-category-spline-series/src/app/SampleCategoryData.ts b/samples/charts/data-chart/type-category-spline-series/src/SampleCategoryData.ts similarity index 100% rename from samples/charts/data-chart/type-category-spline-series/src/app/SampleCategoryData.ts rename to samples/charts/data-chart/type-category-spline-series/src/SampleCategoryData.ts diff --git a/samples/charts/data-chart/type-category-spline-series/src/app/app.component.html b/samples/charts/data-chart/type-category-spline-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-category-spline-series/src/app/app.component.html rename to samples/charts/data-chart/type-category-spline-series/src/app.component.html diff --git a/samples/charts/data-chart/type-category-spline-series/src/app/app.component.scss b/samples/charts/data-chart/type-category-spline-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-category-spline-series/src/app/app.component.scss rename to samples/charts/data-chart/type-category-spline-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-category-spline-series/src/app/app.component.ts b/samples/charts/data-chart/type-category-spline-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-category-spline-series/src/app/app.component.ts rename to samples/charts/data-chart/type-category-spline-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-category-spline-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-spline-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-category-spline-series/src/app/app.module.ts rename to samples/charts/data-chart/type-category-spline-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-category-spline-series/src/main.ts b/samples/charts/data-chart/type-category-spline-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-category-spline-series/src/main.ts +++ b/samples/charts/data-chart/type-category-spline-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-category-step-area-series/src/app/SampleCategoryData.ts b/samples/charts/data-chart/type-category-step-area-series/src/SampleCategoryData.ts similarity index 100% rename from samples/charts/data-chart/type-category-step-area-series/src/app/SampleCategoryData.ts rename to samples/charts/data-chart/type-category-step-area-series/src/SampleCategoryData.ts diff --git a/samples/charts/data-chart/type-category-step-area-series/src/app/app.component.html b/samples/charts/data-chart/type-category-step-area-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-category-step-area-series/src/app/app.component.html rename to samples/charts/data-chart/type-category-step-area-series/src/app.component.html diff --git a/samples/charts/data-chart/type-category-step-area-series/src/app/app.component.scss b/samples/charts/data-chart/type-category-step-area-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-category-step-area-series/src/app/app.component.scss rename to samples/charts/data-chart/type-category-step-area-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-category-step-area-series/src/app/app.component.ts b/samples/charts/data-chart/type-category-step-area-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-category-step-area-series/src/app/app.component.ts rename to samples/charts/data-chart/type-category-step-area-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-category-step-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-step-area-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-category-step-area-series/src/app/app.module.ts rename to samples/charts/data-chart/type-category-step-area-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-category-step-area-series/src/main.ts b/samples/charts/data-chart/type-category-step-area-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-category-step-area-series/src/main.ts +++ b/samples/charts/data-chart/type-category-step-area-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-category-step-line-series/src/app/SampleCategoryData.ts b/samples/charts/data-chart/type-category-step-line-series/src/SampleCategoryData.ts similarity index 100% rename from samples/charts/data-chart/type-category-step-line-series/src/app/SampleCategoryData.ts rename to samples/charts/data-chart/type-category-step-line-series/src/SampleCategoryData.ts diff --git a/samples/charts/data-chart/type-category-step-line-series/src/app/app.component.html b/samples/charts/data-chart/type-category-step-line-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-category-step-line-series/src/app/app.component.html rename to samples/charts/data-chart/type-category-step-line-series/src/app.component.html diff --git a/samples/charts/data-chart/type-category-step-line-series/src/app/app.component.scss b/samples/charts/data-chart/type-category-step-line-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-category-step-line-series/src/app/app.component.scss rename to samples/charts/data-chart/type-category-step-line-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-category-step-line-series/src/app/app.component.ts b/samples/charts/data-chart/type-category-step-line-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-category-step-line-series/src/app/app.component.ts rename to samples/charts/data-chart/type-category-step-line-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-category-step-line-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-step-line-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-category-step-line-series/src/app/app.module.ts rename to samples/charts/data-chart/type-category-step-line-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-category-step-line-series/src/main.ts b/samples/charts/data-chart/type-category-step-line-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-category-step-line-series/src/main.ts +++ b/samples/charts/data-chart/type-category-step-line-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-category-waterfall-series/src/app/SampleCategoryData.ts b/samples/charts/data-chart/type-category-waterfall-series/src/SampleCategoryData.ts similarity index 100% rename from samples/charts/data-chart/type-category-waterfall-series/src/app/SampleCategoryData.ts rename to samples/charts/data-chart/type-category-waterfall-series/src/SampleCategoryData.ts diff --git a/samples/charts/data-chart/type-category-waterfall-series/src/app/app.component.html b/samples/charts/data-chart/type-category-waterfall-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-category-waterfall-series/src/app/app.component.html rename to samples/charts/data-chart/type-category-waterfall-series/src/app.component.html diff --git a/samples/charts/data-chart/type-category-waterfall-series/src/app/app.component.scss b/samples/charts/data-chart/type-category-waterfall-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-category-waterfall-series/src/app/app.component.scss rename to samples/charts/data-chart/type-category-waterfall-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-category-waterfall-series/src/app/app.component.ts b/samples/charts/data-chart/type-category-waterfall-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-category-waterfall-series/src/app/app.component.ts rename to samples/charts/data-chart/type-category-waterfall-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-category-waterfall-series/src/app/app.module.ts b/samples/charts/data-chart/type-category-waterfall-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-category-waterfall-series/src/app/app.module.ts rename to samples/charts/data-chart/type-category-waterfall-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-category-waterfall-series/src/main.ts b/samples/charts/data-chart/type-category-waterfall-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/src/main.ts +++ b/samples/charts/data-chart/type-category-waterfall-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-financial-area-indicators/src/app/SampleFinancialData.ts b/samples/charts/data-chart/type-financial-area-indicators/src/SampleFinancialData.ts similarity index 100% rename from samples/charts/data-chart/type-financial-area-indicators/src/app/SampleFinancialData.ts rename to samples/charts/data-chart/type-financial-area-indicators/src/SampleFinancialData.ts diff --git a/samples/charts/data-chart/type-financial-area-indicators/src/app/app.component.html b/samples/charts/data-chart/type-financial-area-indicators/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-financial-area-indicators/src/app/app.component.html rename to samples/charts/data-chart/type-financial-area-indicators/src/app.component.html diff --git a/samples/charts/data-chart/type-financial-area-indicators/src/app/app.component.scss b/samples/charts/data-chart/type-financial-area-indicators/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-financial-area-indicators/src/app/app.component.scss rename to samples/charts/data-chart/type-financial-area-indicators/src/app.component.scss diff --git a/samples/charts/data-chart/type-financial-area-indicators/src/app/app.component.ts b/samples/charts/data-chart/type-financial-area-indicators/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-financial-area-indicators/src/app/app.component.ts rename to samples/charts/data-chart/type-financial-area-indicators/src/app.component.ts diff --git a/samples/charts/data-chart/type-financial-area-indicators/src/app/app.module.ts b/samples/charts/data-chart/type-financial-area-indicators/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-financial-area-indicators/src/app/app.module.ts rename to samples/charts/data-chart/type-financial-area-indicators/src/app.module.ts diff --git a/samples/charts/data-chart/type-financial-area-indicators/src/main.ts b/samples/charts/data-chart/type-financial-area-indicators/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/src/main.ts +++ b/samples/charts/data-chart/type-financial-area-indicators/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-financial-candlestick-series/src/app/SampleFinancialData.ts b/samples/charts/data-chart/type-financial-candlestick-series/src/SampleFinancialData.ts similarity index 100% rename from samples/charts/data-chart/type-financial-candlestick-series/src/app/SampleFinancialData.ts rename to samples/charts/data-chart/type-financial-candlestick-series/src/SampleFinancialData.ts diff --git a/samples/charts/data-chart/type-financial-candlestick-series/src/app/app.component.html b/samples/charts/data-chart/type-financial-candlestick-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-financial-candlestick-series/src/app/app.component.html rename to samples/charts/data-chart/type-financial-candlestick-series/src/app.component.html diff --git a/samples/charts/data-chart/type-financial-candlestick-series/src/app/app.component.scss b/samples/charts/data-chart/type-financial-candlestick-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-financial-candlestick-series/src/app/app.component.scss rename to samples/charts/data-chart/type-financial-candlestick-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-financial-candlestick-series/src/app/app.component.ts b/samples/charts/data-chart/type-financial-candlestick-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-financial-candlestick-series/src/app/app.component.ts rename to samples/charts/data-chart/type-financial-candlestick-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-financial-candlestick-series/src/app/app.module.ts b/samples/charts/data-chart/type-financial-candlestick-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-financial-candlestick-series/src/app/app.module.ts rename to samples/charts/data-chart/type-financial-candlestick-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-financial-candlestick-series/src/main.ts b/samples/charts/data-chart/type-financial-candlestick-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/src/main.ts +++ b/samples/charts/data-chart/type-financial-candlestick-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-financial-column-indicators/src/app/SampleFinancialData.ts b/samples/charts/data-chart/type-financial-column-indicators/src/SampleFinancialData.ts similarity index 100% rename from samples/charts/data-chart/type-financial-column-indicators/src/app/SampleFinancialData.ts rename to samples/charts/data-chart/type-financial-column-indicators/src/SampleFinancialData.ts diff --git a/samples/charts/data-chart/type-financial-column-indicators/src/app/app.component.html b/samples/charts/data-chart/type-financial-column-indicators/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-financial-column-indicators/src/app/app.component.html rename to samples/charts/data-chart/type-financial-column-indicators/src/app.component.html diff --git a/samples/charts/data-chart/type-financial-column-indicators/src/app/app.component.scss b/samples/charts/data-chart/type-financial-column-indicators/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-financial-column-indicators/src/app/app.component.scss rename to samples/charts/data-chart/type-financial-column-indicators/src/app.component.scss diff --git a/samples/charts/data-chart/type-financial-column-indicators/src/app/app.component.ts b/samples/charts/data-chart/type-financial-column-indicators/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-financial-column-indicators/src/app/app.component.ts rename to samples/charts/data-chart/type-financial-column-indicators/src/app.component.ts diff --git a/samples/charts/data-chart/type-financial-column-indicators/src/app/app.module.ts b/samples/charts/data-chart/type-financial-column-indicators/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-financial-column-indicators/src/app/app.module.ts rename to samples/charts/data-chart/type-financial-column-indicators/src/app.module.ts diff --git a/samples/charts/data-chart/type-financial-column-indicators/src/main.ts b/samples/charts/data-chart/type-financial-column-indicators/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/src/main.ts +++ b/samples/charts/data-chart/type-financial-column-indicators/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-financial-line-indicators/src/app/SampleFinancialData.ts b/samples/charts/data-chart/type-financial-line-indicators/src/SampleFinancialData.ts similarity index 100% rename from samples/charts/data-chart/type-financial-line-indicators/src/app/SampleFinancialData.ts rename to samples/charts/data-chart/type-financial-line-indicators/src/SampleFinancialData.ts diff --git a/samples/charts/data-chart/type-financial-line-indicators/src/app/app.component.html b/samples/charts/data-chart/type-financial-line-indicators/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-financial-line-indicators/src/app/app.component.html rename to samples/charts/data-chart/type-financial-line-indicators/src/app.component.html diff --git a/samples/charts/data-chart/type-financial-line-indicators/src/app/app.component.scss b/samples/charts/data-chart/type-financial-line-indicators/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-financial-line-indicators/src/app/app.component.scss rename to samples/charts/data-chart/type-financial-line-indicators/src/app.component.scss diff --git a/samples/charts/data-chart/type-financial-line-indicators/src/app/app.component.ts b/samples/charts/data-chart/type-financial-line-indicators/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-financial-line-indicators/src/app/app.component.ts rename to samples/charts/data-chart/type-financial-line-indicators/src/app.component.ts diff --git a/samples/charts/data-chart/type-financial-line-indicators/src/app/app.module.ts b/samples/charts/data-chart/type-financial-line-indicators/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-financial-line-indicators/src/app/app.module.ts rename to samples/charts/data-chart/type-financial-line-indicators/src/app.module.ts diff --git a/samples/charts/data-chart/type-financial-line-indicators/src/main.ts b/samples/charts/data-chart/type-financial-line-indicators/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/src/main.ts +++ b/samples/charts/data-chart/type-financial-line-indicators/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-financial-ohlc-series/src/app/SampleFinancialData.ts b/samples/charts/data-chart/type-financial-ohlc-series/src/SampleFinancialData.ts similarity index 100% rename from samples/charts/data-chart/type-financial-ohlc-series/src/app/SampleFinancialData.ts rename to samples/charts/data-chart/type-financial-ohlc-series/src/SampleFinancialData.ts diff --git a/samples/charts/data-chart/type-financial-ohlc-series/src/app/app.component.html b/samples/charts/data-chart/type-financial-ohlc-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-financial-ohlc-series/src/app/app.component.html rename to samples/charts/data-chart/type-financial-ohlc-series/src/app.component.html diff --git a/samples/charts/data-chart/type-financial-ohlc-series/src/app/app.component.scss b/samples/charts/data-chart/type-financial-ohlc-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-financial-ohlc-series/src/app/app.component.scss rename to samples/charts/data-chart/type-financial-ohlc-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-financial-ohlc-series/src/app/app.component.ts b/samples/charts/data-chart/type-financial-ohlc-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-financial-ohlc-series/src/app/app.component.ts rename to samples/charts/data-chart/type-financial-ohlc-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-financial-ohlc-series/src/app/app.module.ts b/samples/charts/data-chart/type-financial-ohlc-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-financial-ohlc-series/src/app/app.module.ts rename to samples/charts/data-chart/type-financial-ohlc-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-financial-ohlc-series/src/main.ts b/samples/charts/data-chart/type-financial-ohlc-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/src/main.ts +++ b/samples/charts/data-chart/type-financial-ohlc-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-financial-overlays/src/app/SampleFinancialData.ts b/samples/charts/data-chart/type-financial-overlays/src/SampleFinancialData.ts similarity index 100% rename from samples/charts/data-chart/type-financial-overlays/src/app/SampleFinancialData.ts rename to samples/charts/data-chart/type-financial-overlays/src/SampleFinancialData.ts diff --git a/samples/charts/data-chart/type-financial-overlays/src/app/app.component.html b/samples/charts/data-chart/type-financial-overlays/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-financial-overlays/src/app/app.component.html rename to samples/charts/data-chart/type-financial-overlays/src/app.component.html diff --git a/samples/charts/data-chart/type-financial-overlays/src/app/app.component.scss b/samples/charts/data-chart/type-financial-overlays/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-financial-overlays/src/app/app.component.scss rename to samples/charts/data-chart/type-financial-overlays/src/app.component.scss diff --git a/samples/charts/data-chart/type-financial-overlays/src/app/app.component.ts b/samples/charts/data-chart/type-financial-overlays/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-financial-overlays/src/app/app.component.ts rename to samples/charts/data-chart/type-financial-overlays/src/app.component.ts diff --git a/samples/charts/data-chart/type-financial-overlays/src/app/app.module.ts b/samples/charts/data-chart/type-financial-overlays/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-financial-overlays/src/app/app.module.ts rename to samples/charts/data-chart/type-financial-overlays/src/app.module.ts diff --git a/samples/charts/data-chart/type-financial-overlays/src/main.ts b/samples/charts/data-chart/type-financial-overlays/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-financial-overlays/src/main.ts +++ b/samples/charts/data-chart/type-financial-overlays/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-financial-series/src/app/SampleFinancialData.ts b/samples/charts/data-chart/type-financial-series/src/SampleFinancialData.ts similarity index 100% rename from samples/charts/data-chart/type-financial-series/src/app/SampleFinancialData.ts rename to samples/charts/data-chart/type-financial-series/src/SampleFinancialData.ts diff --git a/samples/charts/data-chart/type-financial-series/src/app/app.component.html b/samples/charts/data-chart/type-financial-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-financial-series/src/app/app.component.html rename to samples/charts/data-chart/type-financial-series/src/app.component.html diff --git a/samples/charts/data-chart/type-financial-series/src/app/app.component.scss b/samples/charts/data-chart/type-financial-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-financial-series/src/app/app.component.scss rename to samples/charts/data-chart/type-financial-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-financial-series/src/app/app.component.ts b/samples/charts/data-chart/type-financial-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-financial-series/src/app/app.component.ts rename to samples/charts/data-chart/type-financial-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-financial-series/src/app/app.module.ts b/samples/charts/data-chart/type-financial-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-financial-series/src/app/app.module.ts rename to samples/charts/data-chart/type-financial-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-financial-series/src/main.ts b/samples/charts/data-chart/type-financial-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-financial-series/src/main.ts +++ b/samples/charts/data-chart/type-financial-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-radial-area-series/src/app/SampleRadialData.ts b/samples/charts/data-chart/type-radial-area-series/src/SampleRadialData.ts similarity index 100% rename from samples/charts/data-chart/type-radial-area-series/src/app/SampleRadialData.ts rename to samples/charts/data-chart/type-radial-area-series/src/SampleRadialData.ts diff --git a/samples/charts/data-chart/type-radial-area-series/src/app/app.component.html b/samples/charts/data-chart/type-radial-area-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-radial-area-series/src/app/app.component.html rename to samples/charts/data-chart/type-radial-area-series/src/app.component.html diff --git a/samples/charts/data-chart/type-radial-area-series/src/app/app.component.scss b/samples/charts/data-chart/type-radial-area-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-radial-area-series/src/app/app.component.scss rename to samples/charts/data-chart/type-radial-area-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-radial-area-series/src/app/app.component.ts b/samples/charts/data-chart/type-radial-area-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-radial-area-series/src/app/app.component.ts rename to samples/charts/data-chart/type-radial-area-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-radial-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-radial-area-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-radial-area-series/src/app/app.module.ts rename to samples/charts/data-chart/type-radial-area-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-radial-area-series/src/main.ts b/samples/charts/data-chart/type-radial-area-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-radial-area-series/src/main.ts +++ b/samples/charts/data-chart/type-radial-area-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-radial-column-series/src/app/SampleRadialData.ts b/samples/charts/data-chart/type-radial-column-series/src/SampleRadialData.ts similarity index 100% rename from samples/charts/data-chart/type-radial-column-series/src/app/SampleRadialData.ts rename to samples/charts/data-chart/type-radial-column-series/src/SampleRadialData.ts diff --git a/samples/charts/data-chart/type-radial-column-series/src/app/app.component.html b/samples/charts/data-chart/type-radial-column-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-radial-column-series/src/app/app.component.html rename to samples/charts/data-chart/type-radial-column-series/src/app.component.html diff --git a/samples/charts/data-chart/type-radial-column-series/src/app/app.component.scss b/samples/charts/data-chart/type-radial-column-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-radial-column-series/src/app/app.component.scss rename to samples/charts/data-chart/type-radial-column-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-radial-column-series/src/app/app.component.ts b/samples/charts/data-chart/type-radial-column-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-radial-column-series/src/app/app.component.ts rename to samples/charts/data-chart/type-radial-column-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-radial-column-series/src/app/app.module.ts b/samples/charts/data-chart/type-radial-column-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-radial-column-series/src/app/app.module.ts rename to samples/charts/data-chart/type-radial-column-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-radial-column-series/src/main.ts b/samples/charts/data-chart/type-radial-column-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-radial-column-series/src/main.ts +++ b/samples/charts/data-chart/type-radial-column-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-radial-line-series/src/app/SampleRadialData.ts b/samples/charts/data-chart/type-radial-line-series/src/SampleRadialData.ts similarity index 100% rename from samples/charts/data-chart/type-radial-line-series/src/app/SampleRadialData.ts rename to samples/charts/data-chart/type-radial-line-series/src/SampleRadialData.ts diff --git a/samples/charts/data-chart/type-radial-line-series/src/app/app.component.html b/samples/charts/data-chart/type-radial-line-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-radial-line-series/src/app/app.component.html rename to samples/charts/data-chart/type-radial-line-series/src/app.component.html diff --git a/samples/charts/data-chart/type-radial-line-series/src/app/app.component.scss b/samples/charts/data-chart/type-radial-line-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-radial-line-series/src/app/app.component.scss rename to samples/charts/data-chart/type-radial-line-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-radial-line-series/src/app/app.component.ts b/samples/charts/data-chart/type-radial-line-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-radial-line-series/src/app/app.component.ts rename to samples/charts/data-chart/type-radial-line-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-radial-line-series/src/app/app.module.ts b/samples/charts/data-chart/type-radial-line-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-radial-line-series/src/app/app.module.ts rename to samples/charts/data-chart/type-radial-line-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-radial-line-series/src/main.ts b/samples/charts/data-chart/type-radial-line-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-radial-line-series/src/main.ts +++ b/samples/charts/data-chart/type-radial-line-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-radial-pie-series/src/app/SampleRadialData.ts b/samples/charts/data-chart/type-radial-pie-series/src/SampleRadialData.ts similarity index 100% rename from samples/charts/data-chart/type-radial-pie-series/src/app/SampleRadialData.ts rename to samples/charts/data-chart/type-radial-pie-series/src/SampleRadialData.ts diff --git a/samples/charts/data-chart/type-radial-pie-series/src/app/app.component.html b/samples/charts/data-chart/type-radial-pie-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-radial-pie-series/src/app/app.component.html rename to samples/charts/data-chart/type-radial-pie-series/src/app.component.html diff --git a/samples/charts/data-chart/type-radial-pie-series/src/app/app.component.scss b/samples/charts/data-chart/type-radial-pie-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-radial-pie-series/src/app/app.component.scss rename to samples/charts/data-chart/type-radial-pie-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-radial-pie-series/src/app/app.component.ts b/samples/charts/data-chart/type-radial-pie-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-radial-pie-series/src/app/app.component.ts rename to samples/charts/data-chart/type-radial-pie-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-radial-pie-series/src/app/app.module.ts b/samples/charts/data-chart/type-radial-pie-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-radial-pie-series/src/app/app.module.ts rename to samples/charts/data-chart/type-radial-pie-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-radial-pie-series/src/main.ts b/samples/charts/data-chart/type-radial-pie-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-radial-pie-series/src/main.ts +++ b/samples/charts/data-chart/type-radial-pie-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-range-area-series/src/app/SampleRangeData.ts b/samples/charts/data-chart/type-range-area-series/src/SampleRangeData.ts similarity index 100% rename from samples/charts/data-chart/type-range-area-series/src/app/SampleRangeData.ts rename to samples/charts/data-chart/type-range-area-series/src/SampleRangeData.ts diff --git a/samples/charts/data-chart/type-range-area-series/src/app/app.component.html b/samples/charts/data-chart/type-range-area-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-range-area-series/src/app/app.component.html rename to samples/charts/data-chart/type-range-area-series/src/app.component.html diff --git a/samples/charts/data-chart/type-range-area-series/src/app/app.component.scss b/samples/charts/data-chart/type-range-area-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-range-area-series/src/app/app.component.scss rename to samples/charts/data-chart/type-range-area-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-range-area-series/src/app/app.component.ts b/samples/charts/data-chart/type-range-area-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-range-area-series/src/app/app.component.ts rename to samples/charts/data-chart/type-range-area-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-range-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-range-area-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-range-area-series/src/app/app.module.ts rename to samples/charts/data-chart/type-range-area-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-range-area-series/src/main.ts b/samples/charts/data-chart/type-range-area-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-range-area-series/src/main.ts +++ b/samples/charts/data-chart/type-range-area-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-range-column-series/src/app/SampleRangeData.ts b/samples/charts/data-chart/type-range-column-series/src/SampleRangeData.ts similarity index 100% rename from samples/charts/data-chart/type-range-column-series/src/app/SampleRangeData.ts rename to samples/charts/data-chart/type-range-column-series/src/SampleRangeData.ts diff --git a/samples/charts/data-chart/type-range-column-series/src/app/app.component.html b/samples/charts/data-chart/type-range-column-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-range-column-series/src/app/app.component.html rename to samples/charts/data-chart/type-range-column-series/src/app.component.html diff --git a/samples/charts/data-chart/type-range-column-series/src/app/app.component.scss b/samples/charts/data-chart/type-range-column-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-range-column-series/src/app/app.component.scss rename to samples/charts/data-chart/type-range-column-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-range-column-series/src/app/app.component.ts b/samples/charts/data-chart/type-range-column-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-range-column-series/src/app/app.component.ts rename to samples/charts/data-chart/type-range-column-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-range-column-series/src/app/app.module.ts b/samples/charts/data-chart/type-range-column-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-range-column-series/src/app/app.module.ts rename to samples/charts/data-chart/type-range-column-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-range-column-series/src/main.ts b/samples/charts/data-chart/type-range-column-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-range-column-series/src/main.ts +++ b/samples/charts/data-chart/type-range-column-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-range-series/src/app/SampleRangeData.ts b/samples/charts/data-chart/type-range-series/src/SampleRangeData.ts similarity index 100% rename from samples/charts/data-chart/type-range-series/src/app/SampleRangeData.ts rename to samples/charts/data-chart/type-range-series/src/SampleRangeData.ts diff --git a/samples/charts/data-chart/type-range-series/src/app/app.component.html b/samples/charts/data-chart/type-range-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-range-series/src/app/app.component.html rename to samples/charts/data-chart/type-range-series/src/app.component.html diff --git a/samples/charts/data-chart/type-range-series/src/app/app.component.scss b/samples/charts/data-chart/type-range-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-range-series/src/app/app.component.scss rename to samples/charts/data-chart/type-range-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-range-series/src/app/app.component.ts b/samples/charts/data-chart/type-range-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-range-series/src/app/app.component.ts rename to samples/charts/data-chart/type-range-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-range-series/src/app/app.module.ts b/samples/charts/data-chart/type-range-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-range-series/src/app/app.module.ts rename to samples/charts/data-chart/type-range-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-range-series/src/main.ts b/samples/charts/data-chart/type-range-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-range-series/src/main.ts +++ b/samples/charts/data-chart/type-range-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-scatter-area-series/src/app/SampleScatterData.ts b/samples/charts/data-chart/type-scatter-area-series/src/SampleScatterData.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-area-series/src/app/SampleScatterData.ts rename to samples/charts/data-chart/type-scatter-area-series/src/SampleScatterData.ts diff --git a/samples/charts/data-chart/type-scatter-area-series/src/app/app.component.html b/samples/charts/data-chart/type-scatter-area-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-scatter-area-series/src/app/app.component.html rename to samples/charts/data-chart/type-scatter-area-series/src/app.component.html diff --git a/samples/charts/data-chart/type-scatter-area-series/src/app/app.component.scss b/samples/charts/data-chart/type-scatter-area-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-scatter-area-series/src/app/app.component.scss rename to samples/charts/data-chart/type-scatter-area-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-scatter-area-series/src/app/app.component.ts b/samples/charts/data-chart/type-scatter-area-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-area-series/src/app/app.component.ts rename to samples/charts/data-chart/type-scatter-area-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-scatter-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-area-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-area-series/src/app/app.module.ts rename to samples/charts/data-chart/type-scatter-area-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-scatter-area-series/src/main.ts b/samples/charts/data-chart/type-scatter-area-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-scatter-area-series/src/main.ts +++ b/samples/charts/data-chart/type-scatter-area-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-scatter-bubble-series/src/app/SampleScatterStats.ts b/samples/charts/data-chart/type-scatter-bubble-series/src/SampleScatterStats.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-bubble-series/src/app/SampleScatterStats.ts rename to samples/charts/data-chart/type-scatter-bubble-series/src/SampleScatterStats.ts diff --git a/samples/charts/data-chart/type-scatter-bubble-series/src/app/app.component.html b/samples/charts/data-chart/type-scatter-bubble-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-scatter-bubble-series/src/app/app.component.html rename to samples/charts/data-chart/type-scatter-bubble-series/src/app.component.html diff --git a/samples/charts/data-chart/type-scatter-bubble-series/src/app/app.component.scss b/samples/charts/data-chart/type-scatter-bubble-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-scatter-bubble-series/src/app/app.component.scss rename to samples/charts/data-chart/type-scatter-bubble-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-scatter-bubble-series/src/app/app.component.ts b/samples/charts/data-chart/type-scatter-bubble-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-bubble-series/src/app/app.component.ts rename to samples/charts/data-chart/type-scatter-bubble-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-scatter-bubble-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-bubble-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-bubble-series/src/app/app.module.ts rename to samples/charts/data-chart/type-scatter-bubble-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-scatter-bubble-series/src/main.ts b/samples/charts/data-chart/type-scatter-bubble-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/src/main.ts +++ b/samples/charts/data-chart/type-scatter-bubble-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-scatter-contour-series/src/app/SampleScatterData.ts b/samples/charts/data-chart/type-scatter-contour-series/src/SampleScatterData.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-contour-series/src/app/SampleScatterData.ts rename to samples/charts/data-chart/type-scatter-contour-series/src/SampleScatterData.ts diff --git a/samples/charts/data-chart/type-scatter-contour-series/src/app/app.component.html b/samples/charts/data-chart/type-scatter-contour-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-scatter-contour-series/src/app/app.component.html rename to samples/charts/data-chart/type-scatter-contour-series/src/app.component.html diff --git a/samples/charts/data-chart/type-scatter-contour-series/src/app/app.component.scss b/samples/charts/data-chart/type-scatter-contour-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-scatter-contour-series/src/app/app.component.scss rename to samples/charts/data-chart/type-scatter-contour-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-scatter-contour-series/src/app/app.component.ts b/samples/charts/data-chart/type-scatter-contour-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-contour-series/src/app/app.component.ts rename to samples/charts/data-chart/type-scatter-contour-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-scatter-contour-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-contour-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-contour-series/src/app/app.module.ts rename to samples/charts/data-chart/type-scatter-contour-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-scatter-contour-series/src/main.ts b/samples/charts/data-chart/type-scatter-contour-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/src/main.ts +++ b/samples/charts/data-chart/type-scatter-contour-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-scatter-hd-series/src/app/SampleDensityData.ts b/samples/charts/data-chart/type-scatter-hd-series/src/SampleDensityData.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-hd-series/src/app/SampleDensityData.ts rename to samples/charts/data-chart/type-scatter-hd-series/src/SampleDensityData.ts diff --git a/samples/charts/data-chart/type-scatter-hd-series/src/app/app.component.html b/samples/charts/data-chart/type-scatter-hd-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-scatter-hd-series/src/app/app.component.html rename to samples/charts/data-chart/type-scatter-hd-series/src/app.component.html diff --git a/samples/charts/data-chart/type-scatter-hd-series/src/app/app.component.scss b/samples/charts/data-chart/type-scatter-hd-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-scatter-hd-series/src/app/app.component.scss rename to samples/charts/data-chart/type-scatter-hd-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-scatter-hd-series/src/app/app.component.ts b/samples/charts/data-chart/type-scatter-hd-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-hd-series/src/app/app.component.ts rename to samples/charts/data-chart/type-scatter-hd-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-scatter-hd-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-hd-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-hd-series/src/app/app.module.ts rename to samples/charts/data-chart/type-scatter-hd-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-scatter-hd-series/src/main.ts b/samples/charts/data-chart/type-scatter-hd-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/src/main.ts +++ b/samples/charts/data-chart/type-scatter-hd-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-scatter-line-series/src/app/SampleScatterStats.ts b/samples/charts/data-chart/type-scatter-line-series/src/SampleScatterStats.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-line-series/src/app/SampleScatterStats.ts rename to samples/charts/data-chart/type-scatter-line-series/src/SampleScatterStats.ts diff --git a/samples/charts/data-chart/type-scatter-line-series/src/app/app.component.html b/samples/charts/data-chart/type-scatter-line-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-scatter-line-series/src/app/app.component.html rename to samples/charts/data-chart/type-scatter-line-series/src/app.component.html diff --git a/samples/charts/data-chart/type-scatter-line-series/src/app/app.component.scss b/samples/charts/data-chart/type-scatter-line-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-scatter-line-series/src/app/app.component.scss rename to samples/charts/data-chart/type-scatter-line-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-scatter-line-series/src/app/app.component.ts b/samples/charts/data-chart/type-scatter-line-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-line-series/src/app/app.component.ts rename to samples/charts/data-chart/type-scatter-line-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-scatter-line-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-line-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-line-series/src/app/app.module.ts rename to samples/charts/data-chart/type-scatter-line-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-scatter-line-series/src/main.ts b/samples/charts/data-chart/type-scatter-line-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-scatter-line-series/src/main.ts +++ b/samples/charts/data-chart/type-scatter-line-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-scatter-point-series/src/app/SampleScatterStats.ts b/samples/charts/data-chart/type-scatter-point-series/src/SampleScatterStats.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-point-series/src/app/SampleScatterStats.ts rename to samples/charts/data-chart/type-scatter-point-series/src/SampleScatterStats.ts diff --git a/samples/charts/data-chart/type-scatter-point-series/src/app/app.component.html b/samples/charts/data-chart/type-scatter-point-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-scatter-point-series/src/app/app.component.html rename to samples/charts/data-chart/type-scatter-point-series/src/app.component.html diff --git a/samples/charts/data-chart/type-scatter-point-series/src/app/app.component.scss b/samples/charts/data-chart/type-scatter-point-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-scatter-point-series/src/app/app.component.scss rename to samples/charts/data-chart/type-scatter-point-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-scatter-point-series/src/app/app.component.ts b/samples/charts/data-chart/type-scatter-point-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-point-series/src/app/app.component.ts rename to samples/charts/data-chart/type-scatter-point-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-scatter-point-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-point-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-point-series/src/app/app.module.ts rename to samples/charts/data-chart/type-scatter-point-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-scatter-point-series/src/main.ts b/samples/charts/data-chart/type-scatter-point-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-scatter-point-series/src/main.ts +++ b/samples/charts/data-chart/type-scatter-point-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-scatter-polygon-series/src/app/app.component.html b/samples/charts/data-chart/type-scatter-polygon-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-scatter-polygon-series/src/app/app.component.html rename to samples/charts/data-chart/type-scatter-polygon-series/src/app.component.html diff --git a/samples/charts/data-chart/type-scatter-polygon-series/src/app/app.component.scss b/samples/charts/data-chart/type-scatter-polygon-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-scatter-polygon-series/src/app/app.component.scss rename to samples/charts/data-chart/type-scatter-polygon-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-scatter-polygon-series/src/app/app.component.ts b/samples/charts/data-chart/type-scatter-polygon-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-polygon-series/src/app/app.component.ts rename to samples/charts/data-chart/type-scatter-polygon-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-scatter-polygon-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-polygon-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-polygon-series/src/app/app.module.ts rename to samples/charts/data-chart/type-scatter-polygon-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-scatter-polygon-series/src/main.ts b/samples/charts/data-chart/type-scatter-polygon-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/src/main.ts +++ b/samples/charts/data-chart/type-scatter-polygon-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-scatter-polyline-series/src/app/app.component.html b/samples/charts/data-chart/type-scatter-polyline-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-scatter-polyline-series/src/app/app.component.html rename to samples/charts/data-chart/type-scatter-polyline-series/src/app.component.html diff --git a/samples/charts/data-chart/type-scatter-polyline-series/src/app/app.component.scss b/samples/charts/data-chart/type-scatter-polyline-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-scatter-polyline-series/src/app/app.component.scss rename to samples/charts/data-chart/type-scatter-polyline-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-scatter-polyline-series/src/app/app.component.ts b/samples/charts/data-chart/type-scatter-polyline-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-polyline-series/src/app/app.component.ts rename to samples/charts/data-chart/type-scatter-polyline-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-scatter-polyline-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-polyline-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-polyline-series/src/app/app.module.ts rename to samples/charts/data-chart/type-scatter-polyline-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-scatter-polyline-series/src/main.ts b/samples/charts/data-chart/type-scatter-polyline-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/src/main.ts +++ b/samples/charts/data-chart/type-scatter-polyline-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-scatter-series/src/app/SampleScatterStats.ts b/samples/charts/data-chart/type-scatter-series/src/SampleScatterStats.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-series/src/app/SampleScatterStats.ts rename to samples/charts/data-chart/type-scatter-series/src/SampleScatterStats.ts diff --git a/samples/charts/data-chart/type-scatter-series/src/app/app.component.html b/samples/charts/data-chart/type-scatter-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-scatter-series/src/app/app.component.html rename to samples/charts/data-chart/type-scatter-series/src/app.component.html diff --git a/samples/charts/data-chart/type-scatter-series/src/app/app.component.scss b/samples/charts/data-chart/type-scatter-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-scatter-series/src/app/app.component.scss rename to samples/charts/data-chart/type-scatter-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-scatter-series/src/app/app.component.ts b/samples/charts/data-chart/type-scatter-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-series/src/app/app.component.ts rename to samples/charts/data-chart/type-scatter-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-scatter-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-series/src/app/app.module.ts rename to samples/charts/data-chart/type-scatter-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-scatter-series/src/main.ts b/samples/charts/data-chart/type-scatter-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-scatter-series/src/main.ts +++ b/samples/charts/data-chart/type-scatter-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-scatter-spline-series/src/app/SampleScatterStats.ts b/samples/charts/data-chart/type-scatter-spline-series/src/SampleScatterStats.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-spline-series/src/app/SampleScatterStats.ts rename to samples/charts/data-chart/type-scatter-spline-series/src/SampleScatterStats.ts diff --git a/samples/charts/data-chart/type-scatter-spline-series/src/app/app.component.html b/samples/charts/data-chart/type-scatter-spline-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-scatter-spline-series/src/app/app.component.html rename to samples/charts/data-chart/type-scatter-spline-series/src/app.component.html diff --git a/samples/charts/data-chart/type-scatter-spline-series/src/app/app.component.scss b/samples/charts/data-chart/type-scatter-spline-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-scatter-spline-series/src/app/app.component.scss rename to samples/charts/data-chart/type-scatter-spline-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-scatter-spline-series/src/app/app.component.ts b/samples/charts/data-chart/type-scatter-spline-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-spline-series/src/app/app.component.ts rename to samples/charts/data-chart/type-scatter-spline-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-scatter-spline-series/src/app/app.module.ts b/samples/charts/data-chart/type-scatter-spline-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-scatter-spline-series/src/app/app.module.ts rename to samples/charts/data-chart/type-scatter-spline-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-scatter-spline-series/src/main.ts b/samples/charts/data-chart/type-scatter-spline-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/src/main.ts +++ b/samples/charts/data-chart/type-scatter-spline-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-shape-series/src/app/SampleShapeData.ts b/samples/charts/data-chart/type-shape-series/src/SampleShapeData.ts similarity index 100% rename from samples/charts/data-chart/type-shape-series/src/app/SampleShapeData.ts rename to samples/charts/data-chart/type-shape-series/src/SampleShapeData.ts diff --git a/samples/charts/data-chart/type-shape-series/src/app/app.component.html b/samples/charts/data-chart/type-shape-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-shape-series/src/app/app.component.html rename to samples/charts/data-chart/type-shape-series/src/app.component.html diff --git a/samples/charts/data-chart/type-shape-series/src/app/app.component.scss b/samples/charts/data-chart/type-shape-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-shape-series/src/app/app.component.scss rename to samples/charts/data-chart/type-shape-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-shape-series/src/app/app.component.ts b/samples/charts/data-chart/type-shape-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-shape-series/src/app/app.component.ts rename to samples/charts/data-chart/type-shape-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-shape-series/src/app/app.module.ts b/samples/charts/data-chart/type-shape-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-shape-series/src/app/app.module.ts rename to samples/charts/data-chart/type-shape-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-shape-series/src/main.ts b/samples/charts/data-chart/type-shape-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-shape-series/src/main.ts +++ b/samples/charts/data-chart/type-shape-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-stacked-100-area-series/src/app/SharedData.ts b/samples/charts/data-chart/type-stacked-100-area-series/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-area-series/src/app/SharedData.ts rename to samples/charts/data-chart/type-stacked-100-area-series/src/SharedData.ts diff --git a/samples/charts/data-chart/type-stacked-100-area-series/src/app/app.component.html b/samples/charts/data-chart/type-stacked-100-area-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-stacked-100-area-series/src/app/app.component.html rename to samples/charts/data-chart/type-stacked-100-area-series/src/app.component.html diff --git a/samples/charts/data-chart/type-stacked-100-area-series/src/app/app.component.scss b/samples/charts/data-chart/type-stacked-100-area-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-stacked-100-area-series/src/app/app.component.scss rename to samples/charts/data-chart/type-stacked-100-area-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-stacked-100-area-series/src/app/app.component.ts b/samples/charts/data-chart/type-stacked-100-area-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-area-series/src/app/app.component.ts rename to samples/charts/data-chart/type-stacked-100-area-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-stacked-100-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-100-area-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-area-series/src/app/app.module.ts rename to samples/charts/data-chart/type-stacked-100-area-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-stacked-100-area-series/src/main.ts b/samples/charts/data-chart/type-stacked-100-area-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/src/main.ts +++ b/samples/charts/data-chart/type-stacked-100-area-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/src/app/SharedData.ts b/samples/charts/data-chart/type-stacked-100-bar-series/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-bar-series/src/app/SharedData.ts rename to samples/charts/data-chart/type-stacked-100-bar-series/src/SharedData.ts diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/src/app/app.component.html b/samples/charts/data-chart/type-stacked-100-bar-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-stacked-100-bar-series/src/app/app.component.html rename to samples/charts/data-chart/type-stacked-100-bar-series/src/app.component.html diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/src/app/app.component.scss b/samples/charts/data-chart/type-stacked-100-bar-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-stacked-100-bar-series/src/app/app.component.scss rename to samples/charts/data-chart/type-stacked-100-bar-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/src/app/app.component.ts b/samples/charts/data-chart/type-stacked-100-bar-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-bar-series/src/app/app.component.ts rename to samples/charts/data-chart/type-stacked-100-bar-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-100-bar-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-bar-series/src/app/app.module.ts rename to samples/charts/data-chart/type-stacked-100-bar-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/src/main.ts b/samples/charts/data-chart/type-stacked-100-bar-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/src/main.ts +++ b/samples/charts/data-chart/type-stacked-100-bar-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-stacked-100-column-series/src/app/SharedData.ts b/samples/charts/data-chart/type-stacked-100-column-series/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-column-series/src/app/SharedData.ts rename to samples/charts/data-chart/type-stacked-100-column-series/src/SharedData.ts diff --git a/samples/charts/data-chart/type-stacked-100-column-series/src/app/app.component.html b/samples/charts/data-chart/type-stacked-100-column-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-stacked-100-column-series/src/app/app.component.html rename to samples/charts/data-chart/type-stacked-100-column-series/src/app.component.html diff --git a/samples/charts/data-chart/type-stacked-100-column-series/src/app/app.component.scss b/samples/charts/data-chart/type-stacked-100-column-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-stacked-100-column-series/src/app/app.component.scss rename to samples/charts/data-chart/type-stacked-100-column-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-stacked-100-column-series/src/app/app.component.ts b/samples/charts/data-chart/type-stacked-100-column-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-column-series/src/app/app.component.ts rename to samples/charts/data-chart/type-stacked-100-column-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-stacked-100-column-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-100-column-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-column-series/src/app/app.module.ts rename to samples/charts/data-chart/type-stacked-100-column-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-stacked-100-column-series/src/main.ts b/samples/charts/data-chart/type-stacked-100-column-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/src/main.ts +++ b/samples/charts/data-chart/type-stacked-100-column-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-stacked-100-line-series/src/app/SharedData.ts b/samples/charts/data-chart/type-stacked-100-line-series/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-line-series/src/app/SharedData.ts rename to samples/charts/data-chart/type-stacked-100-line-series/src/SharedData.ts diff --git a/samples/charts/data-chart/type-stacked-100-line-series/src/app/app.component.html b/samples/charts/data-chart/type-stacked-100-line-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-stacked-100-line-series/src/app/app.component.html rename to samples/charts/data-chart/type-stacked-100-line-series/src/app.component.html diff --git a/samples/charts/data-chart/type-stacked-100-line-series/src/app/app.component.scss b/samples/charts/data-chart/type-stacked-100-line-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-stacked-100-line-series/src/app/app.component.scss rename to samples/charts/data-chart/type-stacked-100-line-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-stacked-100-line-series/src/app/app.component.ts b/samples/charts/data-chart/type-stacked-100-line-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-line-series/src/app/app.component.ts rename to samples/charts/data-chart/type-stacked-100-line-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-stacked-100-line-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-100-line-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-line-series/src/app/app.module.ts rename to samples/charts/data-chart/type-stacked-100-line-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-stacked-100-line-series/src/main.ts b/samples/charts/data-chart/type-stacked-100-line-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/src/main.ts +++ b/samples/charts/data-chart/type-stacked-100-line-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/app/SharedData.ts b/samples/charts/data-chart/type-stacked-100-spline-area-series/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-spline-area-series/src/app/SharedData.ts rename to samples/charts/data-chart/type-stacked-100-spline-area-series/src/SharedData.ts diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/app/app.component.html b/samples/charts/data-chart/type-stacked-100-spline-area-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-stacked-100-spline-area-series/src/app/app.component.html rename to samples/charts/data-chart/type-stacked-100-spline-area-series/src/app.component.html diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/app/app.component.scss b/samples/charts/data-chart/type-stacked-100-spline-area-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-stacked-100-spline-area-series/src/app/app.component.scss rename to samples/charts/data-chart/type-stacked-100-spline-area-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/app/app.component.ts b/samples/charts/data-chart/type-stacked-100-spline-area-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-spline-area-series/src/app/app.component.ts rename to samples/charts/data-chart/type-stacked-100-spline-area-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-100-spline-area-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-spline-area-series/src/app/app.module.ts rename to samples/charts/data-chart/type-stacked-100-spline-area-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/main.ts b/samples/charts/data-chart/type-stacked-100-spline-area-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/main.ts +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/src/app/SharedData.ts b/samples/charts/data-chart/type-stacked-100-spline-series/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-spline-series/src/app/SharedData.ts rename to samples/charts/data-chart/type-stacked-100-spline-series/src/SharedData.ts diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/src/app/app.component.html b/samples/charts/data-chart/type-stacked-100-spline-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-stacked-100-spline-series/src/app/app.component.html rename to samples/charts/data-chart/type-stacked-100-spline-series/src/app.component.html diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/src/app/app.component.scss b/samples/charts/data-chart/type-stacked-100-spline-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-stacked-100-spline-series/src/app/app.component.scss rename to samples/charts/data-chart/type-stacked-100-spline-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/src/app/app.component.ts b/samples/charts/data-chart/type-stacked-100-spline-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-spline-series/src/app/app.component.ts rename to samples/charts/data-chart/type-stacked-100-spline-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-100-spline-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-100-spline-series/src/app/app.module.ts rename to samples/charts/data-chart/type-stacked-100-spline-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/src/main.ts b/samples/charts/data-chart/type-stacked-100-spline-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/src/main.ts +++ b/samples/charts/data-chart/type-stacked-100-spline-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-stacked-area-series/src/app/SharedData.ts b/samples/charts/data-chart/type-stacked-area-series/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-area-series/src/app/SharedData.ts rename to samples/charts/data-chart/type-stacked-area-series/src/SharedData.ts diff --git a/samples/charts/data-chart/type-stacked-area-series/src/app/app.component.html b/samples/charts/data-chart/type-stacked-area-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-stacked-area-series/src/app/app.component.html rename to samples/charts/data-chart/type-stacked-area-series/src/app.component.html diff --git a/samples/charts/data-chart/type-stacked-area-series/src/app/app.component.scss b/samples/charts/data-chart/type-stacked-area-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-stacked-area-series/src/app/app.component.scss rename to samples/charts/data-chart/type-stacked-area-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-stacked-area-series/src/app/app.component.ts b/samples/charts/data-chart/type-stacked-area-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-area-series/src/app/app.component.ts rename to samples/charts/data-chart/type-stacked-area-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-stacked-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-area-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-area-series/src/app/app.module.ts rename to samples/charts/data-chart/type-stacked-area-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-stacked-area-series/src/main.ts b/samples/charts/data-chart/type-stacked-area-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-stacked-area-series/src/main.ts +++ b/samples/charts/data-chart/type-stacked-area-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-stacked-bar-series/src/app/SharedData.ts b/samples/charts/data-chart/type-stacked-bar-series/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-bar-series/src/app/SharedData.ts rename to samples/charts/data-chart/type-stacked-bar-series/src/SharedData.ts diff --git a/samples/charts/data-chart/type-stacked-bar-series/src/app/app.component.html b/samples/charts/data-chart/type-stacked-bar-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-stacked-bar-series/src/app/app.component.html rename to samples/charts/data-chart/type-stacked-bar-series/src/app.component.html diff --git a/samples/charts/data-chart/type-stacked-bar-series/src/app/app.component.scss b/samples/charts/data-chart/type-stacked-bar-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-stacked-bar-series/src/app/app.component.scss rename to samples/charts/data-chart/type-stacked-bar-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-stacked-bar-series/src/app/app.component.ts b/samples/charts/data-chart/type-stacked-bar-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-bar-series/src/app/app.component.ts rename to samples/charts/data-chart/type-stacked-bar-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-stacked-bar-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-bar-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-bar-series/src/app/app.module.ts rename to samples/charts/data-chart/type-stacked-bar-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-stacked-bar-series/src/main.ts b/samples/charts/data-chart/type-stacked-bar-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/src/main.ts +++ b/samples/charts/data-chart/type-stacked-bar-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-stacked-column-series/src/app/SharedData.ts b/samples/charts/data-chart/type-stacked-column-series/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-column-series/src/app/SharedData.ts rename to samples/charts/data-chart/type-stacked-column-series/src/SharedData.ts diff --git a/samples/charts/data-chart/type-stacked-column-series/src/app/app.component.html b/samples/charts/data-chart/type-stacked-column-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-stacked-column-series/src/app/app.component.html rename to samples/charts/data-chart/type-stacked-column-series/src/app.component.html diff --git a/samples/charts/data-chart/type-stacked-column-series/src/app/app.component.scss b/samples/charts/data-chart/type-stacked-column-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-stacked-column-series/src/app/app.component.scss rename to samples/charts/data-chart/type-stacked-column-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-stacked-column-series/src/app/app.component.ts b/samples/charts/data-chart/type-stacked-column-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-column-series/src/app/app.component.ts rename to samples/charts/data-chart/type-stacked-column-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-stacked-column-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-column-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-column-series/src/app/app.module.ts rename to samples/charts/data-chart/type-stacked-column-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-stacked-column-series/src/main.ts b/samples/charts/data-chart/type-stacked-column-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-stacked-column-series/src/main.ts +++ b/samples/charts/data-chart/type-stacked-column-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-stacked-line-series/src/app/SharedData.ts b/samples/charts/data-chart/type-stacked-line-series/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-line-series/src/app/SharedData.ts rename to samples/charts/data-chart/type-stacked-line-series/src/SharedData.ts diff --git a/samples/charts/data-chart/type-stacked-line-series/src/app/app.component.html b/samples/charts/data-chart/type-stacked-line-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-stacked-line-series/src/app/app.component.html rename to samples/charts/data-chart/type-stacked-line-series/src/app.component.html diff --git a/samples/charts/data-chart/type-stacked-line-series/src/app/app.component.scss b/samples/charts/data-chart/type-stacked-line-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-stacked-line-series/src/app/app.component.scss rename to samples/charts/data-chart/type-stacked-line-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-stacked-line-series/src/app/app.component.ts b/samples/charts/data-chart/type-stacked-line-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-line-series/src/app/app.component.ts rename to samples/charts/data-chart/type-stacked-line-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-stacked-line-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-line-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-line-series/src/app/app.module.ts rename to samples/charts/data-chart/type-stacked-line-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-stacked-line-series/src/main.ts b/samples/charts/data-chart/type-stacked-line-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-stacked-line-series/src/main.ts +++ b/samples/charts/data-chart/type-stacked-line-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/src/app/SharedData.ts b/samples/charts/data-chart/type-stacked-spline-area-series/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-spline-area-series/src/app/SharedData.ts rename to samples/charts/data-chart/type-stacked-spline-area-series/src/SharedData.ts diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/src/app/app.component.html b/samples/charts/data-chart/type-stacked-spline-area-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-stacked-spline-area-series/src/app/app.component.html rename to samples/charts/data-chart/type-stacked-spline-area-series/src/app.component.html diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/src/app/app.component.scss b/samples/charts/data-chart/type-stacked-spline-area-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-stacked-spline-area-series/src/app/app.component.scss rename to samples/charts/data-chart/type-stacked-spline-area-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/src/app/app.component.ts b/samples/charts/data-chart/type-stacked-spline-area-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-spline-area-series/src/app/app.component.ts rename to samples/charts/data-chart/type-stacked-spline-area-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-spline-area-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-spline-area-series/src/app/app.module.ts rename to samples/charts/data-chart/type-stacked-spline-area-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/src/main.ts b/samples/charts/data-chart/type-stacked-spline-area-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/src/main.ts +++ b/samples/charts/data-chart/type-stacked-spline-area-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/data-chart/type-stacked-spline-series/src/app/SharedData.ts b/samples/charts/data-chart/type-stacked-spline-series/src/SharedData.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-spline-series/src/app/SharedData.ts rename to samples/charts/data-chart/type-stacked-spline-series/src/SharedData.ts diff --git a/samples/charts/data-chart/type-stacked-spline-series/src/app/app.component.html b/samples/charts/data-chart/type-stacked-spline-series/src/app.component.html similarity index 100% rename from samples/charts/data-chart/type-stacked-spline-series/src/app/app.component.html rename to samples/charts/data-chart/type-stacked-spline-series/src/app.component.html diff --git a/samples/charts/data-chart/type-stacked-spline-series/src/app/app.component.scss b/samples/charts/data-chart/type-stacked-spline-series/src/app.component.scss similarity index 100% rename from samples/charts/data-chart/type-stacked-spline-series/src/app/app.component.scss rename to samples/charts/data-chart/type-stacked-spline-series/src/app.component.scss diff --git a/samples/charts/data-chart/type-stacked-spline-series/src/app/app.component.ts b/samples/charts/data-chart/type-stacked-spline-series/src/app.component.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-spline-series/src/app/app.component.ts rename to samples/charts/data-chart/type-stacked-spline-series/src/app.component.ts diff --git a/samples/charts/data-chart/type-stacked-spline-series/src/app/app.module.ts b/samples/charts/data-chart/type-stacked-spline-series/src/app.module.ts similarity index 100% rename from samples/charts/data-chart/type-stacked-spline-series/src/app/app.module.ts rename to samples/charts/data-chart/type-stacked-spline-series/src/app.module.ts diff --git a/samples/charts/data-chart/type-stacked-spline-series/src/main.ts b/samples/charts/data-chart/type-stacked-spline-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/src/main.ts +++ b/samples/charts/data-chart/type-stacked-spline-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/doughnut-chart/animation/src/app/app.component.html b/samples/charts/doughnut-chart/animation/src/app.component.html similarity index 100% rename from samples/charts/doughnut-chart/animation/src/app/app.component.html rename to samples/charts/doughnut-chart/animation/src/app.component.html diff --git a/samples/charts/doughnut-chart/animation/src/app/app.component.scss b/samples/charts/doughnut-chart/animation/src/app.component.scss similarity index 100% rename from samples/charts/doughnut-chart/animation/src/app/app.component.scss rename to samples/charts/doughnut-chart/animation/src/app.component.scss diff --git a/samples/charts/doughnut-chart/animation/src/app/app.component.ts b/samples/charts/doughnut-chart/animation/src/app.component.ts similarity index 100% rename from samples/charts/doughnut-chart/animation/src/app/app.component.ts rename to samples/charts/doughnut-chart/animation/src/app.component.ts diff --git a/samples/charts/doughnut-chart/animation/src/app/app.module.ts b/samples/charts/doughnut-chart/animation/src/app.module.ts similarity index 100% rename from samples/charts/doughnut-chart/animation/src/app/app.module.ts rename to samples/charts/doughnut-chart/animation/src/app.module.ts diff --git a/samples/charts/doughnut-chart/animation/src/main.ts b/samples/charts/doughnut-chart/animation/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/doughnut-chart/animation/src/main.ts +++ b/samples/charts/doughnut-chart/animation/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/doughnut-chart/explosion/src/app/app.component.html b/samples/charts/doughnut-chart/explosion/src/app.component.html similarity index 100% rename from samples/charts/doughnut-chart/explosion/src/app/app.component.html rename to samples/charts/doughnut-chart/explosion/src/app.component.html diff --git a/samples/charts/doughnut-chart/explosion/src/app/app.component.scss b/samples/charts/doughnut-chart/explosion/src/app.component.scss similarity index 100% rename from samples/charts/doughnut-chart/explosion/src/app/app.component.scss rename to samples/charts/doughnut-chart/explosion/src/app.component.scss diff --git a/samples/charts/doughnut-chart/explosion/src/app/app.component.ts b/samples/charts/doughnut-chart/explosion/src/app.component.ts similarity index 100% rename from samples/charts/doughnut-chart/explosion/src/app/app.component.ts rename to samples/charts/doughnut-chart/explosion/src/app.component.ts diff --git a/samples/charts/doughnut-chart/explosion/src/app/app.module.ts b/samples/charts/doughnut-chart/explosion/src/app.module.ts similarity index 100% rename from samples/charts/doughnut-chart/explosion/src/app/app.module.ts rename to samples/charts/doughnut-chart/explosion/src/app.module.ts diff --git a/samples/charts/doughnut-chart/explosion/src/main.ts b/samples/charts/doughnut-chart/explosion/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/doughnut-chart/explosion/src/main.ts +++ b/samples/charts/doughnut-chart/explosion/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/doughnut-chart/selection/src/app/app.component.html b/samples/charts/doughnut-chart/selection/src/app.component.html similarity index 100% rename from samples/charts/doughnut-chart/selection/src/app/app.component.html rename to samples/charts/doughnut-chart/selection/src/app.component.html diff --git a/samples/charts/doughnut-chart/selection/src/app/app.component.scss b/samples/charts/doughnut-chart/selection/src/app.component.scss similarity index 100% rename from samples/charts/doughnut-chart/selection/src/app/app.component.scss rename to samples/charts/doughnut-chart/selection/src/app.component.scss diff --git a/samples/charts/doughnut-chart/selection/src/app/app.component.ts b/samples/charts/doughnut-chart/selection/src/app.component.ts similarity index 100% rename from samples/charts/doughnut-chart/selection/src/app/app.component.ts rename to samples/charts/doughnut-chart/selection/src/app.component.ts diff --git a/samples/charts/doughnut-chart/selection/src/app/app.module.ts b/samples/charts/doughnut-chart/selection/src/app.module.ts similarity index 100% rename from samples/charts/doughnut-chart/selection/src/app/app.module.ts rename to samples/charts/doughnut-chart/selection/src/app.module.ts diff --git a/samples/charts/doughnut-chart/selection/src/main.ts b/samples/charts/doughnut-chart/selection/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/doughnut-chart/selection/src/main.ts +++ b/samples/charts/doughnut-chart/selection/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/annotations/src/app/StocksUtility.ts b/samples/charts/financial-chart/annotations/src/StocksUtility.ts similarity index 100% rename from samples/charts/financial-chart/annotations/src/app/StocksUtility.ts rename to samples/charts/financial-chart/annotations/src/StocksUtility.ts diff --git a/samples/charts/financial-chart/annotations/src/app/app.component.html b/samples/charts/financial-chart/annotations/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/annotations/src/app/app.component.html rename to samples/charts/financial-chart/annotations/src/app.component.html diff --git a/samples/charts/financial-chart/annotations/src/app/app.component.scss b/samples/charts/financial-chart/annotations/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/annotations/src/app/app.component.scss rename to samples/charts/financial-chart/annotations/src/app.component.scss diff --git a/samples/charts/financial-chart/annotations/src/app/app.component.ts b/samples/charts/financial-chart/annotations/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/annotations/src/app/app.component.ts rename to samples/charts/financial-chart/annotations/src/app.component.ts diff --git a/samples/charts/financial-chart/annotations/src/app/app.module.ts b/samples/charts/financial-chart/annotations/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/annotations/src/app/app.module.ts rename to samples/charts/financial-chart/annotations/src/app.module.ts diff --git a/samples/charts/financial-chart/annotations/src/main.ts b/samples/charts/financial-chart/annotations/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/annotations/src/main.ts +++ b/samples/charts/financial-chart/annotations/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/axis-types/src/app/FinancialDataService.ts b/samples/charts/financial-chart/axis-types/src/FinancialDataService.ts similarity index 100% rename from samples/charts/financial-chart/axis-types/src/app/FinancialDataService.ts rename to samples/charts/financial-chart/axis-types/src/FinancialDataService.ts diff --git a/samples/charts/financial-chart/axis-types/src/app/app.component.html b/samples/charts/financial-chart/axis-types/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/axis-types/src/app/app.component.html rename to samples/charts/financial-chart/axis-types/src/app.component.html diff --git a/samples/charts/financial-chart/axis-types/src/app/app.component.scss b/samples/charts/financial-chart/axis-types/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/axis-types/src/app/app.component.scss rename to samples/charts/financial-chart/axis-types/src/app.component.scss diff --git a/samples/charts/financial-chart/axis-types/src/app/app.component.ts b/samples/charts/financial-chart/axis-types/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/axis-types/src/app/app.component.ts rename to samples/charts/financial-chart/axis-types/src/app.component.ts diff --git a/samples/charts/financial-chart/axis-types/src/app/app.module.ts b/samples/charts/financial-chart/axis-types/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/axis-types/src/app/app.module.ts rename to samples/charts/financial-chart/axis-types/src/app.module.ts diff --git a/samples/charts/financial-chart/axis-types/src/main.ts b/samples/charts/financial-chart/axis-types/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/axis-types/src/main.ts +++ b/samples/charts/financial-chart/axis-types/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/high-frequency/src/app/app.component.html b/samples/charts/financial-chart/high-frequency/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/high-frequency/src/app/app.component.html rename to samples/charts/financial-chart/high-frequency/src/app.component.html diff --git a/samples/charts/financial-chart/high-frequency/src/app/app.component.scss b/samples/charts/financial-chart/high-frequency/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/high-frequency/src/app/app.component.scss rename to samples/charts/financial-chart/high-frequency/src/app.component.scss diff --git a/samples/charts/financial-chart/high-frequency/src/app/app.component.ts b/samples/charts/financial-chart/high-frequency/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/high-frequency/src/app/app.component.ts rename to samples/charts/financial-chart/high-frequency/src/app.component.ts diff --git a/samples/charts/financial-chart/high-frequency/src/app/app.module.ts b/samples/charts/financial-chart/high-frequency/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/high-frequency/src/app/app.module.ts rename to samples/charts/financial-chart/high-frequency/src/app.module.ts diff --git a/samples/charts/financial-chart/high-frequency/src/main.ts b/samples/charts/financial-chart/high-frequency/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/high-frequency/src/main.ts +++ b/samples/charts/financial-chart/high-frequency/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/high-volume/src/app/GenerateHourlyPricesService.ts b/samples/charts/financial-chart/high-volume/src/GenerateHourlyPricesService.ts similarity index 100% rename from samples/charts/financial-chart/high-volume/src/app/GenerateHourlyPricesService.ts rename to samples/charts/financial-chart/high-volume/src/GenerateHourlyPricesService.ts diff --git a/samples/charts/financial-chart/high-volume/src/app/app.component.html b/samples/charts/financial-chart/high-volume/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/high-volume/src/app/app.component.html rename to samples/charts/financial-chart/high-volume/src/app.component.html diff --git a/samples/charts/financial-chart/high-volume/src/app/app.component.scss b/samples/charts/financial-chart/high-volume/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/high-volume/src/app/app.component.scss rename to samples/charts/financial-chart/high-volume/src/app.component.scss diff --git a/samples/charts/financial-chart/high-volume/src/app/app.component.ts b/samples/charts/financial-chart/high-volume/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/high-volume/src/app/app.component.ts rename to samples/charts/financial-chart/high-volume/src/app.component.ts diff --git a/samples/charts/financial-chart/high-volume/src/app/app.module.ts b/samples/charts/financial-chart/high-volume/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/high-volume/src/app/app.module.ts rename to samples/charts/financial-chart/high-volume/src/app.module.ts diff --git a/samples/charts/financial-chart/high-volume/src/main.ts b/samples/charts/financial-chart/high-volume/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/high-volume/src/main.ts +++ b/samples/charts/financial-chart/high-volume/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/indicator-customization/src/app/FinancialDataService.ts b/samples/charts/financial-chart/indicator-customization/src/FinancialDataService.ts similarity index 100% rename from samples/charts/financial-chart/indicator-customization/src/app/FinancialDataService.ts rename to samples/charts/financial-chart/indicator-customization/src/FinancialDataService.ts diff --git a/samples/charts/financial-chart/indicator-customization/src/app/app.component.html b/samples/charts/financial-chart/indicator-customization/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/indicator-customization/src/app/app.component.html rename to samples/charts/financial-chart/indicator-customization/src/app.component.html diff --git a/samples/charts/financial-chart/indicator-customization/src/app/app.component.scss b/samples/charts/financial-chart/indicator-customization/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/indicator-customization/src/app/app.component.scss rename to samples/charts/financial-chart/indicator-customization/src/app.component.scss diff --git a/samples/charts/financial-chart/indicator-customization/src/app/app.component.ts b/samples/charts/financial-chart/indicator-customization/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/indicator-customization/src/app/app.component.ts rename to samples/charts/financial-chart/indicator-customization/src/app.component.ts diff --git a/samples/charts/financial-chart/indicator-customization/src/app/app.module.ts b/samples/charts/financial-chart/indicator-customization/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/indicator-customization/src/app/app.module.ts rename to samples/charts/financial-chart/indicator-customization/src/app.module.ts diff --git a/samples/charts/financial-chart/indicator-customization/src/main.ts b/samples/charts/financial-chart/indicator-customization/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/indicator-customization/src/main.ts +++ b/samples/charts/financial-chart/indicator-customization/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/indicator-types/src/app/FinancialDataService.ts b/samples/charts/financial-chart/indicator-types/src/FinancialDataService.ts similarity index 100% rename from samples/charts/financial-chart/indicator-types/src/app/FinancialDataService.ts rename to samples/charts/financial-chart/indicator-types/src/FinancialDataService.ts diff --git a/samples/charts/financial-chart/indicator-types/src/app/app.component.html b/samples/charts/financial-chart/indicator-types/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/indicator-types/src/app/app.component.html rename to samples/charts/financial-chart/indicator-types/src/app.component.html diff --git a/samples/charts/financial-chart/indicator-types/src/app/app.component.scss b/samples/charts/financial-chart/indicator-types/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/indicator-types/src/app/app.component.scss rename to samples/charts/financial-chart/indicator-types/src/app.component.scss diff --git a/samples/charts/financial-chart/indicator-types/src/app/app.component.ts b/samples/charts/financial-chart/indicator-types/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/indicator-types/src/app/app.component.ts rename to samples/charts/financial-chart/indicator-types/src/app.component.ts diff --git a/samples/charts/financial-chart/indicator-types/src/app/app.module.ts b/samples/charts/financial-chart/indicator-types/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/indicator-types/src/app/app.module.ts rename to samples/charts/financial-chart/indicator-types/src/app.module.ts diff --git a/samples/charts/financial-chart/indicator-types/src/main.ts b/samples/charts/financial-chart/indicator-types/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/indicator-types/src/main.ts +++ b/samples/charts/financial-chart/indicator-types/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/multiple-data/src/app/FinancialDataService.ts b/samples/charts/financial-chart/multiple-data/src/FinancialDataService.ts similarity index 100% rename from samples/charts/financial-chart/multiple-data/src/app/FinancialDataService.ts rename to samples/charts/financial-chart/multiple-data/src/FinancialDataService.ts diff --git a/samples/charts/financial-chart/multiple-data/src/app/app.component.html b/samples/charts/financial-chart/multiple-data/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/multiple-data/src/app/app.component.html rename to samples/charts/financial-chart/multiple-data/src/app.component.html diff --git a/samples/charts/financial-chart/multiple-data/src/app/app.component.scss b/samples/charts/financial-chart/multiple-data/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/multiple-data/src/app/app.component.scss rename to samples/charts/financial-chart/multiple-data/src/app.component.scss diff --git a/samples/charts/financial-chart/multiple-data/src/app/app.component.ts b/samples/charts/financial-chart/multiple-data/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/multiple-data/src/app/app.component.ts rename to samples/charts/financial-chart/multiple-data/src/app.component.ts diff --git a/samples/charts/financial-chart/multiple-data/src/app/app.module.ts b/samples/charts/financial-chart/multiple-data/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/multiple-data/src/app/app.module.ts rename to samples/charts/financial-chart/multiple-data/src/app.module.ts diff --git a/samples/charts/financial-chart/multiple-data/src/main.ts b/samples/charts/financial-chart/multiple-data/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/multiple-data/src/main.ts +++ b/samples/charts/financial-chart/multiple-data/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/multiple-feeds/src/app/app.component.html b/samples/charts/financial-chart/multiple-feeds/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/multiple-feeds/src/app/app.component.html rename to samples/charts/financial-chart/multiple-feeds/src/app.component.html diff --git a/samples/charts/financial-chart/multiple-feeds/src/app/app.component.scss b/samples/charts/financial-chart/multiple-feeds/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/multiple-feeds/src/app/app.component.scss rename to samples/charts/financial-chart/multiple-feeds/src/app.component.scss diff --git a/samples/charts/financial-chart/multiple-feeds/src/app/app.component.ts b/samples/charts/financial-chart/multiple-feeds/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/multiple-feeds/src/app/app.component.ts rename to samples/charts/financial-chart/multiple-feeds/src/app.component.ts diff --git a/samples/charts/financial-chart/multiple-feeds/src/app/app.module.ts b/samples/charts/financial-chart/multiple-feeds/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/multiple-feeds/src/app/app.module.ts rename to samples/charts/financial-chart/multiple-feeds/src/app.module.ts diff --git a/samples/charts/financial-chart/multiple-feeds/src/main.ts b/samples/charts/financial-chart/multiple-feeds/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/multiple-feeds/src/main.ts +++ b/samples/charts/financial-chart/multiple-feeds/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/overview/src/app/FinancialDataService.ts b/samples/charts/financial-chart/overview/src/FinancialDataService.ts similarity index 100% rename from samples/charts/financial-chart/overview/src/app/FinancialDataService.ts rename to samples/charts/financial-chart/overview/src/FinancialDataService.ts diff --git a/samples/charts/financial-chart/overview/src/app/app.component.html b/samples/charts/financial-chart/overview/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/overview/src/app/app.component.html rename to samples/charts/financial-chart/overview/src/app.component.html diff --git a/samples/charts/financial-chart/overview/src/app/app.component.scss b/samples/charts/financial-chart/overview/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/overview/src/app/app.component.scss rename to samples/charts/financial-chart/overview/src/app.component.scss diff --git a/samples/charts/financial-chart/overview/src/app/app.component.ts b/samples/charts/financial-chart/overview/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/overview/src/app/app.component.ts rename to samples/charts/financial-chart/overview/src/app.component.ts diff --git a/samples/charts/financial-chart/overview/src/app/app.module.ts b/samples/charts/financial-chart/overview/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/overview/src/app/app.module.ts rename to samples/charts/financial-chart/overview/src/app.module.ts diff --git a/samples/charts/financial-chart/overview/src/main.ts b/samples/charts/financial-chart/overview/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/overview/src/main.ts +++ b/samples/charts/financial-chart/overview/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/panes/src/app/StockDataService.ts b/samples/charts/financial-chart/panes/src/StockDataService.ts similarity index 100% rename from samples/charts/financial-chart/panes/src/app/StockDataService.ts rename to samples/charts/financial-chart/panes/src/StockDataService.ts diff --git a/samples/charts/financial-chart/panes/src/app/app.component.html b/samples/charts/financial-chart/panes/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/panes/src/app/app.component.html rename to samples/charts/financial-chart/panes/src/app.component.html diff --git a/samples/charts/financial-chart/panes/src/app/app.component.scss b/samples/charts/financial-chart/panes/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/panes/src/app/app.component.scss rename to samples/charts/financial-chart/panes/src/app.component.scss diff --git a/samples/charts/financial-chart/panes/src/app/app.component.ts b/samples/charts/financial-chart/panes/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/panes/src/app/app.component.ts rename to samples/charts/financial-chart/panes/src/app.component.ts diff --git a/samples/charts/financial-chart/panes/src/app/app.module.ts b/samples/charts/financial-chart/panes/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/panes/src/app/app.module.ts rename to samples/charts/financial-chart/panes/src/app.module.ts diff --git a/samples/charts/financial-chart/panes/src/main.ts b/samples/charts/financial-chart/panes/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/panes/src/main.ts +++ b/samples/charts/financial-chart/panes/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/performance/src/app/GenerateOhlcPricesService.ts b/samples/charts/financial-chart/performance/src/GenerateOhlcPricesService.ts similarity index 100% rename from samples/charts/financial-chart/performance/src/app/GenerateOhlcPricesService.ts rename to samples/charts/financial-chart/performance/src/GenerateOhlcPricesService.ts diff --git a/samples/charts/financial-chart/performance/src/app/app.component.html b/samples/charts/financial-chart/performance/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/performance/src/app/app.component.html rename to samples/charts/financial-chart/performance/src/app.component.html diff --git a/samples/charts/financial-chart/performance/src/app/app.component.scss b/samples/charts/financial-chart/performance/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/performance/src/app/app.component.scss rename to samples/charts/financial-chart/performance/src/app.component.scss diff --git a/samples/charts/financial-chart/performance/src/app/app.component.ts b/samples/charts/financial-chart/performance/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/performance/src/app/app.component.ts rename to samples/charts/financial-chart/performance/src/app.component.ts diff --git a/samples/charts/financial-chart/performance/src/app/app.module.ts b/samples/charts/financial-chart/performance/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/performance/src/app/app.module.ts rename to samples/charts/financial-chart/performance/src/app.module.ts diff --git a/samples/charts/financial-chart/performance/src/main.ts b/samples/charts/financial-chart/performance/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/performance/src/main.ts +++ b/samples/charts/financial-chart/performance/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/stock-index-chart/src/app/StockIndexDataService.ts b/samples/charts/financial-chart/stock-index-chart/src/StockIndexDataService.ts similarity index 100% rename from samples/charts/financial-chart/stock-index-chart/src/app/StockIndexDataService.ts rename to samples/charts/financial-chart/stock-index-chart/src/StockIndexDataService.ts diff --git a/samples/charts/financial-chart/stock-index-chart/src/app/app.component.html b/samples/charts/financial-chart/stock-index-chart/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/stock-index-chart/src/app/app.component.html rename to samples/charts/financial-chart/stock-index-chart/src/app.component.html diff --git a/samples/charts/financial-chart/stock-index-chart/src/app/app.component.scss b/samples/charts/financial-chart/stock-index-chart/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/stock-index-chart/src/app/app.component.scss rename to samples/charts/financial-chart/stock-index-chart/src/app.component.scss diff --git a/samples/charts/financial-chart/stock-index-chart/src/app/app.component.ts b/samples/charts/financial-chart/stock-index-chart/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/stock-index-chart/src/app/app.component.ts rename to samples/charts/financial-chart/stock-index-chart/src/app.component.ts diff --git a/samples/charts/financial-chart/stock-index-chart/src/app/app.module.ts b/samples/charts/financial-chart/stock-index-chart/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/stock-index-chart/src/app/app.module.ts rename to samples/charts/financial-chart/stock-index-chart/src/app.module.ts diff --git a/samples/charts/financial-chart/stock-index-chart/src/main.ts b/samples/charts/financial-chart/stock-index-chart/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/stock-index-chart/src/main.ts +++ b/samples/charts/financial-chart/stock-index-chart/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/styling/src/app/FinancialDataService.ts b/samples/charts/financial-chart/styling/src/FinancialDataService.ts similarity index 100% rename from samples/charts/financial-chart/styling/src/app/FinancialDataService.ts rename to samples/charts/financial-chart/styling/src/FinancialDataService.ts diff --git a/samples/charts/financial-chart/styling/src/app/app.component.html b/samples/charts/financial-chart/styling/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/styling/src/app/app.component.html rename to samples/charts/financial-chart/styling/src/app.component.html diff --git a/samples/charts/financial-chart/styling/src/app/app.component.scss b/samples/charts/financial-chart/styling/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/styling/src/app/app.component.scss rename to samples/charts/financial-chart/styling/src/app.component.scss diff --git a/samples/charts/financial-chart/styling/src/app/app.component.ts b/samples/charts/financial-chart/styling/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/styling/src/app/app.component.ts rename to samples/charts/financial-chart/styling/src/app.component.ts diff --git a/samples/charts/financial-chart/styling/src/app/app.module.ts b/samples/charts/financial-chart/styling/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/styling/src/app/app.module.ts rename to samples/charts/financial-chart/styling/src/app.module.ts diff --git a/samples/charts/financial-chart/styling/src/main.ts b/samples/charts/financial-chart/styling/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/styling/src/main.ts +++ b/samples/charts/financial-chart/styling/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/theming/src/app/StockDataService.ts b/samples/charts/financial-chart/theming/src/StockDataService.ts similarity index 100% rename from samples/charts/financial-chart/theming/src/app/StockDataService.ts rename to samples/charts/financial-chart/theming/src/StockDataService.ts diff --git a/samples/charts/financial-chart/theming/src/app/app.component.html b/samples/charts/financial-chart/theming/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/theming/src/app/app.component.html rename to samples/charts/financial-chart/theming/src/app.component.html diff --git a/samples/charts/financial-chart/theming/src/app/app.component.scss b/samples/charts/financial-chart/theming/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/theming/src/app/app.component.scss rename to samples/charts/financial-chart/theming/src/app.component.scss diff --git a/samples/charts/financial-chart/theming/src/app/app.component.ts b/samples/charts/financial-chart/theming/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/theming/src/app/app.component.ts rename to samples/charts/financial-chart/theming/src/app.component.ts diff --git a/samples/charts/financial-chart/theming/src/app/app.module.ts b/samples/charts/financial-chart/theming/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/theming/src/app/app.module.ts rename to samples/charts/financial-chart/theming/src/app.module.ts diff --git a/samples/charts/financial-chart/theming/src/app/dark-theme-financial-chart.css b/samples/charts/financial-chart/theming/src/dark-theme-financial-chart.css similarity index 100% rename from samples/charts/financial-chart/theming/src/app/dark-theme-financial-chart.css rename to samples/charts/financial-chart/theming/src/dark-theme-financial-chart.css diff --git a/samples/charts/financial-chart/theming/src/app/dark-theme-legend.css b/samples/charts/financial-chart/theming/src/dark-theme-legend.css similarity index 100% rename from samples/charts/financial-chart/theming/src/app/dark-theme-legend.css rename to samples/charts/financial-chart/theming/src/dark-theme-legend.css diff --git a/samples/charts/financial-chart/theming/src/app/dark-theme-tooltips.css b/samples/charts/financial-chart/theming/src/dark-theme-tooltips.css similarity index 100% rename from samples/charts/financial-chart/theming/src/app/dark-theme-tooltips.css rename to samples/charts/financial-chart/theming/src/dark-theme-tooltips.css diff --git a/samples/charts/financial-chart/theming/src/app/dark-theme-zoom-slider.css b/samples/charts/financial-chart/theming/src/dark-theme-zoom-slider.css similarity index 100% rename from samples/charts/financial-chart/theming/src/app/dark-theme-zoom-slider.css rename to samples/charts/financial-chart/theming/src/dark-theme-zoom-slider.css diff --git a/samples/charts/financial-chart/theming/src/main.ts b/samples/charts/financial-chart/theming/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/theming/src/main.ts +++ b/samples/charts/financial-chart/theming/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/time-based-data/src/app/FinancialDataService.ts b/samples/charts/financial-chart/time-based-data/src/FinancialDataService.ts similarity index 100% rename from samples/charts/financial-chart/time-based-data/src/app/FinancialDataService.ts rename to samples/charts/financial-chart/time-based-data/src/FinancialDataService.ts diff --git a/samples/charts/financial-chart/time-based-data/src/app/app.component.html b/samples/charts/financial-chart/time-based-data/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/time-based-data/src/app/app.component.html rename to samples/charts/financial-chart/time-based-data/src/app.component.html diff --git a/samples/charts/financial-chart/time-based-data/src/app/app.component.scss b/samples/charts/financial-chart/time-based-data/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/time-based-data/src/app/app.component.scss rename to samples/charts/financial-chart/time-based-data/src/app.component.scss diff --git a/samples/charts/financial-chart/time-based-data/src/app/app.component.ts b/samples/charts/financial-chart/time-based-data/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/time-based-data/src/app/app.component.ts rename to samples/charts/financial-chart/time-based-data/src/app.component.ts diff --git a/samples/charts/financial-chart/time-based-data/src/app/app.module.ts b/samples/charts/financial-chart/time-based-data/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/time-based-data/src/app/app.module.ts rename to samples/charts/financial-chart/time-based-data/src/app.module.ts diff --git a/samples/charts/financial-chart/time-based-data/src/main.ts b/samples/charts/financial-chart/time-based-data/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/time-based-data/src/main.ts +++ b/samples/charts/financial-chart/time-based-data/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/titles/src/app/StockDataService.ts b/samples/charts/financial-chart/titles/src/StockDataService.ts similarity index 100% rename from samples/charts/financial-chart/titles/src/app/StockDataService.ts rename to samples/charts/financial-chart/titles/src/StockDataService.ts diff --git a/samples/charts/financial-chart/titles/src/app/app.component.html b/samples/charts/financial-chart/titles/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/titles/src/app/app.component.html rename to samples/charts/financial-chart/titles/src/app.component.html diff --git a/samples/charts/financial-chart/titles/src/app/app.component.scss b/samples/charts/financial-chart/titles/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/titles/src/app/app.component.scss rename to samples/charts/financial-chart/titles/src/app.component.scss diff --git a/samples/charts/financial-chart/titles/src/app/app.component.ts b/samples/charts/financial-chart/titles/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/titles/src/app/app.component.ts rename to samples/charts/financial-chart/titles/src/app.component.ts diff --git a/samples/charts/financial-chart/titles/src/app/app.module.ts b/samples/charts/financial-chart/titles/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/titles/src/app/app.module.ts rename to samples/charts/financial-chart/titles/src/app.module.ts diff --git a/samples/charts/financial-chart/titles/src/main.ts b/samples/charts/financial-chart/titles/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/titles/src/main.ts +++ b/samples/charts/financial-chart/titles/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/tooltip-template/src/app/FinancialDataService.ts b/samples/charts/financial-chart/tooltip-template/src/FinancialDataService.ts similarity index 100% rename from samples/charts/financial-chart/tooltip-template/src/app/FinancialDataService.ts rename to samples/charts/financial-chart/tooltip-template/src/FinancialDataService.ts diff --git a/samples/charts/financial-chart/tooltip-template/src/app/app.component.html b/samples/charts/financial-chart/tooltip-template/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/tooltip-template/src/app/app.component.html rename to samples/charts/financial-chart/tooltip-template/src/app.component.html diff --git a/samples/charts/financial-chart/tooltip-template/src/app/app.component.scss b/samples/charts/financial-chart/tooltip-template/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/tooltip-template/src/app/app.component.scss rename to samples/charts/financial-chart/tooltip-template/src/app.component.scss diff --git a/samples/charts/financial-chart/tooltip-template/src/app/app.component.ts b/samples/charts/financial-chart/tooltip-template/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/tooltip-template/src/app/app.component.ts rename to samples/charts/financial-chart/tooltip-template/src/app.component.ts diff --git a/samples/charts/financial-chart/tooltip-template/src/app/app.module.ts b/samples/charts/financial-chart/tooltip-template/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/tooltip-template/src/app/app.module.ts rename to samples/charts/financial-chart/tooltip-template/src/app.module.ts diff --git a/samples/charts/financial-chart/tooltip-template/src/main.ts b/samples/charts/financial-chart/tooltip-template/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/tooltip-template/src/main.ts +++ b/samples/charts/financial-chart/tooltip-template/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/tooltip-types/src/app/FinancialDataService.ts b/samples/charts/financial-chart/tooltip-types/src/FinancialDataService.ts similarity index 100% rename from samples/charts/financial-chart/tooltip-types/src/app/FinancialDataService.ts rename to samples/charts/financial-chart/tooltip-types/src/FinancialDataService.ts diff --git a/samples/charts/financial-chart/tooltip-types/src/app/app.component.html b/samples/charts/financial-chart/tooltip-types/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/tooltip-types/src/app/app.component.html rename to samples/charts/financial-chart/tooltip-types/src/app.component.html diff --git a/samples/charts/financial-chart/tooltip-types/src/app/app.component.scss b/samples/charts/financial-chart/tooltip-types/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/tooltip-types/src/app/app.component.scss rename to samples/charts/financial-chart/tooltip-types/src/app.component.scss diff --git a/samples/charts/financial-chart/tooltip-types/src/app/app.component.ts b/samples/charts/financial-chart/tooltip-types/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/tooltip-types/src/app/app.component.ts rename to samples/charts/financial-chart/tooltip-types/src/app.component.ts diff --git a/samples/charts/financial-chart/tooltip-types/src/app/app.module.ts b/samples/charts/financial-chart/tooltip-types/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/tooltip-types/src/app/app.module.ts rename to samples/charts/financial-chart/tooltip-types/src/app.module.ts diff --git a/samples/charts/financial-chart/tooltip-types/src/main.ts b/samples/charts/financial-chart/tooltip-types/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/tooltip-types/src/main.ts +++ b/samples/charts/financial-chart/tooltip-types/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/trendlines/src/app/FinancialDataService.ts b/samples/charts/financial-chart/trendlines/src/FinancialDataService.ts similarity index 100% rename from samples/charts/financial-chart/trendlines/src/app/FinancialDataService.ts rename to samples/charts/financial-chart/trendlines/src/FinancialDataService.ts diff --git a/samples/charts/financial-chart/trendlines/src/app/app.component.html b/samples/charts/financial-chart/trendlines/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/trendlines/src/app/app.component.html rename to samples/charts/financial-chart/trendlines/src/app.component.html diff --git a/samples/charts/financial-chart/trendlines/src/app/app.component.scss b/samples/charts/financial-chart/trendlines/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/trendlines/src/app/app.component.scss rename to samples/charts/financial-chart/trendlines/src/app.component.scss diff --git a/samples/charts/financial-chart/trendlines/src/app/app.component.ts b/samples/charts/financial-chart/trendlines/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/trendlines/src/app/app.component.ts rename to samples/charts/financial-chart/trendlines/src/app.component.ts diff --git a/samples/charts/financial-chart/trendlines/src/app/app.module.ts b/samples/charts/financial-chart/trendlines/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/trendlines/src/app/app.module.ts rename to samples/charts/financial-chart/trendlines/src/app.module.ts diff --git a/samples/charts/financial-chart/trendlines/src/main.ts b/samples/charts/financial-chart/trendlines/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/trendlines/src/main.ts +++ b/samples/charts/financial-chart/trendlines/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/financial-chart/volume-types/src/app/FinancialDataService.ts b/samples/charts/financial-chart/volume-types/src/FinancialDataService.ts similarity index 100% rename from samples/charts/financial-chart/volume-types/src/app/FinancialDataService.ts rename to samples/charts/financial-chart/volume-types/src/FinancialDataService.ts diff --git a/samples/charts/financial-chart/volume-types/src/app/app.component.html b/samples/charts/financial-chart/volume-types/src/app.component.html similarity index 100% rename from samples/charts/financial-chart/volume-types/src/app/app.component.html rename to samples/charts/financial-chart/volume-types/src/app.component.html diff --git a/samples/charts/financial-chart/volume-types/src/app/app.component.scss b/samples/charts/financial-chart/volume-types/src/app.component.scss similarity index 100% rename from samples/charts/financial-chart/volume-types/src/app/app.component.scss rename to samples/charts/financial-chart/volume-types/src/app.component.scss diff --git a/samples/charts/financial-chart/volume-types/src/app/app.component.ts b/samples/charts/financial-chart/volume-types/src/app.component.ts similarity index 100% rename from samples/charts/financial-chart/volume-types/src/app/app.component.ts rename to samples/charts/financial-chart/volume-types/src/app.component.ts diff --git a/samples/charts/financial-chart/volume-types/src/app/app.module.ts b/samples/charts/financial-chart/volume-types/src/app.module.ts similarity index 100% rename from samples/charts/financial-chart/volume-types/src/app/app.module.ts rename to samples/charts/financial-chart/volume-types/src/app.module.ts diff --git a/samples/charts/financial-chart/volume-types/src/main.ts b/samples/charts/financial-chart/volume-types/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/financial-chart/volume-types/src/main.ts +++ b/samples/charts/financial-chart/volume-types/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/pie-chart/animation/src/app/app.component.html b/samples/charts/pie-chart/animation/src/app.component.html similarity index 100% rename from samples/charts/pie-chart/animation/src/app/app.component.html rename to samples/charts/pie-chart/animation/src/app.component.html diff --git a/samples/charts/pie-chart/animation/src/app/app.component.scss b/samples/charts/pie-chart/animation/src/app.component.scss similarity index 100% rename from samples/charts/pie-chart/animation/src/app/app.component.scss rename to samples/charts/pie-chart/animation/src/app.component.scss diff --git a/samples/charts/pie-chart/animation/src/app/app.component.ts b/samples/charts/pie-chart/animation/src/app.component.ts similarity index 100% rename from samples/charts/pie-chart/animation/src/app/app.component.ts rename to samples/charts/pie-chart/animation/src/app.component.ts diff --git a/samples/charts/pie-chart/animation/src/app/app.module.ts b/samples/charts/pie-chart/animation/src/app.module.ts similarity index 100% rename from samples/charts/pie-chart/animation/src/app/app.module.ts rename to samples/charts/pie-chart/animation/src/app.module.ts diff --git a/samples/charts/pie-chart/animation/src/main.ts b/samples/charts/pie-chart/animation/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/pie-chart/animation/src/main.ts +++ b/samples/charts/pie-chart/animation/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/pie-chart/explosion/src/app/app.component.html b/samples/charts/pie-chart/explosion/src/app.component.html similarity index 100% rename from samples/charts/pie-chart/explosion/src/app/app.component.html rename to samples/charts/pie-chart/explosion/src/app.component.html diff --git a/samples/charts/pie-chart/explosion/src/app/app.component.scss b/samples/charts/pie-chart/explosion/src/app.component.scss similarity index 100% rename from samples/charts/pie-chart/explosion/src/app/app.component.scss rename to samples/charts/pie-chart/explosion/src/app.component.scss diff --git a/samples/charts/pie-chart/explosion/src/app/app.component.ts b/samples/charts/pie-chart/explosion/src/app.component.ts similarity index 100% rename from samples/charts/pie-chart/explosion/src/app/app.component.ts rename to samples/charts/pie-chart/explosion/src/app.component.ts diff --git a/samples/charts/pie-chart/explosion/src/app/app.module.ts b/samples/charts/pie-chart/explosion/src/app.module.ts similarity index 100% rename from samples/charts/pie-chart/explosion/src/app/app.module.ts rename to samples/charts/pie-chart/explosion/src/app.module.ts diff --git a/samples/charts/pie-chart/explosion/src/main.ts b/samples/charts/pie-chart/explosion/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/pie-chart/explosion/src/main.ts +++ b/samples/charts/pie-chart/explosion/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/pie-chart/selection/src/app/app.component.html b/samples/charts/pie-chart/selection/src/app.component.html similarity index 100% rename from samples/charts/pie-chart/selection/src/app/app.component.html rename to samples/charts/pie-chart/selection/src/app.component.html diff --git a/samples/charts/pie-chart/selection/src/app/app.component.scss b/samples/charts/pie-chart/selection/src/app.component.scss similarity index 100% rename from samples/charts/pie-chart/selection/src/app/app.component.scss rename to samples/charts/pie-chart/selection/src/app.component.scss diff --git a/samples/charts/pie-chart/selection/src/app/app.component.ts b/samples/charts/pie-chart/selection/src/app.component.ts similarity index 100% rename from samples/charts/pie-chart/selection/src/app/app.component.ts rename to samples/charts/pie-chart/selection/src/app.component.ts diff --git a/samples/charts/pie-chart/selection/src/app/app.module.ts b/samples/charts/pie-chart/selection/src/app.module.ts similarity index 100% rename from samples/charts/pie-chart/selection/src/app/app.module.ts rename to samples/charts/pie-chart/selection/src/app.module.ts diff --git a/samples/charts/pie-chart/selection/src/main.ts b/samples/charts/pie-chart/selection/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/pie-chart/selection/src/main.ts +++ b/samples/charts/pie-chart/selection/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/sparkline/display-types/src/app/SharedData.ts b/samples/charts/sparkline/display-types/src/SharedData.ts similarity index 100% rename from samples/charts/sparkline/display-types/src/app/SharedData.ts rename to samples/charts/sparkline/display-types/src/SharedData.ts diff --git a/samples/charts/sparkline/display-types/src/app/app.component.html b/samples/charts/sparkline/display-types/src/app.component.html similarity index 100% rename from samples/charts/sparkline/display-types/src/app/app.component.html rename to samples/charts/sparkline/display-types/src/app.component.html diff --git a/samples/charts/sparkline/display-types/src/app/app.component.scss b/samples/charts/sparkline/display-types/src/app.component.scss similarity index 100% rename from samples/charts/sparkline/display-types/src/app/app.component.scss rename to samples/charts/sparkline/display-types/src/app.component.scss diff --git a/samples/charts/sparkline/display-types/src/app/app.component.ts b/samples/charts/sparkline/display-types/src/app.component.ts similarity index 100% rename from samples/charts/sparkline/display-types/src/app/app.component.ts rename to samples/charts/sparkline/display-types/src/app.component.ts diff --git a/samples/charts/sparkline/display-types/src/app/app.module.ts b/samples/charts/sparkline/display-types/src/app.module.ts similarity index 100% rename from samples/charts/sparkline/display-types/src/app/app.module.ts rename to samples/charts/sparkline/display-types/src/app.module.ts diff --git a/samples/charts/sparkline/display-types/src/main.ts b/samples/charts/sparkline/display-types/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/sparkline/display-types/src/main.ts +++ b/samples/charts/sparkline/display-types/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/sparkline/grid/src/app/Products.ts b/samples/charts/sparkline/grid/src/Products.ts similarity index 100% rename from samples/charts/sparkline/grid/src/app/Products.ts rename to samples/charts/sparkline/grid/src/Products.ts diff --git a/samples/charts/sparkline/grid/src/app/app.component.html b/samples/charts/sparkline/grid/src/app.component.html similarity index 100% rename from samples/charts/sparkline/grid/src/app/app.component.html rename to samples/charts/sparkline/grid/src/app.component.html diff --git a/samples/charts/sparkline/grid/src/app/app.component.scss b/samples/charts/sparkline/grid/src/app.component.scss similarity index 100% rename from samples/charts/sparkline/grid/src/app/app.component.scss rename to samples/charts/sparkline/grid/src/app.component.scss diff --git a/samples/charts/sparkline/grid/src/app/app.component.ts b/samples/charts/sparkline/grid/src/app.component.ts similarity index 100% rename from samples/charts/sparkline/grid/src/app/app.component.ts rename to samples/charts/sparkline/grid/src/app.component.ts diff --git a/samples/charts/sparkline/grid/src/app/app.module.ts b/samples/charts/sparkline/grid/src/app.module.ts similarity index 100% rename from samples/charts/sparkline/grid/src/app/app.module.ts rename to samples/charts/sparkline/grid/src/app.module.ts diff --git a/samples/charts/sparkline/grid/src/main.ts b/samples/charts/sparkline/grid/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/sparkline/grid/src/main.ts +++ b/samples/charts/sparkline/grid/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/tree-map/events/src/app/app.component.html b/samples/charts/tree-map/events/src/app.component.html similarity index 100% rename from samples/charts/tree-map/events/src/app/app.component.html rename to samples/charts/tree-map/events/src/app.component.html diff --git a/samples/charts/tree-map/events/src/app/app.component.scss b/samples/charts/tree-map/events/src/app.component.scss similarity index 100% rename from samples/charts/tree-map/events/src/app/app.component.scss rename to samples/charts/tree-map/events/src/app.component.scss diff --git a/samples/charts/tree-map/events/src/app/app.component.ts b/samples/charts/tree-map/events/src/app.component.ts similarity index 100% rename from samples/charts/tree-map/events/src/app/app.component.ts rename to samples/charts/tree-map/events/src/app.component.ts diff --git a/samples/charts/tree-map/events/src/app/app.module.ts b/samples/charts/tree-map/events/src/app.module.ts similarity index 100% rename from samples/charts/tree-map/events/src/app/app.module.ts rename to samples/charts/tree-map/events/src/app.module.ts diff --git a/samples/charts/tree-map/events/src/main.ts b/samples/charts/tree-map/events/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/tree-map/events/src/main.ts +++ b/samples/charts/tree-map/events/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/charts/tree-map/highlighting-percent-based/ReadMe.md b/samples/charts/tree-map/highlighting-percent-based/ReadMe.md new file mode 100644 index 000000000..3d8dc96f9 --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Highlighting Percent Based feature using [TreeMap](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/tree-map/highlighting-percent-based +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/zoomslider/overview/src/app/SampleScatterStats.ts b/samples/charts/zoomslider/overview/src/SampleScatterStats.ts similarity index 100% rename from samples/charts/zoomslider/overview/src/app/SampleScatterStats.ts rename to samples/charts/zoomslider/overview/src/SampleScatterStats.ts diff --git a/samples/charts/zoomslider/overview/src/app/app.component.html b/samples/charts/zoomslider/overview/src/app.component.html similarity index 100% rename from samples/charts/zoomslider/overview/src/app/app.component.html rename to samples/charts/zoomslider/overview/src/app.component.html diff --git a/samples/charts/zoomslider/overview/src/app/app.component.scss b/samples/charts/zoomslider/overview/src/app.component.scss similarity index 100% rename from samples/charts/zoomslider/overview/src/app/app.component.scss rename to samples/charts/zoomslider/overview/src/app.component.scss diff --git a/samples/charts/zoomslider/overview/src/app/app.component.ts b/samples/charts/zoomslider/overview/src/app.component.ts similarity index 100% rename from samples/charts/zoomslider/overview/src/app/app.component.ts rename to samples/charts/zoomslider/overview/src/app.component.ts diff --git a/samples/charts/zoomslider/overview/src/app/app.module.ts b/samples/charts/zoomslider/overview/src/app.module.ts similarity index 100% rename from samples/charts/zoomslider/overview/src/app/app.module.ts rename to samples/charts/zoomslider/overview/src/app.module.ts diff --git a/samples/charts/zoomslider/overview/src/main.ts b/samples/charts/zoomslider/overview/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/charts/zoomslider/overview/src/main.ts +++ b/samples/charts/zoomslider/overview/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/excel/excel-library/operations-on-workbooks/src/app/ExcelUtility.ts b/samples/excel/excel-library/operations-on-workbooks/src/ExcelUtility.ts similarity index 100% rename from samples/excel/excel-library/operations-on-workbooks/src/app/ExcelUtility.ts rename to samples/excel/excel-library/operations-on-workbooks/src/ExcelUtility.ts diff --git a/samples/excel/excel-library/operations-on-workbooks/src/app/app.component.html b/samples/excel/excel-library/operations-on-workbooks/src/app.component.html similarity index 100% rename from samples/excel/excel-library/operations-on-workbooks/src/app/app.component.html rename to samples/excel/excel-library/operations-on-workbooks/src/app.component.html diff --git a/samples/excel/excel-library/operations-on-workbooks/src/app/app.component.scss b/samples/excel/excel-library/operations-on-workbooks/src/app.component.scss similarity index 100% rename from samples/excel/excel-library/operations-on-workbooks/src/app/app.component.scss rename to samples/excel/excel-library/operations-on-workbooks/src/app.component.scss diff --git a/samples/excel/excel-library/operations-on-workbooks/src/app/app.component.ts b/samples/excel/excel-library/operations-on-workbooks/src/app.component.ts similarity index 100% rename from samples/excel/excel-library/operations-on-workbooks/src/app/app.component.ts rename to samples/excel/excel-library/operations-on-workbooks/src/app.component.ts diff --git a/samples/excel/excel-library/operations-on-workbooks/src/app/app.module.ts b/samples/excel/excel-library/operations-on-workbooks/src/app.module.ts similarity index 100% rename from samples/excel/excel-library/operations-on-workbooks/src/app/app.module.ts rename to samples/excel/excel-library/operations-on-workbooks/src/app.module.ts diff --git a/samples/excel/excel-library/operations-on-workbooks/src/main.ts b/samples/excel/excel-library/operations-on-workbooks/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/excel/excel-library/operations-on-workbooks/src/main.ts +++ b/samples/excel/excel-library/operations-on-workbooks/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/excel/excel-library/operations-on-worksheets/src/app/ExcelUtility.ts b/samples/excel/excel-library/operations-on-worksheets/src/ExcelUtility.ts similarity index 100% rename from samples/excel/excel-library/operations-on-worksheets/src/app/ExcelUtility.ts rename to samples/excel/excel-library/operations-on-worksheets/src/ExcelUtility.ts diff --git a/samples/excel/excel-library/operations-on-worksheets/src/app/app.component.html b/samples/excel/excel-library/operations-on-worksheets/src/app.component.html similarity index 100% rename from samples/excel/excel-library/operations-on-worksheets/src/app/app.component.html rename to samples/excel/excel-library/operations-on-worksheets/src/app.component.html diff --git a/samples/excel/excel-library/operations-on-worksheets/src/app/app.component.scss b/samples/excel/excel-library/operations-on-worksheets/src/app.component.scss similarity index 100% rename from samples/excel/excel-library/operations-on-worksheets/src/app/app.component.scss rename to samples/excel/excel-library/operations-on-worksheets/src/app.component.scss diff --git a/samples/excel/excel-library/operations-on-worksheets/src/app/app.component.ts b/samples/excel/excel-library/operations-on-worksheets/src/app.component.ts similarity index 100% rename from samples/excel/excel-library/operations-on-worksheets/src/app/app.component.ts rename to samples/excel/excel-library/operations-on-worksheets/src/app.component.ts diff --git a/samples/excel/excel-library/operations-on-worksheets/src/app/app.module.ts b/samples/excel/excel-library/operations-on-worksheets/src/app.module.ts similarity index 100% rename from samples/excel/excel-library/operations-on-worksheets/src/app/app.module.ts rename to samples/excel/excel-library/operations-on-worksheets/src/app.module.ts diff --git a/samples/excel/excel-library/operations-on-worksheets/src/main.ts b/samples/excel/excel-library/operations-on-worksheets/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/excel/excel-library/operations-on-worksheets/src/main.ts +++ b/samples/excel/excel-library/operations-on-worksheets/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/excel/excel-library/overview/src/app/ExcelUtility.ts b/samples/excel/excel-library/overview/src/ExcelUtility.ts similarity index 100% rename from samples/excel/excel-library/overview/src/app/ExcelUtility.ts rename to samples/excel/excel-library/overview/src/ExcelUtility.ts diff --git a/samples/excel/excel-library/overview/src/app/app.component.html b/samples/excel/excel-library/overview/src/app.component.html similarity index 100% rename from samples/excel/excel-library/overview/src/app/app.component.html rename to samples/excel/excel-library/overview/src/app.component.html diff --git a/samples/excel/excel-library/overview/src/app/app.component.scss b/samples/excel/excel-library/overview/src/app.component.scss similarity index 100% rename from samples/excel/excel-library/overview/src/app/app.component.scss rename to samples/excel/excel-library/overview/src/app.component.scss diff --git a/samples/excel/excel-library/overview/src/app/app.component.ts b/samples/excel/excel-library/overview/src/app.component.ts similarity index 100% rename from samples/excel/excel-library/overview/src/app/app.component.ts rename to samples/excel/excel-library/overview/src/app.component.ts diff --git a/samples/excel/excel-library/overview/src/app/app.module.ts b/samples/excel/excel-library/overview/src/app.module.ts similarity index 100% rename from samples/excel/excel-library/overview/src/app/app.module.ts rename to samples/excel/excel-library/overview/src/app.module.ts diff --git a/samples/excel/excel-library/overview/src/main.ts b/samples/excel/excel-library/overview/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/excel/excel-library/overview/src/main.ts +++ b/samples/excel/excel-library/overview/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/excel/excel-library/working-with-cells/src/app/ExcelUtility.ts b/samples/excel/excel-library/working-with-cells/src/ExcelUtility.ts similarity index 100% rename from samples/excel/excel-library/working-with-cells/src/app/ExcelUtility.ts rename to samples/excel/excel-library/working-with-cells/src/ExcelUtility.ts diff --git a/samples/excel/excel-library/working-with-cells/src/app/app.component.html b/samples/excel/excel-library/working-with-cells/src/app.component.html similarity index 100% rename from samples/excel/excel-library/working-with-cells/src/app/app.component.html rename to samples/excel/excel-library/working-with-cells/src/app.component.html diff --git a/samples/excel/excel-library/working-with-cells/src/app/app.component.scss b/samples/excel/excel-library/working-with-cells/src/app.component.scss similarity index 100% rename from samples/excel/excel-library/working-with-cells/src/app/app.component.scss rename to samples/excel/excel-library/working-with-cells/src/app.component.scss diff --git a/samples/excel/excel-library/working-with-cells/src/app/app.component.ts b/samples/excel/excel-library/working-with-cells/src/app.component.ts similarity index 100% rename from samples/excel/excel-library/working-with-cells/src/app/app.component.ts rename to samples/excel/excel-library/working-with-cells/src/app.component.ts diff --git a/samples/excel/excel-library/working-with-cells/src/app/app.module.ts b/samples/excel/excel-library/working-with-cells/src/app.module.ts similarity index 100% rename from samples/excel/excel-library/working-with-cells/src/app/app.module.ts rename to samples/excel/excel-library/working-with-cells/src/app.module.ts diff --git a/samples/excel/excel-library/working-with-cells/src/main.ts b/samples/excel/excel-library/working-with-cells/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/excel/excel-library/working-with-cells/src/main.ts +++ b/samples/excel/excel-library/working-with-cells/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/excel/excel-library/working-with-charts/src/app/ExcelUtility.ts b/samples/excel/excel-library/working-with-charts/src/ExcelUtility.ts similarity index 100% rename from samples/excel/excel-library/working-with-charts/src/app/ExcelUtility.ts rename to samples/excel/excel-library/working-with-charts/src/ExcelUtility.ts diff --git a/samples/excel/excel-library/working-with-charts/src/app/app.component.html b/samples/excel/excel-library/working-with-charts/src/app.component.html similarity index 100% rename from samples/excel/excel-library/working-with-charts/src/app/app.component.html rename to samples/excel/excel-library/working-with-charts/src/app.component.html diff --git a/samples/excel/excel-library/working-with-charts/src/app/app.component.scss b/samples/excel/excel-library/working-with-charts/src/app.component.scss similarity index 100% rename from samples/excel/excel-library/working-with-charts/src/app/app.component.scss rename to samples/excel/excel-library/working-with-charts/src/app.component.scss diff --git a/samples/excel/excel-library/working-with-charts/src/app/app.component.ts b/samples/excel/excel-library/working-with-charts/src/app.component.ts similarity index 100% rename from samples/excel/excel-library/working-with-charts/src/app/app.component.ts rename to samples/excel/excel-library/working-with-charts/src/app.component.ts diff --git a/samples/excel/excel-library/working-with-charts/src/app/app.module.ts b/samples/excel/excel-library/working-with-charts/src/app.module.ts similarity index 100% rename from samples/excel/excel-library/working-with-charts/src/app/app.module.ts rename to samples/excel/excel-library/working-with-charts/src/app.module.ts diff --git a/samples/excel/excel-library/working-with-charts/src/main.ts b/samples/excel/excel-library/working-with-charts/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/excel/excel-library/working-with-charts/src/main.ts +++ b/samples/excel/excel-library/working-with-charts/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/excel/excel-library/working-with-sparklines/src/app/ExcelUtility.ts b/samples/excel/excel-library/working-with-sparklines/src/ExcelUtility.ts similarity index 100% rename from samples/excel/excel-library/working-with-sparklines/src/app/ExcelUtility.ts rename to samples/excel/excel-library/working-with-sparklines/src/ExcelUtility.ts diff --git a/samples/excel/excel-library/working-with-sparklines/src/app/app.component.html b/samples/excel/excel-library/working-with-sparklines/src/app.component.html similarity index 100% rename from samples/excel/excel-library/working-with-sparklines/src/app/app.component.html rename to samples/excel/excel-library/working-with-sparklines/src/app.component.html diff --git a/samples/excel/excel-library/working-with-sparklines/src/app/app.component.scss b/samples/excel/excel-library/working-with-sparklines/src/app.component.scss similarity index 100% rename from samples/excel/excel-library/working-with-sparklines/src/app/app.component.scss rename to samples/excel/excel-library/working-with-sparklines/src/app.component.scss diff --git a/samples/excel/excel-library/working-with-sparklines/src/app/app.component.ts b/samples/excel/excel-library/working-with-sparklines/src/app.component.ts similarity index 100% rename from samples/excel/excel-library/working-with-sparklines/src/app/app.component.ts rename to samples/excel/excel-library/working-with-sparklines/src/app.component.ts diff --git a/samples/excel/excel-library/working-with-sparklines/src/app/app.module.ts b/samples/excel/excel-library/working-with-sparklines/src/app.module.ts similarity index 100% rename from samples/excel/excel-library/working-with-sparklines/src/app/app.module.ts rename to samples/excel/excel-library/working-with-sparklines/src/app.module.ts diff --git a/samples/excel/excel-library/working-with-sparklines/src/main.ts b/samples/excel/excel-library/working-with-sparklines/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/excel/excel-library/working-with-sparklines/src/main.ts +++ b/samples/excel/excel-library/working-with-sparklines/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/excel/excel-library/working-with-tables/src/app/ExcelUtility.ts b/samples/excel/excel-library/working-with-tables/src/ExcelUtility.ts similarity index 100% rename from samples/excel/excel-library/working-with-tables/src/app/ExcelUtility.ts rename to samples/excel/excel-library/working-with-tables/src/ExcelUtility.ts diff --git a/samples/excel/excel-library/working-with-tables/src/app/app.component.html b/samples/excel/excel-library/working-with-tables/src/app.component.html similarity index 100% rename from samples/excel/excel-library/working-with-tables/src/app/app.component.html rename to samples/excel/excel-library/working-with-tables/src/app.component.html diff --git a/samples/excel/excel-library/working-with-tables/src/app/app.component.scss b/samples/excel/excel-library/working-with-tables/src/app.component.scss similarity index 100% rename from samples/excel/excel-library/working-with-tables/src/app/app.component.scss rename to samples/excel/excel-library/working-with-tables/src/app.component.scss diff --git a/samples/excel/excel-library/working-with-tables/src/app/app.component.ts b/samples/excel/excel-library/working-with-tables/src/app.component.ts similarity index 100% rename from samples/excel/excel-library/working-with-tables/src/app/app.component.ts rename to samples/excel/excel-library/working-with-tables/src/app.component.ts diff --git a/samples/excel/excel-library/working-with-tables/src/app/app.module.ts b/samples/excel/excel-library/working-with-tables/src/app.module.ts similarity index 100% rename from samples/excel/excel-library/working-with-tables/src/app/app.module.ts rename to samples/excel/excel-library/working-with-tables/src/app.module.ts diff --git a/samples/excel/excel-library/working-with-tables/src/main.ts b/samples/excel/excel-library/working-with-tables/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/excel/excel-library/working-with-tables/src/main.ts +++ b/samples/excel/excel-library/working-with-tables/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/excel/spreadsheet/activation/src/app/ExcelUtility.ts b/samples/excel/spreadsheet/activation/src/ExcelUtility.ts similarity index 100% rename from samples/excel/spreadsheet/activation/src/app/ExcelUtility.ts rename to samples/excel/spreadsheet/activation/src/ExcelUtility.ts diff --git a/samples/excel/spreadsheet/activation/src/app/app.component.html b/samples/excel/spreadsheet/activation/src/app.component.html similarity index 100% rename from samples/excel/spreadsheet/activation/src/app/app.component.html rename to samples/excel/spreadsheet/activation/src/app.component.html diff --git a/samples/excel/spreadsheet/activation/src/app/app.component.scss b/samples/excel/spreadsheet/activation/src/app.component.scss similarity index 100% rename from samples/excel/spreadsheet/activation/src/app/app.component.scss rename to samples/excel/spreadsheet/activation/src/app.component.scss diff --git a/samples/excel/spreadsheet/activation/src/app/app.component.ts b/samples/excel/spreadsheet/activation/src/app.component.ts similarity index 100% rename from samples/excel/spreadsheet/activation/src/app/app.component.ts rename to samples/excel/spreadsheet/activation/src/app.component.ts diff --git a/samples/excel/spreadsheet/activation/src/app/app.module.ts b/samples/excel/spreadsheet/activation/src/app.module.ts similarity index 100% rename from samples/excel/spreadsheet/activation/src/app/app.module.ts rename to samples/excel/spreadsheet/activation/src/app.module.ts diff --git a/samples/excel/spreadsheet/activation/src/main.ts b/samples/excel/spreadsheet/activation/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/excel/spreadsheet/activation/src/main.ts +++ b/samples/excel/spreadsheet/activation/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/excel/spreadsheet/adapter-chart/src/app/ExcelUtility.ts b/samples/excel/spreadsheet/adapter-chart/src/ExcelUtility.ts similarity index 100% rename from samples/excel/spreadsheet/adapter-chart/src/app/ExcelUtility.ts rename to samples/excel/spreadsheet/adapter-chart/src/ExcelUtility.ts diff --git a/samples/excel/spreadsheet/adapter-chart/src/app/app.component.html b/samples/excel/spreadsheet/adapter-chart/src/app.component.html similarity index 100% rename from samples/excel/spreadsheet/adapter-chart/src/app/app.component.html rename to samples/excel/spreadsheet/adapter-chart/src/app.component.html diff --git a/samples/excel/spreadsheet/adapter-chart/src/app/app.component.scss b/samples/excel/spreadsheet/adapter-chart/src/app.component.scss similarity index 100% rename from samples/excel/spreadsheet/adapter-chart/src/app/app.component.scss rename to samples/excel/spreadsheet/adapter-chart/src/app.component.scss diff --git a/samples/excel/spreadsheet/adapter-chart/src/app/app.component.ts b/samples/excel/spreadsheet/adapter-chart/src/app.component.ts similarity index 100% rename from samples/excel/spreadsheet/adapter-chart/src/app/app.component.ts rename to samples/excel/spreadsheet/adapter-chart/src/app.component.ts diff --git a/samples/excel/spreadsheet/adapter-chart/src/app/app.module.ts b/samples/excel/spreadsheet/adapter-chart/src/app.module.ts similarity index 100% rename from samples/excel/spreadsheet/adapter-chart/src/app/app.module.ts rename to samples/excel/spreadsheet/adapter-chart/src/app.module.ts diff --git a/samples/excel/spreadsheet/adapter-chart/src/main.ts b/samples/excel/spreadsheet/adapter-chart/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/excel/spreadsheet/adapter-chart/src/main.ts +++ b/samples/excel/spreadsheet/adapter-chart/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/excel/spreadsheet/adapter-combo/src/app/ExcelUtility.ts b/samples/excel/spreadsheet/adapter-combo/src/ExcelUtility.ts similarity index 100% rename from samples/excel/spreadsheet/adapter-combo/src/app/ExcelUtility.ts rename to samples/excel/spreadsheet/adapter-combo/src/ExcelUtility.ts diff --git a/samples/excel/spreadsheet/adapter-combo/src/app/app.component.html b/samples/excel/spreadsheet/adapter-combo/src/app.component.html similarity index 100% rename from samples/excel/spreadsheet/adapter-combo/src/app/app.component.html rename to samples/excel/spreadsheet/adapter-combo/src/app.component.html diff --git a/samples/excel/spreadsheet/adapter-combo/src/app/app.component.scss b/samples/excel/spreadsheet/adapter-combo/src/app.component.scss similarity index 100% rename from samples/excel/spreadsheet/adapter-combo/src/app/app.component.scss rename to samples/excel/spreadsheet/adapter-combo/src/app.component.scss diff --git a/samples/excel/spreadsheet/adapter-combo/src/app/app.component.ts b/samples/excel/spreadsheet/adapter-combo/src/app.component.ts similarity index 100% rename from samples/excel/spreadsheet/adapter-combo/src/app/app.component.ts rename to samples/excel/spreadsheet/adapter-combo/src/app.component.ts diff --git a/samples/excel/spreadsheet/adapter-combo/src/app/app.module.ts b/samples/excel/spreadsheet/adapter-combo/src/app.module.ts similarity index 100% rename from samples/excel/spreadsheet/adapter-combo/src/app/app.module.ts rename to samples/excel/spreadsheet/adapter-combo/src/app.module.ts diff --git a/samples/excel/spreadsheet/adapter-combo/src/main.ts b/samples/excel/spreadsheet/adapter-combo/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/excel/spreadsheet/adapter-combo/src/main.ts +++ b/samples/excel/spreadsheet/adapter-combo/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/excel/spreadsheet/clipboard/src/app/ExcelUtility.ts b/samples/excel/spreadsheet/clipboard/src/ExcelUtility.ts similarity index 100% rename from samples/excel/spreadsheet/clipboard/src/app/ExcelUtility.ts rename to samples/excel/spreadsheet/clipboard/src/ExcelUtility.ts diff --git a/samples/excel/spreadsheet/clipboard/src/app/app.component.html b/samples/excel/spreadsheet/clipboard/src/app.component.html similarity index 100% rename from samples/excel/spreadsheet/clipboard/src/app/app.component.html rename to samples/excel/spreadsheet/clipboard/src/app.component.html diff --git a/samples/excel/spreadsheet/clipboard/src/app/app.component.scss b/samples/excel/spreadsheet/clipboard/src/app.component.scss similarity index 100% rename from samples/excel/spreadsheet/clipboard/src/app/app.component.scss rename to samples/excel/spreadsheet/clipboard/src/app.component.scss diff --git a/samples/excel/spreadsheet/clipboard/src/app/app.component.ts b/samples/excel/spreadsheet/clipboard/src/app.component.ts similarity index 100% rename from samples/excel/spreadsheet/clipboard/src/app/app.component.ts rename to samples/excel/spreadsheet/clipboard/src/app.component.ts diff --git a/samples/excel/spreadsheet/clipboard/src/app/app.module.ts b/samples/excel/spreadsheet/clipboard/src/app.module.ts similarity index 100% rename from samples/excel/spreadsheet/clipboard/src/app/app.module.ts rename to samples/excel/spreadsheet/clipboard/src/app.module.ts diff --git a/samples/excel/spreadsheet/clipboard/src/main.ts b/samples/excel/spreadsheet/clipboard/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/excel/spreadsheet/clipboard/src/main.ts +++ b/samples/excel/spreadsheet/clipboard/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/excel/spreadsheet/commands/src/app/ExcelUtility.ts b/samples/excel/spreadsheet/commands/src/ExcelUtility.ts similarity index 100% rename from samples/excel/spreadsheet/commands/src/app/ExcelUtility.ts rename to samples/excel/spreadsheet/commands/src/ExcelUtility.ts diff --git a/samples/excel/spreadsheet/commands/src/app/app.component.html b/samples/excel/spreadsheet/commands/src/app.component.html similarity index 100% rename from samples/excel/spreadsheet/commands/src/app/app.component.html rename to samples/excel/spreadsheet/commands/src/app.component.html diff --git a/samples/excel/spreadsheet/commands/src/app/app.component.scss b/samples/excel/spreadsheet/commands/src/app.component.scss similarity index 100% rename from samples/excel/spreadsheet/commands/src/app/app.component.scss rename to samples/excel/spreadsheet/commands/src/app.component.scss diff --git a/samples/excel/spreadsheet/commands/src/app/app.component.ts b/samples/excel/spreadsheet/commands/src/app.component.ts similarity index 100% rename from samples/excel/spreadsheet/commands/src/app/app.component.ts rename to samples/excel/spreadsheet/commands/src/app.component.ts diff --git a/samples/excel/spreadsheet/commands/src/app/app.module.ts b/samples/excel/spreadsheet/commands/src/app.module.ts similarity index 100% rename from samples/excel/spreadsheet/commands/src/app/app.module.ts rename to samples/excel/spreadsheet/commands/src/app.module.ts diff --git a/samples/excel/spreadsheet/commands/src/main.ts b/samples/excel/spreadsheet/commands/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/excel/spreadsheet/commands/src/main.ts +++ b/samples/excel/spreadsheet/commands/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/excel/spreadsheet/conditional-formatting/src/app/ExcelUtility.ts b/samples/excel/spreadsheet/conditional-formatting/src/ExcelUtility.ts similarity index 100% rename from samples/excel/spreadsheet/conditional-formatting/src/app/ExcelUtility.ts rename to samples/excel/spreadsheet/conditional-formatting/src/ExcelUtility.ts diff --git a/samples/excel/spreadsheet/conditional-formatting/src/app/app.component.html b/samples/excel/spreadsheet/conditional-formatting/src/app.component.html similarity index 100% rename from samples/excel/spreadsheet/conditional-formatting/src/app/app.component.html rename to samples/excel/spreadsheet/conditional-formatting/src/app.component.html diff --git a/samples/excel/spreadsheet/conditional-formatting/src/app/app.component.scss b/samples/excel/spreadsheet/conditional-formatting/src/app.component.scss similarity index 100% rename from samples/excel/spreadsheet/conditional-formatting/src/app/app.component.scss rename to samples/excel/spreadsheet/conditional-formatting/src/app.component.scss diff --git a/samples/excel/spreadsheet/conditional-formatting/src/app/app.component.ts b/samples/excel/spreadsheet/conditional-formatting/src/app.component.ts similarity index 100% rename from samples/excel/spreadsheet/conditional-formatting/src/app/app.component.ts rename to samples/excel/spreadsheet/conditional-formatting/src/app.component.ts diff --git a/samples/excel/spreadsheet/conditional-formatting/src/app/app.module.ts b/samples/excel/spreadsheet/conditional-formatting/src/app.module.ts similarity index 100% rename from samples/excel/spreadsheet/conditional-formatting/src/app/app.module.ts rename to samples/excel/spreadsheet/conditional-formatting/src/app.module.ts diff --git a/samples/excel/spreadsheet/conditional-formatting/src/main.ts b/samples/excel/spreadsheet/conditional-formatting/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/excel/spreadsheet/conditional-formatting/src/main.ts +++ b/samples/excel/spreadsheet/conditional-formatting/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/excel/spreadsheet/config-options/src/app/ExcelUtility.ts b/samples/excel/spreadsheet/config-options/src/ExcelUtility.ts similarity index 100% rename from samples/excel/spreadsheet/config-options/src/app/ExcelUtility.ts rename to samples/excel/spreadsheet/config-options/src/ExcelUtility.ts diff --git a/samples/excel/spreadsheet/config-options/src/app/app.component.html b/samples/excel/spreadsheet/config-options/src/app.component.html similarity index 100% rename from samples/excel/spreadsheet/config-options/src/app/app.component.html rename to samples/excel/spreadsheet/config-options/src/app.component.html diff --git a/samples/excel/spreadsheet/config-options/src/app/app.component.scss b/samples/excel/spreadsheet/config-options/src/app.component.scss similarity index 100% rename from samples/excel/spreadsheet/config-options/src/app/app.component.scss rename to samples/excel/spreadsheet/config-options/src/app.component.scss diff --git a/samples/excel/spreadsheet/config-options/src/app/app.component.ts b/samples/excel/spreadsheet/config-options/src/app.component.ts similarity index 100% rename from samples/excel/spreadsheet/config-options/src/app/app.component.ts rename to samples/excel/spreadsheet/config-options/src/app.component.ts diff --git a/samples/excel/spreadsheet/config-options/src/app/app.module.ts b/samples/excel/spreadsheet/config-options/src/app.module.ts similarity index 100% rename from samples/excel/spreadsheet/config-options/src/app/app.module.ts rename to samples/excel/spreadsheet/config-options/src/app.module.ts diff --git a/samples/excel/spreadsheet/config-options/src/main.ts b/samples/excel/spreadsheet/config-options/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/excel/spreadsheet/config-options/src/main.ts +++ b/samples/excel/spreadsheet/config-options/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/excel/spreadsheet/data-validation/src/app/app.component.html b/samples/excel/spreadsheet/data-validation/src/app.component.html similarity index 100% rename from samples/excel/spreadsheet/data-validation/src/app/app.component.html rename to samples/excel/spreadsheet/data-validation/src/app.component.html diff --git a/samples/excel/spreadsheet/data-validation/src/app/app.component.scss b/samples/excel/spreadsheet/data-validation/src/app.component.scss similarity index 100% rename from samples/excel/spreadsheet/data-validation/src/app/app.component.scss rename to samples/excel/spreadsheet/data-validation/src/app.component.scss diff --git a/samples/excel/spreadsheet/data-validation/src/app/app.component.ts b/samples/excel/spreadsheet/data-validation/src/app.component.ts similarity index 100% rename from samples/excel/spreadsheet/data-validation/src/app/app.component.ts rename to samples/excel/spreadsheet/data-validation/src/app.component.ts diff --git a/samples/excel/spreadsheet/data-validation/src/app/app.module.ts b/samples/excel/spreadsheet/data-validation/src/app.module.ts similarity index 100% rename from samples/excel/spreadsheet/data-validation/src/app/app.module.ts rename to samples/excel/spreadsheet/data-validation/src/app.module.ts diff --git a/samples/excel/spreadsheet/data-validation/src/main.ts b/samples/excel/spreadsheet/data-validation/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/excel/spreadsheet/data-validation/src/main.ts +++ b/samples/excel/spreadsheet/data-validation/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/excel/spreadsheet/hyperlinks/src/app/ExcelUtility.ts b/samples/excel/spreadsheet/hyperlinks/src/ExcelUtility.ts similarity index 100% rename from samples/excel/spreadsheet/hyperlinks/src/app/ExcelUtility.ts rename to samples/excel/spreadsheet/hyperlinks/src/ExcelUtility.ts diff --git a/samples/excel/spreadsheet/hyperlinks/src/app/app.component.html b/samples/excel/spreadsheet/hyperlinks/src/app.component.html similarity index 100% rename from samples/excel/spreadsheet/hyperlinks/src/app/app.component.html rename to samples/excel/spreadsheet/hyperlinks/src/app.component.html diff --git a/samples/excel/spreadsheet/hyperlinks/src/app/app.component.scss b/samples/excel/spreadsheet/hyperlinks/src/app.component.scss similarity index 100% rename from samples/excel/spreadsheet/hyperlinks/src/app/app.component.scss rename to samples/excel/spreadsheet/hyperlinks/src/app.component.scss diff --git a/samples/excel/spreadsheet/hyperlinks/src/app/app.component.ts b/samples/excel/spreadsheet/hyperlinks/src/app.component.ts similarity index 100% rename from samples/excel/spreadsheet/hyperlinks/src/app/app.component.ts rename to samples/excel/spreadsheet/hyperlinks/src/app.component.ts diff --git a/samples/excel/spreadsheet/hyperlinks/src/app/app.module.ts b/samples/excel/spreadsheet/hyperlinks/src/app.module.ts similarity index 100% rename from samples/excel/spreadsheet/hyperlinks/src/app/app.module.ts rename to samples/excel/spreadsheet/hyperlinks/src/app.module.ts diff --git a/samples/excel/spreadsheet/hyperlinks/src/main.ts b/samples/excel/spreadsheet/hyperlinks/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/excel/spreadsheet/hyperlinks/src/main.ts +++ b/samples/excel/spreadsheet/hyperlinks/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/excel/spreadsheet/overview/src/app/ExcelUtility.ts b/samples/excel/spreadsheet/overview/src/ExcelUtility.ts similarity index 100% rename from samples/excel/spreadsheet/overview/src/app/ExcelUtility.ts rename to samples/excel/spreadsheet/overview/src/ExcelUtility.ts diff --git a/samples/excel/spreadsheet/overview/src/app/app.component.html b/samples/excel/spreadsheet/overview/src/app.component.html similarity index 100% rename from samples/excel/spreadsheet/overview/src/app/app.component.html rename to samples/excel/spreadsheet/overview/src/app.component.html diff --git a/samples/excel/spreadsheet/overview/src/app/app.component.scss b/samples/excel/spreadsheet/overview/src/app.component.scss similarity index 100% rename from samples/excel/spreadsheet/overview/src/app/app.component.scss rename to samples/excel/spreadsheet/overview/src/app.component.scss diff --git a/samples/excel/spreadsheet/overview/src/app/app.component.ts b/samples/excel/spreadsheet/overview/src/app.component.ts similarity index 100% rename from samples/excel/spreadsheet/overview/src/app/app.component.ts rename to samples/excel/spreadsheet/overview/src/app.component.ts diff --git a/samples/excel/spreadsheet/overview/src/app/app.module.ts b/samples/excel/spreadsheet/overview/src/app.module.ts similarity index 100% rename from samples/excel/spreadsheet/overview/src/app/app.module.ts rename to samples/excel/spreadsheet/overview/src/app.module.ts diff --git a/samples/excel/spreadsheet/overview/src/main.ts b/samples/excel/spreadsheet/overview/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/excel/spreadsheet/overview/src/main.ts +++ b/samples/excel/spreadsheet/overview/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/bullet-graph/animation/src/app/app.component.html b/samples/gauges/bullet-graph/animation/src/app.component.html similarity index 100% rename from samples/gauges/bullet-graph/animation/src/app/app.component.html rename to samples/gauges/bullet-graph/animation/src/app.component.html diff --git a/samples/gauges/bullet-graph/animation/src/app/app.component.scss b/samples/gauges/bullet-graph/animation/src/app.component.scss similarity index 100% rename from samples/gauges/bullet-graph/animation/src/app/app.component.scss rename to samples/gauges/bullet-graph/animation/src/app.component.scss diff --git a/samples/gauges/bullet-graph/animation/src/app/app.component.ts b/samples/gauges/bullet-graph/animation/src/app.component.ts similarity index 100% rename from samples/gauges/bullet-graph/animation/src/app/app.component.ts rename to samples/gauges/bullet-graph/animation/src/app.component.ts diff --git a/samples/gauges/bullet-graph/animation/src/app/app.module.ts b/samples/gauges/bullet-graph/animation/src/app.module.ts similarity index 100% rename from samples/gauges/bullet-graph/animation/src/app/app.module.ts rename to samples/gauges/bullet-graph/animation/src/app.module.ts diff --git a/samples/gauges/bullet-graph/animation/src/main.ts b/samples/gauges/bullet-graph/animation/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/bullet-graph/animation/src/main.ts +++ b/samples/gauges/bullet-graph/animation/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/bullet-graph/background/src/app/app.component.html b/samples/gauges/bullet-graph/background/src/app.component.html similarity index 100% rename from samples/gauges/bullet-graph/background/src/app/app.component.html rename to samples/gauges/bullet-graph/background/src/app.component.html diff --git a/samples/gauges/bullet-graph/background/src/app/app.component.scss b/samples/gauges/bullet-graph/background/src/app.component.scss similarity index 100% rename from samples/gauges/bullet-graph/background/src/app/app.component.scss rename to samples/gauges/bullet-graph/background/src/app.component.scss diff --git a/samples/gauges/bullet-graph/background/src/app/app.component.ts b/samples/gauges/bullet-graph/background/src/app.component.ts similarity index 100% rename from samples/gauges/bullet-graph/background/src/app/app.component.ts rename to samples/gauges/bullet-graph/background/src/app.component.ts diff --git a/samples/gauges/bullet-graph/background/src/app/app.module.ts b/samples/gauges/bullet-graph/background/src/app.module.ts similarity index 100% rename from samples/gauges/bullet-graph/background/src/app/app.module.ts rename to samples/gauges/bullet-graph/background/src/app.module.ts diff --git a/samples/gauges/bullet-graph/background/src/main.ts b/samples/gauges/bullet-graph/background/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/bullet-graph/background/src/main.ts +++ b/samples/gauges/bullet-graph/background/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/bullet-graph/highlight-needle/src/app/app.component.html b/samples/gauges/bullet-graph/highlight-needle/src/app.component.html similarity index 100% rename from samples/gauges/bullet-graph/highlight-needle/src/app/app.component.html rename to samples/gauges/bullet-graph/highlight-needle/src/app.component.html diff --git a/samples/gauges/bullet-graph/highlight-needle/src/app/app.component.scss b/samples/gauges/bullet-graph/highlight-needle/src/app.component.scss similarity index 100% rename from samples/gauges/bullet-graph/highlight-needle/src/app/app.component.scss rename to samples/gauges/bullet-graph/highlight-needle/src/app.component.scss diff --git a/samples/gauges/bullet-graph/highlight-needle/src/app/app.component.ts b/samples/gauges/bullet-graph/highlight-needle/src/app.component.ts similarity index 100% rename from samples/gauges/bullet-graph/highlight-needle/src/app/app.component.ts rename to samples/gauges/bullet-graph/highlight-needle/src/app.component.ts diff --git a/samples/gauges/bullet-graph/highlight-needle/src/app/app.module.ts b/samples/gauges/bullet-graph/highlight-needle/src/app.module.ts similarity index 100% rename from samples/gauges/bullet-graph/highlight-needle/src/app/app.module.ts rename to samples/gauges/bullet-graph/highlight-needle/src/app.module.ts diff --git a/samples/gauges/bullet-graph/highlight-needle/src/main.ts b/samples/gauges/bullet-graph/highlight-needle/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/bullet-graph/highlight-needle/src/main.ts +++ b/samples/gauges/bullet-graph/highlight-needle/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/bullet-graph/labels/src/app/app.component.html b/samples/gauges/bullet-graph/labels/src/app.component.html similarity index 100% rename from samples/gauges/bullet-graph/labels/src/app/app.component.html rename to samples/gauges/bullet-graph/labels/src/app.component.html diff --git a/samples/gauges/bullet-graph/labels/src/app/app.component.scss b/samples/gauges/bullet-graph/labels/src/app.component.scss similarity index 100% rename from samples/gauges/bullet-graph/labels/src/app/app.component.scss rename to samples/gauges/bullet-graph/labels/src/app.component.scss diff --git a/samples/gauges/bullet-graph/labels/src/app/app.component.ts b/samples/gauges/bullet-graph/labels/src/app.component.ts similarity index 100% rename from samples/gauges/bullet-graph/labels/src/app/app.component.ts rename to samples/gauges/bullet-graph/labels/src/app.component.ts diff --git a/samples/gauges/bullet-graph/labels/src/app/app.module.ts b/samples/gauges/bullet-graph/labels/src/app.module.ts similarity index 100% rename from samples/gauges/bullet-graph/labels/src/app/app.module.ts rename to samples/gauges/bullet-graph/labels/src/app.module.ts diff --git a/samples/gauges/bullet-graph/labels/src/main.ts b/samples/gauges/bullet-graph/labels/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/bullet-graph/labels/src/main.ts +++ b/samples/gauges/bullet-graph/labels/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/bullet-graph/measures/src/app/app.component.html b/samples/gauges/bullet-graph/measures/src/app.component.html similarity index 100% rename from samples/gauges/bullet-graph/measures/src/app/app.component.html rename to samples/gauges/bullet-graph/measures/src/app.component.html diff --git a/samples/gauges/bullet-graph/measures/src/app/app.component.scss b/samples/gauges/bullet-graph/measures/src/app.component.scss similarity index 100% rename from samples/gauges/bullet-graph/measures/src/app/app.component.scss rename to samples/gauges/bullet-graph/measures/src/app.component.scss diff --git a/samples/gauges/bullet-graph/measures/src/app/app.component.ts b/samples/gauges/bullet-graph/measures/src/app.component.ts similarity index 100% rename from samples/gauges/bullet-graph/measures/src/app/app.component.ts rename to samples/gauges/bullet-graph/measures/src/app.component.ts diff --git a/samples/gauges/bullet-graph/measures/src/app/app.module.ts b/samples/gauges/bullet-graph/measures/src/app.module.ts similarity index 100% rename from samples/gauges/bullet-graph/measures/src/app/app.module.ts rename to samples/gauges/bullet-graph/measures/src/app.module.ts diff --git a/samples/gauges/bullet-graph/measures/src/main.ts b/samples/gauges/bullet-graph/measures/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/bullet-graph/measures/src/main.ts +++ b/samples/gauges/bullet-graph/measures/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/bullet-graph/ranges/src/app/app.component.html b/samples/gauges/bullet-graph/ranges/src/app.component.html similarity index 100% rename from samples/gauges/bullet-graph/ranges/src/app/app.component.html rename to samples/gauges/bullet-graph/ranges/src/app.component.html diff --git a/samples/gauges/bullet-graph/ranges/src/app/app.component.scss b/samples/gauges/bullet-graph/ranges/src/app.component.scss similarity index 100% rename from samples/gauges/bullet-graph/ranges/src/app/app.component.scss rename to samples/gauges/bullet-graph/ranges/src/app.component.scss diff --git a/samples/gauges/bullet-graph/ranges/src/app/app.component.ts b/samples/gauges/bullet-graph/ranges/src/app.component.ts similarity index 100% rename from samples/gauges/bullet-graph/ranges/src/app/app.component.ts rename to samples/gauges/bullet-graph/ranges/src/app.component.ts diff --git a/samples/gauges/bullet-graph/ranges/src/app/app.module.ts b/samples/gauges/bullet-graph/ranges/src/app.module.ts similarity index 100% rename from samples/gauges/bullet-graph/ranges/src/app/app.module.ts rename to samples/gauges/bullet-graph/ranges/src/app.module.ts diff --git a/samples/gauges/bullet-graph/ranges/src/main.ts b/samples/gauges/bullet-graph/ranges/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/bullet-graph/ranges/src/main.ts +++ b/samples/gauges/bullet-graph/ranges/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/bullet-graph/scale/src/app/app.component.html b/samples/gauges/bullet-graph/scale/src/app.component.html similarity index 100% rename from samples/gauges/bullet-graph/scale/src/app/app.component.html rename to samples/gauges/bullet-graph/scale/src/app.component.html diff --git a/samples/gauges/bullet-graph/scale/src/app/app.component.scss b/samples/gauges/bullet-graph/scale/src/app.component.scss similarity index 100% rename from samples/gauges/bullet-graph/scale/src/app/app.component.scss rename to samples/gauges/bullet-graph/scale/src/app.component.scss diff --git a/samples/gauges/bullet-graph/scale/src/app/app.component.ts b/samples/gauges/bullet-graph/scale/src/app.component.ts similarity index 100% rename from samples/gauges/bullet-graph/scale/src/app/app.component.ts rename to samples/gauges/bullet-graph/scale/src/app.component.ts diff --git a/samples/gauges/bullet-graph/scale/src/app/app.module.ts b/samples/gauges/bullet-graph/scale/src/app.module.ts similarity index 100% rename from samples/gauges/bullet-graph/scale/src/app/app.module.ts rename to samples/gauges/bullet-graph/scale/src/app.module.ts diff --git a/samples/gauges/bullet-graph/scale/src/main.ts b/samples/gauges/bullet-graph/scale/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/bullet-graph/scale/src/main.ts +++ b/samples/gauges/bullet-graph/scale/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/bullet-graph/tickmarks/src/app/app.component.html b/samples/gauges/bullet-graph/tickmarks/src/app.component.html similarity index 100% rename from samples/gauges/bullet-graph/tickmarks/src/app/app.component.html rename to samples/gauges/bullet-graph/tickmarks/src/app.component.html diff --git a/samples/gauges/bullet-graph/tickmarks/src/app/app.component.scss b/samples/gauges/bullet-graph/tickmarks/src/app.component.scss similarity index 100% rename from samples/gauges/bullet-graph/tickmarks/src/app/app.component.scss rename to samples/gauges/bullet-graph/tickmarks/src/app.component.scss diff --git a/samples/gauges/bullet-graph/tickmarks/src/app/app.component.ts b/samples/gauges/bullet-graph/tickmarks/src/app.component.ts similarity index 100% rename from samples/gauges/bullet-graph/tickmarks/src/app/app.component.ts rename to samples/gauges/bullet-graph/tickmarks/src/app.component.ts diff --git a/samples/gauges/bullet-graph/tickmarks/src/app/app.module.ts b/samples/gauges/bullet-graph/tickmarks/src/app.module.ts similarity index 100% rename from samples/gauges/bullet-graph/tickmarks/src/app/app.module.ts rename to samples/gauges/bullet-graph/tickmarks/src/app.module.ts diff --git a/samples/gauges/bullet-graph/tickmarks/src/main.ts b/samples/gauges/bullet-graph/tickmarks/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/bullet-graph/tickmarks/src/main.ts +++ b/samples/gauges/bullet-graph/tickmarks/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/linear-gauge/animation/src/app/app.component.html b/samples/gauges/linear-gauge/animation/src/app.component.html similarity index 100% rename from samples/gauges/linear-gauge/animation/src/app/app.component.html rename to samples/gauges/linear-gauge/animation/src/app.component.html diff --git a/samples/gauges/linear-gauge/animation/src/app/app.component.scss b/samples/gauges/linear-gauge/animation/src/app.component.scss similarity index 100% rename from samples/gauges/linear-gauge/animation/src/app/app.component.scss rename to samples/gauges/linear-gauge/animation/src/app.component.scss diff --git a/samples/gauges/linear-gauge/animation/src/app/app.component.ts b/samples/gauges/linear-gauge/animation/src/app.component.ts similarity index 100% rename from samples/gauges/linear-gauge/animation/src/app/app.component.ts rename to samples/gauges/linear-gauge/animation/src/app.component.ts diff --git a/samples/gauges/linear-gauge/animation/src/app/app.module.ts b/samples/gauges/linear-gauge/animation/src/app.module.ts similarity index 100% rename from samples/gauges/linear-gauge/animation/src/app/app.module.ts rename to samples/gauges/linear-gauge/animation/src/app.module.ts diff --git a/samples/gauges/linear-gauge/animation/src/main.ts b/samples/gauges/linear-gauge/animation/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/linear-gauge/animation/src/main.ts +++ b/samples/gauges/linear-gauge/animation/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/linear-gauge/backing/src/app/app.component.html b/samples/gauges/linear-gauge/backing/src/app.component.html similarity index 100% rename from samples/gauges/linear-gauge/backing/src/app/app.component.html rename to samples/gauges/linear-gauge/backing/src/app.component.html diff --git a/samples/gauges/linear-gauge/backing/src/app/app.component.scss b/samples/gauges/linear-gauge/backing/src/app.component.scss similarity index 100% rename from samples/gauges/linear-gauge/backing/src/app/app.component.scss rename to samples/gauges/linear-gauge/backing/src/app.component.scss diff --git a/samples/gauges/linear-gauge/backing/src/app/app.component.ts b/samples/gauges/linear-gauge/backing/src/app.component.ts similarity index 100% rename from samples/gauges/linear-gauge/backing/src/app/app.component.ts rename to samples/gauges/linear-gauge/backing/src/app.component.ts diff --git a/samples/gauges/linear-gauge/backing/src/app/app.module.ts b/samples/gauges/linear-gauge/backing/src/app.module.ts similarity index 100% rename from samples/gauges/linear-gauge/backing/src/app/app.module.ts rename to samples/gauges/linear-gauge/backing/src/app.module.ts diff --git a/samples/gauges/linear-gauge/backing/src/main.ts b/samples/gauges/linear-gauge/backing/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/linear-gauge/backing/src/main.ts +++ b/samples/gauges/linear-gauge/backing/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/linear-gauge/highlight-needle/src/app/app.component.html b/samples/gauges/linear-gauge/highlight-needle/src/app.component.html similarity index 100% rename from samples/gauges/linear-gauge/highlight-needle/src/app/app.component.html rename to samples/gauges/linear-gauge/highlight-needle/src/app.component.html diff --git a/samples/gauges/linear-gauge/highlight-needle/src/app/app.component.scss b/samples/gauges/linear-gauge/highlight-needle/src/app.component.scss similarity index 100% rename from samples/gauges/linear-gauge/highlight-needle/src/app/app.component.scss rename to samples/gauges/linear-gauge/highlight-needle/src/app.component.scss diff --git a/samples/gauges/linear-gauge/highlight-needle/src/app/app.component.ts b/samples/gauges/linear-gauge/highlight-needle/src/app.component.ts similarity index 100% rename from samples/gauges/linear-gauge/highlight-needle/src/app/app.component.ts rename to samples/gauges/linear-gauge/highlight-needle/src/app.component.ts diff --git a/samples/gauges/linear-gauge/highlight-needle/src/app/app.module.ts b/samples/gauges/linear-gauge/highlight-needle/src/app.module.ts similarity index 100% rename from samples/gauges/linear-gauge/highlight-needle/src/app/app.module.ts rename to samples/gauges/linear-gauge/highlight-needle/src/app.module.ts diff --git a/samples/gauges/linear-gauge/highlight-needle/src/main.ts b/samples/gauges/linear-gauge/highlight-needle/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/linear-gauge/highlight-needle/src/main.ts +++ b/samples/gauges/linear-gauge/highlight-needle/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/linear-gauge/labels/src/app/app.component.html b/samples/gauges/linear-gauge/labels/src/app.component.html similarity index 100% rename from samples/gauges/linear-gauge/labels/src/app/app.component.html rename to samples/gauges/linear-gauge/labels/src/app.component.html diff --git a/samples/gauges/linear-gauge/labels/src/app/app.component.scss b/samples/gauges/linear-gauge/labels/src/app.component.scss similarity index 100% rename from samples/gauges/linear-gauge/labels/src/app/app.component.scss rename to samples/gauges/linear-gauge/labels/src/app.component.scss diff --git a/samples/gauges/linear-gauge/labels/src/app/app.component.ts b/samples/gauges/linear-gauge/labels/src/app.component.ts similarity index 100% rename from samples/gauges/linear-gauge/labels/src/app/app.component.ts rename to samples/gauges/linear-gauge/labels/src/app.component.ts diff --git a/samples/gauges/linear-gauge/labels/src/app/app.module.ts b/samples/gauges/linear-gauge/labels/src/app.module.ts similarity index 100% rename from samples/gauges/linear-gauge/labels/src/app/app.module.ts rename to samples/gauges/linear-gauge/labels/src/app.module.ts diff --git a/samples/gauges/linear-gauge/labels/src/main.ts b/samples/gauges/linear-gauge/labels/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/linear-gauge/labels/src/main.ts +++ b/samples/gauges/linear-gauge/labels/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/linear-gauge/needle/src/app/app.component.html b/samples/gauges/linear-gauge/needle/src/app.component.html similarity index 100% rename from samples/gauges/linear-gauge/needle/src/app/app.component.html rename to samples/gauges/linear-gauge/needle/src/app.component.html diff --git a/samples/gauges/linear-gauge/needle/src/app/app.component.scss b/samples/gauges/linear-gauge/needle/src/app.component.scss similarity index 100% rename from samples/gauges/linear-gauge/needle/src/app/app.component.scss rename to samples/gauges/linear-gauge/needle/src/app.component.scss diff --git a/samples/gauges/linear-gauge/needle/src/app/app.component.ts b/samples/gauges/linear-gauge/needle/src/app.component.ts similarity index 100% rename from samples/gauges/linear-gauge/needle/src/app/app.component.ts rename to samples/gauges/linear-gauge/needle/src/app.component.ts diff --git a/samples/gauges/linear-gauge/needle/src/app/app.module.ts b/samples/gauges/linear-gauge/needle/src/app.module.ts similarity index 100% rename from samples/gauges/linear-gauge/needle/src/app/app.module.ts rename to samples/gauges/linear-gauge/needle/src/app.module.ts diff --git a/samples/gauges/linear-gauge/needle/src/main.ts b/samples/gauges/linear-gauge/needle/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/linear-gauge/needle/src/main.ts +++ b/samples/gauges/linear-gauge/needle/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/linear-gauge/ranges/src/app/app.component.html b/samples/gauges/linear-gauge/ranges/src/app.component.html similarity index 100% rename from samples/gauges/linear-gauge/ranges/src/app/app.component.html rename to samples/gauges/linear-gauge/ranges/src/app.component.html diff --git a/samples/gauges/linear-gauge/ranges/src/app/app.component.scss b/samples/gauges/linear-gauge/ranges/src/app.component.scss similarity index 100% rename from samples/gauges/linear-gauge/ranges/src/app/app.component.scss rename to samples/gauges/linear-gauge/ranges/src/app.component.scss diff --git a/samples/gauges/linear-gauge/ranges/src/app/app.component.ts b/samples/gauges/linear-gauge/ranges/src/app.component.ts similarity index 100% rename from samples/gauges/linear-gauge/ranges/src/app/app.component.ts rename to samples/gauges/linear-gauge/ranges/src/app.component.ts diff --git a/samples/gauges/linear-gauge/ranges/src/app/app.module.ts b/samples/gauges/linear-gauge/ranges/src/app.module.ts similarity index 100% rename from samples/gauges/linear-gauge/ranges/src/app/app.module.ts rename to samples/gauges/linear-gauge/ranges/src/app.module.ts diff --git a/samples/gauges/linear-gauge/ranges/src/main.ts b/samples/gauges/linear-gauge/ranges/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/linear-gauge/ranges/src/main.ts +++ b/samples/gauges/linear-gauge/ranges/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/linear-gauge/scale/src/app/app.component.html b/samples/gauges/linear-gauge/scale/src/app.component.html similarity index 100% rename from samples/gauges/linear-gauge/scale/src/app/app.component.html rename to samples/gauges/linear-gauge/scale/src/app.component.html diff --git a/samples/gauges/linear-gauge/scale/src/app/app.component.scss b/samples/gauges/linear-gauge/scale/src/app.component.scss similarity index 100% rename from samples/gauges/linear-gauge/scale/src/app/app.component.scss rename to samples/gauges/linear-gauge/scale/src/app.component.scss diff --git a/samples/gauges/linear-gauge/scale/src/app/app.component.ts b/samples/gauges/linear-gauge/scale/src/app.component.ts similarity index 100% rename from samples/gauges/linear-gauge/scale/src/app/app.component.ts rename to samples/gauges/linear-gauge/scale/src/app.component.ts diff --git a/samples/gauges/linear-gauge/scale/src/app/app.module.ts b/samples/gauges/linear-gauge/scale/src/app.module.ts similarity index 100% rename from samples/gauges/linear-gauge/scale/src/app/app.module.ts rename to samples/gauges/linear-gauge/scale/src/app.module.ts diff --git a/samples/gauges/linear-gauge/scale/src/main.ts b/samples/gauges/linear-gauge/scale/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/linear-gauge/scale/src/main.ts +++ b/samples/gauges/linear-gauge/scale/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/linear-gauge/tickmarks/src/app/app.component.html b/samples/gauges/linear-gauge/tickmarks/src/app.component.html similarity index 100% rename from samples/gauges/linear-gauge/tickmarks/src/app/app.component.html rename to samples/gauges/linear-gauge/tickmarks/src/app.component.html diff --git a/samples/gauges/linear-gauge/tickmarks/src/app/app.component.scss b/samples/gauges/linear-gauge/tickmarks/src/app.component.scss similarity index 100% rename from samples/gauges/linear-gauge/tickmarks/src/app/app.component.scss rename to samples/gauges/linear-gauge/tickmarks/src/app.component.scss diff --git a/samples/gauges/linear-gauge/tickmarks/src/app/app.component.ts b/samples/gauges/linear-gauge/tickmarks/src/app.component.ts similarity index 100% rename from samples/gauges/linear-gauge/tickmarks/src/app/app.component.ts rename to samples/gauges/linear-gauge/tickmarks/src/app.component.ts diff --git a/samples/gauges/linear-gauge/tickmarks/src/app/app.module.ts b/samples/gauges/linear-gauge/tickmarks/src/app.module.ts similarity index 100% rename from samples/gauges/linear-gauge/tickmarks/src/app/app.module.ts rename to samples/gauges/linear-gauge/tickmarks/src/app.module.ts diff --git a/samples/gauges/linear-gauge/tickmarks/src/main.ts b/samples/gauges/linear-gauge/tickmarks/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/linear-gauge/tickmarks/src/main.ts +++ b/samples/gauges/linear-gauge/tickmarks/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/radial-gauge/animation/src/app/app.component.html b/samples/gauges/radial-gauge/animation/src/app.component.html similarity index 100% rename from samples/gauges/radial-gauge/animation/src/app/app.component.html rename to samples/gauges/radial-gauge/animation/src/app.component.html diff --git a/samples/gauges/radial-gauge/animation/src/app/app.component.scss b/samples/gauges/radial-gauge/animation/src/app.component.scss similarity index 100% rename from samples/gauges/radial-gauge/animation/src/app/app.component.scss rename to samples/gauges/radial-gauge/animation/src/app.component.scss diff --git a/samples/gauges/radial-gauge/animation/src/app/app.component.ts b/samples/gauges/radial-gauge/animation/src/app.component.ts similarity index 100% rename from samples/gauges/radial-gauge/animation/src/app/app.component.ts rename to samples/gauges/radial-gauge/animation/src/app.component.ts diff --git a/samples/gauges/radial-gauge/animation/src/app/app.module.ts b/samples/gauges/radial-gauge/animation/src/app.module.ts similarity index 100% rename from samples/gauges/radial-gauge/animation/src/app/app.module.ts rename to samples/gauges/radial-gauge/animation/src/app.module.ts diff --git a/samples/gauges/radial-gauge/animation/src/main.ts b/samples/gauges/radial-gauge/animation/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/radial-gauge/animation/src/main.ts +++ b/samples/gauges/radial-gauge/animation/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/radial-gauge/backing/src/app/app.component.html b/samples/gauges/radial-gauge/backing/src/app.component.html similarity index 100% rename from samples/gauges/radial-gauge/backing/src/app/app.component.html rename to samples/gauges/radial-gauge/backing/src/app.component.html diff --git a/samples/gauges/radial-gauge/backing/src/app/app.component.scss b/samples/gauges/radial-gauge/backing/src/app.component.scss similarity index 100% rename from samples/gauges/radial-gauge/backing/src/app/app.component.scss rename to samples/gauges/radial-gauge/backing/src/app.component.scss diff --git a/samples/gauges/radial-gauge/backing/src/app/app.component.ts b/samples/gauges/radial-gauge/backing/src/app.component.ts similarity index 100% rename from samples/gauges/radial-gauge/backing/src/app/app.component.ts rename to samples/gauges/radial-gauge/backing/src/app.component.ts diff --git a/samples/gauges/radial-gauge/backing/src/app/app.module.ts b/samples/gauges/radial-gauge/backing/src/app.module.ts similarity index 100% rename from samples/gauges/radial-gauge/backing/src/app/app.module.ts rename to samples/gauges/radial-gauge/backing/src/app.module.ts diff --git a/samples/gauges/radial-gauge/backing/src/main.ts b/samples/gauges/radial-gauge/backing/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/radial-gauge/backing/src/main.ts +++ b/samples/gauges/radial-gauge/backing/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/radial-gauge/highlight-needle/src/app/app.component.html b/samples/gauges/radial-gauge/highlight-needle/src/app.component.html similarity index 100% rename from samples/gauges/radial-gauge/highlight-needle/src/app/app.component.html rename to samples/gauges/radial-gauge/highlight-needle/src/app.component.html diff --git a/samples/gauges/radial-gauge/highlight-needle/src/app/app.component.scss b/samples/gauges/radial-gauge/highlight-needle/src/app.component.scss similarity index 100% rename from samples/gauges/radial-gauge/highlight-needle/src/app/app.component.scss rename to samples/gauges/radial-gauge/highlight-needle/src/app.component.scss diff --git a/samples/gauges/radial-gauge/highlight-needle/src/app/app.component.ts b/samples/gauges/radial-gauge/highlight-needle/src/app.component.ts similarity index 100% rename from samples/gauges/radial-gauge/highlight-needle/src/app/app.component.ts rename to samples/gauges/radial-gauge/highlight-needle/src/app.component.ts diff --git a/samples/gauges/radial-gauge/highlight-needle/src/app/app.module.ts b/samples/gauges/radial-gauge/highlight-needle/src/app.module.ts similarity index 100% rename from samples/gauges/radial-gauge/highlight-needle/src/app/app.module.ts rename to samples/gauges/radial-gauge/highlight-needle/src/app.module.ts diff --git a/samples/gauges/radial-gauge/highlight-needle/src/main.ts b/samples/gauges/radial-gauge/highlight-needle/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/radial-gauge/highlight-needle/src/main.ts +++ b/samples/gauges/radial-gauge/highlight-needle/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/radial-gauge/labels/src/app/app.component.html b/samples/gauges/radial-gauge/labels/src/app.component.html similarity index 100% rename from samples/gauges/radial-gauge/labels/src/app/app.component.html rename to samples/gauges/radial-gauge/labels/src/app.component.html diff --git a/samples/gauges/radial-gauge/labels/src/app/app.component.scss b/samples/gauges/radial-gauge/labels/src/app.component.scss similarity index 100% rename from samples/gauges/radial-gauge/labels/src/app/app.component.scss rename to samples/gauges/radial-gauge/labels/src/app.component.scss diff --git a/samples/gauges/radial-gauge/labels/src/app/app.component.ts b/samples/gauges/radial-gauge/labels/src/app.component.ts similarity index 100% rename from samples/gauges/radial-gauge/labels/src/app/app.component.ts rename to samples/gauges/radial-gauge/labels/src/app.component.ts diff --git a/samples/gauges/radial-gauge/labels/src/app/app.module.ts b/samples/gauges/radial-gauge/labels/src/app.module.ts similarity index 100% rename from samples/gauges/radial-gauge/labels/src/app/app.module.ts rename to samples/gauges/radial-gauge/labels/src/app.module.ts diff --git a/samples/gauges/radial-gauge/labels/src/main.ts b/samples/gauges/radial-gauge/labels/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/radial-gauge/labels/src/main.ts +++ b/samples/gauges/radial-gauge/labels/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/radial-gauge/needle/src/app/app.component.html b/samples/gauges/radial-gauge/needle/src/app.component.html similarity index 100% rename from samples/gauges/radial-gauge/needle/src/app/app.component.html rename to samples/gauges/radial-gauge/needle/src/app.component.html diff --git a/samples/gauges/radial-gauge/needle/src/app/app.component.scss b/samples/gauges/radial-gauge/needle/src/app.component.scss similarity index 100% rename from samples/gauges/radial-gauge/needle/src/app/app.component.scss rename to samples/gauges/radial-gauge/needle/src/app.component.scss diff --git a/samples/gauges/radial-gauge/needle/src/app/app.component.ts b/samples/gauges/radial-gauge/needle/src/app.component.ts similarity index 100% rename from samples/gauges/radial-gauge/needle/src/app/app.component.ts rename to samples/gauges/radial-gauge/needle/src/app.component.ts diff --git a/samples/gauges/radial-gauge/needle/src/app/app.module.ts b/samples/gauges/radial-gauge/needle/src/app.module.ts similarity index 100% rename from samples/gauges/radial-gauge/needle/src/app/app.module.ts rename to samples/gauges/radial-gauge/needle/src/app.module.ts diff --git a/samples/gauges/radial-gauge/needle/src/main.ts b/samples/gauges/radial-gauge/needle/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/radial-gauge/needle/src/main.ts +++ b/samples/gauges/radial-gauge/needle/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/radial-gauge/optical-scaling/src/app/app.component.html b/samples/gauges/radial-gauge/optical-scaling/src/app.component.html similarity index 100% rename from samples/gauges/radial-gauge/optical-scaling/src/app/app.component.html rename to samples/gauges/radial-gauge/optical-scaling/src/app.component.html diff --git a/samples/gauges/radial-gauge/optical-scaling/src/app/app.component.scss b/samples/gauges/radial-gauge/optical-scaling/src/app.component.scss similarity index 100% rename from samples/gauges/radial-gauge/optical-scaling/src/app/app.component.scss rename to samples/gauges/radial-gauge/optical-scaling/src/app.component.scss diff --git a/samples/gauges/radial-gauge/optical-scaling/src/app/app.component.ts b/samples/gauges/radial-gauge/optical-scaling/src/app.component.ts similarity index 100% rename from samples/gauges/radial-gauge/optical-scaling/src/app/app.component.ts rename to samples/gauges/radial-gauge/optical-scaling/src/app.component.ts diff --git a/samples/gauges/radial-gauge/optical-scaling/src/app/app.module.ts b/samples/gauges/radial-gauge/optical-scaling/src/app.module.ts similarity index 100% rename from samples/gauges/radial-gauge/optical-scaling/src/app/app.module.ts rename to samples/gauges/radial-gauge/optical-scaling/src/app.module.ts diff --git a/samples/gauges/radial-gauge/optical-scaling/src/main.ts b/samples/gauges/radial-gauge/optical-scaling/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/radial-gauge/optical-scaling/src/main.ts +++ b/samples/gauges/radial-gauge/optical-scaling/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/radial-gauge/ranges/src/app/app.component.html b/samples/gauges/radial-gauge/ranges/src/app.component.html similarity index 100% rename from samples/gauges/radial-gauge/ranges/src/app/app.component.html rename to samples/gauges/radial-gauge/ranges/src/app.component.html diff --git a/samples/gauges/radial-gauge/ranges/src/app/app.component.scss b/samples/gauges/radial-gauge/ranges/src/app.component.scss similarity index 100% rename from samples/gauges/radial-gauge/ranges/src/app/app.component.scss rename to samples/gauges/radial-gauge/ranges/src/app.component.scss diff --git a/samples/gauges/radial-gauge/ranges/src/app/app.component.ts b/samples/gauges/radial-gauge/ranges/src/app.component.ts similarity index 100% rename from samples/gauges/radial-gauge/ranges/src/app/app.component.ts rename to samples/gauges/radial-gauge/ranges/src/app.component.ts diff --git a/samples/gauges/radial-gauge/ranges/src/app/app.module.ts b/samples/gauges/radial-gauge/ranges/src/app.module.ts similarity index 100% rename from samples/gauges/radial-gauge/ranges/src/app/app.module.ts rename to samples/gauges/radial-gauge/ranges/src/app.module.ts diff --git a/samples/gauges/radial-gauge/ranges/src/main.ts b/samples/gauges/radial-gauge/ranges/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/radial-gauge/ranges/src/main.ts +++ b/samples/gauges/radial-gauge/ranges/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/radial-gauge/scale/src/app/app.component.html b/samples/gauges/radial-gauge/scale/src/app.component.html similarity index 100% rename from samples/gauges/radial-gauge/scale/src/app/app.component.html rename to samples/gauges/radial-gauge/scale/src/app.component.html diff --git a/samples/gauges/radial-gauge/scale/src/app/app.component.scss b/samples/gauges/radial-gauge/scale/src/app.component.scss similarity index 100% rename from samples/gauges/radial-gauge/scale/src/app/app.component.scss rename to samples/gauges/radial-gauge/scale/src/app.component.scss diff --git a/samples/gauges/radial-gauge/scale/src/app/app.component.ts b/samples/gauges/radial-gauge/scale/src/app.component.ts similarity index 100% rename from samples/gauges/radial-gauge/scale/src/app/app.component.ts rename to samples/gauges/radial-gauge/scale/src/app.component.ts diff --git a/samples/gauges/radial-gauge/scale/src/app/app.module.ts b/samples/gauges/radial-gauge/scale/src/app.module.ts similarity index 100% rename from samples/gauges/radial-gauge/scale/src/app/app.module.ts rename to samples/gauges/radial-gauge/scale/src/app.module.ts diff --git a/samples/gauges/radial-gauge/scale/src/main.ts b/samples/gauges/radial-gauge/scale/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/radial-gauge/scale/src/main.ts +++ b/samples/gauges/radial-gauge/scale/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/gauges/radial-gauge/tickmarks/src/app/app.component.html b/samples/gauges/radial-gauge/tickmarks/src/app.component.html similarity index 100% rename from samples/gauges/radial-gauge/tickmarks/src/app/app.component.html rename to samples/gauges/radial-gauge/tickmarks/src/app.component.html diff --git a/samples/gauges/radial-gauge/tickmarks/src/app/app.component.scss b/samples/gauges/radial-gauge/tickmarks/src/app.component.scss similarity index 100% rename from samples/gauges/radial-gauge/tickmarks/src/app/app.component.scss rename to samples/gauges/radial-gauge/tickmarks/src/app.component.scss diff --git a/samples/gauges/radial-gauge/tickmarks/src/app/app.component.ts b/samples/gauges/radial-gauge/tickmarks/src/app.component.ts similarity index 100% rename from samples/gauges/radial-gauge/tickmarks/src/app/app.component.ts rename to samples/gauges/radial-gauge/tickmarks/src/app.component.ts diff --git a/samples/gauges/radial-gauge/tickmarks/src/app/app.module.ts b/samples/gauges/radial-gauge/tickmarks/src/app.module.ts similarity index 100% rename from samples/gauges/radial-gauge/tickmarks/src/app/app.module.ts rename to samples/gauges/radial-gauge/tickmarks/src/app.module.ts diff --git a/samples/gauges/radial-gauge/tickmarks/src/main.ts b/samples/gauges/radial-gauge/tickmarks/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/gauges/radial-gauge/tickmarks/src/main.ts +++ b/samples/gauges/radial-gauge/tickmarks/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/binding-data-csv/src/app/app.component.html b/samples/maps/geo-map/binding-data-csv/src/app.component.html similarity index 100% rename from samples/maps/geo-map/binding-data-csv/src/app/app.component.html rename to samples/maps/geo-map/binding-data-csv/src/app.component.html diff --git a/samples/maps/geo-map/binding-data-csv/src/app/app.component.scss b/samples/maps/geo-map/binding-data-csv/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/binding-data-csv/src/app/app.component.scss rename to samples/maps/geo-map/binding-data-csv/src/app.component.scss diff --git a/samples/maps/geo-map/binding-data-csv/src/app/app.component.ts b/samples/maps/geo-map/binding-data-csv/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/binding-data-csv/src/app/app.component.ts rename to samples/maps/geo-map/binding-data-csv/src/app.component.ts diff --git a/samples/maps/geo-map/binding-data-csv/src/app/app.module.ts b/samples/maps/geo-map/binding-data-csv/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/binding-data-csv/src/app/app.module.ts rename to samples/maps/geo-map/binding-data-csv/src/app.module.ts diff --git a/samples/maps/geo-map/binding-data-csv/src/main.ts b/samples/maps/geo-map/binding-data-csv/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/binding-data-csv/src/main.ts +++ b/samples/maps/geo-map/binding-data-csv/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/binding-data-json-points/src/app/app.component.html b/samples/maps/geo-map/binding-data-json-points/src/app.component.html similarity index 100% rename from samples/maps/geo-map/binding-data-json-points/src/app/app.component.html rename to samples/maps/geo-map/binding-data-json-points/src/app.component.html diff --git a/samples/maps/geo-map/binding-data-json-points/src/app/app.component.scss b/samples/maps/geo-map/binding-data-json-points/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/binding-data-json-points/src/app/app.component.scss rename to samples/maps/geo-map/binding-data-json-points/src/app.component.scss diff --git a/samples/maps/geo-map/binding-data-json-points/src/app/app.component.ts b/samples/maps/geo-map/binding-data-json-points/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/binding-data-json-points/src/app/app.component.ts rename to samples/maps/geo-map/binding-data-json-points/src/app.component.ts diff --git a/samples/maps/geo-map/binding-data-json-points/src/app/app.module.ts b/samples/maps/geo-map/binding-data-json-points/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/binding-data-json-points/src/app/app.module.ts rename to samples/maps/geo-map/binding-data-json-points/src/app.module.ts diff --git a/samples/maps/geo-map/binding-data-json-points/src/main.ts b/samples/maps/geo-map/binding-data-json-points/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/binding-data-json-points/src/main.ts +++ b/samples/maps/geo-map/binding-data-json-points/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/binding-data-model/src/app/WorldUtility.ts b/samples/maps/geo-map/binding-data-model/src/WorldUtility.ts similarity index 100% rename from samples/maps/geo-map/binding-data-model/src/app/WorldUtility.ts rename to samples/maps/geo-map/binding-data-model/src/WorldUtility.ts diff --git a/samples/maps/geo-map/binding-data-model/src/app/app.component.html b/samples/maps/geo-map/binding-data-model/src/app.component.html similarity index 100% rename from samples/maps/geo-map/binding-data-model/src/app/app.component.html rename to samples/maps/geo-map/binding-data-model/src/app.component.html diff --git a/samples/maps/geo-map/binding-data-model/src/app/app.component.scss b/samples/maps/geo-map/binding-data-model/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/binding-data-model/src/app/app.component.scss rename to samples/maps/geo-map/binding-data-model/src/app.component.scss diff --git a/samples/maps/geo-map/binding-data-model/src/app/app.component.ts b/samples/maps/geo-map/binding-data-model/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/binding-data-model/src/app/app.component.ts rename to samples/maps/geo-map/binding-data-model/src/app.component.ts diff --git a/samples/maps/geo-map/binding-data-model/src/app/app.module.ts b/samples/maps/geo-map/binding-data-model/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/binding-data-model/src/app/app.module.ts rename to samples/maps/geo-map/binding-data-model/src/app.module.ts diff --git a/samples/maps/geo-map/binding-data-model/src/main.ts b/samples/maps/geo-map/binding-data-model/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/binding-data-model/src/main.ts +++ b/samples/maps/geo-map/binding-data-model/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/binding-multiple-shapes/src/app/app.component.html b/samples/maps/geo-map/binding-multiple-shapes/src/app.component.html similarity index 100% rename from samples/maps/geo-map/binding-multiple-shapes/src/app/app.component.html rename to samples/maps/geo-map/binding-multiple-shapes/src/app.component.html diff --git a/samples/maps/geo-map/binding-multiple-shapes/src/app/app.component.scss b/samples/maps/geo-map/binding-multiple-shapes/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/binding-multiple-shapes/src/app/app.component.scss rename to samples/maps/geo-map/binding-multiple-shapes/src/app.component.scss diff --git a/samples/maps/geo-map/binding-multiple-shapes/src/app/app.component.ts b/samples/maps/geo-map/binding-multiple-shapes/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/binding-multiple-shapes/src/app/app.component.ts rename to samples/maps/geo-map/binding-multiple-shapes/src/app.component.ts diff --git a/samples/maps/geo-map/binding-multiple-shapes/src/app/app.module.ts b/samples/maps/geo-map/binding-multiple-shapes/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/binding-multiple-shapes/src/app/app.module.ts rename to samples/maps/geo-map/binding-multiple-shapes/src/app.module.ts diff --git a/samples/maps/geo-map/binding-multiple-shapes/src/main.ts b/samples/maps/geo-map/binding-multiple-shapes/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/src/main.ts +++ b/samples/maps/geo-map/binding-multiple-shapes/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/binding-multiple-sources/src/app/WorldConnections.ts b/samples/maps/geo-map/binding-multiple-sources/src/WorldConnections.ts similarity index 100% rename from samples/maps/geo-map/binding-multiple-sources/src/app/WorldConnections.ts rename to samples/maps/geo-map/binding-multiple-sources/src/WorldConnections.ts diff --git a/samples/maps/geo-map/binding-multiple-sources/src/app/WorldLocations.ts b/samples/maps/geo-map/binding-multiple-sources/src/WorldLocations.ts similarity index 100% rename from samples/maps/geo-map/binding-multiple-sources/src/app/WorldLocations.ts rename to samples/maps/geo-map/binding-multiple-sources/src/WorldLocations.ts diff --git a/samples/maps/geo-map/binding-multiple-sources/src/app/WorldUtility.ts b/samples/maps/geo-map/binding-multiple-sources/src/WorldUtility.ts similarity index 100% rename from samples/maps/geo-map/binding-multiple-sources/src/app/WorldUtility.ts rename to samples/maps/geo-map/binding-multiple-sources/src/WorldUtility.ts diff --git a/samples/maps/geo-map/binding-multiple-sources/src/app/app.component.html b/samples/maps/geo-map/binding-multiple-sources/src/app.component.html similarity index 100% rename from samples/maps/geo-map/binding-multiple-sources/src/app/app.component.html rename to samples/maps/geo-map/binding-multiple-sources/src/app.component.html diff --git a/samples/maps/geo-map/binding-multiple-sources/src/app/app.component.scss b/samples/maps/geo-map/binding-multiple-sources/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/binding-multiple-sources/src/app/app.component.scss rename to samples/maps/geo-map/binding-multiple-sources/src/app.component.scss diff --git a/samples/maps/geo-map/binding-multiple-sources/src/app/app.component.ts b/samples/maps/geo-map/binding-multiple-sources/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/binding-multiple-sources/src/app/app.component.ts rename to samples/maps/geo-map/binding-multiple-sources/src/app.component.ts diff --git a/samples/maps/geo-map/binding-multiple-sources/src/app/app.module.ts b/samples/maps/geo-map/binding-multiple-sources/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/binding-multiple-sources/src/app/app.module.ts rename to samples/maps/geo-map/binding-multiple-sources/src/app.module.ts diff --git a/samples/maps/geo-map/binding-multiple-sources/src/main.ts b/samples/maps/geo-map/binding-multiple-sources/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/binding-multiple-sources/src/main.ts +++ b/samples/maps/geo-map/binding-multiple-sources/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/binding-shp-points/src/app/app.component.html b/samples/maps/geo-map/binding-shp-points/src/app.component.html similarity index 100% rename from samples/maps/geo-map/binding-shp-points/src/app/app.component.html rename to samples/maps/geo-map/binding-shp-points/src/app.component.html diff --git a/samples/maps/geo-map/binding-shp-points/src/app/app.component.scss b/samples/maps/geo-map/binding-shp-points/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/binding-shp-points/src/app/app.component.scss rename to samples/maps/geo-map/binding-shp-points/src/app.component.scss diff --git a/samples/maps/geo-map/binding-shp-points/src/app/app.component.ts b/samples/maps/geo-map/binding-shp-points/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/binding-shp-points/src/app/app.component.ts rename to samples/maps/geo-map/binding-shp-points/src/app.component.ts diff --git a/samples/maps/geo-map/binding-shp-points/src/app/app.module.ts b/samples/maps/geo-map/binding-shp-points/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/binding-shp-points/src/app/app.module.ts rename to samples/maps/geo-map/binding-shp-points/src/app.module.ts diff --git a/samples/maps/geo-map/binding-shp-points/src/main.ts b/samples/maps/geo-map/binding-shp-points/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/binding-shp-points/src/main.ts +++ b/samples/maps/geo-map/binding-shp-points/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/binding-shp-polygons/src/app/app.component.html b/samples/maps/geo-map/binding-shp-polygons/src/app.component.html similarity index 100% rename from samples/maps/geo-map/binding-shp-polygons/src/app/app.component.html rename to samples/maps/geo-map/binding-shp-polygons/src/app.component.html diff --git a/samples/maps/geo-map/binding-shp-polygons/src/app/app.component.scss b/samples/maps/geo-map/binding-shp-polygons/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/binding-shp-polygons/src/app/app.component.scss rename to samples/maps/geo-map/binding-shp-polygons/src/app.component.scss diff --git a/samples/maps/geo-map/binding-shp-polygons/src/app/app.component.ts b/samples/maps/geo-map/binding-shp-polygons/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/binding-shp-polygons/src/app/app.component.ts rename to samples/maps/geo-map/binding-shp-polygons/src/app.component.ts diff --git a/samples/maps/geo-map/binding-shp-polygons/src/app/app.module.ts b/samples/maps/geo-map/binding-shp-polygons/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/binding-shp-polygons/src/app/app.module.ts rename to samples/maps/geo-map/binding-shp-polygons/src/app.module.ts diff --git a/samples/maps/geo-map/binding-shp-polygons/src/main.ts b/samples/maps/geo-map/binding-shp-polygons/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/binding-shp-polygons/src/main.ts +++ b/samples/maps/geo-map/binding-shp-polygons/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/binding-shp-polylines/src/app/app.component.html b/samples/maps/geo-map/binding-shp-polylines/src/app.component.html similarity index 100% rename from samples/maps/geo-map/binding-shp-polylines/src/app/app.component.html rename to samples/maps/geo-map/binding-shp-polylines/src/app.component.html diff --git a/samples/maps/geo-map/binding-shp-polylines/src/app/app.component.scss b/samples/maps/geo-map/binding-shp-polylines/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/binding-shp-polylines/src/app/app.component.scss rename to samples/maps/geo-map/binding-shp-polylines/src/app.component.scss diff --git a/samples/maps/geo-map/binding-shp-polylines/src/app/app.component.ts b/samples/maps/geo-map/binding-shp-polylines/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/binding-shp-polylines/src/app/app.component.ts rename to samples/maps/geo-map/binding-shp-polylines/src/app.component.ts diff --git a/samples/maps/geo-map/binding-shp-polylines/src/app/app.module.ts b/samples/maps/geo-map/binding-shp-polylines/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/binding-shp-polylines/src/app/app.module.ts rename to samples/maps/geo-map/binding-shp-polylines/src/app.module.ts diff --git a/samples/maps/geo-map/binding-shp-polylines/src/main.ts b/samples/maps/geo-map/binding-shp-polylines/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/binding-shp-polylines/src/main.ts +++ b/samples/maps/geo-map/binding-shp-polylines/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/custom-tooltips/src/app/app.component.html b/samples/maps/geo-map/custom-tooltips/src/app.component.html similarity index 100% rename from samples/maps/geo-map/custom-tooltips/src/app/app.component.html rename to samples/maps/geo-map/custom-tooltips/src/app.component.html diff --git a/samples/maps/geo-map/custom-tooltips/src/app/app.component.scss b/samples/maps/geo-map/custom-tooltips/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/custom-tooltips/src/app/app.component.scss rename to samples/maps/geo-map/custom-tooltips/src/app.component.scss diff --git a/samples/maps/geo-map/custom-tooltips/src/app/app.component.ts b/samples/maps/geo-map/custom-tooltips/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/custom-tooltips/src/app/app.component.ts rename to samples/maps/geo-map/custom-tooltips/src/app.component.ts diff --git a/samples/maps/geo-map/custom-tooltips/src/app/app.module.ts b/samples/maps/geo-map/custom-tooltips/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/custom-tooltips/src/app/app.module.ts rename to samples/maps/geo-map/custom-tooltips/src/app.module.ts diff --git a/samples/maps/geo-map/custom-tooltips/src/main.ts b/samples/maps/geo-map/custom-tooltips/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/custom-tooltips/src/main.ts +++ b/samples/maps/geo-map/custom-tooltips/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/display-bing-imagery/src/app/MapUtility.ts b/samples/maps/geo-map/display-bing-imagery/src/MapUtility.ts similarity index 100% rename from samples/maps/geo-map/display-bing-imagery/src/app/MapUtility.ts rename to samples/maps/geo-map/display-bing-imagery/src/MapUtility.ts diff --git a/samples/maps/geo-map/display-bing-imagery/src/app/app.component.html b/samples/maps/geo-map/display-bing-imagery/src/app.component.html similarity index 100% rename from samples/maps/geo-map/display-bing-imagery/src/app/app.component.html rename to samples/maps/geo-map/display-bing-imagery/src/app.component.html diff --git a/samples/maps/geo-map/display-bing-imagery/src/app/app.component.scss b/samples/maps/geo-map/display-bing-imagery/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/display-bing-imagery/src/app/app.component.scss rename to samples/maps/geo-map/display-bing-imagery/src/app.component.scss diff --git a/samples/maps/geo-map/display-bing-imagery/src/app/app.component.ts b/samples/maps/geo-map/display-bing-imagery/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/display-bing-imagery/src/app/app.component.ts rename to samples/maps/geo-map/display-bing-imagery/src/app.component.ts diff --git a/samples/maps/geo-map/display-bing-imagery/src/app/app.module.ts b/samples/maps/geo-map/display-bing-imagery/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/display-bing-imagery/src/app/app.module.ts rename to samples/maps/geo-map/display-bing-imagery/src/app.module.ts diff --git a/samples/maps/geo-map/display-bing-imagery/src/main.ts b/samples/maps/geo-map/display-bing-imagery/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/display-bing-imagery/src/main.ts +++ b/samples/maps/geo-map/display-bing-imagery/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/display-esri-imagery/src/app/EsriUtility.ts b/samples/maps/geo-map/display-esri-imagery/src/EsriUtility.ts similarity index 100% rename from samples/maps/geo-map/display-esri-imagery/src/app/EsriUtility.ts rename to samples/maps/geo-map/display-esri-imagery/src/EsriUtility.ts diff --git a/samples/maps/geo-map/display-esri-imagery/src/app/app.component.html b/samples/maps/geo-map/display-esri-imagery/src/app.component.html similarity index 100% rename from samples/maps/geo-map/display-esri-imagery/src/app/app.component.html rename to samples/maps/geo-map/display-esri-imagery/src/app.component.html diff --git a/samples/maps/geo-map/display-esri-imagery/src/app/app.component.scss b/samples/maps/geo-map/display-esri-imagery/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/display-esri-imagery/src/app/app.component.scss rename to samples/maps/geo-map/display-esri-imagery/src/app.component.scss diff --git a/samples/maps/geo-map/display-esri-imagery/src/app/app.component.ts b/samples/maps/geo-map/display-esri-imagery/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/display-esri-imagery/src/app/app.component.ts rename to samples/maps/geo-map/display-esri-imagery/src/app.component.ts diff --git a/samples/maps/geo-map/display-esri-imagery/src/app/app.module.ts b/samples/maps/geo-map/display-esri-imagery/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/display-esri-imagery/src/app/app.module.ts rename to samples/maps/geo-map/display-esri-imagery/src/app.module.ts diff --git a/samples/maps/geo-map/display-esri-imagery/src/main.ts b/samples/maps/geo-map/display-esri-imagery/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/display-esri-imagery/src/main.ts +++ b/samples/maps/geo-map/display-esri-imagery/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/display-heat-imagery/src/app/HeatmapWorker.ts b/samples/maps/geo-map/display-heat-imagery/src/HeatmapWorker.ts similarity index 100% rename from samples/maps/geo-map/display-heat-imagery/src/app/HeatmapWorker.ts rename to samples/maps/geo-map/display-heat-imagery/src/HeatmapWorker.ts diff --git a/samples/maps/geo-map/display-heat-imagery/src/app/app.component.html b/samples/maps/geo-map/display-heat-imagery/src/app.component.html similarity index 100% rename from samples/maps/geo-map/display-heat-imagery/src/app/app.component.html rename to samples/maps/geo-map/display-heat-imagery/src/app.component.html diff --git a/samples/maps/geo-map/display-heat-imagery/src/app/app.component.scss b/samples/maps/geo-map/display-heat-imagery/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/display-heat-imagery/src/app/app.component.scss rename to samples/maps/geo-map/display-heat-imagery/src/app.component.scss diff --git a/samples/maps/geo-map/display-heat-imagery/src/app/app.component.ts b/samples/maps/geo-map/display-heat-imagery/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/display-heat-imagery/src/app/app.component.ts rename to samples/maps/geo-map/display-heat-imagery/src/app.component.ts diff --git a/samples/maps/geo-map/display-heat-imagery/src/app/app.module.ts b/samples/maps/geo-map/display-heat-imagery/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/display-heat-imagery/src/app/app.module.ts rename to samples/maps/geo-map/display-heat-imagery/src/app.module.ts diff --git a/samples/maps/geo-map/display-heat-imagery/src/main.ts b/samples/maps/geo-map/display-heat-imagery/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/display-heat-imagery/src/main.ts +++ b/samples/maps/geo-map/display-heat-imagery/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/display-osm-imagery/src/app/app.component.html b/samples/maps/geo-map/display-osm-imagery/src/app.component.html similarity index 100% rename from samples/maps/geo-map/display-osm-imagery/src/app/app.component.html rename to samples/maps/geo-map/display-osm-imagery/src/app.component.html diff --git a/samples/maps/geo-map/display-osm-imagery/src/app/app.component.scss b/samples/maps/geo-map/display-osm-imagery/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/display-osm-imagery/src/app/app.component.scss rename to samples/maps/geo-map/display-osm-imagery/src/app.component.scss diff --git a/samples/maps/geo-map/display-osm-imagery/src/app/app.component.ts b/samples/maps/geo-map/display-osm-imagery/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/display-osm-imagery/src/app/app.component.ts rename to samples/maps/geo-map/display-osm-imagery/src/app.component.ts diff --git a/samples/maps/geo-map/display-osm-imagery/src/app/app.module.ts b/samples/maps/geo-map/display-osm-imagery/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/display-osm-imagery/src/app/app.module.ts rename to samples/maps/geo-map/display-osm-imagery/src/app.module.ts diff --git a/samples/maps/geo-map/display-osm-imagery/src/main.ts b/samples/maps/geo-map/display-osm-imagery/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/display-osm-imagery/src/main.ts +++ b/samples/maps/geo-map/display-osm-imagery/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/marker-layouts/src/app/WorldLocations.ts b/samples/maps/geo-map/marker-layouts/src/WorldLocations.ts similarity index 100% rename from samples/maps/geo-map/marker-layouts/src/app/WorldLocations.ts rename to samples/maps/geo-map/marker-layouts/src/WorldLocations.ts diff --git a/samples/maps/geo-map/marker-layouts/src/app/app.component.html b/samples/maps/geo-map/marker-layouts/src/app.component.html similarity index 100% rename from samples/maps/geo-map/marker-layouts/src/app/app.component.html rename to samples/maps/geo-map/marker-layouts/src/app.component.html diff --git a/samples/maps/geo-map/marker-layouts/src/app/app.component.scss b/samples/maps/geo-map/marker-layouts/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/marker-layouts/src/app/app.component.scss rename to samples/maps/geo-map/marker-layouts/src/app.component.scss diff --git a/samples/maps/geo-map/marker-layouts/src/app/app.component.ts b/samples/maps/geo-map/marker-layouts/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/marker-layouts/src/app/app.component.ts rename to samples/maps/geo-map/marker-layouts/src/app.component.ts diff --git a/samples/maps/geo-map/marker-layouts/src/app/app.module.ts b/samples/maps/geo-map/marker-layouts/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/marker-layouts/src/app/app.module.ts rename to samples/maps/geo-map/marker-layouts/src/app.module.ts diff --git a/samples/maps/geo-map/marker-layouts/src/main.ts b/samples/maps/geo-map/marker-layouts/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/marker-layouts/src/main.ts +++ b/samples/maps/geo-map/marker-layouts/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/marker-template/src/app/WorldLocations.ts b/samples/maps/geo-map/marker-template/src/WorldLocations.ts similarity index 100% rename from samples/maps/geo-map/marker-template/src/app/WorldLocations.ts rename to samples/maps/geo-map/marker-template/src/WorldLocations.ts diff --git a/samples/maps/geo-map/marker-template/src/app/app.component.html b/samples/maps/geo-map/marker-template/src/app.component.html similarity index 100% rename from samples/maps/geo-map/marker-template/src/app/app.component.html rename to samples/maps/geo-map/marker-template/src/app.component.html diff --git a/samples/maps/geo-map/marker-template/src/app/app.component.scss b/samples/maps/geo-map/marker-template/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/marker-template/src/app/app.component.scss rename to samples/maps/geo-map/marker-template/src/app.component.scss diff --git a/samples/maps/geo-map/marker-template/src/app/app.component.ts b/samples/maps/geo-map/marker-template/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/marker-template/src/app/app.component.ts rename to samples/maps/geo-map/marker-template/src/app.component.ts diff --git a/samples/maps/geo-map/marker-template/src/app/app.module.ts b/samples/maps/geo-map/marker-template/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/marker-template/src/app/app.module.ts rename to samples/maps/geo-map/marker-template/src/app.module.ts diff --git a/samples/maps/geo-map/marker-template/src/main.ts b/samples/maps/geo-map/marker-template/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/marker-template/src/main.ts +++ b/samples/maps/geo-map/marker-template/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/marker-type/src/app/WorldLocations.ts b/samples/maps/geo-map/marker-type/src/WorldLocations.ts similarity index 100% rename from samples/maps/geo-map/marker-type/src/app/WorldLocations.ts rename to samples/maps/geo-map/marker-type/src/WorldLocations.ts diff --git a/samples/maps/geo-map/marker-type/src/app/app.component.html b/samples/maps/geo-map/marker-type/src/app.component.html similarity index 100% rename from samples/maps/geo-map/marker-type/src/app/app.component.html rename to samples/maps/geo-map/marker-type/src/app.component.html diff --git a/samples/maps/geo-map/marker-type/src/app/app.component.scss b/samples/maps/geo-map/marker-type/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/marker-type/src/app/app.component.scss rename to samples/maps/geo-map/marker-type/src/app.component.scss diff --git a/samples/maps/geo-map/marker-type/src/app/app.component.ts b/samples/maps/geo-map/marker-type/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/marker-type/src/app/app.component.ts rename to samples/maps/geo-map/marker-type/src/app.component.ts diff --git a/samples/maps/geo-map/marker-type/src/app/app.module.ts b/samples/maps/geo-map/marker-type/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/marker-type/src/app/app.module.ts rename to samples/maps/geo-map/marker-type/src/app.module.ts diff --git a/samples/maps/geo-map/marker-type/src/main.ts b/samples/maps/geo-map/marker-type/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/marker-type/src/main.ts +++ b/samples/maps/geo-map/marker-type/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/navigation/src/app/EsriUtility.ts b/samples/maps/geo-map/navigation/src/EsriUtility.ts similarity index 100% rename from samples/maps/geo-map/navigation/src/app/EsriUtility.ts rename to samples/maps/geo-map/navigation/src/EsriUtility.ts diff --git a/samples/maps/geo-map/navigation/src/app/MapUtility.ts b/samples/maps/geo-map/navigation/src/MapUtility.ts similarity index 100% rename from samples/maps/geo-map/navigation/src/app/MapUtility.ts rename to samples/maps/geo-map/navigation/src/MapUtility.ts diff --git a/samples/maps/geo-map/navigation/src/app/WorldUtility.ts b/samples/maps/geo-map/navigation/src/WorldUtility.ts similarity index 100% rename from samples/maps/geo-map/navigation/src/app/WorldUtility.ts rename to samples/maps/geo-map/navigation/src/WorldUtility.ts diff --git a/samples/maps/geo-map/navigation/src/app/app.component.html b/samples/maps/geo-map/navigation/src/app.component.html similarity index 100% rename from samples/maps/geo-map/navigation/src/app/app.component.html rename to samples/maps/geo-map/navigation/src/app.component.html diff --git a/samples/maps/geo-map/navigation/src/app/app.component.scss b/samples/maps/geo-map/navigation/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/navigation/src/app/app.component.scss rename to samples/maps/geo-map/navigation/src/app.component.scss diff --git a/samples/maps/geo-map/navigation/src/app/app.component.ts b/samples/maps/geo-map/navigation/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/navigation/src/app/app.component.ts rename to samples/maps/geo-map/navigation/src/app.component.ts diff --git a/samples/maps/geo-map/navigation/src/app/app.module.ts b/samples/maps/geo-map/navigation/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/navigation/src/app/app.module.ts rename to samples/maps/geo-map/navigation/src/app.module.ts diff --git a/samples/maps/geo-map/navigation/src/main.ts b/samples/maps/geo-map/navigation/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/navigation/src/main.ts +++ b/samples/maps/geo-map/navigation/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/overview/src/app/app.component.html b/samples/maps/geo-map/overview/src/app.component.html similarity index 100% rename from samples/maps/geo-map/overview/src/app/app.component.html rename to samples/maps/geo-map/overview/src/app.component.html diff --git a/samples/maps/geo-map/overview/src/app/app.component.scss b/samples/maps/geo-map/overview/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/overview/src/app/app.component.scss rename to samples/maps/geo-map/overview/src/app.component.scss diff --git a/samples/maps/geo-map/overview/src/app/app.component.ts b/samples/maps/geo-map/overview/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/overview/src/app/app.component.ts rename to samples/maps/geo-map/overview/src/app.component.ts diff --git a/samples/maps/geo-map/overview/src/app/app.module.ts b/samples/maps/geo-map/overview/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/overview/src/app/app.module.ts rename to samples/maps/geo-map/overview/src/app.module.ts diff --git a/samples/maps/geo-map/overview/src/main.ts b/samples/maps/geo-map/overview/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/overview/src/main.ts +++ b/samples/maps/geo-map/overview/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/shape-styling/src/app/app.component.html b/samples/maps/geo-map/shape-styling/src/app.component.html similarity index 100% rename from samples/maps/geo-map/shape-styling/src/app/app.component.html rename to samples/maps/geo-map/shape-styling/src/app.component.html diff --git a/samples/maps/geo-map/shape-styling/src/app/app.component.scss b/samples/maps/geo-map/shape-styling/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/shape-styling/src/app/app.component.scss rename to samples/maps/geo-map/shape-styling/src/app.component.scss diff --git a/samples/maps/geo-map/shape-styling/src/app/app.component.ts b/samples/maps/geo-map/shape-styling/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/shape-styling/src/app/app.component.ts rename to samples/maps/geo-map/shape-styling/src/app.component.ts diff --git a/samples/maps/geo-map/shape-styling/src/app/app.module.ts b/samples/maps/geo-map/shape-styling/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/shape-styling/src/app/app.module.ts rename to samples/maps/geo-map/shape-styling/src/app.module.ts diff --git a/samples/maps/geo-map/shape-styling/src/main.ts b/samples/maps/geo-map/shape-styling/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/shape-styling/src/main.ts +++ b/samples/maps/geo-map/shape-styling/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/triangulating-data/src/app/app.component.html b/samples/maps/geo-map/triangulating-data/src/app.component.html similarity index 100% rename from samples/maps/geo-map/triangulating-data/src/app/app.component.html rename to samples/maps/geo-map/triangulating-data/src/app.component.html diff --git a/samples/maps/geo-map/triangulating-data/src/app/app.component.scss b/samples/maps/geo-map/triangulating-data/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/triangulating-data/src/app/app.component.scss rename to samples/maps/geo-map/triangulating-data/src/app.component.scss diff --git a/samples/maps/geo-map/triangulating-data/src/app/app.component.ts b/samples/maps/geo-map/triangulating-data/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/triangulating-data/src/app/app.component.ts rename to samples/maps/geo-map/triangulating-data/src/app.component.ts diff --git a/samples/maps/geo-map/triangulating-data/src/app/app.module.ts b/samples/maps/geo-map/triangulating-data/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/triangulating-data/src/app/app.module.ts rename to samples/maps/geo-map/triangulating-data/src/app.module.ts diff --git a/samples/maps/geo-map/triangulating-data/src/main.ts b/samples/maps/geo-map/triangulating-data/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/triangulating-data/src/main.ts +++ b/samples/maps/geo-map/triangulating-data/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/type-scatter-area-series/src/app/app.component.html b/samples/maps/geo-map/type-scatter-area-series/src/app.component.html similarity index 100% rename from samples/maps/geo-map/type-scatter-area-series/src/app/app.component.html rename to samples/maps/geo-map/type-scatter-area-series/src/app.component.html diff --git a/samples/maps/geo-map/type-scatter-area-series/src/app/app.component.scss b/samples/maps/geo-map/type-scatter-area-series/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/type-scatter-area-series/src/app/app.component.scss rename to samples/maps/geo-map/type-scatter-area-series/src/app.component.scss diff --git a/samples/maps/geo-map/type-scatter-area-series/src/app/app.component.ts b/samples/maps/geo-map/type-scatter-area-series/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/type-scatter-area-series/src/app/app.component.ts rename to samples/maps/geo-map/type-scatter-area-series/src/app.component.ts diff --git a/samples/maps/geo-map/type-scatter-area-series/src/app/app.module.ts b/samples/maps/geo-map/type-scatter-area-series/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/type-scatter-area-series/src/app/app.module.ts rename to samples/maps/geo-map/type-scatter-area-series/src/app.module.ts diff --git a/samples/maps/geo-map/type-scatter-area-series/src/main.ts b/samples/maps/geo-map/type-scatter-area-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/type-scatter-area-series/src/main.ts +++ b/samples/maps/geo-map/type-scatter-area-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/app/WorldLocations.ts b/samples/maps/geo-map/type-scatter-bubble-series/src/WorldLocations.ts similarity index 100% rename from samples/maps/geo-map/type-scatter-bubble-series/src/app/WorldLocations.ts rename to samples/maps/geo-map/type-scatter-bubble-series/src/WorldLocations.ts diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/app/app.component.html b/samples/maps/geo-map/type-scatter-bubble-series/src/app.component.html similarity index 100% rename from samples/maps/geo-map/type-scatter-bubble-series/src/app/app.component.html rename to samples/maps/geo-map/type-scatter-bubble-series/src/app.component.html diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/app/app.component.scss b/samples/maps/geo-map/type-scatter-bubble-series/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/type-scatter-bubble-series/src/app/app.component.scss rename to samples/maps/geo-map/type-scatter-bubble-series/src/app.component.scss diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/app/app.component.ts b/samples/maps/geo-map/type-scatter-bubble-series/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/type-scatter-bubble-series/src/app/app.component.ts rename to samples/maps/geo-map/type-scatter-bubble-series/src/app.component.ts diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/app/app.module.ts b/samples/maps/geo-map/type-scatter-bubble-series/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/type-scatter-bubble-series/src/app/app.module.ts rename to samples/maps/geo-map/type-scatter-bubble-series/src/app.module.ts diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/main.ts b/samples/maps/geo-map/type-scatter-bubble-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/src/main.ts +++ b/samples/maps/geo-map/type-scatter-bubble-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/type-scatter-contour-series/src/app/app.component.html b/samples/maps/geo-map/type-scatter-contour-series/src/app.component.html similarity index 100% rename from samples/maps/geo-map/type-scatter-contour-series/src/app/app.component.html rename to samples/maps/geo-map/type-scatter-contour-series/src/app.component.html diff --git a/samples/maps/geo-map/type-scatter-contour-series/src/app/app.component.scss b/samples/maps/geo-map/type-scatter-contour-series/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/type-scatter-contour-series/src/app/app.component.scss rename to samples/maps/geo-map/type-scatter-contour-series/src/app.component.scss diff --git a/samples/maps/geo-map/type-scatter-contour-series/src/app/app.component.ts b/samples/maps/geo-map/type-scatter-contour-series/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/type-scatter-contour-series/src/app/app.component.ts rename to samples/maps/geo-map/type-scatter-contour-series/src/app.component.ts diff --git a/samples/maps/geo-map/type-scatter-contour-series/src/app/app.module.ts b/samples/maps/geo-map/type-scatter-contour-series/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/type-scatter-contour-series/src/app/app.module.ts rename to samples/maps/geo-map/type-scatter-contour-series/src/app.module.ts diff --git a/samples/maps/geo-map/type-scatter-contour-series/src/main.ts b/samples/maps/geo-map/type-scatter-contour-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/src/main.ts +++ b/samples/maps/geo-map/type-scatter-contour-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/type-scatter-density-series/src/app/WorldUtility.ts b/samples/maps/geo-map/type-scatter-density-series/src/WorldUtility.ts similarity index 100% rename from samples/maps/geo-map/type-scatter-density-series/src/app/WorldUtility.ts rename to samples/maps/geo-map/type-scatter-density-series/src/WorldUtility.ts diff --git a/samples/maps/geo-map/type-scatter-density-series/src/app/app.component.html b/samples/maps/geo-map/type-scatter-density-series/src/app.component.html similarity index 100% rename from samples/maps/geo-map/type-scatter-density-series/src/app/app.component.html rename to samples/maps/geo-map/type-scatter-density-series/src/app.component.html diff --git a/samples/maps/geo-map/type-scatter-density-series/src/app/app.component.scss b/samples/maps/geo-map/type-scatter-density-series/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/type-scatter-density-series/src/app/app.component.scss rename to samples/maps/geo-map/type-scatter-density-series/src/app.component.scss diff --git a/samples/maps/geo-map/type-scatter-density-series/src/app/app.component.ts b/samples/maps/geo-map/type-scatter-density-series/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/type-scatter-density-series/src/app/app.component.ts rename to samples/maps/geo-map/type-scatter-density-series/src/app.component.ts diff --git a/samples/maps/geo-map/type-scatter-density-series/src/app/app.module.ts b/samples/maps/geo-map/type-scatter-density-series/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/type-scatter-density-series/src/app/app.module.ts rename to samples/maps/geo-map/type-scatter-density-series/src/app.module.ts diff --git a/samples/maps/geo-map/type-scatter-density-series/src/main.ts b/samples/maps/geo-map/type-scatter-density-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/type-scatter-density-series/src/main.ts +++ b/samples/maps/geo-map/type-scatter-density-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/app/WorldLocations.ts b/samples/maps/geo-map/type-scatter-symbol-series/src/WorldLocations.ts similarity index 100% rename from samples/maps/geo-map/type-scatter-symbol-series/src/app/WorldLocations.ts rename to samples/maps/geo-map/type-scatter-symbol-series/src/WorldLocations.ts diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/app/app.component.html b/samples/maps/geo-map/type-scatter-symbol-series/src/app.component.html similarity index 100% rename from samples/maps/geo-map/type-scatter-symbol-series/src/app/app.component.html rename to samples/maps/geo-map/type-scatter-symbol-series/src/app.component.html diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/app/app.component.scss b/samples/maps/geo-map/type-scatter-symbol-series/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/type-scatter-symbol-series/src/app/app.component.scss rename to samples/maps/geo-map/type-scatter-symbol-series/src/app.component.scss diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/app/app.component.ts b/samples/maps/geo-map/type-scatter-symbol-series/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/type-scatter-symbol-series/src/app/app.component.ts rename to samples/maps/geo-map/type-scatter-symbol-series/src/app.component.ts diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/app/app.module.ts b/samples/maps/geo-map/type-scatter-symbol-series/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/type-scatter-symbol-series/src/app/app.module.ts rename to samples/maps/geo-map/type-scatter-symbol-series/src/app.module.ts diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/main.ts b/samples/maps/geo-map/type-scatter-symbol-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/src/main.ts +++ b/samples/maps/geo-map/type-scatter-symbol-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/type-shape-polygon-series/src/app/app.component.html b/samples/maps/geo-map/type-shape-polygon-series/src/app.component.html similarity index 100% rename from samples/maps/geo-map/type-shape-polygon-series/src/app/app.component.html rename to samples/maps/geo-map/type-shape-polygon-series/src/app.component.html diff --git a/samples/maps/geo-map/type-shape-polygon-series/src/app/app.component.scss b/samples/maps/geo-map/type-shape-polygon-series/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/type-shape-polygon-series/src/app/app.component.scss rename to samples/maps/geo-map/type-shape-polygon-series/src/app.component.scss diff --git a/samples/maps/geo-map/type-shape-polygon-series/src/app/app.component.ts b/samples/maps/geo-map/type-shape-polygon-series/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/type-shape-polygon-series/src/app/app.component.ts rename to samples/maps/geo-map/type-shape-polygon-series/src/app.component.ts diff --git a/samples/maps/geo-map/type-shape-polygon-series/src/app/app.module.ts b/samples/maps/geo-map/type-shape-polygon-series/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/type-shape-polygon-series/src/app/app.module.ts rename to samples/maps/geo-map/type-shape-polygon-series/src/app.module.ts diff --git a/samples/maps/geo-map/type-shape-polygon-series/src/main.ts b/samples/maps/geo-map/type-shape-polygon-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/src/main.ts +++ b/samples/maps/geo-map/type-shape-polygon-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. diff --git a/samples/maps/geo-map/type-shape-polyline-series/src/app/app.component.html b/samples/maps/geo-map/type-shape-polyline-series/src/app.component.html similarity index 100% rename from samples/maps/geo-map/type-shape-polyline-series/src/app/app.component.html rename to samples/maps/geo-map/type-shape-polyline-series/src/app.component.html diff --git a/samples/maps/geo-map/type-shape-polyline-series/src/app/app.component.scss b/samples/maps/geo-map/type-shape-polyline-series/src/app.component.scss similarity index 100% rename from samples/maps/geo-map/type-shape-polyline-series/src/app/app.component.scss rename to samples/maps/geo-map/type-shape-polyline-series/src/app.component.scss diff --git a/samples/maps/geo-map/type-shape-polyline-series/src/app/app.component.ts b/samples/maps/geo-map/type-shape-polyline-series/src/app.component.ts similarity index 100% rename from samples/maps/geo-map/type-shape-polyline-series/src/app/app.component.ts rename to samples/maps/geo-map/type-shape-polyline-series/src/app.component.ts diff --git a/samples/maps/geo-map/type-shape-polyline-series/src/app/app.module.ts b/samples/maps/geo-map/type-shape-polyline-series/src/app.module.ts similarity index 100% rename from samples/maps/geo-map/type-shape-polyline-series/src/app/app.module.ts rename to samples/maps/geo-map/type-shape-polyline-series/src/app.module.ts diff --git a/samples/maps/geo-map/type-shape-polyline-series/src/main.ts b/samples/maps/geo-map/type-shape-polyline-series/src/main.ts index 8b0ce4164..ec9adcd4a 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/src/main.ts +++ b/samples/maps/geo-map/type-shape-polyline-series/src/main.ts @@ -2,7 +2,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; -import { AppModule } from "./app/app.module"; +import { AppModule } from "./app.module"; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. From 2459915f50fe5b53d5747d379ec3c4419105ae1b Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Wed, 5 Jun 2024 15:50:50 -0400 Subject: [PATCH 079/154] update CodeSandbox (#189) * add geo map * add script updateCodeSandbox * use new codesandbox for all samples --- browser/gulpfile.js | 1 + browser/scripts/browser.js | 72 ++++++++++++ .../annotations-all/.codesandbox/Dockerfile | 1 + .../annotations-all/.codesandbox/tasks.json | 17 +++ .../annotations-all/.stackblitzrc | 2 +- .../annotations-all/angular.json | 94 +++++++++------- .../annotations-all/package.json | 38 +++---- .../annotations-all/sandbox.config.json | 5 - .../annotations-all/tsconfig.app.json | 10 ++ .../annotations-all/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../annotations-callouts/.stackblitzrc | 2 +- .../annotations-callouts/angular.json | 94 +++++++++------- .../annotations-callouts/package.json | 38 +++---- .../annotations-callouts/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../annotations-callouts/tsconfig.app.json | 10 ++ .../annotations-callouts/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../annotations-crosshairs/.stackblitzrc | 2 +- .../annotations-crosshairs/angular.json | 94 +++++++++------- .../annotations-crosshairs/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../annotations-crosshairs/tsconfig.app.json | 10 ++ .../annotations-crosshairs/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../annotations-custom/.stackblitzrc | 2 +- .../annotations-custom/angular.json | 94 +++++++++------- .../annotations-custom/package.json | 38 +++---- .../annotations-custom/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../annotations-custom/tsconfig.app.json | 10 ++ .../annotations-custom/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../annotations-final-value/.stackblitzrc | 2 +- .../annotations-final-value/angular.json | 94 +++++++++------- .../annotations-final-value/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../annotations-final-value/tsconfig.app.json | 10 ++ .../annotations-final-value/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../annotations-highlighting/.stackblitzrc | 2 +- .../annotations-highlighting/angular.json | 94 +++++++++------- .../annotations-highlighting/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../annotations-highlighting/tsconfig.json | 44 ++++---- .../annotations/.codesandbox/Dockerfile | 1 + .../annotations/.codesandbox/tasks.json | 17 +++ .../category-chart/annotations/.stackblitzrc | 2 +- .../category-chart/annotations/angular.json | 94 +++++++++------- .../category-chart/annotations/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 6 - .../annotations/src/config/tsconfig.app.json | 12 -- .../annotations/src/config/tsconfig.base.json | 24 ---- .../annotations/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../annotations/tsconfig.app.json | 10 ++ .../category-chart/annotations/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../area-chart-multiple-sources/.stackblitzrc | 2 +- .../area-chart-multiple-sources/angular.json | 94 +++++++++------- .../area-chart-multiple-sources/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../area-chart-multiple-sources/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../area-chart-single-source/.stackblitzrc | 2 +- .../area-chart-single-source/angular.json | 94 +++++++++------- .../area-chart-single-source/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../area-chart-single-source/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../area-chart-styling/.stackblitzrc | 2 +- .../area-chart-styling/angular.json | 94 +++++++++------- .../area-chart-styling/package.json | 38 +++---- .../area-chart-styling/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../area-chart-styling/tsconfig.app.json | 10 ++ .../area-chart-styling/tsconfig.json | 44 ++++---- .../axis-gap/.codesandbox/Dockerfile | 1 + .../axis-gap/.codesandbox/tasks.json | 17 +++ .../category-chart/axis-gap/.stackblitzrc | 2 +- .../category-chart/axis-gap/angular.json | 94 +++++++++------- .../category-chart/axis-gap/package.json | 38 +++---- .../axis-gap/sandbox.config.json | 5 - .../axis-gap/src/config/tsconfig-es5.app.json | 6 - .../axis-gap/src/config/tsconfig.app.json | 12 -- .../axis-gap/src/config/tsconfig.base.json | 24 ---- .../axis-gap/src/config/tsconfig.spec.json | 19 ---- .../axis-gap/src/config/tsconfig.worker.json | 14 --- .../category-chart/axis-gap/tsconfig.app.json | 10 ++ .../category-chart/axis-gap/tsconfig.json | 44 ++++---- .../axis-gridlines/.codesandbox/Dockerfile | 1 + .../axis-gridlines/.codesandbox/tasks.json | 17 +++ .../axis-gridlines/.stackblitzrc | 2 +- .../axis-gridlines/angular.json | 94 +++++++++------- .../axis-gridlines/package.json | 38 +++---- .../axis-gridlines/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../axis-gridlines/tsconfig.app.json | 10 ++ .../axis-gridlines/tsconfig.json | 44 ++++---- .../axis-inverted/.codesandbox/Dockerfile | 1 + .../axis-inverted/.codesandbox/tasks.json | 17 +++ .../axis-inverted/.stackblitzrc | 2 +- .../category-chart/axis-inverted/angular.json | 94 +++++++++------- .../category-chart/axis-inverted/package.json | 38 +++---- .../axis-inverted/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../axis-inverted/tsconfig.app.json | 10 ++ .../axis-inverted/tsconfig.json | 44 ++++---- .../axis-labels/.codesandbox/Dockerfile | 1 + .../axis-labels/.codesandbox/tasks.json | 17 +++ .../category-chart/axis-labels/.stackblitzrc | 2 +- .../category-chart/axis-labels/angular.json | 94 +++++++++------- .../category-chart/axis-labels/package.json | 38 +++---- .../axis-labels/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../axis-labels/src/config/tsconfig.app.json | 12 -- .../axis-labels/src/config/tsconfig.base.json | 24 ---- .../axis-labels/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../axis-labels/tsconfig.app.json | 10 ++ .../category-chart/axis-labels/tsconfig.json | 44 ++++---- .../axis-locations/.codesandbox/Dockerfile | 1 + .../axis-locations/.codesandbox/tasks.json | 17 +++ .../axis-locations/.stackblitzrc | 2 +- .../axis-locations/angular.json | 94 +++++++++------- .../axis-locations/package.json | 38 +++---- .../axis-locations/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../axis-locations/tsconfig.app.json | 10 ++ .../axis-locations/tsconfig.json | 44 ++++---- .../axis-options/.codesandbox/Dockerfile | 1 + .../axis-options/.codesandbox/tasks.json | 17 +++ .../category-chart/axis-options/.stackblitzrc | 2 +- .../category-chart/axis-options/angular.json | 94 +++++++++------- .../category-chart/axis-options/package.json | 38 +++---- .../axis-options/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../axis-options/src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../axis-options/tsconfig.app.json | 10 ++ .../category-chart/axis-options/tsconfig.json | 44 ++++---- .../axis-overlap/.codesandbox/Dockerfile | 1 + .../axis-overlap/.codesandbox/tasks.json | 17 +++ .../category-chart/axis-overlap/.stackblitzrc | 2 +- .../category-chart/axis-overlap/angular.json | 94 +++++++++------- .../category-chart/axis-overlap/package.json | 38 +++---- .../axis-overlap/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../axis-overlap/src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../axis-overlap/tsconfig.app.json | 10 ++ .../category-chart/axis-overlap/tsconfig.json | 44 ++++---- .../axis-range/.codesandbox/Dockerfile | 1 + .../axis-range/.codesandbox/tasks.json | 17 +++ .../category-chart/axis-range/.stackblitzrc | 2 +- .../category-chart/axis-range/angular.json | 94 +++++++++------- .../category-chart/axis-range/package.json | 38 +++---- .../axis-range/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../axis-range/src/config/tsconfig.app.json | 12 -- .../axis-range/src/config/tsconfig.base.json | 24 ---- .../axis-range/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../axis-range/tsconfig.app.json | 10 ++ .../category-chart/axis-range/tsconfig.json | 44 ++++---- .../axis-tickmarks/.codesandbox/Dockerfile | 1 + .../axis-tickmarks/.codesandbox/tasks.json | 17 +++ .../axis-tickmarks/.stackblitzrc | 2 +- .../axis-tickmarks/angular.json | 94 +++++++++------- .../axis-tickmarks/package.json | 38 +++---- .../axis-tickmarks/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../axis-tickmarks/tsconfig.app.json | 10 ++ .../axis-tickmarks/tsconfig.json | 44 ++++---- .../axis-titles/.codesandbox/Dockerfile | 1 + .../axis-titles/.codesandbox/tasks.json | 17 +++ .../category-chart/axis-titles/.stackblitzrc | 2 +- .../category-chart/axis-titles/angular.json | 94 +++++++++------- .../category-chart/axis-titles/package.json | 38 +++---- .../axis-titles/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../axis-titles/src/config/tsconfig.app.json | 12 -- .../axis-titles/src/config/tsconfig.base.json | 24 ---- .../axis-titles/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../axis-titles/tsconfig.app.json | 10 ++ .../category-chart/axis-titles/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../chart-highlight-filter/.stackblitzrc | 2 +- .../chart-highlight-filter/angular.json | 94 +++++++++------- .../chart-highlight-filter/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../chart-highlight-filter/tsconfig.app.json | 10 ++ .../chart-highlight-filter/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../column-chart-single-source/.stackblitzrc | 2 +- .../column-chart-single-source/angular.json | 94 +++++++++------- .../column-chart-single-source/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../column-chart-single-source/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../column-chart-styling/.stackblitzrc | 2 +- .../column-chart-styling/angular.json | 94 +++++++++------- .../column-chart-styling/package.json | 38 +++---- .../column-chart-styling/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../column-chart-styling/tsconfig.app.json | 10 ++ .../column-chart-styling/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../column-chart-with-tooltips/.stackblitzrc | 2 +- .../column-chart-with-tooltips/angular.json | 94 +++++++++------- .../column-chart-with-tooltips/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../column-chart-with-tooltips/tsconfig.json | 44 ++++---- .../custom-selection/.codesandbox/Dockerfile | 1 + .../custom-selection/.codesandbox/tasks.json | 17 +++ .../custom-selection/.stackblitzrc | 2 +- .../custom-selection/angular.json | 94 +++++++++------- .../custom-selection/package.json | 38 +++---- .../custom-selection/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../custom-selection/tsconfig.app.json | 10 ++ .../custom-selection/tsconfig.json | 44 ++++---- .../data-aggregations/.codesandbox/Dockerfile | 1 + .../data-aggregations/.codesandbox/tasks.json | 17 +++ .../data-aggregations/.stackblitzrc | 2 +- .../data-aggregations/angular.json | 94 +++++++++------- .../data-aggregations/package.json | 38 +++---- .../data-aggregations/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../data-aggregations/tsconfig.app.json | 10 ++ .../data-aggregations/tsconfig.json | 44 ++++---- .../data-filter/.codesandbox/Dockerfile | 1 + .../data-filter/.codesandbox/tasks.json | 17 +++ .../category-chart/data-filter/.stackblitzrc | 2 +- .../category-chart/data-filter/angular.json | 94 +++++++++------- .../category-chart/data-filter/package.json | 38 +++---- .../data-filter/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../data-filter/src/config/tsconfig.app.json | 12 -- .../data-filter/src/config/tsconfig.base.json | 24 ---- .../data-filter/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../data-filter/tsconfig.app.json | 10 ++ .../category-chart/data-filter/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../data-legend/.codesandbox/Dockerfile | 1 + .../data-legend/.codesandbox/tasks.json | 17 +++ .../category-chart/data-legend/.stackblitzrc | 2 +- .../category-chart/data-legend/angular.json | 94 +++++++++------- .../category-chart/data-legend/package.json | 38 +++---- .../data-legend/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../data-legend/src/config/tsconfig.app.json | 12 -- .../data-legend/src/config/tsconfig.base.json | 24 ---- .../data-legend/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../data-legend/tsconfig.app.json | 10 ++ .../category-chart/data-legend/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../data-tooltip-positioning/.stackblitzrc | 2 +- .../data-tooltip-positioning/angular.json | 94 +++++++++------- .../data-tooltip-positioning/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../data-tooltip-positioning/tsconfig.json | 44 ++++---- .../data-tooltip/.codesandbox/Dockerfile | 1 + .../data-tooltip/.codesandbox/tasks.json | 17 +++ .../category-chart/data-tooltip/.stackblitzrc | 2 +- .../category-chart/data-tooltip/angular.json | 94 +++++++++------- .../category-chart/data-tooltip/package.json | 38 +++---- .../data-tooltip/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../data-tooltip/src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../data-tooltip/tsconfig.app.json | 10 ++ .../category-chart/data-tooltip/tsconfig.json | 44 ++++---- .../format-specifiers/.codesandbox/Dockerfile | 1 + .../format-specifiers/.codesandbox/tasks.json | 17 +++ .../format-specifiers/.stackblitzrc | 2 +- .../format-specifiers/angular.json | 94 +++++++++------- .../format-specifiers/package.json | 38 +++---- .../format-specifiers/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../format-specifiers/tsconfig.app.json | 10 ++ .../format-specifiers/tsconfig.json | 44 ++++---- .../high-frequency/.codesandbox/Dockerfile | 1 + .../high-frequency/.codesandbox/tasks.json | 17 +++ .../high-frequency/.stackblitzrc | 2 +- .../high-frequency/angular.json | 94 +++++++++------- .../high-frequency/package.json | 38 +++---- .../high-frequency/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../high-frequency/tsconfig.app.json | 10 ++ .../high-frequency/tsconfig.json | 44 ++++---- .../high-volume/.codesandbox/Dockerfile | 1 + .../high-volume/.codesandbox/tasks.json | 17 +++ .../category-chart/high-volume/.stackblitzrc | 2 +- .../category-chart/high-volume/angular.json | 94 +++++++++------- .../category-chart/high-volume/package.json | 38 +++---- .../high-volume/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../high-volume/src/config/tsconfig.app.json | 12 -- .../high-volume/src/config/tsconfig.base.json | 24 ---- .../high-volume/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../high-volume/tsconfig.app.json | 10 ++ .../category-chart/high-volume/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../highlighting-behavior/.stackblitzrc | 2 +- .../highlighting-behavior/angular.json | 94 +++++++++------- .../highlighting-behavior/package.json | 38 +++---- .../highlighting-behavior/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../highlighting-behavior/tsconfig.app.json | 10 ++ .../highlighting-behavior/tsconfig.json | 44 ++++---- .../highlighting-mode/.codesandbox/Dockerfile | 1 + .../highlighting-mode/.codesandbox/tasks.json | 17 +++ .../highlighting-mode/.stackblitzrc | 2 +- .../highlighting-mode/angular.json | 94 +++++++++------- .../highlighting-mode/package.json | 38 +++---- .../highlighting-mode/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../highlighting-mode/tsconfig.app.json | 10 ++ .../highlighting-mode/tsconfig.json | 44 ++++---- .../highlighting/.codesandbox/Dockerfile | 1 + .../highlighting/.codesandbox/tasks.json | 17 +++ .../category-chart/highlighting/.stackblitzrc | 2 +- .../category-chart/highlighting/angular.json | 94 +++++++++------- .../category-chart/highlighting/package.json | 38 +++---- .../highlighting/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../highlighting/src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../highlighting/tsconfig.app.json | 10 ++ .../category-chart/highlighting/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../legend-highlighting/.stackblitzrc | 2 +- .../legend-highlighting/angular.json | 94 +++++++++------- .../legend-highlighting/package.json | 38 +++---- .../legend-highlighting/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../legend-highlighting/tsconfig.app.json | 10 ++ .../legend-highlighting/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../line-chart-multiple-sources/.stackblitzrc | 2 +- .../line-chart-multiple-sources/angular.json | 94 +++++++++------- .../line-chart-multiple-sources/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../line-chart-multiple-sources/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../line-chart-single-source/.stackblitzrc | 2 +- .../line-chart-single-source/angular.json | 94 +++++++++------- .../line-chart-single-source/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../line-chart-single-source/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../line-chart-styling/.stackblitzrc | 2 +- .../line-chart-styling/angular.json | 94 +++++++++------- .../line-chart-styling/package.json | 38 +++---- .../line-chart-styling/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../line-chart-styling/tsconfig.app.json | 10 ++ .../line-chart-styling/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../line-chart-with-animations/.stackblitzrc | 2 +- .../line-chart-with-animations/angular.json | 94 +++++++++------- .../line-chart-with-animations/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../line-chart-with-animations/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../line-chart-with-annotations/.stackblitzrc | 2 +- .../line-chart-with-annotations/angular.json | 94 +++++++++------- .../line-chart-with-annotations/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../line-chart-with-annotations/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../line-chart-with-legend/.stackblitzrc | 2 +- .../line-chart-with-legend/angular.json | 94 +++++++++------- .../line-chart-with-legend/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../line-chart-with-legend/tsconfig.app.json | 10 ++ .../line-chart-with-legend/tsconfig.json | 44 ++++---- .../marker-options/.codesandbox/Dockerfile | 1 + .../marker-options/.codesandbox/tasks.json | 17 +++ .../marker-options/.stackblitzrc | 2 +- .../marker-options/angular.json | 94 +++++++++------- .../marker-options/package.json | 38 +++---- .../marker-options/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../marker-options/tsconfig.app.json | 10 ++ .../marker-options/tsconfig.json | 44 ++++---- .../marker-templates/.codesandbox/Dockerfile | 1 + .../marker-templates/.codesandbox/tasks.json | 17 +++ .../marker-templates/.stackblitzrc | 2 +- .../marker-templates/angular.json | 94 +++++++++------- .../marker-templates/package.json | 38 +++---- .../marker-templates/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../marker-templates/tsconfig.app.json | 10 ++ .../marker-templates/tsconfig.json | 44 ++++---- .../overview/.codesandbox/Dockerfile | 1 + .../overview/.codesandbox/tasks.json | 17 +++ .../category-chart/overview/.stackblitzrc | 2 +- .../category-chart/overview/angular.json | 94 +++++++++------- .../category-chart/overview/package.json | 38 +++---- .../overview/sandbox.config.json | 5 - .../overview/src/config/tsconfig-es5.app.json | 6 - .../overview/src/config/tsconfig.app.json | 12 -- .../overview/src/config/tsconfig.base.json | 24 ---- .../overview/src/config/tsconfig.spec.json | 19 ---- .../overview/src/config/tsconfig.worker.json | 14 --- .../category-chart/overview/tsconfig.app.json | 10 ++ .../category-chart/overview/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../point-chart-multiple-sources/angular.json | 94 +++++++++------- .../point-chart-multiple-sources/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../point-chart-single-source/.stackblitzrc | 2 +- .../point-chart-single-source/angular.json | 94 +++++++++------- .../point-chart-single-source/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../point-chart-single-source/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../point-chart-styling/.stackblitzrc | 2 +- .../point-chart-styling/angular.json | 94 +++++++++------- .../point-chart-styling/package.json | 38 +++---- .../point-chart-styling/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../point-chart-styling/tsconfig.app.json | 10 ++ .../point-chart-styling/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../spline-area-multiple-sources/angular.json | 94 +++++++++------- .../spline-area-multiple-sources/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../spline-area-single-source/.stackblitzrc | 2 +- .../spline-area-single-source/angular.json | 94 +++++++++------- .../spline-area-single-source/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../spline-area-single-source/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../spline-area-styling/.stackblitzrc | 2 +- .../spline-area-styling/angular.json | 94 +++++++++------- .../spline-area-styling/package.json | 38 +++---- .../spline-area-styling/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../spline-area-styling/tsconfig.app.json | 10 ++ .../spline-area-styling/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../spline-multiple-sources/.stackblitzrc | 2 +- .../spline-multiple-sources/angular.json | 94 +++++++++------- .../spline-multiple-sources/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../spline-multiple-sources/tsconfig.app.json | 10 ++ .../spline-multiple-sources/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../spline-single-source/.stackblitzrc | 2 +- .../spline-single-source/angular.json | 94 +++++++++------- .../spline-single-source/package.json | 38 +++---- .../spline-single-source/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../spline-single-source/tsconfig.app.json | 10 ++ .../spline-single-source/tsconfig.json | 44 ++++---- .../spline-styling/.codesandbox/Dockerfile | 1 + .../spline-styling/.codesandbox/tasks.json | 17 +++ .../spline-styling/.stackblitzrc | 2 +- .../spline-styling/angular.json | 94 +++++++++------- .../spline-styling/package.json | 38 +++---- .../spline-styling/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../spline-styling/tsconfig.app.json | 10 ++ .../spline-styling/tsconfig.json | 44 ++++---- .../stack-columns/.codesandbox/Dockerfile | 1 + .../stack-columns/.codesandbox/tasks.json | 17 +++ .../stack-columns/.stackblitzrc | 2 +- .../category-chart/stack-columns/angular.json | 94 +++++++++------- .../category-chart/stack-columns/package.json | 38 +++---- .../stack-columns/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../stack-columns/tsconfig.app.json | 10 ++ .../stack-columns/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../step-area-multiple-sources/.stackblitzrc | 2 +- .../step-area-multiple-sources/angular.json | 94 +++++++++------- .../step-area-multiple-sources/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../step-area-multiple-sources/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../step-area-single-source/.stackblitzrc | 2 +- .../step-area-single-source/angular.json | 94 +++++++++------- .../step-area-single-source/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../step-area-single-source/tsconfig.app.json | 10 ++ .../step-area-single-source/tsconfig.json | 44 ++++---- .../step-area-styling/.codesandbox/Dockerfile | 1 + .../step-area-styling/.codesandbox/tasks.json | 17 +++ .../step-area-styling/.stackblitzrc | 2 +- .../step-area-styling/angular.json | 94 +++++++++------- .../step-area-styling/package.json | 38 +++---- .../step-area-styling/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../step-area-styling/tsconfig.app.json | 10 ++ .../step-area-styling/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../step-line-multiple-sources/.stackblitzrc | 2 +- .../step-line-multiple-sources/angular.json | 94 +++++++++------- .../step-line-multiple-sources/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../step-line-multiple-sources/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../step-line-single-source/.stackblitzrc | 2 +- .../step-line-single-source/angular.json | 94 +++++++++------- .../step-line-single-source/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../step-line-single-source/tsconfig.app.json | 10 ++ .../step-line-single-source/tsconfig.json | 44 ++++---- .../step-line-styling/.codesandbox/Dockerfile | 1 + .../step-line-styling/.codesandbox/tasks.json | 17 +++ .../step-line-styling/.stackblitzrc | 2 +- .../step-line-styling/angular.json | 94 +++++++++------- .../step-line-styling/package.json | 38 +++---- .../step-line-styling/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../step-line-styling/tsconfig.app.json | 10 ++ .../step-line-styling/tsconfig.json | 44 ++++---- .../tooltip-template/.codesandbox/Dockerfile | 1 + .../tooltip-template/.codesandbox/tasks.json | 17 +++ .../tooltip-template/.stackblitzrc | 2 +- .../tooltip-template/angular.json | 94 +++++++++------- .../tooltip-template/package.json | 38 +++---- .../tooltip-template/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tooltip-template/tsconfig.app.json | 10 ++ .../tooltip-template/tsconfig.json | 44 ++++---- .../tooltip-types/.codesandbox/Dockerfile | 1 + .../tooltip-types/.codesandbox/tasks.json | 17 +++ .../tooltip-types/.stackblitzrc | 2 +- .../category-chart/tooltip-types/angular.json | 94 +++++++++------- .../category-chart/tooltip-types/package.json | 38 +++---- .../tooltip-types/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tooltip-types/tsconfig.app.json | 10 ++ .../tooltip-types/tsconfig.json | 44 ++++---- .../trendline/.codesandbox/Dockerfile | 1 + .../trendline/.codesandbox/tasks.json | 17 +++ .../category-chart/trendline/.stackblitzrc | 2 +- .../category-chart/trendline/angular.json | 94 +++++++++------- .../category-chart/trendline/package.json | 38 +++---- .../trendline/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../trendline/src/config/tsconfig.app.json | 12 -- .../trendline/src/config/tsconfig.base.json | 24 ---- .../trendline/src/config/tsconfig.spec.json | 19 ---- .../trendline/src/config/tsconfig.worker.json | 14 --- .../trendline/tsconfig.app.json | 10 ++ .../category-chart/trendline/tsconfig.json | 44 ++++---- .../value-lines/.codesandbox/Dockerfile | 1 + .../value-lines/.codesandbox/tasks.json | 17 +++ .../category-chart/value-lines/.stackblitzrc | 2 +- .../category-chart/value-lines/angular.json | 94 +++++++++------- .../category-chart/value-lines/package.json | 38 +++---- .../value-lines/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../value-lines/src/config/tsconfig.app.json | 12 -- .../value-lines/src/config/tsconfig.base.json | 24 ---- .../value-lines/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../value-lines/tsconfig.app.json | 10 ++ .../category-chart/value-lines/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../annotations-custom/.stackblitzrc | 2 +- .../annotations-custom/angular.json | 94 +++++++++------- .../annotations-custom/package.json | 38 +++---- .../annotations-custom/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../annotations-custom/tsconfig.app.json | 10 ++ .../annotations-custom/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../axis-annotations/.codesandbox/Dockerfile | 1 + .../axis-annotations/.codesandbox/tasks.json | 17 +++ .../data-chart/axis-annotations/.stackblitzrc | 2 +- .../data-chart/axis-annotations/angular.json | 94 +++++++++------- .../data-chart/axis-annotations/package.json | 38 +++---- .../axis-annotations/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../axis-annotations/tsconfig.app.json | 10 ++ .../data-chart/axis-annotations/tsconfig.json | 44 ++++---- .../axis-crossing/.codesandbox/Dockerfile | 1 + .../axis-crossing/.codesandbox/tasks.json | 17 +++ .../data-chart/axis-crossing/.stackblitzrc | 2 +- .../data-chart/axis-crossing/angular.json | 94 +++++++++------- .../data-chart/axis-crossing/package.json | 38 +++---- .../axis-crossing/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../axis-crossing/tsconfig.app.json | 10 ++ .../data-chart/axis-crossing/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../axis-label-rotation/.stackblitzrc | 2 +- .../axis-label-rotation/angular.json | 94 +++++++++------- .../axis-label-rotation/package.json | 38 +++---- .../axis-label-rotation/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../axis-label-rotation/tsconfig.app.json | 10 ++ .../axis-label-rotation/tsconfig.json | 44 ++++---- .../axis-locations/.codesandbox/Dockerfile | 1 + .../axis-locations/.codesandbox/tasks.json | 17 +++ .../data-chart/axis-locations/.stackblitzrc | 2 +- .../data-chart/axis-locations/angular.json | 94 +++++++++------- .../data-chart/axis-locations/package.json | 38 +++---- .../axis-locations/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../axis-locations/tsconfig.app.json | 10 ++ .../data-chart/axis-locations/tsconfig.json | 44 ++++---- .../axis-min-max-gap/.codesandbox/Dockerfile | 1 + .../axis-min-max-gap/.codesandbox/tasks.json | 17 +++ .../data-chart/axis-min-max-gap/.stackblitzrc | 2 +- .../data-chart/axis-min-max-gap/angular.json | 94 +++++++++------- .../data-chart/axis-min-max-gap/package.json | 38 +++---- .../axis-min-max-gap/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../axis-min-max-gap/tsconfig.app.json | 10 ++ .../data-chart/axis-min-max-gap/tsconfig.json | 44 ++++---- .../axis-settings/.codesandbox/Dockerfile | 1 + .../axis-settings/.codesandbox/tasks.json | 17 +++ .../data-chart/axis-settings/.stackblitzrc | 2 +- .../data-chart/axis-settings/angular.json | 94 +++++++++------- .../data-chart/axis-settings/package.json | 38 +++---- .../axis-settings/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../axis-settings/tsconfig.app.json | 10 ++ .../data-chart/axis-settings/tsconfig.json | 44 ++++---- .../axis-sharing/.codesandbox/Dockerfile | 1 + .../axis-sharing/.codesandbox/tasks.json | 17 +++ .../data-chart/axis-sharing/.stackblitzrc | 2 +- .../data-chart/axis-sharing/angular.json | 94 +++++++++------- .../data-chart/axis-sharing/package.json | 38 +++---- .../axis-sharing/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../axis-sharing/src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../data-chart/axis-sharing/tsconfig.app.json | 10 ++ .../data-chart/axis-sharing/tsconfig.json | 44 ++++---- .../axis-types/.codesandbox/Dockerfile | 1 + .../axis-types/.codesandbox/tasks.json | 17 +++ .../data-chart/axis-types/.stackblitzrc | 2 +- .../charts/data-chart/axis-types/angular.json | 94 +++++++++------- .../charts/data-chart/axis-types/package.json | 38 +++---- .../data-chart/axis-types/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../axis-types/src/config/tsconfig.app.json | 12 -- .../axis-types/src/config/tsconfig.base.json | 24 ---- .../axis-types/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../data-chart/axis-types/tsconfig.app.json | 10 ++ .../data-chart/axis-types/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../bar-chart-multiple-sources/.stackblitzrc | 2 +- .../bar-chart-multiple-sources/angular.json | 94 +++++++++------- .../bar-chart-multiple-sources/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../bar-chart-multiple-sources/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../bar-chart-overlapping/.stackblitzrc | 2 +- .../bar-chart-overlapping/angular.json | 94 +++++++++------- .../bar-chart-overlapping/package.json | 38 +++---- .../bar-chart-overlapping/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../bar-chart-overlapping/tsconfig.app.json | 10 ++ .../bar-chart-overlapping/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../bar-chart-single-source/.stackblitzrc | 2 +- .../bar-chart-single-source/angular.json | 94 +++++++++------- .../bar-chart-single-source/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../bar-chart-single-source/tsconfig.app.json | 10 ++ .../bar-chart-single-source/tsconfig.json | 44 ++++---- .../bar-chart-styling/.codesandbox/Dockerfile | 1 + .../bar-chart-styling/.codesandbox/tasks.json | 17 +++ .../bar-chart-styling/.stackblitzrc | 2 +- .../data-chart/bar-chart-styling/angular.json | 94 +++++++++------- .../data-chart/bar-chart-styling/package.json | 38 +++---- .../bar-chart-styling/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../bar-chart-styling/tsconfig.app.json | 10 ++ .../bar-chart-styling/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../callout-layer-styling/.stackblitzrc | 2 +- .../callout-layer-styling/angular.json | 94 +++++++++------- .../callout-layer-styling/package.json | 38 +++---- .../callout-layer-styling/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../callout-layer-styling/tsconfig.app.json | 10 ++ .../callout-layer-styling/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../chart-highlight-filter/.stackblitzrc | 2 +- .../chart-highlight-filter/angular.json | 94 +++++++++------- .../chart-highlight-filter/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../chart-highlight-filter/tsconfig.app.json | 10 ++ .../chart-highlight-filter/tsconfig.json | 44 ++++---- .../chart-navigation/.codesandbox/Dockerfile | 1 + .../chart-navigation/.codesandbox/tasks.json | 17 +++ .../data-chart/chart-navigation/.stackblitzrc | 2 +- .../data-chart/chart-navigation/angular.json | 94 +++++++++------- .../data-chart/chart-navigation/package.json | 38 +++---- .../chart-navigation/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../chart-navigation/tsconfig.app.json | 10 ++ .../data-chart/chart-navigation/tsconfig.json | 44 ++++---- .../chart-overview/.codesandbox/Dockerfile | 1 + .../chart-overview/.codesandbox/tasks.json | 17 +++ .../data-chart/chart-overview/.stackblitzrc | 2 +- .../data-chart/chart-overview/angular.json | 94 +++++++++------- .../data-chart/chart-overview/package.json | 38 +++---- .../chart-overview/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../chart-overview/tsconfig.app.json | 10 ++ .../data-chart/chart-overview/tsconfig.json | 44 ++++---- .../chart-performance/.codesandbox/Dockerfile | 1 + .../chart-performance/.codesandbox/tasks.json | 17 +++ .../chart-performance/.stackblitzrc | 2 +- .../data-chart/chart-performance/angular.json | 94 +++++++++------- .../data-chart/chart-performance/package.json | 38 +++---- .../chart-performance/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../chart-performance/tsconfig.app.json | 10 ++ .../chart-performance/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../chart-synchronization/.stackblitzrc | 2 +- .../chart-synchronization/angular.json | 94 +++++++++------- .../chart-synchronization/package.json | 38 +++---- .../chart-synchronization/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../chart-synchronization/tsconfig.app.json | 10 ++ .../chart-synchronization/tsconfig.json | 44 ++++---- .../chart-titles/.codesandbox/Dockerfile | 1 + .../chart-titles/.codesandbox/tasks.json | 17 +++ .../data-chart/chart-titles/.stackblitzrc | 2 +- .../data-chart/chart-titles/angular.json | 94 +++++++++------- .../data-chart/chart-titles/package.json | 38 +++---- .../chart-titles/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../chart-titles/src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../data-chart/chart-titles/tsconfig.app.json | 10 ++ .../data-chart/chart-titles/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../column-chart-styling/.stackblitzrc | 2 +- .../column-chart-styling/angular.json | 94 +++++++++------- .../column-chart-styling/package.json | 38 +++---- .../column-chart-styling/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../column-chart-styling/tsconfig.app.json | 10 ++ .../column-chart-styling/tsconfig.json | 44 ++++---- .../composite-chart/.codesandbox/Dockerfile | 1 + .../composite-chart/.codesandbox/tasks.json | 17 +++ .../data-chart/composite-chart/.stackblitzrc | 2 +- .../data-chart/composite-chart/angular.json | 94 +++++++++------- .../data-chart/composite-chart/package.json | 38 +++---- .../composite-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../composite-chart/tsconfig.app.json | 10 ++ .../data-chart/composite-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../crosshair-layer-styling/.stackblitzrc | 2 +- .../crosshair-layer-styling/angular.json | 94 +++++++++------- .../crosshair-layer-styling/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../crosshair-layer-styling/tsconfig.app.json | 10 ++ .../crosshair-layer-styling/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../custom-drawing-annotations/.stackblitzrc | 2 +- .../custom-drawing-annotations/angular.json | 94 +++++++++------- .../custom-drawing-annotations/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../custom-drawing-annotations/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../custom-editing-data/.stackblitzrc | 2 +- .../custom-editing-data/angular.json | 94 +++++++++------- .../custom-editing-data/package.json | 38 +++---- .../custom-editing-data/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../custom-editing-data/tsconfig.app.json | 10 ++ .../custom-editing-data/tsconfig.json | 44 ++++---- .../dash-array-axes/.codesandbox/Dockerfile | 1 + .../dash-array-axes/.codesandbox/tasks.json | 17 +++ .../data-chart/dash-array-axes/.stackblitzrc | 2 +- .../data-chart/dash-array-axes/angular.json | 94 +++++++++------- .../data-chart/dash-array-axes/package.json | 38 +++---- .../dash-array-axes/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../dash-array-axes/tsconfig.app.json | 10 ++ .../data-chart/dash-array-axes/tsconfig.json | 44 ++++---- .../dash-array-series/.codesandbox/Dockerfile | 1 + .../dash-array-series/.codesandbox/tasks.json | 17 +++ .../dash-array-series/.stackblitzrc | 2 +- .../data-chart/dash-array-series/angular.json | 94 +++++++++------- .../data-chart/dash-array-series/package.json | 38 +++---- .../dash-array-series/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../dash-array-series/tsconfig.app.json | 10 ++ .../dash-array-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../dash-array-tickmarks/.stackblitzrc | 2 +- .../dash-array-tickmarks/angular.json | 94 +++++++++------- .../dash-array-tickmarks/package.json | 38 +++---- .../dash-array-tickmarks/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../dash-array-tickmarks/tsconfig.app.json | 10 ++ .../dash-array-tickmarks/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../dash-array-trendline/.stackblitzrc | 2 +- .../dash-array-trendline/angular.json | 94 +++++++++------- .../dash-array-trendline/package.json | 38 +++---- .../dash-array-trendline/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../dash-array-trendline/tsconfig.app.json | 10 ++ .../dash-array-trendline/tsconfig.json | 44 ++++---- .../data-legend/.codesandbox/Dockerfile | 1 + .../data-legend/.codesandbox/tasks.json | 17 +++ .../data-chart/data-legend/.stackblitzrc | 2 +- .../data-chart/data-legend/angular.json | 94 +++++++++------- .../data-chart/data-legend/package.json | 38 +++---- .../data-legend/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../data-legend/src/config/tsconfig.app.json | 12 -- .../data-legend/src/config/tsconfig.base.json | 24 ---- .../data-legend/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../data-chart/data-legend/tsconfig.app.json | 10 ++ .../data-chart/data-legend/tsconfig.json | 44 ++++---- .../data-tooltip/.codesandbox/Dockerfile | 1 + .../data-tooltip/.codesandbox/tasks.json | 17 +++ .../data-chart/data-tooltip/.stackblitzrc | 2 +- .../data-chart/data-tooltip/angular.json | 94 +++++++++------- .../data-chart/data-tooltip/package.json | 38 +++---- .../data-tooltip/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../data-tooltip/src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../data-chart/data-tooltip/tsconfig.app.json | 10 ++ .../data-chart/data-tooltip/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../final-value-layer-styling/.stackblitzrc | 2 +- .../final-value-layer-styling/angular.json | 94 +++++++++------- .../final-value-layer-styling/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../final-value-layer-styling/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../financial-price-series/.stackblitzrc | 2 +- .../financial-price-series/angular.json | 94 +++++++++------- .../financial-price-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../financial-price-series/tsconfig.app.json | 10 ++ .../financial-price-series/tsconfig.json | 44 ++++---- .../format-specifiers/.codesandbox/Dockerfile | 1 + .../format-specifiers/.codesandbox/tasks.json | 17 +++ .../format-specifiers/.stackblitzrc | 2 +- .../data-chart/format-specifiers/angular.json | 94 +++++++++------- .../data-chart/format-specifiers/package.json | 38 +++---- .../format-specifiers/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../format-specifiers/tsconfig.app.json | 10 ++ .../format-specifiers/tsconfig.json | 44 ++++---- .../legends/.codesandbox/Dockerfile | 1 + .../legends/.codesandbox/tasks.json | 17 +++ .../charts/data-chart/legends/.stackblitzrc | 2 +- .../charts/data-chart/legends/angular.json | 94 +++++++++------- .../charts/data-chart/legends/package.json | 38 +++---- .../data-chart/legends/sandbox.config.json | 5 - .../legends/src/config/tsconfig-es5.app.json | 6 - .../legends/src/config/tsconfig.app.json | 12 -- .../legends/src/config/tsconfig.base.json | 24 ---- .../legends/src/config/tsconfig.spec.json | 19 ---- .../legends/src/config/tsconfig.worker.json | 14 --- .../data-chart/legends/tsconfig.app.json | 10 ++ .../charts/data-chart/legends/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../polar-area-chart-styling/.stackblitzrc | 2 +- .../polar-area-chart-styling/angular.json | 94 +++++++++------- .../polar-area-chart-styling/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../polar-area-chart-styling/tsconfig.json | 44 ++++---- .../polar-area-chart/.codesandbox/Dockerfile | 1 + .../polar-area-chart/.codesandbox/tasks.json | 17 +++ .../data-chart/polar-area-chart/.stackblitzrc | 2 +- .../data-chart/polar-area-chart/angular.json | 94 +++++++++------- .../data-chart/polar-area-chart/package.json | 38 +++---- .../polar-area-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../polar-area-chart/tsconfig.app.json | 10 ++ .../data-chart/polar-area-chart/tsconfig.json | 44 ++++---- .../polar-chart-types/.codesandbox/Dockerfile | 1 + .../polar-chart-types/.codesandbox/tasks.json | 17 +++ .../polar-chart-types/.stackblitzrc | 2 +- .../data-chart/polar-chart-types/angular.json | 94 +++++++++------- .../data-chart/polar-chart-types/package.json | 38 +++---- .../polar-chart-types/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../polar-chart-types/tsconfig.app.json | 10 ++ .../polar-chart-types/tsconfig.json | 44 ++++---- .../polar-line-chart/.codesandbox/Dockerfile | 1 + .../polar-line-chart/.codesandbox/tasks.json | 17 +++ .../data-chart/polar-line-chart/.stackblitzrc | 2 +- .../data-chart/polar-line-chart/angular.json | 94 +++++++++------- .../data-chart/polar-line-chart/package.json | 38 +++---- .../polar-line-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../polar-line-chart/tsconfig.app.json | 10 ++ .../data-chart/polar-line-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../polar-scatter-chart/.stackblitzrc | 2 +- .../polar-scatter-chart/angular.json | 94 +++++++++------- .../polar-scatter-chart/package.json | 38 +++---- .../polar-scatter-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../polar-scatter-chart/tsconfig.app.json | 10 ++ .../polar-scatter-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../polar-spline-area-chart/.stackblitzrc | 2 +- .../polar-spline-area-chart/angular.json | 94 +++++++++------- .../polar-spline-area-chart/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../polar-spline-area-chart/tsconfig.app.json | 10 ++ .../polar-spline-area-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../polar-spline-chart/.stackblitzrc | 2 +- .../polar-spline-chart/angular.json | 94 +++++++++------- .../polar-spline-chart/package.json | 38 +++---- .../polar-spline-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../polar-spline-chart/tsconfig.app.json | 10 ++ .../polar-spline-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../radial-area-chart-styling/.stackblitzrc | 2 +- .../radial-area-chart-styling/angular.json | 94 +++++++++------- .../radial-area-chart-styling/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../radial-area-chart-styling/tsconfig.json | 44 ++++---- .../radial-area-chart/.codesandbox/Dockerfile | 1 + .../radial-area-chart/.codesandbox/tasks.json | 17 +++ .../radial-area-chart/.stackblitzrc | 2 +- .../data-chart/radial-area-chart/angular.json | 94 +++++++++------- .../data-chart/radial-area-chart/package.json | 38 +++---- .../radial-area-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../radial-area-chart/tsconfig.app.json | 10 ++ .../radial-area-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../radial-chart-types/.stackblitzrc | 2 +- .../radial-chart-types/angular.json | 94 +++++++++------- .../radial-chart-types/package.json | 38 +++---- .../radial-chart-types/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../radial-chart-types/tsconfig.app.json | 10 ++ .../radial-chart-types/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../radial-column-chart/.stackblitzrc | 2 +- .../radial-column-chart/angular.json | 94 +++++++++------- .../radial-column-chart/package.json | 38 +++---- .../radial-column-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../radial-column-chart/tsconfig.app.json | 10 ++ .../radial-column-chart/tsconfig.json | 44 ++++---- .../radial-line-chart/.codesandbox/Dockerfile | 1 + .../radial-line-chart/.codesandbox/tasks.json | 17 +++ .../radial-line-chart/.stackblitzrc | 2 +- .../data-chart/radial-line-chart/angular.json | 94 +++++++++------- .../data-chart/radial-line-chart/package.json | 38 +++---- .../radial-line-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../radial-line-chart/tsconfig.app.json | 10 ++ .../radial-line-chart/tsconfig.json | 44 ++++---- .../radial-pie-chart/.codesandbox/Dockerfile | 1 + .../radial-pie-chart/.codesandbox/tasks.json | 17 +++ .../data-chart/radial-pie-chart/.stackblitzrc | 2 +- .../data-chart/radial-pie-chart/angular.json | 94 +++++++++------- .../data-chart/radial-pie-chart/package.json | 38 +++---- .../radial-pie-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../radial-pie-chart/tsconfig.app.json | 10 ++ .../data-chart/radial-pie-chart/tsconfig.json | 44 ++++---- .../range-area-chart/.codesandbox/Dockerfile | 1 + .../range-area-chart/.codesandbox/tasks.json | 17 +++ .../data-chart/range-area-chart/.stackblitzrc | 2 +- .../data-chart/range-area-chart/angular.json | 94 +++++++++------- .../data-chart/range-area-chart/package.json | 38 +++---- .../range-area-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../range-area-chart/tsconfig.app.json | 10 ++ .../data-chart/range-area-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../range-column-chart/.stackblitzrc | 2 +- .../range-column-chart/angular.json | 94 +++++++++------- .../range-column-chart/package.json | 38 +++---- .../range-column-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../range-column-chart/tsconfig.app.json | 10 ++ .../range-column-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../scatter-bubble-chart-styling/angular.json | 94 +++++++++------- .../scatter-bubble-chart-styling/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../scatter-line-chart/.stackblitzrc | 2 +- .../scatter-line-chart/angular.json | 94 +++++++++------- .../scatter-line-chart/package.json | 38 +++---- .../scatter-line-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../scatter-line-chart/tsconfig.app.json | 10 ++ .../scatter-line-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../scatter-point-chart/.stackblitzrc | 2 +- .../scatter-point-chart/angular.json | 94 +++++++++------- .../scatter-point-chart/package.json | 38 +++---- .../scatter-point-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../scatter-point-chart/tsconfig.app.json | 10 ++ .../scatter-point-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../scatter-spline-chart/.stackblitzrc | 2 +- .../scatter-spline-chart/angular.json | 94 +++++++++------- .../scatter-spline-chart/package.json | 38 +++---- .../scatter-spline-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../scatter-spline-chart/tsconfig.app.json | 10 ++ .../scatter-spline-chart/tsconfig.json | 44 ++++---- .../series-animations/.codesandbox/Dockerfile | 1 + .../series-animations/.codesandbox/tasks.json | 17 +++ .../series-animations/.stackblitzrc | 2 +- .../data-chart/series-animations/angular.json | 94 +++++++++------- .../data-chart/series-animations/package.json | 38 +++---- .../series-animations/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../series-animations/tsconfig.app.json | 10 ++ .../series-animations/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../series-annotations/.stackblitzrc | 2 +- .../series-annotations/angular.json | 94 +++++++++------- .../series-annotations/package.json | 38 +++---- .../series-annotations/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../series-annotations/tsconfig.app.json | 10 ++ .../series-annotations/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../series-highlighting/.stackblitzrc | 2 +- .../series-highlighting/angular.json | 94 +++++++++------- .../series-highlighting/package.json | 38 +++---- .../series-highlighting/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../series-highlighting/tsconfig.app.json | 10 ++ .../series-highlighting/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../series-marker-template/.stackblitzrc | 2 +- .../series-marker-template/angular.json | 94 +++++++++------- .../series-marker-template/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../series-marker-template/tsconfig.app.json | 10 ++ .../series-marker-template/tsconfig.json | 44 ++++---- .../series-markers/.codesandbox/Dockerfile | 1 + .../series-markers/.codesandbox/tasks.json | 17 +++ .../data-chart/series-markers/.stackblitzrc | 2 +- .../data-chart/series-markers/angular.json | 94 +++++++++------- .../data-chart/series-markers/package.json | 38 +++---- .../series-markers/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../series-markers/tsconfig.app.json | 10 ++ .../data-chart/series-markers/tsconfig.json | 44 ++++---- .../series-tooltips/.codesandbox/Dockerfile | 1 + .../series-tooltips/.codesandbox/tasks.json | 17 +++ .../data-chart/series-tooltips/.stackblitzrc | 2 +- .../data-chart/series-tooltips/angular.json | 94 +++++++++------- .../data-chart/series-tooltips/package.json | 38 +++---- .../series-tooltips/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../series-tooltips/tsconfig.app.json | 10 ++ .../data-chart/series-tooltips/tsconfig.json | 44 ++++---- .../series-trendlines/.codesandbox/Dockerfile | 1 + .../series-trendlines/.codesandbox/tasks.json | 17 +++ .../series-trendlines/.stackblitzrc | 2 +- .../data-chart/series-trendlines/angular.json | 94 +++++++++------- .../data-chart/series-trendlines/package.json | 38 +++---- .../series-trendlines/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../series-trendlines/tsconfig.app.json | 10 ++ .../series-trendlines/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../series-value-overlay/.stackblitzrc | 2 +- .../series-value-overlay/angular.json | 94 +++++++++------- .../series-value-overlay/package.json | 38 +++---- .../series-value-overlay/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../series-value-overlay/tsconfig.app.json | 10 ++ .../series-value-overlay/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../stacked-100-area-chart/.stackblitzrc | 2 +- .../stacked-100-area-chart/angular.json | 94 +++++++++------- .../stacked-100-area-chart/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../stacked-100-area-chart/tsconfig.app.json | 10 ++ .../stacked-100-area-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../stacked-100-bar-chart/.stackblitzrc | 2 +- .../stacked-100-bar-chart/angular.json | 94 +++++++++------- .../stacked-100-bar-chart/package.json | 38 +++---- .../stacked-100-bar-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../stacked-100-bar-chart/tsconfig.app.json | 10 ++ .../stacked-100-bar-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../stacked-100-column-chart/.stackblitzrc | 2 +- .../stacked-100-column-chart/angular.json | 94 +++++++++------- .../stacked-100-column-chart/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../stacked-100-column-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../stacked-100-line-chart/.stackblitzrc | 2 +- .../stacked-100-line-chart/angular.json | 94 +++++++++------- .../stacked-100-line-chart/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../stacked-100-line-chart/tsconfig.app.json | 10 ++ .../stacked-100-line-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../stacked-100-spline-chart/.stackblitzrc | 2 +- .../stacked-100-spline-chart/angular.json | 94 +++++++++------- .../stacked-100-spline-chart/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../stacked-100-spline-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../stacked-area-chart/.stackblitzrc | 2 +- .../stacked-area-chart/angular.json | 94 +++++++++------- .../stacked-area-chart/package.json | 38 +++---- .../stacked-area-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../stacked-area-chart/tsconfig.app.json | 10 ++ .../stacked-area-chart/tsconfig.json | 44 ++++---- .../stacked-bar-chart/.codesandbox/Dockerfile | 1 + .../stacked-bar-chart/.codesandbox/tasks.json | 17 +++ .../stacked-bar-chart/.stackblitzrc | 2 +- .../data-chart/stacked-bar-chart/angular.json | 94 +++++++++------- .../data-chart/stacked-bar-chart/package.json | 38 +++---- .../stacked-bar-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../stacked-bar-chart/tsconfig.app.json | 10 ++ .../stacked-bar-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../stacked-chart-types/.stackblitzrc | 2 +- .../stacked-chart-types/angular.json | 94 +++++++++------- .../stacked-chart-types/package.json | 38 +++---- .../stacked-chart-types/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../stacked-chart-types/tsconfig.app.json | 10 ++ .../stacked-chart-types/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../stacked-column-chart/.stackblitzrc | 2 +- .../stacked-column-chart/angular.json | 94 +++++++++------- .../stacked-column-chart/package.json | 38 +++---- .../stacked-column-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../stacked-column-chart/tsconfig.app.json | 10 ++ .../stacked-column-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../stacked-line-chart/.stackblitzrc | 2 +- .../stacked-line-chart/angular.json | 94 +++++++++------- .../stacked-line-chart/package.json | 38 +++---- .../stacked-line-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../stacked-line-chart/tsconfig.app.json | 10 ++ .../stacked-line-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../stacked-spline-area-chart/.stackblitzrc | 2 +- .../stacked-spline-area-chart/angular.json | 94 +++++++++------- .../stacked-spline-area-chart/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../stacked-spline-area-chart/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../stacked-spline-chart/.stackblitzrc | 2 +- .../stacked-spline-chart/angular.json | 94 +++++++++------- .../stacked-spline-chart/package.json | 38 +++---- .../stacked-spline-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../stacked-spline-chart/tsconfig.app.json | 10 ++ .../stacked-spline-chart/tsconfig.json | 44 ++++---- .../tooltip-template/.codesandbox/Dockerfile | 1 + .../tooltip-template/.codesandbox/tasks.json | 17 +++ .../data-chart/tooltip-template/.stackblitzrc | 2 +- .../data-chart/tooltip-template/angular.json | 95 +++++++++------- .../data-chart/tooltip-template/package.json | 38 +++---- .../tooltip-template/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tooltip-template/tsconfig.app.json | 10 ++ .../data-chart/tooltip-template/tsconfig.json | 44 ++++---- .../transition-event/.codesandbox/Dockerfile | 1 + .../transition-event/.codesandbox/tasks.json | 17 +++ .../data-chart/transition-event/.stackblitzrc | 2 +- .../data-chart/transition-event/angular.json | 94 +++++++++------- .../data-chart/transition-event/package.json | 38 +++---- .../transition-event/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../transition-event/tsconfig.app.json | 10 ++ .../data-chart/transition-event/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-category-area-series/.stackblitzrc | 2 +- .../type-category-area-series/angular.json | 94 +++++++++------- .../type-category-area-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-category-area-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-category-bar-series/.stackblitzrc | 2 +- .../type-category-bar-series/angular.json | 94 +++++++++------- .../type-category-bar-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-category-bar-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-category-column-series/.stackblitzrc | 2 +- .../type-category-column-series/angular.json | 94 +++++++++------- .../type-category-column-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-category-column-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-category-line-series/.stackblitzrc | 2 +- .../type-category-line-series/angular.json | 94 +++++++++------- .../type-category-line-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-category-line-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-category-point-series/.stackblitzrc | 2 +- .../type-category-point-series/angular.json | 94 +++++++++------- .../type-category-point-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-category-point-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-category-series/.stackblitzrc | 2 +- .../type-category-series/angular.json | 94 +++++++++------- .../type-category-series/package.json | 38 +++---- .../type-category-series/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../type-category-series/tsconfig.app.json | 10 ++ .../type-category-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-category-spline-series/.stackblitzrc | 2 +- .../type-category-spline-series/angular.json | 94 +++++++++------- .../type-category-spline-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-category-spline-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-financial-ohlc-series/.stackblitzrc | 2 +- .../type-financial-ohlc-series/angular.json | 94 +++++++++------- .../type-financial-ohlc-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-financial-ohlc-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-financial-overlays/.stackblitzrc | 2 +- .../type-financial-overlays/angular.json | 94 +++++++++------- .../type-financial-overlays/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../type-financial-overlays/tsconfig.app.json | 10 ++ .../type-financial-overlays/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-financial-series/.stackblitzrc | 2 +- .../type-financial-series/angular.json | 94 +++++++++------- .../type-financial-series/package.json | 38 +++---- .../type-financial-series/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../type-financial-series/tsconfig.app.json | 10 ++ .../type-financial-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-radial-area-series/.stackblitzrc | 2 +- .../type-radial-area-series/angular.json | 94 +++++++++------- .../type-radial-area-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../type-radial-area-series/tsconfig.app.json | 10 ++ .../type-radial-area-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-radial-column-series/.stackblitzrc | 2 +- .../type-radial-column-series/angular.json | 94 +++++++++------- .../type-radial-column-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-radial-column-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-radial-line-series/.stackblitzrc | 2 +- .../type-radial-line-series/angular.json | 94 +++++++++------- .../type-radial-line-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../type-radial-line-series/tsconfig.app.json | 10 ++ .../type-radial-line-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-radial-pie-series/.stackblitzrc | 2 +- .../type-radial-pie-series/angular.json | 94 +++++++++------- .../type-radial-pie-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../type-radial-pie-series/tsconfig.app.json | 10 ++ .../type-radial-pie-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-range-area-series/.stackblitzrc | 2 +- .../type-range-area-series/angular.json | 94 +++++++++------- .../type-range-area-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../type-range-area-series/tsconfig.app.json | 10 ++ .../type-range-area-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-range-column-series/.stackblitzrc | 2 +- .../type-range-column-series/angular.json | 94 +++++++++------- .../type-range-column-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-range-column-series/tsconfig.json | 44 ++++---- .../type-range-series/.codesandbox/Dockerfile | 1 + .../type-range-series/.codesandbox/tasks.json | 17 +++ .../type-range-series/.stackblitzrc | 2 +- .../data-chart/type-range-series/angular.json | 94 +++++++++------- .../data-chart/type-range-series/package.json | 38 +++---- .../type-range-series/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../type-range-series/tsconfig.app.json | 10 ++ .../type-range-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-scatter-area-series/.stackblitzrc | 2 +- .../type-scatter-area-series/angular.json | 94 +++++++++------- .../type-scatter-area-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-scatter-area-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-scatter-bubble-series/.stackblitzrc | 2 +- .../type-scatter-bubble-series/angular.json | 94 +++++++++------- .../type-scatter-bubble-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-scatter-bubble-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-scatter-contour-series/.stackblitzrc | 2 +- .../type-scatter-contour-series/angular.json | 94 +++++++++------- .../type-scatter-contour-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-scatter-contour-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-scatter-hd-series/.stackblitzrc | 2 +- .../type-scatter-hd-series/angular.json | 94 +++++++++------- .../type-scatter-hd-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../type-scatter-hd-series/tsconfig.app.json | 10 ++ .../type-scatter-hd-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-scatter-line-series/.stackblitzrc | 2 +- .../type-scatter-line-series/angular.json | 94 +++++++++------- .../type-scatter-line-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-scatter-line-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-scatter-point-series/.stackblitzrc | 2 +- .../type-scatter-point-series/angular.json | 94 +++++++++------- .../type-scatter-point-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-scatter-point-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-scatter-polygon-series/.stackblitzrc | 2 +- .../type-scatter-polygon-series/angular.json | 94 +++++++++------- .../type-scatter-polygon-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-scatter-polygon-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../type-scatter-polyline-series/angular.json | 94 +++++++++------- .../type-scatter-polyline-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-scatter-series/.stackblitzrc | 2 +- .../type-scatter-series/angular.json | 94 +++++++++------- .../type-scatter-series/package.json | 38 +++---- .../type-scatter-series/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../type-scatter-series/tsconfig.app.json | 10 ++ .../type-scatter-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-scatter-spline-series/.stackblitzrc | 2 +- .../type-scatter-spline-series/angular.json | 94 +++++++++------- .../type-scatter-spline-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-scatter-spline-series/tsconfig.json | 44 ++++---- .../type-shape-series/.codesandbox/Dockerfile | 1 + .../type-shape-series/.codesandbox/tasks.json | 17 +++ .../type-shape-series/.stackblitzrc | 2 +- .../data-chart/type-shape-series/angular.json | 94 +++++++++------- .../data-chart/type-shape-series/package.json | 38 +++---- .../type-shape-series/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../type-shape-series/tsconfig.app.json | 10 ++ .../type-shape-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../type-stacked-100-area-series/angular.json | 94 +++++++++------- .../type-stacked-100-area-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-stacked-100-bar-series/.stackblitzrc | 2 +- .../type-stacked-100-bar-series/angular.json | 94 +++++++++------- .../type-stacked-100-bar-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-stacked-100-bar-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../type-stacked-100-line-series/angular.json | 94 +++++++++------- .../type-stacked-100-line-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-stacked-area-series/.stackblitzrc | 2 +- .../type-stacked-area-series/angular.json | 94 +++++++++------- .../type-stacked-area-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-stacked-area-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-stacked-bar-series/.stackblitzrc | 2 +- .../type-stacked-bar-series/angular.json | 94 +++++++++------- .../type-stacked-bar-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../type-stacked-bar-series/tsconfig.app.json | 10 ++ .../type-stacked-bar-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-stacked-column-series/.stackblitzrc | 2 +- .../type-stacked-column-series/angular.json | 94 +++++++++------- .../type-stacked-column-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-stacked-column-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-stacked-line-series/.stackblitzrc | 2 +- .../type-stacked-line-series/angular.json | 94 +++++++++------- .../type-stacked-line-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-stacked-line-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-stacked-spline-series/.stackblitzrc | 2 +- .../type-stacked-spline-series/angular.json | 94 +++++++++------- .../type-stacked-spline-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-stacked-spline-series/tsconfig.json | 44 ++++---- .../waterfall-chart/.codesandbox/Dockerfile | 1 + .../waterfall-chart/.codesandbox/tasks.json | 17 +++ .../data-chart/waterfall-chart/.stackblitzrc | 2 +- .../data-chart/waterfall-chart/angular.json | 94 +++++++++------- .../data-chart/waterfall-chart/package.json | 38 +++---- .../waterfall-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../waterfall-chart/tsconfig.app.json | 10 ++ .../data-chart/waterfall-chart/tsconfig.json | 44 ++++---- .../animation/.codesandbox/Dockerfile | 1 + .../animation/.codesandbox/tasks.json | 17 +++ .../doughnut-chart/animation/.stackblitzrc | 2 +- .../doughnut-chart/animation/angular.json | 94 +++++++++------- .../doughnut-chart/animation/package.json | 38 +++---- .../animation/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../animation/src/config/tsconfig.app.json | 12 -- .../animation/src/config/tsconfig.base.json | 24 ---- .../animation/src/config/tsconfig.spec.json | 19 ---- .../animation/src/config/tsconfig.worker.json | 14 --- .../animation/tsconfig.app.json | 10 ++ .../doughnut-chart/animation/tsconfig.json | 44 ++++---- .../explosion/.codesandbox/Dockerfile | 1 + .../explosion/.codesandbox/tasks.json | 17 +++ .../doughnut-chart/explosion/.stackblitzrc | 2 +- .../doughnut-chart/explosion/angular.json | 94 +++++++++------- .../doughnut-chart/explosion/package.json | 38 +++---- .../explosion/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../explosion/src/config/tsconfig.app.json | 12 -- .../explosion/src/config/tsconfig.base.json | 24 ---- .../explosion/src/config/tsconfig.spec.json | 19 ---- .../explosion/src/config/tsconfig.worker.json | 14 --- .../explosion/tsconfig.app.json | 10 ++ .../doughnut-chart/explosion/tsconfig.json | 44 ++++---- .../legend/.codesandbox/Dockerfile | 1 + .../legend/.codesandbox/tasks.json | 17 +++ .../doughnut-chart/legend/.stackblitzrc | 2 +- .../charts/doughnut-chart/legend/angular.json | 94 +++++++++------- .../charts/doughnut-chart/legend/package.json | 38 +++---- .../doughnut-chart/legend/sandbox.config.json | 5 - .../legend/src/config/tsconfig-es5.app.json | 6 - .../legend/src/config/tsconfig.app.json | 12 -- .../legend/src/config/tsconfig.base.json | 24 ---- .../legend/src/config/tsconfig.spec.json | 19 ---- .../legend/src/config/tsconfig.worker.json | 14 --- .../doughnut-chart/legend/tsconfig.app.json | 10 ++ .../doughnut-chart/legend/tsconfig.json | 44 ++++---- .../overview/.codesandbox/Dockerfile | 1 + .../overview/.codesandbox/tasks.json | 17 +++ .../doughnut-chart/overview/.stackblitzrc | 2 +- .../doughnut-chart/overview/angular.json | 94 +++++++++------- .../doughnut-chart/overview/package.json | 38 +++---- .../overview/sandbox.config.json | 5 - .../overview/src/config/tsconfig-es5.app.json | 6 - .../overview/src/config/tsconfig.app.json | 12 -- .../overview/src/config/tsconfig.base.json | 24 ---- .../overview/src/config/tsconfig.spec.json | 19 ---- .../overview/src/config/tsconfig.worker.json | 14 --- .../doughnut-chart/overview/tsconfig.app.json | 10 ++ .../doughnut-chart/overview/tsconfig.json | 44 ++++---- .../rings/.codesandbox/Dockerfile | 1 + .../rings/.codesandbox/tasks.json | 17 +++ .../charts/doughnut-chart/rings/.stackblitzrc | 2 +- .../charts/doughnut-chart/rings/angular.json | 94 +++++++++------- .../charts/doughnut-chart/rings/package.json | 38 +++---- .../doughnut-chart/rings/sandbox.config.json | 5 - .../rings/src/config/tsconfig-es5.app.json | 6 - .../rings/src/config/tsconfig.app.json | 12 -- .../rings/src/config/tsconfig.base.json | 24 ---- .../rings/src/config/tsconfig.spec.json | 19 ---- .../rings/src/config/tsconfig.worker.json | 14 --- .../doughnut-chart/rings/tsconfig.app.json | 10 ++ .../charts/doughnut-chart/rings/tsconfig.json | 44 ++++---- .../selection/.codesandbox/Dockerfile | 1 + .../selection/.codesandbox/tasks.json | 17 +++ .../doughnut-chart/selection/.stackblitzrc | 2 +- .../doughnut-chart/selection/angular.json | 94 +++++++++------- .../doughnut-chart/selection/package.json | 38 +++---- .../selection/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../selection/src/config/tsconfig.app.json | 12 -- .../selection/src/config/tsconfig.base.json | 24 ---- .../selection/src/config/tsconfig.spec.json | 19 ---- .../selection/src/config/tsconfig.worker.json | 14 --- .../selection/tsconfig.app.json | 10 ++ .../doughnut-chart/selection/tsconfig.json | 44 ++++---- .../annotations/.codesandbox/Dockerfile | 1 + .../annotations/.codesandbox/tasks.json | 17 +++ .../financial-chart/annotations/.stackblitzrc | 2 +- .../financial-chart/annotations/angular.json | 94 +++++++++------- .../financial-chart/annotations/package.json | 38 +++---- .../annotations/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../annotations/src/config/tsconfig.app.json | 12 -- .../annotations/src/config/tsconfig.base.json | 24 ---- .../annotations/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../annotations/tsconfig.app.json | 10 ++ .../financial-chart/annotations/tsconfig.json | 44 ++++---- .../axis-types/.codesandbox/Dockerfile | 1 + .../axis-types/.codesandbox/tasks.json | 17 +++ .../financial-chart/axis-types/.stackblitzrc | 2 +- .../financial-chart/axis-types/angular.json | 94 +++++++++------- .../financial-chart/axis-types/package.json | 38 +++---- .../axis-types/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../axis-types/src/config/tsconfig.app.json | 12 -- .../axis-types/src/config/tsconfig.base.json | 24 ---- .../axis-types/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../axis-types/tsconfig.app.json | 10 ++ .../financial-chart/axis-types/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../data-legend-styling-props/.stackblitzrc | 2 +- .../data-legend-styling-props/angular.json | 94 +++++++++------- .../data-legend-styling-props/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../data-legend-styling-props/tsconfig.json | 44 ++++---- .../data-legend/.codesandbox/Dockerfile | 1 + .../data-legend/.codesandbox/tasks.json | 17 +++ .../financial-chart/data-legend/.stackblitzrc | 2 +- .../financial-chart/data-legend/angular.json | 94 +++++++++------- .../financial-chart/data-legend/package.json | 38 +++---- .../data-legend/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../data-legend/src/config/tsconfig.app.json | 12 -- .../data-legend/src/config/tsconfig.base.json | 24 ---- .../data-legend/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../data-legend/tsconfig.app.json | 10 ++ .../financial-chart/data-legend/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../data-tooltip-styling-props/.stackblitzrc | 2 +- .../data-tooltip-styling-props/angular.json | 94 +++++++++------- .../data-tooltip-styling-props/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../data-tooltip-styling-props/tsconfig.json | 44 ++++---- .../data-tooltip/.codesandbox/Dockerfile | 1 + .../data-tooltip/.codesandbox/tasks.json | 17 +++ .../data-tooltip/.stackblitzrc | 2 +- .../financial-chart/data-tooltip/angular.json | 94 +++++++++------- .../financial-chart/data-tooltip/package.json | 38 +++---- .../data-tooltip/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../data-tooltip/src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../data-tooltip/tsconfig.app.json | 10 ++ .../data-tooltip/tsconfig.json | 44 ++++---- .../format-specifiers/.codesandbox/Dockerfile | 1 + .../format-specifiers/.codesandbox/tasks.json | 17 +++ .../format-specifiers/.stackblitzrc | 2 +- .../format-specifiers/angular.json | 94 +++++++++------- .../format-specifiers/package.json | 38 +++---- .../format-specifiers/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../format-specifiers/tsconfig.app.json | 10 ++ .../format-specifiers/tsconfig.json | 44 ++++---- .../high-frequency/.codesandbox/Dockerfile | 1 + .../high-frequency/.codesandbox/tasks.json | 17 +++ .../high-frequency/.stackblitzrc | 2 +- .../high-frequency/angular.json | 94 +++++++++------- .../high-frequency/package.json | 38 +++---- .../high-frequency/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../high-frequency/tsconfig.app.json | 10 ++ .../high-frequency/tsconfig.json | 44 ++++---- .../high-volume/.codesandbox/Dockerfile | 1 + .../high-volume/.codesandbox/tasks.json | 17 +++ .../financial-chart/high-volume/.stackblitzrc | 2 +- .../financial-chart/high-volume/angular.json | 94 +++++++++------- .../financial-chart/high-volume/package.json | 38 +++---- .../high-volume/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../high-volume/src/config/tsconfig.app.json | 12 -- .../high-volume/src/config/tsconfig.base.json | 24 ---- .../high-volume/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../high-volume/tsconfig.app.json | 10 ++ .../financial-chart/high-volume/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../indicator-customization/.stackblitzrc | 2 +- .../indicator-customization/angular.json | 94 +++++++++------- .../indicator-customization/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../indicator-customization/tsconfig.app.json | 10 ++ .../indicator-customization/tsconfig.json | 44 ++++---- .../indicator-types/.codesandbox/Dockerfile | 1 + .../indicator-types/.codesandbox/tasks.json | 17 +++ .../indicator-types/.stackblitzrc | 2 +- .../indicator-types/angular.json | 94 +++++++++------- .../indicator-types/package.json | 38 +++---- .../indicator-types/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../indicator-types/tsconfig.app.json | 10 ++ .../indicator-types/tsconfig.json | 44 ++++---- .../multiple-data/.codesandbox/Dockerfile | 1 + .../multiple-data/.codesandbox/tasks.json | 17 +++ .../multiple-data/.stackblitzrc | 2 +- .../multiple-data/angular.json | 94 +++++++++------- .../multiple-data/package.json | 38 +++---- .../multiple-data/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../multiple-data/tsconfig.app.json | 10 ++ .../multiple-data/tsconfig.json | 44 ++++---- .../multiple-feeds/.codesandbox/Dockerfile | 1 + .../multiple-feeds/.codesandbox/tasks.json | 17 +++ .../multiple-feeds/.stackblitzrc | 2 +- .../multiple-feeds/angular.json | 94 +++++++++------- .../multiple-feeds/package.json | 38 +++---- .../multiple-feeds/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../multiple-feeds/tsconfig.app.json | 10 ++ .../multiple-feeds/tsconfig.json | 44 ++++---- .../overview/.codesandbox/Dockerfile | 1 + .../overview/.codesandbox/tasks.json | 17 +++ .../financial-chart/overview/.stackblitzrc | 2 +- .../financial-chart/overview/angular.json | 94 +++++++++------- .../financial-chart/overview/package.json | 38 +++---- .../overview/sandbox.config.json | 5 - .../overview/src/config/tsconfig-es5.app.json | 6 - .../overview/src/config/tsconfig.app.json | 12 -- .../overview/src/config/tsconfig.base.json | 24 ---- .../overview/src/config/tsconfig.spec.json | 19 ---- .../overview/src/config/tsconfig.worker.json | 14 --- .../overview/tsconfig.app.json | 10 ++ .../financial-chart/overview/tsconfig.json | 44 ++++---- .../panes/.codesandbox/Dockerfile | 1 + .../panes/.codesandbox/tasks.json | 17 +++ .../financial-chart/panes/.stackblitzrc | 2 +- .../charts/financial-chart/panes/angular.json | 94 +++++++++------- .../charts/financial-chart/panes/package.json | 38 +++---- .../financial-chart/panes/sandbox.config.json | 5 - .../panes/src/config/tsconfig-es5.app.json | 6 - .../panes/src/config/tsconfig.app.json | 12 -- .../panes/src/config/tsconfig.base.json | 24 ---- .../panes/src/config/tsconfig.spec.json | 19 ---- .../panes/src/config/tsconfig.worker.json | 14 --- .../financial-chart/panes/tsconfig.app.json | 10 ++ .../financial-chart/panes/tsconfig.json | 44 ++++---- .../performance/.codesandbox/Dockerfile | 1 + .../performance/.codesandbox/tasks.json | 17 +++ .../financial-chart/performance/.stackblitzrc | 2 +- .../financial-chart/performance/angular.json | 94 +++++++++------- .../financial-chart/performance/package.json | 38 +++---- .../performance/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../performance/src/config/tsconfig.app.json | 12 -- .../performance/src/config/tsconfig.base.json | 24 ---- .../performance/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../performance/tsconfig.app.json | 10 ++ .../financial-chart/performance/tsconfig.json | 44 ++++---- .../scrollbars/.codesandbox/Dockerfile | 1 + .../scrollbars/.codesandbox/tasks.json | 17 +++ .../financial-chart/scrollbars/.stackblitzrc | 2 +- .../financial-chart/scrollbars/angular.json | 94 +++++++++------- .../financial-chart/scrollbars/package.json | 38 +++---- .../scrollbars/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../scrollbars/src/config/tsconfig.app.json | 12 -- .../scrollbars/src/config/tsconfig.base.json | 24 ---- .../scrollbars/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../scrollbars/tsconfig.app.json | 10 ++ .../financial-chart/scrollbars/tsconfig.json | 44 ++++---- .../stock-index-chart/.codesandbox/Dockerfile | 1 + .../stock-index-chart/.codesandbox/tasks.json | 17 +++ .../stock-index-chart/.stackblitzrc | 2 +- .../stock-index-chart/angular.json | 94 +++++++++------- .../stock-index-chart/package.json | 38 +++---- .../stock-index-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../stock-index-chart/tsconfig.app.json | 10 ++ .../stock-index-chart/tsconfig.json | 44 ++++---- .../styling/.codesandbox/Dockerfile | 1 + .../styling/.codesandbox/tasks.json | 17 +++ .../financial-chart/styling/.stackblitzrc | 2 +- .../financial-chart/styling/angular.json | 94 +++++++++------- .../financial-chart/styling/package.json | 38 +++---- .../styling/sandbox.config.json | 5 - .../styling/src/config/tsconfig-es5.app.json | 6 - .../styling/src/config/tsconfig.app.json | 12 -- .../styling/src/config/tsconfig.base.json | 24 ---- .../styling/src/config/tsconfig.spec.json | 19 ---- .../styling/src/config/tsconfig.worker.json | 14 --- .../financial-chart/styling/tsconfig.app.json | 10 ++ .../financial-chart/styling/tsconfig.json | 44 ++++---- .../theming/.codesandbox/Dockerfile | 1 + .../theming/.codesandbox/tasks.json | 17 +++ .../financial-chart/theming/.stackblitzrc | 2 +- .../financial-chart/theming/angular.json | 94 +++++++++------- .../financial-chart/theming/package.json | 38 +++---- .../theming/sandbox.config.json | 5 - .../theming/src/config/tsconfig-es5.app.json | 6 - .../theming/src/config/tsconfig.app.json | 12 -- .../theming/src/config/tsconfig.base.json | 24 ---- .../theming/src/config/tsconfig.spec.json | 19 ---- .../theming/src/config/tsconfig.worker.json | 14 --- .../financial-chart/theming/tsconfig.app.json | 10 ++ .../financial-chart/theming/tsconfig.json | 44 ++++---- .../time-based-data/.codesandbox/Dockerfile | 1 + .../time-based-data/.codesandbox/tasks.json | 17 +++ .../time-based-data/.stackblitzrc | 2 +- .../time-based-data/angular.json | 94 +++++++++------- .../time-based-data/package.json | 38 +++---- .../time-based-data/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../time-based-data/tsconfig.app.json | 10 ++ .../time-based-data/tsconfig.json | 44 ++++---- .../titles/.codesandbox/Dockerfile | 1 + .../titles/.codesandbox/tasks.json | 17 +++ .../financial-chart/titles/.stackblitzrc | 2 +- .../financial-chart/titles/angular.json | 94 +++++++++------- .../financial-chart/titles/package.json | 38 +++---- .../titles/sandbox.config.json | 5 - .../titles/src/config/tsconfig-es5.app.json | 6 - .../titles/src/config/tsconfig.app.json | 12 -- .../titles/src/config/tsconfig.base.json | 24 ---- .../titles/src/config/tsconfig.spec.json | 19 ---- .../titles/src/config/tsconfig.worker.json | 14 --- .../financial-chart/titles/tsconfig.app.json | 10 ++ .../financial-chart/titles/tsconfig.json | 44 ++++---- .../tooltip-template/.codesandbox/Dockerfile | 1 + .../tooltip-template/.codesandbox/tasks.json | 17 +++ .../tooltip-template/.stackblitzrc | 2 +- .../tooltip-template/angular.json | 94 +++++++++------- .../tooltip-template/package.json | 38 +++---- .../tooltip-template/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tooltip-template/tsconfig.app.json | 10 ++ .../tooltip-template/tsconfig.json | 44 ++++---- .../tooltip-types/.codesandbox/Dockerfile | 1 + .../tooltip-types/.codesandbox/tasks.json | 17 +++ .../tooltip-types/.stackblitzrc | 2 +- .../tooltip-types/angular.json | 94 +++++++++------- .../tooltip-types/package.json | 38 +++---- .../tooltip-types/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tooltip-types/tsconfig.app.json | 10 ++ .../tooltip-types/tsconfig.json | 44 ++++---- .../trendlines/.codesandbox/Dockerfile | 1 + .../trendlines/.codesandbox/tasks.json | 17 +++ .../financial-chart/trendlines/.stackblitzrc | 2 +- .../financial-chart/trendlines/angular.json | 94 +++++++++------- .../financial-chart/trendlines/package.json | 38 +++---- .../trendlines/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../trendlines/src/config/tsconfig.app.json | 12 -- .../trendlines/src/config/tsconfig.base.json | 24 ---- .../trendlines/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../trendlines/tsconfig.app.json | 10 ++ .../financial-chart/trendlines/tsconfig.json | 44 ++++---- .../volume-types/.codesandbox/Dockerfile | 1 + .../volume-types/.codesandbox/tasks.json | 17 +++ .../volume-types/.stackblitzrc | 2 +- .../financial-chart/volume-types/angular.json | 94 +++++++++------- .../financial-chart/volume-types/package.json | 38 +++---- .../volume-types/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../volume-types/src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../volume-types/tsconfig.app.json | 10 ++ .../volume-types/tsconfig.json | 44 ++++---- .../animation/.codesandbox/Dockerfile | 1 + .../animation/.codesandbox/tasks.json | 17 +++ .../charts/pie-chart/animation/.stackblitzrc | 2 +- .../charts/pie-chart/animation/angular.json | 94 +++++++++------- .../charts/pie-chart/animation/package.json | 38 +++---- .../pie-chart/animation/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../animation/src/config/tsconfig.app.json | 12 -- .../animation/src/config/tsconfig.base.json | 24 ---- .../animation/src/config/tsconfig.spec.json | 19 ---- .../animation/src/config/tsconfig.worker.json | 14 --- .../pie-chart/animation/tsconfig.app.json | 10 ++ .../charts/pie-chart/animation/tsconfig.json | 44 ++++---- .../explosion/.codesandbox/Dockerfile | 1 + .../explosion/.codesandbox/tasks.json | 17 +++ .../charts/pie-chart/explosion/.stackblitzrc | 2 +- .../charts/pie-chart/explosion/angular.json | 94 +++++++++------- .../charts/pie-chart/explosion/package.json | 38 +++---- .../pie-chart/explosion/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../explosion/src/config/tsconfig.app.json | 12 -- .../explosion/src/config/tsconfig.base.json | 24 ---- .../explosion/src/config/tsconfig.spec.json | 19 ---- .../explosion/src/config/tsconfig.worker.json | 14 --- .../pie-chart/explosion/tsconfig.app.json | 10 ++ .../charts/pie-chart/explosion/tsconfig.json | 44 ++++---- .../pie-chart/legend/.codesandbox/Dockerfile | 1 + .../pie-chart/legend/.codesandbox/tasks.json | 17 +++ samples/charts/pie-chart/legend/.stackblitzrc | 2 +- samples/charts/pie-chart/legend/angular.json | 94 +++++++++------- samples/charts/pie-chart/legend/package.json | 38 +++---- .../pie-chart/legend/sandbox.config.json | 5 - .../legend/src/config/tsconfig-es5.app.json | 6 - .../legend/src/config/tsconfig.app.json | 12 -- .../legend/src/config/tsconfig.base.json | 24 ---- .../legend/src/config/tsconfig.spec.json | 19 ---- .../legend/src/config/tsconfig.worker.json | 14 --- .../charts/pie-chart/legend/tsconfig.app.json | 10 ++ samples/charts/pie-chart/legend/tsconfig.json | 44 ++++---- .../pie-chart/others/.codesandbox/Dockerfile | 1 + .../pie-chart/others/.codesandbox/tasks.json | 17 +++ samples/charts/pie-chart/others/.stackblitzrc | 2 +- samples/charts/pie-chart/others/angular.json | 94 +++++++++------- samples/charts/pie-chart/others/package.json | 38 +++---- .../pie-chart/others/sandbox.config.json | 5 - .../others/src/config/tsconfig-es5.app.json | 6 - .../others/src/config/tsconfig.app.json | 12 -- .../others/src/config/tsconfig.base.json | 24 ---- .../others/src/config/tsconfig.spec.json | 19 ---- .../others/src/config/tsconfig.worker.json | 14 --- .../charts/pie-chart/others/tsconfig.app.json | 10 ++ samples/charts/pie-chart/others/tsconfig.json | 44 ++++---- .../overview/.codesandbox/Dockerfile | 1 + .../overview/.codesandbox/tasks.json | 17 +++ .../charts/pie-chart/overview/.stackblitzrc | 2 +- .../charts/pie-chart/overview/angular.json | 94 +++++++++------- .../charts/pie-chart/overview/package.json | 38 +++---- .../pie-chart/overview/sandbox.config.json | 5 - .../overview/src/config/tsconfig-es5.app.json | 6 - .../overview/src/config/tsconfig.app.json | 12 -- .../overview/src/config/tsconfig.base.json | 24 ---- .../overview/src/config/tsconfig.spec.json | 19 ---- .../overview/src/config/tsconfig.worker.json | 14 --- .../pie-chart/overview/tsconfig.app.json | 10 ++ .../charts/pie-chart/overview/tsconfig.json | 44 ++++---- .../selection/.codesandbox/Dockerfile | 1 + .../selection/.codesandbox/tasks.json | 17 +++ .../charts/pie-chart/selection/.stackblitzrc | 2 +- .../charts/pie-chart/selection/angular.json | 94 +++++++++------- .../charts/pie-chart/selection/package.json | 38 +++---- .../pie-chart/selection/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../selection/src/config/tsconfig.app.json | 12 -- .../selection/src/config/tsconfig.base.json | 24 ---- .../selection/src/config/tsconfig.spec.json | 19 ---- .../selection/src/config/tsconfig.worker.json | 14 --- .../pie-chart/selection/tsconfig.app.json | 10 ++ .../charts/pie-chart/selection/tsconfig.json | 44 ++++---- .../pie-chart/styling/.codesandbox/Dockerfile | 1 + .../pie-chart/styling/.codesandbox/tasks.json | 17 +++ .../charts/pie-chart/styling/.stackblitzrc | 2 +- samples/charts/pie-chart/styling/angular.json | 94 +++++++++------- samples/charts/pie-chart/styling/package.json | 38 +++---- .../pie-chart/styling/sandbox.config.json | 5 - .../styling/src/config/tsconfig-es5.app.json | 6 - .../styling/src/config/tsconfig.app.json | 12 -- .../styling/src/config/tsconfig.base.json | 24 ---- .../styling/src/config/tsconfig.spec.json | 19 ---- .../styling/src/config/tsconfig.worker.json | 14 --- .../pie-chart/styling/tsconfig.app.json | 10 ++ .../charts/pie-chart/styling/tsconfig.json | 44 ++++---- .../display-area/.codesandbox/Dockerfile | 1 + .../display-area/.codesandbox/tasks.json | 17 +++ .../sparkline/display-area/.stackblitzrc | 2 +- .../sparkline/display-area/angular.json | 94 +++++++++------- .../sparkline/display-area/package.json | 38 +++---- .../display-area/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../display-area/src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../sparkline/display-area/tsconfig.app.json | 10 ++ .../sparkline/display-area/tsconfig.json | 44 ++++---- .../display-column/.codesandbox/Dockerfile | 1 + .../display-column/.codesandbox/tasks.json | 17 +++ .../sparkline/display-column/.stackblitzrc | 2 +- .../sparkline/display-column/angular.json | 94 +++++++++------- .../sparkline/display-column/package.json | 38 +++---- .../display-column/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../display-column/tsconfig.app.json | 10 ++ .../sparkline/display-column/tsconfig.json | 44 ++++---- .../display-lines/.codesandbox/Dockerfile | 1 + .../display-lines/.codesandbox/tasks.json | 17 +++ .../sparkline/display-lines/.stackblitzrc | 2 +- .../sparkline/display-lines/angular.json | 94 +++++++++------- .../sparkline/display-lines/package.json | 38 +++---- .../display-lines/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../sparkline/display-lines/tsconfig.app.json | 10 ++ .../sparkline/display-lines/tsconfig.json | 44 ++++---- .../display-types/.codesandbox/Dockerfile | 1 + .../display-types/.codesandbox/tasks.json | 17 +++ .../sparkline/display-types/.stackblitzrc | 2 +- .../sparkline/display-types/angular.json | 94 +++++++++------- .../sparkline/display-types/package.json | 38 +++---- .../display-types/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../sparkline/display-types/tsconfig.app.json | 10 ++ .../sparkline/display-types/tsconfig.json | 44 ++++---- .../display-winloss/.codesandbox/Dockerfile | 1 + .../display-winloss/.codesandbox/tasks.json | 17 +++ .../sparkline/display-winloss/.stackblitzrc | 2 +- .../sparkline/display-winloss/angular.json | 94 +++++++++------- .../sparkline/display-winloss/package.json | 38 +++---- .../display-winloss/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../display-winloss/tsconfig.app.json | 10 ++ .../sparkline/display-winloss/tsconfig.json | 44 ++++---- .../sparkline/grid/.codesandbox/Dockerfile | 1 + .../sparkline/grid/.codesandbox/tasks.json | 17 +++ samples/charts/sparkline/grid/.stackblitzrc | 2 +- samples/charts/sparkline/grid/angular.json | 94 +++++++++------- samples/charts/sparkline/grid/package.json | 38 +++---- .../charts/sparkline/grid/sandbox.config.json | 5 - .../grid/src/config/tsconfig-es5.app.json | 6 - .../grid/src/config/tsconfig.app.json | 12 -- .../grid/src/config/tsconfig.base.json | 24 ---- .../grid/src/config/tsconfig.spec.json | 19 ---- .../grid/src/config/tsconfig.worker.json | 14 --- .../charts/sparkline/grid/tsconfig.app.json | 10 ++ samples/charts/sparkline/grid/tsconfig.json | 44 ++++---- .../sparkline/markers/.codesandbox/Dockerfile | 1 + .../sparkline/markers/.codesandbox/tasks.json | 17 +++ .../charts/sparkline/markers/.stackblitzrc | 2 +- samples/charts/sparkline/markers/angular.json | 94 +++++++++------- samples/charts/sparkline/markers/package.json | 38 +++---- .../sparkline/markers/sandbox.config.json | 5 - .../markers/src/config/tsconfig-es5.app.json | 6 - .../markers/src/config/tsconfig.app.json | 12 -- .../markers/src/config/tsconfig.base.json | 24 ---- .../markers/src/config/tsconfig.spec.json | 19 ---- .../markers/src/config/tsconfig.worker.json | 14 --- .../sparkline/markers/tsconfig.app.json | 10 ++ .../charts/sparkline/markers/tsconfig.json | 44 ++++---- .../normal-range/.codesandbox/Dockerfile | 1 + .../normal-range/.codesandbox/tasks.json | 17 +++ .../sparkline/normal-range/.stackblitzrc | 2 +- .../sparkline/normal-range/angular.json | 94 +++++++++------- .../sparkline/normal-range/package.json | 38 +++---- .../normal-range/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../normal-range/src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../sparkline/normal-range/tsconfig.app.json | 10 ++ .../sparkline/normal-range/tsconfig.json | 44 ++++---- .../trendlines/.codesandbox/Dockerfile | 1 + .../trendlines/.codesandbox/tasks.json | 17 +++ .../charts/sparkline/trendlines/.stackblitzrc | 2 +- .../charts/sparkline/trendlines/angular.json | 94 +++++++++------- .../charts/sparkline/trendlines/package.json | 38 +++---- .../sparkline/trendlines/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../trendlines/src/config/tsconfig.app.json | 12 -- .../trendlines/src/config/tsconfig.base.json | 24 ---- .../trendlines/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../sparkline/trendlines/tsconfig.app.json | 10 ++ .../charts/sparkline/trendlines/tsconfig.json | 44 ++++---- .../unknown-values/.codesandbox/Dockerfile | 1 + .../unknown-values/.codesandbox/tasks.json | 17 +++ .../sparkline/unknown-values/.stackblitzrc | 2 +- .../sparkline/unknown-values/angular.json | 94 +++++++++------- .../sparkline/unknown-values/package.json | 38 +++---- .../unknown-values/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../unknown-values/tsconfig.app.json | 10 ++ .../sparkline/unknown-values/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../actions-built-in-data-chart/.stackblitzrc | 2 +- .../actions-built-in-data-chart/angular.json | 94 +++++++++------- .../actions-built-in-data-chart/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../actions-built-in-data-chart/tsconfig.json | 44 ++++---- .../custom-tool/.codesandbox/Dockerfile | 1 + .../custom-tool/.codesandbox/tasks.json | 17 +++ .../charts/toolbar/custom-tool/.stackblitzrc | 2 +- .../charts/toolbar/custom-tool/angular.json | 94 +++++++++------- .../charts/toolbar/custom-tool/package.json | 38 +++---- .../toolbar/custom-tool/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../custom-tool/src/config/tsconfig.app.json | 12 -- .../custom-tool/src/config/tsconfig.base.json | 24 ---- .../custom-tool/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../toolbar/custom-tool/tsconfig.app.json | 10 ++ .../charts/toolbar/custom-tool/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 2 +- .../angular.json | 94 +++++++++------- .../package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../tsconfig.json | 44 ++++---- .../toolbar/theming/.codesandbox/Dockerfile | 1 + .../toolbar/theming/.codesandbox/tasks.json | 17 +++ samples/charts/toolbar/theming/.stackblitzrc | 2 +- samples/charts/toolbar/theming/angular.json | 94 +++++++++------- samples/charts/toolbar/theming/package.json | 38 +++---- .../toolbar/theming/sandbox.config.json | 5 - .../theming/src/config/tsconfig-es5.app.json | 6 - .../theming/src/config/tsconfig.app.json | 12 -- .../theming/src/config/tsconfig.base.json | 24 ---- .../theming/src/config/tsconfig.spec.json | 19 ---- .../theming/src/config/tsconfig.worker.json | 14 --- .../charts/toolbar/theming/tsconfig.app.json | 10 ++ samples/charts/toolbar/theming/tsconfig.json | 44 ++++---- .../tree-map/events/.codesandbox/Dockerfile | 1 + .../tree-map/events/.codesandbox/tasks.json | 17 +++ samples/charts/tree-map/events/.stackblitzrc | 2 +- samples/charts/tree-map/events/angular.json | 94 +++++++++------- samples/charts/tree-map/events/package.json | 38 +++---- .../tree-map/events/sandbox.config.json | 5 - .../events/src/config/tsconfig-es5.app.json | 6 - .../events/src/config/tsconfig.app.json | 12 -- .../events/src/config/tsconfig.base.json | 24 ---- .../events/src/config/tsconfig.spec.json | 19 ---- .../events/src/config/tsconfig.worker.json | 14 --- .../charts/tree-map/events/tsconfig.app.json | 10 ++ samples/charts/tree-map/events/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../highlighting-percent-based/.stackblitzrc | 2 +- .../highlighting-percent-based/angular.json | 94 +++++++++------- .../highlighting-percent-based/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../highlighting-percent-based/tsconfig.json | 44 ++++---- .../highlighting/.codesandbox/Dockerfile | 1 + .../highlighting/.codesandbox/tasks.json | 17 +++ .../tree-map/highlighting/.stackblitzrc | 2 +- .../charts/tree-map/highlighting/angular.json | 93 ++++++++------- .../charts/tree-map/highlighting/package.json | 38 +++---- .../tree-map/highlighting/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../highlighting/src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tree-map/highlighting/tsconfig.app.json | 10 ++ .../tree-map/highlighting/tsconfig.json | 44 ++++---- .../tree-map/layout/.codesandbox/Dockerfile | 1 + .../tree-map/layout/.codesandbox/tasks.json | 17 +++ samples/charts/tree-map/layout/.stackblitzrc | 2 +- samples/charts/tree-map/layout/angular.json | 94 +++++++++------- samples/charts/tree-map/layout/package.json | 38 +++---- .../tree-map/layout/sandbox.config.json | 5 - .../layout/src/config/tsconfig-es5.app.json | 6 - .../layout/src/config/tsconfig.app.json | 12 -- .../layout/src/config/tsconfig.base.json | 24 ---- .../layout/src/config/tsconfig.spec.json | 19 ---- .../layout/src/config/tsconfig.worker.json | 14 --- .../charts/tree-map/layout/tsconfig.app.json | 10 ++ samples/charts/tree-map/layout/tsconfig.json | 44 ++++---- .../tree-map/overview/.codesandbox/Dockerfile | 1 + .../tree-map/overview/.codesandbox/tasks.json | 17 +++ .../charts/tree-map/overview/.stackblitzrc | 2 +- samples/charts/tree-map/overview/angular.json | 94 +++++++++------- samples/charts/tree-map/overview/package.json | 38 +++---- .../tree-map/overview/sandbox.config.json | 5 - .../overview/src/config/tsconfig-es5.app.json | 6 - .../overview/src/config/tsconfig.app.json | 12 -- .../overview/src/config/tsconfig.base.json | 24 ---- .../overview/src/config/tsconfig.spec.json | 19 ---- .../overview/src/config/tsconfig.worker.json | 14 --- .../tree-map/overview/tsconfig.app.json | 10 ++ .../charts/tree-map/overview/tsconfig.json | 44 ++++---- .../tree-map/styling/.codesandbox/Dockerfile | 1 + .../tree-map/styling/.codesandbox/tasks.json | 17 +++ samples/charts/tree-map/styling/.stackblitzrc | 2 +- samples/charts/tree-map/styling/angular.json | 94 +++++++++------- samples/charts/tree-map/styling/package.json | 38 +++---- .../tree-map/styling/sandbox.config.json | 5 - .../styling/src/config/tsconfig-es5.app.json | 6 - .../styling/src/config/tsconfig.app.json | 12 -- .../styling/src/config/tsconfig.base.json | 24 ---- .../styling/src/config/tsconfig.spec.json | 19 ---- .../styling/src/config/tsconfig.worker.json | 14 --- .../charts/tree-map/styling/tsconfig.app.json | 10 ++ samples/charts/tree-map/styling/tsconfig.json | 44 ++++---- .../overview/.codesandbox/Dockerfile | 1 + .../overview/.codesandbox/tasks.json | 17 +++ .../charts/zoomslider/overview/.stackblitzrc | 2 +- .../charts/zoomslider/overview/angular.json | 94 +++++++++------- .../charts/zoomslider/overview/package.json | 38 +++---- .../zoomslider/overview/sandbox.config.json | 5 - .../overview/src/config/tsconfig-es5.app.json | 6 - .../overview/src/config/tsconfig.app.json | 12 -- .../overview/src/config/tsconfig.base.json | 24 ---- .../overview/src/config/tsconfig.spec.json | 19 ---- .../overview/src/config/tsconfig.worker.json | 14 --- .../zoomslider/overview/tsconfig.app.json | 10 ++ .../charts/zoomslider/overview/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../operations-on-workbooks/.stackblitzrc | 2 +- .../operations-on-workbooks/angular.json | 94 +++++++++------- .../operations-on-workbooks/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../operations-on-workbooks/tsconfig.app.json | 10 ++ .../operations-on-workbooks/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../operations-on-worksheets/.stackblitzrc | 2 +- .../operations-on-worksheets/angular.json | 94 +++++++++------- .../operations-on-worksheets/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../operations-on-worksheets/tsconfig.json | 44 ++++---- .../overview/.codesandbox/Dockerfile | 1 + .../overview/.codesandbox/tasks.json | 17 +++ .../excel-library/overview/.stackblitzrc | 2 +- .../excel/excel-library/overview/angular.json | 94 +++++++++------- .../excel/excel-library/overview/package.json | 38 +++---- .../overview/src/config/tsconfig-es5.app.json | 6 - .../overview/src/config/tsconfig.app.json | 12 -- .../overview/src/config/tsconfig.base.json | 24 ---- .../overview/src/config/tsconfig.spec.json | 19 ---- .../overview/src/config/tsconfig.worker.json | 14 --- .../excel-library/overview/tsconfig.app.json | 10 ++ .../excel-library/overview/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../working-with-cells/.stackblitzrc | 2 +- .../working-with-cells/angular.json | 94 +++++++++------- .../working-with-cells/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../working-with-cells/tsconfig.app.json | 10 ++ .../working-with-cells/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../working-with-charts/.stackblitzrc | 2 +- .../working-with-charts/angular.json | 94 +++++++++------- .../working-with-charts/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../working-with-charts/tsconfig.app.json | 10 ++ .../working-with-charts/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../working-with-sparklines/.stackblitzrc | 2 +- .../working-with-sparklines/angular.json | 94 +++++++++------- .../working-with-sparklines/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../working-with-sparklines/tsconfig.app.json | 10 ++ .../working-with-sparklines/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../working-with-tables/.stackblitzrc | 2 +- .../working-with-tables/angular.json | 94 +++++++++------- .../working-with-tables/package.json | 38 +++---- .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../working-with-tables/tsconfig.app.json | 10 ++ .../working-with-tables/tsconfig.json | 44 ++++---- .../activation/.codesandbox/Dockerfile | 1 + .../activation/.codesandbox/tasks.json | 17 +++ .../spreadsheet/activation/.stackblitzrc | 2 +- .../excel/spreadsheet/activation/angular.json | 94 +++++++++------- .../excel/spreadsheet/activation/package.json | 38 +++---- .../activation/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../activation/src/config/tsconfig.app.json | 12 -- .../activation/src/config/tsconfig.base.json | 24 ---- .../activation/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../spreadsheet/activation/tsconfig.app.json | 10 ++ .../spreadsheet/activation/tsconfig.json | 44 ++++---- .../adapter-chart/.codesandbox/Dockerfile | 1 + .../adapter-chart/.codesandbox/tasks.json | 17 +++ .../spreadsheet/adapter-chart/.stackblitzrc | 2 +- .../spreadsheet/adapter-chart/angular.json | 94 +++++++++------- .../spreadsheet/adapter-chart/package.json | 38 +++---- .../adapter-chart/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../adapter-chart/tsconfig.app.json | 10 ++ .../spreadsheet/adapter-chart/tsconfig.json | 44 ++++---- .../adapter-combo/.codesandbox/Dockerfile | 1 + .../adapter-combo/.codesandbox/tasks.json | 17 +++ .../spreadsheet/adapter-combo/.stackblitzrc | 2 +- .../spreadsheet/adapter-combo/angular.json | 94 +++++++++------- .../spreadsheet/adapter-combo/package.json | 38 +++---- .../adapter-combo/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../adapter-combo/tsconfig.app.json | 10 ++ .../spreadsheet/adapter-combo/tsconfig.json | 44 ++++---- .../clipboard/.codesandbox/Dockerfile | 1 + .../clipboard/.codesandbox/tasks.json | 17 +++ .../excel/spreadsheet/clipboard/.stackblitzrc | 2 +- .../excel/spreadsheet/clipboard/angular.json | 94 +++++++++------- .../excel/spreadsheet/clipboard/package.json | 38 +++---- .../spreadsheet/clipboard/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../clipboard/src/config/tsconfig.app.json | 12 -- .../clipboard/src/config/tsconfig.base.json | 24 ---- .../clipboard/src/config/tsconfig.spec.json | 19 ---- .../clipboard/src/config/tsconfig.worker.json | 14 --- .../spreadsheet/clipboard/tsconfig.app.json | 10 ++ .../excel/spreadsheet/clipboard/tsconfig.json | 44 ++++---- .../commands/.codesandbox/Dockerfile | 1 + .../commands/.codesandbox/tasks.json | 17 +++ .../excel/spreadsheet/commands/.stackblitzrc | 2 +- .../excel/spreadsheet/commands/angular.json | 94 +++++++++------- .../excel/spreadsheet/commands/package.json | 38 +++---- .../spreadsheet/commands/sandbox.config.json | 5 - .../commands/src/config/tsconfig-es5.app.json | 6 - .../commands/src/config/tsconfig.app.json | 12 -- .../commands/src/config/tsconfig.base.json | 24 ---- .../commands/src/config/tsconfig.spec.json | 19 ---- .../commands/src/config/tsconfig.worker.json | 14 --- .../spreadsheet/commands/tsconfig.app.json | 10 ++ .../excel/spreadsheet/commands/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../conditional-formatting/.stackblitzrc | 2 +- .../conditional-formatting/angular.json | 94 +++++++++------- .../conditional-formatting/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../conditional-formatting/tsconfig.app.json | 10 ++ .../conditional-formatting/tsconfig.json | 44 ++++---- .../config-options/.codesandbox/Dockerfile | 1 + .../config-options/.codesandbox/tasks.json | 17 +++ .../spreadsheet/config-options/.stackblitzrc | 2 +- .../spreadsheet/config-options/angular.json | 94 +++++++++------- .../spreadsheet/config-options/package.json | 38 +++---- .../config-options/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../config-options/tsconfig.app.json | 10 ++ .../spreadsheet/config-options/tsconfig.json | 44 ++++---- .../data-validation/.codesandbox/Dockerfile | 1 + .../data-validation/.codesandbox/tasks.json | 17 +++ .../spreadsheet/data-validation/.stackblitzrc | 2 +- .../spreadsheet/data-validation/angular.json | 94 +++++++++------- .../spreadsheet/data-validation/package.json | 38 +++---- .../data-validation/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../data-validation/tsconfig.app.json | 10 ++ .../spreadsheet/data-validation/tsconfig.json | 44 ++++---- .../hyperlinks/.codesandbox/Dockerfile | 1 + .../hyperlinks/.codesandbox/tasks.json | 17 +++ .../spreadsheet/hyperlinks/.stackblitzrc | 2 +- .../excel/spreadsheet/hyperlinks/angular.json | 94 +++++++++------- .../excel/spreadsheet/hyperlinks/package.json | 38 +++---- .../hyperlinks/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../hyperlinks/src/config/tsconfig.app.json | 12 -- .../hyperlinks/src/config/tsconfig.base.json | 24 ---- .../hyperlinks/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../spreadsheet/hyperlinks/tsconfig.app.json | 10 ++ .../spreadsheet/hyperlinks/tsconfig.json | 44 ++++---- .../overview/.codesandbox/Dockerfile | 1 + .../overview/.codesandbox/tasks.json | 17 +++ .../excel/spreadsheet/overview/.stackblitzrc | 2 +- .../excel/spreadsheet/overview/angular.json | 94 +++++++++------- .../excel/spreadsheet/overview/package.json | 38 +++---- .../spreadsheet/overview/sandbox.config.json | 5 - .../overview/src/config/tsconfig-es5.app.json | 6 - .../overview/src/config/tsconfig.app.json | 12 -- .../overview/src/config/tsconfig.base.json | 24 ---- .../overview/src/config/tsconfig.spec.json | 19 ---- .../overview/src/config/tsconfig.worker.json | 14 --- .../spreadsheet/overview/tsconfig.app.json | 10 ++ .../excel/spreadsheet/overview/tsconfig.json | 44 ++++---- .../animation/.codesandbox/Dockerfile | 1 + .../animation/.codesandbox/tasks.json | 17 +++ .../bullet-graph/animation/.stackblitzrc | 2 +- .../bullet-graph/animation/angular.json | 94 +++++++++------- .../bullet-graph/animation/package.json | 38 +++---- .../animation/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../animation/src/config/tsconfig.app.json | 12 -- .../animation/src/config/tsconfig.base.json | 24 ---- .../animation/src/config/tsconfig.spec.json | 19 ---- .../animation/src/config/tsconfig.worker.json | 14 --- .../bullet-graph/animation/tsconfig.app.json | 10 ++ .../bullet-graph/animation/tsconfig.json | 44 ++++---- .../background/.codesandbox/Dockerfile | 1 + .../background/.codesandbox/tasks.json | 17 +++ .../bullet-graph/background/.stackblitzrc | 2 +- .../bullet-graph/background/angular.json | 94 +++++++++------- .../bullet-graph/background/package.json | 38 +++---- .../background/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../background/src/config/tsconfig.app.json | 12 -- .../background/src/config/tsconfig.base.json | 24 ---- .../background/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../bullet-graph/background/tsconfig.app.json | 10 ++ .../bullet-graph/background/tsconfig.json | 44 ++++---- .../highlight-needle/.codesandbox/Dockerfile | 1 + .../highlight-needle/.codesandbox/tasks.json | 17 +++ .../highlight-needle/.stackblitzrc | 2 +- .../highlight-needle/angular.json | 93 ++++++++------- .../highlight-needle/package.json | 38 +++---- .../highlight-needle/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../highlight-needle/tsconfig.app.json | 10 ++ .../highlight-needle/tsconfig.json | 44 ++++---- .../labels/.codesandbox/Dockerfile | 1 + .../labels/.codesandbox/tasks.json | 17 +++ .../gauges/bullet-graph/labels/.stackblitzrc | 2 +- .../gauges/bullet-graph/labels/angular.json | 94 +++++++++------- .../gauges/bullet-graph/labels/package.json | 38 +++---- .../bullet-graph/labels/sandbox.config.json | 5 - .../labels/src/config/tsconfig-es5.app.json | 6 - .../labels/src/config/tsconfig.app.json | 12 -- .../labels/src/config/tsconfig.base.json | 24 ---- .../labels/src/config/tsconfig.spec.json | 19 ---- .../labels/src/config/tsconfig.worker.json | 14 --- .../bullet-graph/labels/tsconfig.app.json | 10 ++ .../gauges/bullet-graph/labels/tsconfig.json | 44 ++++---- .../measures/.codesandbox/Dockerfile | 1 + .../measures/.codesandbox/tasks.json | 17 +++ .../bullet-graph/measures/.stackblitzrc | 2 +- .../gauges/bullet-graph/measures/angular.json | 94 +++++++++------- .../gauges/bullet-graph/measures/package.json | 38 +++---- .../bullet-graph/measures/sandbox.config.json | 5 - .../measures/src/config/tsconfig-es5.app.json | 6 - .../measures/src/config/tsconfig.app.json | 12 -- .../measures/src/config/tsconfig.base.json | 24 ---- .../measures/src/config/tsconfig.spec.json | 19 ---- .../measures/src/config/tsconfig.worker.json | 14 --- .../bullet-graph/measures/tsconfig.app.json | 10 ++ .../bullet-graph/measures/tsconfig.json | 44 ++++---- .../ranges/.codesandbox/Dockerfile | 1 + .../ranges/.codesandbox/tasks.json | 17 +++ .../gauges/bullet-graph/ranges/.stackblitzrc | 2 +- .../gauges/bullet-graph/ranges/angular.json | 94 +++++++++------- .../gauges/bullet-graph/ranges/package.json | 38 +++---- .../bullet-graph/ranges/sandbox.config.json | 5 - .../ranges/src/config/tsconfig-es5.app.json | 6 - .../ranges/src/config/tsconfig.app.json | 12 -- .../ranges/src/config/tsconfig.base.json | 24 ---- .../ranges/src/config/tsconfig.spec.json | 19 ---- .../ranges/src/config/tsconfig.worker.json | 14 --- .../bullet-graph/ranges/tsconfig.app.json | 10 ++ .../gauges/bullet-graph/ranges/tsconfig.json | 44 ++++---- .../scale/.codesandbox/Dockerfile | 1 + .../scale/.codesandbox/tasks.json | 17 +++ .../gauges/bullet-graph/scale/.stackblitzrc | 2 +- .../gauges/bullet-graph/scale/angular.json | 94 +++++++++------- .../gauges/bullet-graph/scale/package.json | 38 +++---- .../bullet-graph/scale/sandbox.config.json | 5 - .../scale/src/config/tsconfig-es5.app.json | 6 - .../scale/src/config/tsconfig.app.json | 12 -- .../scale/src/config/tsconfig.base.json | 24 ---- .../scale/src/config/tsconfig.spec.json | 19 ---- .../scale/src/config/tsconfig.worker.json | 14 --- .../bullet-graph/scale/tsconfig.app.json | 10 ++ .../gauges/bullet-graph/scale/tsconfig.json | 44 ++++---- .../tickmarks/.codesandbox/Dockerfile | 1 + .../tickmarks/.codesandbox/tasks.json | 17 +++ .../bullet-graph/tickmarks/.stackblitzrc | 2 +- .../bullet-graph/tickmarks/angular.json | 94 +++++++++------- .../bullet-graph/tickmarks/package.json | 38 +++---- .../tickmarks/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../tickmarks/src/config/tsconfig.app.json | 12 -- .../tickmarks/src/config/tsconfig.base.json | 24 ---- .../tickmarks/src/config/tsconfig.spec.json | 19 ---- .../tickmarks/src/config/tsconfig.worker.json | 14 --- .../bullet-graph/tickmarks/tsconfig.app.json | 10 ++ .../bullet-graph/tickmarks/tsconfig.json | 44 ++++---- .../animation/.codesandbox/Dockerfile | 1 + .../animation/.codesandbox/tasks.json | 17 +++ .../linear-gauge/animation/.stackblitzrc | 2 +- .../linear-gauge/animation/angular.json | 94 +++++++++------- .../linear-gauge/animation/package.json | 38 +++---- .../animation/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../animation/src/config/tsconfig.app.json | 12 -- .../animation/src/config/tsconfig.base.json | 24 ---- .../animation/src/config/tsconfig.spec.json | 19 ---- .../animation/src/config/tsconfig.worker.json | 14 --- .../linear-gauge/animation/tsconfig.app.json | 10 ++ .../linear-gauge/animation/tsconfig.json | 44 ++++---- .../backing/.codesandbox/Dockerfile | 1 + .../backing/.codesandbox/tasks.json | 17 +++ .../gauges/linear-gauge/backing/.stackblitzrc | 2 +- .../gauges/linear-gauge/backing/angular.json | 94 +++++++++------- .../gauges/linear-gauge/backing/package.json | 38 +++---- .../linear-gauge/backing/sandbox.config.json | 5 - .../backing/src/config/tsconfig-es5.app.json | 6 - .../backing/src/config/tsconfig.app.json | 12 -- .../backing/src/config/tsconfig.base.json | 24 ---- .../backing/src/config/tsconfig.spec.json | 19 ---- .../backing/src/config/tsconfig.worker.json | 14 --- .../linear-gauge/backing/tsconfig.app.json | 10 ++ .../gauges/linear-gauge/backing/tsconfig.json | 44 ++++---- .../highlight-needle/.codesandbox/Dockerfile | 1 + .../highlight-needle/.codesandbox/tasks.json | 17 +++ .../highlight-needle/.stackblitzrc | 2 +- .../highlight-needle/angular.json | 93 ++++++++------- .../highlight-needle/package.json | 38 +++---- .../highlight-needle/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../highlight-needle/tsconfig.app.json | 10 ++ .../highlight-needle/tsconfig.json | 44 ++++---- .../labels/.codesandbox/Dockerfile | 1 + .../labels/.codesandbox/tasks.json | 17 +++ .../gauges/linear-gauge/labels/.stackblitzrc | 2 +- .../gauges/linear-gauge/labels/angular.json | 94 +++++++++------- .../gauges/linear-gauge/labels/package.json | 38 +++---- .../linear-gauge/labels/sandbox.config.json | 5 - .../labels/src/config/tsconfig-es5.app.json | 6 - .../labels/src/config/tsconfig.app.json | 12 -- .../labels/src/config/tsconfig.base.json | 24 ---- .../labels/src/config/tsconfig.spec.json | 19 ---- .../labels/src/config/tsconfig.worker.json | 14 --- .../linear-gauge/labels/tsconfig.app.json | 10 ++ .../gauges/linear-gauge/labels/tsconfig.json | 44 ++++---- .../needle/.codesandbox/Dockerfile | 1 + .../needle/.codesandbox/tasks.json | 17 +++ .../gauges/linear-gauge/needle/.stackblitzrc | 2 +- .../gauges/linear-gauge/needle/angular.json | 94 +++++++++------- .../gauges/linear-gauge/needle/package.json | 38 +++---- .../linear-gauge/needle/sandbox.config.json | 5 - .../needle/src/config/tsconfig-es5.app.json | 6 - .../needle/src/config/tsconfig.app.json | 12 -- .../needle/src/config/tsconfig.base.json | 24 ---- .../needle/src/config/tsconfig.spec.json | 19 ---- .../needle/src/config/tsconfig.worker.json | 14 --- .../linear-gauge/needle/tsconfig.app.json | 10 ++ .../gauges/linear-gauge/needle/tsconfig.json | 44 ++++---- .../ranges/.codesandbox/Dockerfile | 1 + .../ranges/.codesandbox/tasks.json | 17 +++ .../gauges/linear-gauge/ranges/.stackblitzrc | 2 +- .../gauges/linear-gauge/ranges/angular.json | 94 +++++++++------- .../gauges/linear-gauge/ranges/package.json | 38 +++---- .../linear-gauge/ranges/sandbox.config.json | 5 - .../ranges/src/config/tsconfig-es5.app.json | 6 - .../ranges/src/config/tsconfig.app.json | 12 -- .../ranges/src/config/tsconfig.base.json | 24 ---- .../ranges/src/config/tsconfig.spec.json | 19 ---- .../ranges/src/config/tsconfig.worker.json | 14 --- .../linear-gauge/ranges/tsconfig.app.json | 10 ++ .../gauges/linear-gauge/ranges/tsconfig.json | 44 ++++---- .../scale/.codesandbox/Dockerfile | 1 + .../scale/.codesandbox/tasks.json | 17 +++ .../gauges/linear-gauge/scale/.stackblitzrc | 2 +- .../gauges/linear-gauge/scale/angular.json | 94 +++++++++------- .../gauges/linear-gauge/scale/package.json | 38 +++---- .../linear-gauge/scale/sandbox.config.json | 5 - .../scale/src/config/tsconfig-es5.app.json | 6 - .../scale/src/config/tsconfig.app.json | 12 -- .../scale/src/config/tsconfig.base.json | 24 ---- .../scale/src/config/tsconfig.spec.json | 19 ---- .../scale/src/config/tsconfig.worker.json | 14 --- .../linear-gauge/scale/tsconfig.app.json | 10 ++ .../gauges/linear-gauge/scale/tsconfig.json | 44 ++++---- .../tickmarks/.codesandbox/Dockerfile | 1 + .../tickmarks/.codesandbox/tasks.json | 17 +++ .../linear-gauge/tickmarks/.stackblitzrc | 2 +- .../linear-gauge/tickmarks/angular.json | 94 +++++++++------- .../linear-gauge/tickmarks/package.json | 38 +++---- .../tickmarks/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../tickmarks/src/config/tsconfig.app.json | 12 -- .../tickmarks/src/config/tsconfig.base.json | 24 ---- .../tickmarks/src/config/tsconfig.spec.json | 19 ---- .../tickmarks/src/config/tsconfig.worker.json | 14 --- .../linear-gauge/tickmarks/tsconfig.app.json | 10 ++ .../linear-gauge/tickmarks/tsconfig.json | 44 ++++---- .../animation/.codesandbox/Dockerfile | 1 + .../animation/.codesandbox/tasks.json | 17 +++ .../radial-gauge/animation/.stackblitzrc | 2 +- .../radial-gauge/animation/angular.json | 94 +++++++++------- .../radial-gauge/animation/package.json | 38 +++---- .../animation/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../animation/src/config/tsconfig.app.json | 12 -- .../animation/src/config/tsconfig.base.json | 24 ---- .../animation/src/config/tsconfig.spec.json | 19 ---- .../animation/src/config/tsconfig.worker.json | 14 --- .../radial-gauge/animation/tsconfig.app.json | 10 ++ .../radial-gauge/animation/tsconfig.json | 44 ++++---- .../backing/.codesandbox/Dockerfile | 1 + .../backing/.codesandbox/tasks.json | 17 +++ .../gauges/radial-gauge/backing/.stackblitzrc | 2 +- .../gauges/radial-gauge/backing/angular.json | 94 +++++++++------- .../gauges/radial-gauge/backing/package.json | 38 +++---- .../radial-gauge/backing/sandbox.config.json | 5 - .../backing/src/config/tsconfig-es5.app.json | 6 - .../backing/src/config/tsconfig.app.json | 12 -- .../backing/src/config/tsconfig.base.json | 24 ---- .../backing/src/config/tsconfig.spec.json | 19 ---- .../backing/src/config/tsconfig.worker.json | 14 --- .../radial-gauge/backing/tsconfig.app.json | 10 ++ .../gauges/radial-gauge/backing/tsconfig.json | 44 ++++---- .../highlight-needle/.codesandbox/Dockerfile | 1 + .../highlight-needle/.codesandbox/tasks.json | 17 +++ .../highlight-needle/.stackblitzrc | 2 +- .../highlight-needle/angular.json | 93 ++++++++------- .../highlight-needle/package.json | 38 +++---- .../highlight-needle/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../highlight-needle/tsconfig.app.json | 10 ++ .../highlight-needle/tsconfig.json | 44 ++++---- .../labels/.codesandbox/Dockerfile | 1 + .../labels/.codesandbox/tasks.json | 17 +++ .../gauges/radial-gauge/labels/.stackblitzrc | 2 +- .../gauges/radial-gauge/labels/angular.json | 94 +++++++++------- .../gauges/radial-gauge/labels/package.json | 38 +++---- .../radial-gauge/labels/sandbox.config.json | 5 - .../labels/src/config/tsconfig-es5.app.json | 6 - .../labels/src/config/tsconfig.app.json | 12 -- .../labels/src/config/tsconfig.base.json | 24 ---- .../labels/src/config/tsconfig.spec.json | 19 ---- .../labels/src/config/tsconfig.worker.json | 14 --- .../radial-gauge/labels/tsconfig.app.json | 10 ++ .../gauges/radial-gauge/labels/tsconfig.json | 44 ++++---- .../needle/.codesandbox/Dockerfile | 1 + .../needle/.codesandbox/tasks.json | 17 +++ .../gauges/radial-gauge/needle/.stackblitzrc | 2 +- .../gauges/radial-gauge/needle/angular.json | 94 +++++++++------- .../gauges/radial-gauge/needle/package.json | 38 +++---- .../radial-gauge/needle/sandbox.config.json | 5 - .../needle/src/config/tsconfig-es5.app.json | 6 - .../needle/src/config/tsconfig.app.json | 12 -- .../needle/src/config/tsconfig.base.json | 24 ---- .../needle/src/config/tsconfig.spec.json | 19 ---- .../needle/src/config/tsconfig.worker.json | 14 --- .../radial-gauge/needle/tsconfig.app.json | 10 ++ .../gauges/radial-gauge/needle/tsconfig.json | 44 ++++---- .../optical-scaling/.codesandbox/Dockerfile | 1 + .../optical-scaling/.codesandbox/tasks.json | 17 +++ .../optical-scaling/.stackblitzrc | 2 +- .../radial-gauge/optical-scaling/angular.json | 93 ++++++++------- .../radial-gauge/optical-scaling/package.json | 38 +++---- .../optical-scaling/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../optical-scaling/tsconfig.app.json | 10 ++ .../optical-scaling/tsconfig.json | 44 ++++---- .../ranges/.codesandbox/Dockerfile | 1 + .../ranges/.codesandbox/tasks.json | 17 +++ .../gauges/radial-gauge/ranges/.stackblitzrc | 2 +- .../gauges/radial-gauge/ranges/angular.json | 94 +++++++++------- .../gauges/radial-gauge/ranges/package.json | 38 +++---- .../radial-gauge/ranges/sandbox.config.json | 5 - .../ranges/src/config/tsconfig-es5.app.json | 6 - .../ranges/src/config/tsconfig.app.json | 12 -- .../ranges/src/config/tsconfig.base.json | 24 ---- .../ranges/src/config/tsconfig.spec.json | 19 ---- .../ranges/src/config/tsconfig.worker.json | 14 --- .../radial-gauge/ranges/tsconfig.app.json | 10 ++ .../gauges/radial-gauge/ranges/tsconfig.json | 44 ++++---- .../scale/.codesandbox/Dockerfile | 1 + .../scale/.codesandbox/tasks.json | 17 +++ .../gauges/radial-gauge/scale/.stackblitzrc | 2 +- .../gauges/radial-gauge/scale/angular.json | 94 +++++++++------- .../gauges/radial-gauge/scale/package.json | 38 +++---- .../radial-gauge/scale/sandbox.config.json | 5 - .../scale/src/config/tsconfig-es5.app.json | 6 - .../scale/src/config/tsconfig.app.json | 12 -- .../scale/src/config/tsconfig.base.json | 24 ---- .../scale/src/config/tsconfig.spec.json | 19 ---- .../scale/src/config/tsconfig.worker.json | 14 --- .../radial-gauge/scale/tsconfig.app.json | 10 ++ .../gauges/radial-gauge/scale/tsconfig.json | 44 ++++---- .../tickmarks/.codesandbox/Dockerfile | 1 + .../tickmarks/.codesandbox/tasks.json | 17 +++ .../radial-gauge/tickmarks/.stackblitzrc | 2 +- .../radial-gauge/tickmarks/angular.json | 94 +++++++++------- .../radial-gauge/tickmarks/package.json | 38 +++---- .../tickmarks/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../tickmarks/src/config/tsconfig.app.json | 12 -- .../tickmarks/src/config/tsconfig.base.json | 24 ---- .../tickmarks/src/config/tsconfig.spec.json | 19 ---- .../tickmarks/src/config/tsconfig.worker.json | 14 --- .../radial-gauge/tickmarks/tsconfig.app.json | 10 ++ .../radial-gauge/tickmarks/tsconfig.json | 44 ++++---- .../binding-data-csv/.codesandbox/Dockerfile | 1 + .../binding-data-csv/.codesandbox/tasks.json | 17 +++ .../geo-map/binding-data-csv/.stackblitzrc | 2 +- .../geo-map/binding-data-csv/angular.json | 94 +++++++++------- .../geo-map/binding-data-csv/package.json | 38 +++---- .../binding-data-csv/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../binding-data-csv/tsconfig.app.json | 10 ++ .../geo-map/binding-data-csv/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../binding-data-json-points/.stackblitzrc | 2 +- .../binding-data-json-points/angular.json | 94 +++++++++------- .../binding-data-json-points/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../binding-data-json-points/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../geo-map/binding-data-model/.stackblitzrc | 2 +- .../geo-map/binding-data-model/angular.json | 94 +++++++++------- .../geo-map/binding-data-model/package.json | 38 +++---- .../binding-data-model/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../binding-data-model/tsconfig.app.json | 10 ++ .../geo-map/binding-data-model/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../binding-multiple-shapes/.stackblitzrc | 2 +- .../binding-multiple-shapes/angular.json | 94 +++++++++------- .../binding-multiple-shapes/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../binding-multiple-shapes/tsconfig.app.json | 10 ++ .../binding-multiple-shapes/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../binding-multiple-sources/.stackblitzrc | 2 +- .../binding-multiple-sources/angular.json | 94 +++++++++------- .../binding-multiple-sources/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../binding-multiple-sources/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../geo-map/binding-shp-points/.stackblitzrc | 2 +- .../geo-map/binding-shp-points/angular.json | 94 +++++++++------- .../geo-map/binding-shp-points/package.json | 38 +++---- .../binding-shp-points/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../binding-shp-points/tsconfig.app.json | 10 ++ .../geo-map/binding-shp-points/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../binding-shp-polygons/.stackblitzrc | 2 +- .../geo-map/binding-shp-polygons/angular.json | 94 +++++++++------- .../geo-map/binding-shp-polygons/package.json | 38 +++---- .../binding-shp-polygons/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../binding-shp-polygons/tsconfig.app.json | 10 ++ .../binding-shp-polygons/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../binding-shp-polylines/.stackblitzrc | 2 +- .../binding-shp-polylines/angular.json | 94 +++++++++------- .../binding-shp-polylines/package.json | 38 +++---- .../binding-shp-polylines/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../binding-shp-polylines/tsconfig.app.json | 10 ++ .../binding-shp-polylines/tsconfig.json | 44 ++++---- .../custom-tooltips/.codesandbox/Dockerfile | 1 + .../custom-tooltips/.codesandbox/tasks.json | 17 +++ .../geo-map/custom-tooltips/.stackblitzrc | 2 +- .../maps/geo-map/custom-tooltips/angular.json | 94 +++++++++------- .../maps/geo-map/custom-tooltips/package.json | 38 +++---- .../custom-tooltips/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../geo-map/custom-tooltips/tsconfig.app.json | 10 ++ .../geo-map/custom-tooltips/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../display-bing-imagery/.stackblitzrc | 2 +- .../geo-map/display-bing-imagery/angular.json | 94 +++++++++------- .../geo-map/display-bing-imagery/package.json | 38 +++---- .../display-bing-imagery/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../display-bing-imagery/tsconfig.app.json | 10 ++ .../display-bing-imagery/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../display-esri-imagery/.stackblitzrc | 2 +- .../geo-map/display-esri-imagery/angular.json | 94 +++++++++------- .../geo-map/display-esri-imagery/package.json | 38 +++---- .../display-esri-imagery/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../display-esri-imagery/tsconfig.app.json | 10 ++ .../display-esri-imagery/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../display-heat-imagery/.stackblitzrc | 2 +- .../geo-map/display-heat-imagery/angular.json | 94 +++++++++------- .../geo-map/display-heat-imagery/package.json | 38 +++---- .../display-heat-imagery/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../display-heat-imagery/tsconfig.app.json | 10 ++ .../display-heat-imagery/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../geo-map/display-osm-imagery/.stackblitzrc | 2 +- .../geo-map/display-osm-imagery/angular.json | 94 +++++++++------- .../geo-map/display-osm-imagery/package.json | 38 +++---- .../display-osm-imagery/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../display-osm-imagery/tsconfig.app.json | 10 ++ .../geo-map/display-osm-imagery/tsconfig.json | 44 ++++---- .../marker-layouts/.codesandbox/Dockerfile | 1 + .../marker-layouts/.codesandbox/tasks.json | 17 +++ .../maps/geo-map/marker-layouts/.stackblitzrc | 2 +- .../maps/geo-map/marker-layouts/angular.json | 94 +++++++++------- .../maps/geo-map/marker-layouts/package.json | 38 +++---- .../marker-layouts/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../geo-map/marker-layouts/tsconfig.app.json | 10 ++ .../maps/geo-map/marker-layouts/tsconfig.json | 44 ++++---- .../marker-template/.codesandbox/Dockerfile | 1 + .../marker-template/.codesandbox/tasks.json | 17 +++ .../geo-map/marker-template/.stackblitzrc | 2 +- .../maps/geo-map/marker-template/angular.json | 94 +++++++++------- .../maps/geo-map/marker-template/package.json | 38 +++---- .../marker-template/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../geo-map/marker-template/tsconfig.app.json | 10 ++ .../geo-map/marker-template/tsconfig.json | 44 ++++---- .../marker-type/.codesandbox/Dockerfile | 1 + .../marker-type/.codesandbox/tasks.json | 17 +++ .../maps/geo-map/marker-type/.stackblitzrc | 2 +- samples/maps/geo-map/marker-type/angular.json | 94 +++++++++------- samples/maps/geo-map/marker-type/package.json | 38 +++---- .../geo-map/marker-type/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../marker-type/src/config/tsconfig.app.json | 12 -- .../marker-type/src/config/tsconfig.base.json | 24 ---- .../marker-type/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../geo-map/marker-type/tsconfig.app.json | 10 ++ .../maps/geo-map/marker-type/tsconfig.json | 44 ++++---- .../navigation/.codesandbox/Dockerfile | 1 + .../navigation/.codesandbox/tasks.json | 17 +++ samples/maps/geo-map/navigation/.stackblitzrc | 2 +- samples/maps/geo-map/navigation/angular.json | 94 +++++++++------- samples/maps/geo-map/navigation/package.json | 38 +++---- .../geo-map/navigation/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../navigation/src/config/tsconfig.app.json | 12 -- .../navigation/src/config/tsconfig.base.json | 24 ---- .../navigation/src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../maps/geo-map/navigation/tsconfig.app.json | 10 ++ samples/maps/geo-map/navigation/tsconfig.json | 44 ++++---- .../geo-map/overview/.codesandbox/Dockerfile | 1 + .../geo-map/overview/.codesandbox/tasks.json | 17 +++ samples/maps/geo-map/overview/.stackblitzrc | 2 +- samples/maps/geo-map/overview/angular.json | 94 +++++++++------- samples/maps/geo-map/overview/package.json | 38 +++---- .../maps/geo-map/overview/sandbox.config.json | 5 - .../overview/src/config/tsconfig-es5.app.json | 6 - .../overview/src/config/tsconfig.app.json | 12 -- .../overview/src/config/tsconfig.base.json | 24 ---- .../overview/src/config/tsconfig.spec.json | 19 ---- .../overview/src/config/tsconfig.worker.json | 14 --- .../maps/geo-map/overview/tsconfig.app.json | 10 ++ samples/maps/geo-map/overview/tsconfig.json | 44 ++++---- .../shape-styling/.codesandbox/Dockerfile | 1 + .../shape-styling/.codesandbox/tasks.json | 17 +++ .../maps/geo-map/shape-styling/.stackblitzrc | 2 +- .../maps/geo-map/shape-styling/angular.json | 94 +++++++++------- .../maps/geo-map/shape-styling/package.json | 38 +++---- .../geo-map/shape-styling/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../geo-map/shape-styling/tsconfig.app.json | 10 ++ .../maps/geo-map/shape-styling/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../geo-map/triangulating-data/.stackblitzrc | 2 +- .../geo-map/triangulating-data/angular.json | 94 +++++++++------- .../geo-map/triangulating-data/package.json | 38 +++---- .../triangulating-data/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../triangulating-data/tsconfig.app.json | 10 ++ .../geo-map/triangulating-data/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-scatter-area-series/.stackblitzrc | 2 +- .../type-scatter-area-series/angular.json | 94 +++++++++------- .../type-scatter-area-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-scatter-area-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-scatter-bubble-series/.stackblitzrc | 2 +- .../type-scatter-bubble-series/angular.json | 94 +++++++++------- .../type-scatter-bubble-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-scatter-bubble-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-scatter-contour-series/.stackblitzrc | 2 +- .../type-scatter-contour-series/angular.json | 94 +++++++++------- .../type-scatter-contour-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-scatter-contour-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-scatter-density-series/.stackblitzrc | 2 +- .../type-scatter-density-series/angular.json | 94 +++++++++------- .../type-scatter-density-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-scatter-density-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-scatter-symbol-series/.stackblitzrc | 2 +- .../type-scatter-symbol-series/angular.json | 94 +++++++++------- .../type-scatter-symbol-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-scatter-symbol-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-shape-polygon-series/.stackblitzrc | 2 +- .../type-shape-polygon-series/angular.json | 94 +++++++++------- .../type-shape-polygon-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-shape-polygon-series/tsconfig.json | 44 ++++---- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../type-shape-polyline-series/.stackblitzrc | 2 +- .../type-shape-polyline-series/angular.json | 94 +++++++++------- .../type-shape-polyline-series/package.json | 38 +++---- .../sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 -- .../src/config/tsconfig.base.json | 24 ---- .../src/config/tsconfig.spec.json | 19 ---- .../src/config/tsconfig.worker.json | 14 --- .../tsconfig.app.json | 10 ++ .../type-shape-polyline-series/tsconfig.json | 44 ++++---- tests/display-heat-imagery/.stackblitzrc | 1 + tests/display-heat-imagery/ReadMe.md | 58 ++++++++++ tests/display-heat-imagery/angular.json | 106 ++++++++++++++++++ tests/display-heat-imagery/package.json | 45 ++++++++ .../display-heat-imagery}/sandbox.config.json | 0 .../display-heat-imagery/src/HeatmapWorker.ts | 15 +++ .../src/app.component.html | 4 + .../src/app.component.scss | 3 + .../display-heat-imagery/src/app.component.ts | 89 +++++++++++++++ tests/display-heat-imagery/src/app.module.ts | 29 +++++ .../src/config/tsconfig-es5.app.json | 0 .../src/config/tsconfig.app.json | 0 .../src/config/tsconfig.base.json | 0 .../src/config/tsconfig.spec.json | 0 .../src/config/tsconfig.worker.json | 0 .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ tests/display-heat-imagery/src/index.html | 22 ++++ tests/display-heat-imagery/src/main.ts | 15 +++ tests/display-heat-imagery/src/polyfills.ts | 65 +++++++++++ tests/display-heat-imagery/src/styles.scss | 9 ++ tests/display-heat-imagery/src/typings.d.ts | 5 + tests/display-heat-imagery/tsconfig.json | 21 ++++ 4367 files changed, 43113 insertions(+), 53157 deletions(-) create mode 100644 samples/charts/category-chart/annotations-all/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/annotations-all/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/annotations-all/sandbox.config.json create mode 100644 samples/charts/category-chart/annotations-all/tsconfig.app.json create mode 100644 samples/charts/category-chart/annotations-callouts/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/annotations-callouts/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/annotations-callouts/sandbox.config.json delete mode 100644 samples/charts/category-chart/annotations-callouts/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/annotations-callouts/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/annotations-callouts/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/annotations-callouts/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/annotations-callouts/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/annotations-callouts/tsconfig.app.json create mode 100644 samples/charts/category-chart/annotations-crosshairs/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/annotations-crosshairs/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/annotations-crosshairs/sandbox.config.json delete mode 100644 samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/annotations-crosshairs/tsconfig.app.json create mode 100644 samples/charts/category-chart/annotations-custom/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/annotations-custom/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/annotations-custom/sandbox.config.json delete mode 100644 samples/charts/category-chart/annotations-custom/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/annotations-custom/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/annotations-custom/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/annotations-custom/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/annotations-custom/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/annotations-custom/tsconfig.app.json create mode 100644 samples/charts/category-chart/annotations-final-value/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/annotations-final-value/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/annotations-final-value/sandbox.config.json delete mode 100644 samples/charts/category-chart/annotations-final-value/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/annotations-final-value/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/annotations-final-value/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/annotations-final-value/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/annotations-final-value/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/annotations-final-value/tsconfig.app.json create mode 100644 samples/charts/category-chart/annotations-highlighting/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/annotations-highlighting/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/annotations-highlighting/sandbox.config.json delete mode 100644 samples/charts/category-chart/annotations-highlighting/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/annotations-highlighting/tsconfig.app.json create mode 100644 samples/charts/category-chart/annotations/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/annotations/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/annotations/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/annotations/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/annotations/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/annotations/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/annotations/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/annotations/tsconfig.app.json create mode 100644 samples/charts/category-chart/area-chart-multiple-sources/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/area-chart-multiple-sources/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/area-chart-multiple-sources/sandbox.config.json delete mode 100644 samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/area-chart-multiple-sources/tsconfig.app.json create mode 100644 samples/charts/category-chart/area-chart-single-source/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/area-chart-single-source/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/area-chart-single-source/sandbox.config.json delete mode 100644 samples/charts/category-chart/area-chart-single-source/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/area-chart-single-source/tsconfig.app.json create mode 100644 samples/charts/category-chart/area-chart-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/area-chart-styling/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/area-chart-styling/sandbox.config.json delete mode 100644 samples/charts/category-chart/area-chart-styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/area-chart-styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/area-chart-styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/area-chart-styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/area-chart-styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/area-chart-styling/tsconfig.app.json create mode 100644 samples/charts/category-chart/axis-gap/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/axis-gap/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/axis-gap/sandbox.config.json delete mode 100644 samples/charts/category-chart/axis-gap/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/axis-gap/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/axis-gap/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/axis-gap/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/axis-gap/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/axis-gap/tsconfig.app.json create mode 100644 samples/charts/category-chart/axis-gridlines/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/axis-gridlines/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/axis-gridlines/sandbox.config.json delete mode 100644 samples/charts/category-chart/axis-gridlines/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/axis-gridlines/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/axis-gridlines/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/axis-gridlines/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/axis-gridlines/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/axis-gridlines/tsconfig.app.json create mode 100644 samples/charts/category-chart/axis-inverted/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/axis-inverted/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/axis-inverted/sandbox.config.json delete mode 100644 samples/charts/category-chart/axis-inverted/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/axis-inverted/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/axis-inverted/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/axis-inverted/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/axis-inverted/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/axis-inverted/tsconfig.app.json create mode 100644 samples/charts/category-chart/axis-labels/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/axis-labels/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/axis-labels/sandbox.config.json delete mode 100644 samples/charts/category-chart/axis-labels/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/axis-labels/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/axis-labels/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/axis-labels/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/axis-labels/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/axis-labels/tsconfig.app.json create mode 100644 samples/charts/category-chart/axis-locations/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/axis-locations/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/axis-locations/sandbox.config.json delete mode 100644 samples/charts/category-chart/axis-locations/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/axis-locations/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/axis-locations/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/axis-locations/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/axis-locations/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/axis-locations/tsconfig.app.json create mode 100644 samples/charts/category-chart/axis-options/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/axis-options/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/axis-options/sandbox.config.json delete mode 100644 samples/charts/category-chart/axis-options/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/axis-options/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/axis-options/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/axis-options/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/axis-options/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/axis-options/tsconfig.app.json create mode 100644 samples/charts/category-chart/axis-overlap/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/axis-overlap/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/axis-overlap/sandbox.config.json delete mode 100644 samples/charts/category-chart/axis-overlap/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/axis-overlap/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/axis-overlap/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/axis-overlap/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/axis-overlap/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/axis-overlap/tsconfig.app.json create mode 100644 samples/charts/category-chart/axis-range/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/axis-range/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/axis-range/sandbox.config.json delete mode 100644 samples/charts/category-chart/axis-range/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/axis-range/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/axis-range/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/axis-range/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/axis-range/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/axis-range/tsconfig.app.json create mode 100644 samples/charts/category-chart/axis-tickmarks/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/axis-tickmarks/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/axis-tickmarks/sandbox.config.json delete mode 100644 samples/charts/category-chart/axis-tickmarks/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/axis-tickmarks/tsconfig.app.json create mode 100644 samples/charts/category-chart/axis-titles/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/axis-titles/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/axis-titles/sandbox.config.json delete mode 100644 samples/charts/category-chart/axis-titles/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/axis-titles/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/axis-titles/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/axis-titles/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/axis-titles/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/axis-titles/tsconfig.app.json create mode 100644 samples/charts/category-chart/chart-highlight-filter/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/chart-highlight-filter/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/chart-highlight-filter/sandbox.config.json delete mode 100644 samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/chart-highlight-filter/tsconfig.app.json create mode 100644 samples/charts/category-chart/column-chart-multiple-sources/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/column-chart-multiple-sources/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/column-chart-multiple-sources/sandbox.config.json delete mode 100644 samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/column-chart-multiple-sources/tsconfig.app.json create mode 100644 samples/charts/category-chart/column-chart-single-source/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/column-chart-single-source/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/column-chart-single-source/sandbox.config.json delete mode 100644 samples/charts/category-chart/column-chart-single-source/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/column-chart-single-source/tsconfig.app.json create mode 100644 samples/charts/category-chart/column-chart-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/column-chart-styling/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/column-chart-styling/sandbox.config.json delete mode 100644 samples/charts/category-chart/column-chart-styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/column-chart-styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/column-chart-styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/column-chart-styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/column-chart-styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/column-chart-styling/tsconfig.app.json create mode 100644 samples/charts/category-chart/column-chart-with-highlighting/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/column-chart-with-highlighting/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/column-chart-with-highlighting/sandbox.config.json delete mode 100644 samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/column-chart-with-highlighting/tsconfig.app.json create mode 100644 samples/charts/category-chart/column-chart-with-tooltips/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/column-chart-with-tooltips/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/column-chart-with-tooltips/sandbox.config.json delete mode 100644 samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/column-chart-with-tooltips/tsconfig.app.json create mode 100644 samples/charts/category-chart/custom-selection/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/custom-selection/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/custom-selection/sandbox.config.json delete mode 100644 samples/charts/category-chart/custom-selection/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/custom-selection/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/custom-selection/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/custom-selection/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/custom-selection/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/custom-selection/tsconfig.app.json create mode 100644 samples/charts/category-chart/data-aggregations/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/data-aggregations/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/data-aggregations/sandbox.config.json delete mode 100644 samples/charts/category-chart/data-aggregations/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/data-aggregations/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/data-aggregations/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/data-aggregations/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/data-aggregations/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/data-aggregations/tsconfig.app.json create mode 100644 samples/charts/category-chart/data-filter/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/data-filter/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/data-filter/sandbox.config.json delete mode 100644 samples/charts/category-chart/data-filter/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/data-filter/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/data-filter/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/data-filter/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/data-filter/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/data-filter/tsconfig.app.json create mode 100644 samples/charts/category-chart/data-legend-formatting-decimals/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/data-legend-formatting-decimals/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/data-legend-formatting-decimals/sandbox.config.json delete mode 100644 samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.app.json create mode 100644 samples/charts/category-chart/data-legend/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/data-legend/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/data-legend/sandbox.config.json delete mode 100644 samples/charts/category-chart/data-legend/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/data-legend/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/data-legend/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/data-legend/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/data-legend/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/data-legend/tsconfig.app.json create mode 100644 samples/charts/category-chart/data-tooltip-formatting-decimals/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/data-tooltip-formatting-decimals/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/data-tooltip-formatting-decimals/sandbox.config.json delete mode 100644 samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.app.json create mode 100644 samples/charts/category-chart/data-tooltip-positioning/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/data-tooltip-positioning/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/data-tooltip-positioning/sandbox.config.json delete mode 100644 samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/data-tooltip-positioning/tsconfig.app.json create mode 100644 samples/charts/category-chart/data-tooltip/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/data-tooltip/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/data-tooltip/sandbox.config.json delete mode 100644 samples/charts/category-chart/data-tooltip/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/data-tooltip/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/data-tooltip/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/data-tooltip/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/data-tooltip/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/data-tooltip/tsconfig.app.json create mode 100644 samples/charts/category-chart/format-specifiers/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/format-specifiers/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/format-specifiers/sandbox.config.json delete mode 100644 samples/charts/category-chart/format-specifiers/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/format-specifiers/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/format-specifiers/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/format-specifiers/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/format-specifiers/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/format-specifiers/tsconfig.app.json create mode 100644 samples/charts/category-chart/high-frequency/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/high-frequency/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/high-frequency/sandbox.config.json delete mode 100644 samples/charts/category-chart/high-frequency/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/high-frequency/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/high-frequency/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/high-frequency/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/high-frequency/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/high-frequency/tsconfig.app.json create mode 100644 samples/charts/category-chart/high-volume/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/high-volume/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/high-volume/sandbox.config.json delete mode 100644 samples/charts/category-chart/high-volume/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/high-volume/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/high-volume/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/high-volume/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/high-volume/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/high-volume/tsconfig.app.json create mode 100644 samples/charts/category-chart/highlighting-behavior/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/highlighting-behavior/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/highlighting-behavior/sandbox.config.json delete mode 100644 samples/charts/category-chart/highlighting-behavior/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/highlighting-behavior/tsconfig.app.json create mode 100644 samples/charts/category-chart/highlighting-mode/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/highlighting-mode/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/highlighting-mode/sandbox.config.json delete mode 100644 samples/charts/category-chart/highlighting-mode/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/highlighting-mode/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/highlighting-mode/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/highlighting-mode/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/highlighting-mode/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/highlighting-mode/tsconfig.app.json create mode 100644 samples/charts/category-chart/highlighting/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/highlighting/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/highlighting/sandbox.config.json delete mode 100644 samples/charts/category-chart/highlighting/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/highlighting/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/highlighting/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/highlighting/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/highlighting/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/highlighting/tsconfig.app.json create mode 100644 samples/charts/category-chart/legend-highlighting/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/legend-highlighting/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/legend-highlighting/sandbox.config.json delete mode 100644 samples/charts/category-chart/legend-highlighting/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/legend-highlighting/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/legend-highlighting/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/legend-highlighting/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/legend-highlighting/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/legend-highlighting/tsconfig.app.json create mode 100644 samples/charts/category-chart/line-chart-multiple-sources/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/line-chart-multiple-sources/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/line-chart-multiple-sources/sandbox.config.json delete mode 100644 samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/line-chart-multiple-sources/tsconfig.app.json create mode 100644 samples/charts/category-chart/line-chart-single-source/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/line-chart-single-source/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/line-chart-single-source/sandbox.config.json delete mode 100644 samples/charts/category-chart/line-chart-single-source/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/line-chart-single-source/tsconfig.app.json create mode 100644 samples/charts/category-chart/line-chart-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/line-chart-styling/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/line-chart-styling/sandbox.config.json delete mode 100644 samples/charts/category-chart/line-chart-styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/line-chart-styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/line-chart-styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/line-chart-styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/line-chart-styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/line-chart-styling/tsconfig.app.json create mode 100644 samples/charts/category-chart/line-chart-with-animations/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/line-chart-with-animations/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/line-chart-with-animations/sandbox.config.json delete mode 100644 samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/line-chart-with-animations/tsconfig.app.json create mode 100644 samples/charts/category-chart/line-chart-with-annotations/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/line-chart-with-annotations/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/line-chart-with-annotations/sandbox.config.json delete mode 100644 samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/line-chart-with-annotations/tsconfig.app.json create mode 100644 samples/charts/category-chart/line-chart-with-legend/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/line-chart-with-legend/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/line-chart-with-legend/sandbox.config.json delete mode 100644 samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/line-chart-with-legend/tsconfig.app.json create mode 100644 samples/charts/category-chart/marker-options/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/marker-options/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/marker-options/sandbox.config.json delete mode 100644 samples/charts/category-chart/marker-options/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/marker-options/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/marker-options/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/marker-options/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/marker-options/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/marker-options/tsconfig.app.json create mode 100644 samples/charts/category-chart/marker-templates/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/marker-templates/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/marker-templates/sandbox.config.json delete mode 100644 samples/charts/category-chart/marker-templates/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/marker-templates/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/marker-templates/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/marker-templates/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/marker-templates/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/marker-templates/tsconfig.app.json create mode 100644 samples/charts/category-chart/overview/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/overview/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/overview/sandbox.config.json delete mode 100644 samples/charts/category-chart/overview/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/overview/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/overview/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/overview/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/overview/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/overview/tsconfig.app.json create mode 100644 samples/charts/category-chart/point-chart-multiple-sources/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/point-chart-multiple-sources/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/point-chart-multiple-sources/sandbox.config.json delete mode 100644 samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/point-chart-multiple-sources/tsconfig.app.json create mode 100644 samples/charts/category-chart/point-chart-single-source/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/point-chart-single-source/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/point-chart-single-source/sandbox.config.json delete mode 100644 samples/charts/category-chart/point-chart-single-source/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/point-chart-single-source/tsconfig.app.json create mode 100644 samples/charts/category-chart/point-chart-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/point-chart-styling/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/point-chart-styling/sandbox.config.json delete mode 100644 samples/charts/category-chart/point-chart-styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/point-chart-styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/point-chart-styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/point-chart-styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/point-chart-styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/point-chart-styling/tsconfig.app.json create mode 100644 samples/charts/category-chart/spline-area-multiple-sources/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/spline-area-multiple-sources/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/spline-area-multiple-sources/sandbox.config.json delete mode 100644 samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/spline-area-multiple-sources/tsconfig.app.json create mode 100644 samples/charts/category-chart/spline-area-single-source/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/spline-area-single-source/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/spline-area-single-source/sandbox.config.json delete mode 100644 samples/charts/category-chart/spline-area-single-source/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/spline-area-single-source/tsconfig.app.json create mode 100644 samples/charts/category-chart/spline-area-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/spline-area-styling/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/spline-area-styling/sandbox.config.json delete mode 100644 samples/charts/category-chart/spline-area-styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/spline-area-styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/spline-area-styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/spline-area-styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/spline-area-styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/spline-area-styling/tsconfig.app.json create mode 100644 samples/charts/category-chart/spline-multiple-sources/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/spline-multiple-sources/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/spline-multiple-sources/sandbox.config.json delete mode 100644 samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/spline-multiple-sources/tsconfig.app.json create mode 100644 samples/charts/category-chart/spline-single-source/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/spline-single-source/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/spline-single-source/sandbox.config.json delete mode 100644 samples/charts/category-chart/spline-single-source/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/spline-single-source/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/spline-single-source/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/spline-single-source/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/spline-single-source/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/spline-single-source/tsconfig.app.json create mode 100644 samples/charts/category-chart/spline-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/spline-styling/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/spline-styling/sandbox.config.json delete mode 100644 samples/charts/category-chart/spline-styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/spline-styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/spline-styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/spline-styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/spline-styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/spline-styling/tsconfig.app.json create mode 100644 samples/charts/category-chart/stack-columns/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/stack-columns/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/stack-columns/sandbox.config.json delete mode 100644 samples/charts/category-chart/stack-columns/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/stack-columns/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/stack-columns/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/stack-columns/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/stack-columns/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/stack-columns/tsconfig.app.json create mode 100644 samples/charts/category-chart/step-area-multiple-sources/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/step-area-multiple-sources/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/step-area-multiple-sources/sandbox.config.json delete mode 100644 samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/step-area-multiple-sources/tsconfig.app.json create mode 100644 samples/charts/category-chart/step-area-single-source/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/step-area-single-source/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/step-area-single-source/sandbox.config.json delete mode 100644 samples/charts/category-chart/step-area-single-source/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/step-area-single-source/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/step-area-single-source/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/step-area-single-source/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/step-area-single-source/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/step-area-single-source/tsconfig.app.json create mode 100644 samples/charts/category-chart/step-area-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/step-area-styling/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/step-area-styling/sandbox.config.json delete mode 100644 samples/charts/category-chart/step-area-styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/step-area-styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/step-area-styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/step-area-styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/step-area-styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/step-area-styling/tsconfig.app.json create mode 100644 samples/charts/category-chart/step-line-multiple-sources/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/step-line-multiple-sources/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/step-line-multiple-sources/sandbox.config.json delete mode 100644 samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/step-line-multiple-sources/tsconfig.app.json create mode 100644 samples/charts/category-chart/step-line-single-source/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/step-line-single-source/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/step-line-single-source/sandbox.config.json delete mode 100644 samples/charts/category-chart/step-line-single-source/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/step-line-single-source/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/step-line-single-source/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/step-line-single-source/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/step-line-single-source/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/step-line-single-source/tsconfig.app.json create mode 100644 samples/charts/category-chart/step-line-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/step-line-styling/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/step-line-styling/sandbox.config.json delete mode 100644 samples/charts/category-chart/step-line-styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/step-line-styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/step-line-styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/step-line-styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/step-line-styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/step-line-styling/tsconfig.app.json create mode 100644 samples/charts/category-chart/tooltip-template/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/tooltip-template/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/tooltip-template/sandbox.config.json delete mode 100644 samples/charts/category-chart/tooltip-template/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/tooltip-template/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/tooltip-template/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/tooltip-template/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/tooltip-template/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/tooltip-template/tsconfig.app.json create mode 100644 samples/charts/category-chart/tooltip-types/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/tooltip-types/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/tooltip-types/sandbox.config.json delete mode 100644 samples/charts/category-chart/tooltip-types/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/tooltip-types/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/tooltip-types/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/tooltip-types/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/tooltip-types/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/tooltip-types/tsconfig.app.json create mode 100644 samples/charts/category-chart/trendline/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/trendline/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/trendline/sandbox.config.json delete mode 100644 samples/charts/category-chart/trendline/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/trendline/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/trendline/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/trendline/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/trendline/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/trendline/tsconfig.app.json create mode 100644 samples/charts/category-chart/value-lines/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/value-lines/.codesandbox/tasks.json delete mode 100644 samples/charts/category-chart/value-lines/sandbox.config.json delete mode 100644 samples/charts/category-chart/value-lines/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/value-lines/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/value-lines/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/value-lines/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/value-lines/src/config/tsconfig.worker.json create mode 100644 samples/charts/category-chart/value-lines/tsconfig.app.json create mode 100644 samples/charts/data-chart/annotations-custom/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/annotations-custom/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/annotations-custom/sandbox.config.json delete mode 100644 samples/charts/data-chart/annotations-custom/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/annotations-custom/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/annotations-custom/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/annotations-custom/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/annotations-custom/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/annotations-custom/tsconfig.app.json create mode 100644 samples/charts/data-chart/axis-annotations-corner-radius/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/axis-annotations-corner-radius/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/axis-annotations-corner-radius/sandbox.config.json delete mode 100644 samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.app.json create mode 100644 samples/charts/data-chart/axis-annotations/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/axis-annotations/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/axis-annotations/sandbox.config.json delete mode 100644 samples/charts/data-chart/axis-annotations/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/axis-annotations/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/axis-annotations/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/axis-annotations/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/axis-annotations/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/axis-annotations/tsconfig.app.json create mode 100644 samples/charts/data-chart/axis-crossing/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/axis-crossing/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/axis-crossing/sandbox.config.json delete mode 100644 samples/charts/data-chart/axis-crossing/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/axis-crossing/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/axis-crossing/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/axis-crossing/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/axis-crossing/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/axis-crossing/tsconfig.app.json create mode 100644 samples/charts/data-chart/axis-label-rotation/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/axis-label-rotation/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/axis-label-rotation/sandbox.config.json delete mode 100644 samples/charts/data-chart/axis-label-rotation/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/axis-label-rotation/tsconfig.app.json create mode 100644 samples/charts/data-chart/axis-locations/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/axis-locations/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/axis-locations/sandbox.config.json delete mode 100644 samples/charts/data-chart/axis-locations/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/axis-locations/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/axis-locations/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/axis-locations/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/axis-locations/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/axis-locations/tsconfig.app.json create mode 100644 samples/charts/data-chart/axis-min-max-gap/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/axis-min-max-gap/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/axis-min-max-gap/sandbox.config.json delete mode 100644 samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/axis-min-max-gap/tsconfig.app.json create mode 100644 samples/charts/data-chart/axis-settings/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/axis-settings/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/axis-settings/sandbox.config.json delete mode 100644 samples/charts/data-chart/axis-settings/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/axis-settings/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/axis-settings/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/axis-settings/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/axis-settings/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/axis-settings/tsconfig.app.json create mode 100644 samples/charts/data-chart/axis-sharing/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/axis-sharing/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/axis-sharing/sandbox.config.json delete mode 100644 samples/charts/data-chart/axis-sharing/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/axis-sharing/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/axis-sharing/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/axis-sharing/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/axis-sharing/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/axis-sharing/tsconfig.app.json create mode 100644 samples/charts/data-chart/axis-types/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/axis-types/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/axis-types/sandbox.config.json delete mode 100644 samples/charts/data-chart/axis-types/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/axis-types/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/axis-types/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/axis-types/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/axis-types/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/axis-types/tsconfig.app.json create mode 100644 samples/charts/data-chart/bar-chart-multiple-sources/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/bar-chart-multiple-sources/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/bar-chart-multiple-sources/sandbox.config.json delete mode 100644 samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.app.json create mode 100644 samples/charts/data-chart/bar-chart-overlapping/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/bar-chart-overlapping/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/bar-chart-overlapping/sandbox.config.json delete mode 100644 samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/bar-chart-overlapping/tsconfig.app.json create mode 100644 samples/charts/data-chart/bar-chart-single-source/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/bar-chart-single-source/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/bar-chart-single-source/sandbox.config.json delete mode 100644 samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/bar-chart-single-source/tsconfig.app.json create mode 100644 samples/charts/data-chart/bar-chart-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/bar-chart-styling/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/bar-chart-styling/sandbox.config.json delete mode 100644 samples/charts/data-chart/bar-chart-styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/bar-chart-styling/tsconfig.app.json create mode 100644 samples/charts/data-chart/callout-layer-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/callout-layer-styling/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/callout-layer-styling/sandbox.config.json delete mode 100644 samples/charts/data-chart/callout-layer-styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/callout-layer-styling/tsconfig.app.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/sandbox.config.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.app.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/chart-highlight-filter/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/chart-highlight-filter/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter/sandbox.config.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/chart-highlight-filter/tsconfig.app.json create mode 100644 samples/charts/data-chart/chart-navigation/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/chart-navigation/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/chart-navigation/sandbox.config.json delete mode 100644 samples/charts/data-chart/chart-navigation/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/chart-navigation/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/chart-navigation/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/chart-navigation/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/chart-navigation/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/chart-navigation/tsconfig.app.json create mode 100644 samples/charts/data-chart/chart-overview/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/chart-overview/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/chart-overview/sandbox.config.json delete mode 100644 samples/charts/data-chart/chart-overview/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/chart-overview/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/chart-overview/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/chart-overview/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/chart-overview/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/chart-overview/tsconfig.app.json create mode 100644 samples/charts/data-chart/chart-performance/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/chart-performance/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/chart-performance/sandbox.config.json delete mode 100644 samples/charts/data-chart/chart-performance/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/chart-performance/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/chart-performance/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/chart-performance/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/chart-performance/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/chart-performance/tsconfig.app.json create mode 100644 samples/charts/data-chart/chart-synchronization/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/chart-synchronization/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/chart-synchronization/sandbox.config.json delete mode 100644 samples/charts/data-chart/chart-synchronization/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/chart-synchronization/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/chart-synchronization/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/chart-synchronization/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/chart-synchronization/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/chart-synchronization/tsconfig.app.json create mode 100644 samples/charts/data-chart/chart-titles/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/chart-titles/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/chart-titles/sandbox.config.json delete mode 100644 samples/charts/data-chart/chart-titles/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/chart-titles/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/chart-titles/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/chart-titles/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/chart-titles/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/chart-titles/tsconfig.app.json create mode 100644 samples/charts/data-chart/column-chart-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/column-chart-styling/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/column-chart-styling/sandbox.config.json delete mode 100644 samples/charts/data-chart/column-chart-styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/column-chart-styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/column-chart-styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/column-chart-styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/column-chart-styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/column-chart-styling/tsconfig.app.json create mode 100644 samples/charts/data-chart/composite-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/composite-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/composite-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/composite-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/composite-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/composite-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/composite-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/composite-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/composite-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/crosshair-layer-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/crosshair-layer-styling/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/crosshair-layer-styling/sandbox.config.json delete mode 100644 samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/crosshair-layer-styling/tsconfig.app.json create mode 100644 samples/charts/data-chart/custom-drawing-annotations/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/custom-drawing-annotations/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/custom-drawing-annotations/sandbox.config.json delete mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/custom-drawing-annotations/tsconfig.app.json create mode 100644 samples/charts/data-chart/custom-editing-data/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/custom-editing-data/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/custom-editing-data/sandbox.config.json delete mode 100644 samples/charts/data-chart/custom-editing-data/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/custom-editing-data/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/custom-editing-data/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/custom-editing-data/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/custom-editing-data/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/custom-editing-data/tsconfig.app.json create mode 100644 samples/charts/data-chart/dash-array-axes/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/dash-array-axes/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/dash-array-axes/sandbox.config.json delete mode 100644 samples/charts/data-chart/dash-array-axes/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/dash-array-axes/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/dash-array-axes/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/dash-array-axes/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/dash-array-axes/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/dash-array-axes/tsconfig.app.json create mode 100644 samples/charts/data-chart/dash-array-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/dash-array-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/dash-array-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/dash-array-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/dash-array-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/dash-array-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/dash-array-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/dash-array-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/dash-array-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/dash-array-tickmarks/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/dash-array-tickmarks/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/dash-array-tickmarks/sandbox.config.json delete mode 100644 samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/dash-array-tickmarks/tsconfig.app.json create mode 100644 samples/charts/data-chart/dash-array-trendline/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/dash-array-trendline/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/dash-array-trendline/sandbox.config.json delete mode 100644 samples/charts/data-chart/dash-array-trendline/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/dash-array-trendline/tsconfig.app.json create mode 100644 samples/charts/data-chart/data-legend/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/data-legend/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/data-legend/sandbox.config.json delete mode 100644 samples/charts/data-chart/data-legend/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/data-legend/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/data-legend/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/data-legend/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/data-legend/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/data-legend/tsconfig.app.json create mode 100644 samples/charts/data-chart/data-tooltip/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/data-tooltip/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/data-tooltip/sandbox.config.json delete mode 100644 samples/charts/data-chart/data-tooltip/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/data-tooltip/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/data-tooltip/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/data-tooltip/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/data-tooltip/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/data-tooltip/tsconfig.app.json create mode 100644 samples/charts/data-chart/final-value-layer-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/final-value-layer-styling/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/final-value-layer-styling/sandbox.config.json delete mode 100644 samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/final-value-layer-styling/tsconfig.app.json create mode 100644 samples/charts/data-chart/financial-price-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/financial-price-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/financial-price-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/financial-price-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/financial-price-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/financial-price-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/financial-price-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/financial-price-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/financial-price-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/format-specifiers/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/format-specifiers/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/format-specifiers/sandbox.config.json delete mode 100644 samples/charts/data-chart/format-specifiers/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/format-specifiers/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/format-specifiers/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/format-specifiers/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/format-specifiers/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/format-specifiers/tsconfig.app.json create mode 100644 samples/charts/data-chart/legends/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/legends/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/legends/sandbox.config.json delete mode 100644 samples/charts/data-chart/legends/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/legends/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/legends/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/legends/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/legends/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/legends/tsconfig.app.json create mode 100644 samples/charts/data-chart/polar-area-chart-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/polar-area-chart-styling/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/polar-area-chart-styling/sandbox.config.json delete mode 100644 samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/polar-area-chart-styling/tsconfig.app.json create mode 100644 samples/charts/data-chart/polar-area-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/polar-area-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/polar-area-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/polar-area-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/polar-area-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/polar-area-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/polar-area-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/polar-area-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/polar-area-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/polar-chart-types/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/polar-chart-types/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/polar-chart-types/sandbox.config.json delete mode 100644 samples/charts/data-chart/polar-chart-types/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/polar-chart-types/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/polar-chart-types/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/polar-chart-types/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/polar-chart-types/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/polar-chart-types/tsconfig.app.json create mode 100644 samples/charts/data-chart/polar-line-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/polar-line-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/polar-line-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/polar-line-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/polar-line-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/polar-line-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/polar-line-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/polar-line-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/polar-line-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/polar-scatter-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/polar-scatter-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/polar-scatter-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/polar-scatter-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/polar-spline-area-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/polar-spline-area-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/polar-spline-area-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/polar-spline-area-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/polar-spline-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/polar-spline-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/polar-spline-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/polar-spline-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/polar-spline-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/polar-spline-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/polar-spline-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/polar-spline-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/polar-spline-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/radial-area-chart-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/radial-area-chart-styling/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/radial-area-chart-styling/sandbox.config.json delete mode 100644 samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/radial-area-chart-styling/tsconfig.app.json create mode 100644 samples/charts/data-chart/radial-area-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/radial-area-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/radial-area-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/radial-area-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/radial-area-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/radial-area-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/radial-area-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/radial-area-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/radial-area-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/radial-chart-types/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/radial-chart-types/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/radial-chart-types/sandbox.config.json delete mode 100644 samples/charts/data-chart/radial-chart-types/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/radial-chart-types/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/radial-chart-types/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/radial-chart-types/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/radial-chart-types/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/radial-chart-types/tsconfig.app.json create mode 100644 samples/charts/data-chart/radial-column-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/radial-column-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/radial-column-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/radial-column-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/radial-column-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/radial-column-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/radial-column-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/radial-column-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/radial-column-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/radial-line-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/radial-line-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/radial-line-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/radial-line-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/radial-line-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/radial-line-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/radial-line-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/radial-line-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/radial-line-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/radial-pie-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/radial-pie-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/radial-pie-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/radial-pie-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/radial-pie-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/radial-pie-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/radial-pie-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/radial-pie-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/radial-pie-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/range-area-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/range-area-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/range-area-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/range-area-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/range-area-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/range-area-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/range-area-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/range-area-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/range-area-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/range-column-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/range-column-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/range-column-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/range-column-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/range-column-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/range-column-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/range-column-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/range-column-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/range-column-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/sandbox.config.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.app.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-multiple-sources/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/scatter-bubble-chart-multiple-sources/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-multiple-sources/sandbox.config.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.app.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-single-source/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/scatter-bubble-chart-single-source/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-single-source/sandbox.config.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.app.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/scatter-bubble-chart-styling/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-styling/sandbox.config.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.app.json create mode 100644 samples/charts/data-chart/scatter-line-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/scatter-line-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/scatter-line-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/scatter-line-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/scatter-line-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/scatter-line-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/scatter-line-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/scatter-line-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/scatter-line-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/scatter-point-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/scatter-point-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/scatter-point-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/scatter-point-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/scatter-point-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/scatter-point-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/scatter-point-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/scatter-point-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/scatter-point-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/scatter-spline-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/scatter-spline-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/scatter-spline-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/scatter-spline-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/series-animations/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/series-animations/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/series-animations/sandbox.config.json delete mode 100644 samples/charts/data-chart/series-animations/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/series-animations/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/series-animations/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/series-animations/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/series-animations/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/series-animations/tsconfig.app.json create mode 100644 samples/charts/data-chart/series-annotations/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/series-annotations/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/series-annotations/sandbox.config.json delete mode 100644 samples/charts/data-chart/series-annotations/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/series-annotations/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/series-annotations/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/series-annotations/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/series-annotations/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/series-annotations/tsconfig.app.json create mode 100644 samples/charts/data-chart/series-highlighting/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/series-highlighting/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/series-highlighting/sandbox.config.json delete mode 100644 samples/charts/data-chart/series-highlighting/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/series-highlighting/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/series-highlighting/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/series-highlighting/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/series-highlighting/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/series-highlighting/tsconfig.app.json create mode 100644 samples/charts/data-chart/series-marker-template/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/series-marker-template/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/series-marker-template/sandbox.config.json delete mode 100644 samples/charts/data-chart/series-marker-template/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/series-marker-template/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/series-marker-template/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/series-marker-template/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/series-marker-template/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/series-marker-template/tsconfig.app.json create mode 100644 samples/charts/data-chart/series-markers/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/series-markers/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/series-markers/sandbox.config.json delete mode 100644 samples/charts/data-chart/series-markers/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/series-markers/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/series-markers/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/series-markers/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/series-markers/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/series-markers/tsconfig.app.json create mode 100644 samples/charts/data-chart/series-tooltips/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/series-tooltips/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/series-tooltips/sandbox.config.json delete mode 100644 samples/charts/data-chart/series-tooltips/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/series-tooltips/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/series-tooltips/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/series-tooltips/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/series-tooltips/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/series-tooltips/tsconfig.app.json create mode 100644 samples/charts/data-chart/series-trendlines/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/series-trendlines/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/series-trendlines/sandbox.config.json delete mode 100644 samples/charts/data-chart/series-trendlines/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/series-trendlines/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/series-trendlines/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/series-trendlines/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/series-trendlines/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/series-trendlines/tsconfig.app.json create mode 100644 samples/charts/data-chart/series-value-overlay/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/series-value-overlay/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/series-value-overlay/sandbox.config.json delete mode 100644 samples/charts/data-chart/series-value-overlay/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/series-value-overlay/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/series-value-overlay/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/series-value-overlay/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/series-value-overlay/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/series-value-overlay/tsconfig.app.json create mode 100644 samples/charts/data-chart/stacked-100-area-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/stacked-100-area-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/stacked-100-area-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/stacked-100-area-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/stacked-100-bar-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/stacked-100-bar-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/stacked-100-bar-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/stacked-100-bar-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/stacked-100-column-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/stacked-100-column-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/stacked-100-column-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/stacked-100-column-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/stacked-100-line-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/stacked-100-line-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/stacked-100-line-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/stacked-100-line-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/stacked-100-spline-area-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/stacked-100-spline-area-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/stacked-100-spline-area-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/stacked-100-spline-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/stacked-100-spline-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/stacked-100-spline-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/stacked-100-spline-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/stacked-area-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/stacked-area-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/stacked-area-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/stacked-area-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/stacked-area-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/stacked-area-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/stacked-area-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/stacked-area-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/stacked-area-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/stacked-bar-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/stacked-bar-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/stacked-bar-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/stacked-bar-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/stacked-chart-types/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/stacked-chart-types/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/stacked-chart-types/sandbox.config.json delete mode 100644 samples/charts/data-chart/stacked-chart-types/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/stacked-chart-types/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/stacked-chart-types/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/stacked-chart-types/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/stacked-chart-types/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/stacked-chart-types/tsconfig.app.json create mode 100644 samples/charts/data-chart/stacked-column-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/stacked-column-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/stacked-column-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/stacked-column-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/stacked-column-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/stacked-column-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/stacked-column-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/stacked-column-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/stacked-column-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/stacked-line-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/stacked-line-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/stacked-line-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/stacked-line-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/stacked-line-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/stacked-line-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/stacked-line-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/stacked-line-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/stacked-line-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/stacked-spline-area-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/stacked-spline-area-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/stacked-spline-area-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/stacked-spline-area-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/stacked-spline-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/stacked-spline-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/stacked-spline-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/stacked-spline-chart/tsconfig.app.json create mode 100644 samples/charts/data-chart/tooltip-template/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/tooltip-template/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/tooltip-template/sandbox.config.json delete mode 100644 samples/charts/data-chart/tooltip-template/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/tooltip-template/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/tooltip-template/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/tooltip-template/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/tooltip-template/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/tooltip-template/tsconfig.app.json create mode 100644 samples/charts/data-chart/transition-event/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/transition-event/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/transition-event/sandbox.config.json delete mode 100644 samples/charts/data-chart/transition-event/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/transition-event/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/transition-event/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/transition-event/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/transition-event/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/transition-event/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-category-area-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-category-area-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-category-area-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-category-area-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-category-area-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-category-area-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-category-area-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-category-area-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-category-area-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-category-bar-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-category-bar-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-category-bar-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-category-bar-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-category-bar-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-category-bar-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-category-bar-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-category-bar-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-category-bar-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-category-column-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-category-column-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-category-column-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-category-column-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-category-column-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-category-column-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-category-column-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-category-column-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-category-column-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-category-line-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-category-line-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-category-line-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-category-line-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-category-line-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-category-line-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-category-line-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-category-line-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-category-line-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-category-point-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-category-point-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-category-point-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-category-point-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-category-point-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-category-point-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-category-point-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-category-point-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-category-point-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-category-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-category-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-category-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-category-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-category-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-category-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-category-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-category-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-category-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-category-spline-area-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-category-spline-area-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-category-spline-area-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-category-spline-area-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-category-spline-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-category-spline-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-category-spline-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-category-spline-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-category-spline-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-category-spline-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-category-spline-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-category-spline-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-category-spline-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-category-step-area-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-category-step-area-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-category-step-area-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-category-step-area-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-category-step-line-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-category-step-line-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-category-step-line-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-category-step-line-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-category-waterfall-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-category-waterfall-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-category-waterfall-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-category-waterfall-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-financial-area-indicators/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-financial-area-indicators/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-financial-area-indicators/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-financial-area-indicators/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-financial-candlestick-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-financial-candlestick-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-financial-candlestick-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-financial-candlestick-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-financial-column-indicators/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-financial-column-indicators/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-financial-column-indicators/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-financial-column-indicators/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-financial-line-indicators/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-financial-line-indicators/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-financial-line-indicators/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-financial-line-indicators/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-financial-ohlc-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-financial-ohlc-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-financial-ohlc-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-financial-ohlc-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-financial-overlays/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-financial-overlays/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-financial-overlays/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-financial-overlays/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-financial-overlays/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-financial-overlays/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-financial-overlays/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-financial-overlays/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-financial-overlays/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-financial-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-financial-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-financial-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-financial-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-financial-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-financial-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-financial-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-financial-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-financial-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-radial-area-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-radial-area-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-radial-area-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-radial-area-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-radial-area-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-radial-area-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-radial-area-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-radial-area-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-radial-area-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-radial-column-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-radial-column-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-radial-column-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-radial-column-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-radial-column-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-radial-column-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-radial-column-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-radial-column-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-radial-column-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-radial-line-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-radial-line-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-radial-line-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-radial-line-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-radial-line-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-radial-line-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-radial-line-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-radial-line-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-radial-line-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-radial-pie-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-radial-pie-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-radial-pie-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-radial-pie-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-range-area-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-range-area-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-range-area-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-range-area-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-range-area-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-range-area-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-range-area-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-range-area-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-range-area-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-range-column-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-range-column-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-range-column-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-range-column-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-range-column-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-range-column-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-range-column-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-range-column-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-range-column-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-range-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-range-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-range-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-range-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-range-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-range-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-range-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-range-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-range-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-scatter-area-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-scatter-area-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-scatter-area-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-scatter-area-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-scatter-bubble-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-scatter-bubble-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-scatter-bubble-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-scatter-bubble-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-scatter-contour-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-scatter-contour-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-scatter-contour-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-scatter-contour-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-scatter-hd-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-scatter-hd-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-scatter-hd-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-scatter-hd-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-scatter-line-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-scatter-line-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-scatter-line-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-scatter-line-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-scatter-point-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-scatter-point-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-scatter-point-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-scatter-point-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-scatter-polygon-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-scatter-polygon-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-scatter-polygon-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-scatter-polygon-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-scatter-polyline-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-scatter-polyline-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-scatter-polyline-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-scatter-polyline-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-scatter-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-scatter-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-scatter-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-scatter-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-scatter-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-scatter-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-scatter-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-scatter-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-scatter-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-scatter-spline-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-scatter-spline-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-scatter-spline-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-scatter-spline-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-shape-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-shape-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-shape-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-shape-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-shape-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-shape-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-shape-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-shape-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-shape-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-stacked-100-area-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-stacked-100-area-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-stacked-100-area-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-stacked-100-area-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-stacked-100-bar-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-stacked-100-bar-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-stacked-100-bar-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-stacked-100-bar-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-stacked-100-column-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-stacked-100-column-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-stacked-100-column-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-stacked-100-column-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-stacked-100-line-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-stacked-100-line-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-stacked-100-line-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-stacked-100-line-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-stacked-100-spline-area-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-stacked-100-spline-area-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-stacked-100-spline-area-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-stacked-100-spline-area-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-stacked-100-spline-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-stacked-100-spline-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-stacked-100-spline-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-stacked-100-spline-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-stacked-area-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-stacked-area-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-stacked-area-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-stacked-area-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-stacked-bar-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-stacked-bar-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-stacked-bar-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-stacked-bar-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-stacked-column-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-stacked-column-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-stacked-column-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-stacked-column-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-stacked-line-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-stacked-line-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-stacked-line-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-stacked-line-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-stacked-spline-area-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-stacked-spline-area-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-stacked-spline-area-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-stacked-spline-area-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/type-stacked-spline-series/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/type-stacked-spline-series/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/type-stacked-spline-series/sandbox.config.json delete mode 100644 samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/type-stacked-spline-series/tsconfig.app.json create mode 100644 samples/charts/data-chart/waterfall-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/waterfall-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/data-chart/waterfall-chart/sandbox.config.json delete mode 100644 samples/charts/data-chart/waterfall-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/waterfall-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/waterfall-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/waterfall-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/waterfall-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/data-chart/waterfall-chart/tsconfig.app.json create mode 100644 samples/charts/doughnut-chart/animation/.codesandbox/Dockerfile create mode 100644 samples/charts/doughnut-chart/animation/.codesandbox/tasks.json delete mode 100644 samples/charts/doughnut-chart/animation/sandbox.config.json delete mode 100644 samples/charts/doughnut-chart/animation/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/doughnut-chart/animation/src/config/tsconfig.app.json delete mode 100644 samples/charts/doughnut-chart/animation/src/config/tsconfig.base.json delete mode 100644 samples/charts/doughnut-chart/animation/src/config/tsconfig.spec.json delete mode 100644 samples/charts/doughnut-chart/animation/src/config/tsconfig.worker.json create mode 100644 samples/charts/doughnut-chart/animation/tsconfig.app.json create mode 100644 samples/charts/doughnut-chart/explosion/.codesandbox/Dockerfile create mode 100644 samples/charts/doughnut-chart/explosion/.codesandbox/tasks.json delete mode 100644 samples/charts/doughnut-chart/explosion/sandbox.config.json delete mode 100644 samples/charts/doughnut-chart/explosion/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/doughnut-chart/explosion/src/config/tsconfig.app.json delete mode 100644 samples/charts/doughnut-chart/explosion/src/config/tsconfig.base.json delete mode 100644 samples/charts/doughnut-chart/explosion/src/config/tsconfig.spec.json delete mode 100644 samples/charts/doughnut-chart/explosion/src/config/tsconfig.worker.json create mode 100644 samples/charts/doughnut-chart/explosion/tsconfig.app.json create mode 100644 samples/charts/doughnut-chart/legend/.codesandbox/Dockerfile create mode 100644 samples/charts/doughnut-chart/legend/.codesandbox/tasks.json delete mode 100644 samples/charts/doughnut-chart/legend/sandbox.config.json delete mode 100644 samples/charts/doughnut-chart/legend/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/doughnut-chart/legend/src/config/tsconfig.app.json delete mode 100644 samples/charts/doughnut-chart/legend/src/config/tsconfig.base.json delete mode 100644 samples/charts/doughnut-chart/legend/src/config/tsconfig.spec.json delete mode 100644 samples/charts/doughnut-chart/legend/src/config/tsconfig.worker.json create mode 100644 samples/charts/doughnut-chart/legend/tsconfig.app.json create mode 100644 samples/charts/doughnut-chart/overview/.codesandbox/Dockerfile create mode 100644 samples/charts/doughnut-chart/overview/.codesandbox/tasks.json delete mode 100644 samples/charts/doughnut-chart/overview/sandbox.config.json delete mode 100644 samples/charts/doughnut-chart/overview/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/doughnut-chart/overview/src/config/tsconfig.app.json delete mode 100644 samples/charts/doughnut-chart/overview/src/config/tsconfig.base.json delete mode 100644 samples/charts/doughnut-chart/overview/src/config/tsconfig.spec.json delete mode 100644 samples/charts/doughnut-chart/overview/src/config/tsconfig.worker.json create mode 100644 samples/charts/doughnut-chart/overview/tsconfig.app.json create mode 100644 samples/charts/doughnut-chart/rings/.codesandbox/Dockerfile create mode 100644 samples/charts/doughnut-chart/rings/.codesandbox/tasks.json delete mode 100644 samples/charts/doughnut-chart/rings/sandbox.config.json delete mode 100644 samples/charts/doughnut-chart/rings/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/doughnut-chart/rings/src/config/tsconfig.app.json delete mode 100644 samples/charts/doughnut-chart/rings/src/config/tsconfig.base.json delete mode 100644 samples/charts/doughnut-chart/rings/src/config/tsconfig.spec.json delete mode 100644 samples/charts/doughnut-chart/rings/src/config/tsconfig.worker.json create mode 100644 samples/charts/doughnut-chart/rings/tsconfig.app.json create mode 100644 samples/charts/doughnut-chart/selection/.codesandbox/Dockerfile create mode 100644 samples/charts/doughnut-chart/selection/.codesandbox/tasks.json delete mode 100644 samples/charts/doughnut-chart/selection/sandbox.config.json delete mode 100644 samples/charts/doughnut-chart/selection/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/doughnut-chart/selection/src/config/tsconfig.app.json delete mode 100644 samples/charts/doughnut-chart/selection/src/config/tsconfig.base.json delete mode 100644 samples/charts/doughnut-chart/selection/src/config/tsconfig.spec.json delete mode 100644 samples/charts/doughnut-chart/selection/src/config/tsconfig.worker.json create mode 100644 samples/charts/doughnut-chart/selection/tsconfig.app.json create mode 100644 samples/charts/financial-chart/annotations/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/annotations/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/annotations/sandbox.config.json delete mode 100644 samples/charts/financial-chart/annotations/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/annotations/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/annotations/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/annotations/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/annotations/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/annotations/tsconfig.app.json create mode 100644 samples/charts/financial-chart/axis-types/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/axis-types/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/axis-types/sandbox.config.json delete mode 100644 samples/charts/financial-chart/axis-types/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/axis-types/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/axis-types/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/axis-types/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/axis-types/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/axis-types/tsconfig.app.json create mode 100644 samples/charts/financial-chart/data-legend-formatting-currency/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/data-legend-formatting-currency/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/data-legend-formatting-currency/sandbox.config.json delete mode 100644 samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.app.json create mode 100644 samples/charts/financial-chart/data-legend-styling-props/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/data-legend-styling-props/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/data-legend-styling-props/sandbox.config.json delete mode 100644 samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/data-legend-styling-props/tsconfig.app.json create mode 100644 samples/charts/financial-chart/data-legend/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/data-legend/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/data-legend/sandbox.config.json delete mode 100644 samples/charts/financial-chart/data-legend/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/data-legend/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/data-legend/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/data-legend/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/data-legend/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/data-legend/tsconfig.app.json create mode 100644 samples/charts/financial-chart/data-tooltip-formatting-currency/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/data-tooltip-formatting-currency/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/data-tooltip-formatting-currency/sandbox.config.json delete mode 100644 samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.app.json create mode 100644 samples/charts/financial-chart/data-tooltip-styling-props/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/data-tooltip-styling-props/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/data-tooltip-styling-props/sandbox.config.json delete mode 100644 samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.app.json create mode 100644 samples/charts/financial-chart/data-tooltip/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/data-tooltip/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/data-tooltip/sandbox.config.json delete mode 100644 samples/charts/financial-chart/data-tooltip/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/data-tooltip/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/data-tooltip/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/data-tooltip/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/data-tooltip/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/data-tooltip/tsconfig.app.json create mode 100644 samples/charts/financial-chart/format-specifiers/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/format-specifiers/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/format-specifiers/sandbox.config.json delete mode 100644 samples/charts/financial-chart/format-specifiers/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/format-specifiers/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/format-specifiers/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/format-specifiers/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/format-specifiers/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/format-specifiers/tsconfig.app.json create mode 100644 samples/charts/financial-chart/high-frequency/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/high-frequency/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/high-frequency/sandbox.config.json delete mode 100644 samples/charts/financial-chart/high-frequency/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/high-frequency/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/high-frequency/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/high-frequency/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/high-frequency/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/high-frequency/tsconfig.app.json create mode 100644 samples/charts/financial-chart/high-volume/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/high-volume/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/high-volume/sandbox.config.json delete mode 100644 samples/charts/financial-chart/high-volume/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/high-volume/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/high-volume/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/high-volume/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/high-volume/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/high-volume/tsconfig.app.json create mode 100644 samples/charts/financial-chart/indicator-customization/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/indicator-customization/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/indicator-customization/sandbox.config.json delete mode 100644 samples/charts/financial-chart/indicator-customization/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/indicator-customization/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/indicator-customization/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/indicator-customization/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/indicator-customization/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/indicator-customization/tsconfig.app.json create mode 100644 samples/charts/financial-chart/indicator-types/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/indicator-types/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/indicator-types/sandbox.config.json delete mode 100644 samples/charts/financial-chart/indicator-types/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/indicator-types/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/indicator-types/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/indicator-types/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/indicator-types/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/indicator-types/tsconfig.app.json create mode 100644 samples/charts/financial-chart/multiple-data/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/multiple-data/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/multiple-data/sandbox.config.json delete mode 100644 samples/charts/financial-chart/multiple-data/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/multiple-data/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/multiple-data/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/multiple-data/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/multiple-data/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/multiple-data/tsconfig.app.json create mode 100644 samples/charts/financial-chart/multiple-feeds/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/multiple-feeds/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/multiple-feeds/sandbox.config.json delete mode 100644 samples/charts/financial-chart/multiple-feeds/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/multiple-feeds/tsconfig.app.json create mode 100644 samples/charts/financial-chart/overview/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/overview/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/overview/sandbox.config.json delete mode 100644 samples/charts/financial-chart/overview/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/overview/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/overview/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/overview/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/overview/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/overview/tsconfig.app.json create mode 100644 samples/charts/financial-chart/panes/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/panes/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/panes/sandbox.config.json delete mode 100644 samples/charts/financial-chart/panes/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/panes/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/panes/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/panes/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/panes/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/panes/tsconfig.app.json create mode 100644 samples/charts/financial-chart/performance/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/performance/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/performance/sandbox.config.json delete mode 100644 samples/charts/financial-chart/performance/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/performance/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/performance/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/performance/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/performance/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/performance/tsconfig.app.json create mode 100644 samples/charts/financial-chart/scrollbars/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/scrollbars/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/scrollbars/sandbox.config.json delete mode 100644 samples/charts/financial-chart/scrollbars/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/scrollbars/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/scrollbars/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/scrollbars/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/scrollbars/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/scrollbars/tsconfig.app.json create mode 100644 samples/charts/financial-chart/stock-index-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/stock-index-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/stock-index-chart/sandbox.config.json delete mode 100644 samples/charts/financial-chart/stock-index-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/stock-index-chart/tsconfig.app.json create mode 100644 samples/charts/financial-chart/styling/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/styling/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/styling/sandbox.config.json delete mode 100644 samples/charts/financial-chart/styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/styling/tsconfig.app.json create mode 100644 samples/charts/financial-chart/theming/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/theming/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/theming/sandbox.config.json delete mode 100644 samples/charts/financial-chart/theming/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/theming/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/theming/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/theming/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/theming/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/theming/tsconfig.app.json create mode 100644 samples/charts/financial-chart/time-based-data/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/time-based-data/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/time-based-data/sandbox.config.json delete mode 100644 samples/charts/financial-chart/time-based-data/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/time-based-data/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/time-based-data/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/time-based-data/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/time-based-data/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/time-based-data/tsconfig.app.json create mode 100644 samples/charts/financial-chart/titles/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/titles/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/titles/sandbox.config.json delete mode 100644 samples/charts/financial-chart/titles/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/titles/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/titles/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/titles/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/titles/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/titles/tsconfig.app.json create mode 100644 samples/charts/financial-chart/tooltip-template/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/tooltip-template/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/tooltip-template/sandbox.config.json delete mode 100644 samples/charts/financial-chart/tooltip-template/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/tooltip-template/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/tooltip-template/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/tooltip-template/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/tooltip-template/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/tooltip-template/tsconfig.app.json create mode 100644 samples/charts/financial-chart/tooltip-types/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/tooltip-types/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/tooltip-types/sandbox.config.json delete mode 100644 samples/charts/financial-chart/tooltip-types/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/tooltip-types/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/tooltip-types/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/tooltip-types/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/tooltip-types/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/tooltip-types/tsconfig.app.json create mode 100644 samples/charts/financial-chart/trendlines/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/trendlines/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/trendlines/sandbox.config.json delete mode 100644 samples/charts/financial-chart/trendlines/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/trendlines/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/trendlines/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/trendlines/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/trendlines/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/trendlines/tsconfig.app.json create mode 100644 samples/charts/financial-chart/volume-types/.codesandbox/Dockerfile create mode 100644 samples/charts/financial-chart/volume-types/.codesandbox/tasks.json delete mode 100644 samples/charts/financial-chart/volume-types/sandbox.config.json delete mode 100644 samples/charts/financial-chart/volume-types/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/financial-chart/volume-types/src/config/tsconfig.app.json delete mode 100644 samples/charts/financial-chart/volume-types/src/config/tsconfig.base.json delete mode 100644 samples/charts/financial-chart/volume-types/src/config/tsconfig.spec.json delete mode 100644 samples/charts/financial-chart/volume-types/src/config/tsconfig.worker.json create mode 100644 samples/charts/financial-chart/volume-types/tsconfig.app.json create mode 100644 samples/charts/pie-chart/animation/.codesandbox/Dockerfile create mode 100644 samples/charts/pie-chart/animation/.codesandbox/tasks.json delete mode 100644 samples/charts/pie-chart/animation/sandbox.config.json delete mode 100644 samples/charts/pie-chart/animation/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/pie-chart/animation/src/config/tsconfig.app.json delete mode 100644 samples/charts/pie-chart/animation/src/config/tsconfig.base.json delete mode 100644 samples/charts/pie-chart/animation/src/config/tsconfig.spec.json delete mode 100644 samples/charts/pie-chart/animation/src/config/tsconfig.worker.json create mode 100644 samples/charts/pie-chart/animation/tsconfig.app.json create mode 100644 samples/charts/pie-chart/explosion/.codesandbox/Dockerfile create mode 100644 samples/charts/pie-chart/explosion/.codesandbox/tasks.json delete mode 100644 samples/charts/pie-chart/explosion/sandbox.config.json delete mode 100644 samples/charts/pie-chart/explosion/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/pie-chart/explosion/src/config/tsconfig.app.json delete mode 100644 samples/charts/pie-chart/explosion/src/config/tsconfig.base.json delete mode 100644 samples/charts/pie-chart/explosion/src/config/tsconfig.spec.json delete mode 100644 samples/charts/pie-chart/explosion/src/config/tsconfig.worker.json create mode 100644 samples/charts/pie-chart/explosion/tsconfig.app.json create mode 100644 samples/charts/pie-chart/legend/.codesandbox/Dockerfile create mode 100644 samples/charts/pie-chart/legend/.codesandbox/tasks.json delete mode 100644 samples/charts/pie-chart/legend/sandbox.config.json delete mode 100644 samples/charts/pie-chart/legend/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/pie-chart/legend/src/config/tsconfig.app.json delete mode 100644 samples/charts/pie-chart/legend/src/config/tsconfig.base.json delete mode 100644 samples/charts/pie-chart/legend/src/config/tsconfig.spec.json delete mode 100644 samples/charts/pie-chart/legend/src/config/tsconfig.worker.json create mode 100644 samples/charts/pie-chart/legend/tsconfig.app.json create mode 100644 samples/charts/pie-chart/others/.codesandbox/Dockerfile create mode 100644 samples/charts/pie-chart/others/.codesandbox/tasks.json delete mode 100644 samples/charts/pie-chart/others/sandbox.config.json delete mode 100644 samples/charts/pie-chart/others/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/pie-chart/others/src/config/tsconfig.app.json delete mode 100644 samples/charts/pie-chart/others/src/config/tsconfig.base.json delete mode 100644 samples/charts/pie-chart/others/src/config/tsconfig.spec.json delete mode 100644 samples/charts/pie-chart/others/src/config/tsconfig.worker.json create mode 100644 samples/charts/pie-chart/others/tsconfig.app.json create mode 100644 samples/charts/pie-chart/overview/.codesandbox/Dockerfile create mode 100644 samples/charts/pie-chart/overview/.codesandbox/tasks.json delete mode 100644 samples/charts/pie-chart/overview/sandbox.config.json delete mode 100644 samples/charts/pie-chart/overview/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/pie-chart/overview/src/config/tsconfig.app.json delete mode 100644 samples/charts/pie-chart/overview/src/config/tsconfig.base.json delete mode 100644 samples/charts/pie-chart/overview/src/config/tsconfig.spec.json delete mode 100644 samples/charts/pie-chart/overview/src/config/tsconfig.worker.json create mode 100644 samples/charts/pie-chart/overview/tsconfig.app.json create mode 100644 samples/charts/pie-chart/selection/.codesandbox/Dockerfile create mode 100644 samples/charts/pie-chart/selection/.codesandbox/tasks.json delete mode 100644 samples/charts/pie-chart/selection/sandbox.config.json delete mode 100644 samples/charts/pie-chart/selection/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/pie-chart/selection/src/config/tsconfig.app.json delete mode 100644 samples/charts/pie-chart/selection/src/config/tsconfig.base.json delete mode 100644 samples/charts/pie-chart/selection/src/config/tsconfig.spec.json delete mode 100644 samples/charts/pie-chart/selection/src/config/tsconfig.worker.json create mode 100644 samples/charts/pie-chart/selection/tsconfig.app.json create mode 100644 samples/charts/pie-chart/styling/.codesandbox/Dockerfile create mode 100644 samples/charts/pie-chart/styling/.codesandbox/tasks.json delete mode 100644 samples/charts/pie-chart/styling/sandbox.config.json delete mode 100644 samples/charts/pie-chart/styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/pie-chart/styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/pie-chart/styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/pie-chart/styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/pie-chart/styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/pie-chart/styling/tsconfig.app.json create mode 100644 samples/charts/sparkline/display-area/.codesandbox/Dockerfile create mode 100644 samples/charts/sparkline/display-area/.codesandbox/tasks.json delete mode 100644 samples/charts/sparkline/display-area/sandbox.config.json delete mode 100644 samples/charts/sparkline/display-area/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/sparkline/display-area/src/config/tsconfig.app.json delete mode 100644 samples/charts/sparkline/display-area/src/config/tsconfig.base.json delete mode 100644 samples/charts/sparkline/display-area/src/config/tsconfig.spec.json delete mode 100644 samples/charts/sparkline/display-area/src/config/tsconfig.worker.json create mode 100644 samples/charts/sparkline/display-area/tsconfig.app.json create mode 100644 samples/charts/sparkline/display-column/.codesandbox/Dockerfile create mode 100644 samples/charts/sparkline/display-column/.codesandbox/tasks.json delete mode 100644 samples/charts/sparkline/display-column/sandbox.config.json delete mode 100644 samples/charts/sparkline/display-column/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/sparkline/display-column/src/config/tsconfig.app.json delete mode 100644 samples/charts/sparkline/display-column/src/config/tsconfig.base.json delete mode 100644 samples/charts/sparkline/display-column/src/config/tsconfig.spec.json delete mode 100644 samples/charts/sparkline/display-column/src/config/tsconfig.worker.json create mode 100644 samples/charts/sparkline/display-column/tsconfig.app.json create mode 100644 samples/charts/sparkline/display-lines/.codesandbox/Dockerfile create mode 100644 samples/charts/sparkline/display-lines/.codesandbox/tasks.json delete mode 100644 samples/charts/sparkline/display-lines/sandbox.config.json delete mode 100644 samples/charts/sparkline/display-lines/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/sparkline/display-lines/src/config/tsconfig.app.json delete mode 100644 samples/charts/sparkline/display-lines/src/config/tsconfig.base.json delete mode 100644 samples/charts/sparkline/display-lines/src/config/tsconfig.spec.json delete mode 100644 samples/charts/sparkline/display-lines/src/config/tsconfig.worker.json create mode 100644 samples/charts/sparkline/display-lines/tsconfig.app.json create mode 100644 samples/charts/sparkline/display-types/.codesandbox/Dockerfile create mode 100644 samples/charts/sparkline/display-types/.codesandbox/tasks.json delete mode 100644 samples/charts/sparkline/display-types/sandbox.config.json delete mode 100644 samples/charts/sparkline/display-types/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/sparkline/display-types/src/config/tsconfig.app.json delete mode 100644 samples/charts/sparkline/display-types/src/config/tsconfig.base.json delete mode 100644 samples/charts/sparkline/display-types/src/config/tsconfig.spec.json delete mode 100644 samples/charts/sparkline/display-types/src/config/tsconfig.worker.json create mode 100644 samples/charts/sparkline/display-types/tsconfig.app.json create mode 100644 samples/charts/sparkline/display-winloss/.codesandbox/Dockerfile create mode 100644 samples/charts/sparkline/display-winloss/.codesandbox/tasks.json delete mode 100644 samples/charts/sparkline/display-winloss/sandbox.config.json delete mode 100644 samples/charts/sparkline/display-winloss/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/sparkline/display-winloss/src/config/tsconfig.app.json delete mode 100644 samples/charts/sparkline/display-winloss/src/config/tsconfig.base.json delete mode 100644 samples/charts/sparkline/display-winloss/src/config/tsconfig.spec.json delete mode 100644 samples/charts/sparkline/display-winloss/src/config/tsconfig.worker.json create mode 100644 samples/charts/sparkline/display-winloss/tsconfig.app.json create mode 100644 samples/charts/sparkline/grid/.codesandbox/Dockerfile create mode 100644 samples/charts/sparkline/grid/.codesandbox/tasks.json delete mode 100644 samples/charts/sparkline/grid/sandbox.config.json delete mode 100644 samples/charts/sparkline/grid/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/sparkline/grid/src/config/tsconfig.app.json delete mode 100644 samples/charts/sparkline/grid/src/config/tsconfig.base.json delete mode 100644 samples/charts/sparkline/grid/src/config/tsconfig.spec.json delete mode 100644 samples/charts/sparkline/grid/src/config/tsconfig.worker.json create mode 100644 samples/charts/sparkline/grid/tsconfig.app.json create mode 100644 samples/charts/sparkline/markers/.codesandbox/Dockerfile create mode 100644 samples/charts/sparkline/markers/.codesandbox/tasks.json delete mode 100644 samples/charts/sparkline/markers/sandbox.config.json delete mode 100644 samples/charts/sparkline/markers/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/sparkline/markers/src/config/tsconfig.app.json delete mode 100644 samples/charts/sparkline/markers/src/config/tsconfig.base.json delete mode 100644 samples/charts/sparkline/markers/src/config/tsconfig.spec.json delete mode 100644 samples/charts/sparkline/markers/src/config/tsconfig.worker.json create mode 100644 samples/charts/sparkline/markers/tsconfig.app.json create mode 100644 samples/charts/sparkline/normal-range/.codesandbox/Dockerfile create mode 100644 samples/charts/sparkline/normal-range/.codesandbox/tasks.json delete mode 100644 samples/charts/sparkline/normal-range/sandbox.config.json delete mode 100644 samples/charts/sparkline/normal-range/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/sparkline/normal-range/src/config/tsconfig.app.json delete mode 100644 samples/charts/sparkline/normal-range/src/config/tsconfig.base.json delete mode 100644 samples/charts/sparkline/normal-range/src/config/tsconfig.spec.json delete mode 100644 samples/charts/sparkline/normal-range/src/config/tsconfig.worker.json create mode 100644 samples/charts/sparkline/normal-range/tsconfig.app.json create mode 100644 samples/charts/sparkline/trendlines/.codesandbox/Dockerfile create mode 100644 samples/charts/sparkline/trendlines/.codesandbox/tasks.json delete mode 100644 samples/charts/sparkline/trendlines/sandbox.config.json delete mode 100644 samples/charts/sparkline/trendlines/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/sparkline/trendlines/src/config/tsconfig.app.json delete mode 100644 samples/charts/sparkline/trendlines/src/config/tsconfig.base.json delete mode 100644 samples/charts/sparkline/trendlines/src/config/tsconfig.spec.json delete mode 100644 samples/charts/sparkline/trendlines/src/config/tsconfig.worker.json create mode 100644 samples/charts/sparkline/trendlines/tsconfig.app.json create mode 100644 samples/charts/sparkline/unknown-values/.codesandbox/Dockerfile create mode 100644 samples/charts/sparkline/unknown-values/.codesandbox/tasks.json delete mode 100644 samples/charts/sparkline/unknown-values/sandbox.config.json delete mode 100644 samples/charts/sparkline/unknown-values/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/sparkline/unknown-values/src/config/tsconfig.app.json delete mode 100644 samples/charts/sparkline/unknown-values/src/config/tsconfig.base.json delete mode 100644 samples/charts/sparkline/unknown-values/src/config/tsconfig.spec.json delete mode 100644 samples/charts/sparkline/unknown-values/src/config/tsconfig.worker.json create mode 100644 samples/charts/sparkline/unknown-values/tsconfig.app.json create mode 100644 samples/charts/toolbar/actions-built-in-category-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/toolbar/actions-built-in-category-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/toolbar/actions-built-in-category-chart/sandbox.config.json delete mode 100644 samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/toolbar/actions-built-in-category-chart/tsconfig.app.json create mode 100644 samples/charts/toolbar/actions-built-in-data-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/toolbar/actions-built-in-data-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/toolbar/actions-built-in-data-chart/sandbox.config.json delete mode 100644 samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/toolbar/actions-built-in-data-chart/tsconfig.app.json create mode 100644 samples/charts/toolbar/custom-tool/.codesandbox/Dockerfile create mode 100644 samples/charts/toolbar/custom-tool/.codesandbox/tasks.json delete mode 100644 samples/charts/toolbar/custom-tool/sandbox.config.json delete mode 100644 samples/charts/toolbar/custom-tool/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/toolbar/custom-tool/src/config/tsconfig.app.json delete mode 100644 samples/charts/toolbar/custom-tool/src/config/tsconfig.base.json delete mode 100644 samples/charts/toolbar/custom-tool/src/config/tsconfig.spec.json delete mode 100644 samples/charts/toolbar/custom-tool/src/config/tsconfig.worker.json create mode 100644 samples/charts/toolbar/custom-tool/tsconfig.app.json create mode 100644 samples/charts/toolbar/layout-actions-for-data-chart/.codesandbox/Dockerfile create mode 100644 samples/charts/toolbar/layout-actions-for-data-chart/.codesandbox/tasks.json delete mode 100644 samples/charts/toolbar/layout-actions-for-data-chart/sandbox.config.json delete mode 100644 samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.app.json delete mode 100644 samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.base.json delete mode 100644 samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.spec.json delete mode 100644 samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.worker.json create mode 100644 samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.app.json create mode 100644 samples/charts/toolbar/layout-in-vertical-orientation/.codesandbox/Dockerfile create mode 100644 samples/charts/toolbar/layout-in-vertical-orientation/.codesandbox/tasks.json delete mode 100644 samples/charts/toolbar/layout-in-vertical-orientation/sandbox.config.json delete mode 100644 samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.app.json delete mode 100644 samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.base.json delete mode 100644 samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.spec.json delete mode 100644 samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.worker.json create mode 100644 samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.app.json create mode 100644 samples/charts/toolbar/theming/.codesandbox/Dockerfile create mode 100644 samples/charts/toolbar/theming/.codesandbox/tasks.json delete mode 100644 samples/charts/toolbar/theming/sandbox.config.json delete mode 100644 samples/charts/toolbar/theming/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/toolbar/theming/src/config/tsconfig.app.json delete mode 100644 samples/charts/toolbar/theming/src/config/tsconfig.base.json delete mode 100644 samples/charts/toolbar/theming/src/config/tsconfig.spec.json delete mode 100644 samples/charts/toolbar/theming/src/config/tsconfig.worker.json create mode 100644 samples/charts/toolbar/theming/tsconfig.app.json create mode 100644 samples/charts/tree-map/events/.codesandbox/Dockerfile create mode 100644 samples/charts/tree-map/events/.codesandbox/tasks.json delete mode 100644 samples/charts/tree-map/events/sandbox.config.json delete mode 100644 samples/charts/tree-map/events/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/tree-map/events/src/config/tsconfig.app.json delete mode 100644 samples/charts/tree-map/events/src/config/tsconfig.base.json delete mode 100644 samples/charts/tree-map/events/src/config/tsconfig.spec.json delete mode 100644 samples/charts/tree-map/events/src/config/tsconfig.worker.json create mode 100644 samples/charts/tree-map/events/tsconfig.app.json create mode 100644 samples/charts/tree-map/highlighting-percent-based/.codesandbox/Dockerfile create mode 100644 samples/charts/tree-map/highlighting-percent-based/.codesandbox/tasks.json delete mode 100644 samples/charts/tree-map/highlighting-percent-based/sandbox.config.json delete mode 100644 samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.app.json delete mode 100644 samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.base.json delete mode 100644 samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.spec.json delete mode 100644 samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.worker.json create mode 100644 samples/charts/tree-map/highlighting-percent-based/tsconfig.app.json create mode 100644 samples/charts/tree-map/highlighting/.codesandbox/Dockerfile create mode 100644 samples/charts/tree-map/highlighting/.codesandbox/tasks.json delete mode 100644 samples/charts/tree-map/highlighting/sandbox.config.json delete mode 100644 samples/charts/tree-map/highlighting/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/tree-map/highlighting/src/config/tsconfig.app.json delete mode 100644 samples/charts/tree-map/highlighting/src/config/tsconfig.base.json delete mode 100644 samples/charts/tree-map/highlighting/src/config/tsconfig.spec.json delete mode 100644 samples/charts/tree-map/highlighting/src/config/tsconfig.worker.json create mode 100644 samples/charts/tree-map/highlighting/tsconfig.app.json create mode 100644 samples/charts/tree-map/layout/.codesandbox/Dockerfile create mode 100644 samples/charts/tree-map/layout/.codesandbox/tasks.json delete mode 100644 samples/charts/tree-map/layout/sandbox.config.json delete mode 100644 samples/charts/tree-map/layout/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/tree-map/layout/src/config/tsconfig.app.json delete mode 100644 samples/charts/tree-map/layout/src/config/tsconfig.base.json delete mode 100644 samples/charts/tree-map/layout/src/config/tsconfig.spec.json delete mode 100644 samples/charts/tree-map/layout/src/config/tsconfig.worker.json create mode 100644 samples/charts/tree-map/layout/tsconfig.app.json create mode 100644 samples/charts/tree-map/overview/.codesandbox/Dockerfile create mode 100644 samples/charts/tree-map/overview/.codesandbox/tasks.json delete mode 100644 samples/charts/tree-map/overview/sandbox.config.json delete mode 100644 samples/charts/tree-map/overview/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/tree-map/overview/src/config/tsconfig.app.json delete mode 100644 samples/charts/tree-map/overview/src/config/tsconfig.base.json delete mode 100644 samples/charts/tree-map/overview/src/config/tsconfig.spec.json delete mode 100644 samples/charts/tree-map/overview/src/config/tsconfig.worker.json create mode 100644 samples/charts/tree-map/overview/tsconfig.app.json create mode 100644 samples/charts/tree-map/styling/.codesandbox/Dockerfile create mode 100644 samples/charts/tree-map/styling/.codesandbox/tasks.json delete mode 100644 samples/charts/tree-map/styling/sandbox.config.json delete mode 100644 samples/charts/tree-map/styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/tree-map/styling/src/config/tsconfig.app.json delete mode 100644 samples/charts/tree-map/styling/src/config/tsconfig.base.json delete mode 100644 samples/charts/tree-map/styling/src/config/tsconfig.spec.json delete mode 100644 samples/charts/tree-map/styling/src/config/tsconfig.worker.json create mode 100644 samples/charts/tree-map/styling/tsconfig.app.json create mode 100644 samples/charts/zoomslider/overview/.codesandbox/Dockerfile create mode 100644 samples/charts/zoomslider/overview/.codesandbox/tasks.json delete mode 100644 samples/charts/zoomslider/overview/sandbox.config.json delete mode 100644 samples/charts/zoomslider/overview/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/zoomslider/overview/src/config/tsconfig.app.json delete mode 100644 samples/charts/zoomslider/overview/src/config/tsconfig.base.json delete mode 100644 samples/charts/zoomslider/overview/src/config/tsconfig.spec.json delete mode 100644 samples/charts/zoomslider/overview/src/config/tsconfig.worker.json create mode 100644 samples/charts/zoomslider/overview/tsconfig.app.json create mode 100644 samples/excel/excel-library/operations-on-workbooks/.codesandbox/Dockerfile create mode 100644 samples/excel/excel-library/operations-on-workbooks/.codesandbox/tasks.json delete mode 100644 samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig-es5.app.json delete mode 100644 samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.app.json delete mode 100644 samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.base.json delete mode 100644 samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.spec.json delete mode 100644 samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.worker.json create mode 100644 samples/excel/excel-library/operations-on-workbooks/tsconfig.app.json create mode 100644 samples/excel/excel-library/operations-on-worksheets/.codesandbox/Dockerfile create mode 100644 samples/excel/excel-library/operations-on-worksheets/.codesandbox/tasks.json delete mode 100644 samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig-es5.app.json delete mode 100644 samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.app.json delete mode 100644 samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.base.json delete mode 100644 samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.spec.json delete mode 100644 samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.worker.json create mode 100644 samples/excel/excel-library/operations-on-worksheets/tsconfig.app.json create mode 100644 samples/excel/excel-library/overview/.codesandbox/Dockerfile create mode 100644 samples/excel/excel-library/overview/.codesandbox/tasks.json delete mode 100644 samples/excel/excel-library/overview/src/config/tsconfig-es5.app.json delete mode 100644 samples/excel/excel-library/overview/src/config/tsconfig.app.json delete mode 100644 samples/excel/excel-library/overview/src/config/tsconfig.base.json delete mode 100644 samples/excel/excel-library/overview/src/config/tsconfig.spec.json delete mode 100644 samples/excel/excel-library/overview/src/config/tsconfig.worker.json create mode 100644 samples/excel/excel-library/overview/tsconfig.app.json create mode 100644 samples/excel/excel-library/working-with-cells/.codesandbox/Dockerfile create mode 100644 samples/excel/excel-library/working-with-cells/.codesandbox/tasks.json delete mode 100644 samples/excel/excel-library/working-with-cells/src/config/tsconfig-es5.app.json delete mode 100644 samples/excel/excel-library/working-with-cells/src/config/tsconfig.app.json delete mode 100644 samples/excel/excel-library/working-with-cells/src/config/tsconfig.base.json delete mode 100644 samples/excel/excel-library/working-with-cells/src/config/tsconfig.spec.json delete mode 100644 samples/excel/excel-library/working-with-cells/src/config/tsconfig.worker.json create mode 100644 samples/excel/excel-library/working-with-cells/tsconfig.app.json create mode 100644 samples/excel/excel-library/working-with-charts/.codesandbox/Dockerfile create mode 100644 samples/excel/excel-library/working-with-charts/.codesandbox/tasks.json delete mode 100644 samples/excel/excel-library/working-with-charts/src/config/tsconfig-es5.app.json delete mode 100644 samples/excel/excel-library/working-with-charts/src/config/tsconfig.app.json delete mode 100644 samples/excel/excel-library/working-with-charts/src/config/tsconfig.base.json delete mode 100644 samples/excel/excel-library/working-with-charts/src/config/tsconfig.spec.json delete mode 100644 samples/excel/excel-library/working-with-charts/src/config/tsconfig.worker.json create mode 100644 samples/excel/excel-library/working-with-charts/tsconfig.app.json create mode 100644 samples/excel/excel-library/working-with-sparklines/.codesandbox/Dockerfile create mode 100644 samples/excel/excel-library/working-with-sparklines/.codesandbox/tasks.json delete mode 100644 samples/excel/excel-library/working-with-sparklines/src/config/tsconfig-es5.app.json delete mode 100644 samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.app.json delete mode 100644 samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.base.json delete mode 100644 samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.spec.json delete mode 100644 samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.worker.json create mode 100644 samples/excel/excel-library/working-with-sparklines/tsconfig.app.json create mode 100644 samples/excel/excel-library/working-with-tables/.codesandbox/Dockerfile create mode 100644 samples/excel/excel-library/working-with-tables/.codesandbox/tasks.json delete mode 100644 samples/excel/excel-library/working-with-tables/src/config/tsconfig-es5.app.json delete mode 100644 samples/excel/excel-library/working-with-tables/src/config/tsconfig.app.json delete mode 100644 samples/excel/excel-library/working-with-tables/src/config/tsconfig.base.json delete mode 100644 samples/excel/excel-library/working-with-tables/src/config/tsconfig.spec.json delete mode 100644 samples/excel/excel-library/working-with-tables/src/config/tsconfig.worker.json create mode 100644 samples/excel/excel-library/working-with-tables/tsconfig.app.json create mode 100644 samples/excel/spreadsheet/activation/.codesandbox/Dockerfile create mode 100644 samples/excel/spreadsheet/activation/.codesandbox/tasks.json delete mode 100644 samples/excel/spreadsheet/activation/sandbox.config.json delete mode 100644 samples/excel/spreadsheet/activation/src/config/tsconfig-es5.app.json delete mode 100644 samples/excel/spreadsheet/activation/src/config/tsconfig.app.json delete mode 100644 samples/excel/spreadsheet/activation/src/config/tsconfig.base.json delete mode 100644 samples/excel/spreadsheet/activation/src/config/tsconfig.spec.json delete mode 100644 samples/excel/spreadsheet/activation/src/config/tsconfig.worker.json create mode 100644 samples/excel/spreadsheet/activation/tsconfig.app.json create mode 100644 samples/excel/spreadsheet/adapter-chart/.codesandbox/Dockerfile create mode 100644 samples/excel/spreadsheet/adapter-chart/.codesandbox/tasks.json delete mode 100644 samples/excel/spreadsheet/adapter-chart/sandbox.config.json delete mode 100644 samples/excel/spreadsheet/adapter-chart/src/config/tsconfig-es5.app.json delete mode 100644 samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.app.json delete mode 100644 samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.base.json delete mode 100644 samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.spec.json delete mode 100644 samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.worker.json create mode 100644 samples/excel/spreadsheet/adapter-chart/tsconfig.app.json create mode 100644 samples/excel/spreadsheet/adapter-combo/.codesandbox/Dockerfile create mode 100644 samples/excel/spreadsheet/adapter-combo/.codesandbox/tasks.json delete mode 100644 samples/excel/spreadsheet/adapter-combo/sandbox.config.json delete mode 100644 samples/excel/spreadsheet/adapter-combo/src/config/tsconfig-es5.app.json delete mode 100644 samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.app.json delete mode 100644 samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.base.json delete mode 100644 samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.spec.json delete mode 100644 samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.worker.json create mode 100644 samples/excel/spreadsheet/adapter-combo/tsconfig.app.json create mode 100644 samples/excel/spreadsheet/clipboard/.codesandbox/Dockerfile create mode 100644 samples/excel/spreadsheet/clipboard/.codesandbox/tasks.json delete mode 100644 samples/excel/spreadsheet/clipboard/sandbox.config.json delete mode 100644 samples/excel/spreadsheet/clipboard/src/config/tsconfig-es5.app.json delete mode 100644 samples/excel/spreadsheet/clipboard/src/config/tsconfig.app.json delete mode 100644 samples/excel/spreadsheet/clipboard/src/config/tsconfig.base.json delete mode 100644 samples/excel/spreadsheet/clipboard/src/config/tsconfig.spec.json delete mode 100644 samples/excel/spreadsheet/clipboard/src/config/tsconfig.worker.json create mode 100644 samples/excel/spreadsheet/clipboard/tsconfig.app.json create mode 100644 samples/excel/spreadsheet/commands/.codesandbox/Dockerfile create mode 100644 samples/excel/spreadsheet/commands/.codesandbox/tasks.json delete mode 100644 samples/excel/spreadsheet/commands/sandbox.config.json delete mode 100644 samples/excel/spreadsheet/commands/src/config/tsconfig-es5.app.json delete mode 100644 samples/excel/spreadsheet/commands/src/config/tsconfig.app.json delete mode 100644 samples/excel/spreadsheet/commands/src/config/tsconfig.base.json delete mode 100644 samples/excel/spreadsheet/commands/src/config/tsconfig.spec.json delete mode 100644 samples/excel/spreadsheet/commands/src/config/tsconfig.worker.json create mode 100644 samples/excel/spreadsheet/commands/tsconfig.app.json create mode 100644 samples/excel/spreadsheet/conditional-formatting/.codesandbox/Dockerfile create mode 100644 samples/excel/spreadsheet/conditional-formatting/.codesandbox/tasks.json delete mode 100644 samples/excel/spreadsheet/conditional-formatting/sandbox.config.json delete mode 100644 samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig-es5.app.json delete mode 100644 samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.app.json delete mode 100644 samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.base.json delete mode 100644 samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.spec.json delete mode 100644 samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.worker.json create mode 100644 samples/excel/spreadsheet/conditional-formatting/tsconfig.app.json create mode 100644 samples/excel/spreadsheet/config-options/.codesandbox/Dockerfile create mode 100644 samples/excel/spreadsheet/config-options/.codesandbox/tasks.json delete mode 100644 samples/excel/spreadsheet/config-options/sandbox.config.json delete mode 100644 samples/excel/spreadsheet/config-options/src/config/tsconfig-es5.app.json delete mode 100644 samples/excel/spreadsheet/config-options/src/config/tsconfig.app.json delete mode 100644 samples/excel/spreadsheet/config-options/src/config/tsconfig.base.json delete mode 100644 samples/excel/spreadsheet/config-options/src/config/tsconfig.spec.json delete mode 100644 samples/excel/spreadsheet/config-options/src/config/tsconfig.worker.json create mode 100644 samples/excel/spreadsheet/config-options/tsconfig.app.json create mode 100644 samples/excel/spreadsheet/data-validation/.codesandbox/Dockerfile create mode 100644 samples/excel/spreadsheet/data-validation/.codesandbox/tasks.json delete mode 100644 samples/excel/spreadsheet/data-validation/sandbox.config.json delete mode 100644 samples/excel/spreadsheet/data-validation/src/config/tsconfig-es5.app.json delete mode 100644 samples/excel/spreadsheet/data-validation/src/config/tsconfig.app.json delete mode 100644 samples/excel/spreadsheet/data-validation/src/config/tsconfig.base.json delete mode 100644 samples/excel/spreadsheet/data-validation/src/config/tsconfig.spec.json delete mode 100644 samples/excel/spreadsheet/data-validation/src/config/tsconfig.worker.json create mode 100644 samples/excel/spreadsheet/data-validation/tsconfig.app.json create mode 100644 samples/excel/spreadsheet/hyperlinks/.codesandbox/Dockerfile create mode 100644 samples/excel/spreadsheet/hyperlinks/.codesandbox/tasks.json delete mode 100644 samples/excel/spreadsheet/hyperlinks/sandbox.config.json delete mode 100644 samples/excel/spreadsheet/hyperlinks/src/config/tsconfig-es5.app.json delete mode 100644 samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.app.json delete mode 100644 samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.base.json delete mode 100644 samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.spec.json delete mode 100644 samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.worker.json create mode 100644 samples/excel/spreadsheet/hyperlinks/tsconfig.app.json create mode 100644 samples/excel/spreadsheet/overview/.codesandbox/Dockerfile create mode 100644 samples/excel/spreadsheet/overview/.codesandbox/tasks.json delete mode 100644 samples/excel/spreadsheet/overview/sandbox.config.json delete mode 100644 samples/excel/spreadsheet/overview/src/config/tsconfig-es5.app.json delete mode 100644 samples/excel/spreadsheet/overview/src/config/tsconfig.app.json delete mode 100644 samples/excel/spreadsheet/overview/src/config/tsconfig.base.json delete mode 100644 samples/excel/spreadsheet/overview/src/config/tsconfig.spec.json delete mode 100644 samples/excel/spreadsheet/overview/src/config/tsconfig.worker.json create mode 100644 samples/excel/spreadsheet/overview/tsconfig.app.json create mode 100644 samples/gauges/bullet-graph/animation/.codesandbox/Dockerfile create mode 100644 samples/gauges/bullet-graph/animation/.codesandbox/tasks.json delete mode 100644 samples/gauges/bullet-graph/animation/sandbox.config.json delete mode 100644 samples/gauges/bullet-graph/animation/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/bullet-graph/animation/src/config/tsconfig.app.json delete mode 100644 samples/gauges/bullet-graph/animation/src/config/tsconfig.base.json delete mode 100644 samples/gauges/bullet-graph/animation/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/bullet-graph/animation/src/config/tsconfig.worker.json create mode 100644 samples/gauges/bullet-graph/animation/tsconfig.app.json create mode 100644 samples/gauges/bullet-graph/background/.codesandbox/Dockerfile create mode 100644 samples/gauges/bullet-graph/background/.codesandbox/tasks.json delete mode 100644 samples/gauges/bullet-graph/background/sandbox.config.json delete mode 100644 samples/gauges/bullet-graph/background/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/bullet-graph/background/src/config/tsconfig.app.json delete mode 100644 samples/gauges/bullet-graph/background/src/config/tsconfig.base.json delete mode 100644 samples/gauges/bullet-graph/background/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/bullet-graph/background/src/config/tsconfig.worker.json create mode 100644 samples/gauges/bullet-graph/background/tsconfig.app.json create mode 100644 samples/gauges/bullet-graph/highlight-needle/.codesandbox/Dockerfile create mode 100644 samples/gauges/bullet-graph/highlight-needle/.codesandbox/tasks.json delete mode 100644 samples/gauges/bullet-graph/highlight-needle/sandbox.config.json delete mode 100644 samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.app.json delete mode 100644 samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.base.json delete mode 100644 samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.worker.json create mode 100644 samples/gauges/bullet-graph/highlight-needle/tsconfig.app.json create mode 100644 samples/gauges/bullet-graph/labels/.codesandbox/Dockerfile create mode 100644 samples/gauges/bullet-graph/labels/.codesandbox/tasks.json delete mode 100644 samples/gauges/bullet-graph/labels/sandbox.config.json delete mode 100644 samples/gauges/bullet-graph/labels/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/bullet-graph/labels/src/config/tsconfig.app.json delete mode 100644 samples/gauges/bullet-graph/labels/src/config/tsconfig.base.json delete mode 100644 samples/gauges/bullet-graph/labels/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/bullet-graph/labels/src/config/tsconfig.worker.json create mode 100644 samples/gauges/bullet-graph/labels/tsconfig.app.json create mode 100644 samples/gauges/bullet-graph/measures/.codesandbox/Dockerfile create mode 100644 samples/gauges/bullet-graph/measures/.codesandbox/tasks.json delete mode 100644 samples/gauges/bullet-graph/measures/sandbox.config.json delete mode 100644 samples/gauges/bullet-graph/measures/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/bullet-graph/measures/src/config/tsconfig.app.json delete mode 100644 samples/gauges/bullet-graph/measures/src/config/tsconfig.base.json delete mode 100644 samples/gauges/bullet-graph/measures/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/bullet-graph/measures/src/config/tsconfig.worker.json create mode 100644 samples/gauges/bullet-graph/measures/tsconfig.app.json create mode 100644 samples/gauges/bullet-graph/ranges/.codesandbox/Dockerfile create mode 100644 samples/gauges/bullet-graph/ranges/.codesandbox/tasks.json delete mode 100644 samples/gauges/bullet-graph/ranges/sandbox.config.json delete mode 100644 samples/gauges/bullet-graph/ranges/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/bullet-graph/ranges/src/config/tsconfig.app.json delete mode 100644 samples/gauges/bullet-graph/ranges/src/config/tsconfig.base.json delete mode 100644 samples/gauges/bullet-graph/ranges/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/bullet-graph/ranges/src/config/tsconfig.worker.json create mode 100644 samples/gauges/bullet-graph/ranges/tsconfig.app.json create mode 100644 samples/gauges/bullet-graph/scale/.codesandbox/Dockerfile create mode 100644 samples/gauges/bullet-graph/scale/.codesandbox/tasks.json delete mode 100644 samples/gauges/bullet-graph/scale/sandbox.config.json delete mode 100644 samples/gauges/bullet-graph/scale/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/bullet-graph/scale/src/config/tsconfig.app.json delete mode 100644 samples/gauges/bullet-graph/scale/src/config/tsconfig.base.json delete mode 100644 samples/gauges/bullet-graph/scale/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/bullet-graph/scale/src/config/tsconfig.worker.json create mode 100644 samples/gauges/bullet-graph/scale/tsconfig.app.json create mode 100644 samples/gauges/bullet-graph/tickmarks/.codesandbox/Dockerfile create mode 100644 samples/gauges/bullet-graph/tickmarks/.codesandbox/tasks.json delete mode 100644 samples/gauges/bullet-graph/tickmarks/sandbox.config.json delete mode 100644 samples/gauges/bullet-graph/tickmarks/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.app.json delete mode 100644 samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.base.json delete mode 100644 samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.worker.json create mode 100644 samples/gauges/bullet-graph/tickmarks/tsconfig.app.json create mode 100644 samples/gauges/linear-gauge/animation/.codesandbox/Dockerfile create mode 100644 samples/gauges/linear-gauge/animation/.codesandbox/tasks.json delete mode 100644 samples/gauges/linear-gauge/animation/sandbox.config.json delete mode 100644 samples/gauges/linear-gauge/animation/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/linear-gauge/animation/src/config/tsconfig.app.json delete mode 100644 samples/gauges/linear-gauge/animation/src/config/tsconfig.base.json delete mode 100644 samples/gauges/linear-gauge/animation/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/linear-gauge/animation/src/config/tsconfig.worker.json create mode 100644 samples/gauges/linear-gauge/animation/tsconfig.app.json create mode 100644 samples/gauges/linear-gauge/backing/.codesandbox/Dockerfile create mode 100644 samples/gauges/linear-gauge/backing/.codesandbox/tasks.json delete mode 100644 samples/gauges/linear-gauge/backing/sandbox.config.json delete mode 100644 samples/gauges/linear-gauge/backing/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/linear-gauge/backing/src/config/tsconfig.app.json delete mode 100644 samples/gauges/linear-gauge/backing/src/config/tsconfig.base.json delete mode 100644 samples/gauges/linear-gauge/backing/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/linear-gauge/backing/src/config/tsconfig.worker.json create mode 100644 samples/gauges/linear-gauge/backing/tsconfig.app.json create mode 100644 samples/gauges/linear-gauge/highlight-needle/.codesandbox/Dockerfile create mode 100644 samples/gauges/linear-gauge/highlight-needle/.codesandbox/tasks.json delete mode 100644 samples/gauges/linear-gauge/highlight-needle/sandbox.config.json delete mode 100644 samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.app.json delete mode 100644 samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.base.json delete mode 100644 samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.worker.json create mode 100644 samples/gauges/linear-gauge/highlight-needle/tsconfig.app.json create mode 100644 samples/gauges/linear-gauge/labels/.codesandbox/Dockerfile create mode 100644 samples/gauges/linear-gauge/labels/.codesandbox/tasks.json delete mode 100644 samples/gauges/linear-gauge/labels/sandbox.config.json delete mode 100644 samples/gauges/linear-gauge/labels/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/linear-gauge/labels/src/config/tsconfig.app.json delete mode 100644 samples/gauges/linear-gauge/labels/src/config/tsconfig.base.json delete mode 100644 samples/gauges/linear-gauge/labels/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/linear-gauge/labels/src/config/tsconfig.worker.json create mode 100644 samples/gauges/linear-gauge/labels/tsconfig.app.json create mode 100644 samples/gauges/linear-gauge/needle/.codesandbox/Dockerfile create mode 100644 samples/gauges/linear-gauge/needle/.codesandbox/tasks.json delete mode 100644 samples/gauges/linear-gauge/needle/sandbox.config.json delete mode 100644 samples/gauges/linear-gauge/needle/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/linear-gauge/needle/src/config/tsconfig.app.json delete mode 100644 samples/gauges/linear-gauge/needle/src/config/tsconfig.base.json delete mode 100644 samples/gauges/linear-gauge/needle/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/linear-gauge/needle/src/config/tsconfig.worker.json create mode 100644 samples/gauges/linear-gauge/needle/tsconfig.app.json create mode 100644 samples/gauges/linear-gauge/ranges/.codesandbox/Dockerfile create mode 100644 samples/gauges/linear-gauge/ranges/.codesandbox/tasks.json delete mode 100644 samples/gauges/linear-gauge/ranges/sandbox.config.json delete mode 100644 samples/gauges/linear-gauge/ranges/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/linear-gauge/ranges/src/config/tsconfig.app.json delete mode 100644 samples/gauges/linear-gauge/ranges/src/config/tsconfig.base.json delete mode 100644 samples/gauges/linear-gauge/ranges/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/linear-gauge/ranges/src/config/tsconfig.worker.json create mode 100644 samples/gauges/linear-gauge/ranges/tsconfig.app.json create mode 100644 samples/gauges/linear-gauge/scale/.codesandbox/Dockerfile create mode 100644 samples/gauges/linear-gauge/scale/.codesandbox/tasks.json delete mode 100644 samples/gauges/linear-gauge/scale/sandbox.config.json delete mode 100644 samples/gauges/linear-gauge/scale/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/linear-gauge/scale/src/config/tsconfig.app.json delete mode 100644 samples/gauges/linear-gauge/scale/src/config/tsconfig.base.json delete mode 100644 samples/gauges/linear-gauge/scale/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/linear-gauge/scale/src/config/tsconfig.worker.json create mode 100644 samples/gauges/linear-gauge/scale/tsconfig.app.json create mode 100644 samples/gauges/linear-gauge/tickmarks/.codesandbox/Dockerfile create mode 100644 samples/gauges/linear-gauge/tickmarks/.codesandbox/tasks.json delete mode 100644 samples/gauges/linear-gauge/tickmarks/sandbox.config.json delete mode 100644 samples/gauges/linear-gauge/tickmarks/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.app.json delete mode 100644 samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.base.json delete mode 100644 samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.worker.json create mode 100644 samples/gauges/linear-gauge/tickmarks/tsconfig.app.json create mode 100644 samples/gauges/radial-gauge/animation/.codesandbox/Dockerfile create mode 100644 samples/gauges/radial-gauge/animation/.codesandbox/tasks.json delete mode 100644 samples/gauges/radial-gauge/animation/sandbox.config.json delete mode 100644 samples/gauges/radial-gauge/animation/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/radial-gauge/animation/src/config/tsconfig.app.json delete mode 100644 samples/gauges/radial-gauge/animation/src/config/tsconfig.base.json delete mode 100644 samples/gauges/radial-gauge/animation/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/radial-gauge/animation/src/config/tsconfig.worker.json create mode 100644 samples/gauges/radial-gauge/animation/tsconfig.app.json create mode 100644 samples/gauges/radial-gauge/backing/.codesandbox/Dockerfile create mode 100644 samples/gauges/radial-gauge/backing/.codesandbox/tasks.json delete mode 100644 samples/gauges/radial-gauge/backing/sandbox.config.json delete mode 100644 samples/gauges/radial-gauge/backing/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/radial-gauge/backing/src/config/tsconfig.app.json delete mode 100644 samples/gauges/radial-gauge/backing/src/config/tsconfig.base.json delete mode 100644 samples/gauges/radial-gauge/backing/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/radial-gauge/backing/src/config/tsconfig.worker.json create mode 100644 samples/gauges/radial-gauge/backing/tsconfig.app.json create mode 100644 samples/gauges/radial-gauge/highlight-needle/.codesandbox/Dockerfile create mode 100644 samples/gauges/radial-gauge/highlight-needle/.codesandbox/tasks.json delete mode 100644 samples/gauges/radial-gauge/highlight-needle/sandbox.config.json delete mode 100644 samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.app.json delete mode 100644 samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.base.json delete mode 100644 samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.worker.json create mode 100644 samples/gauges/radial-gauge/highlight-needle/tsconfig.app.json create mode 100644 samples/gauges/radial-gauge/labels/.codesandbox/Dockerfile create mode 100644 samples/gauges/radial-gauge/labels/.codesandbox/tasks.json delete mode 100644 samples/gauges/radial-gauge/labels/sandbox.config.json delete mode 100644 samples/gauges/radial-gauge/labels/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/radial-gauge/labels/src/config/tsconfig.app.json delete mode 100644 samples/gauges/radial-gauge/labels/src/config/tsconfig.base.json delete mode 100644 samples/gauges/radial-gauge/labels/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/radial-gauge/labels/src/config/tsconfig.worker.json create mode 100644 samples/gauges/radial-gauge/labels/tsconfig.app.json create mode 100644 samples/gauges/radial-gauge/needle/.codesandbox/Dockerfile create mode 100644 samples/gauges/radial-gauge/needle/.codesandbox/tasks.json delete mode 100644 samples/gauges/radial-gauge/needle/sandbox.config.json delete mode 100644 samples/gauges/radial-gauge/needle/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/radial-gauge/needle/src/config/tsconfig.app.json delete mode 100644 samples/gauges/radial-gauge/needle/src/config/tsconfig.base.json delete mode 100644 samples/gauges/radial-gauge/needle/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/radial-gauge/needle/src/config/tsconfig.worker.json create mode 100644 samples/gauges/radial-gauge/needle/tsconfig.app.json create mode 100644 samples/gauges/radial-gauge/optical-scaling/.codesandbox/Dockerfile create mode 100644 samples/gauges/radial-gauge/optical-scaling/.codesandbox/tasks.json delete mode 100644 samples/gauges/radial-gauge/optical-scaling/sandbox.config.json delete mode 100644 samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.app.json delete mode 100644 samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.base.json delete mode 100644 samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.worker.json create mode 100644 samples/gauges/radial-gauge/optical-scaling/tsconfig.app.json create mode 100644 samples/gauges/radial-gauge/ranges/.codesandbox/Dockerfile create mode 100644 samples/gauges/radial-gauge/ranges/.codesandbox/tasks.json delete mode 100644 samples/gauges/radial-gauge/ranges/sandbox.config.json delete mode 100644 samples/gauges/radial-gauge/ranges/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/radial-gauge/ranges/src/config/tsconfig.app.json delete mode 100644 samples/gauges/radial-gauge/ranges/src/config/tsconfig.base.json delete mode 100644 samples/gauges/radial-gauge/ranges/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/radial-gauge/ranges/src/config/tsconfig.worker.json create mode 100644 samples/gauges/radial-gauge/ranges/tsconfig.app.json create mode 100644 samples/gauges/radial-gauge/scale/.codesandbox/Dockerfile create mode 100644 samples/gauges/radial-gauge/scale/.codesandbox/tasks.json delete mode 100644 samples/gauges/radial-gauge/scale/sandbox.config.json delete mode 100644 samples/gauges/radial-gauge/scale/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/radial-gauge/scale/src/config/tsconfig.app.json delete mode 100644 samples/gauges/radial-gauge/scale/src/config/tsconfig.base.json delete mode 100644 samples/gauges/radial-gauge/scale/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/radial-gauge/scale/src/config/tsconfig.worker.json create mode 100644 samples/gauges/radial-gauge/scale/tsconfig.app.json create mode 100644 samples/gauges/radial-gauge/tickmarks/.codesandbox/Dockerfile create mode 100644 samples/gauges/radial-gauge/tickmarks/.codesandbox/tasks.json delete mode 100644 samples/gauges/radial-gauge/tickmarks/sandbox.config.json delete mode 100644 samples/gauges/radial-gauge/tickmarks/src/config/tsconfig-es5.app.json delete mode 100644 samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.app.json delete mode 100644 samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.base.json delete mode 100644 samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.spec.json delete mode 100644 samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.worker.json create mode 100644 samples/gauges/radial-gauge/tickmarks/tsconfig.app.json create mode 100644 samples/maps/geo-map/binding-data-csv/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/binding-data-csv/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/binding-data-csv/sandbox.config.json delete mode 100644 samples/maps/geo-map/binding-data-csv/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/binding-data-csv/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/binding-data-csv/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/binding-data-csv/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/binding-data-csv/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/binding-data-csv/tsconfig.app.json create mode 100644 samples/maps/geo-map/binding-data-json-points/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/binding-data-json-points/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/binding-data-json-points/sandbox.config.json delete mode 100644 samples/maps/geo-map/binding-data-json-points/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/binding-data-json-points/tsconfig.app.json create mode 100644 samples/maps/geo-map/binding-data-model/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/binding-data-model/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/binding-data-model/sandbox.config.json delete mode 100644 samples/maps/geo-map/binding-data-model/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/binding-data-model/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/binding-data-model/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/binding-data-model/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/binding-data-model/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/binding-data-model/tsconfig.app.json create mode 100644 samples/maps/geo-map/binding-multiple-shapes/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/binding-multiple-shapes/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/binding-multiple-shapes/sandbox.config.json delete mode 100644 samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/binding-multiple-shapes/tsconfig.app.json create mode 100644 samples/maps/geo-map/binding-multiple-sources/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/binding-multiple-sources/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/binding-multiple-sources/sandbox.config.json delete mode 100644 samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/binding-multiple-sources/tsconfig.app.json create mode 100644 samples/maps/geo-map/binding-shp-points/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/binding-shp-points/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/binding-shp-points/sandbox.config.json delete mode 100644 samples/maps/geo-map/binding-shp-points/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/binding-shp-points/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/binding-shp-points/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/binding-shp-points/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/binding-shp-points/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/binding-shp-points/tsconfig.app.json create mode 100644 samples/maps/geo-map/binding-shp-polygons/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/binding-shp-polygons/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/binding-shp-polygons/sandbox.config.json delete mode 100644 samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/binding-shp-polygons/tsconfig.app.json create mode 100644 samples/maps/geo-map/binding-shp-polylines/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/binding-shp-polylines/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/binding-shp-polylines/sandbox.config.json delete mode 100644 samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/binding-shp-polylines/tsconfig.app.json create mode 100644 samples/maps/geo-map/custom-tooltips/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/custom-tooltips/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/custom-tooltips/sandbox.config.json delete mode 100644 samples/maps/geo-map/custom-tooltips/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/custom-tooltips/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/custom-tooltips/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/custom-tooltips/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/custom-tooltips/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/custom-tooltips/tsconfig.app.json create mode 100644 samples/maps/geo-map/display-bing-imagery/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/display-bing-imagery/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/display-bing-imagery/sandbox.config.json delete mode 100644 samples/maps/geo-map/display-bing-imagery/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/display-bing-imagery/tsconfig.app.json create mode 100644 samples/maps/geo-map/display-esri-imagery/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/display-esri-imagery/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/display-esri-imagery/sandbox.config.json delete mode 100644 samples/maps/geo-map/display-esri-imagery/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/display-esri-imagery/tsconfig.app.json create mode 100644 samples/maps/geo-map/display-heat-imagery/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/display-heat-imagery/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/display-heat-imagery/sandbox.config.json delete mode 100644 samples/maps/geo-map/display-heat-imagery/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/display-heat-imagery/tsconfig.app.json create mode 100644 samples/maps/geo-map/display-osm-imagery/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/display-osm-imagery/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/display-osm-imagery/sandbox.config.json delete mode 100644 samples/maps/geo-map/display-osm-imagery/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/display-osm-imagery/tsconfig.app.json create mode 100644 samples/maps/geo-map/marker-layouts/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/marker-layouts/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/marker-layouts/sandbox.config.json delete mode 100644 samples/maps/geo-map/marker-layouts/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/marker-layouts/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/marker-layouts/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/marker-layouts/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/marker-layouts/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/marker-layouts/tsconfig.app.json create mode 100644 samples/maps/geo-map/marker-template/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/marker-template/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/marker-template/sandbox.config.json delete mode 100644 samples/maps/geo-map/marker-template/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/marker-template/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/marker-template/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/marker-template/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/marker-template/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/marker-template/tsconfig.app.json create mode 100644 samples/maps/geo-map/marker-type/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/marker-type/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/marker-type/sandbox.config.json delete mode 100644 samples/maps/geo-map/marker-type/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/marker-type/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/marker-type/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/marker-type/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/marker-type/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/marker-type/tsconfig.app.json create mode 100644 samples/maps/geo-map/navigation/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/navigation/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/navigation/sandbox.config.json delete mode 100644 samples/maps/geo-map/navigation/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/navigation/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/navigation/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/navigation/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/navigation/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/navigation/tsconfig.app.json create mode 100644 samples/maps/geo-map/overview/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/overview/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/overview/sandbox.config.json delete mode 100644 samples/maps/geo-map/overview/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/overview/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/overview/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/overview/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/overview/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/overview/tsconfig.app.json create mode 100644 samples/maps/geo-map/shape-styling/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/shape-styling/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/shape-styling/sandbox.config.json delete mode 100644 samples/maps/geo-map/shape-styling/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/shape-styling/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/shape-styling/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/shape-styling/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/shape-styling/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/shape-styling/tsconfig.app.json create mode 100644 samples/maps/geo-map/triangulating-data/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/triangulating-data/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/triangulating-data/sandbox.config.json delete mode 100644 samples/maps/geo-map/triangulating-data/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/triangulating-data/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/triangulating-data/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/triangulating-data/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/triangulating-data/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/triangulating-data/tsconfig.app.json create mode 100644 samples/maps/geo-map/type-scatter-area-series/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/type-scatter-area-series/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/type-scatter-area-series/sandbox.config.json delete mode 100644 samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/type-scatter-area-series/tsconfig.app.json create mode 100644 samples/maps/geo-map/type-scatter-bubble-series/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/type-scatter-bubble-series/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/type-scatter-bubble-series/sandbox.config.json delete mode 100644 samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/type-scatter-bubble-series/tsconfig.app.json create mode 100644 samples/maps/geo-map/type-scatter-contour-series/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/type-scatter-contour-series/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/type-scatter-contour-series/sandbox.config.json delete mode 100644 samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/type-scatter-contour-series/tsconfig.app.json create mode 100644 samples/maps/geo-map/type-scatter-density-series/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/type-scatter-density-series/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/type-scatter-density-series/sandbox.config.json delete mode 100644 samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/type-scatter-density-series/tsconfig.app.json create mode 100644 samples/maps/geo-map/type-scatter-symbol-series/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/type-scatter-symbol-series/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/type-scatter-symbol-series/sandbox.config.json delete mode 100644 samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/type-scatter-symbol-series/tsconfig.app.json create mode 100644 samples/maps/geo-map/type-shape-polygon-series/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/type-shape-polygon-series/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/type-shape-polygon-series/sandbox.config.json delete mode 100644 samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/type-shape-polygon-series/tsconfig.app.json create mode 100644 samples/maps/geo-map/type-shape-polyline-series/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/type-shape-polyline-series/.codesandbox/tasks.json delete mode 100644 samples/maps/geo-map/type-shape-polyline-series/sandbox.config.json delete mode 100644 samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig-es5.app.json delete mode 100644 samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.app.json delete mode 100644 samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.base.json delete mode 100644 samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.spec.json delete mode 100644 samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.worker.json create mode 100644 samples/maps/geo-map/type-shape-polyline-series/tsconfig.app.json create mode 100644 tests/display-heat-imagery/.stackblitzrc create mode 100644 tests/display-heat-imagery/ReadMe.md create mode 100644 tests/display-heat-imagery/angular.json create mode 100644 tests/display-heat-imagery/package.json rename {samples/charts/category-chart/annotations => tests/display-heat-imagery}/sandbox.config.json (100%) create mode 100644 tests/display-heat-imagery/src/HeatmapWorker.ts create mode 100644 tests/display-heat-imagery/src/app.component.html create mode 100644 tests/display-heat-imagery/src/app.component.scss create mode 100644 tests/display-heat-imagery/src/app.component.ts create mode 100644 tests/display-heat-imagery/src/app.module.ts rename {samples/charts/category-chart/annotations-all => tests/display-heat-imagery}/src/config/tsconfig-es5.app.json (100%) rename {samples/charts/category-chart/annotations-all => tests/display-heat-imagery}/src/config/tsconfig.app.json (100%) rename {samples/charts/category-chart/annotations-all => tests/display-heat-imagery}/src/config/tsconfig.base.json (100%) rename {samples/charts/category-chart/annotations-all => tests/display-heat-imagery}/src/config/tsconfig.spec.json (100%) rename {samples/charts/category-chart/annotations-all => tests/display-heat-imagery}/src/config/tsconfig.worker.json (100%) create mode 100644 tests/display-heat-imagery/src/environments/environment.prod.ts create mode 100644 tests/display-heat-imagery/src/environments/environment.ts create mode 100644 tests/display-heat-imagery/src/index.html create mode 100644 tests/display-heat-imagery/src/main.ts create mode 100644 tests/display-heat-imagery/src/polyfills.ts create mode 100644 tests/display-heat-imagery/src/styles.scss create mode 100644 tests/display-heat-imagery/src/typings.d.ts create mode 100644 tests/display-heat-imagery/tsconfig.json diff --git a/browser/gulpfile.js b/browser/gulpfile.js index ce20d6f06..50cbb0191 100644 --- a/browser/gulpfile.js +++ b/browser/gulpfile.js @@ -47,6 +47,7 @@ gulp.task('copySamples', gulp.series(browser.findSamples, browser.copySamples)); gulp.task('generateSampleRouting', browser.generateSampleRouting); gulp.task('updateCodeViewer', gulp.series(browser.findSamples, browser.updateCodeViewer)); +gulp.task('updateCodeSandbox', browser.updateCodeSandbox); gulp.task('listSamples', browser.listSamples); gulp.task('moveAppFiles', browser.moveAppFiles); diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 3ecc7f8d0..94cc4613c 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1337,4 +1337,76 @@ exports.moveAppFiles = function moveAppFiles(cb) { cb(); }); +} + +exports.updateCodeSandbox = function updateCodeSandbox(cb) { + var appFolders = []; + var copyFiles = [ + "../tests/donut-ava4/.stackblitzrc", + "../tests/donut-ava4/.codesandbox/tasks.json", + "../tests/donut-ava4/.codesandbox/Dockerfile", + "../tests/donut-ava4/tsconfig.app.json", + "../tests/donut-ava4/tsconfig.json", + "../tests/donut-ava4/angular.json", + ]; + var deleteFiles = [ + "sandbox.config.json", + "src\\config", + ]; + + gulp.src( [ + "../samples/**/package.json", + // "../samples/**/display-osm-imagery/package.json", + // "../samples/**/doughnut-chart/overview/package.json", + // "../samples/**/display-heat-imagery/package.json", + ], {allowEmpty: true}) + .pipe(es.map(function(file, fileCallback) { + + var fileContent = file.contents.toString(); + let fileOutput = file.dirname + "\\" + file.basename; + + console.log("updating " + fileOutput); + fileContent = fileContent.replace('"@angular/animations": "17.0.0"','"@angular/animations": "^17.2.1"'); + fileContent = fileContent.replace('"@angular/common": "17.0.0"','"@angular/common": "^17.2.1"'); + fileContent = fileContent.replace('"@angular/compiler": "17.0.0"','"@angular/compiler": "^17.2.1"'); + fileContent = fileContent.replace('"@angular/core": "17.0.0"','"@angular/core": "^17.2.1"'); + fileContent = fileContent.replace('"@angular/forms": "17.0.0"','"@angular/forms": "^17.2.1"'); + fileContent = fileContent.replace('"@angular/platform-browser": "17.0.0"','"@angular/platform-browser": "^17.2.1"'); + fileContent = fileContent.replace('"@angular/platform-browser-dynamic": "17.0.0"','"@angular/platform-browser-dynamic": "^17.2.1"'); + fileContent = fileContent.replace('"rxjs": "6.6.7"','"rxjs": "^7.8.1"'); + fileContent = fileContent.replace('"tslib": "2.3.1"','"tslib": "^2.6.1"'); + fileContent = fileContent.replace('"zone.js": "~0.14.1"','"zone.js": "~0.14.4"'); + fileContent = fileContent.replace('"@angular-devkit/build-angular": "17.0.0"','"@angular-devkit/build-angular": "17.2.0"'); + fileContent = fileContent.replace('"@angular/cli": "17.0.0"','"@angular/cli": "17.2.0"'); + fileContent = fileContent.replace('"@angular/compiler-cli": "17.0.0"','"@angular/compiler-cli": "17.2.1"'); + fileContent = fileContent.replace('"@angular/language-service": "17.0.0"','"@angular/language-service": "17.2.1"'); + fileContent = fileContent.replace('"@types/node": "14.14.28"','"@types/node": "18.17.0"'); + fileContent = fileContent.replace('"jasmine-core": "3.7.1"','"jasmine-core": "5.1.1"'); + fileContent = fileContent.replace('"ts-node": "9.1.1"','"ts-node": "10.9.1"'); + fileContent = fileContent.replace('"typescript": "5.2.2"','"typescript": "5.3.3"'); + fileContent = fileContent.replace('"hammerjs": "2.0.8"','"hammerjs": "^2.0.8"'); + + fs.writeFileSync(fileOutput, fileContent); + + for (let i = 0; i < deleteFiles.length; i++) { + var deletePath = file.dirname + "\\" + deleteFiles[i]; + console.log("delete " + deletePath); + del([deletePath], {force: true}); + } + + for (let i = 0; i < copyFiles.length; i++) { + var outputPath = copyFiles[i].replace('../tests/donut-ava4/', file.dirname + "/"); + // del([deletePath], {force: true}); + console.log("copy " + outputPath); + let outputFile = fs.readFileSync(copyFiles[i]).toString(); + // outputFile = outputFile.replace("/app/", "/"); + makeDirectoryFor(outputPath); + fs.writeFileSync(outputPath, outputFile); + } + fileCallback(null, file); + })) + .on("end", function() { + cb(); + }); + } \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/.codesandbox/Dockerfile b/samples/charts/category-chart/annotations-all/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/annotations-all/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/.codesandbox/tasks.json b/samples/charts/category-chart/annotations-all/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/annotations-all/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/.stackblitzrc b/samples/charts/category-chart/annotations-all/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/annotations-all/.stackblitzrc +++ b/samples/charts/category-chart/annotations-all/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/angular.json b/samples/charts/category-chart/annotations-all/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/annotations-all/angular.json +++ b/samples/charts/category-chart/annotations-all/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/annotations-all/sandbox.config.json b/samples/charts/category-chart/annotations-all/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/annotations-all/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/tsconfig.app.json b/samples/charts/category-chart/annotations-all/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/annotations-all/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/annotations-all/tsconfig.json b/samples/charts/category-chart/annotations-all/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/annotations-all/tsconfig.json +++ b/samples/charts/category-chart/annotations-all/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-callouts/.codesandbox/Dockerfile b/samples/charts/category-chart/annotations-callouts/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/annotations-callouts/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-callouts/.codesandbox/tasks.json b/samples/charts/category-chart/annotations-callouts/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/annotations-callouts/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-callouts/.stackblitzrc b/samples/charts/category-chart/annotations-callouts/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/annotations-callouts/.stackblitzrc +++ b/samples/charts/category-chart/annotations-callouts/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-callouts/angular.json b/samples/charts/category-chart/annotations-callouts/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/annotations-callouts/angular.json +++ b/samples/charts/category-chart/annotations-callouts/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/annotations-callouts/sandbox.config.json b/samples/charts/category-chart/annotations-callouts/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/annotations-callouts/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-callouts/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/annotations-callouts/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/annotations-callouts/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.app.json b/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.base.json b/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.spec.json b/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.worker.json b/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/annotations-callouts/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/annotations-callouts/tsconfig.app.json b/samples/charts/category-chart/annotations-callouts/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/annotations-callouts/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/annotations-callouts/tsconfig.json b/samples/charts/category-chart/annotations-callouts/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/annotations-callouts/tsconfig.json +++ b/samples/charts/category-chart/annotations-callouts/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-crosshairs/.codesandbox/Dockerfile b/samples/charts/category-chart/annotations-crosshairs/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/annotations-crosshairs/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-crosshairs/.codesandbox/tasks.json b/samples/charts/category-chart/annotations-crosshairs/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/annotations-crosshairs/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-crosshairs/.stackblitzrc b/samples/charts/category-chart/annotations-crosshairs/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/annotations-crosshairs/.stackblitzrc +++ b/samples/charts/category-chart/annotations-crosshairs/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-crosshairs/angular.json b/samples/charts/category-chart/annotations-crosshairs/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/annotations-crosshairs/angular.json +++ b/samples/charts/category-chart/annotations-crosshairs/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/annotations-crosshairs/sandbox.config.json b/samples/charts/category-chart/annotations-crosshairs/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/annotations-crosshairs/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.app.json b/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.base.json b/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.spec.json b/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.worker.json b/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/annotations-crosshairs/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/annotations-crosshairs/tsconfig.app.json b/samples/charts/category-chart/annotations-crosshairs/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/annotations-crosshairs/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/annotations-crosshairs/tsconfig.json b/samples/charts/category-chart/annotations-crosshairs/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/annotations-crosshairs/tsconfig.json +++ b/samples/charts/category-chart/annotations-crosshairs/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-custom/.codesandbox/Dockerfile b/samples/charts/category-chart/annotations-custom/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-custom/.codesandbox/tasks.json b/samples/charts/category-chart/annotations-custom/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-custom/.stackblitzrc b/samples/charts/category-chart/annotations-custom/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/annotations-custom/.stackblitzrc +++ b/samples/charts/category-chart/annotations-custom/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-custom/angular.json b/samples/charts/category-chart/annotations-custom/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/annotations-custom/angular.json +++ b/samples/charts/category-chart/annotations-custom/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/annotations-custom/sandbox.config.json b/samples/charts/category-chart/annotations-custom/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/annotations-custom/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-custom/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/annotations-custom/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/annotations-custom/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/annotations-custom/src/config/tsconfig.app.json b/samples/charts/category-chart/annotations-custom/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/annotations-custom/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/annotations-custom/src/config/tsconfig.base.json b/samples/charts/category-chart/annotations-custom/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/annotations-custom/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/annotations-custom/src/config/tsconfig.spec.json b/samples/charts/category-chart/annotations-custom/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/annotations-custom/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/annotations-custom/src/config/tsconfig.worker.json b/samples/charts/category-chart/annotations-custom/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/annotations-custom/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/annotations-custom/tsconfig.app.json b/samples/charts/category-chart/annotations-custom/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/annotations-custom/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/annotations-custom/tsconfig.json b/samples/charts/category-chart/annotations-custom/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/annotations-custom/tsconfig.json +++ b/samples/charts/category-chart/annotations-custom/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-final-value/.codesandbox/Dockerfile b/samples/charts/category-chart/annotations-final-value/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/annotations-final-value/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-final-value/.codesandbox/tasks.json b/samples/charts/category-chart/annotations-final-value/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/annotations-final-value/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-final-value/.stackblitzrc b/samples/charts/category-chart/annotations-final-value/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/annotations-final-value/.stackblitzrc +++ b/samples/charts/category-chart/annotations-final-value/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-final-value/angular.json b/samples/charts/category-chart/annotations-final-value/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/annotations-final-value/angular.json +++ b/samples/charts/category-chart/annotations-final-value/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/annotations-final-value/sandbox.config.json b/samples/charts/category-chart/annotations-final-value/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/annotations-final-value/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-final-value/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/annotations-final-value/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/annotations-final-value/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.app.json b/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.base.json b/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.spec.json b/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.worker.json b/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/annotations-final-value/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/annotations-final-value/tsconfig.app.json b/samples/charts/category-chart/annotations-final-value/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/annotations-final-value/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/annotations-final-value/tsconfig.json b/samples/charts/category-chart/annotations-final-value/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/annotations-final-value/tsconfig.json +++ b/samples/charts/category-chart/annotations-final-value/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-highlighting/.codesandbox/Dockerfile b/samples/charts/category-chart/annotations-highlighting/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/annotations-highlighting/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-highlighting/.codesandbox/tasks.json b/samples/charts/category-chart/annotations-highlighting/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/annotations-highlighting/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-highlighting/.stackblitzrc b/samples/charts/category-chart/annotations-highlighting/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/annotations-highlighting/.stackblitzrc +++ b/samples/charts/category-chart/annotations-highlighting/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-highlighting/angular.json b/samples/charts/category-chart/annotations-highlighting/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/annotations-highlighting/angular.json +++ b/samples/charts/category-chart/annotations-highlighting/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/annotations-highlighting/sandbox.config.json b/samples/charts/category-chart/annotations-highlighting/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/annotations-highlighting/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.app.json b/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.base.json b/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.spec.json b/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.worker.json b/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/annotations-highlighting/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/annotations-highlighting/tsconfig.app.json b/samples/charts/category-chart/annotations-highlighting/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/annotations-highlighting/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/annotations-highlighting/tsconfig.json b/samples/charts/category-chart/annotations-highlighting/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/annotations-highlighting/tsconfig.json +++ b/samples/charts/category-chart/annotations-highlighting/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/annotations/.codesandbox/Dockerfile b/samples/charts/category-chart/annotations/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/annotations/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/annotations/.codesandbox/tasks.json b/samples/charts/category-chart/annotations/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/annotations/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations/.stackblitzrc b/samples/charts/category-chart/annotations/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/annotations/.stackblitzrc +++ b/samples/charts/category-chart/annotations/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations/angular.json b/samples/charts/category-chart/annotations/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/annotations/angular.json +++ b/samples/charts/category-chart/annotations/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/annotations/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/annotations/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/annotations/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/annotations/src/config/tsconfig.app.json b/samples/charts/category-chart/annotations/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/annotations/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/annotations/src/config/tsconfig.base.json b/samples/charts/category-chart/annotations/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/annotations/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/annotations/src/config/tsconfig.spec.json b/samples/charts/category-chart/annotations/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/annotations/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/annotations/src/config/tsconfig.worker.json b/samples/charts/category-chart/annotations/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/annotations/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/annotations/tsconfig.app.json b/samples/charts/category-chart/annotations/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/annotations/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/annotations/tsconfig.json b/samples/charts/category-chart/annotations/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/annotations/tsconfig.json +++ b/samples/charts/category-chart/annotations/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-multiple-sources/.codesandbox/Dockerfile b/samples/charts/category-chart/area-chart-multiple-sources/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/area-chart-multiple-sources/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-multiple-sources/.codesandbox/tasks.json b/samples/charts/category-chart/area-chart-multiple-sources/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/area-chart-multiple-sources/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-multiple-sources/.stackblitzrc b/samples/charts/category-chart/area-chart-multiple-sources/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/.stackblitzrc +++ b/samples/charts/category-chart/area-chart-multiple-sources/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-multiple-sources/angular.json b/samples/charts/category-chart/area-chart-multiple-sources/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/angular.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/area-chart-multiple-sources/sandbox.config.json b/samples/charts/category-chart/area-chart-multiple-sources/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/area-chart-multiple-sources/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.app.json b/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.base.json b/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.spec.json b/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/area-chart-multiple-sources/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.app.json b/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json b/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-single-source/.codesandbox/Dockerfile b/samples/charts/category-chart/area-chart-single-source/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/area-chart-single-source/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-single-source/.codesandbox/tasks.json b/samples/charts/category-chart/area-chart-single-source/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/area-chart-single-source/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-single-source/.stackblitzrc b/samples/charts/category-chart/area-chart-single-source/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/area-chart-single-source/.stackblitzrc +++ b/samples/charts/category-chart/area-chart-single-source/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-single-source/angular.json b/samples/charts/category-chart/area-chart-single-source/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/area-chart-single-source/angular.json +++ b/samples/charts/category-chart/area-chart-single-source/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/area-chart-single-source/sandbox.config.json b/samples/charts/category-chart/area-chart-single-source/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/area-chart-single-source/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.app.json b/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.base.json b/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.spec.json b/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.worker.json b/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/area-chart-single-source/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/area-chart-single-source/tsconfig.app.json b/samples/charts/category-chart/area-chart-single-source/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/area-chart-single-source/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/area-chart-single-source/tsconfig.json b/samples/charts/category-chart/area-chart-single-source/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/area-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/area-chart-single-source/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-styling/.codesandbox/Dockerfile b/samples/charts/category-chart/area-chart-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/area-chart-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-styling/.codesandbox/tasks.json b/samples/charts/category-chart/area-chart-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/area-chart-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-styling/.stackblitzrc b/samples/charts/category-chart/area-chart-styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/area-chart-styling/.stackblitzrc +++ b/samples/charts/category-chart/area-chart-styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-styling/angular.json b/samples/charts/category-chart/area-chart-styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/area-chart-styling/angular.json +++ b/samples/charts/category-chart/area-chart-styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/area-chart-styling/sandbox.config.json b/samples/charts/category-chart/area-chart-styling/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/area-chart-styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-styling/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/area-chart-styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/area-chart-styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.app.json b/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.base.json b/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.spec.json b/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.worker.json b/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/area-chart-styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/area-chart-styling/tsconfig.app.json b/samples/charts/category-chart/area-chart-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/area-chart-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/area-chart-styling/tsconfig.json b/samples/charts/category-chart/area-chart-styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/area-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/area-chart-styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-gap/.codesandbox/Dockerfile b/samples/charts/category-chart/axis-gap/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/axis-gap/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/axis-gap/.codesandbox/tasks.json b/samples/charts/category-chart/axis-gap/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/axis-gap/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-gap/.stackblitzrc b/samples/charts/category-chart/axis-gap/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/axis-gap/.stackblitzrc +++ b/samples/charts/category-chart/axis-gap/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-gap/angular.json b/samples/charts/category-chart/axis-gap/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/axis-gap/angular.json +++ b/samples/charts/category-chart/axis-gap/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/axis-gap/sandbox.config.json b/samples/charts/category-chart/axis-gap/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/axis-gap/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-gap/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-gap/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/axis-gap/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/axis-gap/src/config/tsconfig.app.json b/samples/charts/category-chart/axis-gap/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/axis-gap/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/axis-gap/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-gap/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/axis-gap/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/axis-gap/src/config/tsconfig.spec.json b/samples/charts/category-chart/axis-gap/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/axis-gap/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/axis-gap/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-gap/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/axis-gap/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/axis-gap/tsconfig.app.json b/samples/charts/category-chart/axis-gap/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/axis-gap/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/axis-gap/tsconfig.json b/samples/charts/category-chart/axis-gap/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/axis-gap/tsconfig.json +++ b/samples/charts/category-chart/axis-gap/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-gridlines/.codesandbox/Dockerfile b/samples/charts/category-chart/axis-gridlines/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/axis-gridlines/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/axis-gridlines/.codesandbox/tasks.json b/samples/charts/category-chart/axis-gridlines/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/axis-gridlines/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-gridlines/.stackblitzrc b/samples/charts/category-chart/axis-gridlines/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/axis-gridlines/.stackblitzrc +++ b/samples/charts/category-chart/axis-gridlines/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-gridlines/angular.json b/samples/charts/category-chart/axis-gridlines/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/axis-gridlines/angular.json +++ b/samples/charts/category-chart/axis-gridlines/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/axis-gridlines/sandbox.config.json b/samples/charts/category-chart/axis-gridlines/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/axis-gridlines/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-gridlines/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-gridlines/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/axis-gridlines/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.app.json b/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.spec.json b/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/axis-gridlines/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/axis-gridlines/tsconfig.app.json b/samples/charts/category-chart/axis-gridlines/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/axis-gridlines/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/axis-gridlines/tsconfig.json b/samples/charts/category-chart/axis-gridlines/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/axis-gridlines/tsconfig.json +++ b/samples/charts/category-chart/axis-gridlines/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-inverted/.codesandbox/Dockerfile b/samples/charts/category-chart/axis-inverted/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/axis-inverted/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/axis-inverted/.codesandbox/tasks.json b/samples/charts/category-chart/axis-inverted/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/axis-inverted/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-inverted/.stackblitzrc b/samples/charts/category-chart/axis-inverted/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/axis-inverted/.stackblitzrc +++ b/samples/charts/category-chart/axis-inverted/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-inverted/angular.json b/samples/charts/category-chart/axis-inverted/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/axis-inverted/angular.json +++ b/samples/charts/category-chart/axis-inverted/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/axis-inverted/sandbox.config.json b/samples/charts/category-chart/axis-inverted/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/axis-inverted/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-inverted/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-inverted/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/axis-inverted/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/axis-inverted/src/config/tsconfig.app.json b/samples/charts/category-chart/axis-inverted/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/axis-inverted/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/axis-inverted/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-inverted/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/axis-inverted/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/axis-inverted/src/config/tsconfig.spec.json b/samples/charts/category-chart/axis-inverted/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/axis-inverted/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/axis-inverted/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-inverted/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/axis-inverted/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/axis-inverted/tsconfig.app.json b/samples/charts/category-chart/axis-inverted/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/axis-inverted/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/axis-inverted/tsconfig.json b/samples/charts/category-chart/axis-inverted/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/axis-inverted/tsconfig.json +++ b/samples/charts/category-chart/axis-inverted/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-labels/.codesandbox/Dockerfile b/samples/charts/category-chart/axis-labels/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/axis-labels/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/axis-labels/.codesandbox/tasks.json b/samples/charts/category-chart/axis-labels/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/axis-labels/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-labels/.stackblitzrc b/samples/charts/category-chart/axis-labels/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/axis-labels/.stackblitzrc +++ b/samples/charts/category-chart/axis-labels/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-labels/angular.json b/samples/charts/category-chart/axis-labels/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/axis-labels/angular.json +++ b/samples/charts/category-chart/axis-labels/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/axis-labels/sandbox.config.json b/samples/charts/category-chart/axis-labels/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/axis-labels/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-labels/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-labels/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/axis-labels/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/axis-labels/src/config/tsconfig.app.json b/samples/charts/category-chart/axis-labels/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/axis-labels/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/axis-labels/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-labels/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/axis-labels/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/axis-labels/src/config/tsconfig.spec.json b/samples/charts/category-chart/axis-labels/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/axis-labels/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/axis-labels/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-labels/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/axis-labels/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/axis-labels/tsconfig.app.json b/samples/charts/category-chart/axis-labels/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/axis-labels/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/axis-labels/tsconfig.json b/samples/charts/category-chart/axis-labels/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/axis-labels/tsconfig.json +++ b/samples/charts/category-chart/axis-labels/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-locations/.codesandbox/Dockerfile b/samples/charts/category-chart/axis-locations/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/axis-locations/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/axis-locations/.codesandbox/tasks.json b/samples/charts/category-chart/axis-locations/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/axis-locations/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-locations/.stackblitzrc b/samples/charts/category-chart/axis-locations/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/axis-locations/.stackblitzrc +++ b/samples/charts/category-chart/axis-locations/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-locations/angular.json b/samples/charts/category-chart/axis-locations/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/axis-locations/angular.json +++ b/samples/charts/category-chart/axis-locations/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/axis-locations/sandbox.config.json b/samples/charts/category-chart/axis-locations/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/axis-locations/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-locations/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-locations/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/axis-locations/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/axis-locations/src/config/tsconfig.app.json b/samples/charts/category-chart/axis-locations/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/axis-locations/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/axis-locations/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-locations/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/axis-locations/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/axis-locations/src/config/tsconfig.spec.json b/samples/charts/category-chart/axis-locations/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/axis-locations/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/axis-locations/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-locations/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/axis-locations/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/axis-locations/tsconfig.app.json b/samples/charts/category-chart/axis-locations/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/axis-locations/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/axis-locations/tsconfig.json b/samples/charts/category-chart/axis-locations/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/axis-locations/tsconfig.json +++ b/samples/charts/category-chart/axis-locations/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-options/.codesandbox/Dockerfile b/samples/charts/category-chart/axis-options/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/axis-options/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/axis-options/.codesandbox/tasks.json b/samples/charts/category-chart/axis-options/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/axis-options/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-options/.stackblitzrc b/samples/charts/category-chart/axis-options/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/axis-options/.stackblitzrc +++ b/samples/charts/category-chart/axis-options/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-options/angular.json b/samples/charts/category-chart/axis-options/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/axis-options/angular.json +++ b/samples/charts/category-chart/axis-options/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/axis-options/sandbox.config.json b/samples/charts/category-chart/axis-options/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/axis-options/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-options/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-options/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/axis-options/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/axis-options/src/config/tsconfig.app.json b/samples/charts/category-chart/axis-options/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/axis-options/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/axis-options/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-options/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/axis-options/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/axis-options/src/config/tsconfig.spec.json b/samples/charts/category-chart/axis-options/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/axis-options/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/axis-options/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-options/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/axis-options/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/axis-options/tsconfig.app.json b/samples/charts/category-chart/axis-options/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/axis-options/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/axis-options/tsconfig.json b/samples/charts/category-chart/axis-options/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/axis-options/tsconfig.json +++ b/samples/charts/category-chart/axis-options/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-overlap/.codesandbox/Dockerfile b/samples/charts/category-chart/axis-overlap/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/axis-overlap/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/axis-overlap/.codesandbox/tasks.json b/samples/charts/category-chart/axis-overlap/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/axis-overlap/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-overlap/.stackblitzrc b/samples/charts/category-chart/axis-overlap/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/axis-overlap/.stackblitzrc +++ b/samples/charts/category-chart/axis-overlap/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-overlap/angular.json b/samples/charts/category-chart/axis-overlap/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/axis-overlap/angular.json +++ b/samples/charts/category-chart/axis-overlap/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/axis-overlap/sandbox.config.json b/samples/charts/category-chart/axis-overlap/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/axis-overlap/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-overlap/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-overlap/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/axis-overlap/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/axis-overlap/src/config/tsconfig.app.json b/samples/charts/category-chart/axis-overlap/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/axis-overlap/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/axis-overlap/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-overlap/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/axis-overlap/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/axis-overlap/src/config/tsconfig.spec.json b/samples/charts/category-chart/axis-overlap/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/axis-overlap/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/axis-overlap/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-overlap/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/axis-overlap/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/axis-overlap/tsconfig.app.json b/samples/charts/category-chart/axis-overlap/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/axis-overlap/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/axis-overlap/tsconfig.json b/samples/charts/category-chart/axis-overlap/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/axis-overlap/tsconfig.json +++ b/samples/charts/category-chart/axis-overlap/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-range/.codesandbox/Dockerfile b/samples/charts/category-chart/axis-range/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/axis-range/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/axis-range/.codesandbox/tasks.json b/samples/charts/category-chart/axis-range/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/axis-range/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-range/.stackblitzrc b/samples/charts/category-chart/axis-range/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/axis-range/.stackblitzrc +++ b/samples/charts/category-chart/axis-range/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-range/angular.json b/samples/charts/category-chart/axis-range/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/axis-range/angular.json +++ b/samples/charts/category-chart/axis-range/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/axis-range/sandbox.config.json b/samples/charts/category-chart/axis-range/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/axis-range/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-range/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-range/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/axis-range/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/axis-range/src/config/tsconfig.app.json b/samples/charts/category-chart/axis-range/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/axis-range/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/axis-range/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-range/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/axis-range/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/axis-range/src/config/tsconfig.spec.json b/samples/charts/category-chart/axis-range/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/axis-range/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/axis-range/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-range/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/axis-range/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/axis-range/tsconfig.app.json b/samples/charts/category-chart/axis-range/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/axis-range/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/axis-range/tsconfig.json b/samples/charts/category-chart/axis-range/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/axis-range/tsconfig.json +++ b/samples/charts/category-chart/axis-range/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-tickmarks/.codesandbox/Dockerfile b/samples/charts/category-chart/axis-tickmarks/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/axis-tickmarks/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/axis-tickmarks/.codesandbox/tasks.json b/samples/charts/category-chart/axis-tickmarks/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/axis-tickmarks/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-tickmarks/.stackblitzrc b/samples/charts/category-chart/axis-tickmarks/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/axis-tickmarks/.stackblitzrc +++ b/samples/charts/category-chart/axis-tickmarks/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-tickmarks/angular.json b/samples/charts/category-chart/axis-tickmarks/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/axis-tickmarks/angular.json +++ b/samples/charts/category-chart/axis-tickmarks/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/axis-tickmarks/sandbox.config.json b/samples/charts/category-chart/axis-tickmarks/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/axis-tickmarks/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.app.json b/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.spec.json b/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/axis-tickmarks/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/axis-tickmarks/tsconfig.app.json b/samples/charts/category-chart/axis-tickmarks/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/axis-tickmarks/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/axis-tickmarks/tsconfig.json b/samples/charts/category-chart/axis-tickmarks/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/axis-tickmarks/tsconfig.json +++ b/samples/charts/category-chart/axis-tickmarks/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-titles/.codesandbox/Dockerfile b/samples/charts/category-chart/axis-titles/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/axis-titles/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/axis-titles/.codesandbox/tasks.json b/samples/charts/category-chart/axis-titles/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/axis-titles/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-titles/.stackblitzrc b/samples/charts/category-chart/axis-titles/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/axis-titles/.stackblitzrc +++ b/samples/charts/category-chart/axis-titles/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-titles/angular.json b/samples/charts/category-chart/axis-titles/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/axis-titles/angular.json +++ b/samples/charts/category-chart/axis-titles/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/axis-titles/sandbox.config.json b/samples/charts/category-chart/axis-titles/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/axis-titles/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-titles/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/axis-titles/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/axis-titles/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/axis-titles/src/config/tsconfig.app.json b/samples/charts/category-chart/axis-titles/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/axis-titles/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/axis-titles/src/config/tsconfig.base.json b/samples/charts/category-chart/axis-titles/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/axis-titles/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/axis-titles/src/config/tsconfig.spec.json b/samples/charts/category-chart/axis-titles/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/axis-titles/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/axis-titles/src/config/tsconfig.worker.json b/samples/charts/category-chart/axis-titles/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/axis-titles/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/axis-titles/tsconfig.app.json b/samples/charts/category-chart/axis-titles/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/axis-titles/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/axis-titles/tsconfig.json b/samples/charts/category-chart/axis-titles/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/axis-titles/tsconfig.json +++ b/samples/charts/category-chart/axis-titles/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/chart-highlight-filter/.codesandbox/Dockerfile b/samples/charts/category-chart/chart-highlight-filter/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/chart-highlight-filter/.codesandbox/tasks.json b/samples/charts/category-chart/chart-highlight-filter/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/chart-highlight-filter/.stackblitzrc b/samples/charts/category-chart/chart-highlight-filter/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/chart-highlight-filter/.stackblitzrc +++ b/samples/charts/category-chart/chart-highlight-filter/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/chart-highlight-filter/angular.json b/samples/charts/category-chart/chart-highlight-filter/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/chart-highlight-filter/angular.json +++ b/samples/charts/category-chart/chart-highlight-filter/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/chart-highlight-filter/sandbox.config.json b/samples/charts/category-chart/chart-highlight-filter/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/chart-highlight-filter/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.app.json b/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.base.json b/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.spec.json b/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.worker.json b/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/chart-highlight-filter/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/chart-highlight-filter/tsconfig.app.json b/samples/charts/category-chart/chart-highlight-filter/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/chart-highlight-filter/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/chart-highlight-filter/tsconfig.json b/samples/charts/category-chart/chart-highlight-filter/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/chart-highlight-filter/tsconfig.json +++ b/samples/charts/category-chart/chart-highlight-filter/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-multiple-sources/.codesandbox/Dockerfile b/samples/charts/category-chart/column-chart-multiple-sources/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/column-chart-multiple-sources/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-multiple-sources/.codesandbox/tasks.json b/samples/charts/category-chart/column-chart-multiple-sources/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/column-chart-multiple-sources/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-multiple-sources/.stackblitzrc b/samples/charts/category-chart/column-chart-multiple-sources/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/.stackblitzrc +++ b/samples/charts/category-chart/column-chart-multiple-sources/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-multiple-sources/angular.json b/samples/charts/category-chart/column-chart-multiple-sources/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/angular.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/sandbox.config.json b/samples/charts/category-chart/column-chart-multiple-sources/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/column-chart-multiple-sources/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.app.json b/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.base.json b/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.spec.json b/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.app.json b/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.json b/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-single-source/.codesandbox/Dockerfile b/samples/charts/category-chart/column-chart-single-source/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/column-chart-single-source/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-single-source/.codesandbox/tasks.json b/samples/charts/category-chart/column-chart-single-source/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/column-chart-single-source/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-single-source/.stackblitzrc b/samples/charts/category-chart/column-chart-single-source/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/column-chart-single-source/.stackblitzrc +++ b/samples/charts/category-chart/column-chart-single-source/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-single-source/angular.json b/samples/charts/category-chart/column-chart-single-source/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/column-chart-single-source/angular.json +++ b/samples/charts/category-chart/column-chart-single-source/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/column-chart-single-source/sandbox.config.json b/samples/charts/category-chart/column-chart-single-source/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/column-chart-single-source/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.app.json b/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.base.json b/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.spec.json b/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.worker.json b/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/column-chart-single-source/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/column-chart-single-source/tsconfig.app.json b/samples/charts/category-chart/column-chart-single-source/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/column-chart-single-source/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/column-chart-single-source/tsconfig.json b/samples/charts/category-chart/column-chart-single-source/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/column-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/column-chart-single-source/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-styling/.codesandbox/Dockerfile b/samples/charts/category-chart/column-chart-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/column-chart-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-styling/.codesandbox/tasks.json b/samples/charts/category-chart/column-chart-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/column-chart-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-styling/.stackblitzrc b/samples/charts/category-chart/column-chart-styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/column-chart-styling/.stackblitzrc +++ b/samples/charts/category-chart/column-chart-styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-styling/angular.json b/samples/charts/category-chart/column-chart-styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/column-chart-styling/angular.json +++ b/samples/charts/category-chart/column-chart-styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/column-chart-styling/sandbox.config.json b/samples/charts/category-chart/column-chart-styling/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/column-chart-styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-styling/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/column-chart-styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/column-chart-styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.app.json b/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.base.json b/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.spec.json b/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.worker.json b/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/column-chart-styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/column-chart-styling/tsconfig.app.json b/samples/charts/category-chart/column-chart-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/column-chart-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/column-chart-styling/tsconfig.json b/samples/charts/category-chart/column-chart-styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/column-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/column-chart-styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-with-highlighting/.codesandbox/Dockerfile b/samples/charts/category-chart/column-chart-with-highlighting/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/column-chart-with-highlighting/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-with-highlighting/.codesandbox/tasks.json b/samples/charts/category-chart/column-chart-with-highlighting/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/column-chart-with-highlighting/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-with-highlighting/.stackblitzrc b/samples/charts/category-chart/column-chart-with-highlighting/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/.stackblitzrc +++ b/samples/charts/category-chart/column-chart-with-highlighting/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-with-highlighting/angular.json b/samples/charts/category-chart/column-chart-with-highlighting/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/angular.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/column-chart-with-highlighting/sandbox.config.json b/samples/charts/category-chart/column-chart-with-highlighting/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/category-chart/column-chart-with-highlighting/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.app.json b/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.base.json b/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.spec.json b/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.worker.json b/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/column-chart-with-highlighting/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/column-chart-with-highlighting/tsconfig.app.json b/samples/charts/category-chart/column-chart-with-highlighting/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/column-chart-with-highlighting/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/column-chart-with-highlighting/tsconfig.json b/samples/charts/category-chart/column-chart-with-highlighting/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/tsconfig.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-with-tooltips/.codesandbox/Dockerfile b/samples/charts/category-chart/column-chart-with-tooltips/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/column-chart-with-tooltips/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-with-tooltips/.codesandbox/tasks.json b/samples/charts/category-chart/column-chart-with-tooltips/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/column-chart-with-tooltips/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-with-tooltips/.stackblitzrc b/samples/charts/category-chart/column-chart-with-tooltips/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/.stackblitzrc +++ b/samples/charts/category-chart/column-chart-with-tooltips/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-with-tooltips/angular.json b/samples/charts/category-chart/column-chart-with-tooltips/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/angular.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/sandbox.config.json b/samples/charts/category-chart/column-chart-with-tooltips/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/column-chart-with-tooltips/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.app.json b/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.base.json b/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.spec.json b/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.worker.json b/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/column-chart-with-tooltips/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.app.json b/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json b/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/custom-selection/.codesandbox/Dockerfile b/samples/charts/category-chart/custom-selection/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/custom-selection/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/custom-selection/.codesandbox/tasks.json b/samples/charts/category-chart/custom-selection/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/custom-selection/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/custom-selection/.stackblitzrc b/samples/charts/category-chart/custom-selection/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/custom-selection/.stackblitzrc +++ b/samples/charts/category-chart/custom-selection/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/custom-selection/angular.json b/samples/charts/category-chart/custom-selection/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/custom-selection/angular.json +++ b/samples/charts/category-chart/custom-selection/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/custom-selection/sandbox.config.json b/samples/charts/category-chart/custom-selection/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/custom-selection/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/custom-selection/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/custom-selection/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/custom-selection/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/custom-selection/src/config/tsconfig.app.json b/samples/charts/category-chart/custom-selection/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/custom-selection/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/custom-selection/src/config/tsconfig.base.json b/samples/charts/category-chart/custom-selection/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/custom-selection/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/custom-selection/src/config/tsconfig.spec.json b/samples/charts/category-chart/custom-selection/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/custom-selection/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/custom-selection/src/config/tsconfig.worker.json b/samples/charts/category-chart/custom-selection/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/custom-selection/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/custom-selection/tsconfig.app.json b/samples/charts/category-chart/custom-selection/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/custom-selection/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/custom-selection/tsconfig.json b/samples/charts/category-chart/custom-selection/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/custom-selection/tsconfig.json +++ b/samples/charts/category-chart/custom-selection/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/data-aggregations/.codesandbox/Dockerfile b/samples/charts/category-chart/data-aggregations/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/data-aggregations/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/data-aggregations/.codesandbox/tasks.json b/samples/charts/category-chart/data-aggregations/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/data-aggregations/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/data-aggregations/.stackblitzrc b/samples/charts/category-chart/data-aggregations/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/data-aggregations/.stackblitzrc +++ b/samples/charts/category-chart/data-aggregations/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/data-aggregations/angular.json b/samples/charts/category-chart/data-aggregations/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/data-aggregations/angular.json +++ b/samples/charts/category-chart/data-aggregations/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/data-aggregations/sandbox.config.json b/samples/charts/category-chart/data-aggregations/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/data-aggregations/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/data-aggregations/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/data-aggregations/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/data-aggregations/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/data-aggregations/src/config/tsconfig.app.json b/samples/charts/category-chart/data-aggregations/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/data-aggregations/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/data-aggregations/src/config/tsconfig.base.json b/samples/charts/category-chart/data-aggregations/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/data-aggregations/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/data-aggregations/src/config/tsconfig.spec.json b/samples/charts/category-chart/data-aggregations/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/data-aggregations/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/data-aggregations/src/config/tsconfig.worker.json b/samples/charts/category-chart/data-aggregations/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/data-aggregations/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/data-aggregations/tsconfig.app.json b/samples/charts/category-chart/data-aggregations/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/data-aggregations/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/data-aggregations/tsconfig.json b/samples/charts/category-chart/data-aggregations/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/data-aggregations/tsconfig.json +++ b/samples/charts/category-chart/data-aggregations/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/data-filter/.codesandbox/Dockerfile b/samples/charts/category-chart/data-filter/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/data-filter/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/data-filter/.codesandbox/tasks.json b/samples/charts/category-chart/data-filter/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/data-filter/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/data-filter/.stackblitzrc b/samples/charts/category-chart/data-filter/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/data-filter/.stackblitzrc +++ b/samples/charts/category-chart/data-filter/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/data-filter/angular.json b/samples/charts/category-chart/data-filter/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/data-filter/angular.json +++ b/samples/charts/category-chart/data-filter/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/data-filter/sandbox.config.json b/samples/charts/category-chart/data-filter/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/data-filter/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/data-filter/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/data-filter/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/data-filter/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/data-filter/src/config/tsconfig.app.json b/samples/charts/category-chart/data-filter/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/data-filter/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/data-filter/src/config/tsconfig.base.json b/samples/charts/category-chart/data-filter/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/data-filter/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/data-filter/src/config/tsconfig.spec.json b/samples/charts/category-chart/data-filter/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/data-filter/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/data-filter/src/config/tsconfig.worker.json b/samples/charts/category-chart/data-filter/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/data-filter/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/data-filter/tsconfig.app.json b/samples/charts/category-chart/data-filter/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/data-filter/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/data-filter/tsconfig.json b/samples/charts/category-chart/data-filter/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/data-filter/tsconfig.json +++ b/samples/charts/category-chart/data-filter/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/.codesandbox/Dockerfile b/samples/charts/category-chart/data-legend-formatting-decimals/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/data-legend-formatting-decimals/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/.codesandbox/tasks.json b/samples/charts/category-chart/data-legend-formatting-decimals/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/data-legend-formatting-decimals/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/.stackblitzrc b/samples/charts/category-chart/data-legend-formatting-decimals/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/.stackblitzrc +++ b/samples/charts/category-chart/data-legend-formatting-decimals/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/angular.json b/samples/charts/category-chart/data-legend-formatting-decimals/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/angular.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/sandbox.config.json b/samples/charts/category-chart/data-legend-formatting-decimals/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/data-legend-formatting-decimals/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.app.json b/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.base.json b/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.spec.json b/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.worker.json b/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.app.json b/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json b/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/data-legend/.codesandbox/Dockerfile b/samples/charts/category-chart/data-legend/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/data-legend/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/data-legend/.codesandbox/tasks.json b/samples/charts/category-chart/data-legend/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/data-legend/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/data-legend/.stackblitzrc b/samples/charts/category-chart/data-legend/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/data-legend/.stackblitzrc +++ b/samples/charts/category-chart/data-legend/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/data-legend/angular.json b/samples/charts/category-chart/data-legend/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/data-legend/angular.json +++ b/samples/charts/category-chart/data-legend/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/data-legend/sandbox.config.json b/samples/charts/category-chart/data-legend/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/data-legend/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/data-legend/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/data-legend/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/data-legend/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/data-legend/src/config/tsconfig.app.json b/samples/charts/category-chart/data-legend/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/data-legend/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/data-legend/src/config/tsconfig.base.json b/samples/charts/category-chart/data-legend/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/data-legend/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/data-legend/src/config/tsconfig.spec.json b/samples/charts/category-chart/data-legend/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/data-legend/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/data-legend/src/config/tsconfig.worker.json b/samples/charts/category-chart/data-legend/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/data-legend/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/data-legend/tsconfig.app.json b/samples/charts/category-chart/data-legend/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/data-legend/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/data-legend/tsconfig.json b/samples/charts/category-chart/data-legend/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/data-legend/tsconfig.json +++ b/samples/charts/category-chart/data-legend/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/.codesandbox/Dockerfile b/samples/charts/category-chart/data-tooltip-formatting-decimals/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/.codesandbox/tasks.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/.stackblitzrc b/samples/charts/category-chart/data-tooltip-formatting-decimals/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/.stackblitzrc +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/angular.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/angular.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/sandbox.config.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.app.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.base.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.spec.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.worker.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.app.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip-positioning/.codesandbox/Dockerfile b/samples/charts/category-chart/data-tooltip-positioning/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/data-tooltip-positioning/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip-positioning/.codesandbox/tasks.json b/samples/charts/category-chart/data-tooltip-positioning/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/data-tooltip-positioning/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip-positioning/.stackblitzrc b/samples/charts/category-chart/data-tooltip-positioning/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/.stackblitzrc +++ b/samples/charts/category-chart/data-tooltip-positioning/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip-positioning/angular.json b/samples/charts/category-chart/data-tooltip-positioning/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/angular.json +++ b/samples/charts/category-chart/data-tooltip-positioning/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/sandbox.config.json b/samples/charts/category-chart/data-tooltip-positioning/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/data-tooltip-positioning/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.app.json b/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.base.json b/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.spec.json b/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.worker.json b/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/data-tooltip-positioning/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/data-tooltip-positioning/tsconfig.app.json b/samples/charts/category-chart/data-tooltip-positioning/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/data-tooltip-positioning/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json b/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json +++ b/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip/.codesandbox/Dockerfile b/samples/charts/category-chart/data-tooltip/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/data-tooltip/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip/.codesandbox/tasks.json b/samples/charts/category-chart/data-tooltip/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/data-tooltip/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip/.stackblitzrc b/samples/charts/category-chart/data-tooltip/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/data-tooltip/.stackblitzrc +++ b/samples/charts/category-chart/data-tooltip/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip/angular.json b/samples/charts/category-chart/data-tooltip/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/data-tooltip/angular.json +++ b/samples/charts/category-chart/data-tooltip/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/data-tooltip/sandbox.config.json b/samples/charts/category-chart/data-tooltip/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/data-tooltip/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/data-tooltip/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/data-tooltip/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/data-tooltip/src/config/tsconfig.app.json b/samples/charts/category-chart/data-tooltip/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/data-tooltip/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/data-tooltip/src/config/tsconfig.base.json b/samples/charts/category-chart/data-tooltip/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/data-tooltip/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/data-tooltip/src/config/tsconfig.spec.json b/samples/charts/category-chart/data-tooltip/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/data-tooltip/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/data-tooltip/src/config/tsconfig.worker.json b/samples/charts/category-chart/data-tooltip/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/data-tooltip/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/data-tooltip/tsconfig.app.json b/samples/charts/category-chart/data-tooltip/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/data-tooltip/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/data-tooltip/tsconfig.json b/samples/charts/category-chart/data-tooltip/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/data-tooltip/tsconfig.json +++ b/samples/charts/category-chart/data-tooltip/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/format-specifiers/.codesandbox/Dockerfile b/samples/charts/category-chart/format-specifiers/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/format-specifiers/.codesandbox/tasks.json b/samples/charts/category-chart/format-specifiers/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/format-specifiers/.stackblitzrc b/samples/charts/category-chart/format-specifiers/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/format-specifiers/.stackblitzrc +++ b/samples/charts/category-chart/format-specifiers/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/format-specifiers/angular.json b/samples/charts/category-chart/format-specifiers/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/format-specifiers/angular.json +++ b/samples/charts/category-chart/format-specifiers/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 35b77cb25..b18743c2c 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/format-specifiers/sandbox.config.json b/samples/charts/category-chart/format-specifiers/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/format-specifiers/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/format-specifiers/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/format-specifiers/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/format-specifiers/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/format-specifiers/src/config/tsconfig.app.json b/samples/charts/category-chart/format-specifiers/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/format-specifiers/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/format-specifiers/src/config/tsconfig.base.json b/samples/charts/category-chart/format-specifiers/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/format-specifiers/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/format-specifiers/src/config/tsconfig.spec.json b/samples/charts/category-chart/format-specifiers/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/format-specifiers/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/format-specifiers/src/config/tsconfig.worker.json b/samples/charts/category-chart/format-specifiers/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/format-specifiers/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/format-specifiers/tsconfig.app.json b/samples/charts/category-chart/format-specifiers/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/format-specifiers/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/format-specifiers/tsconfig.json b/samples/charts/category-chart/format-specifiers/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/format-specifiers/tsconfig.json +++ b/samples/charts/category-chart/format-specifiers/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/high-frequency/.codesandbox/Dockerfile b/samples/charts/category-chart/high-frequency/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/high-frequency/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/high-frequency/.codesandbox/tasks.json b/samples/charts/category-chart/high-frequency/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/high-frequency/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/high-frequency/.stackblitzrc b/samples/charts/category-chart/high-frequency/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/high-frequency/.stackblitzrc +++ b/samples/charts/category-chart/high-frequency/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/high-frequency/angular.json b/samples/charts/category-chart/high-frequency/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/high-frequency/angular.json +++ b/samples/charts/category-chart/high-frequency/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index d46b4d159..455da6795 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/high-frequency/sandbox.config.json b/samples/charts/category-chart/high-frequency/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/category-chart/high-frequency/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/high-frequency/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/high-frequency/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/high-frequency/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/high-frequency/src/config/tsconfig.app.json b/samples/charts/category-chart/high-frequency/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/high-frequency/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/high-frequency/src/config/tsconfig.base.json b/samples/charts/category-chart/high-frequency/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/high-frequency/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/high-frequency/src/config/tsconfig.spec.json b/samples/charts/category-chart/high-frequency/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/high-frequency/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/high-frequency/src/config/tsconfig.worker.json b/samples/charts/category-chart/high-frequency/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/high-frequency/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/high-frequency/tsconfig.app.json b/samples/charts/category-chart/high-frequency/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/high-frequency/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/high-frequency/tsconfig.json b/samples/charts/category-chart/high-frequency/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/high-frequency/tsconfig.json +++ b/samples/charts/category-chart/high-frequency/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/high-volume/.codesandbox/Dockerfile b/samples/charts/category-chart/high-volume/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/high-volume/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/high-volume/.codesandbox/tasks.json b/samples/charts/category-chart/high-volume/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/high-volume/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/high-volume/.stackblitzrc b/samples/charts/category-chart/high-volume/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/high-volume/.stackblitzrc +++ b/samples/charts/category-chart/high-volume/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/high-volume/angular.json b/samples/charts/category-chart/high-volume/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/high-volume/angular.json +++ b/samples/charts/category-chart/high-volume/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index d46b4d159..455da6795 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/high-volume/sandbox.config.json b/samples/charts/category-chart/high-volume/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/category-chart/high-volume/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/high-volume/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/high-volume/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/high-volume/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/high-volume/src/config/tsconfig.app.json b/samples/charts/category-chart/high-volume/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/high-volume/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/high-volume/src/config/tsconfig.base.json b/samples/charts/category-chart/high-volume/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/high-volume/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/high-volume/src/config/tsconfig.spec.json b/samples/charts/category-chart/high-volume/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/high-volume/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/high-volume/src/config/tsconfig.worker.json b/samples/charts/category-chart/high-volume/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/high-volume/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/high-volume/tsconfig.app.json b/samples/charts/category-chart/high-volume/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/high-volume/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/high-volume/tsconfig.json b/samples/charts/category-chart/high-volume/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/high-volume/tsconfig.json +++ b/samples/charts/category-chart/high-volume/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-behavior/.codesandbox/Dockerfile b/samples/charts/category-chart/highlighting-behavior/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-behavior/.codesandbox/tasks.json b/samples/charts/category-chart/highlighting-behavior/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-behavior/.stackblitzrc b/samples/charts/category-chart/highlighting-behavior/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/highlighting-behavior/.stackblitzrc +++ b/samples/charts/category-chart/highlighting-behavior/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-behavior/angular.json b/samples/charts/category-chart/highlighting-behavior/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/highlighting-behavior/angular.json +++ b/samples/charts/category-chart/highlighting-behavior/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/highlighting-behavior/sandbox.config.json b/samples/charts/category-chart/highlighting-behavior/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/highlighting-behavior/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.app.json b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.base.json b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.spec.json b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.worker.json b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/highlighting-behavior/tsconfig.app.json b/samples/charts/category-chart/highlighting-behavior/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/highlighting-behavior/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/highlighting-behavior/tsconfig.json b/samples/charts/category-chart/highlighting-behavior/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/highlighting-behavior/tsconfig.json +++ b/samples/charts/category-chart/highlighting-behavior/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-mode/.codesandbox/Dockerfile b/samples/charts/category-chart/highlighting-mode/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-mode/.codesandbox/tasks.json b/samples/charts/category-chart/highlighting-mode/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-mode/.stackblitzrc b/samples/charts/category-chart/highlighting-mode/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/highlighting-mode/.stackblitzrc +++ b/samples/charts/category-chart/highlighting-mode/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-mode/angular.json b/samples/charts/category-chart/highlighting-mode/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/highlighting-mode/angular.json +++ b/samples/charts/category-chart/highlighting-mode/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/highlighting-mode/sandbox.config.json b/samples/charts/category-chart/highlighting-mode/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/highlighting-mode/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.app.json b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.base.json b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.spec.json b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.worker.json b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/highlighting-mode/tsconfig.app.json b/samples/charts/category-chart/highlighting-mode/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/highlighting-mode/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/highlighting-mode/tsconfig.json b/samples/charts/category-chart/highlighting-mode/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/highlighting-mode/tsconfig.json +++ b/samples/charts/category-chart/highlighting-mode/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting/.codesandbox/Dockerfile b/samples/charts/category-chart/highlighting/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/highlighting/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting/.codesandbox/tasks.json b/samples/charts/category-chart/highlighting/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/highlighting/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting/.stackblitzrc b/samples/charts/category-chart/highlighting/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/highlighting/.stackblitzrc +++ b/samples/charts/category-chart/highlighting/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting/angular.json b/samples/charts/category-chart/highlighting/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/highlighting/angular.json +++ b/samples/charts/category-chart/highlighting/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/highlighting/sandbox.config.json b/samples/charts/category-chart/highlighting/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/category-chart/highlighting/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/highlighting/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/highlighting/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/highlighting/src/config/tsconfig.app.json b/samples/charts/category-chart/highlighting/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/highlighting/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/highlighting/src/config/tsconfig.base.json b/samples/charts/category-chart/highlighting/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/highlighting/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/highlighting/src/config/tsconfig.spec.json b/samples/charts/category-chart/highlighting/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/highlighting/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/highlighting/src/config/tsconfig.worker.json b/samples/charts/category-chart/highlighting/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/highlighting/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/highlighting/tsconfig.app.json b/samples/charts/category-chart/highlighting/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/highlighting/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/highlighting/tsconfig.json b/samples/charts/category-chart/highlighting/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/highlighting/tsconfig.json +++ b/samples/charts/category-chart/highlighting/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/legend-highlighting/.codesandbox/Dockerfile b/samples/charts/category-chart/legend-highlighting/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/legend-highlighting/.codesandbox/tasks.json b/samples/charts/category-chart/legend-highlighting/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/legend-highlighting/.stackblitzrc b/samples/charts/category-chart/legend-highlighting/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/legend-highlighting/.stackblitzrc +++ b/samples/charts/category-chart/legend-highlighting/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/legend-highlighting/angular.json b/samples/charts/category-chart/legend-highlighting/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/legend-highlighting/angular.json +++ b/samples/charts/category-chart/legend-highlighting/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/legend-highlighting/sandbox.config.json b/samples/charts/category-chart/legend-highlighting/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/legend-highlighting/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.app.json b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.base.json b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.spec.json b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.worker.json b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/legend-highlighting/tsconfig.app.json b/samples/charts/category-chart/legend-highlighting/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/legend-highlighting/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/legend-highlighting/tsconfig.json b/samples/charts/category-chart/legend-highlighting/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/legend-highlighting/tsconfig.json +++ b/samples/charts/category-chart/legend-highlighting/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-multiple-sources/.codesandbox/Dockerfile b/samples/charts/category-chart/line-chart-multiple-sources/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/line-chart-multiple-sources/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-multiple-sources/.codesandbox/tasks.json b/samples/charts/category-chart/line-chart-multiple-sources/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/line-chart-multiple-sources/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-multiple-sources/.stackblitzrc b/samples/charts/category-chart/line-chart-multiple-sources/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/.stackblitzrc +++ b/samples/charts/category-chart/line-chart-multiple-sources/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-multiple-sources/angular.json b/samples/charts/category-chart/line-chart-multiple-sources/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/angular.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/sandbox.config.json b/samples/charts/category-chart/line-chart-multiple-sources/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/line-chart-multiple-sources/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.app.json b/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.base.json b/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.spec.json b/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.app.json b/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json b/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-single-source/.codesandbox/Dockerfile b/samples/charts/category-chart/line-chart-single-source/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/line-chart-single-source/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-single-source/.codesandbox/tasks.json b/samples/charts/category-chart/line-chart-single-source/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/line-chart-single-source/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-single-source/.stackblitzrc b/samples/charts/category-chart/line-chart-single-source/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/line-chart-single-source/.stackblitzrc +++ b/samples/charts/category-chart/line-chart-single-source/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-single-source/angular.json b/samples/charts/category-chart/line-chart-single-source/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/line-chart-single-source/angular.json +++ b/samples/charts/category-chart/line-chart-single-source/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/line-chart-single-source/sandbox.config.json b/samples/charts/category-chart/line-chart-single-source/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/line-chart-single-source/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.app.json b/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.base.json b/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.spec.json b/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.worker.json b/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/line-chart-single-source/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-single-source/tsconfig.app.json b/samples/charts/category-chart/line-chart-single-source/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/line-chart-single-source/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/line-chart-single-source/tsconfig.json b/samples/charts/category-chart/line-chart-single-source/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/line-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/line-chart-single-source/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-styling/.codesandbox/Dockerfile b/samples/charts/category-chart/line-chart-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/line-chart-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-styling/.codesandbox/tasks.json b/samples/charts/category-chart/line-chart-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/line-chart-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-styling/.stackblitzrc b/samples/charts/category-chart/line-chart-styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/line-chart-styling/.stackblitzrc +++ b/samples/charts/category-chart/line-chart-styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-styling/angular.json b/samples/charts/category-chart/line-chart-styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/line-chart-styling/angular.json +++ b/samples/charts/category-chart/line-chart-styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/line-chart-styling/sandbox.config.json b/samples/charts/category-chart/line-chart-styling/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/line-chart-styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-styling/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/line-chart-styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/line-chart-styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.app.json b/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.base.json b/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.spec.json b/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.worker.json b/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/line-chart-styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-styling/tsconfig.app.json b/samples/charts/category-chart/line-chart-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/line-chart-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/line-chart-styling/tsconfig.json b/samples/charts/category-chart/line-chart-styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/line-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/line-chart-styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-with-animations/.codesandbox/Dockerfile b/samples/charts/category-chart/line-chart-with-animations/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/line-chart-with-animations/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-with-animations/.codesandbox/tasks.json b/samples/charts/category-chart/line-chart-with-animations/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/line-chart-with-animations/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-with-animations/.stackblitzrc b/samples/charts/category-chart/line-chart-with-animations/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/line-chart-with-animations/.stackblitzrc +++ b/samples/charts/category-chart/line-chart-with-animations/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-with-animations/angular.json b/samples/charts/category-chart/line-chart-with-animations/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/line-chart-with-animations/angular.json +++ b/samples/charts/category-chart/line-chart-with-animations/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/line-chart-with-animations/sandbox.config.json b/samples/charts/category-chart/line-chart-with-animations/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/category-chart/line-chart-with-animations/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.app.json b/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.base.json b/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.spec.json b/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.worker.json b/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/line-chart-with-animations/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-with-animations/tsconfig.app.json b/samples/charts/category-chart/line-chart-with-animations/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/line-chart-with-animations/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/line-chart-with-animations/tsconfig.json b/samples/charts/category-chart/line-chart-with-animations/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/line-chart-with-animations/tsconfig.json +++ b/samples/charts/category-chart/line-chart-with-animations/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-with-annotations/.codesandbox/Dockerfile b/samples/charts/category-chart/line-chart-with-annotations/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/line-chart-with-annotations/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-with-annotations/.codesandbox/tasks.json b/samples/charts/category-chart/line-chart-with-annotations/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/line-chart-with-annotations/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-with-annotations/.stackblitzrc b/samples/charts/category-chart/line-chart-with-annotations/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/.stackblitzrc +++ b/samples/charts/category-chart/line-chart-with-annotations/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-with-annotations/angular.json b/samples/charts/category-chart/line-chart-with-annotations/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/angular.json +++ b/samples/charts/category-chart/line-chart-with-annotations/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/line-chart-with-annotations/sandbox.config.json b/samples/charts/category-chart/line-chart-with-annotations/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/category-chart/line-chart-with-annotations/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.app.json b/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.base.json b/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.spec.json b/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.worker.json b/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/line-chart-with-annotations/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-with-annotations/tsconfig.app.json b/samples/charts/category-chart/line-chart-with-annotations/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/line-chart-with-annotations/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/line-chart-with-annotations/tsconfig.json b/samples/charts/category-chart/line-chart-with-annotations/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/tsconfig.json +++ b/samples/charts/category-chart/line-chart-with-annotations/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-with-legend/.codesandbox/Dockerfile b/samples/charts/category-chart/line-chart-with-legend/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/line-chart-with-legend/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-with-legend/.codesandbox/tasks.json b/samples/charts/category-chart/line-chart-with-legend/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/line-chart-with-legend/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-with-legend/.stackblitzrc b/samples/charts/category-chart/line-chart-with-legend/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/line-chart-with-legend/.stackblitzrc +++ b/samples/charts/category-chart/line-chart-with-legend/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-with-legend/angular.json b/samples/charts/category-chart/line-chart-with-legend/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/line-chart-with-legend/angular.json +++ b/samples/charts/category-chart/line-chart-with-legend/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/line-chart-with-legend/sandbox.config.json b/samples/charts/category-chart/line-chart-with-legend/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/category-chart/line-chart-with-legend/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.app.json b/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.base.json b/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.spec.json b/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.worker.json b/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/line-chart-with-legend/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/line-chart-with-legend/tsconfig.app.json b/samples/charts/category-chart/line-chart-with-legend/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/line-chart-with-legend/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/line-chart-with-legend/tsconfig.json b/samples/charts/category-chart/line-chart-with-legend/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/line-chart-with-legend/tsconfig.json +++ b/samples/charts/category-chart/line-chart-with-legend/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/marker-options/.codesandbox/Dockerfile b/samples/charts/category-chart/marker-options/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/marker-options/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/marker-options/.codesandbox/tasks.json b/samples/charts/category-chart/marker-options/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/marker-options/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/marker-options/.stackblitzrc b/samples/charts/category-chart/marker-options/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/marker-options/.stackblitzrc +++ b/samples/charts/category-chart/marker-options/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/marker-options/angular.json b/samples/charts/category-chart/marker-options/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/marker-options/angular.json +++ b/samples/charts/category-chart/marker-options/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/marker-options/sandbox.config.json b/samples/charts/category-chart/marker-options/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/marker-options/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/marker-options/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/marker-options/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/marker-options/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/marker-options/src/config/tsconfig.app.json b/samples/charts/category-chart/marker-options/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/marker-options/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/marker-options/src/config/tsconfig.base.json b/samples/charts/category-chart/marker-options/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/marker-options/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/marker-options/src/config/tsconfig.spec.json b/samples/charts/category-chart/marker-options/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/marker-options/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/marker-options/src/config/tsconfig.worker.json b/samples/charts/category-chart/marker-options/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/marker-options/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/marker-options/tsconfig.app.json b/samples/charts/category-chart/marker-options/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/marker-options/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/marker-options/tsconfig.json b/samples/charts/category-chart/marker-options/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/marker-options/tsconfig.json +++ b/samples/charts/category-chart/marker-options/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/marker-templates/.codesandbox/Dockerfile b/samples/charts/category-chart/marker-templates/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/marker-templates/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/marker-templates/.codesandbox/tasks.json b/samples/charts/category-chart/marker-templates/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/marker-templates/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/marker-templates/.stackblitzrc b/samples/charts/category-chart/marker-templates/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/marker-templates/.stackblitzrc +++ b/samples/charts/category-chart/marker-templates/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/marker-templates/angular.json b/samples/charts/category-chart/marker-templates/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/marker-templates/angular.json +++ b/samples/charts/category-chart/marker-templates/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/marker-templates/sandbox.config.json b/samples/charts/category-chart/marker-templates/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/category-chart/marker-templates/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/marker-templates/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/marker-templates/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/marker-templates/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/marker-templates/src/config/tsconfig.app.json b/samples/charts/category-chart/marker-templates/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/marker-templates/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/marker-templates/src/config/tsconfig.base.json b/samples/charts/category-chart/marker-templates/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/marker-templates/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/marker-templates/src/config/tsconfig.spec.json b/samples/charts/category-chart/marker-templates/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/marker-templates/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/marker-templates/src/config/tsconfig.worker.json b/samples/charts/category-chart/marker-templates/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/marker-templates/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/marker-templates/tsconfig.app.json b/samples/charts/category-chart/marker-templates/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/marker-templates/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/marker-templates/tsconfig.json b/samples/charts/category-chart/marker-templates/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/marker-templates/tsconfig.json +++ b/samples/charts/category-chart/marker-templates/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/overview/.codesandbox/Dockerfile b/samples/charts/category-chart/overview/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/overview/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/overview/.codesandbox/tasks.json b/samples/charts/category-chart/overview/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/overview/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/overview/.stackblitzrc b/samples/charts/category-chart/overview/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/overview/.stackblitzrc +++ b/samples/charts/category-chart/overview/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/overview/angular.json b/samples/charts/category-chart/overview/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/overview/angular.json +++ b/samples/charts/category-chart/overview/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/overview/sandbox.config.json b/samples/charts/category-chart/overview/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/overview/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/overview/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/overview/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/overview/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/overview/src/config/tsconfig.app.json b/samples/charts/category-chart/overview/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/overview/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/overview/src/config/tsconfig.base.json b/samples/charts/category-chart/overview/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/overview/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/overview/src/config/tsconfig.spec.json b/samples/charts/category-chart/overview/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/overview/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/overview/src/config/tsconfig.worker.json b/samples/charts/category-chart/overview/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/overview/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/overview/tsconfig.app.json b/samples/charts/category-chart/overview/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/overview/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/overview/tsconfig.json b/samples/charts/category-chart/overview/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/overview/tsconfig.json +++ b/samples/charts/category-chart/overview/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-multiple-sources/.codesandbox/Dockerfile b/samples/charts/category-chart/point-chart-multiple-sources/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/point-chart-multiple-sources/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-multiple-sources/.codesandbox/tasks.json b/samples/charts/category-chart/point-chart-multiple-sources/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/point-chart-multiple-sources/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-multiple-sources/.stackblitzrc b/samples/charts/category-chart/point-chart-multiple-sources/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/.stackblitzrc +++ b/samples/charts/category-chart/point-chart-multiple-sources/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-multiple-sources/angular.json b/samples/charts/category-chart/point-chart-multiple-sources/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/angular.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/sandbox.config.json b/samples/charts/category-chart/point-chart-multiple-sources/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/point-chart-multiple-sources/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.app.json b/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.base.json b/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.spec.json b/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/point-chart-multiple-sources/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.app.json b/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json b/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-single-source/.codesandbox/Dockerfile b/samples/charts/category-chart/point-chart-single-source/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/point-chart-single-source/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-single-source/.codesandbox/tasks.json b/samples/charts/category-chart/point-chart-single-source/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/point-chart-single-source/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-single-source/.stackblitzrc b/samples/charts/category-chart/point-chart-single-source/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/point-chart-single-source/.stackblitzrc +++ b/samples/charts/category-chart/point-chart-single-source/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-single-source/angular.json b/samples/charts/category-chart/point-chart-single-source/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/point-chart-single-source/angular.json +++ b/samples/charts/category-chart/point-chart-single-source/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/point-chart-single-source/sandbox.config.json b/samples/charts/category-chart/point-chart-single-source/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/point-chart-single-source/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.app.json b/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.base.json b/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.spec.json b/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.worker.json b/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/point-chart-single-source/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/point-chart-single-source/tsconfig.app.json b/samples/charts/category-chart/point-chart-single-source/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/point-chart-single-source/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/point-chart-single-source/tsconfig.json b/samples/charts/category-chart/point-chart-single-source/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/point-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/point-chart-single-source/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-styling/.codesandbox/Dockerfile b/samples/charts/category-chart/point-chart-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/point-chart-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-styling/.codesandbox/tasks.json b/samples/charts/category-chart/point-chart-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/point-chart-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-styling/.stackblitzrc b/samples/charts/category-chart/point-chart-styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/point-chart-styling/.stackblitzrc +++ b/samples/charts/category-chart/point-chart-styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-styling/angular.json b/samples/charts/category-chart/point-chart-styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/point-chart-styling/angular.json +++ b/samples/charts/category-chart/point-chart-styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/point-chart-styling/sandbox.config.json b/samples/charts/category-chart/point-chart-styling/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/point-chart-styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-styling/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/point-chart-styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/point-chart-styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.app.json b/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.base.json b/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.spec.json b/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.worker.json b/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/point-chart-styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/point-chart-styling/tsconfig.app.json b/samples/charts/category-chart/point-chart-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/point-chart-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/point-chart-styling/tsconfig.json b/samples/charts/category-chart/point-chart-styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/point-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/point-chart-styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-multiple-sources/.codesandbox/Dockerfile b/samples/charts/category-chart/spline-area-multiple-sources/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/spline-area-multiple-sources/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-multiple-sources/.codesandbox/tasks.json b/samples/charts/category-chart/spline-area-multiple-sources/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/spline-area-multiple-sources/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-multiple-sources/.stackblitzrc b/samples/charts/category-chart/spline-area-multiple-sources/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/.stackblitzrc +++ b/samples/charts/category-chart/spline-area-multiple-sources/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-multiple-sources/angular.json b/samples/charts/category-chart/spline-area-multiple-sources/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/angular.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/sandbox.config.json b/samples/charts/category-chart/spline-area-multiple-sources/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/spline-area-multiple-sources/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.app.json b/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.base.json b/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.spec.json b/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.app.json b/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json b/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-single-source/.codesandbox/Dockerfile b/samples/charts/category-chart/spline-area-single-source/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/spline-area-single-source/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-single-source/.codesandbox/tasks.json b/samples/charts/category-chart/spline-area-single-source/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/spline-area-single-source/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-single-source/.stackblitzrc b/samples/charts/category-chart/spline-area-single-source/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/spline-area-single-source/.stackblitzrc +++ b/samples/charts/category-chart/spline-area-single-source/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-single-source/angular.json b/samples/charts/category-chart/spline-area-single-source/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/spline-area-single-source/angular.json +++ b/samples/charts/category-chart/spline-area-single-source/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/spline-area-single-source/sandbox.config.json b/samples/charts/category-chart/spline-area-single-source/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/spline-area-single-source/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.app.json b/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.base.json b/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.spec.json b/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.worker.json b/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/spline-area-single-source/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/spline-area-single-source/tsconfig.app.json b/samples/charts/category-chart/spline-area-single-source/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/spline-area-single-source/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/spline-area-single-source/tsconfig.json b/samples/charts/category-chart/spline-area-single-source/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/spline-area-single-source/tsconfig.json +++ b/samples/charts/category-chart/spline-area-single-source/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-styling/.codesandbox/Dockerfile b/samples/charts/category-chart/spline-area-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/spline-area-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-styling/.codesandbox/tasks.json b/samples/charts/category-chart/spline-area-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/spline-area-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-styling/.stackblitzrc b/samples/charts/category-chart/spline-area-styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/spline-area-styling/.stackblitzrc +++ b/samples/charts/category-chart/spline-area-styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-styling/angular.json b/samples/charts/category-chart/spline-area-styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/spline-area-styling/angular.json +++ b/samples/charts/category-chart/spline-area-styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/spline-area-styling/sandbox.config.json b/samples/charts/category-chart/spline-area-styling/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/spline-area-styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-styling/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/spline-area-styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/spline-area-styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.app.json b/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.base.json b/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.spec.json b/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.worker.json b/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/spline-area-styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/spline-area-styling/tsconfig.app.json b/samples/charts/category-chart/spline-area-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/spline-area-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/spline-area-styling/tsconfig.json b/samples/charts/category-chart/spline-area-styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/spline-area-styling/tsconfig.json +++ b/samples/charts/category-chart/spline-area-styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/spline-multiple-sources/.codesandbox/Dockerfile b/samples/charts/category-chart/spline-multiple-sources/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/spline-multiple-sources/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/spline-multiple-sources/.codesandbox/tasks.json b/samples/charts/category-chart/spline-multiple-sources/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/spline-multiple-sources/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-multiple-sources/.stackblitzrc b/samples/charts/category-chart/spline-multiple-sources/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/spline-multiple-sources/.stackblitzrc +++ b/samples/charts/category-chart/spline-multiple-sources/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-multiple-sources/angular.json b/samples/charts/category-chart/spline-multiple-sources/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/spline-multiple-sources/angular.json +++ b/samples/charts/category-chart/spline-multiple-sources/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/spline-multiple-sources/sandbox.config.json b/samples/charts/category-chart/spline-multiple-sources/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/spline-multiple-sources/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.app.json b/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.base.json b/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.spec.json b/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/spline-multiple-sources/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/spline-multiple-sources/tsconfig.app.json b/samples/charts/category-chart/spline-multiple-sources/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/spline-multiple-sources/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/spline-multiple-sources/tsconfig.json b/samples/charts/category-chart/spline-multiple-sources/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/spline-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/spline-multiple-sources/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/spline-single-source/.codesandbox/Dockerfile b/samples/charts/category-chart/spline-single-source/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/spline-single-source/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/spline-single-source/.codesandbox/tasks.json b/samples/charts/category-chart/spline-single-source/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/spline-single-source/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-single-source/.stackblitzrc b/samples/charts/category-chart/spline-single-source/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/spline-single-source/.stackblitzrc +++ b/samples/charts/category-chart/spline-single-source/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-single-source/angular.json b/samples/charts/category-chart/spline-single-source/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/spline-single-source/angular.json +++ b/samples/charts/category-chart/spline-single-source/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/spline-single-source/sandbox.config.json b/samples/charts/category-chart/spline-single-source/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/spline-single-source/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-single-source/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/spline-single-source/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/spline-single-source/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/spline-single-source/src/config/tsconfig.app.json b/samples/charts/category-chart/spline-single-source/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/spline-single-source/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/spline-single-source/src/config/tsconfig.base.json b/samples/charts/category-chart/spline-single-source/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/spline-single-source/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/spline-single-source/src/config/tsconfig.spec.json b/samples/charts/category-chart/spline-single-source/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/spline-single-source/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/spline-single-source/src/config/tsconfig.worker.json b/samples/charts/category-chart/spline-single-source/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/spline-single-source/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/spline-single-source/tsconfig.app.json b/samples/charts/category-chart/spline-single-source/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/spline-single-source/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/spline-single-source/tsconfig.json b/samples/charts/category-chart/spline-single-source/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/spline-single-source/tsconfig.json +++ b/samples/charts/category-chart/spline-single-source/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/spline-styling/.codesandbox/Dockerfile b/samples/charts/category-chart/spline-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/spline-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/spline-styling/.codesandbox/tasks.json b/samples/charts/category-chart/spline-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/spline-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-styling/.stackblitzrc b/samples/charts/category-chart/spline-styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/spline-styling/.stackblitzrc +++ b/samples/charts/category-chart/spline-styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-styling/angular.json b/samples/charts/category-chart/spline-styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/spline-styling/angular.json +++ b/samples/charts/category-chart/spline-styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/spline-styling/sandbox.config.json b/samples/charts/category-chart/spline-styling/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/spline-styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-styling/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/spline-styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/spline-styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/spline-styling/src/config/tsconfig.app.json b/samples/charts/category-chart/spline-styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/spline-styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/spline-styling/src/config/tsconfig.base.json b/samples/charts/category-chart/spline-styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/spline-styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/spline-styling/src/config/tsconfig.spec.json b/samples/charts/category-chart/spline-styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/spline-styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/spline-styling/src/config/tsconfig.worker.json b/samples/charts/category-chart/spline-styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/spline-styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/spline-styling/tsconfig.app.json b/samples/charts/category-chart/spline-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/spline-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/spline-styling/tsconfig.json b/samples/charts/category-chart/spline-styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/spline-styling/tsconfig.json +++ b/samples/charts/category-chart/spline-styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/stack-columns/.codesandbox/Dockerfile b/samples/charts/category-chart/stack-columns/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/stack-columns/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/stack-columns/.codesandbox/tasks.json b/samples/charts/category-chart/stack-columns/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/stack-columns/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/stack-columns/.stackblitzrc b/samples/charts/category-chart/stack-columns/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/stack-columns/.stackblitzrc +++ b/samples/charts/category-chart/stack-columns/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/stack-columns/angular.json b/samples/charts/category-chart/stack-columns/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/stack-columns/angular.json +++ b/samples/charts/category-chart/stack-columns/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/stack-columns/sandbox.config.json b/samples/charts/category-chart/stack-columns/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/category-chart/stack-columns/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/stack-columns/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/stack-columns/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/stack-columns/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/stack-columns/src/config/tsconfig.app.json b/samples/charts/category-chart/stack-columns/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/stack-columns/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/stack-columns/src/config/tsconfig.base.json b/samples/charts/category-chart/stack-columns/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/stack-columns/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/stack-columns/src/config/tsconfig.spec.json b/samples/charts/category-chart/stack-columns/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/stack-columns/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/stack-columns/src/config/tsconfig.worker.json b/samples/charts/category-chart/stack-columns/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/stack-columns/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/stack-columns/tsconfig.app.json b/samples/charts/category-chart/stack-columns/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/stack-columns/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/stack-columns/tsconfig.json b/samples/charts/category-chart/stack-columns/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/stack-columns/tsconfig.json +++ b/samples/charts/category-chart/stack-columns/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-multiple-sources/.codesandbox/Dockerfile b/samples/charts/category-chart/step-area-multiple-sources/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/step-area-multiple-sources/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-multiple-sources/.codesandbox/tasks.json b/samples/charts/category-chart/step-area-multiple-sources/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/step-area-multiple-sources/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-multiple-sources/.stackblitzrc b/samples/charts/category-chart/step-area-multiple-sources/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/.stackblitzrc +++ b/samples/charts/category-chart/step-area-multiple-sources/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-multiple-sources/angular.json b/samples/charts/category-chart/step-area-multiple-sources/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/angular.json +++ b/samples/charts/category-chart/step-area-multiple-sources/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/step-area-multiple-sources/sandbox.config.json b/samples/charts/category-chart/step-area-multiple-sources/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/step-area-multiple-sources/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.app.json b/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.base.json b/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.spec.json b/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/step-area-multiple-sources/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/step-area-multiple-sources/tsconfig.app.json b/samples/charts/category-chart/step-area-multiple-sources/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/step-area-multiple-sources/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json b/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-single-source/.codesandbox/Dockerfile b/samples/charts/category-chart/step-area-single-source/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/step-area-single-source/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-single-source/.codesandbox/tasks.json b/samples/charts/category-chart/step-area-single-source/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/step-area-single-source/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-single-source/.stackblitzrc b/samples/charts/category-chart/step-area-single-source/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/step-area-single-source/.stackblitzrc +++ b/samples/charts/category-chart/step-area-single-source/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-single-source/angular.json b/samples/charts/category-chart/step-area-single-source/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/step-area-single-source/angular.json +++ b/samples/charts/category-chart/step-area-single-source/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/step-area-single-source/sandbox.config.json b/samples/charts/category-chart/step-area-single-source/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/step-area-single-source/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-single-source/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/step-area-single-source/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/step-area-single-source/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.app.json b/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.base.json b/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.spec.json b/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.worker.json b/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/step-area-single-source/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/step-area-single-source/tsconfig.app.json b/samples/charts/category-chart/step-area-single-source/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/step-area-single-source/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/step-area-single-source/tsconfig.json b/samples/charts/category-chart/step-area-single-source/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/step-area-single-source/tsconfig.json +++ b/samples/charts/category-chart/step-area-single-source/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-styling/.codesandbox/Dockerfile b/samples/charts/category-chart/step-area-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/step-area-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-styling/.codesandbox/tasks.json b/samples/charts/category-chart/step-area-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/step-area-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-styling/.stackblitzrc b/samples/charts/category-chart/step-area-styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/step-area-styling/.stackblitzrc +++ b/samples/charts/category-chart/step-area-styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-styling/angular.json b/samples/charts/category-chart/step-area-styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/step-area-styling/angular.json +++ b/samples/charts/category-chart/step-area-styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/step-area-styling/sandbox.config.json b/samples/charts/category-chart/step-area-styling/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/step-area-styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-styling/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/step-area-styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/step-area-styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/step-area-styling/src/config/tsconfig.app.json b/samples/charts/category-chart/step-area-styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/step-area-styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/step-area-styling/src/config/tsconfig.base.json b/samples/charts/category-chart/step-area-styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/step-area-styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/step-area-styling/src/config/tsconfig.spec.json b/samples/charts/category-chart/step-area-styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/step-area-styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/step-area-styling/src/config/tsconfig.worker.json b/samples/charts/category-chart/step-area-styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/step-area-styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/step-area-styling/tsconfig.app.json b/samples/charts/category-chart/step-area-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/step-area-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/step-area-styling/tsconfig.json b/samples/charts/category-chart/step-area-styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/step-area-styling/tsconfig.json +++ b/samples/charts/category-chart/step-area-styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-multiple-sources/.codesandbox/Dockerfile b/samples/charts/category-chart/step-line-multiple-sources/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/step-line-multiple-sources/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-multiple-sources/.codesandbox/tasks.json b/samples/charts/category-chart/step-line-multiple-sources/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/step-line-multiple-sources/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-multiple-sources/.stackblitzrc b/samples/charts/category-chart/step-line-multiple-sources/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/.stackblitzrc +++ b/samples/charts/category-chart/step-line-multiple-sources/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-multiple-sources/angular.json b/samples/charts/category-chart/step-line-multiple-sources/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/angular.json +++ b/samples/charts/category-chart/step-line-multiple-sources/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/step-line-multiple-sources/sandbox.config.json b/samples/charts/category-chart/step-line-multiple-sources/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/step-line-multiple-sources/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.app.json b/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.base.json b/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.spec.json b/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/step-line-multiple-sources/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/step-line-multiple-sources/tsconfig.app.json b/samples/charts/category-chart/step-line-multiple-sources/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/step-line-multiple-sources/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json b/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-single-source/.codesandbox/Dockerfile b/samples/charts/category-chart/step-line-single-source/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/step-line-single-source/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-single-source/.codesandbox/tasks.json b/samples/charts/category-chart/step-line-single-source/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/step-line-single-source/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-single-source/.stackblitzrc b/samples/charts/category-chart/step-line-single-source/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/step-line-single-source/.stackblitzrc +++ b/samples/charts/category-chart/step-line-single-source/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-single-source/angular.json b/samples/charts/category-chart/step-line-single-source/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/step-line-single-source/angular.json +++ b/samples/charts/category-chart/step-line-single-source/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/step-line-single-source/sandbox.config.json b/samples/charts/category-chart/step-line-single-source/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/step-line-single-source/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-single-source/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/step-line-single-source/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/step-line-single-source/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.app.json b/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.base.json b/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.spec.json b/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.worker.json b/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/step-line-single-source/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/step-line-single-source/tsconfig.app.json b/samples/charts/category-chart/step-line-single-source/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/step-line-single-source/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/step-line-single-source/tsconfig.json b/samples/charts/category-chart/step-line-single-source/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/step-line-single-source/tsconfig.json +++ b/samples/charts/category-chart/step-line-single-source/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-styling/.codesandbox/Dockerfile b/samples/charts/category-chart/step-line-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/step-line-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-styling/.codesandbox/tasks.json b/samples/charts/category-chart/step-line-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/step-line-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-styling/.stackblitzrc b/samples/charts/category-chart/step-line-styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/step-line-styling/.stackblitzrc +++ b/samples/charts/category-chart/step-line-styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-styling/angular.json b/samples/charts/category-chart/step-line-styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/step-line-styling/angular.json +++ b/samples/charts/category-chart/step-line-styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/step-line-styling/sandbox.config.json b/samples/charts/category-chart/step-line-styling/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/step-line-styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-styling/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/step-line-styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/step-line-styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/step-line-styling/src/config/tsconfig.app.json b/samples/charts/category-chart/step-line-styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/step-line-styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/step-line-styling/src/config/tsconfig.base.json b/samples/charts/category-chart/step-line-styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/step-line-styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/step-line-styling/src/config/tsconfig.spec.json b/samples/charts/category-chart/step-line-styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/step-line-styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/step-line-styling/src/config/tsconfig.worker.json b/samples/charts/category-chart/step-line-styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/step-line-styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/step-line-styling/tsconfig.app.json b/samples/charts/category-chart/step-line-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/step-line-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/step-line-styling/tsconfig.json b/samples/charts/category-chart/step-line-styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/step-line-styling/tsconfig.json +++ b/samples/charts/category-chart/step-line-styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/tooltip-template/.codesandbox/Dockerfile b/samples/charts/category-chart/tooltip-template/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/tooltip-template/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/tooltip-template/.codesandbox/tasks.json b/samples/charts/category-chart/tooltip-template/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/tooltip-template/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/tooltip-template/.stackblitzrc b/samples/charts/category-chart/tooltip-template/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/tooltip-template/.stackblitzrc +++ b/samples/charts/category-chart/tooltip-template/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/tooltip-template/angular.json b/samples/charts/category-chart/tooltip-template/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/tooltip-template/angular.json +++ b/samples/charts/category-chart/tooltip-template/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/tooltip-template/sandbox.config.json b/samples/charts/category-chart/tooltip-template/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/category-chart/tooltip-template/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/tooltip-template/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/tooltip-template/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/tooltip-template/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/tooltip-template/src/config/tsconfig.app.json b/samples/charts/category-chart/tooltip-template/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/tooltip-template/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/tooltip-template/src/config/tsconfig.base.json b/samples/charts/category-chart/tooltip-template/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/tooltip-template/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/tooltip-template/src/config/tsconfig.spec.json b/samples/charts/category-chart/tooltip-template/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/tooltip-template/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/tooltip-template/src/config/tsconfig.worker.json b/samples/charts/category-chart/tooltip-template/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/tooltip-template/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/tooltip-template/tsconfig.app.json b/samples/charts/category-chart/tooltip-template/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/tooltip-template/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/tooltip-template/tsconfig.json b/samples/charts/category-chart/tooltip-template/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/tooltip-template/tsconfig.json +++ b/samples/charts/category-chart/tooltip-template/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/tooltip-types/.codesandbox/Dockerfile b/samples/charts/category-chart/tooltip-types/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/tooltip-types/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/tooltip-types/.codesandbox/tasks.json b/samples/charts/category-chart/tooltip-types/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/tooltip-types/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/tooltip-types/.stackblitzrc b/samples/charts/category-chart/tooltip-types/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/tooltip-types/.stackblitzrc +++ b/samples/charts/category-chart/tooltip-types/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/tooltip-types/angular.json b/samples/charts/category-chart/tooltip-types/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/tooltip-types/angular.json +++ b/samples/charts/category-chart/tooltip-types/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/tooltip-types/sandbox.config.json b/samples/charts/category-chart/tooltip-types/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/category-chart/tooltip-types/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/tooltip-types/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/tooltip-types/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/tooltip-types/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/tooltip-types/src/config/tsconfig.app.json b/samples/charts/category-chart/tooltip-types/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/tooltip-types/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/tooltip-types/src/config/tsconfig.base.json b/samples/charts/category-chart/tooltip-types/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/tooltip-types/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/tooltip-types/src/config/tsconfig.spec.json b/samples/charts/category-chart/tooltip-types/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/tooltip-types/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/tooltip-types/src/config/tsconfig.worker.json b/samples/charts/category-chart/tooltip-types/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/tooltip-types/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/tooltip-types/tsconfig.app.json b/samples/charts/category-chart/tooltip-types/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/tooltip-types/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/tooltip-types/tsconfig.json b/samples/charts/category-chart/tooltip-types/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/tooltip-types/tsconfig.json +++ b/samples/charts/category-chart/tooltip-types/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/trendline/.codesandbox/Dockerfile b/samples/charts/category-chart/trendline/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/trendline/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/trendline/.codesandbox/tasks.json b/samples/charts/category-chart/trendline/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/trendline/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/trendline/.stackblitzrc b/samples/charts/category-chart/trendline/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/trendline/.stackblitzrc +++ b/samples/charts/category-chart/trendline/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/trendline/angular.json b/samples/charts/category-chart/trendline/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/trendline/angular.json +++ b/samples/charts/category-chart/trendline/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/trendline/sandbox.config.json b/samples/charts/category-chart/trendline/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/category-chart/trendline/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/trendline/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/trendline/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/trendline/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/trendline/src/config/tsconfig.app.json b/samples/charts/category-chart/trendline/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/trendline/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/trendline/src/config/tsconfig.base.json b/samples/charts/category-chart/trendline/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/trendline/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/trendline/src/config/tsconfig.spec.json b/samples/charts/category-chart/trendline/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/trendline/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/trendline/src/config/tsconfig.worker.json b/samples/charts/category-chart/trendline/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/trendline/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/trendline/tsconfig.app.json b/samples/charts/category-chart/trendline/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/trendline/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/trendline/tsconfig.json b/samples/charts/category-chart/trendline/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/trendline/tsconfig.json +++ b/samples/charts/category-chart/trendline/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/category-chart/value-lines/.codesandbox/Dockerfile b/samples/charts/category-chart/value-lines/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/value-lines/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/value-lines/.codesandbox/tasks.json b/samples/charts/category-chart/value-lines/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/value-lines/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/value-lines/.stackblitzrc b/samples/charts/category-chart/value-lines/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/category-chart/value-lines/.stackblitzrc +++ b/samples/charts/category-chart/value-lines/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/value-lines/angular.json b/samples/charts/category-chart/value-lines/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/category-chart/value-lines/angular.json +++ b/samples/charts/category-chart/value-lines/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/category-chart/value-lines/sandbox.config.json b/samples/charts/category-chart/value-lines/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/value-lines/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/value-lines/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/value-lines/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/value-lines/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/value-lines/src/config/tsconfig.app.json b/samples/charts/category-chart/value-lines/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/value-lines/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/value-lines/src/config/tsconfig.base.json b/samples/charts/category-chart/value-lines/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/value-lines/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/value-lines/src/config/tsconfig.spec.json b/samples/charts/category-chart/value-lines/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/value-lines/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/value-lines/src/config/tsconfig.worker.json b/samples/charts/category-chart/value-lines/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/value-lines/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/value-lines/tsconfig.app.json b/samples/charts/category-chart/value-lines/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/value-lines/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/value-lines/tsconfig.json b/samples/charts/category-chart/value-lines/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/category-chart/value-lines/tsconfig.json +++ b/samples/charts/category-chart/value-lines/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/annotations-custom/.codesandbox/Dockerfile b/samples/charts/data-chart/annotations-custom/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/annotations-custom/.codesandbox/tasks.json b/samples/charts/data-chart/annotations-custom/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/annotations-custom/.stackblitzrc b/samples/charts/data-chart/annotations-custom/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/annotations-custom/.stackblitzrc +++ b/samples/charts/data-chart/annotations-custom/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/annotations-custom/angular.json b/samples/charts/data-chart/annotations-custom/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/annotations-custom/angular.json +++ b/samples/charts/data-chart/annotations-custom/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/annotations-custom/sandbox.config.json b/samples/charts/data-chart/annotations-custom/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/annotations-custom/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/annotations-custom/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/annotations-custom/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/annotations-custom/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/annotations-custom/src/config/tsconfig.app.json b/samples/charts/data-chart/annotations-custom/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/annotations-custom/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/annotations-custom/src/config/tsconfig.base.json b/samples/charts/data-chart/annotations-custom/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/annotations-custom/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/annotations-custom/src/config/tsconfig.spec.json b/samples/charts/data-chart/annotations-custom/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/annotations-custom/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/annotations-custom/src/config/tsconfig.worker.json b/samples/charts/data-chart/annotations-custom/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/annotations-custom/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/annotations-custom/tsconfig.app.json b/samples/charts/data-chart/annotations-custom/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/annotations-custom/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/annotations-custom/tsconfig.json b/samples/charts/data-chart/annotations-custom/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/annotations-custom/tsconfig.json +++ b/samples/charts/data-chart/annotations-custom/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/.codesandbox/Dockerfile b/samples/charts/data-chart/axis-annotations-corner-radius/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/axis-annotations-corner-radius/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/.codesandbox/tasks.json b/samples/charts/data-chart/axis-annotations-corner-radius/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/axis-annotations-corner-radius/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/.stackblitzrc b/samples/charts/data-chart/axis-annotations-corner-radius/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/.stackblitzrc +++ b/samples/charts/data-chart/axis-annotations-corner-radius/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/angular.json b/samples/charts/data-chart/axis-annotations-corner-radius/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/angular.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/sandbox.config.json b/samples/charts/data-chart/axis-annotations-corner-radius/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/axis-annotations-corner-radius/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.app.json b/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.spec.json b/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/axis-annotations-corner-radius/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.app.json b/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json b/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/axis-annotations/.codesandbox/Dockerfile b/samples/charts/data-chart/axis-annotations/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/axis-annotations/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/axis-annotations/.codesandbox/tasks.json b/samples/charts/data-chart/axis-annotations/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/axis-annotations/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-annotations/.stackblitzrc b/samples/charts/data-chart/axis-annotations/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/axis-annotations/.stackblitzrc +++ b/samples/charts/data-chart/axis-annotations/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-annotations/angular.json b/samples/charts/data-chart/axis-annotations/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/axis-annotations/angular.json +++ b/samples/charts/data-chart/axis-annotations/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/axis-annotations/sandbox.config.json b/samples/charts/data-chart/axis-annotations/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/axis-annotations/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-annotations/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-annotations/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/axis-annotations/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/axis-annotations/src/config/tsconfig.app.json b/samples/charts/data-chart/axis-annotations/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/axis-annotations/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/axis-annotations/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-annotations/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/axis-annotations/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/axis-annotations/src/config/tsconfig.spec.json b/samples/charts/data-chart/axis-annotations/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/axis-annotations/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/axis-annotations/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-annotations/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/axis-annotations/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/axis-annotations/tsconfig.app.json b/samples/charts/data-chart/axis-annotations/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/axis-annotations/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/axis-annotations/tsconfig.json b/samples/charts/data-chart/axis-annotations/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/axis-annotations/tsconfig.json +++ b/samples/charts/data-chart/axis-annotations/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/axis-crossing/.codesandbox/Dockerfile b/samples/charts/data-chart/axis-crossing/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/axis-crossing/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/axis-crossing/.codesandbox/tasks.json b/samples/charts/data-chart/axis-crossing/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/axis-crossing/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-crossing/.stackblitzrc b/samples/charts/data-chart/axis-crossing/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/axis-crossing/.stackblitzrc +++ b/samples/charts/data-chart/axis-crossing/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-crossing/angular.json b/samples/charts/data-chart/axis-crossing/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/axis-crossing/angular.json +++ b/samples/charts/data-chart/axis-crossing/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/axis-crossing/sandbox.config.json b/samples/charts/data-chart/axis-crossing/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/axis-crossing/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-crossing/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-crossing/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/axis-crossing/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/axis-crossing/src/config/tsconfig.app.json b/samples/charts/data-chart/axis-crossing/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/axis-crossing/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/axis-crossing/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-crossing/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/axis-crossing/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/axis-crossing/src/config/tsconfig.spec.json b/samples/charts/data-chart/axis-crossing/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/axis-crossing/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/axis-crossing/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-crossing/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/axis-crossing/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/axis-crossing/tsconfig.app.json b/samples/charts/data-chart/axis-crossing/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/axis-crossing/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/axis-crossing/tsconfig.json b/samples/charts/data-chart/axis-crossing/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/axis-crossing/tsconfig.json +++ b/samples/charts/data-chart/axis-crossing/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/axis-label-rotation/.codesandbox/Dockerfile b/samples/charts/data-chart/axis-label-rotation/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/axis-label-rotation/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/axis-label-rotation/.codesandbox/tasks.json b/samples/charts/data-chart/axis-label-rotation/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/axis-label-rotation/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-label-rotation/.stackblitzrc b/samples/charts/data-chart/axis-label-rotation/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/axis-label-rotation/.stackblitzrc +++ b/samples/charts/data-chart/axis-label-rotation/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-label-rotation/angular.json b/samples/charts/data-chart/axis-label-rotation/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/axis-label-rotation/angular.json +++ b/samples/charts/data-chart/axis-label-rotation/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/axis-label-rotation/sandbox.config.json b/samples/charts/data-chart/axis-label-rotation/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/axis-label-rotation/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.app.json b/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.spec.json b/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/axis-label-rotation/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/axis-label-rotation/tsconfig.app.json b/samples/charts/data-chart/axis-label-rotation/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/axis-label-rotation/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/axis-label-rotation/tsconfig.json b/samples/charts/data-chart/axis-label-rotation/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/axis-label-rotation/tsconfig.json +++ b/samples/charts/data-chart/axis-label-rotation/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/axis-locations/.codesandbox/Dockerfile b/samples/charts/data-chart/axis-locations/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/axis-locations/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/axis-locations/.codesandbox/tasks.json b/samples/charts/data-chart/axis-locations/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/axis-locations/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-locations/.stackblitzrc b/samples/charts/data-chart/axis-locations/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/axis-locations/.stackblitzrc +++ b/samples/charts/data-chart/axis-locations/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-locations/angular.json b/samples/charts/data-chart/axis-locations/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/axis-locations/angular.json +++ b/samples/charts/data-chart/axis-locations/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/axis-locations/sandbox.config.json b/samples/charts/data-chart/axis-locations/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/axis-locations/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-locations/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-locations/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/axis-locations/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/axis-locations/src/config/tsconfig.app.json b/samples/charts/data-chart/axis-locations/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/axis-locations/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/axis-locations/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-locations/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/axis-locations/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/axis-locations/src/config/tsconfig.spec.json b/samples/charts/data-chart/axis-locations/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/axis-locations/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/axis-locations/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-locations/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/axis-locations/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/axis-locations/tsconfig.app.json b/samples/charts/data-chart/axis-locations/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/axis-locations/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/axis-locations/tsconfig.json b/samples/charts/data-chart/axis-locations/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/axis-locations/tsconfig.json +++ b/samples/charts/data-chart/axis-locations/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/axis-min-max-gap/.codesandbox/Dockerfile b/samples/charts/data-chart/axis-min-max-gap/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/axis-min-max-gap/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/axis-min-max-gap/.codesandbox/tasks.json b/samples/charts/data-chart/axis-min-max-gap/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/axis-min-max-gap/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-min-max-gap/.stackblitzrc b/samples/charts/data-chart/axis-min-max-gap/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/axis-min-max-gap/.stackblitzrc +++ b/samples/charts/data-chart/axis-min-max-gap/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-min-max-gap/angular.json b/samples/charts/data-chart/axis-min-max-gap/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/axis-min-max-gap/angular.json +++ b/samples/charts/data-chart/axis-min-max-gap/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/axis-min-max-gap/sandbox.config.json b/samples/charts/data-chart/axis-min-max-gap/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/axis-min-max-gap/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.app.json b/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.spec.json b/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/axis-min-max-gap/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/axis-min-max-gap/tsconfig.app.json b/samples/charts/data-chart/axis-min-max-gap/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/axis-min-max-gap/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/axis-min-max-gap/tsconfig.json b/samples/charts/data-chart/axis-min-max-gap/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/axis-min-max-gap/tsconfig.json +++ b/samples/charts/data-chart/axis-min-max-gap/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/axis-settings/.codesandbox/Dockerfile b/samples/charts/data-chart/axis-settings/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/axis-settings/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/axis-settings/.codesandbox/tasks.json b/samples/charts/data-chart/axis-settings/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/axis-settings/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-settings/.stackblitzrc b/samples/charts/data-chart/axis-settings/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/axis-settings/.stackblitzrc +++ b/samples/charts/data-chart/axis-settings/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-settings/angular.json b/samples/charts/data-chart/axis-settings/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/axis-settings/angular.json +++ b/samples/charts/data-chart/axis-settings/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/axis-settings/sandbox.config.json b/samples/charts/data-chart/axis-settings/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/axis-settings/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-settings/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-settings/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/axis-settings/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/axis-settings/src/config/tsconfig.app.json b/samples/charts/data-chart/axis-settings/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/axis-settings/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/axis-settings/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-settings/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/axis-settings/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/axis-settings/src/config/tsconfig.spec.json b/samples/charts/data-chart/axis-settings/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/axis-settings/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/axis-settings/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-settings/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/axis-settings/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/axis-settings/tsconfig.app.json b/samples/charts/data-chart/axis-settings/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/axis-settings/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/axis-settings/tsconfig.json b/samples/charts/data-chart/axis-settings/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/axis-settings/tsconfig.json +++ b/samples/charts/data-chart/axis-settings/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/axis-sharing/.codesandbox/Dockerfile b/samples/charts/data-chart/axis-sharing/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/axis-sharing/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/axis-sharing/.codesandbox/tasks.json b/samples/charts/data-chart/axis-sharing/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/axis-sharing/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-sharing/.stackblitzrc b/samples/charts/data-chart/axis-sharing/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/axis-sharing/.stackblitzrc +++ b/samples/charts/data-chart/axis-sharing/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-sharing/angular.json b/samples/charts/data-chart/axis-sharing/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/axis-sharing/angular.json +++ b/samples/charts/data-chart/axis-sharing/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/axis-sharing/sandbox.config.json b/samples/charts/data-chart/axis-sharing/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/axis-sharing/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-sharing/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-sharing/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/axis-sharing/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/axis-sharing/src/config/tsconfig.app.json b/samples/charts/data-chart/axis-sharing/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/axis-sharing/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/axis-sharing/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-sharing/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/axis-sharing/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/axis-sharing/src/config/tsconfig.spec.json b/samples/charts/data-chart/axis-sharing/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/axis-sharing/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/axis-sharing/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-sharing/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/axis-sharing/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/axis-sharing/tsconfig.app.json b/samples/charts/data-chart/axis-sharing/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/axis-sharing/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/axis-sharing/tsconfig.json b/samples/charts/data-chart/axis-sharing/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/axis-sharing/tsconfig.json +++ b/samples/charts/data-chart/axis-sharing/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/axis-types/.codesandbox/Dockerfile b/samples/charts/data-chart/axis-types/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/axis-types/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/axis-types/.codesandbox/tasks.json b/samples/charts/data-chart/axis-types/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/axis-types/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-types/.stackblitzrc b/samples/charts/data-chart/axis-types/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/axis-types/.stackblitzrc +++ b/samples/charts/data-chart/axis-types/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-types/angular.json b/samples/charts/data-chart/axis-types/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/axis-types/angular.json +++ b/samples/charts/data-chart/axis-types/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/axis-types/sandbox.config.json b/samples/charts/data-chart/axis-types/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/axis-types/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/axis-types/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/axis-types/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/axis-types/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/axis-types/src/config/tsconfig.app.json b/samples/charts/data-chart/axis-types/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/axis-types/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/axis-types/src/config/tsconfig.base.json b/samples/charts/data-chart/axis-types/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/axis-types/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/axis-types/src/config/tsconfig.spec.json b/samples/charts/data-chart/axis-types/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/axis-types/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/axis-types/src/config/tsconfig.worker.json b/samples/charts/data-chart/axis-types/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/axis-types/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/axis-types/tsconfig.app.json b/samples/charts/data-chart/axis-types/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/axis-types/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/axis-types/tsconfig.json b/samples/charts/data-chart/axis-types/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/axis-types/tsconfig.json +++ b/samples/charts/data-chart/axis-types/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/.codesandbox/Dockerfile b/samples/charts/data-chart/bar-chart-multiple-sources/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/bar-chart-multiple-sources/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/.codesandbox/tasks.json b/samples/charts/data-chart/bar-chart-multiple-sources/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/bar-chart-multiple-sources/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/.stackblitzrc b/samples/charts/data-chart/bar-chart-multiple-sources/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/.stackblitzrc +++ b/samples/charts/data-chart/bar-chart-multiple-sources/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/angular.json b/samples/charts/data-chart/bar-chart-multiple-sources/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/angular.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/sandbox.config.json b/samples/charts/data-chart/bar-chart-multiple-sources/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/bar-chart-multiple-sources/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.app.json b/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.base.json b/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.spec.json b/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/bar-chart-multiple-sources/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.app.json b/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json b/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-overlapping/.codesandbox/Dockerfile b/samples/charts/data-chart/bar-chart-overlapping/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/bar-chart-overlapping/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-overlapping/.codesandbox/tasks.json b/samples/charts/data-chart/bar-chart-overlapping/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/bar-chart-overlapping/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-overlapping/.stackblitzrc b/samples/charts/data-chart/bar-chart-overlapping/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/.stackblitzrc +++ b/samples/charts/data-chart/bar-chart-overlapping/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-overlapping/angular.json b/samples/charts/data-chart/bar-chart-overlapping/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/angular.json +++ b/samples/charts/data-chart/bar-chart-overlapping/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/sandbox.config.json b/samples/charts/data-chart/bar-chart-overlapping/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/bar-chart-overlapping/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.app.json b/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.base.json b/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.spec.json b/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.worker.json b/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/bar-chart-overlapping/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/bar-chart-overlapping/tsconfig.app.json b/samples/charts/data-chart/bar-chart-overlapping/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/bar-chart-overlapping/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json b/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-single-source/.codesandbox/Dockerfile b/samples/charts/data-chart/bar-chart-single-source/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/bar-chart-single-source/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-single-source/.codesandbox/tasks.json b/samples/charts/data-chart/bar-chart-single-source/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/bar-chart-single-source/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-single-source/.stackblitzrc b/samples/charts/data-chart/bar-chart-single-source/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/bar-chart-single-source/.stackblitzrc +++ b/samples/charts/data-chart/bar-chart-single-source/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-single-source/angular.json b/samples/charts/data-chart/bar-chart-single-source/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/bar-chart-single-source/angular.json +++ b/samples/charts/data-chart/bar-chart-single-source/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/bar-chart-single-source/sandbox.config.json b/samples/charts/data-chart/bar-chart-single-source/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/bar-chart-single-source/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.app.json b/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.base.json b/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.spec.json b/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.worker.json b/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/bar-chart-single-source/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/bar-chart-single-source/tsconfig.app.json b/samples/charts/data-chart/bar-chart-single-source/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/bar-chart-single-source/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/bar-chart-single-source/tsconfig.json b/samples/charts/data-chart/bar-chart-single-source/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/bar-chart-single-source/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-single-source/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-styling/.codesandbox/Dockerfile b/samples/charts/data-chart/bar-chart-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/bar-chart-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-styling/.codesandbox/tasks.json b/samples/charts/data-chart/bar-chart-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/bar-chart-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-styling/.stackblitzrc b/samples/charts/data-chart/bar-chart-styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/bar-chart-styling/.stackblitzrc +++ b/samples/charts/data-chart/bar-chart-styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-styling/angular.json b/samples/charts/data-chart/bar-chart-styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/bar-chart-styling/angular.json +++ b/samples/charts/data-chart/bar-chart-styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/bar-chart-styling/sandbox.config.json b/samples/charts/data-chart/bar-chart-styling/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/bar-chart-styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.app.json b/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.base.json b/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.spec.json b/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.worker.json b/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/bar-chart-styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/bar-chart-styling/tsconfig.app.json b/samples/charts/data-chart/bar-chart-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/bar-chart-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/bar-chart-styling/tsconfig.json b/samples/charts/data-chart/bar-chart-styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/bar-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/callout-layer-styling/.codesandbox/Dockerfile b/samples/charts/data-chart/callout-layer-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/callout-layer-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/callout-layer-styling/.codesandbox/tasks.json b/samples/charts/data-chart/callout-layer-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/callout-layer-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/callout-layer-styling/.stackblitzrc b/samples/charts/data-chart/callout-layer-styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/callout-layer-styling/.stackblitzrc +++ b/samples/charts/data-chart/callout-layer-styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/callout-layer-styling/angular.json b/samples/charts/data-chart/callout-layer-styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/callout-layer-styling/angular.json +++ b/samples/charts/data-chart/callout-layer-styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/callout-layer-styling/sandbox.config.json b/samples/charts/data-chart/callout-layer-styling/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/callout-layer-styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.app.json b/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.base.json b/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.spec.json b/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.worker.json b/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/callout-layer-styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/callout-layer-styling/tsconfig.app.json b/samples/charts/data-chart/callout-layer-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/callout-layer-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/callout-layer-styling/tsconfig.json b/samples/charts/data-chart/callout-layer-styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/callout-layer-styling/tsconfig.json +++ b/samples/charts/data-chart/callout-layer-styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/.codesandbox/Dockerfile b/samples/charts/data-chart/chart-highlight-filter-datasource/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/.codesandbox/tasks.json b/samples/charts/data-chart/chart-highlight-filter-datasource/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/.stackblitzrc b/samples/charts/data-chart/chart-highlight-filter-datasource/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/.stackblitzrc +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/angular.json b/samples/charts/data-chart/chart-highlight-filter-datasource/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/angular.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/sandbox.config.json b/samples/charts/data-chart/chart-highlight-filter-datasource/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.app.json b/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.base.json b/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.spec.json b/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.worker.json b/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.app.json b/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json b/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/.codesandbox/Dockerfile b/samples/charts/data-chart/chart-highlight-filter-multiple-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/.codesandbox/tasks.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/.stackblitzrc b/samples/charts/data-chart/chart-highlight-filter-multiple-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/.stackblitzrc +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/angular.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/angular.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/sandbox.config.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.app.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.base.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.app.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter/.codesandbox/Dockerfile b/samples/charts/data-chart/chart-highlight-filter/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter/.codesandbox/tasks.json b/samples/charts/data-chart/chart-highlight-filter/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter/.stackblitzrc b/samples/charts/data-chart/chart-highlight-filter/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/chart-highlight-filter/.stackblitzrc +++ b/samples/charts/data-chart/chart-highlight-filter/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter/angular.json b/samples/charts/data-chart/chart-highlight-filter/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/chart-highlight-filter/angular.json +++ b/samples/charts/data-chart/chart-highlight-filter/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/chart-highlight-filter/sandbox.config.json b/samples/charts/data-chart/chart-highlight-filter/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/chart-highlight-filter/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.app.json b/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.base.json b/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.spec.json b/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.worker.json b/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/chart-highlight-filter/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/chart-highlight-filter/tsconfig.app.json b/samples/charts/data-chart/chart-highlight-filter/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/chart-highlight-filter/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/chart-highlight-filter/tsconfig.json b/samples/charts/data-chart/chart-highlight-filter/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/chart-highlight-filter/tsconfig.json +++ b/samples/charts/data-chart/chart-highlight-filter/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/chart-navigation/.codesandbox/Dockerfile b/samples/charts/data-chart/chart-navigation/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/chart-navigation/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/chart-navigation/.codesandbox/tasks.json b/samples/charts/data-chart/chart-navigation/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/chart-navigation/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-navigation/.stackblitzrc b/samples/charts/data-chart/chart-navigation/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/chart-navigation/.stackblitzrc +++ b/samples/charts/data-chart/chart-navigation/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-navigation/angular.json b/samples/charts/data-chart/chart-navigation/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/chart-navigation/angular.json +++ b/samples/charts/data-chart/chart-navigation/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/chart-navigation/sandbox.config.json b/samples/charts/data-chart/chart-navigation/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/chart-navigation/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-navigation/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/chart-navigation/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/chart-navigation/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/chart-navigation/src/config/tsconfig.app.json b/samples/charts/data-chart/chart-navigation/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/chart-navigation/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/chart-navigation/src/config/tsconfig.base.json b/samples/charts/data-chart/chart-navigation/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/chart-navigation/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/chart-navigation/src/config/tsconfig.spec.json b/samples/charts/data-chart/chart-navigation/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/chart-navigation/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/chart-navigation/src/config/tsconfig.worker.json b/samples/charts/data-chart/chart-navigation/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/chart-navigation/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/chart-navigation/tsconfig.app.json b/samples/charts/data-chart/chart-navigation/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/chart-navigation/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/chart-navigation/tsconfig.json b/samples/charts/data-chart/chart-navigation/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/chart-navigation/tsconfig.json +++ b/samples/charts/data-chart/chart-navigation/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/chart-overview/.codesandbox/Dockerfile b/samples/charts/data-chart/chart-overview/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/chart-overview/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/chart-overview/.codesandbox/tasks.json b/samples/charts/data-chart/chart-overview/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/chart-overview/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-overview/.stackblitzrc b/samples/charts/data-chart/chart-overview/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/chart-overview/.stackblitzrc +++ b/samples/charts/data-chart/chart-overview/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-overview/angular.json b/samples/charts/data-chart/chart-overview/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/chart-overview/angular.json +++ b/samples/charts/data-chart/chart-overview/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/chart-overview/sandbox.config.json b/samples/charts/data-chart/chart-overview/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/chart-overview/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-overview/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/chart-overview/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/chart-overview/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/chart-overview/src/config/tsconfig.app.json b/samples/charts/data-chart/chart-overview/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/chart-overview/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/chart-overview/src/config/tsconfig.base.json b/samples/charts/data-chart/chart-overview/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/chart-overview/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/chart-overview/src/config/tsconfig.spec.json b/samples/charts/data-chart/chart-overview/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/chart-overview/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/chart-overview/src/config/tsconfig.worker.json b/samples/charts/data-chart/chart-overview/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/chart-overview/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/chart-overview/tsconfig.app.json b/samples/charts/data-chart/chart-overview/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/chart-overview/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/chart-overview/tsconfig.json b/samples/charts/data-chart/chart-overview/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/chart-overview/tsconfig.json +++ b/samples/charts/data-chart/chart-overview/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/chart-performance/.codesandbox/Dockerfile b/samples/charts/data-chart/chart-performance/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/chart-performance/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/chart-performance/.codesandbox/tasks.json b/samples/charts/data-chart/chart-performance/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/chart-performance/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-performance/.stackblitzrc b/samples/charts/data-chart/chart-performance/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/chart-performance/.stackblitzrc +++ b/samples/charts/data-chart/chart-performance/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-performance/angular.json b/samples/charts/data-chart/chart-performance/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/chart-performance/angular.json +++ b/samples/charts/data-chart/chart-performance/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/chart-performance/sandbox.config.json b/samples/charts/data-chart/chart-performance/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/chart-performance/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-performance/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/chart-performance/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/chart-performance/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/chart-performance/src/config/tsconfig.app.json b/samples/charts/data-chart/chart-performance/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/chart-performance/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/chart-performance/src/config/tsconfig.base.json b/samples/charts/data-chart/chart-performance/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/chart-performance/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/chart-performance/src/config/tsconfig.spec.json b/samples/charts/data-chart/chart-performance/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/chart-performance/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/chart-performance/src/config/tsconfig.worker.json b/samples/charts/data-chart/chart-performance/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/chart-performance/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/chart-performance/tsconfig.app.json b/samples/charts/data-chart/chart-performance/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/chart-performance/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/chart-performance/tsconfig.json b/samples/charts/data-chart/chart-performance/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/chart-performance/tsconfig.json +++ b/samples/charts/data-chart/chart-performance/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/chart-synchronization/.codesandbox/Dockerfile b/samples/charts/data-chart/chart-synchronization/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/chart-synchronization/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/chart-synchronization/.codesandbox/tasks.json b/samples/charts/data-chart/chart-synchronization/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/chart-synchronization/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-synchronization/.stackblitzrc b/samples/charts/data-chart/chart-synchronization/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/chart-synchronization/.stackblitzrc +++ b/samples/charts/data-chart/chart-synchronization/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-synchronization/angular.json b/samples/charts/data-chart/chart-synchronization/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/chart-synchronization/angular.json +++ b/samples/charts/data-chart/chart-synchronization/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/chart-synchronization/sandbox.config.json b/samples/charts/data-chart/chart-synchronization/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/chart-synchronization/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-synchronization/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/chart-synchronization/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/chart-synchronization/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.app.json b/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.base.json b/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.spec.json b/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.worker.json b/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/chart-synchronization/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/chart-synchronization/tsconfig.app.json b/samples/charts/data-chart/chart-synchronization/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/chart-synchronization/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/chart-synchronization/tsconfig.json b/samples/charts/data-chart/chart-synchronization/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/chart-synchronization/tsconfig.json +++ b/samples/charts/data-chart/chart-synchronization/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/chart-titles/.codesandbox/Dockerfile b/samples/charts/data-chart/chart-titles/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/chart-titles/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/chart-titles/.codesandbox/tasks.json b/samples/charts/data-chart/chart-titles/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/chart-titles/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-titles/.stackblitzrc b/samples/charts/data-chart/chart-titles/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/chart-titles/.stackblitzrc +++ b/samples/charts/data-chart/chart-titles/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-titles/angular.json b/samples/charts/data-chart/chart-titles/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/chart-titles/angular.json +++ b/samples/charts/data-chart/chart-titles/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/chart-titles/sandbox.config.json b/samples/charts/data-chart/chart-titles/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/chart-titles/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/chart-titles/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/chart-titles/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/chart-titles/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/chart-titles/src/config/tsconfig.app.json b/samples/charts/data-chart/chart-titles/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/chart-titles/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/chart-titles/src/config/tsconfig.base.json b/samples/charts/data-chart/chart-titles/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/chart-titles/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/chart-titles/src/config/tsconfig.spec.json b/samples/charts/data-chart/chart-titles/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/chart-titles/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/chart-titles/src/config/tsconfig.worker.json b/samples/charts/data-chart/chart-titles/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/chart-titles/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/chart-titles/tsconfig.app.json b/samples/charts/data-chart/chart-titles/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/chart-titles/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/chart-titles/tsconfig.json b/samples/charts/data-chart/chart-titles/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/chart-titles/tsconfig.json +++ b/samples/charts/data-chart/chart-titles/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/column-chart-styling/.codesandbox/Dockerfile b/samples/charts/data-chart/column-chart-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/column-chart-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/column-chart-styling/.codesandbox/tasks.json b/samples/charts/data-chart/column-chart-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/column-chart-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/column-chart-styling/.stackblitzrc b/samples/charts/data-chart/column-chart-styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/column-chart-styling/.stackblitzrc +++ b/samples/charts/data-chart/column-chart-styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/column-chart-styling/angular.json b/samples/charts/data-chart/column-chart-styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/column-chart-styling/angular.json +++ b/samples/charts/data-chart/column-chart-styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/column-chart-styling/sandbox.config.json b/samples/charts/data-chart/column-chart-styling/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/column-chart-styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/column-chart-styling/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/column-chart-styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/column-chart-styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.app.json b/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.base.json b/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.spec.json b/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.worker.json b/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/column-chart-styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/column-chart-styling/tsconfig.app.json b/samples/charts/data-chart/column-chart-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/column-chart-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/column-chart-styling/tsconfig.json b/samples/charts/data-chart/column-chart-styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/column-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/column-chart-styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/composite-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/composite-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/composite-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/composite-chart/.codesandbox/tasks.json b/samples/charts/data-chart/composite-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/composite-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/composite-chart/.stackblitzrc b/samples/charts/data-chart/composite-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/composite-chart/.stackblitzrc +++ b/samples/charts/data-chart/composite-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/composite-chart/angular.json b/samples/charts/data-chart/composite-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/composite-chart/angular.json +++ b/samples/charts/data-chart/composite-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/composite-chart/sandbox.config.json b/samples/charts/data-chart/composite-chart/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/composite-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/composite-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/composite-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/composite-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/composite-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/composite-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/composite-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/composite-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/composite-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/composite-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/composite-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/composite-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/composite-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/composite-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/composite-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/composite-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/composite-chart/tsconfig.app.json b/samples/charts/data-chart/composite-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/composite-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/composite-chart/tsconfig.json b/samples/charts/data-chart/composite-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/composite-chart/tsconfig.json +++ b/samples/charts/data-chart/composite-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/crosshair-layer-styling/.codesandbox/Dockerfile b/samples/charts/data-chart/crosshair-layer-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/crosshair-layer-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/crosshair-layer-styling/.codesandbox/tasks.json b/samples/charts/data-chart/crosshair-layer-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/crosshair-layer-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/crosshair-layer-styling/.stackblitzrc b/samples/charts/data-chart/crosshair-layer-styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/.stackblitzrc +++ b/samples/charts/data-chart/crosshair-layer-styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/crosshair-layer-styling/angular.json b/samples/charts/data-chart/crosshair-layer-styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/angular.json +++ b/samples/charts/data-chart/crosshair-layer-styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/crosshair-layer-styling/sandbox.config.json b/samples/charts/data-chart/crosshair-layer-styling/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/crosshair-layer-styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.app.json b/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.base.json b/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.spec.json b/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.worker.json b/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/crosshair-layer-styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/crosshair-layer-styling/tsconfig.app.json b/samples/charts/data-chart/crosshair-layer-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/crosshair-layer-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/crosshair-layer-styling/tsconfig.json b/samples/charts/data-chart/crosshair-layer-styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/tsconfig.json +++ b/samples/charts/data-chart/crosshair-layer-styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/custom-drawing-annotations/.codesandbox/Dockerfile b/samples/charts/data-chart/custom-drawing-annotations/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/custom-drawing-annotations/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/custom-drawing-annotations/.codesandbox/tasks.json b/samples/charts/data-chart/custom-drawing-annotations/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/custom-drawing-annotations/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/custom-drawing-annotations/.stackblitzrc b/samples/charts/data-chart/custom-drawing-annotations/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/.stackblitzrc +++ b/samples/charts/data-chart/custom-drawing-annotations/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/custom-drawing-annotations/angular.json b/samples/charts/data-chart/custom-drawing-annotations/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/angular.json +++ b/samples/charts/data-chart/custom-drawing-annotations/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 0729f4eb9..692bec68c 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/custom-drawing-annotations/sandbox.config.json b/samples/charts/data-chart/custom-drawing-annotations/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/custom-drawing-annotations/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.app.json b/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.base.json b/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.spec.json b/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.worker.json b/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/custom-drawing-annotations/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/custom-drawing-annotations/tsconfig.app.json b/samples/charts/data-chart/custom-drawing-annotations/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/custom-drawing-annotations/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/custom-drawing-annotations/tsconfig.json b/samples/charts/data-chart/custom-drawing-annotations/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/tsconfig.json +++ b/samples/charts/data-chart/custom-drawing-annotations/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/custom-editing-data/.codesandbox/Dockerfile b/samples/charts/data-chart/custom-editing-data/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/custom-editing-data/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/custom-editing-data/.codesandbox/tasks.json b/samples/charts/data-chart/custom-editing-data/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/custom-editing-data/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/custom-editing-data/.stackblitzrc b/samples/charts/data-chart/custom-editing-data/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/custom-editing-data/.stackblitzrc +++ b/samples/charts/data-chart/custom-editing-data/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/custom-editing-data/angular.json b/samples/charts/data-chart/custom-editing-data/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/custom-editing-data/angular.json +++ b/samples/charts/data-chart/custom-editing-data/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/custom-editing-data/sandbox.config.json b/samples/charts/data-chart/custom-editing-data/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/custom-editing-data/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/custom-editing-data/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/custom-editing-data/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/custom-editing-data/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.app.json b/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.base.json b/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.spec.json b/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.worker.json b/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/custom-editing-data/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/custom-editing-data/tsconfig.app.json b/samples/charts/data-chart/custom-editing-data/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/custom-editing-data/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/custom-editing-data/tsconfig.json b/samples/charts/data-chart/custom-editing-data/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/custom-editing-data/tsconfig.json +++ b/samples/charts/data-chart/custom-editing-data/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-axes/.codesandbox/Dockerfile b/samples/charts/data-chart/dash-array-axes/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/dash-array-axes/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-axes/.codesandbox/tasks.json b/samples/charts/data-chart/dash-array-axes/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/dash-array-axes/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-axes/.stackblitzrc b/samples/charts/data-chart/dash-array-axes/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/dash-array-axes/.stackblitzrc +++ b/samples/charts/data-chart/dash-array-axes/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-axes/angular.json b/samples/charts/data-chart/dash-array-axes/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/dash-array-axes/angular.json +++ b/samples/charts/data-chart/dash-array-axes/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/dash-array-axes/sandbox.config.json b/samples/charts/data-chart/dash-array-axes/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/dash-array-axes/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-axes/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/dash-array-axes/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/dash-array-axes/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.app.json b/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.base.json b/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.spec.json b/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.worker.json b/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/dash-array-axes/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/dash-array-axes/tsconfig.app.json b/samples/charts/data-chart/dash-array-axes/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/dash-array-axes/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/dash-array-axes/tsconfig.json b/samples/charts/data-chart/dash-array-axes/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/dash-array-axes/tsconfig.json +++ b/samples/charts/data-chart/dash-array-axes/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-series/.codesandbox/Dockerfile b/samples/charts/data-chart/dash-array-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/dash-array-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-series/.codesandbox/tasks.json b/samples/charts/data-chart/dash-array-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/dash-array-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-series/.stackblitzrc b/samples/charts/data-chart/dash-array-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/dash-array-series/.stackblitzrc +++ b/samples/charts/data-chart/dash-array-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-series/angular.json b/samples/charts/data-chart/dash-array-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/dash-array-series/angular.json +++ b/samples/charts/data-chart/dash-array-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/dash-array-series/sandbox.config.json b/samples/charts/data-chart/dash-array-series/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/dash-array-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/dash-array-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/dash-array-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/dash-array-series/src/config/tsconfig.app.json b/samples/charts/data-chart/dash-array-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/dash-array-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/dash-array-series/src/config/tsconfig.base.json b/samples/charts/data-chart/dash-array-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/dash-array-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/dash-array-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/dash-array-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/dash-array-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/dash-array-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/dash-array-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/dash-array-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/dash-array-series/tsconfig.app.json b/samples/charts/data-chart/dash-array-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/dash-array-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/dash-array-series/tsconfig.json b/samples/charts/data-chart/dash-array-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/dash-array-series/tsconfig.json +++ b/samples/charts/data-chart/dash-array-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-tickmarks/.codesandbox/Dockerfile b/samples/charts/data-chart/dash-array-tickmarks/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/dash-array-tickmarks/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-tickmarks/.codesandbox/tasks.json b/samples/charts/data-chart/dash-array-tickmarks/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/dash-array-tickmarks/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-tickmarks/.stackblitzrc b/samples/charts/data-chart/dash-array-tickmarks/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/.stackblitzrc +++ b/samples/charts/data-chart/dash-array-tickmarks/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-tickmarks/angular.json b/samples/charts/data-chart/dash-array-tickmarks/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/angular.json +++ b/samples/charts/data-chart/dash-array-tickmarks/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/dash-array-tickmarks/sandbox.config.json b/samples/charts/data-chart/dash-array-tickmarks/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/dash-array-tickmarks/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.app.json b/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.base.json b/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.spec.json b/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.worker.json b/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/dash-array-tickmarks/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/dash-array-tickmarks/tsconfig.app.json b/samples/charts/data-chart/dash-array-tickmarks/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/dash-array-tickmarks/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/dash-array-tickmarks/tsconfig.json b/samples/charts/data-chart/dash-array-tickmarks/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/tsconfig.json +++ b/samples/charts/data-chart/dash-array-tickmarks/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-trendline/.codesandbox/Dockerfile b/samples/charts/data-chart/dash-array-trendline/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/dash-array-trendline/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-trendline/.codesandbox/tasks.json b/samples/charts/data-chart/dash-array-trendline/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/dash-array-trendline/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-trendline/.stackblitzrc b/samples/charts/data-chart/dash-array-trendline/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/dash-array-trendline/.stackblitzrc +++ b/samples/charts/data-chart/dash-array-trendline/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-trendline/angular.json b/samples/charts/data-chart/dash-array-trendline/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/dash-array-trendline/angular.json +++ b/samples/charts/data-chart/dash-array-trendline/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/dash-array-trendline/sandbox.config.json b/samples/charts/data-chart/dash-array-trendline/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/dash-array-trendline/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.app.json b/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.base.json b/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.spec.json b/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.worker.json b/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/dash-array-trendline/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/dash-array-trendline/tsconfig.app.json b/samples/charts/data-chart/dash-array-trendline/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/dash-array-trendline/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/dash-array-trendline/tsconfig.json b/samples/charts/data-chart/dash-array-trendline/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/dash-array-trendline/tsconfig.json +++ b/samples/charts/data-chart/dash-array-trendline/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend/.codesandbox/Dockerfile b/samples/charts/data-chart/data-legend/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/data-legend/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend/.codesandbox/tasks.json b/samples/charts/data-chart/data-legend/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/data-legend/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend/.stackblitzrc b/samples/charts/data-chart/data-legend/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/data-legend/.stackblitzrc +++ b/samples/charts/data-chart/data-legend/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend/angular.json b/samples/charts/data-chart/data-legend/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/data-legend/angular.json +++ b/samples/charts/data-chart/data-legend/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/data-legend/sandbox.config.json b/samples/charts/data-chart/data-legend/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/data-legend/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/data-legend/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/data-legend/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/data-legend/src/config/tsconfig.app.json b/samples/charts/data-chart/data-legend/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/data-legend/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/data-legend/src/config/tsconfig.base.json b/samples/charts/data-chart/data-legend/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/data-legend/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/data-legend/src/config/tsconfig.spec.json b/samples/charts/data-chart/data-legend/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/data-legend/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/data-legend/src/config/tsconfig.worker.json b/samples/charts/data-chart/data-legend/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/data-legend/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/data-legend/tsconfig.app.json b/samples/charts/data-chart/data-legend/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/data-legend/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/data-legend/tsconfig.json b/samples/charts/data-chart/data-legend/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/data-legend/tsconfig.json +++ b/samples/charts/data-chart/data-legend/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip/.codesandbox/Dockerfile b/samples/charts/data-chart/data-tooltip/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip/.codesandbox/tasks.json b/samples/charts/data-chart/data-tooltip/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/data-tooltip/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip/.stackblitzrc b/samples/charts/data-chart/data-tooltip/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/data-tooltip/.stackblitzrc +++ b/samples/charts/data-chart/data-tooltip/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip/angular.json b/samples/charts/data-chart/data-tooltip/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/data-tooltip/angular.json +++ b/samples/charts/data-chart/data-tooltip/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/data-tooltip/sandbox.config.json b/samples/charts/data-chart/data-tooltip/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/data-tooltip/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/data-tooltip/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/data-tooltip/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/data-tooltip/src/config/tsconfig.app.json b/samples/charts/data-chart/data-tooltip/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/data-tooltip/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/data-tooltip/src/config/tsconfig.base.json b/samples/charts/data-chart/data-tooltip/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/data-tooltip/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/data-tooltip/src/config/tsconfig.spec.json b/samples/charts/data-chart/data-tooltip/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/data-tooltip/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/data-tooltip/src/config/tsconfig.worker.json b/samples/charts/data-chart/data-tooltip/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/data-tooltip/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/data-tooltip/tsconfig.app.json b/samples/charts/data-chart/data-tooltip/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/data-tooltip/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/data-tooltip/tsconfig.json b/samples/charts/data-chart/data-tooltip/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/data-tooltip/tsconfig.json +++ b/samples/charts/data-chart/data-tooltip/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/final-value-layer-styling/.codesandbox/Dockerfile b/samples/charts/data-chart/final-value-layer-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/final-value-layer-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/final-value-layer-styling/.codesandbox/tasks.json b/samples/charts/data-chart/final-value-layer-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/final-value-layer-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/final-value-layer-styling/.stackblitzrc b/samples/charts/data-chart/final-value-layer-styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/final-value-layer-styling/.stackblitzrc +++ b/samples/charts/data-chart/final-value-layer-styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/final-value-layer-styling/angular.json b/samples/charts/data-chart/final-value-layer-styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/final-value-layer-styling/angular.json +++ b/samples/charts/data-chart/final-value-layer-styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/final-value-layer-styling/sandbox.config.json b/samples/charts/data-chart/final-value-layer-styling/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/final-value-layer-styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.app.json b/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.base.json b/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.spec.json b/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.worker.json b/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/final-value-layer-styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/final-value-layer-styling/tsconfig.app.json b/samples/charts/data-chart/final-value-layer-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/final-value-layer-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/final-value-layer-styling/tsconfig.json b/samples/charts/data-chart/final-value-layer-styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/final-value-layer-styling/tsconfig.json +++ b/samples/charts/data-chart/final-value-layer-styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/financial-price-series/.codesandbox/Dockerfile b/samples/charts/data-chart/financial-price-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/financial-price-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/financial-price-series/.codesandbox/tasks.json b/samples/charts/data-chart/financial-price-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/financial-price-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/financial-price-series/.stackblitzrc b/samples/charts/data-chart/financial-price-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/financial-price-series/.stackblitzrc +++ b/samples/charts/data-chart/financial-price-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/financial-price-series/angular.json b/samples/charts/data-chart/financial-price-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/financial-price-series/angular.json +++ b/samples/charts/data-chart/financial-price-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/financial-price-series/sandbox.config.json b/samples/charts/data-chart/financial-price-series/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/financial-price-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/financial-price-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/financial-price-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/financial-price-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/financial-price-series/src/config/tsconfig.app.json b/samples/charts/data-chart/financial-price-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/financial-price-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/financial-price-series/src/config/tsconfig.base.json b/samples/charts/data-chart/financial-price-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/financial-price-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/financial-price-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/financial-price-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/financial-price-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/financial-price-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/financial-price-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/financial-price-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/financial-price-series/tsconfig.app.json b/samples/charts/data-chart/financial-price-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/financial-price-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/financial-price-series/tsconfig.json b/samples/charts/data-chart/financial-price-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/financial-price-series/tsconfig.json +++ b/samples/charts/data-chart/financial-price-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/format-specifiers/.codesandbox/Dockerfile b/samples/charts/data-chart/format-specifiers/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/format-specifiers/.codesandbox/tasks.json b/samples/charts/data-chart/format-specifiers/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/format-specifiers/.stackblitzrc b/samples/charts/data-chart/format-specifiers/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/format-specifiers/.stackblitzrc +++ b/samples/charts/data-chart/format-specifiers/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/format-specifiers/angular.json b/samples/charts/data-chart/format-specifiers/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/format-specifiers/angular.json +++ b/samples/charts/data-chart/format-specifiers/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/format-specifiers/sandbox.config.json b/samples/charts/data-chart/format-specifiers/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/format-specifiers/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/format-specifiers/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/format-specifiers/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/format-specifiers/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/format-specifiers/src/config/tsconfig.app.json b/samples/charts/data-chart/format-specifiers/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/format-specifiers/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/format-specifiers/src/config/tsconfig.base.json b/samples/charts/data-chart/format-specifiers/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/format-specifiers/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/format-specifiers/src/config/tsconfig.spec.json b/samples/charts/data-chart/format-specifiers/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/format-specifiers/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/format-specifiers/src/config/tsconfig.worker.json b/samples/charts/data-chart/format-specifiers/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/format-specifiers/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/format-specifiers/tsconfig.app.json b/samples/charts/data-chart/format-specifiers/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/format-specifiers/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/format-specifiers/tsconfig.json b/samples/charts/data-chart/format-specifiers/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/format-specifiers/tsconfig.json +++ b/samples/charts/data-chart/format-specifiers/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/legends/.codesandbox/Dockerfile b/samples/charts/data-chart/legends/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/legends/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/legends/.codesandbox/tasks.json b/samples/charts/data-chart/legends/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/legends/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/legends/.stackblitzrc b/samples/charts/data-chart/legends/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/legends/.stackblitzrc +++ b/samples/charts/data-chart/legends/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/legends/angular.json b/samples/charts/data-chart/legends/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/legends/angular.json +++ b/samples/charts/data-chart/legends/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/legends/sandbox.config.json b/samples/charts/data-chart/legends/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/legends/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/legends/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/legends/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/legends/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/legends/src/config/tsconfig.app.json b/samples/charts/data-chart/legends/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/legends/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/legends/src/config/tsconfig.base.json b/samples/charts/data-chart/legends/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/legends/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/legends/src/config/tsconfig.spec.json b/samples/charts/data-chart/legends/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/legends/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/legends/src/config/tsconfig.worker.json b/samples/charts/data-chart/legends/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/legends/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/legends/tsconfig.app.json b/samples/charts/data-chart/legends/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/legends/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/legends/tsconfig.json b/samples/charts/data-chart/legends/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/legends/tsconfig.json +++ b/samples/charts/data-chart/legends/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/polar-area-chart-styling/.codesandbox/Dockerfile b/samples/charts/data-chart/polar-area-chart-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/polar-area-chart-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/polar-area-chart-styling/.codesandbox/tasks.json b/samples/charts/data-chart/polar-area-chart-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/polar-area-chart-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-area-chart-styling/.stackblitzrc b/samples/charts/data-chart/polar-area-chart-styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/.stackblitzrc +++ b/samples/charts/data-chart/polar-area-chart-styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-area-chart-styling/angular.json b/samples/charts/data-chart/polar-area-chart-styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/angular.json +++ b/samples/charts/data-chart/polar-area-chart-styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/polar-area-chart-styling/sandbox.config.json b/samples/charts/data-chart/polar-area-chart-styling/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/polar-area-chart-styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig.app.json b/samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig.base.json b/samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig.spec.json b/samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig.worker.json b/samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/polar-area-chart-styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/polar-area-chart-styling/tsconfig.app.json b/samples/charts/data-chart/polar-area-chart-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/polar-area-chart-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/polar-area-chart-styling/tsconfig.json b/samples/charts/data-chart/polar-area-chart-styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/polar-area-chart-styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/polar-area-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/polar-area-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/polar-area-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/polar-area-chart/.codesandbox/tasks.json b/samples/charts/data-chart/polar-area-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/polar-area-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-area-chart/.stackblitzrc b/samples/charts/data-chart/polar-area-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/polar-area-chart/.stackblitzrc +++ b/samples/charts/data-chart/polar-area-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-area-chart/angular.json b/samples/charts/data-chart/polar-area-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/polar-area-chart/angular.json +++ b/samples/charts/data-chart/polar-area-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/polar-area-chart/sandbox.config.json b/samples/charts/data-chart/polar-area-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/polar-area-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-area-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/polar-area-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/polar-area-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/polar-area-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/polar-area-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/polar-area-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/polar-area-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/polar-area-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/polar-area-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/polar-area-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/polar-area-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/polar-area-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/polar-area-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/polar-area-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/polar-area-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/polar-area-chart/tsconfig.app.json b/samples/charts/data-chart/polar-area-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/polar-area-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/polar-area-chart/tsconfig.json b/samples/charts/data-chart/polar-area-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/polar-area-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-area-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/polar-chart-types/.codesandbox/Dockerfile b/samples/charts/data-chart/polar-chart-types/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/polar-chart-types/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/polar-chart-types/.codesandbox/tasks.json b/samples/charts/data-chart/polar-chart-types/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/polar-chart-types/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-chart-types/.stackblitzrc b/samples/charts/data-chart/polar-chart-types/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/polar-chart-types/.stackblitzrc +++ b/samples/charts/data-chart/polar-chart-types/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-chart-types/angular.json b/samples/charts/data-chart/polar-chart-types/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/polar-chart-types/angular.json +++ b/samples/charts/data-chart/polar-chart-types/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/polar-chart-types/sandbox.config.json b/samples/charts/data-chart/polar-chart-types/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/polar-chart-types/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-chart-types/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/polar-chart-types/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/polar-chart-types/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/polar-chart-types/src/config/tsconfig.app.json b/samples/charts/data-chart/polar-chart-types/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/polar-chart-types/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/polar-chart-types/src/config/tsconfig.base.json b/samples/charts/data-chart/polar-chart-types/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/polar-chart-types/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/polar-chart-types/src/config/tsconfig.spec.json b/samples/charts/data-chart/polar-chart-types/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/polar-chart-types/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/polar-chart-types/src/config/tsconfig.worker.json b/samples/charts/data-chart/polar-chart-types/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/polar-chart-types/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/polar-chart-types/tsconfig.app.json b/samples/charts/data-chart/polar-chart-types/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/polar-chart-types/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/polar-chart-types/tsconfig.json b/samples/charts/data-chart/polar-chart-types/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/polar-chart-types/tsconfig.json +++ b/samples/charts/data-chart/polar-chart-types/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/polar-line-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/polar-line-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/polar-line-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/polar-line-chart/.codesandbox/tasks.json b/samples/charts/data-chart/polar-line-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/polar-line-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-line-chart/.stackblitzrc b/samples/charts/data-chart/polar-line-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/polar-line-chart/.stackblitzrc +++ b/samples/charts/data-chart/polar-line-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-line-chart/angular.json b/samples/charts/data-chart/polar-line-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/polar-line-chart/angular.json +++ b/samples/charts/data-chart/polar-line-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/polar-line-chart/sandbox.config.json b/samples/charts/data-chart/polar-line-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/polar-line-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-line-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/polar-line-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/polar-line-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/polar-line-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/polar-line-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/polar-line-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/polar-line-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/polar-line-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/polar-line-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/polar-line-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/polar-line-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/polar-line-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/polar-line-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/polar-line-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/polar-line-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/polar-line-chart/tsconfig.app.json b/samples/charts/data-chart/polar-line-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/polar-line-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/polar-line-chart/tsconfig.json b/samples/charts/data-chart/polar-line-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/polar-line-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-line-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/polar-scatter-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/polar-scatter-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/polar-scatter-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/polar-scatter-chart/.codesandbox/tasks.json b/samples/charts/data-chart/polar-scatter-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/polar-scatter-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-scatter-chart/.stackblitzrc b/samples/charts/data-chart/polar-scatter-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/polar-scatter-chart/.stackblitzrc +++ b/samples/charts/data-chart/polar-scatter-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-scatter-chart/angular.json b/samples/charts/data-chart/polar-scatter-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/polar-scatter-chart/angular.json +++ b/samples/charts/data-chart/polar-scatter-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/polar-scatter-chart/sandbox.config.json b/samples/charts/data-chart/polar-scatter-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/polar-scatter-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/polar-scatter-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/polar-scatter-chart/tsconfig.app.json b/samples/charts/data-chart/polar-scatter-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/polar-scatter-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/polar-scatter-chart/tsconfig.json b/samples/charts/data-chart/polar-scatter-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/polar-scatter-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-scatter-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/polar-spline-area-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/polar-spline-area-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/polar-spline-area-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/polar-spline-area-chart/.codesandbox/tasks.json b/samples/charts/data-chart/polar-spline-area-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/polar-spline-area-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-spline-area-chart/.stackblitzrc b/samples/charts/data-chart/polar-spline-area-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/.stackblitzrc +++ b/samples/charts/data-chart/polar-spline-area-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-spline-area-chart/angular.json b/samples/charts/data-chart/polar-spline-area-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/angular.json +++ b/samples/charts/data-chart/polar-spline-area-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/polar-spline-area-chart/sandbox.config.json b/samples/charts/data-chart/polar-spline-area-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/polar-spline-area-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/polar-spline-area-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/polar-spline-area-chart/tsconfig.app.json b/samples/charts/data-chart/polar-spline-area-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/polar-spline-area-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/polar-spline-area-chart/tsconfig.json b/samples/charts/data-chart/polar-spline-area-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-spline-area-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/polar-spline-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/polar-spline-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/polar-spline-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/polar-spline-chart/.codesandbox/tasks.json b/samples/charts/data-chart/polar-spline-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/polar-spline-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-spline-chart/.stackblitzrc b/samples/charts/data-chart/polar-spline-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/polar-spline-chart/.stackblitzrc +++ b/samples/charts/data-chart/polar-spline-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-spline-chart/angular.json b/samples/charts/data-chart/polar-spline-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/polar-spline-chart/angular.json +++ b/samples/charts/data-chart/polar-spline-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/polar-spline-chart/sandbox.config.json b/samples/charts/data-chart/polar-spline-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/polar-spline-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/polar-spline-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/polar-spline-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/polar-spline-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/polar-spline-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/polar-spline-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/polar-spline-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/polar-spline-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/polar-spline-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/polar-spline-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/polar-spline-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/polar-spline-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/polar-spline-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/polar-spline-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/polar-spline-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/polar-spline-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/polar-spline-chart/tsconfig.app.json b/samples/charts/data-chart/polar-spline-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/polar-spline-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/polar-spline-chart/tsconfig.json b/samples/charts/data-chart/polar-spline-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/polar-spline-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-spline-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/radial-area-chart-styling/.codesandbox/Dockerfile b/samples/charts/data-chart/radial-area-chart-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/radial-area-chart-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/radial-area-chart-styling/.codesandbox/tasks.json b/samples/charts/data-chart/radial-area-chart-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/radial-area-chart-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-area-chart-styling/.stackblitzrc b/samples/charts/data-chart/radial-area-chart-styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/.stackblitzrc +++ b/samples/charts/data-chart/radial-area-chart-styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-area-chart-styling/angular.json b/samples/charts/data-chart/radial-area-chart-styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/angular.json +++ b/samples/charts/data-chart/radial-area-chart-styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/radial-area-chart-styling/sandbox.config.json b/samples/charts/data-chart/radial-area-chart-styling/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/radial-area-chart-styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig.app.json b/samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig.base.json b/samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig.spec.json b/samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig.worker.json b/samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/radial-area-chart-styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/radial-area-chart-styling/tsconfig.app.json b/samples/charts/data-chart/radial-area-chart-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/radial-area-chart-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/radial-area-chart-styling/tsconfig.json b/samples/charts/data-chart/radial-area-chart-styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/radial-area-chart-styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/radial-area-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/radial-area-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/radial-area-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/radial-area-chart/.codesandbox/tasks.json b/samples/charts/data-chart/radial-area-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/radial-area-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-area-chart/.stackblitzrc b/samples/charts/data-chart/radial-area-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/radial-area-chart/.stackblitzrc +++ b/samples/charts/data-chart/radial-area-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-area-chart/angular.json b/samples/charts/data-chart/radial-area-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/radial-area-chart/angular.json +++ b/samples/charts/data-chart/radial-area-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/radial-area-chart/sandbox.config.json b/samples/charts/data-chart/radial-area-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/radial-area-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-area-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/radial-area-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/radial-area-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/radial-area-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/radial-area-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/radial-area-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/radial-area-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/radial-area-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/radial-area-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/radial-area-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/radial-area-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/radial-area-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/radial-area-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/radial-area-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/radial-area-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/radial-area-chart/tsconfig.app.json b/samples/charts/data-chart/radial-area-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/radial-area-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/radial-area-chart/tsconfig.json b/samples/charts/data-chart/radial-area-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/radial-area-chart/tsconfig.json +++ b/samples/charts/data-chart/radial-area-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/radial-chart-types/.codesandbox/Dockerfile b/samples/charts/data-chart/radial-chart-types/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/radial-chart-types/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/radial-chart-types/.codesandbox/tasks.json b/samples/charts/data-chart/radial-chart-types/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/radial-chart-types/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-chart-types/.stackblitzrc b/samples/charts/data-chart/radial-chart-types/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/radial-chart-types/.stackblitzrc +++ b/samples/charts/data-chart/radial-chart-types/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-chart-types/angular.json b/samples/charts/data-chart/radial-chart-types/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/radial-chart-types/angular.json +++ b/samples/charts/data-chart/radial-chart-types/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/radial-chart-types/sandbox.config.json b/samples/charts/data-chart/radial-chart-types/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/radial-chart-types/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-chart-types/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/radial-chart-types/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/radial-chart-types/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/radial-chart-types/src/config/tsconfig.app.json b/samples/charts/data-chart/radial-chart-types/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/radial-chart-types/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/radial-chart-types/src/config/tsconfig.base.json b/samples/charts/data-chart/radial-chart-types/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/radial-chart-types/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/radial-chart-types/src/config/tsconfig.spec.json b/samples/charts/data-chart/radial-chart-types/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/radial-chart-types/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/radial-chart-types/src/config/tsconfig.worker.json b/samples/charts/data-chart/radial-chart-types/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/radial-chart-types/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/radial-chart-types/tsconfig.app.json b/samples/charts/data-chart/radial-chart-types/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/radial-chart-types/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/radial-chart-types/tsconfig.json b/samples/charts/data-chart/radial-chart-types/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/radial-chart-types/tsconfig.json +++ b/samples/charts/data-chart/radial-chart-types/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/radial-column-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/radial-column-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/radial-column-chart/.codesandbox/tasks.json b/samples/charts/data-chart/radial-column-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-column-chart/.stackblitzrc b/samples/charts/data-chart/radial-column-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/radial-column-chart/.stackblitzrc +++ b/samples/charts/data-chart/radial-column-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-column-chart/angular.json b/samples/charts/data-chart/radial-column-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/radial-column-chart/angular.json +++ b/samples/charts/data-chart/radial-column-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/radial-column-chart/sandbox.config.json b/samples/charts/data-chart/radial-column-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/radial-column-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-column-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/radial-column-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/radial-column-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/radial-column-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/radial-column-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/radial-column-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/radial-column-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/radial-column-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/radial-column-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/radial-column-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/radial-column-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/radial-column-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/radial-column-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/radial-column-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/radial-column-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/radial-column-chart/tsconfig.app.json b/samples/charts/data-chart/radial-column-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/radial-column-chart/tsconfig.json b/samples/charts/data-chart/radial-column-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/radial-column-chart/tsconfig.json +++ b/samples/charts/data-chart/radial-column-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/radial-line-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/radial-line-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/radial-line-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/radial-line-chart/.codesandbox/tasks.json b/samples/charts/data-chart/radial-line-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/radial-line-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-line-chart/.stackblitzrc b/samples/charts/data-chart/radial-line-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/radial-line-chart/.stackblitzrc +++ b/samples/charts/data-chart/radial-line-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-line-chart/angular.json b/samples/charts/data-chart/radial-line-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/radial-line-chart/angular.json +++ b/samples/charts/data-chart/radial-line-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/radial-line-chart/sandbox.config.json b/samples/charts/data-chart/radial-line-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/radial-line-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-line-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/radial-line-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/radial-line-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/radial-line-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/radial-line-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/radial-line-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/radial-line-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/radial-line-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/radial-line-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/radial-line-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/radial-line-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/radial-line-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/radial-line-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/radial-line-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/radial-line-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/radial-line-chart/tsconfig.app.json b/samples/charts/data-chart/radial-line-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/radial-line-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/radial-line-chart/tsconfig.json b/samples/charts/data-chart/radial-line-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/radial-line-chart/tsconfig.json +++ b/samples/charts/data-chart/radial-line-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/radial-pie-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/radial-pie-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/radial-pie-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/radial-pie-chart/.codesandbox/tasks.json b/samples/charts/data-chart/radial-pie-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/radial-pie-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-pie-chart/.stackblitzrc b/samples/charts/data-chart/radial-pie-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/radial-pie-chart/.stackblitzrc +++ b/samples/charts/data-chart/radial-pie-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-pie-chart/angular.json b/samples/charts/data-chart/radial-pie-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/radial-pie-chart/angular.json +++ b/samples/charts/data-chart/radial-pie-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/radial-pie-chart/sandbox.config.json b/samples/charts/data-chart/radial-pie-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/radial-pie-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-pie-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/radial-pie-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/radial-pie-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/radial-pie-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/radial-pie-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/radial-pie-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/radial-pie-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/radial-pie-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/radial-pie-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/radial-pie-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/radial-pie-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/radial-pie-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/radial-pie-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/radial-pie-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/radial-pie-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/radial-pie-chart/tsconfig.app.json b/samples/charts/data-chart/radial-pie-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/radial-pie-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/radial-pie-chart/tsconfig.json b/samples/charts/data-chart/radial-pie-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/radial-pie-chart/tsconfig.json +++ b/samples/charts/data-chart/radial-pie-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/range-area-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/range-area-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/range-area-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/range-area-chart/.codesandbox/tasks.json b/samples/charts/data-chart/range-area-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/range-area-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/range-area-chart/.stackblitzrc b/samples/charts/data-chart/range-area-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/range-area-chart/.stackblitzrc +++ b/samples/charts/data-chart/range-area-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/range-area-chart/angular.json b/samples/charts/data-chart/range-area-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/range-area-chart/angular.json +++ b/samples/charts/data-chart/range-area-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/range-area-chart/sandbox.config.json b/samples/charts/data-chart/range-area-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/range-area-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/range-area-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/range-area-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/range-area-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/range-area-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/range-area-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/range-area-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/range-area-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/range-area-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/range-area-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/range-area-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/range-area-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/range-area-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/range-area-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/range-area-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/range-area-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/range-area-chart/tsconfig.app.json b/samples/charts/data-chart/range-area-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/range-area-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/range-area-chart/tsconfig.json b/samples/charts/data-chart/range-area-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/range-area-chart/tsconfig.json +++ b/samples/charts/data-chart/range-area-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/range-column-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/range-column-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/range-column-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/range-column-chart/.codesandbox/tasks.json b/samples/charts/data-chart/range-column-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/range-column-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/range-column-chart/.stackblitzrc b/samples/charts/data-chart/range-column-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/range-column-chart/.stackblitzrc +++ b/samples/charts/data-chart/range-column-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/range-column-chart/angular.json b/samples/charts/data-chart/range-column-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/range-column-chart/angular.json +++ b/samples/charts/data-chart/range-column-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/range-column-chart/sandbox.config.json b/samples/charts/data-chart/range-column-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/range-column-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/range-column-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/range-column-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/range-column-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/range-column-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/range-column-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/range-column-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/range-column-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/range-column-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/range-column-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/range-column-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/range-column-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/range-column-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/range-column-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/range-column-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/range-column-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/range-column-chart/tsconfig.app.json b/samples/charts/data-chart/range-column-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/range-column-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/range-column-chart/tsconfig.json b/samples/charts/data-chart/range-column-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/range-column-chart/tsconfig.json +++ b/samples/charts/data-chart/range-column-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/.codesandbox/Dockerfile b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/.codesandbox/tasks.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/.stackblitzrc b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/.stackblitzrc +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/angular.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/angular.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/sandbox.config.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.app.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.base.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.spec.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.worker.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.app.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/.codesandbox/Dockerfile b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/.codesandbox/tasks.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/.stackblitzrc b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/.stackblitzrc +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/angular.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/angular.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/sandbox.config.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig.app.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig.base.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig.spec.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig.worker.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.app.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/.codesandbox/Dockerfile b/samples/charts/data-chart/scatter-bubble-chart-single-source/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/.codesandbox/tasks.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/.stackblitzrc b/samples/charts/data-chart/scatter-bubble-chart-single-source/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/.stackblitzrc +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/angular.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/angular.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/sandbox.config.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig.app.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig.base.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig.spec.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig.worker.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.app.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/.codesandbox/Dockerfile b/samples/charts/data-chart/scatter-bubble-chart-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/.codesandbox/tasks.json b/samples/charts/data-chart/scatter-bubble-chart-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/.stackblitzrc b/samples/charts/data-chart/scatter-bubble-chart-styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/.stackblitzrc +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/angular.json b/samples/charts/data-chart/scatter-bubble-chart-styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/angular.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/sandbox.config.json b/samples/charts/data-chart/scatter-bubble-chart-styling/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig.app.json b/samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig.base.json b/samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig.spec.json b/samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig.worker.json b/samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.app.json b/samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.json b/samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-line-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/scatter-line-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/scatter-line-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-line-chart/.codesandbox/tasks.json b/samples/charts/data-chart/scatter-line-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/scatter-line-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-line-chart/.stackblitzrc b/samples/charts/data-chart/scatter-line-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/scatter-line-chart/.stackblitzrc +++ b/samples/charts/data-chart/scatter-line-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-line-chart/angular.json b/samples/charts/data-chart/scatter-line-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/scatter-line-chart/angular.json +++ b/samples/charts/data-chart/scatter-line-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/scatter-line-chart/sandbox.config.json b/samples/charts/data-chart/scatter-line-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/scatter-line-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-line-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/scatter-line-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/scatter-line-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/scatter-line-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/scatter-line-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/scatter-line-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-line-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/scatter-line-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/scatter-line-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/scatter-line-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/scatter-line-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/scatter-line-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-line-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/scatter-line-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/scatter-line-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-line-chart/tsconfig.app.json b/samples/charts/data-chart/scatter-line-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/scatter-line-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/scatter-line-chart/tsconfig.json b/samples/charts/data-chart/scatter-line-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/scatter-line-chart/tsconfig.json +++ b/samples/charts/data-chart/scatter-line-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-point-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/scatter-point-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/scatter-point-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-point-chart/.codesandbox/tasks.json b/samples/charts/data-chart/scatter-point-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/scatter-point-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-point-chart/.stackblitzrc b/samples/charts/data-chart/scatter-point-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/scatter-point-chart/.stackblitzrc +++ b/samples/charts/data-chart/scatter-point-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-point-chart/angular.json b/samples/charts/data-chart/scatter-point-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/scatter-point-chart/angular.json +++ b/samples/charts/data-chart/scatter-point-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/scatter-point-chart/sandbox.config.json b/samples/charts/data-chart/scatter-point-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/scatter-point-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-point-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/scatter-point-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/scatter-point-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/scatter-point-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/scatter-point-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/scatter-point-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-point-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/scatter-point-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/scatter-point-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/scatter-point-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/scatter-point-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/scatter-point-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-point-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/scatter-point-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/scatter-point-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-point-chart/tsconfig.app.json b/samples/charts/data-chart/scatter-point-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/scatter-point-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/scatter-point-chart/tsconfig.json b/samples/charts/data-chart/scatter-point-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/scatter-point-chart/tsconfig.json +++ b/samples/charts/data-chart/scatter-point-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-spline-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/scatter-spline-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/scatter-spline-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-spline-chart/.codesandbox/tasks.json b/samples/charts/data-chart/scatter-spline-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/scatter-spline-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-spline-chart/.stackblitzrc b/samples/charts/data-chart/scatter-spline-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/scatter-spline-chart/.stackblitzrc +++ b/samples/charts/data-chart/scatter-spline-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-spline-chart/angular.json b/samples/charts/data-chart/scatter-spline-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/scatter-spline-chart/angular.json +++ b/samples/charts/data-chart/scatter-spline-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/scatter-spline-chart/sandbox.config.json b/samples/charts/data-chart/scatter-spline-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/scatter-spline-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/scatter-spline-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-spline-chart/tsconfig.app.json b/samples/charts/data-chart/scatter-spline-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/scatter-spline-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/scatter-spline-chart/tsconfig.json b/samples/charts/data-chart/scatter-spline-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/scatter-spline-chart/tsconfig.json +++ b/samples/charts/data-chart/scatter-spline-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/series-animations/.codesandbox/Dockerfile b/samples/charts/data-chart/series-animations/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/series-animations/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/series-animations/.codesandbox/tasks.json b/samples/charts/data-chart/series-animations/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/series-animations/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/series-animations/.stackblitzrc b/samples/charts/data-chart/series-animations/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/series-animations/.stackblitzrc +++ b/samples/charts/data-chart/series-animations/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/series-animations/angular.json b/samples/charts/data-chart/series-animations/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/series-animations/angular.json +++ b/samples/charts/data-chart/series-animations/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/series-animations/sandbox.config.json b/samples/charts/data-chart/series-animations/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/series-animations/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/series-animations/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/series-animations/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/series-animations/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/series-animations/src/config/tsconfig.app.json b/samples/charts/data-chart/series-animations/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/series-animations/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/series-animations/src/config/tsconfig.base.json b/samples/charts/data-chart/series-animations/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/series-animations/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/series-animations/src/config/tsconfig.spec.json b/samples/charts/data-chart/series-animations/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/series-animations/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/series-animations/src/config/tsconfig.worker.json b/samples/charts/data-chart/series-animations/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/series-animations/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/series-animations/tsconfig.app.json b/samples/charts/data-chart/series-animations/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/series-animations/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/series-animations/tsconfig.json b/samples/charts/data-chart/series-animations/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/series-animations/tsconfig.json +++ b/samples/charts/data-chart/series-animations/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/series-annotations/.codesandbox/Dockerfile b/samples/charts/data-chart/series-annotations/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/series-annotations/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/series-annotations/.codesandbox/tasks.json b/samples/charts/data-chart/series-annotations/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/series-annotations/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/series-annotations/.stackblitzrc b/samples/charts/data-chart/series-annotations/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/series-annotations/.stackblitzrc +++ b/samples/charts/data-chart/series-annotations/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/series-annotations/angular.json b/samples/charts/data-chart/series-annotations/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/series-annotations/angular.json +++ b/samples/charts/data-chart/series-annotations/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/series-annotations/sandbox.config.json b/samples/charts/data-chart/series-annotations/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/series-annotations/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/series-annotations/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/series-annotations/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/series-annotations/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/series-annotations/src/config/tsconfig.app.json b/samples/charts/data-chart/series-annotations/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/series-annotations/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/series-annotations/src/config/tsconfig.base.json b/samples/charts/data-chart/series-annotations/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/series-annotations/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/series-annotations/src/config/tsconfig.spec.json b/samples/charts/data-chart/series-annotations/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/series-annotations/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/series-annotations/src/config/tsconfig.worker.json b/samples/charts/data-chart/series-annotations/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/series-annotations/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/series-annotations/tsconfig.app.json b/samples/charts/data-chart/series-annotations/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/series-annotations/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/series-annotations/tsconfig.json b/samples/charts/data-chart/series-annotations/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/series-annotations/tsconfig.json +++ b/samples/charts/data-chart/series-annotations/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/series-highlighting/.codesandbox/Dockerfile b/samples/charts/data-chart/series-highlighting/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/series-highlighting/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/series-highlighting/.codesandbox/tasks.json b/samples/charts/data-chart/series-highlighting/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/series-highlighting/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/series-highlighting/.stackblitzrc b/samples/charts/data-chart/series-highlighting/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/series-highlighting/.stackblitzrc +++ b/samples/charts/data-chart/series-highlighting/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/series-highlighting/angular.json b/samples/charts/data-chart/series-highlighting/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/series-highlighting/angular.json +++ b/samples/charts/data-chart/series-highlighting/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/series-highlighting/sandbox.config.json b/samples/charts/data-chart/series-highlighting/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/series-highlighting/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/series-highlighting/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/series-highlighting/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/series-highlighting/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/series-highlighting/src/config/tsconfig.app.json b/samples/charts/data-chart/series-highlighting/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/series-highlighting/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/series-highlighting/src/config/tsconfig.base.json b/samples/charts/data-chart/series-highlighting/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/series-highlighting/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/series-highlighting/src/config/tsconfig.spec.json b/samples/charts/data-chart/series-highlighting/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/series-highlighting/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/series-highlighting/src/config/tsconfig.worker.json b/samples/charts/data-chart/series-highlighting/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/series-highlighting/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/series-highlighting/tsconfig.app.json b/samples/charts/data-chart/series-highlighting/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/series-highlighting/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/series-highlighting/tsconfig.json b/samples/charts/data-chart/series-highlighting/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/series-highlighting/tsconfig.json +++ b/samples/charts/data-chart/series-highlighting/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/series-marker-template/.codesandbox/Dockerfile b/samples/charts/data-chart/series-marker-template/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/series-marker-template/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/series-marker-template/.codesandbox/tasks.json b/samples/charts/data-chart/series-marker-template/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/series-marker-template/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/series-marker-template/.stackblitzrc b/samples/charts/data-chart/series-marker-template/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/series-marker-template/.stackblitzrc +++ b/samples/charts/data-chart/series-marker-template/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/series-marker-template/angular.json b/samples/charts/data-chart/series-marker-template/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/series-marker-template/angular.json +++ b/samples/charts/data-chart/series-marker-template/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/series-marker-template/sandbox.config.json b/samples/charts/data-chart/series-marker-template/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/series-marker-template/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/series-marker-template/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/series-marker-template/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/series-marker-template/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/series-marker-template/src/config/tsconfig.app.json b/samples/charts/data-chart/series-marker-template/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/series-marker-template/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/series-marker-template/src/config/tsconfig.base.json b/samples/charts/data-chart/series-marker-template/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/series-marker-template/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/series-marker-template/src/config/tsconfig.spec.json b/samples/charts/data-chart/series-marker-template/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/series-marker-template/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/series-marker-template/src/config/tsconfig.worker.json b/samples/charts/data-chart/series-marker-template/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/series-marker-template/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/series-marker-template/tsconfig.app.json b/samples/charts/data-chart/series-marker-template/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/series-marker-template/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/series-marker-template/tsconfig.json b/samples/charts/data-chart/series-marker-template/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/series-marker-template/tsconfig.json +++ b/samples/charts/data-chart/series-marker-template/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/series-markers/.codesandbox/Dockerfile b/samples/charts/data-chart/series-markers/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/series-markers/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/series-markers/.codesandbox/tasks.json b/samples/charts/data-chart/series-markers/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/series-markers/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/series-markers/.stackblitzrc b/samples/charts/data-chart/series-markers/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/series-markers/.stackblitzrc +++ b/samples/charts/data-chart/series-markers/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/series-markers/angular.json b/samples/charts/data-chart/series-markers/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/series-markers/angular.json +++ b/samples/charts/data-chart/series-markers/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/series-markers/sandbox.config.json b/samples/charts/data-chart/series-markers/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/series-markers/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/series-markers/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/series-markers/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/series-markers/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/series-markers/src/config/tsconfig.app.json b/samples/charts/data-chart/series-markers/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/series-markers/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/series-markers/src/config/tsconfig.base.json b/samples/charts/data-chart/series-markers/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/series-markers/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/series-markers/src/config/tsconfig.spec.json b/samples/charts/data-chart/series-markers/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/series-markers/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/series-markers/src/config/tsconfig.worker.json b/samples/charts/data-chart/series-markers/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/series-markers/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/series-markers/tsconfig.app.json b/samples/charts/data-chart/series-markers/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/series-markers/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/series-markers/tsconfig.json b/samples/charts/data-chart/series-markers/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/series-markers/tsconfig.json +++ b/samples/charts/data-chart/series-markers/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/series-tooltips/.codesandbox/Dockerfile b/samples/charts/data-chart/series-tooltips/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/series-tooltips/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/series-tooltips/.codesandbox/tasks.json b/samples/charts/data-chart/series-tooltips/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/series-tooltips/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/series-tooltips/.stackblitzrc b/samples/charts/data-chart/series-tooltips/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/series-tooltips/.stackblitzrc +++ b/samples/charts/data-chart/series-tooltips/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/series-tooltips/angular.json b/samples/charts/data-chart/series-tooltips/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/series-tooltips/angular.json +++ b/samples/charts/data-chart/series-tooltips/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/series-tooltips/sandbox.config.json b/samples/charts/data-chart/series-tooltips/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/series-tooltips/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/series-tooltips/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/series-tooltips/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/series-tooltips/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/series-tooltips/src/config/tsconfig.app.json b/samples/charts/data-chart/series-tooltips/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/series-tooltips/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/series-tooltips/src/config/tsconfig.base.json b/samples/charts/data-chart/series-tooltips/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/series-tooltips/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/series-tooltips/src/config/tsconfig.spec.json b/samples/charts/data-chart/series-tooltips/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/series-tooltips/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/series-tooltips/src/config/tsconfig.worker.json b/samples/charts/data-chart/series-tooltips/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/series-tooltips/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/series-tooltips/tsconfig.app.json b/samples/charts/data-chart/series-tooltips/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/series-tooltips/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/series-tooltips/tsconfig.json b/samples/charts/data-chart/series-tooltips/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/series-tooltips/tsconfig.json +++ b/samples/charts/data-chart/series-tooltips/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/series-trendlines/.codesandbox/Dockerfile b/samples/charts/data-chart/series-trendlines/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/series-trendlines/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/series-trendlines/.codesandbox/tasks.json b/samples/charts/data-chart/series-trendlines/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/series-trendlines/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/series-trendlines/.stackblitzrc b/samples/charts/data-chart/series-trendlines/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/series-trendlines/.stackblitzrc +++ b/samples/charts/data-chart/series-trendlines/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/series-trendlines/angular.json b/samples/charts/data-chart/series-trendlines/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/series-trendlines/angular.json +++ b/samples/charts/data-chart/series-trendlines/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/series-trendlines/sandbox.config.json b/samples/charts/data-chart/series-trendlines/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/series-trendlines/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/series-trendlines/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/series-trendlines/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/series-trendlines/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/series-trendlines/src/config/tsconfig.app.json b/samples/charts/data-chart/series-trendlines/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/series-trendlines/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/series-trendlines/src/config/tsconfig.base.json b/samples/charts/data-chart/series-trendlines/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/series-trendlines/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/series-trendlines/src/config/tsconfig.spec.json b/samples/charts/data-chart/series-trendlines/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/series-trendlines/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/series-trendlines/src/config/tsconfig.worker.json b/samples/charts/data-chart/series-trendlines/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/series-trendlines/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/series-trendlines/tsconfig.app.json b/samples/charts/data-chart/series-trendlines/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/series-trendlines/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/series-trendlines/tsconfig.json b/samples/charts/data-chart/series-trendlines/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/series-trendlines/tsconfig.json +++ b/samples/charts/data-chart/series-trendlines/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/series-value-overlay/.codesandbox/Dockerfile b/samples/charts/data-chart/series-value-overlay/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/series-value-overlay/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/series-value-overlay/.codesandbox/tasks.json b/samples/charts/data-chart/series-value-overlay/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/series-value-overlay/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/series-value-overlay/.stackblitzrc b/samples/charts/data-chart/series-value-overlay/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/series-value-overlay/.stackblitzrc +++ b/samples/charts/data-chart/series-value-overlay/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/series-value-overlay/angular.json b/samples/charts/data-chart/series-value-overlay/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/series-value-overlay/angular.json +++ b/samples/charts/data-chart/series-value-overlay/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/series-value-overlay/sandbox.config.json b/samples/charts/data-chart/series-value-overlay/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/series-value-overlay/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/series-value-overlay/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/series-value-overlay/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/series-value-overlay/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/series-value-overlay/src/config/tsconfig.app.json b/samples/charts/data-chart/series-value-overlay/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/series-value-overlay/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/series-value-overlay/src/config/tsconfig.base.json b/samples/charts/data-chart/series-value-overlay/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/series-value-overlay/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/series-value-overlay/src/config/tsconfig.spec.json b/samples/charts/data-chart/series-value-overlay/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/series-value-overlay/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/series-value-overlay/src/config/tsconfig.worker.json b/samples/charts/data-chart/series-value-overlay/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/series-value-overlay/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/series-value-overlay/tsconfig.app.json b/samples/charts/data-chart/series-value-overlay/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/series-value-overlay/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/series-value-overlay/tsconfig.json b/samples/charts/data-chart/series-value-overlay/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/series-value-overlay/tsconfig.json +++ b/samples/charts/data-chart/series-value-overlay/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-area-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/stacked-100-area-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/stacked-100-area-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-area-chart/.codesandbox/tasks.json b/samples/charts/data-chart/stacked-100-area-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/stacked-100-area-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-area-chart/.stackblitzrc b/samples/charts/data-chart/stacked-100-area-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/.stackblitzrc +++ b/samples/charts/data-chart/stacked-100-area-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-area-chart/angular.json b/samples/charts/data-chart/stacked-100-area-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-area-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/stacked-100-area-chart/sandbox.config.json b/samples/charts/data-chart/stacked-100-area-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/stacked-100-area-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/stacked-100-area-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-area-chart/tsconfig.app.json b/samples/charts/data-chart/stacked-100-area-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/stacked-100-area-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/stacked-100-area-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-area-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-area-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-bar-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/stacked-100-bar-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/stacked-100-bar-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-bar-chart/.codesandbox/tasks.json b/samples/charts/data-chart/stacked-100-bar-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/stacked-100-bar-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-bar-chart/.stackblitzrc b/samples/charts/data-chart/stacked-100-bar-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/.stackblitzrc +++ b/samples/charts/data-chart/stacked-100-bar-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-bar-chart/angular.json b/samples/charts/data-chart/stacked-100-bar-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/sandbox.config.json b/samples/charts/data-chart/stacked-100-bar-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/stacked-100-bar-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/stacked-100-bar-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-bar-chart/tsconfig.app.json b/samples/charts/data-chart/stacked-100-bar-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/stacked-100-bar-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/stacked-100-bar-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-bar-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-column-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/stacked-100-column-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/stacked-100-column-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-column-chart/.codesandbox/tasks.json b/samples/charts/data-chart/stacked-100-column-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/stacked-100-column-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-column-chart/.stackblitzrc b/samples/charts/data-chart/stacked-100-column-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/.stackblitzrc +++ b/samples/charts/data-chart/stacked-100-column-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-column-chart/angular.json b/samples/charts/data-chart/stacked-100-column-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-column-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/stacked-100-column-chart/sandbox.config.json b/samples/charts/data-chart/stacked-100-column-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/stacked-100-column-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/stacked-100-column-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-column-chart/tsconfig.app.json b/samples/charts/data-chart/stacked-100-column-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/stacked-100-column-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/stacked-100-column-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-column-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-column-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-line-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/stacked-100-line-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/stacked-100-line-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-line-chart/.codesandbox/tasks.json b/samples/charts/data-chart/stacked-100-line-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/stacked-100-line-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-line-chart/.stackblitzrc b/samples/charts/data-chart/stacked-100-line-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/.stackblitzrc +++ b/samples/charts/data-chart/stacked-100-line-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-line-chart/angular.json b/samples/charts/data-chart/stacked-100-line-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-line-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/stacked-100-line-chart/sandbox.config.json b/samples/charts/data-chart/stacked-100-line-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/stacked-100-line-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/stacked-100-line-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-line-chart/tsconfig.app.json b/samples/charts/data-chart/stacked-100-line-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/stacked-100-line-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/stacked-100-line-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-line-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-line-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/stacked-100-spline-area-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/.codesandbox/tasks.json b/samples/charts/data-chart/stacked-100-spline-area-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/.stackblitzrc b/samples/charts/data-chart/stacked-100-spline-area-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/.stackblitzrc +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/angular.json b/samples/charts/data-chart/stacked-100-spline-area-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/sandbox.config.json b/samples/charts/data-chart/stacked-100-spline-area-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.app.json b/samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-spline-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/stacked-100-spline-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/stacked-100-spline-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-spline-chart/.codesandbox/tasks.json b/samples/charts/data-chart/stacked-100-spline-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/stacked-100-spline-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-spline-chart/.stackblitzrc b/samples/charts/data-chart/stacked-100-spline-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/.stackblitzrc +++ b/samples/charts/data-chart/stacked-100-spline-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-spline-chart/angular.json b/samples/charts/data-chart/stacked-100-spline-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/sandbox.config.json b/samples/charts/data-chart/stacked-100-spline-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/stacked-100-spline-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/stacked-100-spline-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-100-spline-chart/tsconfig.app.json b/samples/charts/data-chart/stacked-100-spline-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/stacked-100-spline-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/stacked-100-spline-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-spline-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-area-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/stacked-area-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/stacked-area-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-area-chart/.codesandbox/tasks.json b/samples/charts/data-chart/stacked-area-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/stacked-area-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-area-chart/.stackblitzrc b/samples/charts/data-chart/stacked-area-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/stacked-area-chart/.stackblitzrc +++ b/samples/charts/data-chart/stacked-area-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-area-chart/angular.json b/samples/charts/data-chart/stacked-area-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/stacked-area-chart/angular.json +++ b/samples/charts/data-chart/stacked-area-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/stacked-area-chart/sandbox.config.json b/samples/charts/data-chart/stacked-area-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/stacked-area-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-area-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/stacked-area-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/stacked-area-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/stacked-area-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/stacked-area-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/stacked-area-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-area-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/stacked-area-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/stacked-area-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/stacked-area-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/stacked-area-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/stacked-area-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-area-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/stacked-area-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/stacked-area-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-area-chart/tsconfig.app.json b/samples/charts/data-chart/stacked-area-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/stacked-area-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/stacked-area-chart/tsconfig.json b/samples/charts/data-chart/stacked-area-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/stacked-area-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-area-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-bar-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/stacked-bar-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/stacked-bar-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-bar-chart/.codesandbox/tasks.json b/samples/charts/data-chart/stacked-bar-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/stacked-bar-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-bar-chart/.stackblitzrc b/samples/charts/data-chart/stacked-bar-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/stacked-bar-chart/.stackblitzrc +++ b/samples/charts/data-chart/stacked-bar-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-bar-chart/angular.json b/samples/charts/data-chart/stacked-bar-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/stacked-bar-chart/angular.json +++ b/samples/charts/data-chart/stacked-bar-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/stacked-bar-chart/sandbox.config.json b/samples/charts/data-chart/stacked-bar-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/stacked-bar-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/stacked-bar-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-bar-chart/tsconfig.app.json b/samples/charts/data-chart/stacked-bar-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/stacked-bar-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/stacked-bar-chart/tsconfig.json b/samples/charts/data-chart/stacked-bar-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/stacked-bar-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-bar-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-chart-types/.codesandbox/Dockerfile b/samples/charts/data-chart/stacked-chart-types/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/stacked-chart-types/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-chart-types/.codesandbox/tasks.json b/samples/charts/data-chart/stacked-chart-types/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/stacked-chart-types/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-chart-types/.stackblitzrc b/samples/charts/data-chart/stacked-chart-types/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/stacked-chart-types/.stackblitzrc +++ b/samples/charts/data-chart/stacked-chart-types/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-chart-types/angular.json b/samples/charts/data-chart/stacked-chart-types/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/stacked-chart-types/angular.json +++ b/samples/charts/data-chart/stacked-chart-types/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/stacked-chart-types/sandbox.config.json b/samples/charts/data-chart/stacked-chart-types/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/stacked-chart-types/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-chart-types/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/stacked-chart-types/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/stacked-chart-types/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/stacked-chart-types/src/config/tsconfig.app.json b/samples/charts/data-chart/stacked-chart-types/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/stacked-chart-types/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-chart-types/src/config/tsconfig.base.json b/samples/charts/data-chart/stacked-chart-types/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/stacked-chart-types/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/stacked-chart-types/src/config/tsconfig.spec.json b/samples/charts/data-chart/stacked-chart-types/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/stacked-chart-types/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-chart-types/src/config/tsconfig.worker.json b/samples/charts/data-chart/stacked-chart-types/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/stacked-chart-types/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-chart-types/tsconfig.app.json b/samples/charts/data-chart/stacked-chart-types/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/stacked-chart-types/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/stacked-chart-types/tsconfig.json b/samples/charts/data-chart/stacked-chart-types/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/stacked-chart-types/tsconfig.json +++ b/samples/charts/data-chart/stacked-chart-types/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-column-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/stacked-column-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/stacked-column-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-column-chart/.codesandbox/tasks.json b/samples/charts/data-chart/stacked-column-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/stacked-column-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-column-chart/.stackblitzrc b/samples/charts/data-chart/stacked-column-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/stacked-column-chart/.stackblitzrc +++ b/samples/charts/data-chart/stacked-column-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-column-chart/angular.json b/samples/charts/data-chart/stacked-column-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/stacked-column-chart/angular.json +++ b/samples/charts/data-chart/stacked-column-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/stacked-column-chart/sandbox.config.json b/samples/charts/data-chart/stacked-column-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/stacked-column-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-column-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/stacked-column-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/stacked-column-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/stacked-column-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/stacked-column-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/stacked-column-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-column-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/stacked-column-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/stacked-column-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/stacked-column-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/stacked-column-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/stacked-column-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-column-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/stacked-column-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/stacked-column-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-column-chart/tsconfig.app.json b/samples/charts/data-chart/stacked-column-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/stacked-column-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/stacked-column-chart/tsconfig.json b/samples/charts/data-chart/stacked-column-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/stacked-column-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-column-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-line-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/stacked-line-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/stacked-line-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-line-chart/.codesandbox/tasks.json b/samples/charts/data-chart/stacked-line-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/stacked-line-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-line-chart/.stackblitzrc b/samples/charts/data-chart/stacked-line-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/stacked-line-chart/.stackblitzrc +++ b/samples/charts/data-chart/stacked-line-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-line-chart/angular.json b/samples/charts/data-chart/stacked-line-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/stacked-line-chart/angular.json +++ b/samples/charts/data-chart/stacked-line-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/stacked-line-chart/sandbox.config.json b/samples/charts/data-chart/stacked-line-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/stacked-line-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-line-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/stacked-line-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/stacked-line-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/stacked-line-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/stacked-line-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/stacked-line-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-line-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/stacked-line-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/stacked-line-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/stacked-line-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/stacked-line-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/stacked-line-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-line-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/stacked-line-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/stacked-line-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-line-chart/tsconfig.app.json b/samples/charts/data-chart/stacked-line-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/stacked-line-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/stacked-line-chart/tsconfig.json b/samples/charts/data-chart/stacked-line-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/stacked-line-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-line-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-spline-area-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/stacked-spline-area-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/stacked-spline-area-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-spline-area-chart/.codesandbox/tasks.json b/samples/charts/data-chart/stacked-spline-area-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/stacked-spline-area-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-spline-area-chart/.stackblitzrc b/samples/charts/data-chart/stacked-spline-area-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/.stackblitzrc +++ b/samples/charts/data-chart/stacked-spline-area-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-spline-area-chart/angular.json b/samples/charts/data-chart/stacked-spline-area-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/angular.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/stacked-spline-area-chart/sandbox.config.json b/samples/charts/data-chart/stacked-spline-area-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/stacked-spline-area-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/stacked-spline-area-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-spline-area-chart/tsconfig.app.json b/samples/charts/data-chart/stacked-spline-area-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/stacked-spline-area-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/stacked-spline-area-chart/tsconfig.json b/samples/charts/data-chart/stacked-spline-area-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-spline-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/stacked-spline-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/stacked-spline-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-spline-chart/.codesandbox/tasks.json b/samples/charts/data-chart/stacked-spline-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/stacked-spline-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-spline-chart/.stackblitzrc b/samples/charts/data-chart/stacked-spline-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/stacked-spline-chart/.stackblitzrc +++ b/samples/charts/data-chart/stacked-spline-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-spline-chart/angular.json b/samples/charts/data-chart/stacked-spline-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/stacked-spline-chart/angular.json +++ b/samples/charts/data-chart/stacked-spline-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/stacked-spline-chart/sandbox.config.json b/samples/charts/data-chart/stacked-spline-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/stacked-spline-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/stacked-spline-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/stacked-spline-chart/tsconfig.app.json b/samples/charts/data-chart/stacked-spline-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/stacked-spline-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/stacked-spline-chart/tsconfig.json b/samples/charts/data-chart/stacked-spline-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/stacked-spline-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-spline-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/tooltip-template/.codesandbox/Dockerfile b/samples/charts/data-chart/tooltip-template/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/tooltip-template/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/tooltip-template/.codesandbox/tasks.json b/samples/charts/data-chart/tooltip-template/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/tooltip-template/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/tooltip-template/.stackblitzrc b/samples/charts/data-chart/tooltip-template/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/tooltip-template/.stackblitzrc +++ b/samples/charts/data-chart/tooltip-template/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/tooltip-template/angular.json b/samples/charts/data-chart/tooltip-template/angular.json index c86d9a6a7..0c2c173c9 100644 --- a/samples/charts/data-chart/tooltip-template/angular.json +++ b/samples/charts/data-chart/tooltip-template/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,42 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } - }, + "defaultProject": "demo", "cli": { - "analytics": "ef0b952f-13da-4cca-bbb2-5b2fdd7f34e1" + "analytics": false } } diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/tooltip-template/sandbox.config.json b/samples/charts/data-chart/tooltip-template/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/tooltip-template/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/tooltip-template/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/tooltip-template/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/tooltip-template/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/tooltip-template/src/config/tsconfig.app.json b/samples/charts/data-chart/tooltip-template/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/tooltip-template/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/tooltip-template/src/config/tsconfig.base.json b/samples/charts/data-chart/tooltip-template/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/tooltip-template/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/tooltip-template/src/config/tsconfig.spec.json b/samples/charts/data-chart/tooltip-template/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/tooltip-template/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/tooltip-template/src/config/tsconfig.worker.json b/samples/charts/data-chart/tooltip-template/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/tooltip-template/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/tooltip-template/tsconfig.app.json b/samples/charts/data-chart/tooltip-template/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/tooltip-template/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/tooltip-template/tsconfig.json b/samples/charts/data-chart/tooltip-template/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/tooltip-template/tsconfig.json +++ b/samples/charts/data-chart/tooltip-template/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/transition-event/.codesandbox/Dockerfile b/samples/charts/data-chart/transition-event/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/transition-event/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/transition-event/.codesandbox/tasks.json b/samples/charts/data-chart/transition-event/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/transition-event/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/transition-event/.stackblitzrc b/samples/charts/data-chart/transition-event/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/transition-event/.stackblitzrc +++ b/samples/charts/data-chart/transition-event/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/transition-event/angular.json b/samples/charts/data-chart/transition-event/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/transition-event/angular.json +++ b/samples/charts/data-chart/transition-event/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/transition-event/sandbox.config.json b/samples/charts/data-chart/transition-event/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/transition-event/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/transition-event/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/transition-event/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/transition-event/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/transition-event/src/config/tsconfig.app.json b/samples/charts/data-chart/transition-event/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/transition-event/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/transition-event/src/config/tsconfig.base.json b/samples/charts/data-chart/transition-event/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/transition-event/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/transition-event/src/config/tsconfig.spec.json b/samples/charts/data-chart/transition-event/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/transition-event/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/transition-event/src/config/tsconfig.worker.json b/samples/charts/data-chart/transition-event/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/transition-event/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/transition-event/tsconfig.app.json b/samples/charts/data-chart/transition-event/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/transition-event/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/transition-event/tsconfig.json b/samples/charts/data-chart/transition-event/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/transition-event/tsconfig.json +++ b/samples/charts/data-chart/transition-event/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-area-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-category-area-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-category-area-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-area-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-category-area-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-category-area-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-area-series/.stackblitzrc b/samples/charts/data-chart/type-category-area-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-category-area-series/.stackblitzrc +++ b/samples/charts/data-chart/type-category-area-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-area-series/angular.json b/samples/charts/data-chart/type-category-area-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-category-area-series/angular.json +++ b/samples/charts/data-chart/type-category-area-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-category-area-series/sandbox.config.json b/samples/charts/data-chart/type-category-area-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-category-area-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-area-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-category-area-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-category-area-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-category-area-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-category-area-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-category-area-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-area-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-category-area-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-category-area-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-category-area-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-category-area-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-category-area-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-area-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-category-area-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-category-area-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-area-series/tsconfig.app.json b/samples/charts/data-chart/type-category-area-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-category-area-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-category-area-series/tsconfig.json b/samples/charts/data-chart/type-category-area-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-category-area-series/tsconfig.json +++ b/samples/charts/data-chart/type-category-area-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-bar-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-category-bar-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-category-bar-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-bar-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-category-bar-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-category-bar-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-bar-series/.stackblitzrc b/samples/charts/data-chart/type-category-bar-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-category-bar-series/.stackblitzrc +++ b/samples/charts/data-chart/type-category-bar-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-bar-series/angular.json b/samples/charts/data-chart/type-category-bar-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-category-bar-series/angular.json +++ b/samples/charts/data-chart/type-category-bar-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-category-bar-series/sandbox.config.json b/samples/charts/data-chart/type-category-bar-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-category-bar-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-bar-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-category-bar-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-category-bar-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-category-bar-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-category-bar-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-category-bar-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-bar-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-category-bar-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-category-bar-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-category-bar-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-category-bar-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-category-bar-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-bar-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-category-bar-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-category-bar-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-bar-series/tsconfig.app.json b/samples/charts/data-chart/type-category-bar-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-category-bar-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-category-bar-series/tsconfig.json b/samples/charts/data-chart/type-category-bar-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-category-bar-series/tsconfig.json +++ b/samples/charts/data-chart/type-category-bar-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-column-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-category-column-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-category-column-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-column-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-category-column-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-category-column-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-column-series/.stackblitzrc b/samples/charts/data-chart/type-category-column-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-category-column-series/.stackblitzrc +++ b/samples/charts/data-chart/type-category-column-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-column-series/angular.json b/samples/charts/data-chart/type-category-column-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-category-column-series/angular.json +++ b/samples/charts/data-chart/type-category-column-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-category-column-series/sandbox.config.json b/samples/charts/data-chart/type-category-column-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-category-column-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-column-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-category-column-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-category-column-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-category-column-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-category-column-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-category-column-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-column-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-category-column-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-category-column-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-category-column-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-category-column-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-category-column-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-column-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-category-column-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-category-column-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-column-series/tsconfig.app.json b/samples/charts/data-chart/type-category-column-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-category-column-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-category-column-series/tsconfig.json b/samples/charts/data-chart/type-category-column-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-category-column-series/tsconfig.json +++ b/samples/charts/data-chart/type-category-column-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-line-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-category-line-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-category-line-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-line-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-category-line-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-category-line-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-line-series/.stackblitzrc b/samples/charts/data-chart/type-category-line-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-category-line-series/.stackblitzrc +++ b/samples/charts/data-chart/type-category-line-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-line-series/angular.json b/samples/charts/data-chart/type-category-line-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-category-line-series/angular.json +++ b/samples/charts/data-chart/type-category-line-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-category-line-series/sandbox.config.json b/samples/charts/data-chart/type-category-line-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-category-line-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-line-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-category-line-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-category-line-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-category-line-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-category-line-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-category-line-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-line-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-category-line-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-category-line-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-category-line-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-category-line-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-category-line-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-line-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-category-line-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-category-line-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-line-series/tsconfig.app.json b/samples/charts/data-chart/type-category-line-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-category-line-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-category-line-series/tsconfig.json b/samples/charts/data-chart/type-category-line-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-category-line-series/tsconfig.json +++ b/samples/charts/data-chart/type-category-line-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-point-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-category-point-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-category-point-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-point-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-category-point-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-category-point-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-point-series/.stackblitzrc b/samples/charts/data-chart/type-category-point-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-category-point-series/.stackblitzrc +++ b/samples/charts/data-chart/type-category-point-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-point-series/angular.json b/samples/charts/data-chart/type-category-point-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-category-point-series/angular.json +++ b/samples/charts/data-chart/type-category-point-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-category-point-series/sandbox.config.json b/samples/charts/data-chart/type-category-point-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-category-point-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-point-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-category-point-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-category-point-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-category-point-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-category-point-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-category-point-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-point-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-category-point-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-category-point-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-category-point-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-category-point-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-category-point-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-point-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-category-point-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-category-point-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-point-series/tsconfig.app.json b/samples/charts/data-chart/type-category-point-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-category-point-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-category-point-series/tsconfig.json b/samples/charts/data-chart/type-category-point-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-category-point-series/tsconfig.json +++ b/samples/charts/data-chart/type-category-point-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-category-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-category-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-category-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-category-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-series/.stackblitzrc b/samples/charts/data-chart/type-category-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-category-series/.stackblitzrc +++ b/samples/charts/data-chart/type-category-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-series/angular.json b/samples/charts/data-chart/type-category-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-category-series/angular.json +++ b/samples/charts/data-chart/type-category-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-category-series/sandbox.config.json b/samples/charts/data-chart/type-category-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-category-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-category-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-category-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-category-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-category-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-category-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-category-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-category-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-category-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-category-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-category-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-category-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-category-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-series/tsconfig.app.json b/samples/charts/data-chart/type-category-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-category-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-category-series/tsconfig.json b/samples/charts/data-chart/type-category-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-category-series/tsconfig.json +++ b/samples/charts/data-chart/type-category-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-spline-area-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-category-spline-area-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-category-spline-area-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-spline-area-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-category-spline-area-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-category-spline-area-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-spline-area-series/.stackblitzrc b/samples/charts/data-chart/type-category-spline-area-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/.stackblitzrc +++ b/samples/charts/data-chart/type-category-spline-area-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-spline-area-series/angular.json b/samples/charts/data-chart/type-category-spline-area-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/angular.json +++ b/samples/charts/data-chart/type-category-spline-area-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-category-spline-area-series/sandbox.config.json b/samples/charts/data-chart/type-category-spline-area-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-category-spline-area-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-category-spline-area-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-spline-area-series/tsconfig.app.json b/samples/charts/data-chart/type-category-spline-area-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-category-spline-area-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-category-spline-area-series/tsconfig.json b/samples/charts/data-chart/type-category-spline-area-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/tsconfig.json +++ b/samples/charts/data-chart/type-category-spline-area-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-spline-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-category-spline-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-category-spline-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-spline-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-category-spline-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-category-spline-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-spline-series/.stackblitzrc b/samples/charts/data-chart/type-category-spline-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-category-spline-series/.stackblitzrc +++ b/samples/charts/data-chart/type-category-spline-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-spline-series/angular.json b/samples/charts/data-chart/type-category-spline-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-category-spline-series/angular.json +++ b/samples/charts/data-chart/type-category-spline-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-category-spline-series/sandbox.config.json b/samples/charts/data-chart/type-category-spline-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-category-spline-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-spline-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-category-spline-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-category-spline-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-category-spline-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-category-spline-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-category-spline-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-spline-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-category-spline-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-category-spline-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-category-spline-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-category-spline-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-category-spline-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-spline-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-category-spline-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-category-spline-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-spline-series/tsconfig.app.json b/samples/charts/data-chart/type-category-spline-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-category-spline-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-category-spline-series/tsconfig.json b/samples/charts/data-chart/type-category-spline-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-category-spline-series/tsconfig.json +++ b/samples/charts/data-chart/type-category-spline-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-step-area-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-category-step-area-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-category-step-area-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-step-area-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-category-step-area-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-category-step-area-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-step-area-series/.stackblitzrc b/samples/charts/data-chart/type-category-step-area-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-category-step-area-series/.stackblitzrc +++ b/samples/charts/data-chart/type-category-step-area-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-step-area-series/angular.json b/samples/charts/data-chart/type-category-step-area-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-category-step-area-series/angular.json +++ b/samples/charts/data-chart/type-category-step-area-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-category-step-area-series/sandbox.config.json b/samples/charts/data-chart/type-category-step-area-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-category-step-area-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-category-step-area-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-step-area-series/tsconfig.app.json b/samples/charts/data-chart/type-category-step-area-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-category-step-area-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-category-step-area-series/tsconfig.json b/samples/charts/data-chart/type-category-step-area-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-category-step-area-series/tsconfig.json +++ b/samples/charts/data-chart/type-category-step-area-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-step-line-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-category-step-line-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-category-step-line-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-step-line-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-category-step-line-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-category-step-line-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-step-line-series/.stackblitzrc b/samples/charts/data-chart/type-category-step-line-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-category-step-line-series/.stackblitzrc +++ b/samples/charts/data-chart/type-category-step-line-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-step-line-series/angular.json b/samples/charts/data-chart/type-category-step-line-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-category-step-line-series/angular.json +++ b/samples/charts/data-chart/type-category-step-line-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-category-step-line-series/sandbox.config.json b/samples/charts/data-chart/type-category-step-line-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-category-step-line-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-category-step-line-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-step-line-series/tsconfig.app.json b/samples/charts/data-chart/type-category-step-line-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-category-step-line-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-category-step-line-series/tsconfig.json b/samples/charts/data-chart/type-category-step-line-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-category-step-line-series/tsconfig.json +++ b/samples/charts/data-chart/type-category-step-line-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-waterfall-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-category-waterfall-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-category-waterfall-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-waterfall-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-category-waterfall-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-category-waterfall-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-waterfall-series/.stackblitzrc b/samples/charts/data-chart/type-category-waterfall-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/.stackblitzrc +++ b/samples/charts/data-chart/type-category-waterfall-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-waterfall-series/angular.json b/samples/charts/data-chart/type-category-waterfall-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/angular.json +++ b/samples/charts/data-chart/type-category-waterfall-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-category-waterfall-series/sandbox.config.json b/samples/charts/data-chart/type-category-waterfall-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-category-waterfall-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-category-waterfall-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-category-waterfall-series/tsconfig.app.json b/samples/charts/data-chart/type-category-waterfall-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-category-waterfall-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-category-waterfall-series/tsconfig.json b/samples/charts/data-chart/type-category-waterfall-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/tsconfig.json +++ b/samples/charts/data-chart/type-category-waterfall-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-area-indicators/.codesandbox/Dockerfile b/samples/charts/data-chart/type-financial-area-indicators/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-financial-area-indicators/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-area-indicators/.codesandbox/tasks.json b/samples/charts/data-chart/type-financial-area-indicators/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-financial-area-indicators/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-area-indicators/.stackblitzrc b/samples/charts/data-chart/type-financial-area-indicators/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/.stackblitzrc +++ b/samples/charts/data-chart/type-financial-area-indicators/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-area-indicators/angular.json b/samples/charts/data-chart/type-financial-area-indicators/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/angular.json +++ b/samples/charts/data-chart/type-financial-area-indicators/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-financial-area-indicators/sandbox.config.json b/samples/charts/data-chart/type-financial-area-indicators/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-financial-area-indicators/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig.app.json b/samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig.base.json b/samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-financial-area-indicators/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-area-indicators/tsconfig.app.json b/samples/charts/data-chart/type-financial-area-indicators/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-financial-area-indicators/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-financial-area-indicators/tsconfig.json b/samples/charts/data-chart/type-financial-area-indicators/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/tsconfig.json +++ b/samples/charts/data-chart/type-financial-area-indicators/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-candlestick-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-financial-candlestick-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-financial-candlestick-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-candlestick-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-financial-candlestick-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-financial-candlestick-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-candlestick-series/.stackblitzrc b/samples/charts/data-chart/type-financial-candlestick-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/.stackblitzrc +++ b/samples/charts/data-chart/type-financial-candlestick-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-candlestick-series/angular.json b/samples/charts/data-chart/type-financial-candlestick-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/angular.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-financial-candlestick-series/sandbox.config.json b/samples/charts/data-chart/type-financial-candlestick-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-financial-candlestick-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-financial-candlestick-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-candlestick-series/tsconfig.app.json b/samples/charts/data-chart/type-financial-candlestick-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-financial-candlestick-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-financial-candlestick-series/tsconfig.json b/samples/charts/data-chart/type-financial-candlestick-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/tsconfig.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-column-indicators/.codesandbox/Dockerfile b/samples/charts/data-chart/type-financial-column-indicators/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-financial-column-indicators/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-column-indicators/.codesandbox/tasks.json b/samples/charts/data-chart/type-financial-column-indicators/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-financial-column-indicators/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-column-indicators/.stackblitzrc b/samples/charts/data-chart/type-financial-column-indicators/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/.stackblitzrc +++ b/samples/charts/data-chart/type-financial-column-indicators/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-column-indicators/angular.json b/samples/charts/data-chart/type-financial-column-indicators/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/angular.json +++ b/samples/charts/data-chart/type-financial-column-indicators/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-financial-column-indicators/sandbox.config.json b/samples/charts/data-chart/type-financial-column-indicators/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-financial-column-indicators/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig.app.json b/samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig.base.json b/samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-financial-column-indicators/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-column-indicators/tsconfig.app.json b/samples/charts/data-chart/type-financial-column-indicators/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-financial-column-indicators/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-financial-column-indicators/tsconfig.json b/samples/charts/data-chart/type-financial-column-indicators/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/tsconfig.json +++ b/samples/charts/data-chart/type-financial-column-indicators/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-line-indicators/.codesandbox/Dockerfile b/samples/charts/data-chart/type-financial-line-indicators/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-financial-line-indicators/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-line-indicators/.codesandbox/tasks.json b/samples/charts/data-chart/type-financial-line-indicators/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-financial-line-indicators/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-line-indicators/.stackblitzrc b/samples/charts/data-chart/type-financial-line-indicators/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/.stackblitzrc +++ b/samples/charts/data-chart/type-financial-line-indicators/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-line-indicators/angular.json b/samples/charts/data-chart/type-financial-line-indicators/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/angular.json +++ b/samples/charts/data-chart/type-financial-line-indicators/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-financial-line-indicators/sandbox.config.json b/samples/charts/data-chart/type-financial-line-indicators/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-financial-line-indicators/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig.app.json b/samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig.base.json b/samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-financial-line-indicators/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-line-indicators/tsconfig.app.json b/samples/charts/data-chart/type-financial-line-indicators/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-financial-line-indicators/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-financial-line-indicators/tsconfig.json b/samples/charts/data-chart/type-financial-line-indicators/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/tsconfig.json +++ b/samples/charts/data-chart/type-financial-line-indicators/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-ohlc-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-financial-ohlc-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-financial-ohlc-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-ohlc-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-financial-ohlc-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-financial-ohlc-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-ohlc-series/.stackblitzrc b/samples/charts/data-chart/type-financial-ohlc-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/.stackblitzrc +++ b/samples/charts/data-chart/type-financial-ohlc-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-ohlc-series/angular.json b/samples/charts/data-chart/type-financial-ohlc-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/angular.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-financial-ohlc-series/sandbox.config.json b/samples/charts/data-chart/type-financial-ohlc-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-financial-ohlc-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-financial-ohlc-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-ohlc-series/tsconfig.app.json b/samples/charts/data-chart/type-financial-ohlc-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-financial-ohlc-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-financial-ohlc-series/tsconfig.json b/samples/charts/data-chart/type-financial-ohlc-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/tsconfig.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-overlays/.codesandbox/Dockerfile b/samples/charts/data-chart/type-financial-overlays/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-financial-overlays/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-overlays/.codesandbox/tasks.json b/samples/charts/data-chart/type-financial-overlays/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-financial-overlays/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-overlays/.stackblitzrc b/samples/charts/data-chart/type-financial-overlays/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-financial-overlays/.stackblitzrc +++ b/samples/charts/data-chart/type-financial-overlays/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-overlays/angular.json b/samples/charts/data-chart/type-financial-overlays/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-financial-overlays/angular.json +++ b/samples/charts/data-chart/type-financial-overlays/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-financial-overlays/sandbox.config.json b/samples/charts/data-chart/type-financial-overlays/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-financial-overlays/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-overlays/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-financial-overlays/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-financial-overlays/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-financial-overlays/src/config/tsconfig.app.json b/samples/charts/data-chart/type-financial-overlays/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-financial-overlays/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-overlays/src/config/tsconfig.base.json b/samples/charts/data-chart/type-financial-overlays/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-financial-overlays/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-financial-overlays/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-financial-overlays/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-financial-overlays/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-overlays/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-financial-overlays/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-financial-overlays/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-overlays/tsconfig.app.json b/samples/charts/data-chart/type-financial-overlays/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-financial-overlays/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-financial-overlays/tsconfig.json b/samples/charts/data-chart/type-financial-overlays/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-financial-overlays/tsconfig.json +++ b/samples/charts/data-chart/type-financial-overlays/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-financial-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-financial-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-financial-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-financial-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-series/.stackblitzrc b/samples/charts/data-chart/type-financial-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-financial-series/.stackblitzrc +++ b/samples/charts/data-chart/type-financial-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-series/angular.json b/samples/charts/data-chart/type-financial-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-financial-series/angular.json +++ b/samples/charts/data-chart/type-financial-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-financial-series/sandbox.config.json b/samples/charts/data-chart/type-financial-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-financial-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-financial-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-financial-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-financial-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-financial-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-financial-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-financial-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-financial-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-financial-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-financial-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-financial-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-financial-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-financial-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-financial-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-financial-series/tsconfig.app.json b/samples/charts/data-chart/type-financial-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-financial-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-financial-series/tsconfig.json b/samples/charts/data-chart/type-financial-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-financial-series/tsconfig.json +++ b/samples/charts/data-chart/type-financial-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-area-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-radial-area-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-radial-area-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-area-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-radial-area-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-radial-area-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-area-series/.stackblitzrc b/samples/charts/data-chart/type-radial-area-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-radial-area-series/.stackblitzrc +++ b/samples/charts/data-chart/type-radial-area-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-area-series/angular.json b/samples/charts/data-chart/type-radial-area-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-radial-area-series/angular.json +++ b/samples/charts/data-chart/type-radial-area-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-radial-area-series/sandbox.config.json b/samples/charts/data-chart/type-radial-area-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-radial-area-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-area-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-radial-area-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-radial-area-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-radial-area-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-radial-area-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-radial-area-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-radial-area-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-radial-area-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-radial-area-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-radial-area-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-radial-area-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-radial-area-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-radial-area-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-radial-area-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-radial-area-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-radial-area-series/tsconfig.app.json b/samples/charts/data-chart/type-radial-area-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-radial-area-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-radial-area-series/tsconfig.json b/samples/charts/data-chart/type-radial-area-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-radial-area-series/tsconfig.json +++ b/samples/charts/data-chart/type-radial-area-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-column-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-radial-column-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-radial-column-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-column-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-radial-column-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-radial-column-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-column-series/.stackblitzrc b/samples/charts/data-chart/type-radial-column-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-radial-column-series/.stackblitzrc +++ b/samples/charts/data-chart/type-radial-column-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-column-series/angular.json b/samples/charts/data-chart/type-radial-column-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-radial-column-series/angular.json +++ b/samples/charts/data-chart/type-radial-column-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-radial-column-series/sandbox.config.json b/samples/charts/data-chart/type-radial-column-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-radial-column-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-column-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-radial-column-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-radial-column-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-radial-column-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-radial-column-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-radial-column-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-radial-column-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-radial-column-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-radial-column-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-radial-column-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-radial-column-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-radial-column-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-radial-column-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-radial-column-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-radial-column-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-radial-column-series/tsconfig.app.json b/samples/charts/data-chart/type-radial-column-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-radial-column-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-radial-column-series/tsconfig.json b/samples/charts/data-chart/type-radial-column-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-radial-column-series/tsconfig.json +++ b/samples/charts/data-chart/type-radial-column-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-line-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-radial-line-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-radial-line-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-line-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-radial-line-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-radial-line-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-line-series/.stackblitzrc b/samples/charts/data-chart/type-radial-line-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-radial-line-series/.stackblitzrc +++ b/samples/charts/data-chart/type-radial-line-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-line-series/angular.json b/samples/charts/data-chart/type-radial-line-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-radial-line-series/angular.json +++ b/samples/charts/data-chart/type-radial-line-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-radial-line-series/sandbox.config.json b/samples/charts/data-chart/type-radial-line-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-radial-line-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-line-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-radial-line-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-radial-line-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-radial-line-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-radial-line-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-radial-line-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-radial-line-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-radial-line-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-radial-line-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-radial-line-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-radial-line-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-radial-line-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-radial-line-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-radial-line-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-radial-line-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-radial-line-series/tsconfig.app.json b/samples/charts/data-chart/type-radial-line-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-radial-line-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-radial-line-series/tsconfig.json b/samples/charts/data-chart/type-radial-line-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-radial-line-series/tsconfig.json +++ b/samples/charts/data-chart/type-radial-line-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-pie-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-radial-pie-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-radial-pie-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-pie-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-radial-pie-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-radial-pie-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-pie-series/.stackblitzrc b/samples/charts/data-chart/type-radial-pie-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-radial-pie-series/.stackblitzrc +++ b/samples/charts/data-chart/type-radial-pie-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-pie-series/angular.json b/samples/charts/data-chart/type-radial-pie-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-radial-pie-series/angular.json +++ b/samples/charts/data-chart/type-radial-pie-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-radial-pie-series/sandbox.config.json b/samples/charts/data-chart/type-radial-pie-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-radial-pie-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-radial-pie-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-radial-pie-series/tsconfig.app.json b/samples/charts/data-chart/type-radial-pie-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-radial-pie-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-radial-pie-series/tsconfig.json b/samples/charts/data-chart/type-radial-pie-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-radial-pie-series/tsconfig.json +++ b/samples/charts/data-chart/type-radial-pie-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-range-area-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-range-area-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-range-area-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-range-area-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-range-area-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-range-area-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-range-area-series/.stackblitzrc b/samples/charts/data-chart/type-range-area-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-range-area-series/.stackblitzrc +++ b/samples/charts/data-chart/type-range-area-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-range-area-series/angular.json b/samples/charts/data-chart/type-range-area-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-range-area-series/angular.json +++ b/samples/charts/data-chart/type-range-area-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-range-area-series/sandbox.config.json b/samples/charts/data-chart/type-range-area-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-range-area-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-range-area-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-range-area-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-range-area-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-range-area-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-range-area-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-range-area-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-range-area-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-range-area-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-range-area-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-range-area-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-range-area-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-range-area-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-range-area-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-range-area-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-range-area-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-range-area-series/tsconfig.app.json b/samples/charts/data-chart/type-range-area-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-range-area-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-range-area-series/tsconfig.json b/samples/charts/data-chart/type-range-area-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-range-area-series/tsconfig.json +++ b/samples/charts/data-chart/type-range-area-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-range-column-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-range-column-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-range-column-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-range-column-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-range-column-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-range-column-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-range-column-series/.stackblitzrc b/samples/charts/data-chart/type-range-column-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-range-column-series/.stackblitzrc +++ b/samples/charts/data-chart/type-range-column-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-range-column-series/angular.json b/samples/charts/data-chart/type-range-column-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-range-column-series/angular.json +++ b/samples/charts/data-chart/type-range-column-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-range-column-series/sandbox.config.json b/samples/charts/data-chart/type-range-column-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-range-column-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-range-column-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-range-column-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-range-column-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-range-column-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-range-column-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-range-column-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-range-column-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-range-column-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-range-column-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-range-column-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-range-column-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-range-column-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-range-column-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-range-column-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-range-column-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-range-column-series/tsconfig.app.json b/samples/charts/data-chart/type-range-column-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-range-column-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-range-column-series/tsconfig.json b/samples/charts/data-chart/type-range-column-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-range-column-series/tsconfig.json +++ b/samples/charts/data-chart/type-range-column-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-range-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-range-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-range-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-range-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-range-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-range-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-range-series/.stackblitzrc b/samples/charts/data-chart/type-range-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-range-series/.stackblitzrc +++ b/samples/charts/data-chart/type-range-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-range-series/angular.json b/samples/charts/data-chart/type-range-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-range-series/angular.json +++ b/samples/charts/data-chart/type-range-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-range-series/sandbox.config.json b/samples/charts/data-chart/type-range-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-range-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-range-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-range-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-range-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-range-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-range-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-range-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-range-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-range-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-range-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-range-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-range-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-range-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-range-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-range-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-range-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-range-series/tsconfig.app.json b/samples/charts/data-chart/type-range-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-range-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-range-series/tsconfig.json b/samples/charts/data-chart/type-range-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-range-series/tsconfig.json +++ b/samples/charts/data-chart/type-range-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-area-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-scatter-area-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-scatter-area-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-area-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-scatter-area-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-scatter-area-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-area-series/.stackblitzrc b/samples/charts/data-chart/type-scatter-area-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-scatter-area-series/.stackblitzrc +++ b/samples/charts/data-chart/type-scatter-area-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-area-series/angular.json b/samples/charts/data-chart/type-scatter-area-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-scatter-area-series/angular.json +++ b/samples/charts/data-chart/type-scatter-area-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-scatter-area-series/sandbox.config.json b/samples/charts/data-chart/type-scatter-area-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-scatter-area-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-scatter-area-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-area-series/tsconfig.app.json b/samples/charts/data-chart/type-scatter-area-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-scatter-area-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-scatter-area-series/tsconfig.json b/samples/charts/data-chart/type-scatter-area-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-scatter-area-series/tsconfig.json +++ b/samples/charts/data-chart/type-scatter-area-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-bubble-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-scatter-bubble-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-scatter-bubble-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-bubble-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-scatter-bubble-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-scatter-bubble-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-bubble-series/.stackblitzrc b/samples/charts/data-chart/type-scatter-bubble-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/.stackblitzrc +++ b/samples/charts/data-chart/type-scatter-bubble-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-bubble-series/angular.json b/samples/charts/data-chart/type-scatter-bubble-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/angular.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-scatter-bubble-series/sandbox.config.json b/samples/charts/data-chart/type-scatter-bubble-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-scatter-bubble-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-scatter-bubble-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-bubble-series/tsconfig.app.json b/samples/charts/data-chart/type-scatter-bubble-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-scatter-bubble-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-scatter-bubble-series/tsconfig.json b/samples/charts/data-chart/type-scatter-bubble-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/tsconfig.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-contour-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-scatter-contour-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-scatter-contour-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-contour-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-scatter-contour-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-scatter-contour-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-contour-series/.stackblitzrc b/samples/charts/data-chart/type-scatter-contour-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/.stackblitzrc +++ b/samples/charts/data-chart/type-scatter-contour-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-contour-series/angular.json b/samples/charts/data-chart/type-scatter-contour-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/angular.json +++ b/samples/charts/data-chart/type-scatter-contour-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-scatter-contour-series/sandbox.config.json b/samples/charts/data-chart/type-scatter-contour-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-scatter-contour-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-scatter-contour-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-contour-series/tsconfig.app.json b/samples/charts/data-chart/type-scatter-contour-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-scatter-contour-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-scatter-contour-series/tsconfig.json b/samples/charts/data-chart/type-scatter-contour-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/tsconfig.json +++ b/samples/charts/data-chart/type-scatter-contour-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-hd-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-scatter-hd-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-scatter-hd-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-hd-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-scatter-hd-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-scatter-hd-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-hd-series/.stackblitzrc b/samples/charts/data-chart/type-scatter-hd-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/.stackblitzrc +++ b/samples/charts/data-chart/type-scatter-hd-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-hd-series/angular.json b/samples/charts/data-chart/type-scatter-hd-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/angular.json +++ b/samples/charts/data-chart/type-scatter-hd-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-scatter-hd-series/sandbox.config.json b/samples/charts/data-chart/type-scatter-hd-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-scatter-hd-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-scatter-hd-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-hd-series/tsconfig.app.json b/samples/charts/data-chart/type-scatter-hd-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-scatter-hd-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-scatter-hd-series/tsconfig.json b/samples/charts/data-chart/type-scatter-hd-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/tsconfig.json +++ b/samples/charts/data-chart/type-scatter-hd-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-line-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-scatter-line-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-scatter-line-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-line-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-scatter-line-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-scatter-line-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-line-series/.stackblitzrc b/samples/charts/data-chart/type-scatter-line-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-scatter-line-series/.stackblitzrc +++ b/samples/charts/data-chart/type-scatter-line-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-line-series/angular.json b/samples/charts/data-chart/type-scatter-line-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-scatter-line-series/angular.json +++ b/samples/charts/data-chart/type-scatter-line-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-scatter-line-series/sandbox.config.json b/samples/charts/data-chart/type-scatter-line-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-scatter-line-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-scatter-line-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-line-series/tsconfig.app.json b/samples/charts/data-chart/type-scatter-line-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-scatter-line-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-scatter-line-series/tsconfig.json b/samples/charts/data-chart/type-scatter-line-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-scatter-line-series/tsconfig.json +++ b/samples/charts/data-chart/type-scatter-line-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-point-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-scatter-point-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-scatter-point-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-point-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-scatter-point-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-scatter-point-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-point-series/.stackblitzrc b/samples/charts/data-chart/type-scatter-point-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-scatter-point-series/.stackblitzrc +++ b/samples/charts/data-chart/type-scatter-point-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-point-series/angular.json b/samples/charts/data-chart/type-scatter-point-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-scatter-point-series/angular.json +++ b/samples/charts/data-chart/type-scatter-point-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-scatter-point-series/sandbox.config.json b/samples/charts/data-chart/type-scatter-point-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-scatter-point-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-scatter-point-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-point-series/tsconfig.app.json b/samples/charts/data-chart/type-scatter-point-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-scatter-point-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-scatter-point-series/tsconfig.json b/samples/charts/data-chart/type-scatter-point-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-scatter-point-series/tsconfig.json +++ b/samples/charts/data-chart/type-scatter-point-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-polygon-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-scatter-polygon-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-scatter-polygon-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-polygon-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-scatter-polygon-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-scatter-polygon-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-polygon-series/.stackblitzrc b/samples/charts/data-chart/type-scatter-polygon-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/.stackblitzrc +++ b/samples/charts/data-chart/type-scatter-polygon-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-polygon-series/angular.json b/samples/charts/data-chart/type-scatter-polygon-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/angular.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-scatter-polygon-series/sandbox.config.json b/samples/charts/data-chart/type-scatter-polygon-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-scatter-polygon-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-scatter-polygon-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-polygon-series/tsconfig.app.json b/samples/charts/data-chart/type-scatter-polygon-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-scatter-polygon-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-scatter-polygon-series/tsconfig.json b/samples/charts/data-chart/type-scatter-polygon-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/tsconfig.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-polyline-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-scatter-polyline-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-scatter-polyline-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-polyline-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-scatter-polyline-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-scatter-polyline-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-polyline-series/.stackblitzrc b/samples/charts/data-chart/type-scatter-polyline-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/.stackblitzrc +++ b/samples/charts/data-chart/type-scatter-polyline-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-polyline-series/angular.json b/samples/charts/data-chart/type-scatter-polyline-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/angular.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-scatter-polyline-series/sandbox.config.json b/samples/charts/data-chart/type-scatter-polyline-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-scatter-polyline-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-scatter-polyline-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-polyline-series/tsconfig.app.json b/samples/charts/data-chart/type-scatter-polyline-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-scatter-polyline-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-scatter-polyline-series/tsconfig.json b/samples/charts/data-chart/type-scatter-polyline-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/tsconfig.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-scatter-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-scatter-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-scatter-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-scatter-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-series/.stackblitzrc b/samples/charts/data-chart/type-scatter-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-scatter-series/.stackblitzrc +++ b/samples/charts/data-chart/type-scatter-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-series/angular.json b/samples/charts/data-chart/type-scatter-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-scatter-series/angular.json +++ b/samples/charts/data-chart/type-scatter-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-scatter-series/sandbox.config.json b/samples/charts/data-chart/type-scatter-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-scatter-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-scatter-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-scatter-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-scatter-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-scatter-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-scatter-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-scatter-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-scatter-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-scatter-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-scatter-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-scatter-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-scatter-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-scatter-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-series/tsconfig.app.json b/samples/charts/data-chart/type-scatter-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-scatter-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-scatter-series/tsconfig.json b/samples/charts/data-chart/type-scatter-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-scatter-series/tsconfig.json +++ b/samples/charts/data-chart/type-scatter-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-spline-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-scatter-spline-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-scatter-spline-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-spline-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-scatter-spline-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-scatter-spline-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-spline-series/.stackblitzrc b/samples/charts/data-chart/type-scatter-spline-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/.stackblitzrc +++ b/samples/charts/data-chart/type-scatter-spline-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-spline-series/angular.json b/samples/charts/data-chart/type-scatter-spline-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/angular.json +++ b/samples/charts/data-chart/type-scatter-spline-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-scatter-spline-series/sandbox.config.json b/samples/charts/data-chart/type-scatter-spline-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-scatter-spline-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-scatter-spline-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-scatter-spline-series/tsconfig.app.json b/samples/charts/data-chart/type-scatter-spline-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-scatter-spline-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-scatter-spline-series/tsconfig.json b/samples/charts/data-chart/type-scatter-spline-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/tsconfig.json +++ b/samples/charts/data-chart/type-scatter-spline-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-shape-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-shape-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-shape-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-shape-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-shape-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-shape-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-shape-series/.stackblitzrc b/samples/charts/data-chart/type-shape-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-shape-series/.stackblitzrc +++ b/samples/charts/data-chart/type-shape-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-shape-series/angular.json b/samples/charts/data-chart/type-shape-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-shape-series/angular.json +++ b/samples/charts/data-chart/type-shape-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-shape-series/sandbox.config.json b/samples/charts/data-chart/type-shape-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-shape-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-shape-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-shape-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-shape-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-shape-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-shape-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-shape-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-shape-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-shape-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-shape-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-shape-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-shape-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-shape-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-shape-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-shape-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-shape-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-shape-series/tsconfig.app.json b/samples/charts/data-chart/type-shape-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-shape-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-shape-series/tsconfig.json b/samples/charts/data-chart/type-shape-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-shape-series/tsconfig.json +++ b/samples/charts/data-chart/type-shape-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-area-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-stacked-100-area-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-area-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-area-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-stacked-100-area-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-area-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-area-series/.stackblitzrc b/samples/charts/data-chart/type-stacked-100-area-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/.stackblitzrc +++ b/samples/charts/data-chart/type-stacked-100-area-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-area-series/angular.json b/samples/charts/data-chart/type-stacked-100-area-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/angular.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-area-series/sandbox.config.json b/samples/charts/data-chart/type-stacked-100-area-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-stacked-100-area-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-stacked-100-area-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-area-series/tsconfig.app.json b/samples/charts/data-chart/type-stacked-100-area-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-area-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-stacked-100-area-series/tsconfig.json b/samples/charts/data-chart/type-stacked-100-area-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/tsconfig.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-stacked-100-bar-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-bar-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-stacked-100-bar-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-bar-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/.stackblitzrc b/samples/charts/data-chart/type-stacked-100-bar-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/.stackblitzrc +++ b/samples/charts/data-chart/type-stacked-100-bar-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/angular.json b/samples/charts/data-chart/type-stacked-100-bar-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/angular.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/sandbox.config.json b/samples/charts/data-chart/type-stacked-100-bar-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-stacked-100-bar-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-stacked-100-bar-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/tsconfig.app.json b/samples/charts/data-chart/type-stacked-100-bar-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-bar-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/tsconfig.json b/samples/charts/data-chart/type-stacked-100-bar-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/tsconfig.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-column-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-stacked-100-column-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-column-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-column-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-stacked-100-column-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-column-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-column-series/.stackblitzrc b/samples/charts/data-chart/type-stacked-100-column-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/.stackblitzrc +++ b/samples/charts/data-chart/type-stacked-100-column-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-column-series/angular.json b/samples/charts/data-chart/type-stacked-100-column-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/angular.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-column-series/sandbox.config.json b/samples/charts/data-chart/type-stacked-100-column-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-stacked-100-column-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-stacked-100-column-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-column-series/tsconfig.app.json b/samples/charts/data-chart/type-stacked-100-column-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-column-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-stacked-100-column-series/tsconfig.json b/samples/charts/data-chart/type-stacked-100-column-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/tsconfig.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-line-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-stacked-100-line-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-line-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-line-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-stacked-100-line-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-line-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-line-series/.stackblitzrc b/samples/charts/data-chart/type-stacked-100-line-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/.stackblitzrc +++ b/samples/charts/data-chart/type-stacked-100-line-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-line-series/angular.json b/samples/charts/data-chart/type-stacked-100-line-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/angular.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-line-series/sandbox.config.json b/samples/charts/data-chart/type-stacked-100-line-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-stacked-100-line-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-stacked-100-line-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-line-series/tsconfig.app.json b/samples/charts/data-chart/type-stacked-100-line-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-line-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-stacked-100-line-series/tsconfig.json b/samples/charts/data-chart/type-stacked-100-line-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/tsconfig.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-stacked-100-spline-area-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/.stackblitzrc b/samples/charts/data-chart/type-stacked-100-spline-area-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/.stackblitzrc +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/angular.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/angular.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/sandbox.config.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/tsconfig.app.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/tsconfig.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/tsconfig.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-stacked-100-spline-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-spline-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-stacked-100-spline-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-spline-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/.stackblitzrc b/samples/charts/data-chart/type-stacked-100-spline-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/.stackblitzrc +++ b/samples/charts/data-chart/type-stacked-100-spline-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/angular.json b/samples/charts/data-chart/type-stacked-100-spline-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/angular.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/sandbox.config.json b/samples/charts/data-chart/type-stacked-100-spline-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-stacked-100-spline-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-stacked-100-spline-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/tsconfig.app.json b/samples/charts/data-chart/type-stacked-100-spline-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-stacked-100-spline-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/tsconfig.json b/samples/charts/data-chart/type-stacked-100-spline-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/tsconfig.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-area-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-stacked-area-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-stacked-area-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-area-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-stacked-area-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-stacked-area-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-area-series/.stackblitzrc b/samples/charts/data-chart/type-stacked-area-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-stacked-area-series/.stackblitzrc +++ b/samples/charts/data-chart/type-stacked-area-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-area-series/angular.json b/samples/charts/data-chart/type-stacked-area-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-stacked-area-series/angular.json +++ b/samples/charts/data-chart/type-stacked-area-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-stacked-area-series/sandbox.config.json b/samples/charts/data-chart/type-stacked-area-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-stacked-area-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-stacked-area-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-area-series/tsconfig.app.json b/samples/charts/data-chart/type-stacked-area-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-stacked-area-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-stacked-area-series/tsconfig.json b/samples/charts/data-chart/type-stacked-area-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-stacked-area-series/tsconfig.json +++ b/samples/charts/data-chart/type-stacked-area-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-bar-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-stacked-bar-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-stacked-bar-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-bar-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-stacked-bar-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-stacked-bar-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-bar-series/.stackblitzrc b/samples/charts/data-chart/type-stacked-bar-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/.stackblitzrc +++ b/samples/charts/data-chart/type-stacked-bar-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-bar-series/angular.json b/samples/charts/data-chart/type-stacked-bar-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/angular.json +++ b/samples/charts/data-chart/type-stacked-bar-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-stacked-bar-series/sandbox.config.json b/samples/charts/data-chart/type-stacked-bar-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-stacked-bar-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-stacked-bar-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-bar-series/tsconfig.app.json b/samples/charts/data-chart/type-stacked-bar-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-stacked-bar-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-stacked-bar-series/tsconfig.json b/samples/charts/data-chart/type-stacked-bar-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/tsconfig.json +++ b/samples/charts/data-chart/type-stacked-bar-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-column-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-stacked-column-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-stacked-column-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-column-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-stacked-column-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-stacked-column-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-column-series/.stackblitzrc b/samples/charts/data-chart/type-stacked-column-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-stacked-column-series/.stackblitzrc +++ b/samples/charts/data-chart/type-stacked-column-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-column-series/angular.json b/samples/charts/data-chart/type-stacked-column-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-stacked-column-series/angular.json +++ b/samples/charts/data-chart/type-stacked-column-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-stacked-column-series/sandbox.config.json b/samples/charts/data-chart/type-stacked-column-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-stacked-column-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-stacked-column-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-column-series/tsconfig.app.json b/samples/charts/data-chart/type-stacked-column-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-stacked-column-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-stacked-column-series/tsconfig.json b/samples/charts/data-chart/type-stacked-column-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-stacked-column-series/tsconfig.json +++ b/samples/charts/data-chart/type-stacked-column-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-line-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-stacked-line-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-stacked-line-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-line-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-stacked-line-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-stacked-line-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-line-series/.stackblitzrc b/samples/charts/data-chart/type-stacked-line-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-stacked-line-series/.stackblitzrc +++ b/samples/charts/data-chart/type-stacked-line-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-line-series/angular.json b/samples/charts/data-chart/type-stacked-line-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-stacked-line-series/angular.json +++ b/samples/charts/data-chart/type-stacked-line-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-stacked-line-series/sandbox.config.json b/samples/charts/data-chart/type-stacked-line-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-stacked-line-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-stacked-line-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-line-series/tsconfig.app.json b/samples/charts/data-chart/type-stacked-line-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-stacked-line-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-stacked-line-series/tsconfig.json b/samples/charts/data-chart/type-stacked-line-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-stacked-line-series/tsconfig.json +++ b/samples/charts/data-chart/type-stacked-line-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-stacked-spline-area-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-stacked-spline-area-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-stacked-spline-area-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-stacked-spline-area-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/.stackblitzrc b/samples/charts/data-chart/type-stacked-spline-area-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/.stackblitzrc +++ b/samples/charts/data-chart/type-stacked-spline-area-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/angular.json b/samples/charts/data-chart/type-stacked-spline-area-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/angular.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/sandbox.config.json b/samples/charts/data-chart/type-stacked-spline-area-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-stacked-spline-area-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-stacked-spline-area-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/tsconfig.app.json b/samples/charts/data-chart/type-stacked-spline-area-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-stacked-spline-area-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/tsconfig.json b/samples/charts/data-chart/type-stacked-spline-area-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/tsconfig.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-spline-series/.codesandbox/Dockerfile b/samples/charts/data-chart/type-stacked-spline-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/type-stacked-spline-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-spline-series/.codesandbox/tasks.json b/samples/charts/data-chart/type-stacked-spline-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/type-stacked-spline-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-spline-series/.stackblitzrc b/samples/charts/data-chart/type-stacked-spline-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/.stackblitzrc +++ b/samples/charts/data-chart/type-stacked-spline-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-spline-series/angular.json b/samples/charts/data-chart/type-stacked-spline-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/angular.json +++ b/samples/charts/data-chart/type-stacked-spline-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/type-stacked-spline-series/sandbox.config.json b/samples/charts/data-chart/type-stacked-spline-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/data-chart/type-stacked-spline-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig.app.json b/samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig.base.json b/samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig.spec.json b/samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig.worker.json b/samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/type-stacked-spline-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/type-stacked-spline-series/tsconfig.app.json b/samples/charts/data-chart/type-stacked-spline-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/type-stacked-spline-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/type-stacked-spline-series/tsconfig.json b/samples/charts/data-chart/type-stacked-spline-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/tsconfig.json +++ b/samples/charts/data-chart/type-stacked-spline-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/data-chart/waterfall-chart/.codesandbox/Dockerfile b/samples/charts/data-chart/waterfall-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/waterfall-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/waterfall-chart/.codesandbox/tasks.json b/samples/charts/data-chart/waterfall-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/waterfall-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/waterfall-chart/.stackblitzrc b/samples/charts/data-chart/waterfall-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/data-chart/waterfall-chart/.stackblitzrc +++ b/samples/charts/data-chart/waterfall-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/waterfall-chart/angular.json b/samples/charts/data-chart/waterfall-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/data-chart/waterfall-chart/angular.json +++ b/samples/charts/data-chart/waterfall-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/data-chart/waterfall-chart/sandbox.config.json b/samples/charts/data-chart/waterfall-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/waterfall-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/waterfall-chart/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/waterfall-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/waterfall-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/waterfall-chart/src/config/tsconfig.app.json b/samples/charts/data-chart/waterfall-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/waterfall-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/waterfall-chart/src/config/tsconfig.base.json b/samples/charts/data-chart/waterfall-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/waterfall-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/waterfall-chart/src/config/tsconfig.spec.json b/samples/charts/data-chart/waterfall-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/waterfall-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/waterfall-chart/src/config/tsconfig.worker.json b/samples/charts/data-chart/waterfall-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/waterfall-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/waterfall-chart/tsconfig.app.json b/samples/charts/data-chart/waterfall-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/waterfall-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/waterfall-chart/tsconfig.json b/samples/charts/data-chart/waterfall-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/data-chart/waterfall-chart/tsconfig.json +++ b/samples/charts/data-chart/waterfall-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/doughnut-chart/animation/.codesandbox/Dockerfile b/samples/charts/doughnut-chart/animation/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/doughnut-chart/animation/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/doughnut-chart/animation/.codesandbox/tasks.json b/samples/charts/doughnut-chart/animation/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/doughnut-chart/animation/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/animation/.stackblitzrc b/samples/charts/doughnut-chart/animation/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/doughnut-chart/animation/.stackblitzrc +++ b/samples/charts/doughnut-chart/animation/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/animation/angular.json b/samples/charts/doughnut-chart/animation/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/doughnut-chart/animation/angular.json +++ b/samples/charts/doughnut-chart/animation/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/doughnut-chart/animation/sandbox.config.json b/samples/charts/doughnut-chart/animation/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/doughnut-chart/animation/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/animation/src/config/tsconfig-es5.app.json b/samples/charts/doughnut-chart/animation/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/doughnut-chart/animation/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/doughnut-chart/animation/src/config/tsconfig.app.json b/samples/charts/doughnut-chart/animation/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/doughnut-chart/animation/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/doughnut-chart/animation/src/config/tsconfig.base.json b/samples/charts/doughnut-chart/animation/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/doughnut-chart/animation/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/doughnut-chart/animation/src/config/tsconfig.spec.json b/samples/charts/doughnut-chart/animation/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/doughnut-chart/animation/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/doughnut-chart/animation/src/config/tsconfig.worker.json b/samples/charts/doughnut-chart/animation/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/doughnut-chart/animation/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/doughnut-chart/animation/tsconfig.app.json b/samples/charts/doughnut-chart/animation/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/doughnut-chart/animation/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/doughnut-chart/animation/tsconfig.json b/samples/charts/doughnut-chart/animation/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/doughnut-chart/animation/tsconfig.json +++ b/samples/charts/doughnut-chart/animation/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/doughnut-chart/explosion/.codesandbox/Dockerfile b/samples/charts/doughnut-chart/explosion/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/doughnut-chart/explosion/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/doughnut-chart/explosion/.codesandbox/tasks.json b/samples/charts/doughnut-chart/explosion/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/doughnut-chart/explosion/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/explosion/.stackblitzrc b/samples/charts/doughnut-chart/explosion/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/doughnut-chart/explosion/.stackblitzrc +++ b/samples/charts/doughnut-chart/explosion/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/explosion/angular.json b/samples/charts/doughnut-chart/explosion/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/doughnut-chart/explosion/angular.json +++ b/samples/charts/doughnut-chart/explosion/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/doughnut-chart/explosion/sandbox.config.json b/samples/charts/doughnut-chart/explosion/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/doughnut-chart/explosion/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/explosion/src/config/tsconfig-es5.app.json b/samples/charts/doughnut-chart/explosion/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/doughnut-chart/explosion/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/doughnut-chart/explosion/src/config/tsconfig.app.json b/samples/charts/doughnut-chart/explosion/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/doughnut-chart/explosion/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/doughnut-chart/explosion/src/config/tsconfig.base.json b/samples/charts/doughnut-chart/explosion/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/doughnut-chart/explosion/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/doughnut-chart/explosion/src/config/tsconfig.spec.json b/samples/charts/doughnut-chart/explosion/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/doughnut-chart/explosion/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/doughnut-chart/explosion/src/config/tsconfig.worker.json b/samples/charts/doughnut-chart/explosion/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/doughnut-chart/explosion/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/doughnut-chart/explosion/tsconfig.app.json b/samples/charts/doughnut-chart/explosion/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/doughnut-chart/explosion/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/doughnut-chart/explosion/tsconfig.json b/samples/charts/doughnut-chart/explosion/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/doughnut-chart/explosion/tsconfig.json +++ b/samples/charts/doughnut-chart/explosion/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/doughnut-chart/legend/.codesandbox/Dockerfile b/samples/charts/doughnut-chart/legend/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/doughnut-chart/legend/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/doughnut-chart/legend/.codesandbox/tasks.json b/samples/charts/doughnut-chart/legend/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/doughnut-chart/legend/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/legend/.stackblitzrc b/samples/charts/doughnut-chart/legend/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/doughnut-chart/legend/.stackblitzrc +++ b/samples/charts/doughnut-chart/legend/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/legend/angular.json b/samples/charts/doughnut-chart/legend/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/doughnut-chart/legend/angular.json +++ b/samples/charts/doughnut-chart/legend/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/doughnut-chart/legend/sandbox.config.json b/samples/charts/doughnut-chart/legend/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/doughnut-chart/legend/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/legend/src/config/tsconfig-es5.app.json b/samples/charts/doughnut-chart/legend/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/doughnut-chart/legend/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/doughnut-chart/legend/src/config/tsconfig.app.json b/samples/charts/doughnut-chart/legend/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/doughnut-chart/legend/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/doughnut-chart/legend/src/config/tsconfig.base.json b/samples/charts/doughnut-chart/legend/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/doughnut-chart/legend/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/doughnut-chart/legend/src/config/tsconfig.spec.json b/samples/charts/doughnut-chart/legend/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/doughnut-chart/legend/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/doughnut-chart/legend/src/config/tsconfig.worker.json b/samples/charts/doughnut-chart/legend/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/doughnut-chart/legend/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/doughnut-chart/legend/tsconfig.app.json b/samples/charts/doughnut-chart/legend/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/doughnut-chart/legend/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/doughnut-chart/legend/tsconfig.json b/samples/charts/doughnut-chart/legend/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/doughnut-chart/legend/tsconfig.json +++ b/samples/charts/doughnut-chart/legend/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/doughnut-chart/overview/.codesandbox/Dockerfile b/samples/charts/doughnut-chart/overview/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/doughnut-chart/overview/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/doughnut-chart/overview/.codesandbox/tasks.json b/samples/charts/doughnut-chart/overview/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/doughnut-chart/overview/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/overview/.stackblitzrc b/samples/charts/doughnut-chart/overview/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/doughnut-chart/overview/.stackblitzrc +++ b/samples/charts/doughnut-chart/overview/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/overview/angular.json b/samples/charts/doughnut-chart/overview/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/doughnut-chart/overview/angular.json +++ b/samples/charts/doughnut-chart/overview/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/doughnut-chart/overview/sandbox.config.json b/samples/charts/doughnut-chart/overview/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/doughnut-chart/overview/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/overview/src/config/tsconfig-es5.app.json b/samples/charts/doughnut-chart/overview/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/doughnut-chart/overview/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/doughnut-chart/overview/src/config/tsconfig.app.json b/samples/charts/doughnut-chart/overview/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/doughnut-chart/overview/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/doughnut-chart/overview/src/config/tsconfig.base.json b/samples/charts/doughnut-chart/overview/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/doughnut-chart/overview/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/doughnut-chart/overview/src/config/tsconfig.spec.json b/samples/charts/doughnut-chart/overview/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/doughnut-chart/overview/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/doughnut-chart/overview/src/config/tsconfig.worker.json b/samples/charts/doughnut-chart/overview/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/doughnut-chart/overview/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/doughnut-chart/overview/tsconfig.app.json b/samples/charts/doughnut-chart/overview/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/doughnut-chart/overview/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/doughnut-chart/overview/tsconfig.json b/samples/charts/doughnut-chart/overview/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/doughnut-chart/overview/tsconfig.json +++ b/samples/charts/doughnut-chart/overview/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/doughnut-chart/rings/.codesandbox/Dockerfile b/samples/charts/doughnut-chart/rings/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/doughnut-chart/rings/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/doughnut-chart/rings/.codesandbox/tasks.json b/samples/charts/doughnut-chart/rings/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/doughnut-chart/rings/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/rings/.stackblitzrc b/samples/charts/doughnut-chart/rings/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/doughnut-chart/rings/.stackblitzrc +++ b/samples/charts/doughnut-chart/rings/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/rings/angular.json b/samples/charts/doughnut-chart/rings/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/doughnut-chart/rings/angular.json +++ b/samples/charts/doughnut-chart/rings/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/doughnut-chart/rings/sandbox.config.json b/samples/charts/doughnut-chart/rings/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/doughnut-chart/rings/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/rings/src/config/tsconfig-es5.app.json b/samples/charts/doughnut-chart/rings/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/doughnut-chart/rings/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/doughnut-chart/rings/src/config/tsconfig.app.json b/samples/charts/doughnut-chart/rings/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/doughnut-chart/rings/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/doughnut-chart/rings/src/config/tsconfig.base.json b/samples/charts/doughnut-chart/rings/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/doughnut-chart/rings/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/doughnut-chart/rings/src/config/tsconfig.spec.json b/samples/charts/doughnut-chart/rings/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/doughnut-chart/rings/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/doughnut-chart/rings/src/config/tsconfig.worker.json b/samples/charts/doughnut-chart/rings/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/doughnut-chart/rings/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/doughnut-chart/rings/tsconfig.app.json b/samples/charts/doughnut-chart/rings/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/doughnut-chart/rings/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/doughnut-chart/rings/tsconfig.json b/samples/charts/doughnut-chart/rings/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/doughnut-chart/rings/tsconfig.json +++ b/samples/charts/doughnut-chart/rings/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/doughnut-chart/selection/.codesandbox/Dockerfile b/samples/charts/doughnut-chart/selection/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/doughnut-chart/selection/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/doughnut-chart/selection/.codesandbox/tasks.json b/samples/charts/doughnut-chart/selection/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/doughnut-chart/selection/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/selection/.stackblitzrc b/samples/charts/doughnut-chart/selection/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/doughnut-chart/selection/.stackblitzrc +++ b/samples/charts/doughnut-chart/selection/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/selection/angular.json b/samples/charts/doughnut-chart/selection/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/doughnut-chart/selection/angular.json +++ b/samples/charts/doughnut-chart/selection/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/doughnut-chart/selection/sandbox.config.json b/samples/charts/doughnut-chart/selection/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/doughnut-chart/selection/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/selection/src/config/tsconfig-es5.app.json b/samples/charts/doughnut-chart/selection/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/doughnut-chart/selection/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/doughnut-chart/selection/src/config/tsconfig.app.json b/samples/charts/doughnut-chart/selection/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/doughnut-chart/selection/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/doughnut-chart/selection/src/config/tsconfig.base.json b/samples/charts/doughnut-chart/selection/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/doughnut-chart/selection/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/doughnut-chart/selection/src/config/tsconfig.spec.json b/samples/charts/doughnut-chart/selection/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/doughnut-chart/selection/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/doughnut-chart/selection/src/config/tsconfig.worker.json b/samples/charts/doughnut-chart/selection/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/doughnut-chart/selection/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/doughnut-chart/selection/tsconfig.app.json b/samples/charts/doughnut-chart/selection/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/doughnut-chart/selection/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/doughnut-chart/selection/tsconfig.json b/samples/charts/doughnut-chart/selection/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/doughnut-chart/selection/tsconfig.json +++ b/samples/charts/doughnut-chart/selection/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/annotations/.codesandbox/Dockerfile b/samples/charts/financial-chart/annotations/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/annotations/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/annotations/.codesandbox/tasks.json b/samples/charts/financial-chart/annotations/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/annotations/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/annotations/.stackblitzrc b/samples/charts/financial-chart/annotations/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/annotations/.stackblitzrc +++ b/samples/charts/financial-chart/annotations/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/annotations/angular.json b/samples/charts/financial-chart/annotations/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/annotations/angular.json +++ b/samples/charts/financial-chart/annotations/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/annotations/sandbox.config.json b/samples/charts/financial-chart/annotations/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/annotations/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/annotations/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/annotations/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/annotations/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/annotations/src/config/tsconfig.app.json b/samples/charts/financial-chart/annotations/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/annotations/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/annotations/src/config/tsconfig.base.json b/samples/charts/financial-chart/annotations/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/annotations/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/annotations/src/config/tsconfig.spec.json b/samples/charts/financial-chart/annotations/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/annotations/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/annotations/src/config/tsconfig.worker.json b/samples/charts/financial-chart/annotations/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/annotations/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/annotations/tsconfig.app.json b/samples/charts/financial-chart/annotations/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/annotations/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/annotations/tsconfig.json b/samples/charts/financial-chart/annotations/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/annotations/tsconfig.json +++ b/samples/charts/financial-chart/annotations/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/axis-types/.codesandbox/Dockerfile b/samples/charts/financial-chart/axis-types/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/axis-types/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/axis-types/.codesandbox/tasks.json b/samples/charts/financial-chart/axis-types/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/axis-types/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/axis-types/.stackblitzrc b/samples/charts/financial-chart/axis-types/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/axis-types/.stackblitzrc +++ b/samples/charts/financial-chart/axis-types/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/axis-types/angular.json b/samples/charts/financial-chart/axis-types/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/axis-types/angular.json +++ b/samples/charts/financial-chart/axis-types/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/axis-types/sandbox.config.json b/samples/charts/financial-chart/axis-types/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/axis-types/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/axis-types/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/axis-types/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/axis-types/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/axis-types/src/config/tsconfig.app.json b/samples/charts/financial-chart/axis-types/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/axis-types/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/axis-types/src/config/tsconfig.base.json b/samples/charts/financial-chart/axis-types/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/axis-types/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/axis-types/src/config/tsconfig.spec.json b/samples/charts/financial-chart/axis-types/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/axis-types/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/axis-types/src/config/tsconfig.worker.json b/samples/charts/financial-chart/axis-types/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/axis-types/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/axis-types/tsconfig.app.json b/samples/charts/financial-chart/axis-types/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/axis-types/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/axis-types/tsconfig.json b/samples/charts/financial-chart/axis-types/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/axis-types/tsconfig.json +++ b/samples/charts/financial-chart/axis-types/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/.codesandbox/Dockerfile b/samples/charts/financial-chart/data-legend-formatting-currency/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/data-legend-formatting-currency/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/.codesandbox/tasks.json b/samples/charts/financial-chart/data-legend-formatting-currency/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/data-legend-formatting-currency/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/.stackblitzrc b/samples/charts/financial-chart/data-legend-formatting-currency/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/.stackblitzrc +++ b/samples/charts/financial-chart/data-legend-formatting-currency/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/angular.json b/samples/charts/financial-chart/data-legend-formatting-currency/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/angular.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/sandbox.config.json b/samples/charts/financial-chart/data-legend-formatting-currency/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/financial-chart/data-legend-formatting-currency/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig.app.json b/samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig.base.json b/samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig.spec.json b/samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig.worker.json b/samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/data-legend-formatting-currency/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.app.json b/samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.json b/samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend-styling-props/.codesandbox/Dockerfile b/samples/charts/financial-chart/data-legend-styling-props/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/data-legend-styling-props/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend-styling-props/.codesandbox/tasks.json b/samples/charts/financial-chart/data-legend-styling-props/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/data-legend-styling-props/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend-styling-props/.stackblitzrc b/samples/charts/financial-chart/data-legend-styling-props/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/.stackblitzrc +++ b/samples/charts/financial-chart/data-legend-styling-props/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend-styling-props/angular.json b/samples/charts/financial-chart/data-legend-styling-props/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/angular.json +++ b/samples/charts/financial-chart/data-legend-styling-props/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/data-legend-styling-props/sandbox.config.json b/samples/charts/financial-chart/data-legend-styling-props/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/financial-chart/data-legend-styling-props/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig.app.json b/samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig.base.json b/samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig.spec.json b/samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig.worker.json b/samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/data-legend-styling-props/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/data-legend-styling-props/tsconfig.app.json b/samples/charts/financial-chart/data-legend-styling-props/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/data-legend-styling-props/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/data-legend-styling-props/tsconfig.json b/samples/charts/financial-chart/data-legend-styling-props/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/tsconfig.json +++ b/samples/charts/financial-chart/data-legend-styling-props/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend/.codesandbox/Dockerfile b/samples/charts/financial-chart/data-legend/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/data-legend/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend/.codesandbox/tasks.json b/samples/charts/financial-chart/data-legend/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/data-legend/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend/.stackblitzrc b/samples/charts/financial-chart/data-legend/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/data-legend/.stackblitzrc +++ b/samples/charts/financial-chart/data-legend/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend/angular.json b/samples/charts/financial-chart/data-legend/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/data-legend/angular.json +++ b/samples/charts/financial-chart/data-legend/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/data-legend/sandbox.config.json b/samples/charts/financial-chart/data-legend/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/financial-chart/data-legend/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/data-legend/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/data-legend/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/data-legend/src/config/tsconfig.app.json b/samples/charts/financial-chart/data-legend/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/data-legend/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/data-legend/src/config/tsconfig.base.json b/samples/charts/financial-chart/data-legend/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/data-legend/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/data-legend/src/config/tsconfig.spec.json b/samples/charts/financial-chart/data-legend/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/data-legend/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/data-legend/src/config/tsconfig.worker.json b/samples/charts/financial-chart/data-legend/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/data-legend/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/data-legend/tsconfig.app.json b/samples/charts/financial-chart/data-legend/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/data-legend/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/data-legend/tsconfig.json b/samples/charts/financial-chart/data-legend/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/data-legend/tsconfig.json +++ b/samples/charts/financial-chart/data-legend/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/.codesandbox/Dockerfile b/samples/charts/financial-chart/data-tooltip-formatting-currency/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/.codesandbox/tasks.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/.stackblitzrc b/samples/charts/financial-chart/data-tooltip-formatting-currency/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/.stackblitzrc +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/angular.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/angular.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/sandbox.config.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig.app.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig.base.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig.spec.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig.worker.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.app.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/.codesandbox/Dockerfile b/samples/charts/financial-chart/data-tooltip-styling-props/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/data-tooltip-styling-props/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/.codesandbox/tasks.json b/samples/charts/financial-chart/data-tooltip-styling-props/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/data-tooltip-styling-props/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/.stackblitzrc b/samples/charts/financial-chart/data-tooltip-styling-props/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/.stackblitzrc +++ b/samples/charts/financial-chart/data-tooltip-styling-props/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/angular.json b/samples/charts/financial-chart/data-tooltip-styling-props/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/angular.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/sandbox.config.json b/samples/charts/financial-chart/data-tooltip-styling-props/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/financial-chart/data-tooltip-styling-props/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig.app.json b/samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig.base.json b/samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig.spec.json b/samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig.worker.json b/samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/data-tooltip-styling-props/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.app.json b/samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.json b/samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip/.codesandbox/Dockerfile b/samples/charts/financial-chart/data-tooltip/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/data-tooltip/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip/.codesandbox/tasks.json b/samples/charts/financial-chart/data-tooltip/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/data-tooltip/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip/.stackblitzrc b/samples/charts/financial-chart/data-tooltip/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/data-tooltip/.stackblitzrc +++ b/samples/charts/financial-chart/data-tooltip/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip/angular.json b/samples/charts/financial-chart/data-tooltip/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/data-tooltip/angular.json +++ b/samples/charts/financial-chart/data-tooltip/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/data-tooltip/sandbox.config.json b/samples/charts/financial-chart/data-tooltip/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/financial-chart/data-tooltip/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/data-tooltip/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/data-tooltip/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/data-tooltip/src/config/tsconfig.app.json b/samples/charts/financial-chart/data-tooltip/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/data-tooltip/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/data-tooltip/src/config/tsconfig.base.json b/samples/charts/financial-chart/data-tooltip/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/data-tooltip/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/data-tooltip/src/config/tsconfig.spec.json b/samples/charts/financial-chart/data-tooltip/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/data-tooltip/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/data-tooltip/src/config/tsconfig.worker.json b/samples/charts/financial-chart/data-tooltip/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/data-tooltip/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/data-tooltip/tsconfig.app.json b/samples/charts/financial-chart/data-tooltip/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/data-tooltip/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/data-tooltip/tsconfig.json b/samples/charts/financial-chart/data-tooltip/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/data-tooltip/tsconfig.json +++ b/samples/charts/financial-chart/data-tooltip/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/format-specifiers/.codesandbox/Dockerfile b/samples/charts/financial-chart/format-specifiers/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/format-specifiers/.codesandbox/tasks.json b/samples/charts/financial-chart/format-specifiers/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/format-specifiers/.stackblitzrc b/samples/charts/financial-chart/format-specifiers/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/format-specifiers/.stackblitzrc +++ b/samples/charts/financial-chart/format-specifiers/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/format-specifiers/angular.json b/samples/charts/financial-chart/format-specifiers/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/format-specifiers/angular.json +++ b/samples/charts/financial-chart/format-specifiers/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/format-specifiers/sandbox.config.json b/samples/charts/financial-chart/format-specifiers/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/financial-chart/format-specifiers/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.app.json b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.base.json b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.spec.json b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.worker.json b/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/format-specifiers/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/format-specifiers/tsconfig.app.json b/samples/charts/financial-chart/format-specifiers/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/format-specifiers/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/format-specifiers/tsconfig.json b/samples/charts/financial-chart/format-specifiers/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/format-specifiers/tsconfig.json +++ b/samples/charts/financial-chart/format-specifiers/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/high-frequency/.codesandbox/Dockerfile b/samples/charts/financial-chart/high-frequency/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/high-frequency/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/high-frequency/.codesandbox/tasks.json b/samples/charts/financial-chart/high-frequency/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/high-frequency/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/high-frequency/.stackblitzrc b/samples/charts/financial-chart/high-frequency/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/high-frequency/.stackblitzrc +++ b/samples/charts/financial-chart/high-frequency/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/high-frequency/angular.json b/samples/charts/financial-chart/high-frequency/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/high-frequency/angular.json +++ b/samples/charts/financial-chart/high-frequency/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/high-frequency/sandbox.config.json b/samples/charts/financial-chart/high-frequency/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/high-frequency/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/high-frequency/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/high-frequency/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/high-frequency/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/high-frequency/src/config/tsconfig.app.json b/samples/charts/financial-chart/high-frequency/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/high-frequency/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/high-frequency/src/config/tsconfig.base.json b/samples/charts/financial-chart/high-frequency/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/high-frequency/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/high-frequency/src/config/tsconfig.spec.json b/samples/charts/financial-chart/high-frequency/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/high-frequency/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/high-frequency/src/config/tsconfig.worker.json b/samples/charts/financial-chart/high-frequency/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/high-frequency/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/high-frequency/tsconfig.app.json b/samples/charts/financial-chart/high-frequency/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/high-frequency/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/high-frequency/tsconfig.json b/samples/charts/financial-chart/high-frequency/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/high-frequency/tsconfig.json +++ b/samples/charts/financial-chart/high-frequency/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/high-volume/.codesandbox/Dockerfile b/samples/charts/financial-chart/high-volume/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/high-volume/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/high-volume/.codesandbox/tasks.json b/samples/charts/financial-chart/high-volume/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/high-volume/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/high-volume/.stackblitzrc b/samples/charts/financial-chart/high-volume/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/high-volume/.stackblitzrc +++ b/samples/charts/financial-chart/high-volume/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/high-volume/angular.json b/samples/charts/financial-chart/high-volume/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/high-volume/angular.json +++ b/samples/charts/financial-chart/high-volume/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/high-volume/sandbox.config.json b/samples/charts/financial-chart/high-volume/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/high-volume/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/high-volume/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/high-volume/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/high-volume/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/high-volume/src/config/tsconfig.app.json b/samples/charts/financial-chart/high-volume/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/high-volume/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/high-volume/src/config/tsconfig.base.json b/samples/charts/financial-chart/high-volume/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/high-volume/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/high-volume/src/config/tsconfig.spec.json b/samples/charts/financial-chart/high-volume/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/high-volume/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/high-volume/src/config/tsconfig.worker.json b/samples/charts/financial-chart/high-volume/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/high-volume/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/high-volume/tsconfig.app.json b/samples/charts/financial-chart/high-volume/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/high-volume/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/high-volume/tsconfig.json b/samples/charts/financial-chart/high-volume/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/high-volume/tsconfig.json +++ b/samples/charts/financial-chart/high-volume/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/indicator-customization/.codesandbox/Dockerfile b/samples/charts/financial-chart/indicator-customization/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/indicator-customization/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/indicator-customization/.codesandbox/tasks.json b/samples/charts/financial-chart/indicator-customization/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/indicator-customization/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/indicator-customization/.stackblitzrc b/samples/charts/financial-chart/indicator-customization/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/indicator-customization/.stackblitzrc +++ b/samples/charts/financial-chart/indicator-customization/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/indicator-customization/angular.json b/samples/charts/financial-chart/indicator-customization/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/indicator-customization/angular.json +++ b/samples/charts/financial-chart/indicator-customization/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/indicator-customization/sandbox.config.json b/samples/charts/financial-chart/indicator-customization/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/indicator-customization/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/indicator-customization/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/indicator-customization/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/indicator-customization/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.app.json b/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.base.json b/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.spec.json b/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.worker.json b/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/indicator-customization/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/indicator-customization/tsconfig.app.json b/samples/charts/financial-chart/indicator-customization/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/indicator-customization/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/indicator-customization/tsconfig.json b/samples/charts/financial-chart/indicator-customization/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/indicator-customization/tsconfig.json +++ b/samples/charts/financial-chart/indicator-customization/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/indicator-types/.codesandbox/Dockerfile b/samples/charts/financial-chart/indicator-types/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/indicator-types/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/indicator-types/.codesandbox/tasks.json b/samples/charts/financial-chart/indicator-types/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/indicator-types/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/indicator-types/.stackblitzrc b/samples/charts/financial-chart/indicator-types/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/indicator-types/.stackblitzrc +++ b/samples/charts/financial-chart/indicator-types/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/indicator-types/angular.json b/samples/charts/financial-chart/indicator-types/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/indicator-types/angular.json +++ b/samples/charts/financial-chart/indicator-types/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/indicator-types/sandbox.config.json b/samples/charts/financial-chart/indicator-types/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/indicator-types/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/indicator-types/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/indicator-types/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/indicator-types/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/indicator-types/src/config/tsconfig.app.json b/samples/charts/financial-chart/indicator-types/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/indicator-types/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/indicator-types/src/config/tsconfig.base.json b/samples/charts/financial-chart/indicator-types/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/indicator-types/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/indicator-types/src/config/tsconfig.spec.json b/samples/charts/financial-chart/indicator-types/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/indicator-types/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/indicator-types/src/config/tsconfig.worker.json b/samples/charts/financial-chart/indicator-types/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/indicator-types/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/indicator-types/tsconfig.app.json b/samples/charts/financial-chart/indicator-types/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/indicator-types/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/indicator-types/tsconfig.json b/samples/charts/financial-chart/indicator-types/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/indicator-types/tsconfig.json +++ b/samples/charts/financial-chart/indicator-types/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/multiple-data/.codesandbox/Dockerfile b/samples/charts/financial-chart/multiple-data/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/multiple-data/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/multiple-data/.codesandbox/tasks.json b/samples/charts/financial-chart/multiple-data/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/multiple-data/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/multiple-data/.stackblitzrc b/samples/charts/financial-chart/multiple-data/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/multiple-data/.stackblitzrc +++ b/samples/charts/financial-chart/multiple-data/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/multiple-data/angular.json b/samples/charts/financial-chart/multiple-data/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/multiple-data/angular.json +++ b/samples/charts/financial-chart/multiple-data/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/multiple-data/sandbox.config.json b/samples/charts/financial-chart/multiple-data/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/multiple-data/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/multiple-data/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/multiple-data/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/multiple-data/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/multiple-data/src/config/tsconfig.app.json b/samples/charts/financial-chart/multiple-data/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/multiple-data/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/multiple-data/src/config/tsconfig.base.json b/samples/charts/financial-chart/multiple-data/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/multiple-data/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/multiple-data/src/config/tsconfig.spec.json b/samples/charts/financial-chart/multiple-data/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/multiple-data/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/multiple-data/src/config/tsconfig.worker.json b/samples/charts/financial-chart/multiple-data/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/multiple-data/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/multiple-data/tsconfig.app.json b/samples/charts/financial-chart/multiple-data/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/multiple-data/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/multiple-data/tsconfig.json b/samples/charts/financial-chart/multiple-data/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/multiple-data/tsconfig.json +++ b/samples/charts/financial-chart/multiple-data/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/multiple-feeds/.codesandbox/Dockerfile b/samples/charts/financial-chart/multiple-feeds/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/multiple-feeds/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/multiple-feeds/.codesandbox/tasks.json b/samples/charts/financial-chart/multiple-feeds/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/multiple-feeds/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/multiple-feeds/.stackblitzrc b/samples/charts/financial-chart/multiple-feeds/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/multiple-feeds/.stackblitzrc +++ b/samples/charts/financial-chart/multiple-feeds/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/multiple-feeds/angular.json b/samples/charts/financial-chart/multiple-feeds/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/multiple-feeds/angular.json +++ b/samples/charts/financial-chart/multiple-feeds/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/multiple-feeds/sandbox.config.json b/samples/charts/financial-chart/multiple-feeds/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/multiple-feeds/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.app.json b/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.base.json b/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.spec.json b/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.worker.json b/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/multiple-feeds/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/multiple-feeds/tsconfig.app.json b/samples/charts/financial-chart/multiple-feeds/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/multiple-feeds/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/multiple-feeds/tsconfig.json b/samples/charts/financial-chart/multiple-feeds/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/multiple-feeds/tsconfig.json +++ b/samples/charts/financial-chart/multiple-feeds/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/overview/.codesandbox/Dockerfile b/samples/charts/financial-chart/overview/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/overview/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/overview/.codesandbox/tasks.json b/samples/charts/financial-chart/overview/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/overview/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/overview/.stackblitzrc b/samples/charts/financial-chart/overview/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/overview/.stackblitzrc +++ b/samples/charts/financial-chart/overview/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/overview/angular.json b/samples/charts/financial-chart/overview/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/overview/angular.json +++ b/samples/charts/financial-chart/overview/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/overview/sandbox.config.json b/samples/charts/financial-chart/overview/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/overview/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/overview/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/overview/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/overview/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/overview/src/config/tsconfig.app.json b/samples/charts/financial-chart/overview/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/overview/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/overview/src/config/tsconfig.base.json b/samples/charts/financial-chart/overview/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/overview/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/overview/src/config/tsconfig.spec.json b/samples/charts/financial-chart/overview/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/overview/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/overview/src/config/tsconfig.worker.json b/samples/charts/financial-chart/overview/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/overview/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/overview/tsconfig.app.json b/samples/charts/financial-chart/overview/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/overview/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/overview/tsconfig.json b/samples/charts/financial-chart/overview/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/overview/tsconfig.json +++ b/samples/charts/financial-chart/overview/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/panes/.codesandbox/Dockerfile b/samples/charts/financial-chart/panes/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/panes/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/panes/.codesandbox/tasks.json b/samples/charts/financial-chart/panes/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/panes/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/panes/.stackblitzrc b/samples/charts/financial-chart/panes/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/panes/.stackblitzrc +++ b/samples/charts/financial-chart/panes/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/panes/angular.json b/samples/charts/financial-chart/panes/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/panes/angular.json +++ b/samples/charts/financial-chart/panes/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/panes/sandbox.config.json b/samples/charts/financial-chart/panes/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/panes/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/panes/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/panes/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/panes/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/panes/src/config/tsconfig.app.json b/samples/charts/financial-chart/panes/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/panes/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/panes/src/config/tsconfig.base.json b/samples/charts/financial-chart/panes/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/panes/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/panes/src/config/tsconfig.spec.json b/samples/charts/financial-chart/panes/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/panes/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/panes/src/config/tsconfig.worker.json b/samples/charts/financial-chart/panes/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/panes/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/panes/tsconfig.app.json b/samples/charts/financial-chart/panes/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/panes/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/panes/tsconfig.json b/samples/charts/financial-chart/panes/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/panes/tsconfig.json +++ b/samples/charts/financial-chart/panes/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/performance/.codesandbox/Dockerfile b/samples/charts/financial-chart/performance/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/performance/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/performance/.codesandbox/tasks.json b/samples/charts/financial-chart/performance/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/performance/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/performance/.stackblitzrc b/samples/charts/financial-chart/performance/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/performance/.stackblitzrc +++ b/samples/charts/financial-chart/performance/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/performance/angular.json b/samples/charts/financial-chart/performance/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/performance/angular.json +++ b/samples/charts/financial-chart/performance/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/performance/sandbox.config.json b/samples/charts/financial-chart/performance/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/performance/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/performance/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/performance/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/performance/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/performance/src/config/tsconfig.app.json b/samples/charts/financial-chart/performance/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/performance/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/performance/src/config/tsconfig.base.json b/samples/charts/financial-chart/performance/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/performance/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/performance/src/config/tsconfig.spec.json b/samples/charts/financial-chart/performance/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/performance/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/performance/src/config/tsconfig.worker.json b/samples/charts/financial-chart/performance/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/performance/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/performance/tsconfig.app.json b/samples/charts/financial-chart/performance/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/performance/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/performance/tsconfig.json b/samples/charts/financial-chart/performance/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/performance/tsconfig.json +++ b/samples/charts/financial-chart/performance/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/scrollbars/.codesandbox/Dockerfile b/samples/charts/financial-chart/scrollbars/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/scrollbars/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/scrollbars/.codesandbox/tasks.json b/samples/charts/financial-chart/scrollbars/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/scrollbars/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/scrollbars/.stackblitzrc b/samples/charts/financial-chart/scrollbars/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/scrollbars/.stackblitzrc +++ b/samples/charts/financial-chart/scrollbars/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/scrollbars/angular.json b/samples/charts/financial-chart/scrollbars/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/scrollbars/angular.json +++ b/samples/charts/financial-chart/scrollbars/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/scrollbars/sandbox.config.json b/samples/charts/financial-chart/scrollbars/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/financial-chart/scrollbars/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/scrollbars/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/scrollbars/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/scrollbars/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/scrollbars/src/config/tsconfig.app.json b/samples/charts/financial-chart/scrollbars/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/scrollbars/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/scrollbars/src/config/tsconfig.base.json b/samples/charts/financial-chart/scrollbars/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/scrollbars/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/scrollbars/src/config/tsconfig.spec.json b/samples/charts/financial-chart/scrollbars/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/scrollbars/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/scrollbars/src/config/tsconfig.worker.json b/samples/charts/financial-chart/scrollbars/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/scrollbars/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/scrollbars/tsconfig.app.json b/samples/charts/financial-chart/scrollbars/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/scrollbars/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/scrollbars/tsconfig.json b/samples/charts/financial-chart/scrollbars/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/scrollbars/tsconfig.json +++ b/samples/charts/financial-chart/scrollbars/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/stock-index-chart/.codesandbox/Dockerfile b/samples/charts/financial-chart/stock-index-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/stock-index-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/stock-index-chart/.codesandbox/tasks.json b/samples/charts/financial-chart/stock-index-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/stock-index-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/stock-index-chart/.stackblitzrc b/samples/charts/financial-chart/stock-index-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/stock-index-chart/.stackblitzrc +++ b/samples/charts/financial-chart/stock-index-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/stock-index-chart/angular.json b/samples/charts/financial-chart/stock-index-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/stock-index-chart/angular.json +++ b/samples/charts/financial-chart/stock-index-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/stock-index-chart/sandbox.config.json b/samples/charts/financial-chart/stock-index-chart/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/stock-index-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.app.json b/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.base.json b/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.spec.json b/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.worker.json b/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/stock-index-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/stock-index-chart/tsconfig.app.json b/samples/charts/financial-chart/stock-index-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/stock-index-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/stock-index-chart/tsconfig.json b/samples/charts/financial-chart/stock-index-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/stock-index-chart/tsconfig.json +++ b/samples/charts/financial-chart/stock-index-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/styling/.codesandbox/Dockerfile b/samples/charts/financial-chart/styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/styling/.codesandbox/tasks.json b/samples/charts/financial-chart/styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/styling/.stackblitzrc b/samples/charts/financial-chart/styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/styling/.stackblitzrc +++ b/samples/charts/financial-chart/styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/styling/angular.json b/samples/charts/financial-chart/styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/styling/angular.json +++ b/samples/charts/financial-chart/styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/styling/sandbox.config.json b/samples/charts/financial-chart/styling/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/styling/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/styling/src/config/tsconfig.app.json b/samples/charts/financial-chart/styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/styling/src/config/tsconfig.base.json b/samples/charts/financial-chart/styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/styling/src/config/tsconfig.spec.json b/samples/charts/financial-chart/styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/styling/src/config/tsconfig.worker.json b/samples/charts/financial-chart/styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/styling/tsconfig.app.json b/samples/charts/financial-chart/styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/styling/tsconfig.json b/samples/charts/financial-chart/styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/styling/tsconfig.json +++ b/samples/charts/financial-chart/styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/theming/.codesandbox/Dockerfile b/samples/charts/financial-chart/theming/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/theming/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/theming/.codesandbox/tasks.json b/samples/charts/financial-chart/theming/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/theming/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/theming/.stackblitzrc b/samples/charts/financial-chart/theming/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/theming/.stackblitzrc +++ b/samples/charts/financial-chart/theming/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/theming/angular.json b/samples/charts/financial-chart/theming/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/theming/angular.json +++ b/samples/charts/financial-chart/theming/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/theming/sandbox.config.json b/samples/charts/financial-chart/theming/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/theming/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/theming/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/theming/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/theming/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/theming/src/config/tsconfig.app.json b/samples/charts/financial-chart/theming/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/theming/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/theming/src/config/tsconfig.base.json b/samples/charts/financial-chart/theming/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/theming/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/theming/src/config/tsconfig.spec.json b/samples/charts/financial-chart/theming/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/theming/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/theming/src/config/tsconfig.worker.json b/samples/charts/financial-chart/theming/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/theming/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/theming/tsconfig.app.json b/samples/charts/financial-chart/theming/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/theming/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/theming/tsconfig.json b/samples/charts/financial-chart/theming/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/theming/tsconfig.json +++ b/samples/charts/financial-chart/theming/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/time-based-data/.codesandbox/Dockerfile b/samples/charts/financial-chart/time-based-data/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/time-based-data/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/time-based-data/.codesandbox/tasks.json b/samples/charts/financial-chart/time-based-data/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/time-based-data/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/time-based-data/.stackblitzrc b/samples/charts/financial-chart/time-based-data/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/time-based-data/.stackblitzrc +++ b/samples/charts/financial-chart/time-based-data/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/time-based-data/angular.json b/samples/charts/financial-chart/time-based-data/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/time-based-data/angular.json +++ b/samples/charts/financial-chart/time-based-data/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/time-based-data/sandbox.config.json b/samples/charts/financial-chart/time-based-data/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/time-based-data/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/time-based-data/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/time-based-data/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/time-based-data/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/time-based-data/src/config/tsconfig.app.json b/samples/charts/financial-chart/time-based-data/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/time-based-data/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/time-based-data/src/config/tsconfig.base.json b/samples/charts/financial-chart/time-based-data/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/time-based-data/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/time-based-data/src/config/tsconfig.spec.json b/samples/charts/financial-chart/time-based-data/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/time-based-data/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/time-based-data/src/config/tsconfig.worker.json b/samples/charts/financial-chart/time-based-data/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/time-based-data/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/time-based-data/tsconfig.app.json b/samples/charts/financial-chart/time-based-data/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/time-based-data/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/time-based-data/tsconfig.json b/samples/charts/financial-chart/time-based-data/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/time-based-data/tsconfig.json +++ b/samples/charts/financial-chart/time-based-data/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/titles/.codesandbox/Dockerfile b/samples/charts/financial-chart/titles/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/titles/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/titles/.codesandbox/tasks.json b/samples/charts/financial-chart/titles/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/titles/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/titles/.stackblitzrc b/samples/charts/financial-chart/titles/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/titles/.stackblitzrc +++ b/samples/charts/financial-chart/titles/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/titles/angular.json b/samples/charts/financial-chart/titles/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/titles/angular.json +++ b/samples/charts/financial-chart/titles/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/titles/sandbox.config.json b/samples/charts/financial-chart/titles/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/titles/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/titles/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/titles/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/titles/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/titles/src/config/tsconfig.app.json b/samples/charts/financial-chart/titles/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/titles/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/titles/src/config/tsconfig.base.json b/samples/charts/financial-chart/titles/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/titles/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/titles/src/config/tsconfig.spec.json b/samples/charts/financial-chart/titles/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/titles/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/titles/src/config/tsconfig.worker.json b/samples/charts/financial-chart/titles/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/titles/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/titles/tsconfig.app.json b/samples/charts/financial-chart/titles/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/titles/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/titles/tsconfig.json b/samples/charts/financial-chart/titles/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/titles/tsconfig.json +++ b/samples/charts/financial-chart/titles/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/tooltip-template/.codesandbox/Dockerfile b/samples/charts/financial-chart/tooltip-template/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/tooltip-template/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/tooltip-template/.codesandbox/tasks.json b/samples/charts/financial-chart/tooltip-template/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/tooltip-template/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/tooltip-template/.stackblitzrc b/samples/charts/financial-chart/tooltip-template/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/tooltip-template/.stackblitzrc +++ b/samples/charts/financial-chart/tooltip-template/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/tooltip-template/angular.json b/samples/charts/financial-chart/tooltip-template/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/tooltip-template/angular.json +++ b/samples/charts/financial-chart/tooltip-template/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/tooltip-template/sandbox.config.json b/samples/charts/financial-chart/tooltip-template/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/tooltip-template/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/tooltip-template/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/tooltip-template/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/tooltip-template/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.app.json b/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.base.json b/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.spec.json b/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.worker.json b/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/tooltip-template/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/tooltip-template/tsconfig.app.json b/samples/charts/financial-chart/tooltip-template/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/tooltip-template/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/tooltip-template/tsconfig.json b/samples/charts/financial-chart/tooltip-template/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/tooltip-template/tsconfig.json +++ b/samples/charts/financial-chart/tooltip-template/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/tooltip-types/.codesandbox/Dockerfile b/samples/charts/financial-chart/tooltip-types/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/tooltip-types/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/tooltip-types/.codesandbox/tasks.json b/samples/charts/financial-chart/tooltip-types/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/tooltip-types/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/tooltip-types/.stackblitzrc b/samples/charts/financial-chart/tooltip-types/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/tooltip-types/.stackblitzrc +++ b/samples/charts/financial-chart/tooltip-types/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/tooltip-types/angular.json b/samples/charts/financial-chart/tooltip-types/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/tooltip-types/angular.json +++ b/samples/charts/financial-chart/tooltip-types/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/tooltip-types/sandbox.config.json b/samples/charts/financial-chart/tooltip-types/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/tooltip-types/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/tooltip-types/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/tooltip-types/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/tooltip-types/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.app.json b/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.base.json b/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.spec.json b/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.worker.json b/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/tooltip-types/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/tooltip-types/tsconfig.app.json b/samples/charts/financial-chart/tooltip-types/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/tooltip-types/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/tooltip-types/tsconfig.json b/samples/charts/financial-chart/tooltip-types/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/tooltip-types/tsconfig.json +++ b/samples/charts/financial-chart/tooltip-types/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/trendlines/.codesandbox/Dockerfile b/samples/charts/financial-chart/trendlines/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/trendlines/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/trendlines/.codesandbox/tasks.json b/samples/charts/financial-chart/trendlines/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/trendlines/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/trendlines/.stackblitzrc b/samples/charts/financial-chart/trendlines/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/trendlines/.stackblitzrc +++ b/samples/charts/financial-chart/trendlines/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/trendlines/angular.json b/samples/charts/financial-chart/trendlines/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/trendlines/angular.json +++ b/samples/charts/financial-chart/trendlines/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/trendlines/sandbox.config.json b/samples/charts/financial-chart/trendlines/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/trendlines/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/trendlines/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/trendlines/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/trendlines/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/trendlines/src/config/tsconfig.app.json b/samples/charts/financial-chart/trendlines/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/trendlines/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/trendlines/src/config/tsconfig.base.json b/samples/charts/financial-chart/trendlines/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/trendlines/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/trendlines/src/config/tsconfig.spec.json b/samples/charts/financial-chart/trendlines/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/trendlines/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/trendlines/src/config/tsconfig.worker.json b/samples/charts/financial-chart/trendlines/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/trendlines/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/trendlines/tsconfig.app.json b/samples/charts/financial-chart/trendlines/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/trendlines/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/trendlines/tsconfig.json b/samples/charts/financial-chart/trendlines/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/trendlines/tsconfig.json +++ b/samples/charts/financial-chart/trendlines/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/financial-chart/volume-types/.codesandbox/Dockerfile b/samples/charts/financial-chart/volume-types/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/financial-chart/volume-types/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/financial-chart/volume-types/.codesandbox/tasks.json b/samples/charts/financial-chart/volume-types/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/financial-chart/volume-types/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/financial-chart/volume-types/.stackblitzrc b/samples/charts/financial-chart/volume-types/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/financial-chart/volume-types/.stackblitzrc +++ b/samples/charts/financial-chart/volume-types/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/financial-chart/volume-types/angular.json b/samples/charts/financial-chart/volume-types/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/financial-chart/volume-types/angular.json +++ b/samples/charts/financial-chart/volume-types/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/financial-chart/volume-types/sandbox.config.json b/samples/charts/financial-chart/volume-types/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/financial-chart/volume-types/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/financial-chart/volume-types/src/config/tsconfig-es5.app.json b/samples/charts/financial-chart/volume-types/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/financial-chart/volume-types/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/financial-chart/volume-types/src/config/tsconfig.app.json b/samples/charts/financial-chart/volume-types/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/financial-chart/volume-types/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/financial-chart/volume-types/src/config/tsconfig.base.json b/samples/charts/financial-chart/volume-types/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/financial-chart/volume-types/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/financial-chart/volume-types/src/config/tsconfig.spec.json b/samples/charts/financial-chart/volume-types/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/financial-chart/volume-types/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/financial-chart/volume-types/src/config/tsconfig.worker.json b/samples/charts/financial-chart/volume-types/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/financial-chart/volume-types/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/financial-chart/volume-types/tsconfig.app.json b/samples/charts/financial-chart/volume-types/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/financial-chart/volume-types/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/financial-chart/volume-types/tsconfig.json b/samples/charts/financial-chart/volume-types/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/financial-chart/volume-types/tsconfig.json +++ b/samples/charts/financial-chart/volume-types/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/pie-chart/animation/.codesandbox/Dockerfile b/samples/charts/pie-chart/animation/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/pie-chart/animation/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/pie-chart/animation/.codesandbox/tasks.json b/samples/charts/pie-chart/animation/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/pie-chart/animation/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/pie-chart/animation/.stackblitzrc b/samples/charts/pie-chart/animation/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/pie-chart/animation/.stackblitzrc +++ b/samples/charts/pie-chart/animation/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/pie-chart/animation/angular.json b/samples/charts/pie-chart/animation/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/pie-chart/animation/angular.json +++ b/samples/charts/pie-chart/animation/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/pie-chart/animation/sandbox.config.json b/samples/charts/pie-chart/animation/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/pie-chart/animation/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/pie-chart/animation/src/config/tsconfig-es5.app.json b/samples/charts/pie-chart/animation/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/pie-chart/animation/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/pie-chart/animation/src/config/tsconfig.app.json b/samples/charts/pie-chart/animation/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/pie-chart/animation/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/pie-chart/animation/src/config/tsconfig.base.json b/samples/charts/pie-chart/animation/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/pie-chart/animation/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/pie-chart/animation/src/config/tsconfig.spec.json b/samples/charts/pie-chart/animation/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/pie-chart/animation/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/pie-chart/animation/src/config/tsconfig.worker.json b/samples/charts/pie-chart/animation/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/pie-chart/animation/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/pie-chart/animation/tsconfig.app.json b/samples/charts/pie-chart/animation/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/pie-chart/animation/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/pie-chart/animation/tsconfig.json b/samples/charts/pie-chart/animation/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/pie-chart/animation/tsconfig.json +++ b/samples/charts/pie-chart/animation/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/pie-chart/explosion/.codesandbox/Dockerfile b/samples/charts/pie-chart/explosion/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/pie-chart/explosion/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/pie-chart/explosion/.codesandbox/tasks.json b/samples/charts/pie-chart/explosion/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/pie-chart/explosion/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/pie-chart/explosion/.stackblitzrc b/samples/charts/pie-chart/explosion/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/pie-chart/explosion/.stackblitzrc +++ b/samples/charts/pie-chart/explosion/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/pie-chart/explosion/angular.json b/samples/charts/pie-chart/explosion/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/pie-chart/explosion/angular.json +++ b/samples/charts/pie-chart/explosion/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/pie-chart/explosion/sandbox.config.json b/samples/charts/pie-chart/explosion/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/pie-chart/explosion/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/pie-chart/explosion/src/config/tsconfig-es5.app.json b/samples/charts/pie-chart/explosion/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/pie-chart/explosion/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/pie-chart/explosion/src/config/tsconfig.app.json b/samples/charts/pie-chart/explosion/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/pie-chart/explosion/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/pie-chart/explosion/src/config/tsconfig.base.json b/samples/charts/pie-chart/explosion/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/pie-chart/explosion/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/pie-chart/explosion/src/config/tsconfig.spec.json b/samples/charts/pie-chart/explosion/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/pie-chart/explosion/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/pie-chart/explosion/src/config/tsconfig.worker.json b/samples/charts/pie-chart/explosion/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/pie-chart/explosion/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/pie-chart/explosion/tsconfig.app.json b/samples/charts/pie-chart/explosion/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/pie-chart/explosion/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/pie-chart/explosion/tsconfig.json b/samples/charts/pie-chart/explosion/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/pie-chart/explosion/tsconfig.json +++ b/samples/charts/pie-chart/explosion/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/pie-chart/legend/.codesandbox/Dockerfile b/samples/charts/pie-chart/legend/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/pie-chart/legend/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/pie-chart/legend/.codesandbox/tasks.json b/samples/charts/pie-chart/legend/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/pie-chart/legend/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/pie-chart/legend/.stackblitzrc b/samples/charts/pie-chart/legend/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/pie-chart/legend/.stackblitzrc +++ b/samples/charts/pie-chart/legend/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/pie-chart/legend/angular.json b/samples/charts/pie-chart/legend/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/pie-chart/legend/angular.json +++ b/samples/charts/pie-chart/legend/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/pie-chart/legend/sandbox.config.json b/samples/charts/pie-chart/legend/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/pie-chart/legend/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/pie-chart/legend/src/config/tsconfig-es5.app.json b/samples/charts/pie-chart/legend/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/pie-chart/legend/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/pie-chart/legend/src/config/tsconfig.app.json b/samples/charts/pie-chart/legend/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/pie-chart/legend/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/pie-chart/legend/src/config/tsconfig.base.json b/samples/charts/pie-chart/legend/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/pie-chart/legend/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/pie-chart/legend/src/config/tsconfig.spec.json b/samples/charts/pie-chart/legend/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/pie-chart/legend/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/pie-chart/legend/src/config/tsconfig.worker.json b/samples/charts/pie-chart/legend/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/pie-chart/legend/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/pie-chart/legend/tsconfig.app.json b/samples/charts/pie-chart/legend/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/pie-chart/legend/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/pie-chart/legend/tsconfig.json b/samples/charts/pie-chart/legend/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/pie-chart/legend/tsconfig.json +++ b/samples/charts/pie-chart/legend/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/pie-chart/others/.codesandbox/Dockerfile b/samples/charts/pie-chart/others/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/pie-chart/others/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/pie-chart/others/.codesandbox/tasks.json b/samples/charts/pie-chart/others/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/pie-chart/others/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/pie-chart/others/.stackblitzrc b/samples/charts/pie-chart/others/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/pie-chart/others/.stackblitzrc +++ b/samples/charts/pie-chart/others/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/pie-chart/others/angular.json b/samples/charts/pie-chart/others/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/pie-chart/others/angular.json +++ b/samples/charts/pie-chart/others/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/pie-chart/others/sandbox.config.json b/samples/charts/pie-chart/others/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/pie-chart/others/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/pie-chart/others/src/config/tsconfig-es5.app.json b/samples/charts/pie-chart/others/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/pie-chart/others/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/pie-chart/others/src/config/tsconfig.app.json b/samples/charts/pie-chart/others/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/pie-chart/others/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/pie-chart/others/src/config/tsconfig.base.json b/samples/charts/pie-chart/others/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/pie-chart/others/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/pie-chart/others/src/config/tsconfig.spec.json b/samples/charts/pie-chart/others/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/pie-chart/others/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/pie-chart/others/src/config/tsconfig.worker.json b/samples/charts/pie-chart/others/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/pie-chart/others/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/pie-chart/others/tsconfig.app.json b/samples/charts/pie-chart/others/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/pie-chart/others/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/pie-chart/others/tsconfig.json b/samples/charts/pie-chart/others/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/pie-chart/others/tsconfig.json +++ b/samples/charts/pie-chart/others/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/pie-chart/overview/.codesandbox/Dockerfile b/samples/charts/pie-chart/overview/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/pie-chart/overview/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/pie-chart/overview/.codesandbox/tasks.json b/samples/charts/pie-chart/overview/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/pie-chart/overview/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/pie-chart/overview/.stackblitzrc b/samples/charts/pie-chart/overview/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/pie-chart/overview/.stackblitzrc +++ b/samples/charts/pie-chart/overview/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/pie-chart/overview/angular.json b/samples/charts/pie-chart/overview/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/pie-chart/overview/angular.json +++ b/samples/charts/pie-chart/overview/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/pie-chart/overview/sandbox.config.json b/samples/charts/pie-chart/overview/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/pie-chart/overview/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/pie-chart/overview/src/config/tsconfig-es5.app.json b/samples/charts/pie-chart/overview/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/pie-chart/overview/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/pie-chart/overview/src/config/tsconfig.app.json b/samples/charts/pie-chart/overview/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/pie-chart/overview/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/pie-chart/overview/src/config/tsconfig.base.json b/samples/charts/pie-chart/overview/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/pie-chart/overview/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/pie-chart/overview/src/config/tsconfig.spec.json b/samples/charts/pie-chart/overview/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/pie-chart/overview/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/pie-chart/overview/src/config/tsconfig.worker.json b/samples/charts/pie-chart/overview/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/pie-chart/overview/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/pie-chart/overview/tsconfig.app.json b/samples/charts/pie-chart/overview/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/pie-chart/overview/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/pie-chart/overview/tsconfig.json b/samples/charts/pie-chart/overview/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/pie-chart/overview/tsconfig.json +++ b/samples/charts/pie-chart/overview/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/pie-chart/selection/.codesandbox/Dockerfile b/samples/charts/pie-chart/selection/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/pie-chart/selection/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/pie-chart/selection/.codesandbox/tasks.json b/samples/charts/pie-chart/selection/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/pie-chart/selection/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/pie-chart/selection/.stackblitzrc b/samples/charts/pie-chart/selection/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/pie-chart/selection/.stackblitzrc +++ b/samples/charts/pie-chart/selection/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/pie-chart/selection/angular.json b/samples/charts/pie-chart/selection/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/pie-chart/selection/angular.json +++ b/samples/charts/pie-chart/selection/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/pie-chart/selection/sandbox.config.json b/samples/charts/pie-chart/selection/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/pie-chart/selection/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/pie-chart/selection/src/config/tsconfig-es5.app.json b/samples/charts/pie-chart/selection/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/pie-chart/selection/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/pie-chart/selection/src/config/tsconfig.app.json b/samples/charts/pie-chart/selection/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/pie-chart/selection/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/pie-chart/selection/src/config/tsconfig.base.json b/samples/charts/pie-chart/selection/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/pie-chart/selection/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/pie-chart/selection/src/config/tsconfig.spec.json b/samples/charts/pie-chart/selection/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/pie-chart/selection/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/pie-chart/selection/src/config/tsconfig.worker.json b/samples/charts/pie-chart/selection/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/pie-chart/selection/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/pie-chart/selection/tsconfig.app.json b/samples/charts/pie-chart/selection/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/pie-chart/selection/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/pie-chart/selection/tsconfig.json b/samples/charts/pie-chart/selection/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/pie-chart/selection/tsconfig.json +++ b/samples/charts/pie-chart/selection/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/pie-chart/styling/.codesandbox/Dockerfile b/samples/charts/pie-chart/styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/pie-chart/styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/pie-chart/styling/.codesandbox/tasks.json b/samples/charts/pie-chart/styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/pie-chart/styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/pie-chart/styling/.stackblitzrc b/samples/charts/pie-chart/styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/pie-chart/styling/.stackblitzrc +++ b/samples/charts/pie-chart/styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/pie-chart/styling/angular.json b/samples/charts/pie-chart/styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/pie-chart/styling/angular.json +++ b/samples/charts/pie-chart/styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/pie-chart/styling/sandbox.config.json b/samples/charts/pie-chart/styling/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/pie-chart/styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/pie-chart/styling/src/config/tsconfig-es5.app.json b/samples/charts/pie-chart/styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/pie-chart/styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/pie-chart/styling/src/config/tsconfig.app.json b/samples/charts/pie-chart/styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/pie-chart/styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/pie-chart/styling/src/config/tsconfig.base.json b/samples/charts/pie-chart/styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/pie-chart/styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/pie-chart/styling/src/config/tsconfig.spec.json b/samples/charts/pie-chart/styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/pie-chart/styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/pie-chart/styling/src/config/tsconfig.worker.json b/samples/charts/pie-chart/styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/pie-chart/styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/pie-chart/styling/tsconfig.app.json b/samples/charts/pie-chart/styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/pie-chart/styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/pie-chart/styling/tsconfig.json b/samples/charts/pie-chart/styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/pie-chart/styling/tsconfig.json +++ b/samples/charts/pie-chart/styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/sparkline/display-area/.codesandbox/Dockerfile b/samples/charts/sparkline/display-area/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/sparkline/display-area/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/sparkline/display-area/.codesandbox/tasks.json b/samples/charts/sparkline/display-area/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/sparkline/display-area/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/sparkline/display-area/.stackblitzrc b/samples/charts/sparkline/display-area/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/sparkline/display-area/.stackblitzrc +++ b/samples/charts/sparkline/display-area/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/sparkline/display-area/angular.json b/samples/charts/sparkline/display-area/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/sparkline/display-area/angular.json +++ b/samples/charts/sparkline/display-area/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/sparkline/display-area/sandbox.config.json b/samples/charts/sparkline/display-area/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/sparkline/display-area/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/sparkline/display-area/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/display-area/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/sparkline/display-area/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/sparkline/display-area/src/config/tsconfig.app.json b/samples/charts/sparkline/display-area/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/sparkline/display-area/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/sparkline/display-area/src/config/tsconfig.base.json b/samples/charts/sparkline/display-area/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/sparkline/display-area/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/sparkline/display-area/src/config/tsconfig.spec.json b/samples/charts/sparkline/display-area/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/sparkline/display-area/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/sparkline/display-area/src/config/tsconfig.worker.json b/samples/charts/sparkline/display-area/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/sparkline/display-area/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/sparkline/display-area/tsconfig.app.json b/samples/charts/sparkline/display-area/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/sparkline/display-area/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/sparkline/display-area/tsconfig.json b/samples/charts/sparkline/display-area/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/sparkline/display-area/tsconfig.json +++ b/samples/charts/sparkline/display-area/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/sparkline/display-column/.codesandbox/Dockerfile b/samples/charts/sparkline/display-column/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/sparkline/display-column/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/sparkline/display-column/.codesandbox/tasks.json b/samples/charts/sparkline/display-column/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/sparkline/display-column/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/sparkline/display-column/.stackblitzrc b/samples/charts/sparkline/display-column/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/sparkline/display-column/.stackblitzrc +++ b/samples/charts/sparkline/display-column/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/sparkline/display-column/angular.json b/samples/charts/sparkline/display-column/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/sparkline/display-column/angular.json +++ b/samples/charts/sparkline/display-column/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/sparkline/display-column/sandbox.config.json b/samples/charts/sparkline/display-column/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/sparkline/display-column/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/sparkline/display-column/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/display-column/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/sparkline/display-column/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/sparkline/display-column/src/config/tsconfig.app.json b/samples/charts/sparkline/display-column/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/sparkline/display-column/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/sparkline/display-column/src/config/tsconfig.base.json b/samples/charts/sparkline/display-column/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/sparkline/display-column/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/sparkline/display-column/src/config/tsconfig.spec.json b/samples/charts/sparkline/display-column/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/sparkline/display-column/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/sparkline/display-column/src/config/tsconfig.worker.json b/samples/charts/sparkline/display-column/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/sparkline/display-column/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/sparkline/display-column/tsconfig.app.json b/samples/charts/sparkline/display-column/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/sparkline/display-column/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/sparkline/display-column/tsconfig.json b/samples/charts/sparkline/display-column/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/sparkline/display-column/tsconfig.json +++ b/samples/charts/sparkline/display-column/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/sparkline/display-lines/.codesandbox/Dockerfile b/samples/charts/sparkline/display-lines/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/sparkline/display-lines/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/sparkline/display-lines/.codesandbox/tasks.json b/samples/charts/sparkline/display-lines/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/sparkline/display-lines/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/sparkline/display-lines/.stackblitzrc b/samples/charts/sparkline/display-lines/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/sparkline/display-lines/.stackblitzrc +++ b/samples/charts/sparkline/display-lines/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/sparkline/display-lines/angular.json b/samples/charts/sparkline/display-lines/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/sparkline/display-lines/angular.json +++ b/samples/charts/sparkline/display-lines/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 35b77cb25..b18743c2c 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/sparkline/display-lines/sandbox.config.json b/samples/charts/sparkline/display-lines/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/sparkline/display-lines/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/sparkline/display-lines/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/display-lines/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/sparkline/display-lines/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/sparkline/display-lines/src/config/tsconfig.app.json b/samples/charts/sparkline/display-lines/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/sparkline/display-lines/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/sparkline/display-lines/src/config/tsconfig.base.json b/samples/charts/sparkline/display-lines/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/sparkline/display-lines/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/sparkline/display-lines/src/config/tsconfig.spec.json b/samples/charts/sparkline/display-lines/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/sparkline/display-lines/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/sparkline/display-lines/src/config/tsconfig.worker.json b/samples/charts/sparkline/display-lines/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/sparkline/display-lines/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/sparkline/display-lines/tsconfig.app.json b/samples/charts/sparkline/display-lines/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/sparkline/display-lines/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/sparkline/display-lines/tsconfig.json b/samples/charts/sparkline/display-lines/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/sparkline/display-lines/tsconfig.json +++ b/samples/charts/sparkline/display-lines/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/sparkline/display-types/.codesandbox/Dockerfile b/samples/charts/sparkline/display-types/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/sparkline/display-types/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/sparkline/display-types/.codesandbox/tasks.json b/samples/charts/sparkline/display-types/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/sparkline/display-types/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/sparkline/display-types/.stackblitzrc b/samples/charts/sparkline/display-types/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/sparkline/display-types/.stackblitzrc +++ b/samples/charts/sparkline/display-types/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/sparkline/display-types/angular.json b/samples/charts/sparkline/display-types/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/sparkline/display-types/angular.json +++ b/samples/charts/sparkline/display-types/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/sparkline/display-types/sandbox.config.json b/samples/charts/sparkline/display-types/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/sparkline/display-types/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/sparkline/display-types/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/display-types/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/sparkline/display-types/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/sparkline/display-types/src/config/tsconfig.app.json b/samples/charts/sparkline/display-types/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/sparkline/display-types/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/sparkline/display-types/src/config/tsconfig.base.json b/samples/charts/sparkline/display-types/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/sparkline/display-types/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/sparkline/display-types/src/config/tsconfig.spec.json b/samples/charts/sparkline/display-types/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/sparkline/display-types/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/sparkline/display-types/src/config/tsconfig.worker.json b/samples/charts/sparkline/display-types/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/sparkline/display-types/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/sparkline/display-types/tsconfig.app.json b/samples/charts/sparkline/display-types/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/sparkline/display-types/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/sparkline/display-types/tsconfig.json b/samples/charts/sparkline/display-types/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/sparkline/display-types/tsconfig.json +++ b/samples/charts/sparkline/display-types/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/sparkline/display-winloss/.codesandbox/Dockerfile b/samples/charts/sparkline/display-winloss/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/sparkline/display-winloss/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/sparkline/display-winloss/.codesandbox/tasks.json b/samples/charts/sparkline/display-winloss/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/sparkline/display-winloss/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/sparkline/display-winloss/.stackblitzrc b/samples/charts/sparkline/display-winloss/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/sparkline/display-winloss/.stackblitzrc +++ b/samples/charts/sparkline/display-winloss/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/sparkline/display-winloss/angular.json b/samples/charts/sparkline/display-winloss/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/sparkline/display-winloss/angular.json +++ b/samples/charts/sparkline/display-winloss/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/sparkline/display-winloss/sandbox.config.json b/samples/charts/sparkline/display-winloss/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/sparkline/display-winloss/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/sparkline/display-winloss/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/display-winloss/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/sparkline/display-winloss/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/sparkline/display-winloss/src/config/tsconfig.app.json b/samples/charts/sparkline/display-winloss/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/sparkline/display-winloss/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/sparkline/display-winloss/src/config/tsconfig.base.json b/samples/charts/sparkline/display-winloss/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/sparkline/display-winloss/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/sparkline/display-winloss/src/config/tsconfig.spec.json b/samples/charts/sparkline/display-winloss/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/sparkline/display-winloss/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/sparkline/display-winloss/src/config/tsconfig.worker.json b/samples/charts/sparkline/display-winloss/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/sparkline/display-winloss/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/sparkline/display-winloss/tsconfig.app.json b/samples/charts/sparkline/display-winloss/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/sparkline/display-winloss/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/sparkline/display-winloss/tsconfig.json b/samples/charts/sparkline/display-winloss/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/sparkline/display-winloss/tsconfig.json +++ b/samples/charts/sparkline/display-winloss/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/sparkline/grid/.codesandbox/Dockerfile b/samples/charts/sparkline/grid/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/sparkline/grid/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/sparkline/grid/.codesandbox/tasks.json b/samples/charts/sparkline/grid/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/sparkline/grid/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/sparkline/grid/.stackblitzrc b/samples/charts/sparkline/grid/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/sparkline/grid/.stackblitzrc +++ b/samples/charts/sparkline/grid/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/sparkline/grid/angular.json b/samples/charts/sparkline/grid/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/sparkline/grid/angular.json +++ b/samples/charts/sparkline/grid/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 8515f8f61..07a06398c 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-theming": "6.4.0-beta.2", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/sparkline/grid/sandbox.config.json b/samples/charts/sparkline/grid/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/sparkline/grid/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/sparkline/grid/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/grid/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/sparkline/grid/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/sparkline/grid/src/config/tsconfig.app.json b/samples/charts/sparkline/grid/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/sparkline/grid/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/sparkline/grid/src/config/tsconfig.base.json b/samples/charts/sparkline/grid/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/sparkline/grid/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/sparkline/grid/src/config/tsconfig.spec.json b/samples/charts/sparkline/grid/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/sparkline/grid/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/sparkline/grid/src/config/tsconfig.worker.json b/samples/charts/sparkline/grid/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/sparkline/grid/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/sparkline/grid/tsconfig.app.json b/samples/charts/sparkline/grid/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/sparkline/grid/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/sparkline/grid/tsconfig.json b/samples/charts/sparkline/grid/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/sparkline/grid/tsconfig.json +++ b/samples/charts/sparkline/grid/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/sparkline/markers/.codesandbox/Dockerfile b/samples/charts/sparkline/markers/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/sparkline/markers/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/sparkline/markers/.codesandbox/tasks.json b/samples/charts/sparkline/markers/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/sparkline/markers/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/sparkline/markers/.stackblitzrc b/samples/charts/sparkline/markers/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/sparkline/markers/.stackblitzrc +++ b/samples/charts/sparkline/markers/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/sparkline/markers/angular.json b/samples/charts/sparkline/markers/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/sparkline/markers/angular.json +++ b/samples/charts/sparkline/markers/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/sparkline/markers/sandbox.config.json b/samples/charts/sparkline/markers/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/sparkline/markers/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/sparkline/markers/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/markers/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/sparkline/markers/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/sparkline/markers/src/config/tsconfig.app.json b/samples/charts/sparkline/markers/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/sparkline/markers/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/sparkline/markers/src/config/tsconfig.base.json b/samples/charts/sparkline/markers/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/sparkline/markers/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/sparkline/markers/src/config/tsconfig.spec.json b/samples/charts/sparkline/markers/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/sparkline/markers/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/sparkline/markers/src/config/tsconfig.worker.json b/samples/charts/sparkline/markers/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/sparkline/markers/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/sparkline/markers/tsconfig.app.json b/samples/charts/sparkline/markers/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/sparkline/markers/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/sparkline/markers/tsconfig.json b/samples/charts/sparkline/markers/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/sparkline/markers/tsconfig.json +++ b/samples/charts/sparkline/markers/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/sparkline/normal-range/.codesandbox/Dockerfile b/samples/charts/sparkline/normal-range/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/sparkline/normal-range/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/sparkline/normal-range/.codesandbox/tasks.json b/samples/charts/sparkline/normal-range/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/sparkline/normal-range/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/sparkline/normal-range/.stackblitzrc b/samples/charts/sparkline/normal-range/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/sparkline/normal-range/.stackblitzrc +++ b/samples/charts/sparkline/normal-range/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/sparkline/normal-range/angular.json b/samples/charts/sparkline/normal-range/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/sparkline/normal-range/angular.json +++ b/samples/charts/sparkline/normal-range/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/sparkline/normal-range/sandbox.config.json b/samples/charts/sparkline/normal-range/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/sparkline/normal-range/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/sparkline/normal-range/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/normal-range/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/sparkline/normal-range/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/sparkline/normal-range/src/config/tsconfig.app.json b/samples/charts/sparkline/normal-range/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/sparkline/normal-range/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/sparkline/normal-range/src/config/tsconfig.base.json b/samples/charts/sparkline/normal-range/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/sparkline/normal-range/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/sparkline/normal-range/src/config/tsconfig.spec.json b/samples/charts/sparkline/normal-range/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/sparkline/normal-range/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/sparkline/normal-range/src/config/tsconfig.worker.json b/samples/charts/sparkline/normal-range/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/sparkline/normal-range/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/sparkline/normal-range/tsconfig.app.json b/samples/charts/sparkline/normal-range/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/sparkline/normal-range/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/sparkline/normal-range/tsconfig.json b/samples/charts/sparkline/normal-range/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/sparkline/normal-range/tsconfig.json +++ b/samples/charts/sparkline/normal-range/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/sparkline/trendlines/.codesandbox/Dockerfile b/samples/charts/sparkline/trendlines/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/sparkline/trendlines/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/sparkline/trendlines/.codesandbox/tasks.json b/samples/charts/sparkline/trendlines/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/sparkline/trendlines/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/sparkline/trendlines/.stackblitzrc b/samples/charts/sparkline/trendlines/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/sparkline/trendlines/.stackblitzrc +++ b/samples/charts/sparkline/trendlines/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/sparkline/trendlines/angular.json b/samples/charts/sparkline/trendlines/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/sparkline/trendlines/angular.json +++ b/samples/charts/sparkline/trendlines/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/sparkline/trendlines/sandbox.config.json b/samples/charts/sparkline/trendlines/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/sparkline/trendlines/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/sparkline/trendlines/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/trendlines/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/sparkline/trendlines/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/sparkline/trendlines/src/config/tsconfig.app.json b/samples/charts/sparkline/trendlines/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/sparkline/trendlines/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/sparkline/trendlines/src/config/tsconfig.base.json b/samples/charts/sparkline/trendlines/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/sparkline/trendlines/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/sparkline/trendlines/src/config/tsconfig.spec.json b/samples/charts/sparkline/trendlines/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/sparkline/trendlines/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/sparkline/trendlines/src/config/tsconfig.worker.json b/samples/charts/sparkline/trendlines/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/sparkline/trendlines/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/sparkline/trendlines/tsconfig.app.json b/samples/charts/sparkline/trendlines/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/sparkline/trendlines/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/sparkline/trendlines/tsconfig.json b/samples/charts/sparkline/trendlines/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/sparkline/trendlines/tsconfig.json +++ b/samples/charts/sparkline/trendlines/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/sparkline/unknown-values/.codesandbox/Dockerfile b/samples/charts/sparkline/unknown-values/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/sparkline/unknown-values/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/sparkline/unknown-values/.codesandbox/tasks.json b/samples/charts/sparkline/unknown-values/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/sparkline/unknown-values/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/sparkline/unknown-values/.stackblitzrc b/samples/charts/sparkline/unknown-values/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/sparkline/unknown-values/.stackblitzrc +++ b/samples/charts/sparkline/unknown-values/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/sparkline/unknown-values/angular.json b/samples/charts/sparkline/unknown-values/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/sparkline/unknown-values/angular.json +++ b/samples/charts/sparkline/unknown-values/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/sparkline/unknown-values/sandbox.config.json b/samples/charts/sparkline/unknown-values/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/sparkline/unknown-values/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/sparkline/unknown-values/src/config/tsconfig-es5.app.json b/samples/charts/sparkline/unknown-values/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/sparkline/unknown-values/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/sparkline/unknown-values/src/config/tsconfig.app.json b/samples/charts/sparkline/unknown-values/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/sparkline/unknown-values/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/sparkline/unknown-values/src/config/tsconfig.base.json b/samples/charts/sparkline/unknown-values/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/sparkline/unknown-values/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/sparkline/unknown-values/src/config/tsconfig.spec.json b/samples/charts/sparkline/unknown-values/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/sparkline/unknown-values/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/sparkline/unknown-values/src/config/tsconfig.worker.json b/samples/charts/sparkline/unknown-values/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/sparkline/unknown-values/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/sparkline/unknown-values/tsconfig.app.json b/samples/charts/sparkline/unknown-values/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/sparkline/unknown-values/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/sparkline/unknown-values/tsconfig.json b/samples/charts/sparkline/unknown-values/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/sparkline/unknown-values/tsconfig.json +++ b/samples/charts/sparkline/unknown-values/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/toolbar/actions-built-in-category-chart/.codesandbox/Dockerfile b/samples/charts/toolbar/actions-built-in-category-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/toolbar/actions-built-in-category-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/toolbar/actions-built-in-category-chart/.codesandbox/tasks.json b/samples/charts/toolbar/actions-built-in-category-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/toolbar/actions-built-in-category-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/toolbar/actions-built-in-category-chart/.stackblitzrc b/samples/charts/toolbar/actions-built-in-category-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/.stackblitzrc +++ b/samples/charts/toolbar/actions-built-in-category-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/toolbar/actions-built-in-category-chart/angular.json b/samples/charts/toolbar/actions-built-in-category-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/angular.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 35b77cb25..b18743c2c 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/sandbox.config.json b/samples/charts/toolbar/actions-built-in-category-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/toolbar/actions-built-in-category-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig-es5.app.json b/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.app.json b/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.base.json b/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.spec.json b/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.worker.json b/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.app.json b/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json b/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/toolbar/actions-built-in-data-chart/.codesandbox/Dockerfile b/samples/charts/toolbar/actions-built-in-data-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/toolbar/actions-built-in-data-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/toolbar/actions-built-in-data-chart/.codesandbox/tasks.json b/samples/charts/toolbar/actions-built-in-data-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/toolbar/actions-built-in-data-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/toolbar/actions-built-in-data-chart/.stackblitzrc b/samples/charts/toolbar/actions-built-in-data-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/.stackblitzrc +++ b/samples/charts/toolbar/actions-built-in-data-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/toolbar/actions-built-in-data-chart/angular.json b/samples/charts/toolbar/actions-built-in-data-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/angular.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 35b77cb25..b18743c2c 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/sandbox.config.json b/samples/charts/toolbar/actions-built-in-data-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/toolbar/actions-built-in-data-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig-es5.app.json b/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.app.json b/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.base.json b/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.spec.json b/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.worker.json b/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.app.json b/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json b/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/toolbar/custom-tool/.codesandbox/Dockerfile b/samples/charts/toolbar/custom-tool/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/toolbar/custom-tool/.codesandbox/tasks.json b/samples/charts/toolbar/custom-tool/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/toolbar/custom-tool/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/toolbar/custom-tool/.stackblitzrc b/samples/charts/toolbar/custom-tool/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/toolbar/custom-tool/.stackblitzrc +++ b/samples/charts/toolbar/custom-tool/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/toolbar/custom-tool/angular.json b/samples/charts/toolbar/custom-tool/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/toolbar/custom-tool/angular.json +++ b/samples/charts/toolbar/custom-tool/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 1af2038ac..ac0c7e9cd 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/toolbar/custom-tool/sandbox.config.json b/samples/charts/toolbar/custom-tool/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/toolbar/custom-tool/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/toolbar/custom-tool/src/config/tsconfig-es5.app.json b/samples/charts/toolbar/custom-tool/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/toolbar/custom-tool/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/toolbar/custom-tool/src/config/tsconfig.app.json b/samples/charts/toolbar/custom-tool/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/toolbar/custom-tool/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/toolbar/custom-tool/src/config/tsconfig.base.json b/samples/charts/toolbar/custom-tool/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/toolbar/custom-tool/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/toolbar/custom-tool/src/config/tsconfig.spec.json b/samples/charts/toolbar/custom-tool/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/toolbar/custom-tool/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/toolbar/custom-tool/src/config/tsconfig.worker.json b/samples/charts/toolbar/custom-tool/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/toolbar/custom-tool/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/toolbar/custom-tool/tsconfig.app.json b/samples/charts/toolbar/custom-tool/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/toolbar/custom-tool/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/toolbar/custom-tool/tsconfig.json b/samples/charts/toolbar/custom-tool/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/toolbar/custom-tool/tsconfig.json +++ b/samples/charts/toolbar/custom-tool/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/.codesandbox/Dockerfile b/samples/charts/toolbar/layout-actions-for-data-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/toolbar/layout-actions-for-data-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/.codesandbox/tasks.json b/samples/charts/toolbar/layout-actions-for-data-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/toolbar/layout-actions-for-data-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/.stackblitzrc b/samples/charts/toolbar/layout-actions-for-data-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/.stackblitzrc +++ b/samples/charts/toolbar/layout-actions-for-data-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/angular.json b/samples/charts/toolbar/layout-actions-for-data-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/angular.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 35b77cb25..b18743c2c 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/sandbox.config.json b/samples/charts/toolbar/layout-actions-for-data-chart/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/toolbar/layout-actions-for-data-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig-es5.app.json b/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.app.json b/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.base.json b/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.spec.json b/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.worker.json b/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.app.json b/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json b/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/.codesandbox/Dockerfile b/samples/charts/toolbar/layout-in-vertical-orientation/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/toolbar/layout-in-vertical-orientation/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/.codesandbox/tasks.json b/samples/charts/toolbar/layout-in-vertical-orientation/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/toolbar/layout-in-vertical-orientation/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/.stackblitzrc b/samples/charts/toolbar/layout-in-vertical-orientation/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/.stackblitzrc +++ b/samples/charts/toolbar/layout-in-vertical-orientation/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/angular.json b/samples/charts/toolbar/layout-in-vertical-orientation/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/angular.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 35b77cb25..b18743c2c 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/sandbox.config.json b/samples/charts/toolbar/layout-in-vertical-orientation/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/toolbar/layout-in-vertical-orientation/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig-es5.app.json b/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.app.json b/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.base.json b/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.spec.json b/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.worker.json b/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/toolbar/layout-in-vertical-orientation/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.app.json b/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json b/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/toolbar/theming/.codesandbox/Dockerfile b/samples/charts/toolbar/theming/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/toolbar/theming/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/toolbar/theming/.codesandbox/tasks.json b/samples/charts/toolbar/theming/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/toolbar/theming/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/toolbar/theming/.stackblitzrc b/samples/charts/toolbar/theming/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/toolbar/theming/.stackblitzrc +++ b/samples/charts/toolbar/theming/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/toolbar/theming/angular.json b/samples/charts/toolbar/theming/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/toolbar/theming/angular.json +++ b/samples/charts/toolbar/theming/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/toolbar/theming/sandbox.config.json b/samples/charts/toolbar/theming/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/toolbar/theming/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/toolbar/theming/src/config/tsconfig-es5.app.json b/samples/charts/toolbar/theming/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/toolbar/theming/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/toolbar/theming/src/config/tsconfig.app.json b/samples/charts/toolbar/theming/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/toolbar/theming/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/toolbar/theming/src/config/tsconfig.base.json b/samples/charts/toolbar/theming/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/toolbar/theming/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/toolbar/theming/src/config/tsconfig.spec.json b/samples/charts/toolbar/theming/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/toolbar/theming/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/toolbar/theming/src/config/tsconfig.worker.json b/samples/charts/toolbar/theming/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/toolbar/theming/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/toolbar/theming/tsconfig.app.json b/samples/charts/toolbar/theming/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/toolbar/theming/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/toolbar/theming/tsconfig.json b/samples/charts/toolbar/theming/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/toolbar/theming/tsconfig.json +++ b/samples/charts/toolbar/theming/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/tree-map/events/.codesandbox/Dockerfile b/samples/charts/tree-map/events/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/tree-map/events/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/tree-map/events/.codesandbox/tasks.json b/samples/charts/tree-map/events/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/tree-map/events/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/tree-map/events/.stackblitzrc b/samples/charts/tree-map/events/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/tree-map/events/.stackblitzrc +++ b/samples/charts/tree-map/events/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/tree-map/events/angular.json b/samples/charts/tree-map/events/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/tree-map/events/angular.json +++ b/samples/charts/tree-map/events/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index d46b4d159..455da6795 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/tree-map/events/sandbox.config.json b/samples/charts/tree-map/events/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/tree-map/events/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/tree-map/events/src/config/tsconfig-es5.app.json b/samples/charts/tree-map/events/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/tree-map/events/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/tree-map/events/src/config/tsconfig.app.json b/samples/charts/tree-map/events/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/tree-map/events/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/tree-map/events/src/config/tsconfig.base.json b/samples/charts/tree-map/events/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/tree-map/events/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/tree-map/events/src/config/tsconfig.spec.json b/samples/charts/tree-map/events/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/tree-map/events/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/tree-map/events/src/config/tsconfig.worker.json b/samples/charts/tree-map/events/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/tree-map/events/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/tree-map/events/tsconfig.app.json b/samples/charts/tree-map/events/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/tree-map/events/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/tree-map/events/tsconfig.json b/samples/charts/tree-map/events/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/tree-map/events/tsconfig.json +++ b/samples/charts/tree-map/events/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting-percent-based/.codesandbox/Dockerfile b/samples/charts/tree-map/highlighting-percent-based/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting-percent-based/.codesandbox/tasks.json b/samples/charts/tree-map/highlighting-percent-based/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting-percent-based/.stackblitzrc b/samples/charts/tree-map/highlighting-percent-based/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/tree-map/highlighting-percent-based/.stackblitzrc +++ b/samples/charts/tree-map/highlighting-percent-based/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting-percent-based/angular.json b/samples/charts/tree-map/highlighting-percent-based/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/tree-map/highlighting-percent-based/angular.json +++ b/samples/charts/tree-map/highlighting-percent-based/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/tree-map/highlighting-percent-based/sandbox.config.json b/samples/charts/tree-map/highlighting-percent-based/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/tree-map/highlighting-percent-based/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig-es5.app.json b/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.app.json b/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.base.json b/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.spec.json b/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.worker.json b/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/tree-map/highlighting-percent-based/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/tree-map/highlighting-percent-based/tsconfig.app.json b/samples/charts/tree-map/highlighting-percent-based/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/tree-map/highlighting-percent-based/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/tree-map/highlighting-percent-based/tsconfig.json b/samples/charts/tree-map/highlighting-percent-based/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/tree-map/highlighting-percent-based/tsconfig.json +++ b/samples/charts/tree-map/highlighting-percent-based/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting/.codesandbox/Dockerfile b/samples/charts/tree-map/highlighting/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/tree-map/highlighting/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting/.codesandbox/tasks.json b/samples/charts/tree-map/highlighting/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/tree-map/highlighting/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting/.stackblitzrc b/samples/charts/tree-map/highlighting/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/tree-map/highlighting/.stackblitzrc +++ b/samples/charts/tree-map/highlighting/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting/angular.json b/samples/charts/tree-map/highlighting/angular.json index 0e17c5c1f..0c2c173c9 100644 --- a/samples/charts/tree-map/highlighting/angular.json +++ b/samples/charts/tree-map/highlighting/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,41 +95,25 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } - }, + "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 4cf59528e..e03218915 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/tree-map/highlighting/sandbox.config.json b/samples/charts/tree-map/highlighting/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/tree-map/highlighting/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting/src/config/tsconfig-es5.app.json b/samples/charts/tree-map/highlighting/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/tree-map/highlighting/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/tree-map/highlighting/src/config/tsconfig.app.json b/samples/charts/tree-map/highlighting/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/tree-map/highlighting/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/tree-map/highlighting/src/config/tsconfig.base.json b/samples/charts/tree-map/highlighting/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/tree-map/highlighting/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/tree-map/highlighting/src/config/tsconfig.spec.json b/samples/charts/tree-map/highlighting/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/tree-map/highlighting/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/tree-map/highlighting/src/config/tsconfig.worker.json b/samples/charts/tree-map/highlighting/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/tree-map/highlighting/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/tree-map/highlighting/tsconfig.app.json b/samples/charts/tree-map/highlighting/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/tree-map/highlighting/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/tree-map/highlighting/tsconfig.json b/samples/charts/tree-map/highlighting/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/tree-map/highlighting/tsconfig.json +++ b/samples/charts/tree-map/highlighting/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/tree-map/layout/.codesandbox/Dockerfile b/samples/charts/tree-map/layout/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/tree-map/layout/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/tree-map/layout/.codesandbox/tasks.json b/samples/charts/tree-map/layout/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/tree-map/layout/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/tree-map/layout/.stackblitzrc b/samples/charts/tree-map/layout/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/tree-map/layout/.stackblitzrc +++ b/samples/charts/tree-map/layout/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/tree-map/layout/angular.json b/samples/charts/tree-map/layout/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/tree-map/layout/angular.json +++ b/samples/charts/tree-map/layout/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 1d130678d..ae1e51e80 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/tree-map/layout/sandbox.config.json b/samples/charts/tree-map/layout/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/tree-map/layout/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/tree-map/layout/src/config/tsconfig-es5.app.json b/samples/charts/tree-map/layout/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/tree-map/layout/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/tree-map/layout/src/config/tsconfig.app.json b/samples/charts/tree-map/layout/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/tree-map/layout/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/tree-map/layout/src/config/tsconfig.base.json b/samples/charts/tree-map/layout/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/tree-map/layout/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/tree-map/layout/src/config/tsconfig.spec.json b/samples/charts/tree-map/layout/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/tree-map/layout/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/tree-map/layout/src/config/tsconfig.worker.json b/samples/charts/tree-map/layout/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/tree-map/layout/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/tree-map/layout/tsconfig.app.json b/samples/charts/tree-map/layout/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/tree-map/layout/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/tree-map/layout/tsconfig.json b/samples/charts/tree-map/layout/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/tree-map/layout/tsconfig.json +++ b/samples/charts/tree-map/layout/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/tree-map/overview/.codesandbox/Dockerfile b/samples/charts/tree-map/overview/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/tree-map/overview/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/tree-map/overview/.codesandbox/tasks.json b/samples/charts/tree-map/overview/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/tree-map/overview/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/tree-map/overview/.stackblitzrc b/samples/charts/tree-map/overview/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/tree-map/overview/.stackblitzrc +++ b/samples/charts/tree-map/overview/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/tree-map/overview/angular.json b/samples/charts/tree-map/overview/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/tree-map/overview/angular.json +++ b/samples/charts/tree-map/overview/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/tree-map/overview/sandbox.config.json b/samples/charts/tree-map/overview/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/tree-map/overview/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/tree-map/overview/src/config/tsconfig-es5.app.json b/samples/charts/tree-map/overview/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/tree-map/overview/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/tree-map/overview/src/config/tsconfig.app.json b/samples/charts/tree-map/overview/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/tree-map/overview/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/tree-map/overview/src/config/tsconfig.base.json b/samples/charts/tree-map/overview/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/tree-map/overview/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/tree-map/overview/src/config/tsconfig.spec.json b/samples/charts/tree-map/overview/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/tree-map/overview/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/tree-map/overview/src/config/tsconfig.worker.json b/samples/charts/tree-map/overview/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/tree-map/overview/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/tree-map/overview/tsconfig.app.json b/samples/charts/tree-map/overview/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/tree-map/overview/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/tree-map/overview/tsconfig.json b/samples/charts/tree-map/overview/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/tree-map/overview/tsconfig.json +++ b/samples/charts/tree-map/overview/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/tree-map/styling/.codesandbox/Dockerfile b/samples/charts/tree-map/styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/tree-map/styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/tree-map/styling/.codesandbox/tasks.json b/samples/charts/tree-map/styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/tree-map/styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/tree-map/styling/.stackblitzrc b/samples/charts/tree-map/styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/tree-map/styling/.stackblitzrc +++ b/samples/charts/tree-map/styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/tree-map/styling/angular.json b/samples/charts/tree-map/styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/tree-map/styling/angular.json +++ b/samples/charts/tree-map/styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 95e4ca151..35620b319 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@angular-devkit/build-angular": "17.0.0", - "@types/node": "14.14.28", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", - "typescript": "5.2.2" + "ts-node": "10.9.1", + "typescript": "5.3.3" } } diff --git a/samples/charts/tree-map/styling/sandbox.config.json b/samples/charts/tree-map/styling/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/tree-map/styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/tree-map/styling/src/config/tsconfig-es5.app.json b/samples/charts/tree-map/styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/tree-map/styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/tree-map/styling/src/config/tsconfig.app.json b/samples/charts/tree-map/styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/tree-map/styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/tree-map/styling/src/config/tsconfig.base.json b/samples/charts/tree-map/styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/tree-map/styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/tree-map/styling/src/config/tsconfig.spec.json b/samples/charts/tree-map/styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/tree-map/styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/tree-map/styling/src/config/tsconfig.worker.json b/samples/charts/tree-map/styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/tree-map/styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/tree-map/styling/tsconfig.app.json b/samples/charts/tree-map/styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/tree-map/styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/tree-map/styling/tsconfig.json b/samples/charts/tree-map/styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/tree-map/styling/tsconfig.json +++ b/samples/charts/tree-map/styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/charts/zoomslider/overview/.codesandbox/Dockerfile b/samples/charts/zoomslider/overview/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/zoomslider/overview/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/zoomslider/overview/.codesandbox/tasks.json b/samples/charts/zoomslider/overview/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/zoomslider/overview/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/zoomslider/overview/.stackblitzrc b/samples/charts/zoomslider/overview/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/charts/zoomslider/overview/.stackblitzrc +++ b/samples/charts/zoomslider/overview/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/zoomslider/overview/angular.json b/samples/charts/zoomslider/overview/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/charts/zoomslider/overview/angular.json +++ b/samples/charts/zoomslider/overview/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index fabb9adc1..2b3760a42 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/charts/zoomslider/overview/sandbox.config.json b/samples/charts/zoomslider/overview/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/charts/zoomslider/overview/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/zoomslider/overview/src/config/tsconfig-es5.app.json b/samples/charts/zoomslider/overview/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/zoomslider/overview/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/zoomslider/overview/src/config/tsconfig.app.json b/samples/charts/zoomslider/overview/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/zoomslider/overview/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/zoomslider/overview/src/config/tsconfig.base.json b/samples/charts/zoomslider/overview/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/zoomslider/overview/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/zoomslider/overview/src/config/tsconfig.spec.json b/samples/charts/zoomslider/overview/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/zoomslider/overview/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/zoomslider/overview/src/config/tsconfig.worker.json b/samples/charts/zoomslider/overview/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/zoomslider/overview/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/zoomslider/overview/tsconfig.app.json b/samples/charts/zoomslider/overview/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/zoomslider/overview/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/zoomslider/overview/tsconfig.json b/samples/charts/zoomslider/overview/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/charts/zoomslider/overview/tsconfig.json +++ b/samples/charts/zoomslider/overview/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/excel/excel-library/operations-on-workbooks/.codesandbox/Dockerfile b/samples/excel/excel-library/operations-on-workbooks/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/excel/excel-library/operations-on-workbooks/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/excel/excel-library/operations-on-workbooks/.codesandbox/tasks.json b/samples/excel/excel-library/operations-on-workbooks/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/excel/excel-library/operations-on-workbooks/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/excel/excel-library/operations-on-workbooks/.stackblitzrc b/samples/excel/excel-library/operations-on-workbooks/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/excel/excel-library/operations-on-workbooks/.stackblitzrc +++ b/samples/excel/excel-library/operations-on-workbooks/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/excel/excel-library/operations-on-workbooks/angular.json b/samples/excel/excel-library/operations-on-workbooks/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/excel/excel-library/operations-on-workbooks/angular.json +++ b/samples/excel/excel-library/operations-on-workbooks/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index b34847a1c..543b4d932 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig-es5.app.json b/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.app.json b/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.base.json b/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.spec.json b/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.worker.json b/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/excel/excel-library/operations-on-workbooks/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/excel/excel-library/operations-on-workbooks/tsconfig.app.json b/samples/excel/excel-library/operations-on-workbooks/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/excel/excel-library/operations-on-workbooks/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/excel/excel-library/operations-on-workbooks/tsconfig.json b/samples/excel/excel-library/operations-on-workbooks/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/excel/excel-library/operations-on-workbooks/tsconfig.json +++ b/samples/excel/excel-library/operations-on-workbooks/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/excel/excel-library/operations-on-worksheets/.codesandbox/Dockerfile b/samples/excel/excel-library/operations-on-worksheets/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/excel/excel-library/operations-on-worksheets/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/excel/excel-library/operations-on-worksheets/.codesandbox/tasks.json b/samples/excel/excel-library/operations-on-worksheets/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/excel/excel-library/operations-on-worksheets/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/excel/excel-library/operations-on-worksheets/.stackblitzrc b/samples/excel/excel-library/operations-on-worksheets/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/excel/excel-library/operations-on-worksheets/.stackblitzrc +++ b/samples/excel/excel-library/operations-on-worksheets/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/excel/excel-library/operations-on-worksheets/angular.json b/samples/excel/excel-library/operations-on-worksheets/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/excel/excel-library/operations-on-worksheets/angular.json +++ b/samples/excel/excel-library/operations-on-worksheets/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 803ca64b1..ac56cbd59 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig-es5.app.json b/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.app.json b/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.base.json b/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.spec.json b/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.worker.json b/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/excel/excel-library/operations-on-worksheets/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/excel/excel-library/operations-on-worksheets/tsconfig.app.json b/samples/excel/excel-library/operations-on-worksheets/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/excel/excel-library/operations-on-worksheets/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/excel/excel-library/operations-on-worksheets/tsconfig.json b/samples/excel/excel-library/operations-on-worksheets/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/excel/excel-library/operations-on-worksheets/tsconfig.json +++ b/samples/excel/excel-library/operations-on-worksheets/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/excel/excel-library/overview/.codesandbox/Dockerfile b/samples/excel/excel-library/overview/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/excel/excel-library/overview/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/excel/excel-library/overview/.codesandbox/tasks.json b/samples/excel/excel-library/overview/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/excel/excel-library/overview/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/excel/excel-library/overview/.stackblitzrc b/samples/excel/excel-library/overview/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/excel/excel-library/overview/.stackblitzrc +++ b/samples/excel/excel-library/overview/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/excel/excel-library/overview/angular.json b/samples/excel/excel-library/overview/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/excel/excel-library/overview/angular.json +++ b/samples/excel/excel-library/overview/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 803ca64b1..ac56cbd59 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/excel/excel-library/overview/src/config/tsconfig-es5.app.json b/samples/excel/excel-library/overview/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/excel/excel-library/overview/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/excel/excel-library/overview/src/config/tsconfig.app.json b/samples/excel/excel-library/overview/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/excel/excel-library/overview/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/excel/excel-library/overview/src/config/tsconfig.base.json b/samples/excel/excel-library/overview/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/excel/excel-library/overview/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/excel/excel-library/overview/src/config/tsconfig.spec.json b/samples/excel/excel-library/overview/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/excel/excel-library/overview/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/excel/excel-library/overview/src/config/tsconfig.worker.json b/samples/excel/excel-library/overview/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/excel/excel-library/overview/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/excel/excel-library/overview/tsconfig.app.json b/samples/excel/excel-library/overview/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/excel/excel-library/overview/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/excel/excel-library/overview/tsconfig.json b/samples/excel/excel-library/overview/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/excel/excel-library/overview/tsconfig.json +++ b/samples/excel/excel-library/overview/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/excel/excel-library/working-with-cells/.codesandbox/Dockerfile b/samples/excel/excel-library/working-with-cells/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/excel/excel-library/working-with-cells/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/excel/excel-library/working-with-cells/.codesandbox/tasks.json b/samples/excel/excel-library/working-with-cells/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/excel/excel-library/working-with-cells/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/excel/excel-library/working-with-cells/.stackblitzrc b/samples/excel/excel-library/working-with-cells/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/excel/excel-library/working-with-cells/.stackblitzrc +++ b/samples/excel/excel-library/working-with-cells/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/excel/excel-library/working-with-cells/angular.json b/samples/excel/excel-library/working-with-cells/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/excel/excel-library/working-with-cells/angular.json +++ b/samples/excel/excel-library/working-with-cells/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 803ca64b1..ac56cbd59 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/excel/excel-library/working-with-cells/src/config/tsconfig-es5.app.json b/samples/excel/excel-library/working-with-cells/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/excel/excel-library/working-with-cells/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/excel/excel-library/working-with-cells/src/config/tsconfig.app.json b/samples/excel/excel-library/working-with-cells/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/excel/excel-library/working-with-cells/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/excel/excel-library/working-with-cells/src/config/tsconfig.base.json b/samples/excel/excel-library/working-with-cells/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/excel/excel-library/working-with-cells/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/excel/excel-library/working-with-cells/src/config/tsconfig.spec.json b/samples/excel/excel-library/working-with-cells/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/excel/excel-library/working-with-cells/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/excel/excel-library/working-with-cells/src/config/tsconfig.worker.json b/samples/excel/excel-library/working-with-cells/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/excel/excel-library/working-with-cells/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/excel/excel-library/working-with-cells/tsconfig.app.json b/samples/excel/excel-library/working-with-cells/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/excel/excel-library/working-with-cells/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/excel/excel-library/working-with-cells/tsconfig.json b/samples/excel/excel-library/working-with-cells/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/excel/excel-library/working-with-cells/tsconfig.json +++ b/samples/excel/excel-library/working-with-cells/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/excel/excel-library/working-with-charts/.codesandbox/Dockerfile b/samples/excel/excel-library/working-with-charts/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/excel/excel-library/working-with-charts/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/excel/excel-library/working-with-charts/.codesandbox/tasks.json b/samples/excel/excel-library/working-with-charts/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/excel/excel-library/working-with-charts/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/excel/excel-library/working-with-charts/.stackblitzrc b/samples/excel/excel-library/working-with-charts/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/excel/excel-library/working-with-charts/.stackblitzrc +++ b/samples/excel/excel-library/working-with-charts/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/excel/excel-library/working-with-charts/angular.json b/samples/excel/excel-library/working-with-charts/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/excel/excel-library/working-with-charts/angular.json +++ b/samples/excel/excel-library/working-with-charts/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 3f772389d..0c18fe415 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -7,42 +7,42 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/excel/excel-library/working-with-charts/src/config/tsconfig-es5.app.json b/samples/excel/excel-library/working-with-charts/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/excel/excel-library/working-with-charts/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/excel/excel-library/working-with-charts/src/config/tsconfig.app.json b/samples/excel/excel-library/working-with-charts/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/excel/excel-library/working-with-charts/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/excel/excel-library/working-with-charts/src/config/tsconfig.base.json b/samples/excel/excel-library/working-with-charts/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/excel/excel-library/working-with-charts/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/excel/excel-library/working-with-charts/src/config/tsconfig.spec.json b/samples/excel/excel-library/working-with-charts/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/excel/excel-library/working-with-charts/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/excel/excel-library/working-with-charts/src/config/tsconfig.worker.json b/samples/excel/excel-library/working-with-charts/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/excel/excel-library/working-with-charts/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/excel/excel-library/working-with-charts/tsconfig.app.json b/samples/excel/excel-library/working-with-charts/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/excel/excel-library/working-with-charts/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/excel/excel-library/working-with-charts/tsconfig.json b/samples/excel/excel-library/working-with-charts/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/excel/excel-library/working-with-charts/tsconfig.json +++ b/samples/excel/excel-library/working-with-charts/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/excel/excel-library/working-with-sparklines/.codesandbox/Dockerfile b/samples/excel/excel-library/working-with-sparklines/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/excel/excel-library/working-with-sparklines/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/excel/excel-library/working-with-sparklines/.codesandbox/tasks.json b/samples/excel/excel-library/working-with-sparklines/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/excel/excel-library/working-with-sparklines/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/excel/excel-library/working-with-sparklines/.stackblitzrc b/samples/excel/excel-library/working-with-sparklines/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/excel/excel-library/working-with-sparklines/.stackblitzrc +++ b/samples/excel/excel-library/working-with-sparklines/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/excel/excel-library/working-with-sparklines/angular.json b/samples/excel/excel-library/working-with-sparklines/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/excel/excel-library/working-with-sparklines/angular.json +++ b/samples/excel/excel-library/working-with-sparklines/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 3f772389d..0c18fe415 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -7,42 +7,42 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig-es5.app.json b/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.app.json b/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.base.json b/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.spec.json b/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.worker.json b/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/excel/excel-library/working-with-sparklines/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/excel/excel-library/working-with-sparklines/tsconfig.app.json b/samples/excel/excel-library/working-with-sparklines/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/excel/excel-library/working-with-sparklines/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/excel/excel-library/working-with-sparklines/tsconfig.json b/samples/excel/excel-library/working-with-sparklines/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/excel/excel-library/working-with-sparklines/tsconfig.json +++ b/samples/excel/excel-library/working-with-sparklines/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/excel/excel-library/working-with-tables/.codesandbox/Dockerfile b/samples/excel/excel-library/working-with-tables/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/excel/excel-library/working-with-tables/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/excel/excel-library/working-with-tables/.codesandbox/tasks.json b/samples/excel/excel-library/working-with-tables/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/excel/excel-library/working-with-tables/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/excel/excel-library/working-with-tables/.stackblitzrc b/samples/excel/excel-library/working-with-tables/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/excel/excel-library/working-with-tables/.stackblitzrc +++ b/samples/excel/excel-library/working-with-tables/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/excel/excel-library/working-with-tables/angular.json b/samples/excel/excel-library/working-with-tables/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/excel/excel-library/working-with-tables/angular.json +++ b/samples/excel/excel-library/working-with-tables/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index 2f95054e6..d3ae2a586 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -7,42 +7,42 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/excel/excel-library/working-with-tables/src/config/tsconfig-es5.app.json b/samples/excel/excel-library/working-with-tables/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/excel/excel-library/working-with-tables/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/excel/excel-library/working-with-tables/src/config/tsconfig.app.json b/samples/excel/excel-library/working-with-tables/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/excel/excel-library/working-with-tables/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/excel/excel-library/working-with-tables/src/config/tsconfig.base.json b/samples/excel/excel-library/working-with-tables/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/excel/excel-library/working-with-tables/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/excel/excel-library/working-with-tables/src/config/tsconfig.spec.json b/samples/excel/excel-library/working-with-tables/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/excel/excel-library/working-with-tables/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/excel/excel-library/working-with-tables/src/config/tsconfig.worker.json b/samples/excel/excel-library/working-with-tables/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/excel/excel-library/working-with-tables/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/excel/excel-library/working-with-tables/tsconfig.app.json b/samples/excel/excel-library/working-with-tables/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/excel/excel-library/working-with-tables/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/excel/excel-library/working-with-tables/tsconfig.json b/samples/excel/excel-library/working-with-tables/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/excel/excel-library/working-with-tables/tsconfig.json +++ b/samples/excel/excel-library/working-with-tables/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/excel/spreadsheet/activation/.codesandbox/Dockerfile b/samples/excel/spreadsheet/activation/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/excel/spreadsheet/activation/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/excel/spreadsheet/activation/.codesandbox/tasks.json b/samples/excel/spreadsheet/activation/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/excel/spreadsheet/activation/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/excel/spreadsheet/activation/.stackblitzrc b/samples/excel/spreadsheet/activation/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/excel/spreadsheet/activation/.stackblitzrc +++ b/samples/excel/spreadsheet/activation/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/excel/spreadsheet/activation/angular.json b/samples/excel/spreadsheet/activation/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/excel/spreadsheet/activation/angular.json +++ b/samples/excel/spreadsheet/activation/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 2c19bda4b..f5afec064 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/excel/spreadsheet/activation/sandbox.config.json b/samples/excel/spreadsheet/activation/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/excel/spreadsheet/activation/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/excel/spreadsheet/activation/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/activation/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/excel/spreadsheet/activation/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/excel/spreadsheet/activation/src/config/tsconfig.app.json b/samples/excel/spreadsheet/activation/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/excel/spreadsheet/activation/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/excel/spreadsheet/activation/src/config/tsconfig.base.json b/samples/excel/spreadsheet/activation/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/excel/spreadsheet/activation/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/excel/spreadsheet/activation/src/config/tsconfig.spec.json b/samples/excel/spreadsheet/activation/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/excel/spreadsheet/activation/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/excel/spreadsheet/activation/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/activation/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/excel/spreadsheet/activation/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/excel/spreadsheet/activation/tsconfig.app.json b/samples/excel/spreadsheet/activation/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/excel/spreadsheet/activation/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/excel/spreadsheet/activation/tsconfig.json b/samples/excel/spreadsheet/activation/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/excel/spreadsheet/activation/tsconfig.json +++ b/samples/excel/spreadsheet/activation/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/excel/spreadsheet/adapter-chart/.codesandbox/Dockerfile b/samples/excel/spreadsheet/adapter-chart/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/excel/spreadsheet/adapter-chart/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/excel/spreadsheet/adapter-chart/.codesandbox/tasks.json b/samples/excel/spreadsheet/adapter-chart/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/excel/spreadsheet/adapter-chart/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/excel/spreadsheet/adapter-chart/.stackblitzrc b/samples/excel/spreadsheet/adapter-chart/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/excel/spreadsheet/adapter-chart/.stackblitzrc +++ b/samples/excel/spreadsheet/adapter-chart/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/excel/spreadsheet/adapter-chart/angular.json b/samples/excel/spreadsheet/adapter-chart/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/excel/spreadsheet/adapter-chart/angular.json +++ b/samples/excel/spreadsheet/adapter-chart/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index e9684c6f3..ea7cf664f 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", @@ -27,23 +27,23 @@ "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/excel/spreadsheet/adapter-chart/sandbox.config.json b/samples/excel/spreadsheet/adapter-chart/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/excel/spreadsheet/adapter-chart/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.app.json b/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.base.json b/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.spec.json b/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/excel/spreadsheet/adapter-chart/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/excel/spreadsheet/adapter-chart/tsconfig.app.json b/samples/excel/spreadsheet/adapter-chart/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/excel/spreadsheet/adapter-chart/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/excel/spreadsheet/adapter-chart/tsconfig.json b/samples/excel/spreadsheet/adapter-chart/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/excel/spreadsheet/adapter-chart/tsconfig.json +++ b/samples/excel/spreadsheet/adapter-chart/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/excel/spreadsheet/adapter-combo/.codesandbox/Dockerfile b/samples/excel/spreadsheet/adapter-combo/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/excel/spreadsheet/adapter-combo/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/excel/spreadsheet/adapter-combo/.codesandbox/tasks.json b/samples/excel/spreadsheet/adapter-combo/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/excel/spreadsheet/adapter-combo/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/excel/spreadsheet/adapter-combo/.stackblitzrc b/samples/excel/spreadsheet/adapter-combo/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/excel/spreadsheet/adapter-combo/.stackblitzrc +++ b/samples/excel/spreadsheet/adapter-combo/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/excel/spreadsheet/adapter-combo/angular.json b/samples/excel/spreadsheet/adapter-combo/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/excel/spreadsheet/adapter-combo/angular.json +++ b/samples/excel/spreadsheet/adapter-combo/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index e9684c6f3..ea7cf664f 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", @@ -27,23 +27,23 @@ "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/excel/spreadsheet/adapter-combo/sandbox.config.json b/samples/excel/spreadsheet/adapter-combo/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/excel/spreadsheet/adapter-combo/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.app.json b/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.base.json b/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.spec.json b/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/excel/spreadsheet/adapter-combo/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/excel/spreadsheet/adapter-combo/tsconfig.app.json b/samples/excel/spreadsheet/adapter-combo/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/excel/spreadsheet/adapter-combo/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/excel/spreadsheet/adapter-combo/tsconfig.json b/samples/excel/spreadsheet/adapter-combo/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/excel/spreadsheet/adapter-combo/tsconfig.json +++ b/samples/excel/spreadsheet/adapter-combo/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/excel/spreadsheet/clipboard/.codesandbox/Dockerfile b/samples/excel/spreadsheet/clipboard/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/excel/spreadsheet/clipboard/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/excel/spreadsheet/clipboard/.codesandbox/tasks.json b/samples/excel/spreadsheet/clipboard/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/excel/spreadsheet/clipboard/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/excel/spreadsheet/clipboard/.stackblitzrc b/samples/excel/spreadsheet/clipboard/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/excel/spreadsheet/clipboard/.stackblitzrc +++ b/samples/excel/spreadsheet/clipboard/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/excel/spreadsheet/clipboard/angular.json b/samples/excel/spreadsheet/clipboard/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/excel/spreadsheet/clipboard/angular.json +++ b/samples/excel/spreadsheet/clipboard/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index 2c19bda4b..f5afec064 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/excel/spreadsheet/clipboard/sandbox.config.json b/samples/excel/spreadsheet/clipboard/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/excel/spreadsheet/clipboard/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/excel/spreadsheet/clipboard/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/clipboard/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/excel/spreadsheet/clipboard/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/excel/spreadsheet/clipboard/src/config/tsconfig.app.json b/samples/excel/spreadsheet/clipboard/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/excel/spreadsheet/clipboard/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/excel/spreadsheet/clipboard/src/config/tsconfig.base.json b/samples/excel/spreadsheet/clipboard/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/excel/spreadsheet/clipboard/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/excel/spreadsheet/clipboard/src/config/tsconfig.spec.json b/samples/excel/spreadsheet/clipboard/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/excel/spreadsheet/clipboard/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/excel/spreadsheet/clipboard/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/clipboard/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/excel/spreadsheet/clipboard/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/excel/spreadsheet/clipboard/tsconfig.app.json b/samples/excel/spreadsheet/clipboard/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/excel/spreadsheet/clipboard/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/excel/spreadsheet/clipboard/tsconfig.json b/samples/excel/spreadsheet/clipboard/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/excel/spreadsheet/clipboard/tsconfig.json +++ b/samples/excel/spreadsheet/clipboard/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/excel/spreadsheet/commands/.codesandbox/Dockerfile b/samples/excel/spreadsheet/commands/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/excel/spreadsheet/commands/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/excel/spreadsheet/commands/.codesandbox/tasks.json b/samples/excel/spreadsheet/commands/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/excel/spreadsheet/commands/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/excel/spreadsheet/commands/.stackblitzrc b/samples/excel/spreadsheet/commands/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/excel/spreadsheet/commands/.stackblitzrc +++ b/samples/excel/spreadsheet/commands/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/excel/spreadsheet/commands/angular.json b/samples/excel/spreadsheet/commands/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/excel/spreadsheet/commands/angular.json +++ b/samples/excel/spreadsheet/commands/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 2c19bda4b..f5afec064 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/excel/spreadsheet/commands/sandbox.config.json b/samples/excel/spreadsheet/commands/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/excel/spreadsheet/commands/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/excel/spreadsheet/commands/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/commands/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/excel/spreadsheet/commands/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/excel/spreadsheet/commands/src/config/tsconfig.app.json b/samples/excel/spreadsheet/commands/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/excel/spreadsheet/commands/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/excel/spreadsheet/commands/src/config/tsconfig.base.json b/samples/excel/spreadsheet/commands/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/excel/spreadsheet/commands/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/excel/spreadsheet/commands/src/config/tsconfig.spec.json b/samples/excel/spreadsheet/commands/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/excel/spreadsheet/commands/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/excel/spreadsheet/commands/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/commands/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/excel/spreadsheet/commands/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/excel/spreadsheet/commands/tsconfig.app.json b/samples/excel/spreadsheet/commands/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/excel/spreadsheet/commands/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/excel/spreadsheet/commands/tsconfig.json b/samples/excel/spreadsheet/commands/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/excel/spreadsheet/commands/tsconfig.json +++ b/samples/excel/spreadsheet/commands/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/excel/spreadsheet/conditional-formatting/.codesandbox/Dockerfile b/samples/excel/spreadsheet/conditional-formatting/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/excel/spreadsheet/conditional-formatting/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/excel/spreadsheet/conditional-formatting/.codesandbox/tasks.json b/samples/excel/spreadsheet/conditional-formatting/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/excel/spreadsheet/conditional-formatting/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/excel/spreadsheet/conditional-formatting/.stackblitzrc b/samples/excel/spreadsheet/conditional-formatting/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/excel/spreadsheet/conditional-formatting/.stackblitzrc +++ b/samples/excel/spreadsheet/conditional-formatting/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/excel/spreadsheet/conditional-formatting/angular.json b/samples/excel/spreadsheet/conditional-formatting/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/excel/spreadsheet/conditional-formatting/angular.json +++ b/samples/excel/spreadsheet/conditional-formatting/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index 2c19bda4b..f5afec064 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/excel/spreadsheet/conditional-formatting/sandbox.config.json b/samples/excel/spreadsheet/conditional-formatting/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/excel/spreadsheet/conditional-formatting/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.app.json b/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.base.json b/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.spec.json b/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/excel/spreadsheet/conditional-formatting/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/excel/spreadsheet/conditional-formatting/tsconfig.app.json b/samples/excel/spreadsheet/conditional-formatting/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/excel/spreadsheet/conditional-formatting/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/excel/spreadsheet/conditional-formatting/tsconfig.json b/samples/excel/spreadsheet/conditional-formatting/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/excel/spreadsheet/conditional-formatting/tsconfig.json +++ b/samples/excel/spreadsheet/conditional-formatting/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/excel/spreadsheet/config-options/.codesandbox/Dockerfile b/samples/excel/spreadsheet/config-options/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/excel/spreadsheet/config-options/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/excel/spreadsheet/config-options/.codesandbox/tasks.json b/samples/excel/spreadsheet/config-options/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/excel/spreadsheet/config-options/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/excel/spreadsheet/config-options/.stackblitzrc b/samples/excel/spreadsheet/config-options/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/excel/spreadsheet/config-options/.stackblitzrc +++ b/samples/excel/spreadsheet/config-options/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/excel/spreadsheet/config-options/angular.json b/samples/excel/spreadsheet/config-options/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/excel/spreadsheet/config-options/angular.json +++ b/samples/excel/spreadsheet/config-options/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 2c19bda4b..f5afec064 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/excel/spreadsheet/config-options/sandbox.config.json b/samples/excel/spreadsheet/config-options/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/excel/spreadsheet/config-options/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/excel/spreadsheet/config-options/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/config-options/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/excel/spreadsheet/config-options/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/excel/spreadsheet/config-options/src/config/tsconfig.app.json b/samples/excel/spreadsheet/config-options/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/excel/spreadsheet/config-options/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/excel/spreadsheet/config-options/src/config/tsconfig.base.json b/samples/excel/spreadsheet/config-options/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/excel/spreadsheet/config-options/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/excel/spreadsheet/config-options/src/config/tsconfig.spec.json b/samples/excel/spreadsheet/config-options/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/excel/spreadsheet/config-options/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/excel/spreadsheet/config-options/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/config-options/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/excel/spreadsheet/config-options/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/excel/spreadsheet/config-options/tsconfig.app.json b/samples/excel/spreadsheet/config-options/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/excel/spreadsheet/config-options/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/excel/spreadsheet/config-options/tsconfig.json b/samples/excel/spreadsheet/config-options/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/excel/spreadsheet/config-options/tsconfig.json +++ b/samples/excel/spreadsheet/config-options/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/excel/spreadsheet/data-validation/.codesandbox/Dockerfile b/samples/excel/spreadsheet/data-validation/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/excel/spreadsheet/data-validation/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/excel/spreadsheet/data-validation/.codesandbox/tasks.json b/samples/excel/spreadsheet/data-validation/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/excel/spreadsheet/data-validation/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/excel/spreadsheet/data-validation/.stackblitzrc b/samples/excel/spreadsheet/data-validation/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/excel/spreadsheet/data-validation/.stackblitzrc +++ b/samples/excel/spreadsheet/data-validation/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/excel/spreadsheet/data-validation/angular.json b/samples/excel/spreadsheet/data-validation/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/excel/spreadsheet/data-validation/angular.json +++ b/samples/excel/spreadsheet/data-validation/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 2c19bda4b..f5afec064 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/excel/spreadsheet/data-validation/sandbox.config.json b/samples/excel/spreadsheet/data-validation/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/excel/spreadsheet/data-validation/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/excel/spreadsheet/data-validation/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/data-validation/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/excel/spreadsheet/data-validation/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/excel/spreadsheet/data-validation/src/config/tsconfig.app.json b/samples/excel/spreadsheet/data-validation/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/excel/spreadsheet/data-validation/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/excel/spreadsheet/data-validation/src/config/tsconfig.base.json b/samples/excel/spreadsheet/data-validation/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/excel/spreadsheet/data-validation/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/excel/spreadsheet/data-validation/src/config/tsconfig.spec.json b/samples/excel/spreadsheet/data-validation/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/excel/spreadsheet/data-validation/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/excel/spreadsheet/data-validation/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/data-validation/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/excel/spreadsheet/data-validation/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/excel/spreadsheet/data-validation/tsconfig.app.json b/samples/excel/spreadsheet/data-validation/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/excel/spreadsheet/data-validation/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/excel/spreadsheet/data-validation/tsconfig.json b/samples/excel/spreadsheet/data-validation/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/excel/spreadsheet/data-validation/tsconfig.json +++ b/samples/excel/spreadsheet/data-validation/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/excel/spreadsheet/hyperlinks/.codesandbox/Dockerfile b/samples/excel/spreadsheet/hyperlinks/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/excel/spreadsheet/hyperlinks/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/excel/spreadsheet/hyperlinks/.codesandbox/tasks.json b/samples/excel/spreadsheet/hyperlinks/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/excel/spreadsheet/hyperlinks/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/excel/spreadsheet/hyperlinks/.stackblitzrc b/samples/excel/spreadsheet/hyperlinks/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/excel/spreadsheet/hyperlinks/.stackblitzrc +++ b/samples/excel/spreadsheet/hyperlinks/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/excel/spreadsheet/hyperlinks/angular.json b/samples/excel/spreadsheet/hyperlinks/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/excel/spreadsheet/hyperlinks/angular.json +++ b/samples/excel/spreadsheet/hyperlinks/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 2c19bda4b..f5afec064 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/excel/spreadsheet/hyperlinks/sandbox.config.json b/samples/excel/spreadsheet/hyperlinks/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/excel/spreadsheet/hyperlinks/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.app.json b/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.base.json b/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.spec.json b/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/excel/spreadsheet/hyperlinks/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/excel/spreadsheet/hyperlinks/tsconfig.app.json b/samples/excel/spreadsheet/hyperlinks/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/excel/spreadsheet/hyperlinks/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/excel/spreadsheet/hyperlinks/tsconfig.json b/samples/excel/spreadsheet/hyperlinks/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/excel/spreadsheet/hyperlinks/tsconfig.json +++ b/samples/excel/spreadsheet/hyperlinks/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/excel/spreadsheet/overview/.codesandbox/Dockerfile b/samples/excel/spreadsheet/overview/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/excel/spreadsheet/overview/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/excel/spreadsheet/overview/.codesandbox/tasks.json b/samples/excel/spreadsheet/overview/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/excel/spreadsheet/overview/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/excel/spreadsheet/overview/.stackblitzrc b/samples/excel/spreadsheet/overview/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/excel/spreadsheet/overview/.stackblitzrc +++ b/samples/excel/spreadsheet/overview/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/excel/spreadsheet/overview/angular.json b/samples/excel/spreadsheet/overview/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/excel/spreadsheet/overview/angular.json +++ b/samples/excel/spreadsheet/overview/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index 2c19bda4b..f5afec064 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/excel/spreadsheet/overview/sandbox.config.json b/samples/excel/spreadsheet/overview/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/excel/spreadsheet/overview/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/excel/spreadsheet/overview/src/config/tsconfig-es5.app.json b/samples/excel/spreadsheet/overview/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/excel/spreadsheet/overview/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/excel/spreadsheet/overview/src/config/tsconfig.app.json b/samples/excel/spreadsheet/overview/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/excel/spreadsheet/overview/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/excel/spreadsheet/overview/src/config/tsconfig.base.json b/samples/excel/spreadsheet/overview/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/excel/spreadsheet/overview/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/excel/spreadsheet/overview/src/config/tsconfig.spec.json b/samples/excel/spreadsheet/overview/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/excel/spreadsheet/overview/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/excel/spreadsheet/overview/src/config/tsconfig.worker.json b/samples/excel/spreadsheet/overview/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/excel/spreadsheet/overview/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/excel/spreadsheet/overview/tsconfig.app.json b/samples/excel/spreadsheet/overview/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/excel/spreadsheet/overview/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/excel/spreadsheet/overview/tsconfig.json b/samples/excel/spreadsheet/overview/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/excel/spreadsheet/overview/tsconfig.json +++ b/samples/excel/spreadsheet/overview/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/bullet-graph/animation/.codesandbox/Dockerfile b/samples/gauges/bullet-graph/animation/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/bullet-graph/animation/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/bullet-graph/animation/.codesandbox/tasks.json b/samples/gauges/bullet-graph/animation/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/bullet-graph/animation/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/animation/.stackblitzrc b/samples/gauges/bullet-graph/animation/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/bullet-graph/animation/.stackblitzrc +++ b/samples/gauges/bullet-graph/animation/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/animation/angular.json b/samples/gauges/bullet-graph/animation/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/bullet-graph/animation/angular.json +++ b/samples/gauges/bullet-graph/animation/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index e54771d28..be320fa81 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/bullet-graph/animation/sandbox.config.json b/samples/gauges/bullet-graph/animation/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/bullet-graph/animation/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/animation/src/config/tsconfig-es5.app.json b/samples/gauges/bullet-graph/animation/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/bullet-graph/animation/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/bullet-graph/animation/src/config/tsconfig.app.json b/samples/gauges/bullet-graph/animation/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/bullet-graph/animation/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/bullet-graph/animation/src/config/tsconfig.base.json b/samples/gauges/bullet-graph/animation/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/bullet-graph/animation/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/bullet-graph/animation/src/config/tsconfig.spec.json b/samples/gauges/bullet-graph/animation/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/bullet-graph/animation/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/bullet-graph/animation/src/config/tsconfig.worker.json b/samples/gauges/bullet-graph/animation/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/bullet-graph/animation/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/bullet-graph/animation/tsconfig.app.json b/samples/gauges/bullet-graph/animation/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/bullet-graph/animation/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/bullet-graph/animation/tsconfig.json b/samples/gauges/bullet-graph/animation/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/bullet-graph/animation/tsconfig.json +++ b/samples/gauges/bullet-graph/animation/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/bullet-graph/background/.codesandbox/Dockerfile b/samples/gauges/bullet-graph/background/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/bullet-graph/background/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/bullet-graph/background/.codesandbox/tasks.json b/samples/gauges/bullet-graph/background/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/bullet-graph/background/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/background/.stackblitzrc b/samples/gauges/bullet-graph/background/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/bullet-graph/background/.stackblitzrc +++ b/samples/gauges/bullet-graph/background/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/background/angular.json b/samples/gauges/bullet-graph/background/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/bullet-graph/background/angular.json +++ b/samples/gauges/bullet-graph/background/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/bullet-graph/background/sandbox.config.json b/samples/gauges/bullet-graph/background/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/bullet-graph/background/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/background/src/config/tsconfig-es5.app.json b/samples/gauges/bullet-graph/background/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/bullet-graph/background/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/bullet-graph/background/src/config/tsconfig.app.json b/samples/gauges/bullet-graph/background/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/bullet-graph/background/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/bullet-graph/background/src/config/tsconfig.base.json b/samples/gauges/bullet-graph/background/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/bullet-graph/background/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/bullet-graph/background/src/config/tsconfig.spec.json b/samples/gauges/bullet-graph/background/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/bullet-graph/background/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/bullet-graph/background/src/config/tsconfig.worker.json b/samples/gauges/bullet-graph/background/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/bullet-graph/background/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/bullet-graph/background/tsconfig.app.json b/samples/gauges/bullet-graph/background/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/bullet-graph/background/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/bullet-graph/background/tsconfig.json b/samples/gauges/bullet-graph/background/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/bullet-graph/background/tsconfig.json +++ b/samples/gauges/bullet-graph/background/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/bullet-graph/highlight-needle/.codesandbox/Dockerfile b/samples/gauges/bullet-graph/highlight-needle/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/bullet-graph/highlight-needle/.codesandbox/tasks.json b/samples/gauges/bullet-graph/highlight-needle/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/highlight-needle/.stackblitzrc b/samples/gauges/bullet-graph/highlight-needle/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/bullet-graph/highlight-needle/.stackblitzrc +++ b/samples/gauges/bullet-graph/highlight-needle/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/highlight-needle/angular.json b/samples/gauges/bullet-graph/highlight-needle/angular.json index 0e17c5c1f..0c2c173c9 100644 --- a/samples/gauges/bullet-graph/highlight-needle/angular.json +++ b/samples/gauges/bullet-graph/highlight-needle/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,41 +95,25 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } - }, + "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/bullet-graph/highlight-needle/sandbox.config.json b/samples/gauges/bullet-graph/highlight-needle/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/bullet-graph/highlight-needle/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig-es5.app.json b/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.app.json b/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.base.json b/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.spec.json b/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.worker.json b/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/bullet-graph/highlight-needle/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/bullet-graph/highlight-needle/tsconfig.app.json b/samples/gauges/bullet-graph/highlight-needle/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/bullet-graph/highlight-needle/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/bullet-graph/highlight-needle/tsconfig.json b/samples/gauges/bullet-graph/highlight-needle/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/bullet-graph/highlight-needle/tsconfig.json +++ b/samples/gauges/bullet-graph/highlight-needle/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/bullet-graph/labels/.codesandbox/Dockerfile b/samples/gauges/bullet-graph/labels/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/bullet-graph/labels/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/bullet-graph/labels/.codesandbox/tasks.json b/samples/gauges/bullet-graph/labels/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/bullet-graph/labels/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/labels/.stackblitzrc b/samples/gauges/bullet-graph/labels/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/bullet-graph/labels/.stackblitzrc +++ b/samples/gauges/bullet-graph/labels/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/labels/angular.json b/samples/gauges/bullet-graph/labels/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/bullet-graph/labels/angular.json +++ b/samples/gauges/bullet-graph/labels/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/bullet-graph/labels/sandbox.config.json b/samples/gauges/bullet-graph/labels/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/bullet-graph/labels/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/labels/src/config/tsconfig-es5.app.json b/samples/gauges/bullet-graph/labels/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/bullet-graph/labels/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/bullet-graph/labels/src/config/tsconfig.app.json b/samples/gauges/bullet-graph/labels/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/bullet-graph/labels/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/bullet-graph/labels/src/config/tsconfig.base.json b/samples/gauges/bullet-graph/labels/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/bullet-graph/labels/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/bullet-graph/labels/src/config/tsconfig.spec.json b/samples/gauges/bullet-graph/labels/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/bullet-graph/labels/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/bullet-graph/labels/src/config/tsconfig.worker.json b/samples/gauges/bullet-graph/labels/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/bullet-graph/labels/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/bullet-graph/labels/tsconfig.app.json b/samples/gauges/bullet-graph/labels/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/bullet-graph/labels/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/bullet-graph/labels/tsconfig.json b/samples/gauges/bullet-graph/labels/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/bullet-graph/labels/tsconfig.json +++ b/samples/gauges/bullet-graph/labels/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/bullet-graph/measures/.codesandbox/Dockerfile b/samples/gauges/bullet-graph/measures/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/bullet-graph/measures/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/bullet-graph/measures/.codesandbox/tasks.json b/samples/gauges/bullet-graph/measures/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/bullet-graph/measures/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/measures/.stackblitzrc b/samples/gauges/bullet-graph/measures/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/bullet-graph/measures/.stackblitzrc +++ b/samples/gauges/bullet-graph/measures/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/measures/angular.json b/samples/gauges/bullet-graph/measures/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/bullet-graph/measures/angular.json +++ b/samples/gauges/bullet-graph/measures/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/bullet-graph/measures/sandbox.config.json b/samples/gauges/bullet-graph/measures/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/bullet-graph/measures/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/measures/src/config/tsconfig-es5.app.json b/samples/gauges/bullet-graph/measures/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/bullet-graph/measures/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/bullet-graph/measures/src/config/tsconfig.app.json b/samples/gauges/bullet-graph/measures/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/bullet-graph/measures/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/bullet-graph/measures/src/config/tsconfig.base.json b/samples/gauges/bullet-graph/measures/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/bullet-graph/measures/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/bullet-graph/measures/src/config/tsconfig.spec.json b/samples/gauges/bullet-graph/measures/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/bullet-graph/measures/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/bullet-graph/measures/src/config/tsconfig.worker.json b/samples/gauges/bullet-graph/measures/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/bullet-graph/measures/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/bullet-graph/measures/tsconfig.app.json b/samples/gauges/bullet-graph/measures/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/bullet-graph/measures/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/bullet-graph/measures/tsconfig.json b/samples/gauges/bullet-graph/measures/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/bullet-graph/measures/tsconfig.json +++ b/samples/gauges/bullet-graph/measures/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/bullet-graph/ranges/.codesandbox/Dockerfile b/samples/gauges/bullet-graph/ranges/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/bullet-graph/ranges/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/bullet-graph/ranges/.codesandbox/tasks.json b/samples/gauges/bullet-graph/ranges/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/bullet-graph/ranges/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/ranges/.stackblitzrc b/samples/gauges/bullet-graph/ranges/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/bullet-graph/ranges/.stackblitzrc +++ b/samples/gauges/bullet-graph/ranges/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/ranges/angular.json b/samples/gauges/bullet-graph/ranges/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/bullet-graph/ranges/angular.json +++ b/samples/gauges/bullet-graph/ranges/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/bullet-graph/ranges/sandbox.config.json b/samples/gauges/bullet-graph/ranges/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/bullet-graph/ranges/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/ranges/src/config/tsconfig-es5.app.json b/samples/gauges/bullet-graph/ranges/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/bullet-graph/ranges/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/bullet-graph/ranges/src/config/tsconfig.app.json b/samples/gauges/bullet-graph/ranges/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/bullet-graph/ranges/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/bullet-graph/ranges/src/config/tsconfig.base.json b/samples/gauges/bullet-graph/ranges/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/bullet-graph/ranges/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/bullet-graph/ranges/src/config/tsconfig.spec.json b/samples/gauges/bullet-graph/ranges/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/bullet-graph/ranges/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/bullet-graph/ranges/src/config/tsconfig.worker.json b/samples/gauges/bullet-graph/ranges/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/bullet-graph/ranges/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/bullet-graph/ranges/tsconfig.app.json b/samples/gauges/bullet-graph/ranges/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/bullet-graph/ranges/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/bullet-graph/ranges/tsconfig.json b/samples/gauges/bullet-graph/ranges/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/bullet-graph/ranges/tsconfig.json +++ b/samples/gauges/bullet-graph/ranges/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/bullet-graph/scale/.codesandbox/Dockerfile b/samples/gauges/bullet-graph/scale/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/bullet-graph/scale/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/bullet-graph/scale/.codesandbox/tasks.json b/samples/gauges/bullet-graph/scale/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/bullet-graph/scale/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/scale/.stackblitzrc b/samples/gauges/bullet-graph/scale/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/bullet-graph/scale/.stackblitzrc +++ b/samples/gauges/bullet-graph/scale/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/scale/angular.json b/samples/gauges/bullet-graph/scale/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/bullet-graph/scale/angular.json +++ b/samples/gauges/bullet-graph/scale/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/bullet-graph/scale/sandbox.config.json b/samples/gauges/bullet-graph/scale/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/bullet-graph/scale/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/scale/src/config/tsconfig-es5.app.json b/samples/gauges/bullet-graph/scale/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/bullet-graph/scale/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/bullet-graph/scale/src/config/tsconfig.app.json b/samples/gauges/bullet-graph/scale/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/bullet-graph/scale/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/bullet-graph/scale/src/config/tsconfig.base.json b/samples/gauges/bullet-graph/scale/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/bullet-graph/scale/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/bullet-graph/scale/src/config/tsconfig.spec.json b/samples/gauges/bullet-graph/scale/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/bullet-graph/scale/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/bullet-graph/scale/src/config/tsconfig.worker.json b/samples/gauges/bullet-graph/scale/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/bullet-graph/scale/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/bullet-graph/scale/tsconfig.app.json b/samples/gauges/bullet-graph/scale/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/bullet-graph/scale/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/bullet-graph/scale/tsconfig.json b/samples/gauges/bullet-graph/scale/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/bullet-graph/scale/tsconfig.json +++ b/samples/gauges/bullet-graph/scale/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/bullet-graph/tickmarks/.codesandbox/Dockerfile b/samples/gauges/bullet-graph/tickmarks/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/bullet-graph/tickmarks/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/bullet-graph/tickmarks/.codesandbox/tasks.json b/samples/gauges/bullet-graph/tickmarks/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/bullet-graph/tickmarks/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/tickmarks/.stackblitzrc b/samples/gauges/bullet-graph/tickmarks/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/bullet-graph/tickmarks/.stackblitzrc +++ b/samples/gauges/bullet-graph/tickmarks/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/tickmarks/angular.json b/samples/gauges/bullet-graph/tickmarks/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/bullet-graph/tickmarks/angular.json +++ b/samples/gauges/bullet-graph/tickmarks/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/bullet-graph/tickmarks/sandbox.config.json b/samples/gauges/bullet-graph/tickmarks/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/bullet-graph/tickmarks/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig-es5.app.json b/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.app.json b/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.base.json b/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.spec.json b/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.worker.json b/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/bullet-graph/tickmarks/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/bullet-graph/tickmarks/tsconfig.app.json b/samples/gauges/bullet-graph/tickmarks/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/bullet-graph/tickmarks/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/bullet-graph/tickmarks/tsconfig.json b/samples/gauges/bullet-graph/tickmarks/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/bullet-graph/tickmarks/tsconfig.json +++ b/samples/gauges/bullet-graph/tickmarks/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/linear-gauge/animation/.codesandbox/Dockerfile b/samples/gauges/linear-gauge/animation/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/linear-gauge/animation/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/linear-gauge/animation/.codesandbox/tasks.json b/samples/gauges/linear-gauge/animation/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/linear-gauge/animation/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/animation/.stackblitzrc b/samples/gauges/linear-gauge/animation/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/linear-gauge/animation/.stackblitzrc +++ b/samples/gauges/linear-gauge/animation/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/animation/angular.json b/samples/gauges/linear-gauge/animation/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/linear-gauge/animation/angular.json +++ b/samples/gauges/linear-gauge/animation/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index e54771d28..be320fa81 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/linear-gauge/animation/sandbox.config.json b/samples/gauges/linear-gauge/animation/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/linear-gauge/animation/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/animation/src/config/tsconfig-es5.app.json b/samples/gauges/linear-gauge/animation/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/linear-gauge/animation/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/linear-gauge/animation/src/config/tsconfig.app.json b/samples/gauges/linear-gauge/animation/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/linear-gauge/animation/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/linear-gauge/animation/src/config/tsconfig.base.json b/samples/gauges/linear-gauge/animation/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/linear-gauge/animation/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/linear-gauge/animation/src/config/tsconfig.spec.json b/samples/gauges/linear-gauge/animation/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/linear-gauge/animation/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/linear-gauge/animation/src/config/tsconfig.worker.json b/samples/gauges/linear-gauge/animation/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/linear-gauge/animation/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/linear-gauge/animation/tsconfig.app.json b/samples/gauges/linear-gauge/animation/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/linear-gauge/animation/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/linear-gauge/animation/tsconfig.json b/samples/gauges/linear-gauge/animation/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/linear-gauge/animation/tsconfig.json +++ b/samples/gauges/linear-gauge/animation/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/linear-gauge/backing/.codesandbox/Dockerfile b/samples/gauges/linear-gauge/backing/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/linear-gauge/backing/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/linear-gauge/backing/.codesandbox/tasks.json b/samples/gauges/linear-gauge/backing/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/linear-gauge/backing/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/backing/.stackblitzrc b/samples/gauges/linear-gauge/backing/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/linear-gauge/backing/.stackblitzrc +++ b/samples/gauges/linear-gauge/backing/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/backing/angular.json b/samples/gauges/linear-gauge/backing/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/linear-gauge/backing/angular.json +++ b/samples/gauges/linear-gauge/backing/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/linear-gauge/backing/sandbox.config.json b/samples/gauges/linear-gauge/backing/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/linear-gauge/backing/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/backing/src/config/tsconfig-es5.app.json b/samples/gauges/linear-gauge/backing/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/linear-gauge/backing/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/linear-gauge/backing/src/config/tsconfig.app.json b/samples/gauges/linear-gauge/backing/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/linear-gauge/backing/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/linear-gauge/backing/src/config/tsconfig.base.json b/samples/gauges/linear-gauge/backing/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/linear-gauge/backing/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/linear-gauge/backing/src/config/tsconfig.spec.json b/samples/gauges/linear-gauge/backing/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/linear-gauge/backing/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/linear-gauge/backing/src/config/tsconfig.worker.json b/samples/gauges/linear-gauge/backing/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/linear-gauge/backing/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/linear-gauge/backing/tsconfig.app.json b/samples/gauges/linear-gauge/backing/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/linear-gauge/backing/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/linear-gauge/backing/tsconfig.json b/samples/gauges/linear-gauge/backing/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/linear-gauge/backing/tsconfig.json +++ b/samples/gauges/linear-gauge/backing/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/linear-gauge/highlight-needle/.codesandbox/Dockerfile b/samples/gauges/linear-gauge/highlight-needle/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/linear-gauge/highlight-needle/.codesandbox/tasks.json b/samples/gauges/linear-gauge/highlight-needle/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/highlight-needle/.stackblitzrc b/samples/gauges/linear-gauge/highlight-needle/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/linear-gauge/highlight-needle/.stackblitzrc +++ b/samples/gauges/linear-gauge/highlight-needle/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/highlight-needle/angular.json b/samples/gauges/linear-gauge/highlight-needle/angular.json index 0e17c5c1f..0c2c173c9 100644 --- a/samples/gauges/linear-gauge/highlight-needle/angular.json +++ b/samples/gauges/linear-gauge/highlight-needle/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,41 +95,25 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } - }, + "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/linear-gauge/highlight-needle/sandbox.config.json b/samples/gauges/linear-gauge/highlight-needle/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/linear-gauge/highlight-needle/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig-es5.app.json b/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.app.json b/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.base.json b/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.spec.json b/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.worker.json b/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/linear-gauge/highlight-needle/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/linear-gauge/highlight-needle/tsconfig.app.json b/samples/gauges/linear-gauge/highlight-needle/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/linear-gauge/highlight-needle/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/linear-gauge/highlight-needle/tsconfig.json b/samples/gauges/linear-gauge/highlight-needle/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/linear-gauge/highlight-needle/tsconfig.json +++ b/samples/gauges/linear-gauge/highlight-needle/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/linear-gauge/labels/.codesandbox/Dockerfile b/samples/gauges/linear-gauge/labels/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/linear-gauge/labels/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/linear-gauge/labels/.codesandbox/tasks.json b/samples/gauges/linear-gauge/labels/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/linear-gauge/labels/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/labels/.stackblitzrc b/samples/gauges/linear-gauge/labels/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/linear-gauge/labels/.stackblitzrc +++ b/samples/gauges/linear-gauge/labels/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/labels/angular.json b/samples/gauges/linear-gauge/labels/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/linear-gauge/labels/angular.json +++ b/samples/gauges/linear-gauge/labels/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/linear-gauge/labels/sandbox.config.json b/samples/gauges/linear-gauge/labels/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/linear-gauge/labels/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/labels/src/config/tsconfig-es5.app.json b/samples/gauges/linear-gauge/labels/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/linear-gauge/labels/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/linear-gauge/labels/src/config/tsconfig.app.json b/samples/gauges/linear-gauge/labels/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/linear-gauge/labels/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/linear-gauge/labels/src/config/tsconfig.base.json b/samples/gauges/linear-gauge/labels/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/linear-gauge/labels/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/linear-gauge/labels/src/config/tsconfig.spec.json b/samples/gauges/linear-gauge/labels/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/linear-gauge/labels/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/linear-gauge/labels/src/config/tsconfig.worker.json b/samples/gauges/linear-gauge/labels/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/linear-gauge/labels/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/linear-gauge/labels/tsconfig.app.json b/samples/gauges/linear-gauge/labels/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/linear-gauge/labels/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/linear-gauge/labels/tsconfig.json b/samples/gauges/linear-gauge/labels/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/linear-gauge/labels/tsconfig.json +++ b/samples/gauges/linear-gauge/labels/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/linear-gauge/needle/.codesandbox/Dockerfile b/samples/gauges/linear-gauge/needle/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/linear-gauge/needle/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/linear-gauge/needle/.codesandbox/tasks.json b/samples/gauges/linear-gauge/needle/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/linear-gauge/needle/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/needle/.stackblitzrc b/samples/gauges/linear-gauge/needle/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/linear-gauge/needle/.stackblitzrc +++ b/samples/gauges/linear-gauge/needle/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/needle/angular.json b/samples/gauges/linear-gauge/needle/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/linear-gauge/needle/angular.json +++ b/samples/gauges/linear-gauge/needle/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/linear-gauge/needle/sandbox.config.json b/samples/gauges/linear-gauge/needle/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/linear-gauge/needle/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/needle/src/config/tsconfig-es5.app.json b/samples/gauges/linear-gauge/needle/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/linear-gauge/needle/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/linear-gauge/needle/src/config/tsconfig.app.json b/samples/gauges/linear-gauge/needle/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/linear-gauge/needle/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/linear-gauge/needle/src/config/tsconfig.base.json b/samples/gauges/linear-gauge/needle/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/linear-gauge/needle/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/linear-gauge/needle/src/config/tsconfig.spec.json b/samples/gauges/linear-gauge/needle/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/linear-gauge/needle/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/linear-gauge/needle/src/config/tsconfig.worker.json b/samples/gauges/linear-gauge/needle/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/linear-gauge/needle/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/linear-gauge/needle/tsconfig.app.json b/samples/gauges/linear-gauge/needle/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/linear-gauge/needle/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/linear-gauge/needle/tsconfig.json b/samples/gauges/linear-gauge/needle/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/linear-gauge/needle/tsconfig.json +++ b/samples/gauges/linear-gauge/needle/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/linear-gauge/ranges/.codesandbox/Dockerfile b/samples/gauges/linear-gauge/ranges/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/linear-gauge/ranges/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/linear-gauge/ranges/.codesandbox/tasks.json b/samples/gauges/linear-gauge/ranges/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/linear-gauge/ranges/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/ranges/.stackblitzrc b/samples/gauges/linear-gauge/ranges/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/linear-gauge/ranges/.stackblitzrc +++ b/samples/gauges/linear-gauge/ranges/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/ranges/angular.json b/samples/gauges/linear-gauge/ranges/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/linear-gauge/ranges/angular.json +++ b/samples/gauges/linear-gauge/ranges/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/linear-gauge/ranges/sandbox.config.json b/samples/gauges/linear-gauge/ranges/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/linear-gauge/ranges/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/ranges/src/config/tsconfig-es5.app.json b/samples/gauges/linear-gauge/ranges/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/linear-gauge/ranges/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/linear-gauge/ranges/src/config/tsconfig.app.json b/samples/gauges/linear-gauge/ranges/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/linear-gauge/ranges/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/linear-gauge/ranges/src/config/tsconfig.base.json b/samples/gauges/linear-gauge/ranges/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/linear-gauge/ranges/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/linear-gauge/ranges/src/config/tsconfig.spec.json b/samples/gauges/linear-gauge/ranges/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/linear-gauge/ranges/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/linear-gauge/ranges/src/config/tsconfig.worker.json b/samples/gauges/linear-gauge/ranges/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/linear-gauge/ranges/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/linear-gauge/ranges/tsconfig.app.json b/samples/gauges/linear-gauge/ranges/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/linear-gauge/ranges/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/linear-gauge/ranges/tsconfig.json b/samples/gauges/linear-gauge/ranges/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/linear-gauge/ranges/tsconfig.json +++ b/samples/gauges/linear-gauge/ranges/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/linear-gauge/scale/.codesandbox/Dockerfile b/samples/gauges/linear-gauge/scale/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/linear-gauge/scale/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/linear-gauge/scale/.codesandbox/tasks.json b/samples/gauges/linear-gauge/scale/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/linear-gauge/scale/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/scale/.stackblitzrc b/samples/gauges/linear-gauge/scale/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/linear-gauge/scale/.stackblitzrc +++ b/samples/gauges/linear-gauge/scale/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/scale/angular.json b/samples/gauges/linear-gauge/scale/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/linear-gauge/scale/angular.json +++ b/samples/gauges/linear-gauge/scale/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/linear-gauge/scale/sandbox.config.json b/samples/gauges/linear-gauge/scale/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/linear-gauge/scale/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/scale/src/config/tsconfig-es5.app.json b/samples/gauges/linear-gauge/scale/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/linear-gauge/scale/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/linear-gauge/scale/src/config/tsconfig.app.json b/samples/gauges/linear-gauge/scale/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/linear-gauge/scale/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/linear-gauge/scale/src/config/tsconfig.base.json b/samples/gauges/linear-gauge/scale/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/linear-gauge/scale/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/linear-gauge/scale/src/config/tsconfig.spec.json b/samples/gauges/linear-gauge/scale/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/linear-gauge/scale/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/linear-gauge/scale/src/config/tsconfig.worker.json b/samples/gauges/linear-gauge/scale/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/linear-gauge/scale/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/linear-gauge/scale/tsconfig.app.json b/samples/gauges/linear-gauge/scale/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/linear-gauge/scale/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/linear-gauge/scale/tsconfig.json b/samples/gauges/linear-gauge/scale/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/linear-gauge/scale/tsconfig.json +++ b/samples/gauges/linear-gauge/scale/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/linear-gauge/tickmarks/.codesandbox/Dockerfile b/samples/gauges/linear-gauge/tickmarks/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/linear-gauge/tickmarks/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/linear-gauge/tickmarks/.codesandbox/tasks.json b/samples/gauges/linear-gauge/tickmarks/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/linear-gauge/tickmarks/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/tickmarks/.stackblitzrc b/samples/gauges/linear-gauge/tickmarks/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/linear-gauge/tickmarks/.stackblitzrc +++ b/samples/gauges/linear-gauge/tickmarks/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/tickmarks/angular.json b/samples/gauges/linear-gauge/tickmarks/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/linear-gauge/tickmarks/angular.json +++ b/samples/gauges/linear-gauge/tickmarks/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/linear-gauge/tickmarks/sandbox.config.json b/samples/gauges/linear-gauge/tickmarks/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/linear-gauge/tickmarks/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig-es5.app.json b/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.app.json b/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.base.json b/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.spec.json b/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.worker.json b/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/linear-gauge/tickmarks/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/linear-gauge/tickmarks/tsconfig.app.json b/samples/gauges/linear-gauge/tickmarks/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/linear-gauge/tickmarks/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/linear-gauge/tickmarks/tsconfig.json b/samples/gauges/linear-gauge/tickmarks/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/linear-gauge/tickmarks/tsconfig.json +++ b/samples/gauges/linear-gauge/tickmarks/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/radial-gauge/animation/.codesandbox/Dockerfile b/samples/gauges/radial-gauge/animation/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/radial-gauge/animation/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/radial-gauge/animation/.codesandbox/tasks.json b/samples/gauges/radial-gauge/animation/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/radial-gauge/animation/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/animation/.stackblitzrc b/samples/gauges/radial-gauge/animation/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/radial-gauge/animation/.stackblitzrc +++ b/samples/gauges/radial-gauge/animation/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/animation/angular.json b/samples/gauges/radial-gauge/animation/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/radial-gauge/animation/angular.json +++ b/samples/gauges/radial-gauge/animation/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index e54771d28..be320fa81 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/radial-gauge/animation/sandbox.config.json b/samples/gauges/radial-gauge/animation/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/radial-gauge/animation/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/animation/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/animation/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/radial-gauge/animation/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/radial-gauge/animation/src/config/tsconfig.app.json b/samples/gauges/radial-gauge/animation/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/radial-gauge/animation/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/radial-gauge/animation/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/animation/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/radial-gauge/animation/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/radial-gauge/animation/src/config/tsconfig.spec.json b/samples/gauges/radial-gauge/animation/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/radial-gauge/animation/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/radial-gauge/animation/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/animation/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/radial-gauge/animation/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/radial-gauge/animation/tsconfig.app.json b/samples/gauges/radial-gauge/animation/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/radial-gauge/animation/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/radial-gauge/animation/tsconfig.json b/samples/gauges/radial-gauge/animation/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/radial-gauge/animation/tsconfig.json +++ b/samples/gauges/radial-gauge/animation/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/radial-gauge/backing/.codesandbox/Dockerfile b/samples/gauges/radial-gauge/backing/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/radial-gauge/backing/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/radial-gauge/backing/.codesandbox/tasks.json b/samples/gauges/radial-gauge/backing/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/radial-gauge/backing/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/backing/.stackblitzrc b/samples/gauges/radial-gauge/backing/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/radial-gauge/backing/.stackblitzrc +++ b/samples/gauges/radial-gauge/backing/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/backing/angular.json b/samples/gauges/radial-gauge/backing/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/radial-gauge/backing/angular.json +++ b/samples/gauges/radial-gauge/backing/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/radial-gauge/backing/sandbox.config.json b/samples/gauges/radial-gauge/backing/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/radial-gauge/backing/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/backing/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/backing/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/radial-gauge/backing/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/radial-gauge/backing/src/config/tsconfig.app.json b/samples/gauges/radial-gauge/backing/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/radial-gauge/backing/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/radial-gauge/backing/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/backing/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/radial-gauge/backing/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/radial-gauge/backing/src/config/tsconfig.spec.json b/samples/gauges/radial-gauge/backing/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/radial-gauge/backing/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/radial-gauge/backing/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/backing/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/radial-gauge/backing/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/radial-gauge/backing/tsconfig.app.json b/samples/gauges/radial-gauge/backing/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/radial-gauge/backing/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/radial-gauge/backing/tsconfig.json b/samples/gauges/radial-gauge/backing/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/radial-gauge/backing/tsconfig.json +++ b/samples/gauges/radial-gauge/backing/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/radial-gauge/highlight-needle/.codesandbox/Dockerfile b/samples/gauges/radial-gauge/highlight-needle/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/radial-gauge/highlight-needle/.codesandbox/tasks.json b/samples/gauges/radial-gauge/highlight-needle/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/highlight-needle/.stackblitzrc b/samples/gauges/radial-gauge/highlight-needle/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/radial-gauge/highlight-needle/.stackblitzrc +++ b/samples/gauges/radial-gauge/highlight-needle/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/highlight-needle/angular.json b/samples/gauges/radial-gauge/highlight-needle/angular.json index 0e17c5c1f..0c2c173c9 100644 --- a/samples/gauges/radial-gauge/highlight-needle/angular.json +++ b/samples/gauges/radial-gauge/highlight-needle/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,41 +95,25 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } - }, + "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/radial-gauge/highlight-needle/sandbox.config.json b/samples/gauges/radial-gauge/highlight-needle/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/radial-gauge/highlight-needle/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.app.json b/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.spec.json b/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/radial-gauge/highlight-needle/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/radial-gauge/highlight-needle/tsconfig.app.json b/samples/gauges/radial-gauge/highlight-needle/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/radial-gauge/highlight-needle/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/radial-gauge/highlight-needle/tsconfig.json b/samples/gauges/radial-gauge/highlight-needle/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/radial-gauge/highlight-needle/tsconfig.json +++ b/samples/gauges/radial-gauge/highlight-needle/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/radial-gauge/labels/.codesandbox/Dockerfile b/samples/gauges/radial-gauge/labels/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/radial-gauge/labels/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/radial-gauge/labels/.codesandbox/tasks.json b/samples/gauges/radial-gauge/labels/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/radial-gauge/labels/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/labels/.stackblitzrc b/samples/gauges/radial-gauge/labels/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/radial-gauge/labels/.stackblitzrc +++ b/samples/gauges/radial-gauge/labels/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/labels/angular.json b/samples/gauges/radial-gauge/labels/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/radial-gauge/labels/angular.json +++ b/samples/gauges/radial-gauge/labels/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/radial-gauge/labels/sandbox.config.json b/samples/gauges/radial-gauge/labels/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/radial-gauge/labels/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/labels/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/labels/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/radial-gauge/labels/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/radial-gauge/labels/src/config/tsconfig.app.json b/samples/gauges/radial-gauge/labels/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/radial-gauge/labels/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/radial-gauge/labels/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/labels/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/radial-gauge/labels/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/radial-gauge/labels/src/config/tsconfig.spec.json b/samples/gauges/radial-gauge/labels/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/radial-gauge/labels/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/radial-gauge/labels/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/labels/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/radial-gauge/labels/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/radial-gauge/labels/tsconfig.app.json b/samples/gauges/radial-gauge/labels/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/radial-gauge/labels/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/radial-gauge/labels/tsconfig.json b/samples/gauges/radial-gauge/labels/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/radial-gauge/labels/tsconfig.json +++ b/samples/gauges/radial-gauge/labels/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/radial-gauge/needle/.codesandbox/Dockerfile b/samples/gauges/radial-gauge/needle/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/radial-gauge/needle/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/radial-gauge/needle/.codesandbox/tasks.json b/samples/gauges/radial-gauge/needle/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/radial-gauge/needle/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/needle/.stackblitzrc b/samples/gauges/radial-gauge/needle/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/radial-gauge/needle/.stackblitzrc +++ b/samples/gauges/radial-gauge/needle/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/needle/angular.json b/samples/gauges/radial-gauge/needle/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/radial-gauge/needle/angular.json +++ b/samples/gauges/radial-gauge/needle/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/radial-gauge/needle/sandbox.config.json b/samples/gauges/radial-gauge/needle/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/radial-gauge/needle/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/needle/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/needle/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/radial-gauge/needle/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/radial-gauge/needle/src/config/tsconfig.app.json b/samples/gauges/radial-gauge/needle/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/radial-gauge/needle/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/radial-gauge/needle/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/needle/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/radial-gauge/needle/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/radial-gauge/needle/src/config/tsconfig.spec.json b/samples/gauges/radial-gauge/needle/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/radial-gauge/needle/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/radial-gauge/needle/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/needle/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/radial-gauge/needle/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/radial-gauge/needle/tsconfig.app.json b/samples/gauges/radial-gauge/needle/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/radial-gauge/needle/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/radial-gauge/needle/tsconfig.json b/samples/gauges/radial-gauge/needle/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/radial-gauge/needle/tsconfig.json +++ b/samples/gauges/radial-gauge/needle/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/radial-gauge/optical-scaling/.codesandbox/Dockerfile b/samples/gauges/radial-gauge/optical-scaling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/radial-gauge/optical-scaling/.codesandbox/tasks.json b/samples/gauges/radial-gauge/optical-scaling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/optical-scaling/.stackblitzrc b/samples/gauges/radial-gauge/optical-scaling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/radial-gauge/optical-scaling/.stackblitzrc +++ b/samples/gauges/radial-gauge/optical-scaling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/optical-scaling/angular.json b/samples/gauges/radial-gauge/optical-scaling/angular.json index 0e17c5c1f..0c2c173c9 100644 --- a/samples/gauges/radial-gauge/optical-scaling/angular.json +++ b/samples/gauges/radial-gauge/optical-scaling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,41 +95,25 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } - }, + "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/radial-gauge/optical-scaling/sandbox.config.json b/samples/gauges/radial-gauge/optical-scaling/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/radial-gauge/optical-scaling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.app.json b/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.spec.json b/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/radial-gauge/optical-scaling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/radial-gauge/optical-scaling/tsconfig.app.json b/samples/gauges/radial-gauge/optical-scaling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/radial-gauge/optical-scaling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/radial-gauge/optical-scaling/tsconfig.json b/samples/gauges/radial-gauge/optical-scaling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/radial-gauge/optical-scaling/tsconfig.json +++ b/samples/gauges/radial-gauge/optical-scaling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/radial-gauge/ranges/.codesandbox/Dockerfile b/samples/gauges/radial-gauge/ranges/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/radial-gauge/ranges/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/radial-gauge/ranges/.codesandbox/tasks.json b/samples/gauges/radial-gauge/ranges/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/radial-gauge/ranges/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/ranges/.stackblitzrc b/samples/gauges/radial-gauge/ranges/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/radial-gauge/ranges/.stackblitzrc +++ b/samples/gauges/radial-gauge/ranges/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/ranges/angular.json b/samples/gauges/radial-gauge/ranges/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/radial-gauge/ranges/angular.json +++ b/samples/gauges/radial-gauge/ranges/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/radial-gauge/ranges/sandbox.config.json b/samples/gauges/radial-gauge/ranges/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/radial-gauge/ranges/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/ranges/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/ranges/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/radial-gauge/ranges/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/radial-gauge/ranges/src/config/tsconfig.app.json b/samples/gauges/radial-gauge/ranges/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/radial-gauge/ranges/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/radial-gauge/ranges/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/ranges/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/radial-gauge/ranges/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/radial-gauge/ranges/src/config/tsconfig.spec.json b/samples/gauges/radial-gauge/ranges/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/radial-gauge/ranges/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/radial-gauge/ranges/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/ranges/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/radial-gauge/ranges/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/radial-gauge/ranges/tsconfig.app.json b/samples/gauges/radial-gauge/ranges/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/radial-gauge/ranges/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/radial-gauge/ranges/tsconfig.json b/samples/gauges/radial-gauge/ranges/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/radial-gauge/ranges/tsconfig.json +++ b/samples/gauges/radial-gauge/ranges/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/radial-gauge/scale/.codesandbox/Dockerfile b/samples/gauges/radial-gauge/scale/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/radial-gauge/scale/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/radial-gauge/scale/.codesandbox/tasks.json b/samples/gauges/radial-gauge/scale/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/radial-gauge/scale/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/scale/.stackblitzrc b/samples/gauges/radial-gauge/scale/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/radial-gauge/scale/.stackblitzrc +++ b/samples/gauges/radial-gauge/scale/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/scale/angular.json b/samples/gauges/radial-gauge/scale/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/radial-gauge/scale/angular.json +++ b/samples/gauges/radial-gauge/scale/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/radial-gauge/scale/sandbox.config.json b/samples/gauges/radial-gauge/scale/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/radial-gauge/scale/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/scale/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/scale/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/radial-gauge/scale/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/radial-gauge/scale/src/config/tsconfig.app.json b/samples/gauges/radial-gauge/scale/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/radial-gauge/scale/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/radial-gauge/scale/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/scale/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/radial-gauge/scale/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/radial-gauge/scale/src/config/tsconfig.spec.json b/samples/gauges/radial-gauge/scale/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/radial-gauge/scale/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/radial-gauge/scale/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/scale/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/radial-gauge/scale/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/radial-gauge/scale/tsconfig.app.json b/samples/gauges/radial-gauge/scale/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/radial-gauge/scale/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/radial-gauge/scale/tsconfig.json b/samples/gauges/radial-gauge/scale/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/radial-gauge/scale/tsconfig.json +++ b/samples/gauges/radial-gauge/scale/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/gauges/radial-gauge/tickmarks/.codesandbox/Dockerfile b/samples/gauges/radial-gauge/tickmarks/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/gauges/radial-gauge/tickmarks/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/gauges/radial-gauge/tickmarks/.codesandbox/tasks.json b/samples/gauges/radial-gauge/tickmarks/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/gauges/radial-gauge/tickmarks/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/tickmarks/.stackblitzrc b/samples/gauges/radial-gauge/tickmarks/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/gauges/radial-gauge/tickmarks/.stackblitzrc +++ b/samples/gauges/radial-gauge/tickmarks/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/tickmarks/angular.json b/samples/gauges/radial-gauge/tickmarks/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/gauges/radial-gauge/tickmarks/angular.json +++ b/samples/gauges/radial-gauge/tickmarks/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 400a970dd..1d5da46d8 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/gauges/radial-gauge/tickmarks/sandbox.config.json b/samples/gauges/radial-gauge/tickmarks/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/gauges/radial-gauge/tickmarks/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig-es5.app.json b/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.app.json b/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.base.json b/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.spec.json b/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.worker.json b/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/gauges/radial-gauge/tickmarks/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/gauges/radial-gauge/tickmarks/tsconfig.app.json b/samples/gauges/radial-gauge/tickmarks/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/gauges/radial-gauge/tickmarks/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/gauges/radial-gauge/tickmarks/tsconfig.json b/samples/gauges/radial-gauge/tickmarks/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/gauges/radial-gauge/tickmarks/tsconfig.json +++ b/samples/gauges/radial-gauge/tickmarks/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/binding-data-csv/.codesandbox/Dockerfile b/samples/maps/geo-map/binding-data-csv/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/binding-data-csv/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/binding-data-csv/.codesandbox/tasks.json b/samples/maps/geo-map/binding-data-csv/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/binding-data-csv/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-data-csv/.stackblitzrc b/samples/maps/geo-map/binding-data-csv/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/binding-data-csv/.stackblitzrc +++ b/samples/maps/geo-map/binding-data-csv/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-data-csv/angular.json b/samples/maps/geo-map/binding-data-csv/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/binding-data-csv/angular.json +++ b/samples/maps/geo-map/binding-data-csv/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/binding-data-csv/sandbox.config.json b/samples/maps/geo-map/binding-data-csv/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/binding-data-csv/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-data-csv/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/binding-data-csv/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/binding-data-csv/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.app.json b/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.base.json b/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.spec.json b/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.worker.json b/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/binding-data-csv/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/binding-data-csv/tsconfig.app.json b/samples/maps/geo-map/binding-data-csv/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/binding-data-csv/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/binding-data-csv/tsconfig.json b/samples/maps/geo-map/binding-data-csv/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/binding-data-csv/tsconfig.json +++ b/samples/maps/geo-map/binding-data-csv/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/binding-data-json-points/.codesandbox/Dockerfile b/samples/maps/geo-map/binding-data-json-points/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/binding-data-json-points/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/binding-data-json-points/.codesandbox/tasks.json b/samples/maps/geo-map/binding-data-json-points/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/binding-data-json-points/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-data-json-points/.stackblitzrc b/samples/maps/geo-map/binding-data-json-points/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/binding-data-json-points/.stackblitzrc +++ b/samples/maps/geo-map/binding-data-json-points/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-data-json-points/angular.json b/samples/maps/geo-map/binding-data-json-points/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/binding-data-json-points/angular.json +++ b/samples/maps/geo-map/binding-data-json-points/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/binding-data-json-points/sandbox.config.json b/samples/maps/geo-map/binding-data-json-points/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/binding-data-json-points/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.app.json b/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.base.json b/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.spec.json b/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.worker.json b/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/binding-data-json-points/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/binding-data-json-points/tsconfig.app.json b/samples/maps/geo-map/binding-data-json-points/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/binding-data-json-points/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/binding-data-json-points/tsconfig.json b/samples/maps/geo-map/binding-data-json-points/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/binding-data-json-points/tsconfig.json +++ b/samples/maps/geo-map/binding-data-json-points/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/binding-data-model/.codesandbox/Dockerfile b/samples/maps/geo-map/binding-data-model/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/binding-data-model/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/binding-data-model/.codesandbox/tasks.json b/samples/maps/geo-map/binding-data-model/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/binding-data-model/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-data-model/.stackblitzrc b/samples/maps/geo-map/binding-data-model/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/binding-data-model/.stackblitzrc +++ b/samples/maps/geo-map/binding-data-model/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-data-model/angular.json b/samples/maps/geo-map/binding-data-model/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/binding-data-model/angular.json +++ b/samples/maps/geo-map/binding-data-model/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/binding-data-model/sandbox.config.json b/samples/maps/geo-map/binding-data-model/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/binding-data-model/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-data-model/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/binding-data-model/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/binding-data-model/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/binding-data-model/src/config/tsconfig.app.json b/samples/maps/geo-map/binding-data-model/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/binding-data-model/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/binding-data-model/src/config/tsconfig.base.json b/samples/maps/geo-map/binding-data-model/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/binding-data-model/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/binding-data-model/src/config/tsconfig.spec.json b/samples/maps/geo-map/binding-data-model/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/binding-data-model/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/binding-data-model/src/config/tsconfig.worker.json b/samples/maps/geo-map/binding-data-model/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/binding-data-model/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/binding-data-model/tsconfig.app.json b/samples/maps/geo-map/binding-data-model/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/binding-data-model/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/binding-data-model/tsconfig.json b/samples/maps/geo-map/binding-data-model/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/binding-data-model/tsconfig.json +++ b/samples/maps/geo-map/binding-data-model/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/binding-multiple-shapes/.codesandbox/Dockerfile b/samples/maps/geo-map/binding-multiple-shapes/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/binding-multiple-shapes/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/binding-multiple-shapes/.codesandbox/tasks.json b/samples/maps/geo-map/binding-multiple-shapes/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/binding-multiple-shapes/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-multiple-shapes/.stackblitzrc b/samples/maps/geo-map/binding-multiple-shapes/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/.stackblitzrc +++ b/samples/maps/geo-map/binding-multiple-shapes/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-multiple-shapes/angular.json b/samples/maps/geo-map/binding-multiple-shapes/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/angular.json +++ b/samples/maps/geo-map/binding-multiple-shapes/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/binding-multiple-shapes/sandbox.config.json b/samples/maps/geo-map/binding-multiple-shapes/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/binding-multiple-shapes/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.app.json b/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.base.json b/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.spec.json b/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.worker.json b/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/binding-multiple-shapes/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/binding-multiple-shapes/tsconfig.app.json b/samples/maps/geo-map/binding-multiple-shapes/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/binding-multiple-shapes/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/binding-multiple-shapes/tsconfig.json b/samples/maps/geo-map/binding-multiple-shapes/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/tsconfig.json +++ b/samples/maps/geo-map/binding-multiple-shapes/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/binding-multiple-sources/.codesandbox/Dockerfile b/samples/maps/geo-map/binding-multiple-sources/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/binding-multiple-sources/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/binding-multiple-sources/.codesandbox/tasks.json b/samples/maps/geo-map/binding-multiple-sources/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/binding-multiple-sources/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-multiple-sources/.stackblitzrc b/samples/maps/geo-map/binding-multiple-sources/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/binding-multiple-sources/.stackblitzrc +++ b/samples/maps/geo-map/binding-multiple-sources/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-multiple-sources/angular.json b/samples/maps/geo-map/binding-multiple-sources/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/binding-multiple-sources/angular.json +++ b/samples/maps/geo-map/binding-multiple-sources/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/binding-multiple-sources/sandbox.config.json b/samples/maps/geo-map/binding-multiple-sources/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/binding-multiple-sources/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.app.json b/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.base.json b/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.spec.json b/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.worker.json b/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/binding-multiple-sources/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/binding-multiple-sources/tsconfig.app.json b/samples/maps/geo-map/binding-multiple-sources/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/binding-multiple-sources/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/binding-multiple-sources/tsconfig.json b/samples/maps/geo-map/binding-multiple-sources/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/binding-multiple-sources/tsconfig.json +++ b/samples/maps/geo-map/binding-multiple-sources/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/binding-shp-points/.codesandbox/Dockerfile b/samples/maps/geo-map/binding-shp-points/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/binding-shp-points/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/binding-shp-points/.codesandbox/tasks.json b/samples/maps/geo-map/binding-shp-points/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/binding-shp-points/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-shp-points/.stackblitzrc b/samples/maps/geo-map/binding-shp-points/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/binding-shp-points/.stackblitzrc +++ b/samples/maps/geo-map/binding-shp-points/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-shp-points/angular.json b/samples/maps/geo-map/binding-shp-points/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/binding-shp-points/angular.json +++ b/samples/maps/geo-map/binding-shp-points/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/binding-shp-points/sandbox.config.json b/samples/maps/geo-map/binding-shp-points/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/binding-shp-points/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-shp-points/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/binding-shp-points/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/binding-shp-points/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.app.json b/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.base.json b/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.spec.json b/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.worker.json b/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/binding-shp-points/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/binding-shp-points/tsconfig.app.json b/samples/maps/geo-map/binding-shp-points/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/binding-shp-points/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/binding-shp-points/tsconfig.json b/samples/maps/geo-map/binding-shp-points/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/binding-shp-points/tsconfig.json +++ b/samples/maps/geo-map/binding-shp-points/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/binding-shp-polygons/.codesandbox/Dockerfile b/samples/maps/geo-map/binding-shp-polygons/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/binding-shp-polygons/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/binding-shp-polygons/.codesandbox/tasks.json b/samples/maps/geo-map/binding-shp-polygons/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/binding-shp-polygons/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-shp-polygons/.stackblitzrc b/samples/maps/geo-map/binding-shp-polygons/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/binding-shp-polygons/.stackblitzrc +++ b/samples/maps/geo-map/binding-shp-polygons/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-shp-polygons/angular.json b/samples/maps/geo-map/binding-shp-polygons/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/binding-shp-polygons/angular.json +++ b/samples/maps/geo-map/binding-shp-polygons/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/binding-shp-polygons/sandbox.config.json b/samples/maps/geo-map/binding-shp-polygons/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/binding-shp-polygons/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.app.json b/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.base.json b/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.spec.json b/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.worker.json b/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/binding-shp-polygons/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/binding-shp-polygons/tsconfig.app.json b/samples/maps/geo-map/binding-shp-polygons/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/binding-shp-polygons/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/binding-shp-polygons/tsconfig.json b/samples/maps/geo-map/binding-shp-polygons/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/binding-shp-polygons/tsconfig.json +++ b/samples/maps/geo-map/binding-shp-polygons/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/binding-shp-polylines/.codesandbox/Dockerfile b/samples/maps/geo-map/binding-shp-polylines/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/binding-shp-polylines/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/binding-shp-polylines/.codesandbox/tasks.json b/samples/maps/geo-map/binding-shp-polylines/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/binding-shp-polylines/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-shp-polylines/.stackblitzrc b/samples/maps/geo-map/binding-shp-polylines/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/binding-shp-polylines/.stackblitzrc +++ b/samples/maps/geo-map/binding-shp-polylines/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-shp-polylines/angular.json b/samples/maps/geo-map/binding-shp-polylines/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/binding-shp-polylines/angular.json +++ b/samples/maps/geo-map/binding-shp-polylines/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/binding-shp-polylines/sandbox.config.json b/samples/maps/geo-map/binding-shp-polylines/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/binding-shp-polylines/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.app.json b/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.base.json b/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.spec.json b/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.worker.json b/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/binding-shp-polylines/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/binding-shp-polylines/tsconfig.app.json b/samples/maps/geo-map/binding-shp-polylines/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/binding-shp-polylines/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/binding-shp-polylines/tsconfig.json b/samples/maps/geo-map/binding-shp-polylines/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/binding-shp-polylines/tsconfig.json +++ b/samples/maps/geo-map/binding-shp-polylines/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/custom-tooltips/.codesandbox/Dockerfile b/samples/maps/geo-map/custom-tooltips/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/custom-tooltips/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/custom-tooltips/.codesandbox/tasks.json b/samples/maps/geo-map/custom-tooltips/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/custom-tooltips/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/custom-tooltips/.stackblitzrc b/samples/maps/geo-map/custom-tooltips/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/custom-tooltips/.stackblitzrc +++ b/samples/maps/geo-map/custom-tooltips/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/custom-tooltips/angular.json b/samples/maps/geo-map/custom-tooltips/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/custom-tooltips/angular.json +++ b/samples/maps/geo-map/custom-tooltips/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/custom-tooltips/sandbox.config.json b/samples/maps/geo-map/custom-tooltips/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/custom-tooltips/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/custom-tooltips/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/custom-tooltips/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/custom-tooltips/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.app.json b/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.base.json b/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.spec.json b/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.worker.json b/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/custom-tooltips/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/custom-tooltips/tsconfig.app.json b/samples/maps/geo-map/custom-tooltips/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/custom-tooltips/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/custom-tooltips/tsconfig.json b/samples/maps/geo-map/custom-tooltips/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/custom-tooltips/tsconfig.json +++ b/samples/maps/geo-map/custom-tooltips/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/display-bing-imagery/.codesandbox/Dockerfile b/samples/maps/geo-map/display-bing-imagery/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/display-bing-imagery/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/display-bing-imagery/.codesandbox/tasks.json b/samples/maps/geo-map/display-bing-imagery/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/display-bing-imagery/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/display-bing-imagery/.stackblitzrc b/samples/maps/geo-map/display-bing-imagery/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/display-bing-imagery/.stackblitzrc +++ b/samples/maps/geo-map/display-bing-imagery/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/display-bing-imagery/angular.json b/samples/maps/geo-map/display-bing-imagery/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/display-bing-imagery/angular.json +++ b/samples/maps/geo-map/display-bing-imagery/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/display-bing-imagery/sandbox.config.json b/samples/maps/geo-map/display-bing-imagery/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/display-bing-imagery/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.app.json b/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.base.json b/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.spec.json b/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.worker.json b/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/display-bing-imagery/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/display-bing-imagery/tsconfig.app.json b/samples/maps/geo-map/display-bing-imagery/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/display-bing-imagery/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/display-bing-imagery/tsconfig.json b/samples/maps/geo-map/display-bing-imagery/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/display-bing-imagery/tsconfig.json +++ b/samples/maps/geo-map/display-bing-imagery/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/display-esri-imagery/.codesandbox/Dockerfile b/samples/maps/geo-map/display-esri-imagery/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/display-esri-imagery/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/display-esri-imagery/.codesandbox/tasks.json b/samples/maps/geo-map/display-esri-imagery/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/display-esri-imagery/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/display-esri-imagery/.stackblitzrc b/samples/maps/geo-map/display-esri-imagery/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/display-esri-imagery/.stackblitzrc +++ b/samples/maps/geo-map/display-esri-imagery/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/display-esri-imagery/angular.json b/samples/maps/geo-map/display-esri-imagery/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/display-esri-imagery/angular.json +++ b/samples/maps/geo-map/display-esri-imagery/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/display-esri-imagery/sandbox.config.json b/samples/maps/geo-map/display-esri-imagery/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/display-esri-imagery/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.app.json b/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.base.json b/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.spec.json b/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.worker.json b/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/display-esri-imagery/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/display-esri-imagery/tsconfig.app.json b/samples/maps/geo-map/display-esri-imagery/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/display-esri-imagery/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/display-esri-imagery/tsconfig.json b/samples/maps/geo-map/display-esri-imagery/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/display-esri-imagery/tsconfig.json +++ b/samples/maps/geo-map/display-esri-imagery/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/display-heat-imagery/.codesandbox/Dockerfile b/samples/maps/geo-map/display-heat-imagery/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/display-heat-imagery/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/display-heat-imagery/.codesandbox/tasks.json b/samples/maps/geo-map/display-heat-imagery/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/display-heat-imagery/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/display-heat-imagery/.stackblitzrc b/samples/maps/geo-map/display-heat-imagery/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/display-heat-imagery/.stackblitzrc +++ b/samples/maps/geo-map/display-heat-imagery/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/display-heat-imagery/angular.json b/samples/maps/geo-map/display-heat-imagery/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/display-heat-imagery/angular.json +++ b/samples/maps/geo-map/display-heat-imagery/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/display-heat-imagery/sandbox.config.json b/samples/maps/geo-map/display-heat-imagery/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/display-heat-imagery/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.app.json b/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.base.json b/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.spec.json b/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.worker.json b/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/display-heat-imagery/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/display-heat-imagery/tsconfig.app.json b/samples/maps/geo-map/display-heat-imagery/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/display-heat-imagery/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/display-heat-imagery/tsconfig.json b/samples/maps/geo-map/display-heat-imagery/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/display-heat-imagery/tsconfig.json +++ b/samples/maps/geo-map/display-heat-imagery/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/display-osm-imagery/.codesandbox/Dockerfile b/samples/maps/geo-map/display-osm-imagery/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/display-osm-imagery/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/display-osm-imagery/.codesandbox/tasks.json b/samples/maps/geo-map/display-osm-imagery/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/display-osm-imagery/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/display-osm-imagery/.stackblitzrc b/samples/maps/geo-map/display-osm-imagery/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/display-osm-imagery/.stackblitzrc +++ b/samples/maps/geo-map/display-osm-imagery/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/display-osm-imagery/angular.json b/samples/maps/geo-map/display-osm-imagery/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/display-osm-imagery/angular.json +++ b/samples/maps/geo-map/display-osm-imagery/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/display-osm-imagery/sandbox.config.json b/samples/maps/geo-map/display-osm-imagery/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/display-osm-imagery/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.app.json b/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.base.json b/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.spec.json b/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.worker.json b/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/display-osm-imagery/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/display-osm-imagery/tsconfig.app.json b/samples/maps/geo-map/display-osm-imagery/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/display-osm-imagery/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/display-osm-imagery/tsconfig.json b/samples/maps/geo-map/display-osm-imagery/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/display-osm-imagery/tsconfig.json +++ b/samples/maps/geo-map/display-osm-imagery/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/marker-layouts/.codesandbox/Dockerfile b/samples/maps/geo-map/marker-layouts/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/marker-layouts/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/marker-layouts/.codesandbox/tasks.json b/samples/maps/geo-map/marker-layouts/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/marker-layouts/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/marker-layouts/.stackblitzrc b/samples/maps/geo-map/marker-layouts/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/marker-layouts/.stackblitzrc +++ b/samples/maps/geo-map/marker-layouts/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/marker-layouts/angular.json b/samples/maps/geo-map/marker-layouts/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/marker-layouts/angular.json +++ b/samples/maps/geo-map/marker-layouts/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/marker-layouts/sandbox.config.json b/samples/maps/geo-map/marker-layouts/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/marker-layouts/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/marker-layouts/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/marker-layouts/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/marker-layouts/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/marker-layouts/src/config/tsconfig.app.json b/samples/maps/geo-map/marker-layouts/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/marker-layouts/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/marker-layouts/src/config/tsconfig.base.json b/samples/maps/geo-map/marker-layouts/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/marker-layouts/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/marker-layouts/src/config/tsconfig.spec.json b/samples/maps/geo-map/marker-layouts/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/marker-layouts/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/marker-layouts/src/config/tsconfig.worker.json b/samples/maps/geo-map/marker-layouts/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/marker-layouts/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/marker-layouts/tsconfig.app.json b/samples/maps/geo-map/marker-layouts/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/marker-layouts/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/marker-layouts/tsconfig.json b/samples/maps/geo-map/marker-layouts/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/marker-layouts/tsconfig.json +++ b/samples/maps/geo-map/marker-layouts/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/marker-template/.codesandbox/Dockerfile b/samples/maps/geo-map/marker-template/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/marker-template/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/marker-template/.codesandbox/tasks.json b/samples/maps/geo-map/marker-template/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/marker-template/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/marker-template/.stackblitzrc b/samples/maps/geo-map/marker-template/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/marker-template/.stackblitzrc +++ b/samples/maps/geo-map/marker-template/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/marker-template/angular.json b/samples/maps/geo-map/marker-template/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/marker-template/angular.json +++ b/samples/maps/geo-map/marker-template/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/marker-template/sandbox.config.json b/samples/maps/geo-map/marker-template/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/marker-template/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/marker-template/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/marker-template/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/marker-template/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/marker-template/src/config/tsconfig.app.json b/samples/maps/geo-map/marker-template/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/marker-template/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/marker-template/src/config/tsconfig.base.json b/samples/maps/geo-map/marker-template/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/marker-template/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/marker-template/src/config/tsconfig.spec.json b/samples/maps/geo-map/marker-template/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/marker-template/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/marker-template/src/config/tsconfig.worker.json b/samples/maps/geo-map/marker-template/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/marker-template/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/marker-template/tsconfig.app.json b/samples/maps/geo-map/marker-template/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/marker-template/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/marker-template/tsconfig.json b/samples/maps/geo-map/marker-template/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/marker-template/tsconfig.json +++ b/samples/maps/geo-map/marker-template/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/marker-type/.codesandbox/Dockerfile b/samples/maps/geo-map/marker-type/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/marker-type/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/marker-type/.codesandbox/tasks.json b/samples/maps/geo-map/marker-type/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/marker-type/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/marker-type/.stackblitzrc b/samples/maps/geo-map/marker-type/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/marker-type/.stackblitzrc +++ b/samples/maps/geo-map/marker-type/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/marker-type/angular.json b/samples/maps/geo-map/marker-type/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/marker-type/angular.json +++ b/samples/maps/geo-map/marker-type/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/marker-type/sandbox.config.json b/samples/maps/geo-map/marker-type/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/marker-type/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/marker-type/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/marker-type/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/marker-type/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/marker-type/src/config/tsconfig.app.json b/samples/maps/geo-map/marker-type/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/marker-type/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/marker-type/src/config/tsconfig.base.json b/samples/maps/geo-map/marker-type/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/marker-type/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/marker-type/src/config/tsconfig.spec.json b/samples/maps/geo-map/marker-type/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/marker-type/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/marker-type/src/config/tsconfig.worker.json b/samples/maps/geo-map/marker-type/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/marker-type/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/marker-type/tsconfig.app.json b/samples/maps/geo-map/marker-type/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/marker-type/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/marker-type/tsconfig.json b/samples/maps/geo-map/marker-type/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/marker-type/tsconfig.json +++ b/samples/maps/geo-map/marker-type/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/navigation/.codesandbox/Dockerfile b/samples/maps/geo-map/navigation/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/navigation/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/navigation/.codesandbox/tasks.json b/samples/maps/geo-map/navigation/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/navigation/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/navigation/.stackblitzrc b/samples/maps/geo-map/navigation/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/navigation/.stackblitzrc +++ b/samples/maps/geo-map/navigation/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/navigation/angular.json b/samples/maps/geo-map/navigation/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/navigation/angular.json +++ b/samples/maps/geo-map/navigation/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/navigation/sandbox.config.json b/samples/maps/geo-map/navigation/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/navigation/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/navigation/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/navigation/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/navigation/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/navigation/src/config/tsconfig.app.json b/samples/maps/geo-map/navigation/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/navigation/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/navigation/src/config/tsconfig.base.json b/samples/maps/geo-map/navigation/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/navigation/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/navigation/src/config/tsconfig.spec.json b/samples/maps/geo-map/navigation/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/navigation/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/navigation/src/config/tsconfig.worker.json b/samples/maps/geo-map/navigation/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/navigation/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/navigation/tsconfig.app.json b/samples/maps/geo-map/navigation/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/navigation/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/navigation/tsconfig.json b/samples/maps/geo-map/navigation/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/navigation/tsconfig.json +++ b/samples/maps/geo-map/navigation/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/overview/.codesandbox/Dockerfile b/samples/maps/geo-map/overview/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/overview/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/overview/.codesandbox/tasks.json b/samples/maps/geo-map/overview/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/overview/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/overview/.stackblitzrc b/samples/maps/geo-map/overview/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/overview/.stackblitzrc +++ b/samples/maps/geo-map/overview/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/overview/angular.json b/samples/maps/geo-map/overview/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/overview/angular.json +++ b/samples/maps/geo-map/overview/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/overview/sandbox.config.json b/samples/maps/geo-map/overview/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/overview/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/overview/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/overview/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/overview/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/overview/src/config/tsconfig.app.json b/samples/maps/geo-map/overview/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/overview/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/overview/src/config/tsconfig.base.json b/samples/maps/geo-map/overview/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/overview/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/overview/src/config/tsconfig.spec.json b/samples/maps/geo-map/overview/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/overview/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/overview/src/config/tsconfig.worker.json b/samples/maps/geo-map/overview/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/overview/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/overview/tsconfig.app.json b/samples/maps/geo-map/overview/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/overview/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/overview/tsconfig.json b/samples/maps/geo-map/overview/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/overview/tsconfig.json +++ b/samples/maps/geo-map/overview/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/shape-styling/.codesandbox/Dockerfile b/samples/maps/geo-map/shape-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/shape-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/shape-styling/.codesandbox/tasks.json b/samples/maps/geo-map/shape-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/shape-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/shape-styling/.stackblitzrc b/samples/maps/geo-map/shape-styling/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/shape-styling/.stackblitzrc +++ b/samples/maps/geo-map/shape-styling/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/shape-styling/angular.json b/samples/maps/geo-map/shape-styling/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/shape-styling/angular.json +++ b/samples/maps/geo-map/shape-styling/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/shape-styling/sandbox.config.json b/samples/maps/geo-map/shape-styling/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/shape-styling/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/shape-styling/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/shape-styling/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/shape-styling/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/shape-styling/src/config/tsconfig.app.json b/samples/maps/geo-map/shape-styling/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/shape-styling/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/shape-styling/src/config/tsconfig.base.json b/samples/maps/geo-map/shape-styling/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/shape-styling/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/shape-styling/src/config/tsconfig.spec.json b/samples/maps/geo-map/shape-styling/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/shape-styling/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/shape-styling/src/config/tsconfig.worker.json b/samples/maps/geo-map/shape-styling/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/shape-styling/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/shape-styling/tsconfig.app.json b/samples/maps/geo-map/shape-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/shape-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/shape-styling/tsconfig.json b/samples/maps/geo-map/shape-styling/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/shape-styling/tsconfig.json +++ b/samples/maps/geo-map/shape-styling/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/triangulating-data/.codesandbox/Dockerfile b/samples/maps/geo-map/triangulating-data/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/triangulating-data/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/triangulating-data/.codesandbox/tasks.json b/samples/maps/geo-map/triangulating-data/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/triangulating-data/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/triangulating-data/.stackblitzrc b/samples/maps/geo-map/triangulating-data/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/triangulating-data/.stackblitzrc +++ b/samples/maps/geo-map/triangulating-data/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/triangulating-data/angular.json b/samples/maps/geo-map/triangulating-data/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/triangulating-data/angular.json +++ b/samples/maps/geo-map/triangulating-data/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/triangulating-data/sandbox.config.json b/samples/maps/geo-map/triangulating-data/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/triangulating-data/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/triangulating-data/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/triangulating-data/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/triangulating-data/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/triangulating-data/src/config/tsconfig.app.json b/samples/maps/geo-map/triangulating-data/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/triangulating-data/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/triangulating-data/src/config/tsconfig.base.json b/samples/maps/geo-map/triangulating-data/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/triangulating-data/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/triangulating-data/src/config/tsconfig.spec.json b/samples/maps/geo-map/triangulating-data/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/triangulating-data/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/triangulating-data/src/config/tsconfig.worker.json b/samples/maps/geo-map/triangulating-data/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/triangulating-data/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/triangulating-data/tsconfig.app.json b/samples/maps/geo-map/triangulating-data/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/triangulating-data/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/triangulating-data/tsconfig.json b/samples/maps/geo-map/triangulating-data/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/triangulating-data/tsconfig.json +++ b/samples/maps/geo-map/triangulating-data/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-area-series/.codesandbox/Dockerfile b/samples/maps/geo-map/type-scatter-area-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/type-scatter-area-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-area-series/.codesandbox/tasks.json b/samples/maps/geo-map/type-scatter-area-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/type-scatter-area-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-area-series/.stackblitzrc b/samples/maps/geo-map/type-scatter-area-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/type-scatter-area-series/.stackblitzrc +++ b/samples/maps/geo-map/type-scatter-area-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-area-series/angular.json b/samples/maps/geo-map/type-scatter-area-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/type-scatter-area-series/angular.json +++ b/samples/maps/geo-map/type-scatter-area-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/type-scatter-area-series/sandbox.config.json b/samples/maps/geo-map/type-scatter-area-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/type-scatter-area-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.app.json b/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.base.json b/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.spec.json b/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.worker.json b/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/type-scatter-area-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/type-scatter-area-series/tsconfig.app.json b/samples/maps/geo-map/type-scatter-area-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/type-scatter-area-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/type-scatter-area-series/tsconfig.json b/samples/maps/geo-map/type-scatter-area-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/type-scatter-area-series/tsconfig.json +++ b/samples/maps/geo-map/type-scatter-area-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-bubble-series/.codesandbox/Dockerfile b/samples/maps/geo-map/type-scatter-bubble-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/type-scatter-bubble-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-bubble-series/.codesandbox/tasks.json b/samples/maps/geo-map/type-scatter-bubble-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/type-scatter-bubble-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-bubble-series/.stackblitzrc b/samples/maps/geo-map/type-scatter-bubble-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/.stackblitzrc +++ b/samples/maps/geo-map/type-scatter-bubble-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-bubble-series/angular.json b/samples/maps/geo-map/type-scatter-bubble-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/angular.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/type-scatter-bubble-series/sandbox.config.json b/samples/maps/geo-map/type-scatter-bubble-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/type-scatter-bubble-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.app.json b/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.base.json b/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.spec.json b/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.worker.json b/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/type-scatter-bubble-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/type-scatter-bubble-series/tsconfig.app.json b/samples/maps/geo-map/type-scatter-bubble-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/type-scatter-bubble-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/type-scatter-bubble-series/tsconfig.json b/samples/maps/geo-map/type-scatter-bubble-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/tsconfig.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-contour-series/.codesandbox/Dockerfile b/samples/maps/geo-map/type-scatter-contour-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/type-scatter-contour-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-contour-series/.codesandbox/tasks.json b/samples/maps/geo-map/type-scatter-contour-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/type-scatter-contour-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-contour-series/.stackblitzrc b/samples/maps/geo-map/type-scatter-contour-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/.stackblitzrc +++ b/samples/maps/geo-map/type-scatter-contour-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-contour-series/angular.json b/samples/maps/geo-map/type-scatter-contour-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/angular.json +++ b/samples/maps/geo-map/type-scatter-contour-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/type-scatter-contour-series/sandbox.config.json b/samples/maps/geo-map/type-scatter-contour-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/type-scatter-contour-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.app.json b/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.base.json b/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.spec.json b/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.worker.json b/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/type-scatter-contour-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/type-scatter-contour-series/tsconfig.app.json b/samples/maps/geo-map/type-scatter-contour-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/type-scatter-contour-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/type-scatter-contour-series/tsconfig.json b/samples/maps/geo-map/type-scatter-contour-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/tsconfig.json +++ b/samples/maps/geo-map/type-scatter-contour-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-density-series/.codesandbox/Dockerfile b/samples/maps/geo-map/type-scatter-density-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/type-scatter-density-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-density-series/.codesandbox/tasks.json b/samples/maps/geo-map/type-scatter-density-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/type-scatter-density-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-density-series/.stackblitzrc b/samples/maps/geo-map/type-scatter-density-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/type-scatter-density-series/.stackblitzrc +++ b/samples/maps/geo-map/type-scatter-density-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-density-series/angular.json b/samples/maps/geo-map/type-scatter-density-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/type-scatter-density-series/angular.json +++ b/samples/maps/geo-map/type-scatter-density-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/type-scatter-density-series/sandbox.config.json b/samples/maps/geo-map/type-scatter-density-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/type-scatter-density-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.app.json b/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.base.json b/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.spec.json b/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.worker.json b/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/type-scatter-density-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/type-scatter-density-series/tsconfig.app.json b/samples/maps/geo-map/type-scatter-density-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/type-scatter-density-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/type-scatter-density-series/tsconfig.json b/samples/maps/geo-map/type-scatter-density-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/type-scatter-density-series/tsconfig.json +++ b/samples/maps/geo-map/type-scatter-density-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-symbol-series/.codesandbox/Dockerfile b/samples/maps/geo-map/type-scatter-symbol-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/type-scatter-symbol-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-symbol-series/.codesandbox/tasks.json b/samples/maps/geo-map/type-scatter-symbol-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/type-scatter-symbol-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-symbol-series/.stackblitzrc b/samples/maps/geo-map/type-scatter-symbol-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/.stackblitzrc +++ b/samples/maps/geo-map/type-scatter-symbol-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-symbol-series/angular.json b/samples/maps/geo-map/type-scatter-symbol-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/angular.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/type-scatter-symbol-series/sandbox.config.json b/samples/maps/geo-map/type-scatter-symbol-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/type-scatter-symbol-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.app.json b/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.base.json b/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.spec.json b/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.worker.json b/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/type-scatter-symbol-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/type-scatter-symbol-series/tsconfig.app.json b/samples/maps/geo-map/type-scatter-symbol-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/type-scatter-symbol-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/type-scatter-symbol-series/tsconfig.json b/samples/maps/geo-map/type-scatter-symbol-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/tsconfig.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/type-shape-polygon-series/.codesandbox/Dockerfile b/samples/maps/geo-map/type-shape-polygon-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/type-shape-polygon-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/type-shape-polygon-series/.codesandbox/tasks.json b/samples/maps/geo-map/type-shape-polygon-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/type-shape-polygon-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/type-shape-polygon-series/.stackblitzrc b/samples/maps/geo-map/type-shape-polygon-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/.stackblitzrc +++ b/samples/maps/geo-map/type-shape-polygon-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/type-shape-polygon-series/angular.json b/samples/maps/geo-map/type-shape-polygon-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/angular.json +++ b/samples/maps/geo-map/type-shape-polygon-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/type-shape-polygon-series/sandbox.config.json b/samples/maps/geo-map/type-shape-polygon-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/type-shape-polygon-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.app.json b/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.base.json b/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.spec.json b/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.worker.json b/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/type-shape-polygon-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/type-shape-polygon-series/tsconfig.app.json b/samples/maps/geo-map/type-shape-polygon-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/type-shape-polygon-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/type-shape-polygon-series/tsconfig.json b/samples/maps/geo-map/type-shape-polygon-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/tsconfig.json +++ b/samples/maps/geo-map/type-shape-polygon-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/samples/maps/geo-map/type-shape-polyline-series/.codesandbox/Dockerfile b/samples/maps/geo-map/type-shape-polyline-series/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/type-shape-polyline-series/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/type-shape-polyline-series/.codesandbox/tasks.json b/samples/maps/geo-map/type-shape-polyline-series/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/type-shape-polyline-series/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/maps/geo-map/type-shape-polyline-series/.stackblitzrc b/samples/maps/geo-map/type-shape-polyline-series/.stackblitzrc index 65efbb4fd..dd44ea00f 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/.stackblitzrc +++ b/samples/maps/geo-map/type-shape-polyline-series/.stackblitzrc @@ -1 +1 @@ -{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/type-shape-polyline-series/angular.json b/samples/maps/geo-map/type-shape-polyline-series/angular.json index 11ffb8c9c..0c2c173c9 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/angular.json +++ b/samples/maps/geo-map/type-shape-polyline-series/angular.json @@ -4,8 +4,17 @@ "newProjectRoot": "projects", "projects": { "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, "root": "", "sourceRoot": "src", + "prefix": "app", "projectType": "application", "architect": { "build": { @@ -15,17 +24,20 @@ "index": "src/index.html", "main": "src/main.ts", "polyfills": [ - "zone.js", - "hammerjs" + "src/polyfills.ts" ], - "tsConfig": "src/config/tsconfig.app.json", + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", "assets": [ "src/assets" ], "styles": [ "src/styles.scss" ], - "scripts": [] + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } }, "configurations": { "production": { @@ -35,27 +47,42 @@ "with": "src/environments/environment.prod.ts" } ], - "optimization": true, "outputHashing": "all", - "sourceMap": false, - "namedChunks": false, - "aot": true, - "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } - } + }, + "defaultConfiguration": "production" }, "serve": { "builder": "@angular-devkit/build-angular:dev-server", - "options": { - "buildTarget": "demo:build" - }, "configurations": { "production": { "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", @@ -68,39 +95,26 @@ "options": { "main": "src/test.ts", "polyfills": "src/polyfills.ts", - "tsConfig": "src/config/tsconfig.spec.json", - "karmaConfig": "src/config/karma.conf.js", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", "styles": [ - "styles.css" + "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" - ] - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/config/tsconfig.app.json", - "src/config/tsconfig.spec.json" ], - "exclude": [ - "**/node_modules/**" - ] + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } } } } } }, - "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } + "defaultProject": "demo", + "cli": { + "analytics": false } } diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 0c717502f..427146442 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "2.0.8", + "hammerjs": "^2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", - "@types/node": "14.14.28", + "@angular-devkit/build-angular": "17.2.0", + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.3.3" } } diff --git a/samples/maps/geo-map/type-shape-polyline-series/sandbox.config.json b/samples/maps/geo-map/type-shape-polyline-series/sandbox.config.json deleted file mode 100644 index 00acba0c1..000000000 --- a/samples/maps/geo-map/type-shape-polyline-series/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig-es5.app.json b/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.app.json b/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.base.json b/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.spec.json b/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.worker.json b/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/maps/geo-map/type-shape-polyline-series/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/maps/geo-map/type-shape-polyline-series/tsconfig.app.json b/samples/maps/geo-map/type-shape-polyline-series/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/type-shape-polyline-series/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/maps/geo-map/type-shape-polyline-series/tsconfig.json b/samples/maps/geo-map/type-shape-polyline-series/tsconfig.json index 1aaac63d3..22d546ab3 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/tsconfig.json +++ b/samples/maps/geo-map/type-shape-polyline-series/tsconfig.json @@ -1,21 +1,27 @@ -/* - This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. - It is not intended to be used to perform a compilation. - - To learn more about this file see: https://angular.io/config/solution-tsconfig. -*/ { - "useDefineForClassFields": false, - "files": [], - "references": [ - { - "path": "./src/config/tsconfig.app.json" - }, - { - "path": "./src/config/tsconfig.worker.json" - }, - { - "path": "./src/config/tsconfig.spec.json" - } - ] + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } } \ No newline at end of file diff --git a/tests/display-heat-imagery/.stackblitzrc b/tests/display-heat-imagery/.stackblitzrc new file mode 100644 index 000000000..65efbb4fd --- /dev/null +++ b/tests/display-heat-imagery/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true,"startCommand":"turbo start","env":{"ENABLE_CJS_IMPORTS":true}} \ No newline at end of file diff --git a/tests/display-heat-imagery/ReadMe.md b/tests/display-heat-imagery/ReadMe.md new file mode 100644 index 000000000..d751a7883 --- /dev/null +++ b/tests/display-heat-imagery/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Display Heat Imagery feature using [GeoMap](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/maps/geo-map/display-heat-imagery +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/tests/display-heat-imagery/angular.json b/tests/display-heat-imagery/angular.json new file mode 100644 index 000000000..11ffb8c9c --- /dev/null +++ b/tests/display-heat-imagery/angular.json @@ -0,0 +1,106 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "root": "", + "sourceRoot": "src", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js", + "hammerjs" + ], + "tsConfig": "src/config/tsconfig.app.json", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "aot": true, + "extractLicenses": true, + "vendorChunk": false, + "buildOptimizer": true + } + } + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "options": { + "buildTarget": "demo:build" + }, + "configurations": { + "production": { + "buildTarget": "demo:build:production" + } + } + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "src/config/tsconfig.spec.json", + "karmaConfig": "src/config/karma.conf.js", + "styles": [ + "styles.css" + ], + "scripts": [], + "assets": [ + "src/assets" + ] + } + }, + "lint": { + "builder": "@angular-devkit/build-angular:tslint", + "options": { + "tsConfig": [ + "src/config/tsconfig.app.json", + "src/config/tsconfig.spec.json" + ], + "exclude": [ + "**/node_modules/**" + ] + } + } + } + } + }, + "schematics": { + "@schematics/angular:component": { + "prefix": "app", + "style": "scss" + }, + "@schematics/angular:directive": { + "prefix": "app" + } + } +} diff --git a/tests/display-heat-imagery/package.json b/tests/display-heat-imagery/package.json new file mode 100644 index 000000000..0c717502f --- /dev/null +++ b/tests/display-heat-imagery/package.json @@ -0,0 +1,45 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "17.0.0", + "@angular/common": "17.0.0", + "@angular/compiler": "17.0.0", + "@angular/core": "17.0.0", + "@angular/forms": "17.0.0", + "@angular/platform-browser": "17.0.0", + "@angular/platform-browser-dynamic": "17.0.0", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-maps": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "6.6.7", + "tslib": "2.3.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.1" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.0.0", + "@angular/cli": "17.0.0", + "@angular/compiler-cli": "17.0.0", + "@angular/language-service": "17.0.0", + "@types/node": "14.14.28", + "codelyzer": "6.0.2", + "jasmine-core": "3.7.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "9.1.1", + "tslint": "~6.1.3", + "typescript": "5.2.2" + } +} diff --git a/samples/charts/category-chart/annotations/sandbox.config.json b/tests/display-heat-imagery/sandbox.config.json similarity index 100% rename from samples/charts/category-chart/annotations/sandbox.config.json rename to tests/display-heat-imagery/sandbox.config.json diff --git a/tests/display-heat-imagery/src/HeatmapWorker.ts b/tests/display-heat-imagery/src/HeatmapWorker.ts new file mode 100644 index 000000000..fdccd9d9f --- /dev/null +++ b/tests/display-heat-imagery/src/HeatmapWorker.ts @@ -0,0 +1,15 @@ +// import { HeatTileGeneratorWebWorker } from "igniteui-angular-core/esm5/lib/HeatTileGeneratorWebWorker"; +import { HeatTileGeneratorWebWorker } from "igniteui-angular-core/esm2015/lib/HeatTileGeneratorWebWorker"; + +const worker: Worker = self as any; + +worker.onmessage = HeatTileGeneratorWebWorker.onmessage; +HeatTileGeneratorWebWorker.postmessage = heatWorkerPostMessage; + +function heatWorkerPostMessage() { + (self as any).postMessage.apply(self, Array.prototype.slice.call(arguments)); +} + +HeatTileGeneratorWebWorker.start(); + +export default {} as typeof Worker & (new () => Worker); diff --git a/tests/display-heat-imagery/src/app.component.html b/tests/display-heat-imagery/src/app.component.html new file mode 100644 index 000000000..7ffb86ef2 --- /dev/null +++ b/tests/display-heat-imagery/src/app.component.html @@ -0,0 +1,4 @@ +
+ + +
diff --git a/tests/display-heat-imagery/src/app.component.scss b/tests/display-heat-imagery/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/tests/display-heat-imagery/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/tests/display-heat-imagery/src/app.component.ts b/tests/display-heat-imagery/src/app.component.ts new file mode 100644 index 000000000..613603db3 --- /dev/null +++ b/tests/display-heat-imagery/src/app.component.ts @@ -0,0 +1,89 @@ +import { AfterViewInit, Component, ChangeDetectionStrategy, ViewChild } from "@angular/core"; +import { IgxHeatTileGenerator } from "igniteui-angular-core"; +import { IgxShapeDataSource } from "igniteui-angular-core"; +import { IgxGeographicMapComponent } from "igniteui-angular-maps"; +import { IgxGeographicTileSeriesComponent } from "igniteui-angular-maps"; +import { IgxTileGeneratorMapImagery } from "igniteui-angular-maps"; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class AppComponent implements AfterViewInit { + + @ViewChild("map", { static: true }) + public map: IgxGeographicMapComponent; + public tileImagery: IgxTileGeneratorMapImagery; + + constructor() { + this.tileImagery = new IgxTileGeneratorMapImagery(); + + const sds: IgxShapeDataSource = new IgxShapeDataSource(); + sds.importCompleted.subscribe((s, e) => { + const data = sds.getPointData(); + const lat: number[] = []; + const lon: number[] = []; + const val: number[] = []; + + for (let i = 0; i < data.length; i++) { + const item = data[i]; + for (let j = 0; j < item.points.length; j++) { + const pointsList = item.points[j]; + for (let k = 0; k < pointsList.length; k++) { + lat.push(pointsList[k].y); + lon.push(pointsList[k].x); + } + } + const value = parseInt(item.fieldValues["POP2010"], 10); + if (value >= 0) { + val.push(value); + } else { + val.push(0); + } + } + + // generating heat map imagery tiles + const gen = new IgxHeatTileGenerator(); + gen.xValues = lon; + gen.yValues = lat; + gen.values = val; + gen.blurRadius = 6; + gen.maxBlurRadius = 20; + gen.useBlurRadiusAdjustedForZoom = true; + gen.minimumColor = "rgba(100, 255, 0, 0.5)"; + gen.maximumColor = "rgba(255, 255, 0, 0.5)"; + gen.useGlobalMinMax = true; + gen.useGlobalMinMaxAdjustedForZoom = true; + gen.useLogarithmicScale = true; + gen.useWebWorkers = true; + // gen.webWorkerInstance = new Worker(); + // gen.webWorkerInstance = new Worker("./HeatmapWorker", { type: "module" }); + gen.webWorkerInstance = new Worker(new URL('./HeatmapWorker', import.meta.url), { type: "module" }); + + gen.scaleColors = [ + "rgba(0, 0, 255, .251)", "rgba(0, 255, 255, .3765)", + "rgba(50,205,50, .2675)", "rgba(255, 255, 0, .7059)", + "rgba(255, 0, 0, .7843)" + ]; + this.tileImagery.tileGenerator = gen; + + // generating heat map series + const series = new IgxGeographicTileSeriesComponent(); + series.name = "heatMapSeries"; + series.tileImagery = this.tileImagery; + + // add heat map series to the map + this.map.series.add(series); + }); + + sds.shapefileSource = "https://static.infragistics.com/xplatform/shapes/AmericanCities.shp"; + sds.databaseSource = "https://static.infragistics.com/xplatform/shapes/AmericanCities.dbf"; + sds.dataBind(); + } + + public ngAfterViewInit(): void { + this.map.zoomToGeographic({ left: -134.5, top: 16.0, width: 70.0, height: 37.0 }); + } +} diff --git a/tests/display-heat-imagery/src/app.module.ts b/tests/display-heat-imagery/src/app.module.ts new file mode 100644 index 000000000..888fd1b03 --- /dev/null +++ b/tests/display-heat-imagery/src/app.module.ts @@ -0,0 +1,29 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxGeographicMapModule } from "igniteui-angular-maps"; +import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; + + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent, + +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxGeographicMapModule, + IgxDataChartInteractivityModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/category-chart/annotations-all/src/config/tsconfig-es5.app.json b/tests/display-heat-imagery/src/config/tsconfig-es5.app.json similarity index 100% rename from samples/charts/category-chart/annotations-all/src/config/tsconfig-es5.app.json rename to tests/display-heat-imagery/src/config/tsconfig-es5.app.json diff --git a/samples/charts/category-chart/annotations-all/src/config/tsconfig.app.json b/tests/display-heat-imagery/src/config/tsconfig.app.json similarity index 100% rename from samples/charts/category-chart/annotations-all/src/config/tsconfig.app.json rename to tests/display-heat-imagery/src/config/tsconfig.app.json diff --git a/samples/charts/category-chart/annotations-all/src/config/tsconfig.base.json b/tests/display-heat-imagery/src/config/tsconfig.base.json similarity index 100% rename from samples/charts/category-chart/annotations-all/src/config/tsconfig.base.json rename to tests/display-heat-imagery/src/config/tsconfig.base.json diff --git a/samples/charts/category-chart/annotations-all/src/config/tsconfig.spec.json b/tests/display-heat-imagery/src/config/tsconfig.spec.json similarity index 100% rename from samples/charts/category-chart/annotations-all/src/config/tsconfig.spec.json rename to tests/display-heat-imagery/src/config/tsconfig.spec.json diff --git a/samples/charts/category-chart/annotations-all/src/config/tsconfig.worker.json b/tests/display-heat-imagery/src/config/tsconfig.worker.json similarity index 100% rename from samples/charts/category-chart/annotations-all/src/config/tsconfig.worker.json rename to tests/display-heat-imagery/src/config/tsconfig.worker.json diff --git a/tests/display-heat-imagery/src/environments/environment.prod.ts b/tests/display-heat-imagery/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/tests/display-heat-imagery/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/tests/display-heat-imagery/src/environments/environment.ts b/tests/display-heat-imagery/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/tests/display-heat-imagery/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/tests/display-heat-imagery/src/index.html b/tests/display-heat-imagery/src/index.html new file mode 100644 index 000000000..67a35017e --- /dev/null +++ b/tests/display-heat-imagery/src/index.html @@ -0,0 +1,22 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + diff --git a/tests/display-heat-imagery/src/main.ts b/tests/display-heat-imagery/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/tests/display-heat-imagery/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/tests/display-heat-imagery/src/polyfills.ts b/tests/display-heat-imagery/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/tests/display-heat-imagery/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/tests/display-heat-imagery/src/styles.scss b/tests/display-heat-imagery/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/tests/display-heat-imagery/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/tests/display-heat-imagery/src/typings.d.ts b/tests/display-heat-imagery/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/tests/display-heat-imagery/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/tests/display-heat-imagery/tsconfig.json b/tests/display-heat-imagery/tsconfig.json new file mode 100644 index 000000000..1aaac63d3 --- /dev/null +++ b/tests/display-heat-imagery/tsconfig.json @@ -0,0 +1,21 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ +{ + "useDefineForClassFields": false, + "files": [], + "references": [ + { + "path": "./src/config/tsconfig.app.json" + }, + { + "path": "./src/config/tsconfig.worker.json" + }, + { + "path": "./src/config/tsconfig.spec.json" + } + ] +} \ No newline at end of file From f51397afa91dd6a6bc7ce4ebbb6d042815e7e66a Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 5 Jun 2024 15:52:35 -0400 Subject: [PATCH 080/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.6.5.4 (#184) Co-authored-by: tfsbuild --- .../data-filter/src/SalesData.ts | 16703 ---------------- 1 file changed, 16703 deletions(-) delete mode 100644 samples/charts/category-chart/data-filter/src/SalesData.ts diff --git a/samples/charts/category-chart/data-filter/src/SalesData.ts b/samples/charts/category-chart/data-filter/src/SalesData.ts deleted file mode 100644 index 50d5fe209..000000000 --- a/samples/charts/category-chart/data-filter/src/SalesData.ts +++ /dev/null @@ -1,16703 +0,0 @@ -export class SalesDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Country: string; - public Product: string; - public UnitsSold: number; - public ManufacturingPrice: number; - public SalePrice: number; - public GrossSales: number; - public Discounts: number; - public Sales: number; - public COGS: number; - public Profit: number; - public Date: string; - public Month: string; - public Year: string; - -} -export class SalesData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 501, - ManufacturingPrice: 15, - SalePrice: 23, - GrossSales: 26440, - Discounts: 0, - Sales: 26440, - COGS: 16185, - Profit: 11255, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 1372, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 27440, - Discounts: 0, - Sales: 27440, - COGS: 16185, - Profit: 11255, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 2762, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 55240, - Discounts: 0, - Sales: 55240, - COGS: 13210, - Profit: 42030, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 1464, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 21960, - Discounts: 0, - Sales: 21960, - COGS: 21780, - Profit: 180, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 719, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 10785, - Discounts: 0, - Sales: 10785, - COGS: 8880, - Profit: 1905, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 3576, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 53640, - Discounts: 0, - Sales: 53640, - COGS: 24700, - Profit: 28940, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 4422, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1547700, - Discounts: 0, - Sales: 1547700, - COGS: 393380, - Profit: 1154320, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 3649, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 54735, - Discounts: 0, - Sales: 54735, - COGS: 9210, - Profit: 45525, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 4172, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 50064, - Discounts: 0, - Sales: 50064, - COGS: 7554, - Profit: 42510, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 3841, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 76820, - Discounts: 0, - Sales: 76820, - COGS: 18990, - Profit: 57830, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 3726, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 44712, - Discounts: 0, - Sales: 44712, - COGS: 4635, - Profit: 40077, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 2625, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 39375, - Discounts: 0, - Sales: 39375, - COGS: 24700, - Profit: 14675, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 1958, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 244750, - Discounts: 0, - Sales: 244750, - COGS: 319860, - Profit: 75110, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 3271, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 981300, - Discounts: 0, - Sales: 981300, - COGS: 239500, - Profit: 741800, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 2091, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 14637, - Discounts: 0, - Sales: 14637, - COGS: 10730, - Profit: 3907, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 2825, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 42375, - Discounts: 0, - Sales: 42375, - COGS: 6150, - Profit: 36225, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2513, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 50260, - Discounts: 0, - Sales: 50260, - COGS: 2920, - Profit: 47340, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 883, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 13245, - Discounts: 0, - Sales: 13245, - COGS: 9740, - Profit: 3505, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2087, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 25044, - Discounts: 0, - Sales: 25044, - COGS: 7554, - Profit: 17490, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2563, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 897050, - Discounts: 0, - Sales: 897050, - COGS: 261560, - Profit: 635490, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2846, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 34152, - Discounts: 0, - Sales: 34152, - COGS: 1101, - Profit: 33051, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 997, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 6979, - Discounts: 0, - Sales: 6979, - COGS: 4415, - Profit: 2564, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2290, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 34350, - Discounts: 0, - Sales: 34350, - COGS: 24720, - Profit: 9630, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 2133, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 14931, - Discounts: 0, - Sales: 14931, - COGS: 5715, - Profit: 9216, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 3617, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 72340, - Discounts: 0, - Sales: 72340, - COGS: 18170, - Profit: 54170, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 1266, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 443100, - Discounts: 0, - Sales: 443100, - COGS: 393380, - Profit: 49720, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 894, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 6258, - Discounts: 0, - Sales: 6258, - COGS: 7465, - Profit: 1207, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 2725, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 340625, - Discounts: 0, - Sales: 340625, - COGS: 216480, - Profit: 124145, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 3061, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 36732, - Discounts: 0, - Sales: 36732, - COGS: 6483, - Profit: 30249, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 3958, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1385300, - Discounts: 0, - Sales: 1385300, - COGS: 261560, - Profit: 1123740, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 3920, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 47040, - Discounts: 0, - Sales: 47040, - COGS: 4635, - Profit: 42405, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 3381, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 422625, - Discounts: 0, - Sales: 422625, - COGS: 338520, - Profit: 84105, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 4307, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 1292100, - Discounts: 0, - Sales: 1292100, - COGS: 500250, - Profit: 791850, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 878, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 10536, - Discounts: 0, - Sales: 10536, - COGS: 8514, - Profit: 2022, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 496, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 7440, - Discounts: 0, - Sales: 7440, - COGS: 21780, - Profit: 14340, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 3367, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 50505, - Discounts: 0, - Sales: 50505, - COGS: 8880, - Profit: 41625, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 2055, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 616500, - Discounts: 0, - Sales: 616500, - COGS: 537750, - Profit: 78750, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 4041, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 80820, - Discounts: 0, - Sales: 80820, - COGS: 18170, - Profit: 62650, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 3237, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1132950, - Discounts: 0, - Sales: 1132950, - COGS: 715000, - Profit: 417950, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 630, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 7560, - Discounts: 0, - Sales: 7560, - COGS: 5859, - Profit: 1701, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 4210, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 526250, - Discounts: 0, - Sales: 526250, - COGS: 506340, - Profit: 19910, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 1127, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 22540, - Discounts: 0, - Sales: 22540, - COGS: 18990, - Profit: 3550, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 3438, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 24066, - Discounts: 0, - Sales: 24066, - COGS: 8430, - Profit: 15636, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 2015, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 24180, - Discounts: 0, - Sales: 24180, - COGS: 6423, - Profit: 17757, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 2534, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 17738, - Discounts: 0, - Sales: 17738, - COGS: 5715, - Profit: 12023, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 1384, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 20760, - Discounts: 0, - Sales: 20760, - COGS: 6150, - Profit: 14610, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 3561, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 24927, - Discounts: 276.15, - Sales: 24650.85, - COGS: 19725, - Profit: 4925.85, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1823, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 27345, - Discounts: 344.4, - Sales: 27000.6, - COGS: 22960, - Profit: 4040.6, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 2795, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 19565, - Discounts: 72.1, - Sales: 19492.9, - COGS: 5150, - Profit: 14342.9, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 457, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 3199, - Discounts: 44.73, - Sales: 3154.27, - COGS: 3195, - Profit: 40.73, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 3785, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 26495, - Discounts: 92.82, - Sales: 26402.18, - COGS: 6630, - Profit: 19772.18, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 748, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 8976, - Discounts: 222.96, - Sales: 8753.04, - COGS: 5574, - Profit: 3179.04, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 1021, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 357350, - Discounts: 4235, - Sales: 353115, - COGS: 314600, - Profit: 38515, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 2076, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 14532, - Discounts: 177.03, - Sales: 14354.97, - COGS: 12645, - Profit: 1709.97, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 4316, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 51792, - Discounts: 173.4, - Sales: 51618.6, - COGS: 4335, - Profit: 47283.6, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 4174, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 50088, - Discounts: 320.52, - Sales: 49767.48, - COGS: 8013, - Profit: 41754.48, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 3736, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1307600, - Discounts: 4889.5, - Sales: 1302710.5, - COGS: 363220, - Profit: 939490.5, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 1914, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 669900, - Discounts: 7542.5, - Sales: 662357.5, - COGS: 560300, - Profit: 102057.5, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 2742, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 41130, - Discounts: 332.1, - Sales: 40797.9, - COGS: 22140, - Profit: 18657.9, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 1499, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 449700, - Discounts: 6903, - Sales: 442797, - COGS: 575250, - Profit: 132453, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 3772, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 75440, - Discounts: 275.1, - Sales: 75164.9, - COGS: 13755, - Profit: 61409.9, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 1112, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 7784, - Discounts: 128.1, - Sales: 7655.9, - COGS: 9150, - Profit: 1494.1, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 2368, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 35520, - Discounts: 227.1, - Sales: 35292.9, - COGS: 15140, - Profit: 20152.9, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 1586, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 11102, - Discounts: 314.48, - Sales: 10787.52, - COGS: 22462.5, - Profit: 11674.98, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3386, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 423250, - Discounts: 908.75, - Sales: 422341.25, - COGS: 87240, - Profit: 335101.25, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 852, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 106500, - Discounts: 983.75, - Sales: 105516.25, - COGS: 94440, - Profit: 11076.25, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2783, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 347875, - Discounts: 2278.75, - Sales: 345596.25, - COGS: 218760, - Profit: 126836.25, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2684, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 40260, - Discounts: 112.05, - Sales: 40147.95, - COGS: 7470, - Profit: 32677.95, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 4083, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1224900, - Discounts: 8715, - Sales: 1216185, - COGS: 726250, - Profit: 489935, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 2816, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 985600, - Discounts: 7542.5, - Sales: 978057.5, - COGS: 560300, - Profit: 417757.5, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 4294, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 85880, - Discounts: 772.8, - Sales: 85107.2, - COGS: 38640, - Profit: 46467.2, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 2856, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 19992, - Discounts: 25.34, - Sales: 19966.66, - COGS: 1810, - Profit: 18156.66, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 1407, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 175875, - Discounts: 1153.75, - Sales: 174721.25, - COGS: 110760, - Profit: 63961.25, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 1265, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 8855, - Discounts: 18.41, - Sales: 8836.59, - COGS: 1315, - Profit: 7521.59, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 3892, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1362200, - Discounts: 3302.25, - Sales: 1358897.75, - COGS: 245310, - Profit: 1113587.75, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 3068, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 383500, - Discounts: 908.75, - Sales: 382591.25, - COGS: 87240, - Profit: 295351.25, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 2181, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 272625, - Discounts: 983.75, - Sales: 271641.25, - COGS: 94440, - Profit: 177201.25, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 1356, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 406800, - Discounts: 2958, - Sales: 403842, - COGS: 246500, - Profit: 177201.25, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 1814, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 634900, - Discounts: 4889.5, - Sales: 630010.5, - COGS: 363220, - Profit: 266790.5, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 1495, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 186875, - Discounts: 2180, - Sales: 184695, - COGS: 209280, - Profit: 24585, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 1463, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 182875, - Discounts: 1856.25, - Sales: 181018.75, - COGS: 89100, - Profit: 91918.75, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 215, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 2580, - Discounts: 310.8, - Sales: 2269.2, - COGS: 3885, - Profit: 1615.8, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 566, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 198100, - Discounts: 19964, - Sales: 178136, - COGS: 741520, - Profit: 563384, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 3255, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 39060, - Discounts: 274.08, - Sales: 38785.92, - COGS: 3426, - Profit: 35359.92, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 772, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 15440, - Discounts: 626.4, - Sales: 14813.6, - COGS: 15660, - Profit: 846.4, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 1135, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 13620, - Discounts: 165.6, - Sales: 13454.4, - COGS: 2070, - Profit: 11384.4, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 1193, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 17895, - Discounts: 708.9, - Sales: 17186.1, - COGS: 23630, - Profit: 6443.9, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 2530, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 759000, - Discounts: 5508, - Sales: 753492, - COGS: 229500, - Profit: 523992, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 3451, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1035300, - Discounts: 10368, - Sales: 1024932, - COGS: 432000, - Profit: 592932, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3059, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 36708, - Discounts: 274.08, - Sales: 36433.92, - COGS: 3426, - Profit: 33007.92, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 3957, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 494625, - Discounts: 1655, - Sales: 492970, - COGS: 79440, - Profit: 413530, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 3444, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 41328, - Discounts: 310.8, - Sales: 41017.2, - COGS: 3885, - Profit: 37132.2, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 3154, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 946200, - Discounts: 11496, - Sales: 934704, - COGS: 479000, - Profit: 455704, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 4108, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1437800, - Discounts: 19964, - Sales: 1417836, - COGS: 741520, - Profit: 676316, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 3760, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 470000, - Discounts: 6822.5, - Sales: 463177.5, - COGS: 327480, - Profit: 135697.5, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 2334, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 28008, - Discounts: 253.2, - Sales: 27754.8, - COGS: 3165, - Profit: 24589.8, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 580, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 6960, - Discounts: 260.16, - Sales: 6699.84, - COGS: 3252, - Profit: 3447.84, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 2610, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 52200, - Discounts: 626.4, - Sales: 51573.6, - COGS: 15660, - Profit: 35913.6, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 1459, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 510650, - Discounts: 20139, - Sales: 490511, - COGS: 748020, - Profit: 257509, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 3774, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 45288, - Discounts: 253.2, - Sales: 45034.8, - COGS: 3165, - Profit: 41869.8, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 2572, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 30864, - Discounts: 260.16, - Sales: 30603.84, - COGS: 3252, - Profit: 27351.84, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 320, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 40000, - Discounts: 1655, - Sales: 38345, - COGS: 79440, - Profit: 41095, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 3275, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1146250, - Discounts: 20139, - Sales: 1126111, - COGS: 748020, - Profit: 378091, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 3582, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 447750, - Discounts: 6822.5, - Sales: 440927.5, - COGS: 327480, - Profit: 113447.5, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 4056, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1216800, - Discounts: 1554, - Sales: 1215246, - COGS: 64750, - Profit: 1150496, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 2144, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 643200, - Discounts: 6606, - Sales: 636594, - COGS: 275250, - Profit: 361344, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 3502, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 437750, - Discounts: 5690, - Sales: 432060, - COGS: 273120, - Profit: 158940, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 679, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 13580, - Discounts: 494.4, - Sales: 13085.6, - COGS: 12360, - Profit: 725.6, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 2351, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 47020, - Discounts: 376.4, - Sales: 46643.6, - COGS: 9410, - Profit: 37233.6, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 2043, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 612900, - Discounts: 11496, - Sales: 601404, - COGS: 479000, - Profit: 122404, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 3565, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 445625, - Discounts: 15913.13, - Sales: 429711.88, - COGS: 509220, - Profit: 79508.13, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 1401, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 28020, - Discounts: 1548, - Sales: 26472, - COGS: 25800, - Profit: 672, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 2077, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 623100, - Discounts: 6201, - Sales: 616899, - COGS: 172250, - Profit: 444649, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 3643, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 43716, - Discounts: 700.92, - Sales: 43015.08, - COGS: 5841, - Profit: 37174.08, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 2960, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 20720, - Discounts: 411.18, - Sales: 20308.82, - COGS: 9790, - Profit: 10518.82, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 1201, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 14412, - Discounts: 684.36, - Sales: 13727.64, - COGS: 5703, - Profit: 8024.64, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 2321, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 16247, - Discounts: 114.24, - Sales: 16132.76, - COGS: 2720, - Profit: 13412.76, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 3972, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 496500, - Discounts: 4826.25, - Sales: 491673.75, - COGS: 154440, - Profit: 337233.75, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 3878, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 484750, - Discounts: 6397.5, - Sales: 478352.5, - COGS: 204720, - Profit: 273632.5, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 2278, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 683400, - Discounts: 21910.5, - Sales: 661489.5, - COGS: 608625, - Profit: 52864.5, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 1075, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 134375, - Discounts: 6652.5, - Sales: 127722.5, - COGS: 212880, - Profit: 85157.5, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 4050, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 48600, - Discounts: 684.36, - Sales: 47915.64, - COGS: 5703, - Profit: 42212.64, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 3035, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 910500, - Discounts: 6201, - Sales: 904299, - COGS: 172250, - Profit: 732049, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 3636, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 454500, - Discounts: 5887.5, - Sales: 448612.5, - COGS: 188400, - Profit: 260212.5, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 1379, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 16548, - Discounts: 493.02, - Sales: 16054.98, - COGS: 4108.5, - Profit: 11946.48, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 4492, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 561500, - Discounts: 7533.75, - Sales: 553966.25, - COGS: 241080, - Profit: 312886.25, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1744, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 218000, - Discounts: 4826.25, - Sales: 213173.75, - COGS: 154440, - Profit: 58733.75, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2341, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 292625, - Discounts: 6397.5, - Sales: 286227.5, - COGS: 204720, - Profit: 81507.5, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 3835, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 479375, - Discounts: 7533.75, - Sales: 471841.25, - COGS: 241080, - Profit: 230761.25, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 1161, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 348300, - Discounts: 25596, - Sales: 322704, - COGS: 711000, - Profit: 388296, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 876, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 10512, - Discounts: 689.76, - Sales: 9822.24, - COGS: 5748, - Profit: 4074.24, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 1705, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 213125, - Discounts: 5887.5, - Sales: 207237.5, - COGS: 188400, - Profit: 18837.5, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 1805, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 541500, - Discounts: 16866, - Sales: 524634, - COGS: 468500, - Profit: 56134, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 389, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 136150, - Discounts: 17241, - Sales: 118909, - COGS: 426920, - Profit: 308011, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 1459, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 29180, - Discounts: 498.6, - Sales: 28681.4, - COGS: 8310, - Profit: 20371.4, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 4236, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 84720, - Discounts: 2310.3, - Sales: 82409.7, - COGS: 38505, - Profit: 43904.7, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 3627, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 43524, - Discounts: 892.44, - Sales: 42631.56, - COGS: 7437, - Profit: 35194.56, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 1756, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 26340, - Discounts: 1218.6, - Sales: 25121.4, - COGS: 20310, - Profit: 4811.4, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 307, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 4605, - Discounts: 1218.6, - Sales: 3386.4, - COGS: 20310, - Profit: 16923.6, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 1222, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 366600, - Discounts: 24252, - Sales: 342348, - COGS: 505250, - Profit: 162902, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 489, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 171150, - Discounts: 3836, - Sales: 167314, - COGS: 71240, - Profit: 96074, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 4133, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 61995, - Discounts: 1180.2, - Sales: 60814.8, - COGS: 19670, - Profit: 41144.8, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 2743, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 822900, - Discounts: 22308, - Sales: 800592, - COGS: 464750, - Profit: 335842, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 4460, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1338000, - Discounts: 24252, - Sales: 1313748, - COGS: 505250, - Profit: 808498, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 1232, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 154000, - Discounts: 5690, - Sales: 148310, - COGS: 136560, - Profit: 11750, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2586, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 18102, - Discounts: 1190.28, - Sales: 16911.72, - COGS: 21255, - Profit: 4343.28, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 1332, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 166500, - Discounts: 3975, - Sales: 162525, - COGS: 95400, - Profit: 67125, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 4487, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1346100, - Discounts: 16974, - Sales: 1329126, - COGS: 353625, - Profit: 975501, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3862, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1158600, - Discounts: 35016, - Sales: 1123584, - COGS: 729500, - Profit: 394084, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 1765, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 617750, - Discounts: 48300, - Sales: 569450, - COGS: 897000, - Profit: 327550, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 3533, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 441625, - Discounts: 14940, - Sales: 426685, - COGS: 358560, - Profit: 68125, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2016, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 30240, - Discounts: 130.8, - Sales: 30109.2, - COGS: 2180, - Profit: 27929.2, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2938, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 58760, - Discounts: 1659.2, - Sales: 57100.8, - COGS: 20740, - Profit: 36360.8, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3352, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 67040, - Discounts: 844.8, - Sales: 66195.2, - COGS: 10560, - Profit: 55635.2, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 2430, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 850500, - Discounts: 3836, - Sales: 846664, - COGS: 71240, - Profit: 775424, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 535, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 66875, - Discounts: 5690, - Sales: 61185, - COGS: 136560, - Profit: 75375, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 1523, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 18276, - Discounts: 703.2, - Sales: 17572.8, - COGS: 4395, - Profit: 13177.8, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 1782, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 623700, - Discounts: 30478, - Sales: 593222, - COGS: 566020, - Profit: 27202, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 347, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 4164, - Discounts: 415.68, - Sales: 3748.32, - COGS: 2598, - Profit: 1150.32, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 3509, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1228150, - Discounts: 30478, - Sales: 1197672, - COGS: 566020, - Profit: 631652, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 2943, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1030050, - Discounts: 26110, - Sales: 1003940, - COGS: 484900, - Profit: 519040, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 4037, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 504625, - Discounts: 5370, - Sales: 499255, - COGS: 128880, - Profit: 370375, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 4146, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1451100, - Discounts: 26698, - Sales: 1424402, - COGS: 495820, - Profit: 928582, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 725, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 5075, - Discounts: 480.2, - Sales: 4594.8, - COGS: 6860, - Profit: 2265.2, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2325, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 16275, - Discounts: 941.15, - Sales: 15333.85, - COGS: 13445, - Profit: 1888.85, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 675, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 8100, - Discounts: 1458.6, - Sales: 6641.4, - COGS: 7293, - Profit: 651.6, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 2990, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 35880, - Discounts: 1458.6, - Sales: 34421.4, - COGS: 7293, - Profit: 27128.4, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 1072, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 7504, - Discounts: 941.15, - Sales: 6562.85, - COGS: 13445, - Profit: 6882.15, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 1048, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 7336, - Discounts: 589.05, - Sales: 6746.95, - COGS: 8415, - Profit: 1668.05, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 469, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 5628, - Discounts: 673.8, - Sales: 4954.2, - COGS: 3369, - Profit: 1585.2, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 4240, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 50880, - Discounts: 1119, - Sales: 49761, - COGS: 5595, - Profit: 44166, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 1976, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 23712, - Discounts: 669.6, - Sales: 23042.4, - COGS: 3348, - Profit: 19694.4, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 1984, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 39680, - Discounts: 1563, - Sales: 38117, - COGS: 15630, - Profit: 22487, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 480, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 144000, - Discounts: 14865, - Sales: 129135, - COGS: 247750, - Profit: 118615, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 1205, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 18075, - Discounts: 2093.25, - Sales: 15981.75, - COGS: 27910, - Profit: 11928.25, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 2480, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 17360, - Discounts: 199.5, - Sales: 17160.5, - COGS: 2850, - Profit: 14310.5, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 2926, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 20482, - Discounts: 870.45, - Sales: 19611.55, - COGS: 12435, - Profit: 7176.55, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 3210, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1123500, - Discounts: 24228.75, - Sales: 1099271.25, - COGS: 359970, - Profit: 739301.25, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 3221, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 402625, - Discounts: 22668.75, - Sales: 379956.25, - COGS: 435240, - Profit: 55283.75, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 1127, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 13524, - Discounts: 1405.2, - Sales: 12118.8, - COGS: 7026, - Profit: 5092.8, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1610, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 32200, - Discounts: 1303, - Sales: 30897, - COGS: 13030, - Profit: 17867, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 4100, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 512500, - Discounts: 18700, - Sales: 493800, - COGS: 359040, - Profit: 134760, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1012, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 126500, - Discounts: 14906.25, - Sales: 111593.75, - COGS: 286200, - Profit: 174606.25, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 3337, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1001100, - Discounts: 24105, - Sales: 976995, - COGS: 401750, - Profit: 575245, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3955, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 27685, - Discounts: 814.45, - Sales: 26870.55, - COGS: 11635, - Profit: 15235.55, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 4347, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1304100, - Discounts: 14865, - Sales: 1289235, - COGS: 247750, - Profit: 1041485, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 1548, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 541800, - Discounts: 10535, - Sales: 531265, - COGS: 156520, - Profit: 374745, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 2153, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 32295, - Discounts: 1965, - Sales: 30330, - COGS: 26200, - Profit: 4130, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 4126, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 515750, - Discounts: 5381.25, - Sales: 510368.75, - COGS: 103320, - Profit: 407048.75, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3376, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 67520, - Discounts: 2663, - Sales: 64857, - COGS: 26630, - Profit: 38227, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 2244, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 33660, - Discounts: 416.25, - Sales: 33243.75, - COGS: 5550, - Profit: 27693.75, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 1360, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 20400, - Discounts: 2145.75, - Sales: 18254.25, - COGS: 28610, - Profit: 10355.75, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 279, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 34875, - Discounts: 5043.75, - Sales: 29831.25, - COGS: 96840, - Profit: 67008.75, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 2521, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 882350, - Discounts: 10535, - Sales: 871815, - COGS: 156520, - Profit: 715295, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 2433, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 48660, - Discounts: 2832, - Sales: 45828, - COGS: 28320, - Profit: 17508, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 1738, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 34760, - Discounts: 1579, - Sales: 33181, - COGS: 15790, - Profit: 17391, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 1106, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 138250, - Discounts: 5381.25, - Sales: 132868.75, - COGS: 103320, - Profit: 29548.75, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 213, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 63900, - Discounts: 18750, - Sales: 45150, - COGS: 312500, - Profit: 267350, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 2929, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 58580, - Discounts: 2663, - Sales: 55917, - COGS: 26630, - Profit: 29287, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 2389, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 16723, - Discounts: 199.5, - Sales: 16523.5, - COGS: 2850, - Profit: 13673.5, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 3086, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 21602, - Discounts: 870.45, - Sales: 20731.55, - COGS: 12435, - Profit: 8296.55, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 745, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 260750, - Discounts: 23625, - Sales: 237125, - COGS: 351000, - Profit: 113875, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 1266, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 443100, - Discounts: 9660, - Sales: 433440, - COGS: 143520, - Profit: 289920, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 4287, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1286100, - Discounts: 18750, - Sales: 1267350, - COGS: 312500, - Profit: 954850, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 3193, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 47895, - Discounts: 3420.9, - Sales: 44474.1, - COGS: 38010, - Profit: 6464.1, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 1967, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 39340, - Discounts: 1341, - Sales: 37999, - COGS: 11175, - Profit: 26824, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 631, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 9465, - Discounts: 2559.6, - Sales: 6905.4, - COGS: 28440, - Profit: 21534.6, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 3469, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 41628, - Discounts: 404.64, - Sales: 41223.36, - COGS: 1686, - Profit: 39537.36, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 3215, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 48225, - Discounts: 1827, - Sales: 46398, - COGS: 20300, - Profit: 26098, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 1959, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 685650, - Discounts: 20580, - Sales: 665070, - COGS: 254800, - Profit: 410270, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 2181, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 763350, - Discounts: 30660, - Sales: 732690, - COGS: 379600, - Profit: 353090, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 2205, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 26460, - Discounts: 1960.56, - Sales: 24499.44, - COGS: 8169, - Profit: 16330.44, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1890, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 661500, - Discounts: 31416, - Sales: 630084, - COGS: 388960, - Profit: 241124, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 2417, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 302125, - Discounts: 7140, - Sales: 294985, - COGS: 114240, - Profit: 180745, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 1158, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 144750, - Discounts: 20662.5, - Sales: 124087.5, - COGS: 330600, - Profit: 206512.5, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 803, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 12045, - Discounts: 1377, - Sales: 10668, - COGS: 15300, - Profit: 4632, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 3705, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1296750, - Discounts: 31416, - Sales: 1265334, - COGS: 388960, - Profit: 876374, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 589, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 4123, - Discounts: 629.16, - Sales: 3493.84, - COGS: 7490, - Profit: 3996.16, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 3999, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 59985, - Discounts: 2559.6, - Sales: 57425.4, - COGS: 28440, - Profit: 28985.4, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 4256, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 29792, - Discounts: 629.16, - Sales: 29162.84, - COGS: 7490, - Profit: 21672.84, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 2160, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 270000, - Discounts: 14906.25, - Sales: 255093.75, - COGS: 238500, - Profit: 16593.75, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 466, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 163100, - Discounts: 35259, - Sales: 127841, - COGS: 436540, - Profit: 308699, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 1478, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 22170, - Discounts: 1978.2, - Sales: 20191.8, - COGS: 21980, - Profit: 1788.2, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 3798, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 56970, - Discounts: 1568.7, - Sales: 55401.3, - COGS: 17430, - Profit: 37971.3, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 447, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 6705, - Discounts: 1037.7, - Sales: 5667.3, - COGS: 11530, - Profit: 5862.7, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 745, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 14900, - Discounts: 1201.2, - Sales: 13698.8, - COGS: 10010, - Profit: 3688.8, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 1732, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 12124, - Discounts: 559.86, - Sales: 11564.14, - COGS: 6665, - Profit: 4899.14, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 1759, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 26385, - Discounts: 1037.7, - Sales: 25347.3, - COGS: 11530, - Profit: 13817.3, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 338, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 4056, - Discounts: 610.68, - Sales: 3445.32, - COGS: 2181, - Profit: 1264.32, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 3911, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 46932, - Discounts: 1582.56, - Sales: 45349.44, - COGS: 5652, - Profit: 39697.44, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 4473, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 53676, - Discounts: 1965.6, - Sales: 51710.4, - COGS: 7020, - Profit: 44690.4, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 383, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 4596, - Discounts: 1967.28, - Sales: 2628.72, - COGS: 7026, - Profit: 4397.28, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 1062, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 15930, - Discounts: 1325.1, - Sales: 14604.9, - COGS: 12620, - Profit: 1984.9, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 4083, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 28581, - Discounts: 556.15, - Sales: 28024.85, - COGS: 5675, - Profit: 22349.85, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 3974, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 27818, - Discounts: 268.03, - Sales: 27549.97, - COGS: 2735, - Profit: 24814.97, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 3723, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 26061, - Discounts: 775.18, - Sales: 25285.82, - COGS: 7910, - Profit: 17375.82, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 2435, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 29220, - Discounts: 1460.34, - Sales: 27759.66, - COGS: 5215.5, - Profit: 22544.16, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 1763, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 12341, - Discounts: 775.18, - Sales: 11565.82, - COGS: 7910, - Profit: 3655.82, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 4473, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 31311, - Discounts: 556.15, - Sales: 30754.85, - COGS: 5675, - Profit: 25079.85, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 1246, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 436100, - Discounts: 43144.5, - Sales: 392955.5, - COGS: 457860, - Profit: 64904.5, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 1615, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 484500, - Discounts: 9408, - Sales: 475092, - COGS: 112000, - Profit: 363092, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 749, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 224700, - Discounts: 45801, - Sales: 178899, - COGS: 545250, - Profit: 366351, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 1318, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 26360, - Discounts: 2766.4, - Sales: 23593.6, - COGS: 19760, - Profit: 3833.6, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 2882, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 864600, - Discounts: 45801, - Sales: 818799, - COGS: 545250, - Profit: 273549, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2484, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 745200, - Discounts: 35742, - Sales: 709458, - COGS: 425500, - Profit: 283958, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 3169, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 950700, - Discounts: 9408, - Sales: 941292, - COGS: 112000, - Profit: 829292, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 4080, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 510000, - Discounts: 30738.75, - Sales: 479261.25, - COGS: 421560, - Profit: 57701.25, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 3943, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 59145, - Discounts: 2206.05, - Sales: 56938.95, - COGS: 21010, - Profit: 35928.95, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 253, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 5060, - Discounts: 2149, - Sales: 2911, - COGS: 15350, - Profit: 12439, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 799, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 239700, - Discounts: 34839, - Sales: 204861, - COGS: 414750, - Profit: 209889, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 3942, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 78840, - Discounts: 852.6, - Sales: 77987.4, - COGS: 6090, - Profit: 71897.4, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 2498, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 312250, - Discounts: 18261.25, - Sales: 293988.75, - COGS: 250440, - Profit: 43548.75, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 2517, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 50340, - Discounts: 2766.4, - Sales: 47573.6, - COGS: 19760, - Profit: 27813.6, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 1145, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 343500, - Discounts: 28812, - Sales: 314688, - COGS: 343000, - Profit: 28312, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 3814, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 45768, - Discounts: 2725.38, - Sales: 43042.62, - COGS: 9733.5, - Profit: 33309.12, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 1188, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 356400, - Discounts: 20139, - Sales: 336261, - COGS: 239750, - Profit: 96511, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 2233, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 669900, - Discounts: 57687, - Sales: 612213, - COGS: 686750, - Profit: 74537, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 421, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 52625, - Discounts: 14393.75, - Sales: 38231.25, - COGS: 197400, - Profit: 159168.75, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 269, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 94150, - Discounts: 70462, - Sales: 23688, - COGS: 747760, - Profit: 724072, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 952, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 19040, - Discounts: 1565.2, - Sales: 17474.8, - COGS: 11180, - Profit: 6294.8, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 2964, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 889200, - Discounts: 28812, - Sales: 860388, - COGS: 343000, - Profit: 517388, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 1505, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 10535, - Discounts: 273.28, - Sales: 10261.72, - COGS: 2440, - Profit: 7821.72, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 1678, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 33560, - Discounts: 2051.2, - Sales: 31508.8, - COGS: 12820, - Profit: 18688.8, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 4249, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 29743, - Discounts: 143.92, - Sales: 29599.08, - COGS: 1285, - Profit: 28314.08, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 1677, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 33540, - Discounts: 2051.2, - Sales: 31488.8, - COGS: 12820, - Profit: 18668.8, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 3051, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 381375, - Discounts: 15400, - Sales: 365975, - COGS: 184800, - Profit: 181175, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 3372, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 50580, - Discounts: 588, - Sales: 49992, - COGS: 4900, - Profit: 45092, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 1686, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 590100, - Discounts: 38136, - Sales: 551964, - COGS: 354120, - Profit: 197844, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 3086, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 46290, - Discounts: 3001.2, - Sales: 43288.8, - COGS: 25010, - Profit: 18278.8, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 4150, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 83000, - Discounts: 1132.8, - Sales: 81867.2, - COGS: 7080, - Profit: 74787.2, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 3027, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 60540, - Discounts: 1032, - Sales: 59508, - COGS: 6450, - Profit: 53058, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 4359, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1307700, - Discounts: 37488, - Sales: 1270212, - COGS: 390500, - Profit: 879712, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 1589, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 23835, - Discounts: 853.2, - Sales: 22981.8, - COGS: 7110, - Profit: 15871.8, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2679, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 334875, - Discounts: 11140, - Sales: 323735, - COGS: 133680, - Profit: 190055, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 3401, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 23807, - Discounts: 705.04, - Sales: 23101.96, - COGS: 6295, - Profit: 16806.96, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2815, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 19705, - Discounts: 613.2, - Sales: 19091.8, - COGS: 5475, - Profit: 13616.8, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2964, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 59280, - Discounts: 2185.6, - Sales: 57094.4, - COGS: 13660, - Profit: 43434.4, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 4173, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1251900, - Discounts: 59040, - Sales: 1192860, - COGS: 615000, - Profit: 577860, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 1157, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 8099, - Discounts: 379.68, - Sales: 7719.32, - COGS: 3390, - Profit: 4329.32, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 3065, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 21455, - Discounts: 894.88, - Sales: 20560.12, - COGS: 7990, - Profit: 12570.12, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 4080, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 81600, - Discounts: 3094.4, - Sales: 78505.6, - COGS: 19340, - Profit: 59165.6, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 1713, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34260, - Discounts: 4788.8, - Sales: 29471.2, - COGS: 29930, - Profit: 458.8, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 1691, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 591850, - Discounts: 38136, - Sales: 553714, - COGS: 354120, - Profit: 199594, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 2305, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 27660, - Discounts: 574.08, - Sales: 27085.92, - COGS: 1794, - Profit: 25291.92, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 3401, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 23807, - Discounts: 1627.92, - Sales: 22179.08, - COGS: 14535, - Profit: 7644.08, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 2288, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 16016, - Discounts: 1309.28, - Sales: 14706.72, - COGS: 11690, - Profit: 3016.72, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 4086, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1225800, - Discounts: 15240, - Sales: 1210560, - COGS: 158750, - Profit: 1051810, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 2651, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 927850, - Discounts: 16086, - Sales: 911764, - COGS: 149370, - Profit: 762394, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 3971, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 27797, - Discounts: 1309.28, - Sales: 26487.72, - COGS: 11690, - Profit: 14797.72, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 2512, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 879200, - Discounts: 10668, - Sales: 868532, - COGS: 99060, - Profit: 769472, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 2745, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 960750, - Discounts: 11816, - Sales: 948934, - COGS: 109720, - Profit: 839214, - Date: `8/1/20`, - Month: `August`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 1903, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 570900, - Discounts: 51216, - Sales: 519684, - COGS: 533500, - Profit: 13816, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 2914, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 58280, - Discounts: 1132.8, - Sales: 57147.2, - COGS: 7080, - Profit: 50067.2, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 1889, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 13223, - Discounts: 1627.92, - Sales: 11595.08, - COGS: 14535, - Profit: 2939.92, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 1466, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 29320, - Discounts: 2185.6, - Sales: 27134.4, - COGS: 13660, - Profit: 13474.4, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 887, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 266100, - Discounts: 59040, - Sales: 207060, - COGS: 615000, - Profit: 407940, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 395, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 7900, - Discounts: 2432, - Sales: 5468, - COGS: 15200, - Profit: 9732, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 1693, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 25395, - Discounts: 853.2, - Sales: 24541.8, - COGS: 7110, - Profit: 17431.8, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 2649, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 794700, - Discounts: 15240, - Sales: 779460, - COGS: 158750, - Profit: 620710, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 3608, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 72160, - Discounts: 698.4, - Sales: 71461.6, - COGS: 4365, - Profit: 67096.6, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 1073, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 321900, - Discounts: 29538, - Sales: 292362, - COGS: 273500, - Profit: 18862, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 2167, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 650100, - Discounts: 102667.5, - Sales: 547432.5, - COGS: 950625, - Profit: 403192.5, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 1319, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 461650, - Discounts: 52479, - Sales: 409171, - COGS: 433160, - Profit: 23989, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 1252, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 15024, - Discounts: 2506.68, - Sales: 12517.32, - COGS: 6963, - Profit: 5554.32, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 1156, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 144500, - Discounts: 31466.25, - Sales: 113033.75, - COGS: 335640, - Profit: 222606.25, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 1153, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 345900, - Discounts: 69255, - Sales: 276645, - COGS: 641250, - Profit: 364605, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2720, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 952000, - Discounts: 76135.5, - Sales: 875864.5, - COGS: 628420, - Profit: 247444.5, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3658, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 54870, - Discounts: 4961.25, - Sales: 49908.75, - COGS: 36750, - Profit: 13158.75, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2950, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 885000, - Discounts: 29538, - Sales: 855462, - COGS: 273500, - Profit: 581962, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1821, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 27315, - Discounts: 1656.45, - Sales: 25658.55, - COGS: 12270, - Profit: 13388.55, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1127, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 338100, - Discounts: 35748, - Sales: 302352, - COGS: 331000, - Profit: 28648, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 862, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 107750, - Discounts: 31466.25, - Sales: 76283.75, - COGS: 335640, - Profit: 259356.25, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 3805, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 57075, - Discounts: 330.75, - Sales: 56744.25, - COGS: 2450, - Profit: 54294.25, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 1415, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 424500, - Discounts: 102424.5, - Sales: 322075.5, - COGS: 948375, - Profit: 626299.5, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 2231, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 780850, - Discounts: 41170.5, - Sales: 739679.5, - COGS: 339820, - Profit: 399859.5, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 3649, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 456125, - Discounts: 6378.75, - Sales: 449746.25, - COGS: 68040, - Profit: 381706.25, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 2948, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 368500, - Discounts: 23737.5, - Sales: 344762.5, - COGS: 253200, - Profit: 91562.5, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 3395, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1188250, - Discounts: 39973.5, - Sales: 1148276.5, - COGS: 329940, - Profit: 818336.5, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 2650, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 31800, - Discounts: 2112.48, - Sales: 29687.52, - COGS: 5868, - Profit: 23819.52, - Date: `1/1/20`, - Month: `January`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 585, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 175500, - Discounts: 71793, - Sales: 103707, - COGS: 664750, - Profit: 561043, - Date: `2/1/20`, - Month: `February`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 1316, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 460600, - Discounts: 42572.25, - Sales: 418027.75, - COGS: 351390, - Profit: 66637.75, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 4459, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 53508, - Discounts: 950.4, - Sales: 52557.6, - COGS: 2640, - Profit: 49917.6, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 2711, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 813300, - Discounts: 50409, - Sales: 762891, - COGS: 466750, - Profit: 296141, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 3613, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 54195, - Discounts: 1656.45, - Sales: 52538.55, - COGS: 12270, - Profit: 40268.55, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 1847, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 230875, - Discounts: 9866.25, - Sales: 221008.75, - COGS: 105240, - Profit: 115768.75, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 2996, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1048600, - Discounts: 65236.5, - Sales: 983363.5, - COGS: 538460, - Profit: 444903.5, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 2838, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 993300, - Discounts: 39973.5, - Sales: 953326.5, - COGS: 329940, - Profit: 623386.5, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 1536, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 30720, - Discounts: 3049.2, - Sales: 27670.8, - COGS: 16940, - Profit: 10730.8, - Date: `11/1/20`, - Month: `November`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 1291, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 25820, - Discounts: 1193.4, - Sales: 24626.6, - COGS: 6630, - Profit: 17996.6, - Date: `5/1/20`, - Month: `May`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 1213, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 8491, - Discounts: 515.97, - Sales: 7975.03, - COGS: 4095, - Profit: 3880.03, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 2370, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 28440, - Discounts: 1706.4, - Sales: 26733.6, - COGS: 4740, - Profit: 21993.6, - Date: `9/1/20`, - Month: `September`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 1979, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 13853, - Discounts: 328.23, - Sales: 13524.77, - COGS: 2605, - Profit: 10919.77, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 2879, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 57580, - Discounts: 1751.4, - Sales: 55828.6, - COGS: 9730, - Profit: 46098.6, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 1707, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34140, - Discounts: 1868.4, - Sales: 32271.6, - COGS: 10380, - Profit: 21891.6, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2933, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 20531, - Discounts: 226.8, - Sales: 20304.2, - COGS: 1800, - Profit: 18504.2, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 1014, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 12168, - Discounts: 2124.36, - Sales: 10043.64, - COGS: 5901, - Profit: 4142.64, - Date: `3/1/20`, - Month: `March`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 693, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 10395, - Discounts: 3547.8, - Sales: 6847.2, - COGS: 26280, - Profit: 19432.8, - Date: `4/1/20`, - Month: `April`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 3741, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 26187, - Discounts: 226.8, - Sales: 25960.2, - COGS: 1800, - Profit: 24160.2, - Date: `10/1/20`, - Month: `October`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 3995, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 27965, - Discounts: 328.23, - Sales: 27636.77, - COGS: 2605, - Profit: 25031.77, - Date: `12/1/20`, - Month: `December`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 953, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 19060, - Discounts: 1868.4, - Sales: 17191.6, - COGS: 10380, - Profit: 6811.6, - Date: `6/1/20`, - Month: `June`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 2530, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 37950, - Discounts: 2201.18, - Sales: 35748.82, - COGS: 16305, - Profit: 19443.82, - Date: `7/1/20`, - Month: `July`, - Year: `2020` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 1372, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 27440, - Discounts: 0, - Sales: 27440, - COGS: 16185, - Profit: 11255, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 2762, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 55240, - Discounts: 0, - Sales: 55240, - COGS: 13210, - Profit: 42030, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 1464, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 21960, - Discounts: 0, - Sales: 21960, - COGS: 21780, - Profit: 180, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 719, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 10785, - Discounts: 0, - Sales: 10785, - COGS: 8880, - Profit: 1905, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 3576, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 53640, - Discounts: 0, - Sales: 53640, - COGS: 24700, - Profit: 28940, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 4422, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1547700, - Discounts: 0, - Sales: 1547700, - COGS: 393380, - Profit: 1154320, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 3649, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 54735, - Discounts: 0, - Sales: 54735, - COGS: 9210, - Profit: 45525, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 4172, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 50064, - Discounts: 0, - Sales: 50064, - COGS: 7554, - Profit: 42510, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 3841, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 76820, - Discounts: 0, - Sales: 76820, - COGS: 18990, - Profit: 57830, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 3726, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 44712, - Discounts: 0, - Sales: 44712, - COGS: 4635, - Profit: 40077, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 2625, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 39375, - Discounts: 0, - Sales: 39375, - COGS: 24700, - Profit: 14675, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 1958, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 244750, - Discounts: 0, - Sales: 244750, - COGS: 319860, - Profit: 75110, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 3271, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 981300, - Discounts: 0, - Sales: 981300, - COGS: 239500, - Profit: 741800, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 2091, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 14637, - Discounts: 0, - Sales: 14637, - COGS: 10730, - Profit: 3907, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 2530, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 316250, - Discounts: 0, - Sales: 316250, - COGS: 41400, - Profit: 274850, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 2825, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 42375, - Discounts: 0, - Sales: 42375, - COGS: 6150, - Profit: 36225, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2513, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 50260, - Discounts: 0, - Sales: 50260, - COGS: 2920, - Profit: 47340, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 883, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 13245, - Discounts: 0, - Sales: 13245, - COGS: 9740, - Profit: 3505, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2087, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 25044, - Discounts: 0, - Sales: 25044, - COGS: 7554, - Profit: 17490, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2563, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 897050, - Discounts: 0, - Sales: 897050, - COGS: 261560, - Profit: 635490, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2846, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 34152, - Discounts: 0, - Sales: 34152, - COGS: 1101, - Profit: 33051, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 997, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 6979, - Discounts: 0, - Sales: 6979, - COGS: 4415, - Profit: 2564, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 3421, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 51315, - Discounts: 0, - Sales: 51315, - COGS: 5490, - Profit: 45825, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Marchesa`, - UnitsSold: 70000, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 1050000, - Discounts: 0, - Sales: 1050000, - COGS: 5490, - Profit: 1044510, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2291, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 687300, - Discounts: 0, - Sales: 687300, - COGS: 197000, - Profit: 490300, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2290, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 34350, - Discounts: 0, - Sales: 34350, - COGS: 24720, - Profit: 9630, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 2133, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 14931, - Discounts: 0, - Sales: 14931, - COGS: 5715, - Profit: 9216, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 3475, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1216250, - Discounts: 0, - Sales: 1216250, - COGS: 448500, - Profit: 767750, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3686, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 44232, - Discounts: 0, - Sales: 44232, - COGS: 2736, - Profit: 41496, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 3319, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 49785, - Discounts: 0, - Sales: 49785, - COGS: 21520, - Profit: 28265, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 3617, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 72340, - Discounts: 0, - Sales: 72340, - COGS: 18170, - Profit: 54170, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 1266, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 443100, - Discounts: 0, - Sales: 443100, - COGS: 393380, - Profit: 49720, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 894, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 6258, - Discounts: 0, - Sales: 6258, - COGS: 7465, - Profit: 1207, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 2725, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 340625, - Discounts: 0, - Sales: 340625, - COGS: 216480, - Profit: 124145, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 3061, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 36732, - Discounts: 0, - Sales: 36732, - COGS: 6483, - Profit: 30249, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 3958, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1385300, - Discounts: 0, - Sales: 1385300, - COGS: 261560, - Profit: 1123740, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 3920, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 47040, - Discounts: 0, - Sales: 47040, - COGS: 4635, - Profit: 42405, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 3381, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 422625, - Discounts: 0, - Sales: 422625, - COGS: 338520, - Profit: 84105, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 1094, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 136750, - Discounts: 0, - Sales: 136750, - COGS: 41400, - Profit: 95350, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 4307, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 1292100, - Discounts: 0, - Sales: 1292100, - COGS: 500250, - Profit: 791850, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 878, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 10536, - Discounts: 0, - Sales: 10536, - COGS: 8514, - Profit: 2022, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 496, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 7440, - Discounts: 0, - Sales: 7440, - COGS: 21780, - Profit: 14340, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 3367, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 50505, - Discounts: 0, - Sales: 50505, - COGS: 8880, - Profit: 41625, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 3880, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1358000, - Discounts: 0, - Sales: 1358000, - COGS: 397020, - Profit: 960980, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 2055, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 616500, - Discounts: 0, - Sales: 616500, - COGS: 537750, - Profit: 78750, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 4041, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 80820, - Discounts: 0, - Sales: 80820, - COGS: 18170, - Profit: 62650, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 3237, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1132950, - Discounts: 0, - Sales: 1132950, - COGS: 715000, - Profit: 417950, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 630, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 7560, - Discounts: 0, - Sales: 7560, - COGS: 5859, - Profit: 1701, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 4210, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 526250, - Discounts: 0, - Sales: 526250, - COGS: 506340, - Profit: 19910, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 1127, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 22540, - Discounts: 0, - Sales: 22540, - COGS: 18990, - Profit: 3550, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 3438, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 24066, - Discounts: 0, - Sales: 24066, - COGS: 8430, - Profit: 15636, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 2015, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 24180, - Discounts: 0, - Sales: 24180, - COGS: 6423, - Profit: 17757, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 2534, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 17738, - Discounts: 0, - Sales: 17738, - COGS: 5715, - Profit: 12023, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 1384, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 20760, - Discounts: 0, - Sales: 20760, - COGS: 6150, - Profit: 14610, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 3561, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 24927, - Discounts: 276.15, - Sales: 24650.85, - COGS: 19725, - Profit: 4925.85, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1823, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 27345, - Discounts: 344.4, - Sales: 27000.6, - COGS: 22960, - Profit: 4040.6, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 2795, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 19565, - Discounts: 72.1, - Sales: 19492.9, - COGS: 5150, - Profit: 14342.9, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 457, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 3199, - Discounts: 44.73, - Sales: 3154.27, - COGS: 3195, - Profit: 40.73, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 3785, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 26495, - Discounts: 92.82, - Sales: 26402.18, - COGS: 6630, - Profit: 19772.18, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 748, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 8976, - Discounts: 222.96, - Sales: 8753.04, - COGS: 5574, - Profit: 3179.04, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 1021, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 357350, - Discounts: 4235, - Sales: 353115, - COGS: 314600, - Profit: 38515, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 2076, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 14532, - Discounts: 177.03, - Sales: 14354.97, - COGS: 12645, - Profit: 1709.97, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 4316, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 51792, - Discounts: 173.4, - Sales: 51618.6, - COGS: 4335, - Profit: 47283.6, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 2654, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 331750, - Discounts: 412.5, - Sales: 331337.5, - COGS: 39600, - Profit: 291737.5, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 4174, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 50088, - Discounts: 320.52, - Sales: 49767.48, - COGS: 8013, - Profit: 41754.48, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 1675, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 20100, - Discounts: 91.92, - Sales: 20008.08, - COGS: 2298, - Profit: 17710.08, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 1572, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 471600, - Discounts: 1482, - Sales: 470118, - COGS: 123500, - Profit: 346618, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 3736, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1307600, - Discounts: 4889.5, - Sales: 1302710.5, - COGS: 363220, - Profit: 939490.5, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 1914, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 669900, - Discounts: 7542.5, - Sales: 662357.5, - COGS: 560300, - Profit: 102057.5, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 2742, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 41130, - Discounts: 332.1, - Sales: 40797.9, - COGS: 22140, - Profit: 18657.9, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 1499, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 449700, - Discounts: 6903, - Sales: 442797, - COGS: 575250, - Profit: 132453, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 3772, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 75440, - Discounts: 275.1, - Sales: 75164.9, - COGS: 13755, - Profit: 61409.9, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 1112, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 7784, - Discounts: 128.1, - Sales: 7655.9, - COGS: 9150, - Profit: 1494.1, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 1723, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 516900, - Discounts: 7494, - Sales: 509406, - COGS: 624500, - Profit: 115094, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 423, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 52875, - Discounts: 828.75, - Sales: 52046.25, - COGS: 79560, - Profit: 27513.75, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 2368, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 35520, - Discounts: 227.1, - Sales: 35292.9, - COGS: 15140, - Profit: 20152.9, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 1586, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 11102, - Discounts: 314.48, - Sales: 10787.52, - COGS: 22462.5, - Profit: 11674.98, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3386, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 423250, - Discounts: 908.75, - Sales: 422341.25, - COGS: 87240, - Profit: 335101.25, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 852, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 106500, - Discounts: 983.75, - Sales: 105516.25, - COGS: 94440, - Profit: 11076.25, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2783, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 347875, - Discounts: 2278.75, - Sales: 345596.25, - COGS: 218760, - Profit: 126836.25, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2684, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 40260, - Discounts: 112.05, - Sales: 40147.95, - COGS: 7470, - Profit: 32677.95, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 4393, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 52716, - Discounts: 91.92, - Sales: 52624.08, - COGS: 2298, - Profit: 50326.08, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 4083, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1224900, - Discounts: 8715, - Sales: 1216185, - COGS: 726250, - Profit: 489935, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 2816, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 985600, - Discounts: 7542.5, - Sales: 978057.5, - COGS: 560300, - Profit: 417757.5, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 4294, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 85880, - Discounts: 772.8, - Sales: 85107.2, - COGS: 38640, - Profit: 46467.2, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 2856, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 19992, - Discounts: 25.34, - Sales: 19966.66, - COGS: 1810, - Profit: 18156.66, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 1407, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 175875, - Discounts: 1153.75, - Sales: 174721.25, - COGS: 110760, - Profit: 63961.25, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 3850, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 481250, - Discounts: 828.75, - Sales: 480421.25, - COGS: 79560, - Profit: 400861.25, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 2856, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 19992, - Discounts: 146.44, - Sales: 19845.56, - COGS: 10460, - Profit: 9385.56, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 1265, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 8855, - Discounts: 18.41, - Sales: 8836.59, - COGS: 1315, - Profit: 7521.59, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 3892, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1362200, - Discounts: 3302.25, - Sales: 1358897.75, - COGS: 245310, - Profit: 1113587.75, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 3068, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 383500, - Discounts: 908.75, - Sales: 382591.25, - COGS: 87240, - Profit: 295351.25, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 2181, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 272625, - Discounts: 983.75, - Sales: 271641.25, - COGS: 94440, - Profit: 177201.25, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 1356, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 406800, - Discounts: 2958, - Sales: 403842, - COGS: 246500, - Profit: 157342, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 2545, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 763500, - Discounts: 1482, - Sales: 762018, - COGS: 123500, - Profit: 638518, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 1814, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 634900, - Discounts: 4889.5, - Sales: 630010.5, - COGS: 363220, - Profit: 266790.5, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 1495, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 186875, - Discounts: 2180, - Sales: 184695, - COGS: 209280, - Profit: 24585, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 1154, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 13848, - Discounts: 238.68, - Sales: 13609.32, - COGS: 5967, - Profit: 7642.32, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 4180, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 62700, - Discounts: 48.15, - Sales: 62651.85, - COGS: 3210, - Profit: 59441.85, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 1463, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 182875, - Discounts: 1856.25, - Sales: 181018.75, - COGS: 89100, - Profit: 91918.75, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 215, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 2580, - Discounts: 310.8, - Sales: 2269.2, - COGS: 3885, - Profit: 1615.8, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 4099, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 1229700, - Discounts: 1284, - Sales: 1228416, - COGS: 53500, - Profit: 1174916, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 2660, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 18620, - Discounts: 300.3, - Sales: 18319.7, - COGS: 10725, - Profit: 7594.7, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 566, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 198100, - Discounts: 19964, - Sales: 178136, - COGS: 741520, - Profit: 563384, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 3255, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 39060, - Discounts: 274.08, - Sales: 38785.92, - COGS: 3426, - Profit: 35359.92, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 772, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 15440, - Discounts: 626.4, - Sales: 14813.6, - COGS: 15660, - Profit: 846.4, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 1135, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 13620, - Discounts: 165.6, - Sales: 13454.4, - COGS: 2070, - Profit: 11384.4, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 3826, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 478250, - Discounts: 4150, - Sales: 474100, - COGS: 199200, - Profit: 274900, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 1193, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 17895, - Discounts: 708.9, - Sales: 17186.1, - COGS: 23630, - Profit: 6443.9, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 2530, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 759000, - Discounts: 5508, - Sales: 753492, - COGS: 229500, - Profit: 523992, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 3451, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1035300, - Discounts: 10368, - Sales: 1024932, - COGS: 432000, - Profit: 592932, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3059, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 36708, - Discounts: 274.08, - Sales: 36433.92, - COGS: 3426, - Profit: 33007.92, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 3957, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 494625, - Discounts: 1655, - Sales: 492970, - COGS: 79440, - Profit: 413530, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 3444, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 41328, - Discounts: 310.8, - Sales: 41017.2, - COGS: 3885, - Profit: 37132.2, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 4388, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 548500, - Discounts: 2022.5, - Sales: 546477.5, - COGS: 97080, - Profit: 449397.5, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2106, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 263250, - Discounts: 5362.5, - Sales: 257887.5, - COGS: 257400, - Profit: 487.5, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 799, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 9588, - Discounts: 428.4, - Sales: 9159.6, - COGS: 5355, - Profit: 3804.6, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 3154, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 946200, - Discounts: 11496, - Sales: 934704, - COGS: 479000, - Profit: 455704, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 4108, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1437800, - Discounts: 19964, - Sales: 1417836, - COGS: 741520, - Profit: 676316, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 3760, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 470000, - Discounts: 6822.5, - Sales: 463177.5, - COGS: 327480, - Profit: 135697.5, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 377, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 5655, - Discounts: 577.5, - Sales: 5077.5, - COGS: 19250, - Profit: 14172.5, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 2110, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 14770, - Discounts: 281.82, - Sales: 14488.18, - COGS: 10065, - Profit: 4423.18, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 2334, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 28008, - Discounts: 253.2, - Sales: 27754.8, - COGS: 3165, - Profit: 24589.8, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 580, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 6960, - Discounts: 260.16, - Sales: 6699.84, - COGS: 3252, - Profit: 3447.84, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 2610, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 52200, - Discounts: 626.4, - Sales: 51573.6, - COGS: 15660, - Profit: 35913.6, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 1598, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 559300, - Discounts: 20762, - Sales: 538538, - COGS: 771160, - Profit: 232622, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 1459, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 510650, - Discounts: 20139, - Sales: 490511, - COGS: 748020, - Profit: 257509, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 3284, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 410500, - Discounts: 2022.5, - Sales: 408477.5, - COGS: 97080, - Profit: 311397.5, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 1197, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 149625, - Discounts: 5362.5, - Sales: 144262.5, - COGS: 257400, - Profit: 113137.5, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 3774, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 45288, - Discounts: 253.2, - Sales: 45034.8, - COGS: 3165, - Profit: 41869.8, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 2303, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 46060, - Discounts: 217.6, - Sales: 45842.4, - COGS: 5440, - Profit: 40402.4, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 2572, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 30864, - Discounts: 260.16, - Sales: 30603.84, - COGS: 3252, - Profit: 27351.84, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 320, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 40000, - Discounts: 1655, - Sales: 38345, - COGS: 79440, - Profit: 41095, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 2126, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 637800, - Discounts: 1284, - Sales: 636516, - COGS: 53500, - Profit: 583016, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 3275, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1146250, - Discounts: 20139, - Sales: 1126111, - COGS: 748020, - Profit: 378091, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 3582, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 447750, - Discounts: 6822.5, - Sales: 440927.5, - COGS: 327480, - Profit: 113447.5, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 783, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 274050, - Discounts: 1862, - Sales: 272188, - COGS: 69160, - Profit: 203028, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 1202, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 420700, - Discounts: 13580, - Sales: 407120, - COGS: 504400, - Profit: 97280, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 4056, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1216800, - Discounts: 1554, - Sales: 1215246, - COGS: 64750, - Profit: 1150496, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 2144, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 643200, - Discounts: 6606, - Sales: 636594, - COGS: 275250, - Profit: 361344, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 3502, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 437750, - Discounts: 5690, - Sales: 432060, - COGS: 273120, - Profit: 158940, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 1397, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 488950, - Discounts: 20762, - Sales: 468188, - COGS: 771160, - Profit: 302972, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 679, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 13580, - Discounts: 494.4, - Sales: 13085.6, - COGS: 12360, - Profit: 725.6, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 2351, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 47020, - Discounts: 376.4, - Sales: 46643.6, - COGS: 9410, - Profit: 37233.6, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 2043, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 612900, - Discounts: 11496, - Sales: 601404, - COGS: 479000, - Profit: 122404, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 3565, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 445625, - Discounts: 15913.13, - Sales: 429711.88, - COGS: 509220, - Profit: 79508.13, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 1401, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 28020, - Discounts: 1548, - Sales: 26472, - COGS: 25800, - Profit: 672, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 2077, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 623100, - Discounts: 6201, - Sales: 616899, - COGS: 172250, - Profit: 444649, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 3643, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 43716, - Discounts: 700.92, - Sales: 43015.08, - COGS: 5841, - Profit: 37174.08, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 1105, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 13260, - Discounts: 326.88, - Sales: 12933.12, - COGS: 2724, - Profit: 10209.12, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 2960, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 20720, - Discounts: 411.18, - Sales: 20308.82, - COGS: 9790, - Profit: 10518.82, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 1201, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 14412, - Discounts: 684.36, - Sales: 13727.64, - COGS: 5703, - Profit: 8024.64, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 2321, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 16247, - Discounts: 114.24, - Sales: 16132.76, - COGS: 2720, - Profit: 13412.76, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 3640, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1274000, - Discounts: 18868.5, - Sales: 1255131.5, - COGS: 467220, - Profit: 787911.5, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 3972, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 496500, - Discounts: 4826.25, - Sales: 491673.75, - COGS: 154440, - Profit: 337233.75, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 3878, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 484750, - Discounts: 6397.5, - Sales: 478352.5, - COGS: 204720, - Profit: 273632.5, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 2278, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 683400, - Discounts: 21910.5, - Sales: 661489.5, - COGS: 608625, - Profit: 52864.5, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 1075, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 134375, - Discounts: 6652.5, - Sales: 127722.5, - COGS: 212880, - Profit: 85157.5, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 4050, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 48600, - Discounts: 684.36, - Sales: 47915.64, - COGS: 5703, - Profit: 42212.64, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 3035, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 910500, - Discounts: 6201, - Sales: 904299, - COGS: 172250, - Profit: 732049, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 3636, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 454500, - Discounts: 5887.5, - Sales: 448612.5, - COGS: 188400, - Profit: 260212.5, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 1379, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 16548, - Discounts: 493.02, - Sales: 16054.98, - COGS: 4108.5, - Profit: 11946.48, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 4492, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 561500, - Discounts: 7533.75, - Sales: 553966.25, - COGS: 241080, - Profit: 312886.25, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 764, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 11460, - Discounts: 875.25, - Sales: 10584.75, - COGS: 19450, - Profit: 8865.25, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1744, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 218000, - Discounts: 4826.25, - Sales: 213173.75, - COGS: 154440, - Profit: 58733.75, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2341, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 292625, - Discounts: 6397.5, - Sales: 286227.5, - COGS: 204720, - Profit: 81507.5, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 3835, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 479375, - Discounts: 7533.75, - Sales: 471841.25, - COGS: 241080, - Profit: 230761.25, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 1161, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 348300, - Discounts: 25596, - Sales: 322704, - COGS: 711000, - Profit: 388296, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 876, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 10512, - Discounts: 689.76, - Sales: 9822.24, - COGS: 5748, - Profit: 4074.24, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 1705, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 213125, - Discounts: 5887.5, - Sales: 207237.5, - COGS: 188400, - Profit: 18837.5, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 1805, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 541500, - Discounts: 16866, - Sales: 524634, - COGS: 468500, - Profit: 56134, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 389, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 136150, - Discounts: 17241, - Sales: 118909, - COGS: 426920, - Profit: 308011, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 2745, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 41175, - Discounts: 875.25, - Sales: 40299.75, - COGS: 19450, - Profit: 20849.75, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 1459, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 29180, - Discounts: 498.6, - Sales: 28681.4, - COGS: 8310, - Profit: 20371.4, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 3938, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 27566, - Discounts: 369.6, - Sales: 27196.4, - COGS: 8800, - Profit: 18396.4, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 4236, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 84720, - Discounts: 2310.3, - Sales: 82409.7, - COGS: 38505, - Profit: 43904.7, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 3627, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 43524, - Discounts: 892.44, - Sales: 42631.56, - COGS: 7437, - Profit: 35194.56, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 1756, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 26340, - Discounts: 1218.6, - Sales: 25121.4, - COGS: 20310, - Profit: 4811.4, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 307, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 4605, - Discounts: 1218.6, - Sales: 3386.4, - COGS: 20310, - Profit: 16923.6, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 4489, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 67335, - Discounts: 1356.6, - Sales: 65978.4, - COGS: 22610, - Profit: 43368.4, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 2167, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 43340, - Discounts: 588.8, - Sales: 42751.2, - COGS: 7360, - Profit: 35391.2, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 1137, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 7959, - Discounts: 798.28, - Sales: 7160.72, - COGS: 14255, - Profit: 7094.28, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 1222, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 366600, - Discounts: 24252, - Sales: 342348, - COGS: 505250, - Profit: 162902, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 489, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 171150, - Discounts: 3836, - Sales: 167314, - COGS: 71240, - Profit: 96074, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 4133, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 61995, - Discounts: 1180.2, - Sales: 60814.8, - COGS: 19670, - Profit: 41144.8, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 2743, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 822900, - Discounts: 22308, - Sales: 800592, - COGS: 464750, - Profit: 335842, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 3699, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 25893, - Discounts: 798.28, - Sales: 25094.72, - COGS: 14255, - Profit: 10839.72, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 4460, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1338000, - Discounts: 24252, - Sales: 1313748, - COGS: 505250, - Profit: 808498, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 1232, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 154000, - Discounts: 5690, - Sales: 148310, - COGS: 136560, - Profit: 11750, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2586, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 18102, - Discounts: 1190.28, - Sales: 16911.72, - COGS: 21255, - Profit: 4343.28, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 1332, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 166500, - Discounts: 3975, - Sales: 162525, - COGS: 95400, - Profit: 67125, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 4487, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1346100, - Discounts: 16974, - Sales: 1329126, - COGS: 353625, - Profit: 975501, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3862, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1158600, - Discounts: 35016, - Sales: 1123584, - COGS: 729500, - Profit: 394084, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 1765, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 617750, - Discounts: 48300, - Sales: 569450, - COGS: 897000, - Profit: 327550, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 3533, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 441625, - Discounts: 14940, - Sales: 426685, - COGS: 358560, - Profit: 68125, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2016, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 30240, - Discounts: 130.8, - Sales: 30109.2, - COGS: 2180, - Profit: 27929.2, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2938, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 58760, - Discounts: 1659.2, - Sales: 57100.8, - COGS: 20740, - Profit: 36360.8, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3352, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 67040, - Discounts: 844.8, - Sales: 66195.2, - COGS: 10560, - Profit: 55635.2, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 4409, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 66135, - Discounts: 402.6, - Sales: 65732.4, - COGS: 6710, - Profit: 59022.4, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 3323, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 49845, - Discounts: 908.4, - Sales: 48936.6, - COGS: 15140, - Profit: 33796.6, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 2430, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 850500, - Discounts: 3836, - Sales: 846664, - COGS: 71240, - Profit: 775424, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 535, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 66875, - Discounts: 5690, - Sales: 61185, - COGS: 136560, - Profit: 75375, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 1523, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 18276, - Discounts: 703.2, - Sales: 17572.8, - COGS: 4395, - Profit: 13177.8, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 3631, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 72620, - Discounts: 2116.8, - Sales: 70503.2, - COGS: 26460, - Profit: 44043.2, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 1782, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 623700, - Discounts: 30478, - Sales: 593222, - COGS: 566020, - Profit: 27202, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 347, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 4164, - Discounts: 415.68, - Sales: 3748.32, - COGS: 2598, - Profit: 1150.32, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 4147, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1451450, - Discounts: 4886, - Sales: 1446564, - COGS: 90740, - Profit: 1355824, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 3509, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 1228150, - Discounts: 30478, - Sales: 1197672, - COGS: 566020, - Profit: 631652, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 2774, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 41610, - Discounts: 908.4, - Sales: 40701.6, - COGS: 15140, - Profit: 25561.6, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 2943, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1030050, - Discounts: 26110, - Sales: 1003940, - COGS: 484900, - Profit: 519040, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 4037, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 504625, - Discounts: 5370, - Sales: 499255, - COGS: 128880, - Profit: 370375, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 4146, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1451100, - Discounts: 26698, - Sales: 1424402, - COGS: 495820, - Profit: 928582, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 4123, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 61845, - Discounts: 402.6, - Sales: 61442.4, - COGS: 6710, - Profit: 54732.4, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 1337, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 467950, - Discounts: 24892, - Sales: 443058, - COGS: 462280, - Profit: 19222, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 599, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 4193, - Discounts: 405.65, - Sales: 3787.35, - COGS: 5795, - Profit: 2007.65, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 725, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 5075, - Discounts: 480.2, - Sales: 4594.8, - COGS: 6860, - Profit: 2265.2, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 477, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 3339, - Discounts: 822.15, - Sales: 2516.85, - COGS: 11745, - Profit: 9228.15, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2325, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 16275, - Discounts: 941.15, - Sales: 15333.85, - COGS: 13445, - Profit: 1888.85, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 675, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 8100, - Discounts: 1458.6, - Sales: 6641.4, - COGS: 7293, - Profit: 651.6, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 2990, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 35880, - Discounts: 1458.6, - Sales: 34421.4, - COGS: 7293, - Profit: 27128.4, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 1072, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 7504, - Discounts: 941.15, - Sales: 6562.85, - COGS: 13445, - Profit: 6882.15, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 1048, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 7336, - Discounts: 589.05, - Sales: 6746.95, - COGS: 8415, - Profit: 1668.05, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 469, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 5628, - Discounts: 673.8, - Sales: 4954.2, - COGS: 3369, - Profit: 1585.2, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 804, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 5628, - Discounts: 405.65, - Sales: 5222.35, - COGS: 5795, - Profit: 572.65, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 4240, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 50880, - Discounts: 1119, - Sales: 49761, - COGS: 5595, - Profit: 44166, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 1976, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 23712, - Discounts: 669.6, - Sales: 23042.4, - COGS: 3348, - Profit: 19694.4, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 1984, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 39680, - Discounts: 1563, - Sales: 38117, - COGS: 15630, - Profit: 22487, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 480, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 144000, - Discounts: 14865, - Sales: 129135, - COGS: 247750, - Profit: 118615, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 3551, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 24857, - Discounts: 355.6, - Sales: 24501.4, - COGS: 5080, - Profit: 19421.4, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 1205, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 18075, - Discounts: 2093.25, - Sales: 15981.75, - COGS: 27910, - Profit: 11928.25, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 2480, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 17360, - Discounts: 199.5, - Sales: 17160.5, - COGS: 2850, - Profit: 14310.5, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 2926, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 20482, - Discounts: 870.45, - Sales: 19611.55, - COGS: 12435, - Profit: 7176.55, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 3210, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1123500, - Discounts: 24228.75, - Sales: 1099271.25, - COGS: 359970, - Profit: 739301.25, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 3221, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 402625, - Discounts: 22668.75, - Sales: 379956.25, - COGS: 435240, - Profit: 55283.75, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 2389, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 836150, - Discounts: 12600, - Sales: 823550, - COGS: 187200, - Profit: 636350, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 1127, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 13524, - Discounts: 1405.2, - Sales: 12118.8, - COGS: 7026, - Profit: 5092.8, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 319, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 95700, - Discounts: 16500, - Sales: 79200, - COGS: 275000, - Profit: 195800, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1610, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 32200, - Discounts: 1303, - Sales: 30897, - COGS: 13030, - Profit: 17867, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 4100, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 512500, - Discounts: 18700, - Sales: 493800, - COGS: 359040, - Profit: 134760, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1012, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 126500, - Discounts: 14906.25, - Sales: 111593.75, - COGS: 286200, - Profit: 174606.25, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 3337, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1001100, - Discounts: 24105, - Sales: 976995, - COGS: 401750, - Profit: 575245, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3955, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 27685, - Discounts: 814.45, - Sales: 26870.55, - COGS: 11635, - Profit: 15235.55, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 4347, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1304100, - Discounts: 14865, - Sales: 1289235, - COGS: 247750, - Profit: 1041485, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 1548, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 541800, - Discounts: 10535, - Sales: 531265, - COGS: 156520, - Profit: 374745, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 2153, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 32295, - Discounts: 1965, - Sales: 30330, - COGS: 26200, - Profit: 4130, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 3789, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1326150, - Discounts: 21490, - Sales: 1304660, - COGS: 319280, - Profit: 985380, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 4364, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 87280, - Discounts: 1389, - Sales: 85891, - COGS: 13890, - Profit: 72001, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 4126, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 515750, - Discounts: 5381.25, - Sales: 510368.75, - COGS: 103320, - Profit: 407048.75, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1343, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 167875, - Discounts: 4400, - Sales: 163475, - COGS: 84480, - Profit: 78995, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 245, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 4900, - Discounts: 1802, - Sales: 3098, - COGS: 18020, - Profit: 14922, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3376, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 67520, - Discounts: 2663, - Sales: 64857, - COGS: 26630, - Profit: 38227, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1401, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 9807, - Discounts: 747.6, - Sales: 9059.4, - COGS: 10680, - Profit: 1620.6, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 3483, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 52245, - Discounts: 1587, - Sales: 50658, - COGS: 21160, - Profit: 29498, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 2244, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 33660, - Discounts: 416.25, - Sales: 33243.75, - COGS: 5550, - Profit: 27693.75, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 1360, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 20400, - Discounts: 2145.75, - Sales: 18254.25, - COGS: 28610, - Profit: 10355.75, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 279, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 34875, - Discounts: 5043.75, - Sales: 29831.25, - COGS: 96840, - Profit: 67008.75, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 2521, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 882350, - Discounts: 10535, - Sales: 871815, - COGS: 156520, - Profit: 715295, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 2433, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 48660, - Discounts: 2832, - Sales: 45828, - COGS: 28320, - Profit: 17508, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 1738, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 34760, - Discounts: 1579, - Sales: 33181, - COGS: 15790, - Profit: 17391, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 1106, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 138250, - Discounts: 5381.25, - Sales: 132868.75, - COGS: 103320, - Profit: 29548.75, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 3379, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 422375, - Discounts: 4400, - Sales: 417975, - COGS: 84480, - Profit: 333495, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 1221, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 24420, - Discounts: 1033, - Sales: 23387, - COGS: 10330, - Profit: 13057, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 213, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 63900, - Discounts: 18750, - Sales: 45150, - COGS: 312500, - Profit: 267350, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 3335, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 66700, - Discounts: 1389, - Sales: 65311, - COGS: 13890, - Profit: 51421, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 1260, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 25200, - Discounts: 1265, - Sales: 23935, - COGS: 12650, - Profit: 11285, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 3034, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 60680, - Discounts: 2297, - Sales: 58383, - COGS: 22970, - Profit: 35413, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 2929, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 58580, - Discounts: 2663, - Sales: 55917, - COGS: 26630, - Profit: 29287, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 2389, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 16723, - Discounts: 199.5, - Sales: 16523.5, - COGS: 2850, - Profit: 13673.5, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 3086, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 21602, - Discounts: 870.45, - Sales: 20731.55, - COGS: 12435, - Profit: 8296.55, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 745, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 260750, - Discounts: 23625, - Sales: 237125, - COGS: 351000, - Profit: 113875, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 1266, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 443100, - Discounts: 9660, - Sales: 433440, - COGS: 143520, - Profit: 289920, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 3790, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1326500, - Discounts: 21490, - Sales: 1305010, - COGS: 319280, - Profit: 985730, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 4287, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1286100, - Discounts: 18750, - Sales: 1267350, - COGS: 312500, - Profit: 954850, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 3193, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 47895, - Discounts: 3420.9, - Sales: 44474.1, - COGS: 38010, - Profit: 6464.1, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 1967, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 39340, - Discounts: 1341, - Sales: 37999, - COGS: 11175, - Profit: 26824, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 631, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 9465, - Discounts: 2559.6, - Sales: 6905.4, - COGS: 28440, - Profit: 21534.6, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 3469, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 41628, - Discounts: 404.64, - Sales: 41223.36, - COGS: 1686, - Profit: 39537.36, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 570, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 6840, - Discounts: 1655.28, - Sales: 5184.72, - COGS: 6897, - Profit: 1712.28, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 3215, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 48225, - Discounts: 1827, - Sales: 46398, - COGS: 20300, - Profit: 26098, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 3754, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 26278, - Discounts: 110.46, - Sales: 26167.54, - COGS: 1315, - Profit: 24852.54, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 2187, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 273375, - Discounts: 6652.5, - Sales: 266722.5, - COGS: 106440, - Profit: 160282.5, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 1959, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 685650, - Discounts: 20580, - Sales: 665070, - COGS: 254800, - Profit: 410270, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 2181, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 763350, - Discounts: 30660, - Sales: 732690, - COGS: 379600, - Profit: 353090, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 3559, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 24913, - Discounts: 589.26, - Sales: 24323.74, - COGS: 7015, - Profit: 17308.74, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 2205, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 26460, - Discounts: 1960.56, - Sales: 24499.44, - COGS: 8169, - Profit: 16330.44, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1890, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 661500, - Discounts: 31416, - Sales: 630084, - COGS: 388960, - Profit: 241124, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 1296, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 15552, - Discounts: 1655.28, - Sales: 13896.72, - COGS: 6897, - Profit: 6999.72, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 775, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 271250, - Discounts: 15267, - Sales: 255983, - COGS: 189020, - Profit: 66963, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 2417, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 302125, - Discounts: 7140, - Sales: 294985, - COGS: 114240, - Profit: 180745, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 1158, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 144750, - Discounts: 20662.5, - Sales: 124087.5, - COGS: 330600, - Profit: 206512.5, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 803, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 12045, - Discounts: 1377, - Sales: 10668, - COGS: 15300, - Profit: 4632, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 3705, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1296750, - Discounts: 31416, - Sales: 1265334, - COGS: 388960, - Profit: 876374, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 589, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 4123, - Discounts: 629.16, - Sales: 3493.84, - COGS: 7490, - Profit: 3996.16, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 3797, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1139100, - Discounts: 21978, - Sales: 1117122, - COGS: 305250, - Profit: 811872, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 1321, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 462350, - Discounts: 43596, - Sales: 418754, - COGS: 539760, - Profit: 121006, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 3999, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 59985, - Discounts: 2559.6, - Sales: 57425.4, - COGS: 28440, - Profit: 28985.4, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 4256, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 29792, - Discounts: 629.16, - Sales: 29162.84, - COGS: 7490, - Profit: 21672.84, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 1643, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 492900, - Discounts: 21978, - Sales: 470922, - COGS: 305250, - Profit: 165672, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 1912, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 38240, - Discounts: 1347.6, - Sales: 36892.4, - COGS: 11230, - Profit: 25662.4, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 1610, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 483000, - Discounts: 43848, - Sales: 439152, - COGS: 609000, - Profit: 169848, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 2160, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 270000, - Discounts: 14906.25, - Sales: 255093.75, - COGS: 238500, - Profit: 16593.75, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 466, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 163100, - Discounts: 35259, - Sales: 127841, - COGS: 436540, - Profit: 308699, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 328, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 114800, - Discounts: 15267, - Sales: 99533, - COGS: 189020, - Profit: 89487, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 4099, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 28693, - Discounts: 589.26, - Sales: 28103.74, - COGS: 7015, - Profit: 21088.74, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 990, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 346500, - Discounts: 43596, - Sales: 302904, - COGS: 539760, - Profit: 236856, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 1433, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 28660, - Discounts: 2108.4, - Sales: 26551.6, - COGS: 17570, - Profit: 8981.6, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 1478, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 22170, - Discounts: 1978.2, - Sales: 20191.8, - COGS: 21980, - Profit: 1788.2, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 3798, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 56970, - Discounts: 1568.7, - Sales: 55401.3, - COGS: 17430, - Profit: 37971.3, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 447, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 6705, - Discounts: 1037.7, - Sales: 5667.3, - COGS: 11530, - Profit: 5862.7, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1711, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34220, - Discounts: 2108.4, - Sales: 32111.6, - COGS: 17570, - Profit: 14541.6, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 745, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 14900, - Discounts: 1201.2, - Sales: 13698.8, - COGS: 10010, - Profit: 3688.8, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 1732, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 12124, - Discounts: 559.86, - Sales: 11564.14, - COGS: 6665, - Profit: 4899.14, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 1759, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 26385, - Discounts: 1037.7, - Sales: 25347.3, - COGS: 11530, - Profit: 13817.3, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 338, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 4056, - Discounts: 610.68, - Sales: 3445.32, - COGS: 2181, - Profit: 1264.32, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 3911, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 46932, - Discounts: 1582.56, - Sales: 45349.44, - COGS: 5652, - Profit: 39697.44, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 3691, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 73820, - Discounts: 2567.6, - Sales: 71252.4, - COGS: 18340, - Profit: 52912.4, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 4473, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 53676, - Discounts: 1965.6, - Sales: 51710.4, - COGS: 7020, - Profit: 44690.4, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 383, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 4596, - Discounts: 1967.28, - Sales: 2628.72, - COGS: 7026, - Profit: 4397.28, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 3105, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 21735, - Discounts: 505.19, - Sales: 21229.81, - COGS: 5155, - Profit: 16074.81, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 1062, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 15930, - Discounts: 1325.1, - Sales: 14604.9, - COGS: 12620, - Profit: 1984.9, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 4083, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 28581, - Discounts: 556.15, - Sales: 28024.85, - COGS: 5675, - Profit: 22349.85, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 3974, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 27818, - Discounts: 268.03, - Sales: 27549.97, - COGS: 2735, - Profit: 24814.97, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 3723, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 26061, - Discounts: 775.18, - Sales: 25285.82, - COGS: 7910, - Profit: 17375.82, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 2435, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 29220, - Discounts: 1460.34, - Sales: 27759.66, - COGS: 5215.5, - Profit: 22544.16, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 1678, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 20136, - Discounts: 1860.6, - Sales: 18275.4, - COGS: 6645, - Profit: 11630.4, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 1763, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 12341, - Discounts: 775.18, - Sales: 11565.82, - COGS: 7910, - Profit: 3655.82, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 4473, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 31311, - Discounts: 556.15, - Sales: 30754.85, - COGS: 5675, - Profit: 25079.85, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 1246, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 436100, - Discounts: 43144.5, - Sales: 392955.5, - COGS: 457860, - Profit: 64904.5, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 1615, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 484500, - Discounts: 9408, - Sales: 475092, - COGS: 112000, - Profit: 363092, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 749, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 224700, - Discounts: 45801, - Sales: 178899, - COGS: 545250, - Profit: 366351, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 1318, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 26360, - Discounts: 2766.4, - Sales: 23593.6, - COGS: 19760, - Profit: 3833.6, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 2882, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 864600, - Discounts: 45801, - Sales: 818799, - COGS: 545250, - Profit: 273549, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 3039, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 379875, - Discounts: 21875, - Sales: 358000, - COGS: 300000, - Profit: 58000, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2484, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 745200, - Discounts: 35742, - Sales: 709458, - COGS: 425500, - Profit: 283958, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 3169, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 950700, - Discounts: 9408, - Sales: 941292, - COGS: 112000, - Profit: 829292, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 4080, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 510000, - Discounts: 30738.75, - Sales: 479261.25, - COGS: 421560, - Profit: 57701.25, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 3943, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 59145, - Discounts: 2206.05, - Sales: 56938.95, - COGS: 21010, - Profit: 35928.95, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 784, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 11760, - Discounts: 3077.55, - Sales: 8682.45, - COGS: 29310, - Profit: 20627.55, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 253, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 5060, - Discounts: 2149, - Sales: 2911, - COGS: 15350, - Profit: 12439, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 1316, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 394800, - Discounts: 23583, - Sales: 371217, - COGS: 280750, - Profit: 90467, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 808, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 242400, - Discounts: 29484, - Sales: 212916, - COGS: 351000, - Profit: 138084, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 3295, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 39540, - Discounts: 2320.92, - Sales: 37219.08, - COGS: 8289, - Profit: 28930.08, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 520, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 3640, - Discounts: 1041.25, - Sales: 2598.75, - COGS: 10625, - Profit: 8026.25, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 799, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 239700, - Discounts: 34839, - Sales: 204861, - COGS: 414750, - Profit: 209889, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 3942, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 78840, - Discounts: 852.6, - Sales: 77987.4, - COGS: 6090, - Profit: 71897.4, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 2498, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 312250, - Discounts: 18261.25, - Sales: 293988.75, - COGS: 250440, - Profit: 43548.75, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 2517, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 50340, - Discounts: 2766.4, - Sales: 47573.6, - COGS: 19760, - Profit: 27813.6, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 3182, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 63640, - Discounts: 1989.4, - Sales: 61650.6, - COGS: 14210, - Profit: 47440.6, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 1145, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 343500, - Discounts: 28812, - Sales: 314688, - COGS: 343000, - Profit: 28312, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 895, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 17900, - Discounts: 823.2, - Sales: 17076.8, - COGS: 5880, - Profit: 11196.8, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 3814, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 45768, - Discounts: 2725.38, - Sales: 43042.62, - COGS: 9733.5, - Profit: 33309.12, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 1188, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 356400, - Discounts: 20139, - Sales: 336261, - COGS: 239750, - Profit: 96511, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 2233, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 669900, - Discounts: 57687, - Sales: 612213, - COGS: 686750, - Profit: 74537, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 421, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 52625, - Discounts: 14393.75, - Sales: 38231.25, - COGS: 197400, - Profit: 159168.75, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 269, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 94150, - Discounts: 70462, - Sales: 23688, - COGS: 747760, - Profit: 724072, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 3766, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 470750, - Discounts: 8697.5, - Sales: 462052.5, - COGS: 119280, - Profit: 342772.5, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 952, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 19040, - Discounts: 1565.2, - Sales: 17474.8, - COGS: 11180, - Profit: 6294.8, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 2964, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 889200, - Discounts: 28812, - Sales: 860388, - COGS: 343000, - Profit: 517388, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 1505, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 10535, - Discounts: 273.28, - Sales: 10261.72, - COGS: 2440, - Profit: 7821.72, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 1678, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 33560, - Discounts: 2051.2, - Sales: 31508.8, - COGS: 12820, - Profit: 18688.8, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 4249, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 29743, - Discounts: 143.92, - Sales: 29599.08, - COGS: 1285, - Profit: 28314.08, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 1677, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 33540, - Discounts: 2051.2, - Sales: 31488.8, - COGS: 12820, - Profit: 18668.8, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 3051, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 381375, - Discounts: 15400, - Sales: 365975, - COGS: 184800, - Profit: 181175, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 3372, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 50580, - Discounts: 588, - Sales: 49992, - COGS: 4900, - Profit: 45092, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 1686, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 590100, - Discounts: 38136, - Sales: 551964, - COGS: 354120, - Profit: 197844, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 3086, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 46290, - Discounts: 3001.2, - Sales: 43288.8, - COGS: 25010, - Profit: 18278.8, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 4150, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 83000, - Discounts: 1132.8, - Sales: 81867.2, - COGS: 7080, - Profit: 74787.2, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 3027, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 60540, - Discounts: 1032, - Sales: 59508, - COGS: 6450, - Profit: 53058, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 4359, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1307700, - Discounts: 37488, - Sales: 1270212, - COGS: 390500, - Profit: 879712, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 3628, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1088400, - Discounts: 30792, - Sales: 1057608, - COGS: 320750, - Profit: 736858, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 1589, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 23835, - Discounts: 853.2, - Sales: 22981.8, - COGS: 7110, - Profit: 15871.8, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2679, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 334875, - Discounts: 11140, - Sales: 323735, - COGS: 133680, - Profit: 190055, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 3401, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 23807, - Discounts: 705.04, - Sales: 23101.96, - COGS: 6295, - Profit: 16806.96, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2815, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 19705, - Discounts: 613.2, - Sales: 19091.8, - COGS: 5475, - Profit: 13616.8, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2964, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 59280, - Discounts: 2185.6, - Sales: 57094.4, - COGS: 13660, - Profit: 43434.4, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 4173, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1251900, - Discounts: 59040, - Sales: 1192860, - COGS: 615000, - Profit: 577860, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 1157, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 8099, - Discounts: 379.68, - Sales: 7719.32, - COGS: 3390, - Profit: 4329.32, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 3065, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 21455, - Discounts: 894.88, - Sales: 20560.12, - COGS: 7990, - Profit: 12570.12, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 1962, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 13734, - Discounts: 1349.04, - Sales: 12384.96, - COGS: 12045, - Profit: 339.96, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 4080, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 81600, - Discounts: 3094.4, - Sales: 78505.6, - COGS: 19340, - Profit: 59165.6, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 1713, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34260, - Discounts: 4788.8, - Sales: 29471.2, - COGS: 29930, - Profit: 458.8, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2795, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 978250, - Discounts: 60088, - Sales: 918162, - COGS: 557960, - Profit: 360202, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 4082, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 28574, - Discounts: 1089.76, - Sales: 27484.24, - COGS: 9730, - Profit: 17754.24, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 1691, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 591850, - Discounts: 38136, - Sales: 553714, - COGS: 354120, - Profit: 199594, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 2305, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 27660, - Discounts: 574.08, - Sales: 27085.92, - COGS: 1794, - Profit: 25291.92, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 3401, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 23807, - Discounts: 1627.92, - Sales: 22179.08, - COGS: 14535, - Profit: 7644.08, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 2288, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 16016, - Discounts: 1309.28, - Sales: 14706.72, - COGS: 11690, - Profit: 3016.72, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 2399, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 719700, - Discounts: 9264, - Sales: 710436, - COGS: 96500, - Profit: 613936, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 4086, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1225800, - Discounts: 15240, - Sales: 1210560, - COGS: 158750, - Profit: 1051810, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 2651, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 927850, - Discounts: 16086, - Sales: 911764, - COGS: 149370, - Profit: 762394, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 3971, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 27797, - Discounts: 1309.28, - Sales: 26487.72, - COGS: 11690, - Profit: 14797.72, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 2512, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 879200, - Discounts: 10668, - Sales: 868532, - COGS: 99060, - Profit: 769472, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 2745, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 960750, - Discounts: 11816, - Sales: 948934, - COGS: 109720, - Profit: 839214, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 1903, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 570900, - Discounts: 51216, - Sales: 519684, - COGS: 533500, - Profit: 13816, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 647, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 194100, - Discounts: 19392, - Sales: 174708, - COGS: 202000, - Profit: 27292, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 2914, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 58280, - Discounts: 1132.8, - Sales: 57147.2, - COGS: 7080, - Profit: 50067.2, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 1889, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 13223, - Discounts: 1627.92, - Sales: 11595.08, - COGS: 14535, - Profit: 2939.92, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 1466, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 29320, - Discounts: 2185.6, - Sales: 27134.4, - COGS: 13660, - Profit: 13474.4, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 887, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 266100, - Discounts: 59040, - Sales: 207060, - COGS: 615000, - Profit: 407940, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 395, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 7900, - Discounts: 2432, - Sales: 5468, - COGS: 15200, - Profit: 9732, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 1693, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 25395, - Discounts: 853.2, - Sales: 24541.8, - COGS: 7110, - Profit: 17431.8, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 2459, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 29508, - Discounts: 1320, - Sales: 28188, - COGS: 4125, - Profit: 24063, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 2649, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 794700, - Discounts: 15240, - Sales: 779460, - COGS: 158750, - Profit: 620710, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 3608, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 72160, - Discounts: 698.4, - Sales: 71461.6, - COGS: 4365, - Profit: 67096.6, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 1073, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 321900, - Discounts: 29538, - Sales: 292362, - COGS: 273500, - Profit: 18862, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 1754, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 21048, - Discounts: 396.36, - Sales: 20651.64, - COGS: 1101, - Profit: 19550.64, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 2167, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 650100, - Discounts: 102667.5, - Sales: 547432.5, - COGS: 950625, - Profit: 403192.5, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 1319, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 461650, - Discounts: 52479, - Sales: 409171, - COGS: 433160, - Profit: 23989, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 1679, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 503700, - Discounts: 8694, - Sales: 495006, - COGS: 80500, - Profit: 414506, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 1252, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 15024, - Discounts: 2506.68, - Sales: 12517.32, - COGS: 6963, - Profit: 5554.32, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 3493, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 436625, - Discounts: 20891.25, - Sales: 415733.75, - COGS: 222840, - Profit: 192893.75, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 1697, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 11879, - Discounts: 1014.93, - Sales: 10864.07, - COGS: 8055, - Profit: 2809.07, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 1156, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 144500, - Discounts: 31466.25, - Sales: 113033.75, - COGS: 335640, - Profit: 222606.25, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 726, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 217800, - Discounts: 9018, - Sales: 208782, - COGS: 83500, - Profit: 125282, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 1153, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 345900, - Discounts: 69255, - Sales: 276645, - COGS: 641250, - Profit: 364605, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2720, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 952000, - Discounts: 76135.5, - Sales: 875864.5, - COGS: 628420, - Profit: 247444.5, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3658, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 54870, - Discounts: 4961.25, - Sales: 49908.75, - COGS: 36750, - Profit: 13158.75, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2950, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 885000, - Discounts: 29538, - Sales: 855462, - COGS: 273500, - Profit: 581962, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1821, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 27315, - Discounts: 1656.45, - Sales: 25658.55, - COGS: 12270, - Profit: 13388.55, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 4174, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 50088, - Discounts: 396.36, - Sales: 49691.64, - COGS: 1101, - Profit: 48590.64, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1127, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 338100, - Discounts: 35748, - Sales: 302352, - COGS: 331000, - Profit: 28648, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2209, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 26508, - Discounts: 1917, - Sales: 24591, - COGS: 5325, - Profit: 19266, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 862, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 107750, - Discounts: 31466.25, - Sales: 76283.75, - COGS: 335640, - Profit: 259356.25, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 3805, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 57075, - Discounts: 330.75, - Sales: 56744.25, - COGS: 2450, - Profit: 54294.25, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 1415, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 424500, - Discounts: 102424.5, - Sales: 322075.5, - COGS: 948375, - Profit: 626299.5, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 2231, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 780850, - Discounts: 41170.5, - Sales: 739679.5, - COGS: 339820, - Profit: 399859.5, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 3649, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 456125, - Discounts: 6378.75, - Sales: 449746.25, - COGS: 68040, - Profit: 381706.25, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 2948, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 368500, - Discounts: 23737.5, - Sales: 344762.5, - COGS: 253200, - Profit: 91562.5, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 3395, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1188250, - Discounts: 39973.5, - Sales: 1148276.5, - COGS: 329940, - Profit: 818336.5, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 2650, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 31800, - Discounts: 2112.48, - Sales: 29687.52, - COGS: 5868, - Profit: 23819.52, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 585, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 175500, - Discounts: 71793, - Sales: 103707, - COGS: 664750, - Profit: 561043, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 1316, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 460600, - Discounts: 42572.25, - Sales: 418027.75, - COGS: 351390, - Profit: 66637.75, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 4459, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 53508, - Discounts: 950.4, - Sales: 52557.6, - COGS: 2640, - Profit: 49917.6, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 2711, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 813300, - Discounts: 50409, - Sales: 762891, - COGS: 466750, - Profit: 296141, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 2621, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 31452, - Discounts: 2412.72, - Sales: 29039.28, - COGS: 6702, - Profit: 22337.28, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 3613, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 54195, - Discounts: 1656.45, - Sales: 52538.55, - COGS: 12270, - Profit: 40268.55, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 1847, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 230875, - Discounts: 9866.25, - Sales: 221008.75, - COGS: 105240, - Profit: 115768.75, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 2996, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1048600, - Discounts: 65236.5, - Sales: 983363.5, - COGS: 538460, - Profit: 444903.5, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 2838, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 993300, - Discounts: 39973.5, - Sales: 953326.5, - COGS: 329940, - Profit: 623386.5, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 1302, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 19530, - Discounts: 1309.5, - Sales: 18220.5, - COGS: 9700, - Profit: 8520.5, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 1536, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 30720, - Discounts: 3049.2, - Sales: 27670.8, - COGS: 16940, - Profit: 10730.8, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 1291, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 25820, - Discounts: 1193.4, - Sales: 24626.6, - COGS: 6630, - Profit: 17996.6, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 1213, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 8491, - Discounts: 515.97, - Sales: 7975.03, - COGS: 4095, - Profit: 3880.03, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 2370, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 28440, - Discounts: 1706.4, - Sales: 26733.6, - COGS: 4740, - Profit: 21993.6, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 1979, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 13853, - Discounts: 328.23, - Sales: 13524.77, - COGS: 2605, - Profit: 10919.77, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 2879, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 57580, - Discounts: 1751.4, - Sales: 55828.6, - COGS: 9730, - Profit: 46098.6, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 1707, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 34140, - Discounts: 1868.4, - Sales: 32271.6, - COGS: 10380, - Profit: 21891.6, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2933, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 20531, - Discounts: 226.8, - Sales: 20304.2, - COGS: 1800, - Profit: 18504.2, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 1014, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 12168, - Discounts: 2124.36, - Sales: 10043.64, - COGS: 5901, - Profit: 4142.64, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 693, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 10395, - Discounts: 3547.8, - Sales: 6847.2, - COGS: 26280, - Profit: 19432.8, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 3741, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 26187, - Discounts: 226.8, - Sales: 25960.2, - COGS: 1800, - Profit: 24160.2, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 3116, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 62320, - Discounts: 4827.6, - Sales: 57492.4, - COGS: 26820, - Profit: 30672.4, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 3995, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 27965, - Discounts: 328.23, - Sales: 27636.77, - COGS: 2605, - Profit: 25031.77, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 953, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 19060, - Discounts: 1868.4, - Sales: 17191.6, - COGS: 10380, - Profit: 6811.6, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 2530, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 37950, - Discounts: 2201.18, - Sales: 35748.82, - COGS: 16305, - Profit: 19443.82, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 2565, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 30780, - Discounts: 330.48, - Sales: 30449.52, - COGS: 918, - Profit: 29531.52, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 4297, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 51564, - Discounts: 463.2, - Sales: 51100.8, - COGS: 1158, - Profit: 49942.8, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 2871, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 20097, - Discounts: 1629.6, - Sales: 18467.4, - COGS: 11640, - Profit: 6827.4, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3537, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 42444, - Discounts: 463.2, - Sales: 41980.8, - COGS: 1158, - Profit: 40822.8, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 1598, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 199750, - Discounts: 43068.75, - Sales: 156681.25, - COGS: 413460, - Profit: 256778.75, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 2616, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 327000, - Discounts: 18525, - Sales: 308475, - COGS: 177840, - Profit: 130635, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 2836, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 992600, - Discounts: 80955, - Sales: 911645, - COGS: 601380, - Profit: 310265, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 4023, - ManufacturingPrice: 5, - SalePrice: 125, - GrossSales: 502875, - Discounts: 22550, - Sales: 480325, - COGS: 216480, - Profit: 263845, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 3994, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 59910, - Discounts: 3108, - Sales: 56802, - COGS: 20720, - Profit: 36082, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 2928, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 58560, - Discounts: 3908, - Sales: 54652, - COGS: 19540, - Profit: 35112, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2912, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 873600, - Discounts: 17730, - Sales: 855870, - COGS: 147750, - Profit: 708120, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 3671, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 55065, - Discounts: 3250.5, - Sales: 51814.5, - COGS: 21670, - Profit: 30144.5, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2778, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 55560, - Discounts: 482, - Sales: 55078, - COGS: 2410, - Profit: 52668, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 405, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 6075, - Discounts: 1021.5, - Sales: 5053.5, - COGS: 6810, - Profit: 1756.5, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 2013, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 30195, - Discounts: 765, - Sales: 29430, - COGS: 5100, - Profit: 24330, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 2634, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 39510, - Discounts: 1185, - Sales: 38325, - COGS: 7900, - Profit: 30425, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 4166, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1458100, - Discounts: 22365, - Sales: 1435735, - COGS: 166140, - Profit: 1269595, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 355, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 44375, - Discounts: 19950, - Sales: 24425, - COGS: 191520, - Profit: 167095, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 2382, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 714600, - Discounts: 68820, - Sales: 645780, - COGS: 573500, - Profit: 72280, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 4170, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 83400, - Discounts: 482, - Sales: 82918, - COGS: 2410, - Profit: 80508, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 892, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 6244, - Discounts: 1865.5, - Sales: 4378.5, - COGS: 13325, - Profit: 8946.5, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 2200, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 275000, - Discounts: 23950, - Sales: 251050, - COGS: 229920, - Profit: 21130, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 3389, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1016700, - Discounts: 25590, - Sales: 991110, - COGS: 213250, - Profit: 777860, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 2990, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 373750, - Discounts: 4262.5, - Sales: 369487.5, - COGS: 40920, - Profit: 328567.5, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 4013, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 60195, - Discounts: 961.5, - Sales: 59233.5, - COGS: 6410, - Profit: 52823.5, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 739, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 258650, - Discounts: 98245, - Sales: 160405, - COGS: 729820, - Profit: 569415, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 1989, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 596700, - Discounts: 12960, - Sales: 583740, - COGS: 108000, - Profit: 475740, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 2991, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 897300, - Discounts: 68820, - Sales: 828480, - COGS: 573500, - Profit: 254980, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 4237, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 63555, - Discounts: 3250.5, - Sales: 60304.5, - COGS: 21670, - Profit: 38634.5, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 1442, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 180250, - Discounts: 31612.5, - Sales: 148637.5, - COGS: 303480, - Profit: 154842.5, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 2712, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 949200, - Discounts: 65450, - Sales: 883750, - COGS: 486200, - Profit: 397550, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 1508, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 188500, - Discounts: 7237.5, - Sales: 181262.5, - COGS: 69480, - Profit: 111782.5, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 4245, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1485750, - Discounts: 78400, - Sales: 1407350, - COGS: 582400, - Profit: 824950, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 2630, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 789000, - Discounts: 89790, - Sales: 699210, - COGS: 748250, - Profit: 49040, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 1182, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 14184, - Discounts: 4224.6, - Sales: 9959.4, - COGS: 10561.5, - Profit: 602.1, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 1221, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 24420, - Discounts: 4078, - Sales: 20342, - COGS: 20390, - Profit: 48, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 963, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 11556, - Discounts: 3088.8, - Sales: 8467.2, - COGS: 7722, - Profit: 745.2, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 3243, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 1135050, - Discounts: 24745, - Sales: 1110305, - COGS: 183820, - Profit: 926485, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 1120, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 16800, - Discounts: 3108, - Sales: 13692, - COGS: 20720, - Profit: 7028, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 1174, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 352200, - Discounts: 25590, - Sales: 326610, - COGS: 213250, - Profit: 113360, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 2541, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 30492, - Discounts: 1581.36, - Sales: 28910.64, - COGS: 3594, - Profit: 25316.64, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 3246, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 22722, - Discounts: 1949.64, - Sales: 20772.36, - COGS: 12660, - Profit: 8112.36, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1531, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 18372, - Discounts: 1581.36, - Sales: 16790.64, - COGS: 3594, - Profit: 13196.64, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 2526, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 37890, - Discounts: 633.6, - Sales: 37256.4, - COGS: 3840, - Profit: 33416.4, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 1136, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 13632, - Discounts: 623.04, - Sales: 13008.96, - COGS: 1416, - Profit: 11592.96, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 1983, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 13881, - Discounts: 1215.83, - Sales: 12665.17, - COGS: 7895, - Profit: 4770.17, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 3259, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 39108, - Discounts: 1326.6, - Sales: 37781.4, - COGS: 3015, - Profit: 34766.4, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 3267, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 49005, - Discounts: 5279.17, - Sales: 43725.82, - COGS: 31995, - Profit: 11730.82, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 2454, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 29448, - Discounts: 623.04, - Sales: 28824.96, - COGS: 1416, - Profit: 27408.96, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 2643, - ManufacturingPrice: 3, - SalePrice: 12, - GrossSales: 31716, - Discounts: 2556.84, - Sales: 29159.16, - COGS: 5811, - Profit: 23348.16, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 383, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 134050, - Discounts: 30492, - Sales: 103558, - COGS: 205920, - Profit: 102362, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 2801, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 840300, - Discounts: 92763, - Sales: 747537, - COGS: 702750, - Profit: 44787, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 1667, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 208375, - Discounts: 33563.75, - Sales: 174811.25, - COGS: 292920, - Profit: 118108.75, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 3539, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 53085, - Discounts: 2574, - Sales: 50511, - COGS: 15600, - Profit: 34911, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 4226, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 29582, - Discounts: 2083.62, - Sales: 27498.38, - COGS: 13530, - Profit: 13968.38, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 2220, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 777000, - Discounts: 29491, - Sales: 747509, - COGS: 199160, - Profit: 548349, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 776, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 15520, - Discounts: 6582.4, - Sales: 8937.6, - COGS: 29920, - Profit: 20982.4, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 553, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 8295, - Discounts: 3559.05, - Sales: 4735.95, - COGS: 21570, - Profit: 16834.05, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2107, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 632100, - Discounts: 28809, - Sales: 603291, - COGS: 218250, - Profit: 385041, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2468, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 49360, - Discounts: 2468.4, - Sales: 46891.6, - COGS: 11220, - Profit: 35671.6, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 1905, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 666750, - Discounts: 81023.25, - Sales: 585726.75, - COGS: 547170, - Profit: 38556.75, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 3658, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 43896, - Discounts: 5314.32, - Sales: 38581.68, - COGS: 12078, - Profit: 26503.68, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 4301, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 51612, - Discounts: 3201.66, - Sales: 48410.34, - COGS: 7276.5, - Profit: 41133.84, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2446, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 48920, - Discounts: 5266.8, - Sales: 43653.2, - COGS: 23940, - Profit: 19713.2, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 4209, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 63135, - Discounts: 3273.6, - Sales: 59861.4, - COGS: 19840, - Profit: 40021.4, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 3353, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 419125, - Discounts: 33563.75, - Sales: 385561.25, - COGS: 292920, - Profit: 92641.25, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 1401, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 28020, - Discounts: 6582.4, - Sales: 21437.6, - COGS: 29920, - Profit: 8482.4, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 1865, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 559500, - Discounts: 45078, - Sales: 514422, - COGS: 341500, - Profit: 172922, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 463, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 9260, - Discounts: 6171, - Sales: 3089, - COGS: 28050, - Profit: 24961, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 4177, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 62655, - Discounts: 1080.75, - Sales: 61574.25, - COGS: 6550, - Profit: 55024.25, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 2523, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 883050, - Discounts: 13244, - Sales: 869806, - COGS: 89440, - Profit: 780366, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 1930, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 13510, - Discounts: 1392.16, - Sales: 12117.84, - COGS: 9040, - Profit: 3077.84, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 1301, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 15612, - Discounts: 2288.88, - Sales: 13323.12, - COGS: 5202, - Profit: 8121.12, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 4125, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 515625, - Discounts: 7617.5, - Sales: 508007.5, - COGS: 66480, - Profit: 441527.5, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 607, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 12140, - Discounts: 6457, - Sales: 5683, - COGS: 29350, - Profit: 23667, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 478, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 59750, - Discounts: 43518.75, - Sales: 16231.25, - COGS: 379800, - Profit: 363568.75, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 4489, - ManufacturingPrice: 260, - SalePrice: 20, - GrossSales: 89780, - Discounts: 5783.8, - Sales: 83996.2, - COGS: 26290, - Profit: 57706.2, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 1504, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 188000, - Discounts: 19703.75, - Sales: 168296.25, - COGS: 171960, - Profit: 3663.75, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 3763, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 470375, - Discounts: 13021.25, - Sales: 457353.75, - COGS: 113640, - Profit: 343713.75, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 2412, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 844200, - Discounts: 13244, - Sales: 830956, - COGS: 89440, - Profit: 741516, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 2342, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 35130, - Discounts: 3559.05, - Sales: 31570.95, - COGS: 21570, - Profit: 10000.95, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 4451, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 31157, - Discounts: 292.6, - Sales: 30864.4, - COGS: 1900, - Profit: 28964.4, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 3796, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1328600, - Discounts: 37212, - Sales: 1291388, - COGS: 230360, - Profit: 1061028, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 2286, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 285750, - Discounts: 36240, - Sales: 249510, - COGS: 289920, - Profit: 40410, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 3614, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 451750, - Discounts: 32340, - Sales: 419410, - COGS: 258720, - Profit: 160690, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 1716, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 25740, - Discounts: 4840.2, - Sales: 20899.8, - COGS: 26890, - Profit: 5990.2, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 1301, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 19515, - Discounts: 1218.6, - Sales: 18296.4, - COGS: 6770, - Profit: 11526.4, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 4175, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1252500, - Discounts: 63828, - Sales: 1188672, - COGS: 443250, - Profit: 745422, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 975, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 6825, - Discounts: 2032.8, - Sales: 4792.2, - COGS: 12100, - Profit: 7307.8, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 1154, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 8078, - Discounts: 2296.56, - Sales: 5781.44, - COGS: 13670, - Profit: 7888.56, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 1873, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 37460, - Discounts: 4116, - Sales: 33344, - COGS: 17150, - Profit: 16194, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 3766, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 1129800, - Discounts: 42696, - Sales: 1087104, - COGS: 296500, - Profit: 790604, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3558, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1067400, - Discounts: 125820, - Sales: 941580, - COGS: 873750, - Profit: 67830, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 3156, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1104600, - Discounts: 37212, - Sales: 1067388, - COGS: 230360, - Profit: 837028, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2994, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 374250, - Discounts: 32340, - Sales: 341910, - COGS: 258720, - Profit: 83190, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2087, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 41740, - Discounts: 2172, - Sales: 39568, - COGS: 9050, - Profit: 30518, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 1056, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 21120, - Discounts: 4116, - Sales: 17004, - COGS: 17150, - Profit: 146, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1353, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 473550, - Discounts: 66948, - Sales: 406602, - COGS: 414440, - Profit: 7838, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 416, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 124800, - Discounts: 48924, - Sales: 75876, - COGS: 339750, - Profit: 263874, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 3880, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1164000, - Discounts: 77400, - Sales: 1086600, - COGS: 537500, - Profit: 549100, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 809, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 283150, - Discounts: 50274, - Sales: 232876, - COGS: 311220, - Profit: 78344, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 1892, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 28380, - Discounts: 684, - Sales: 27696, - COGS: 3800, - Profit: 23896, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2072, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 41440, - Discounts: 2959.2, - Sales: 38480.8, - COGS: 12330, - Profit: 26150.8, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 3052, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1068200, - Discounts: 58590, - Sales: 1009610, - COGS: 362700, - Profit: 646910, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 3121, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 1092350, - Discounts: 41412, - Sales: 1050938, - COGS: 256360, - Profit: 794578, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 2059, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 41180, - Discounts: 2172, - Sales: 39008, - COGS: 9050, - Profit: 29958, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 4254, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 51048, - Discounts: 3036.96, - Sales: 48011.04, - COGS: 6327, - Profit: 41684.04, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 1293, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 19395, - Discounts: 6974.1, - Sales: 12420.9, - COGS: 38745, - Profit: 26324.1, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 1293, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 452550, - Discounts: 26166, - Sales: 426384, - COGS: 161980, - Profit: 264404, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 230, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 80500, - Discounts: 41412, - Sales: 39088, - COGS: 256360, - Profit: 217272, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 1723, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 215375, - Discounts: 35805, - Sales: 179570, - COGS: 286440, - Profit: 106870, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 240, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 4800, - Discounts: 2959.2, - Sales: 1840.8, - COGS: 12330, - Profit: 10489.2, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 2571, - ManufacturingPrice: 260, - SalePrice: 350, - GrossSales: 899850, - Discounts: 11340, - Sales: 888510, - COGS: 70200, - Profit: 818310, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 1661, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 11627, - Discounts: 2874.06, - Sales: 8752.94, - COGS: 17107.5, - Profit: 8354.56, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 4474, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 31318, - Discounts: 2296.56, - Sales: 29021.44, - COGS: 13670, - Profit: 15351.44, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 833, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 12495, - Discounts: 4586.4, - Sales: 7908.6, - COGS: 25480, - Profit: 17571.4, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 674, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 13480, - Discounts: 6051.6, - Sales: 7428.4, - COGS: 25215, - Profit: 17786.6, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 778, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 9336, - Discounts: 3831.84, - Sales: 5504.16, - COGS: 7983, - Profit: 2478.84, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 1457, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 29140, - Discounts: 3674.4, - Sales: 25465.6, - COGS: 15310, - Profit: 10155.6, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 3158, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 22106, - Discounts: 1252.44, - Sales: 20853.56, - COGS: 7455, - Profit: 13398.56, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 4095, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 81900, - Discounts: 3674.4, - Sales: 78225.6, - COGS: 15310, - Profit: 62915.6, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 3170, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 38040, - Discounts: 3975.84, - Sales: 34064.16, - COGS: 8283, - Profit: 25781.16, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 493, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 7395, - Discounts: 5005.65, - Sales: 2389.35, - COGS: 25670, - Profit: 23280.65, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 3286, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 49290, - Discounts: 5005.65, - Sales: 44284.35, - COGS: 25670, - Profit: 18614.35, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 3563, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1247050, - Discounts: 41996.5, - Sales: 1205053.5, - COGS: 239980, - Profit: 965073.5, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 4109, - ManufacturingPrice: 3, - SalePrice: 350, - GrossSales: 1438150, - Discounts: 81445, - Sales: 1356705, - COGS: 465400, - Profit: 891305, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 3653, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 73060, - Discounts: 1149.2, - Sales: 71910.8, - COGS: 4420, - Profit: 67490.8, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 2203, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 771050, - Discounts: 44703.75, - Sales: 726346.25, - COGS: 255450, - Profit: 470896.25, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 2924, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 20468, - Discounts: 1181.18, - Sales: 19286.82, - COGS: 6490, - Profit: 12796.82, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 2650, - ManufacturingPrice: 5, - SalePrice: 12, - GrossSales: 31800, - Discounts: 942.24, - Sales: 30857.76, - COGS: 1812, - Profit: 29045.76, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 1194, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 23880, - Discounts: 5863, - Sales: 18017, - COGS: 22550, - Profit: 4533, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 3366, - ManufacturingPrice: 5, - SalePrice: 20, - GrossSales: 67320, - Discounts: 3247.4, - Sales: 64072.6, - COGS: 12490, - Profit: 51582.6, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 1325, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 9275, - Discounts: 1309.04, - Sales: 7965.97, - COGS: 7192.5, - Profit: 773.47, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 4243, - ManufacturingPrice: 10, - SalePrice: 300, - GrossSales: 1272900, - Discounts: 31473, - Sales: 1241427, - COGS: 201750, - Profit: 1039677, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 2887, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 57740, - Discounts: 6866.6, - Sales: 50873.4, - COGS: 26410, - Profit: 24463.4, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 3839, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 76780, - Discounts: 7040.8, - Sales: 69739.2, - COGS: 27080, - Profit: 42659.2, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 1863, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 652050, - Discounts: 119756, - Sales: 532294, - COGS: 684320, - Profit: 152026, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2858, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 357250, - Discounts: 25723.75, - Sales: 331526.25, - COGS: 189960, - Profit: 141566.25, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2868, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 34416, - Discounts: 890.76, - Sales: 33525.24, - COGS: 1713, - Profit: 31812.24, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 3805, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 26635, - Discounts: 2453.36, - Sales: 24181.64, - COGS: 13480, - Profit: 10701.64, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 3914, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 58710, - Discounts: 3051.75, - Sales: 55658.25, - COGS: 15650, - Profit: 40008.25, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 524, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 10480, - Discounts: 3247.4, - Sales: 7232.6, - COGS: 12490, - Profit: 5257.4, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 3095, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1083250, - Discounts: 16243.5, - Sales: 1067006.5, - COGS: 92820, - Profit: 974186.5, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2410, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 28920, - Discounts: 1580.28, - Sales: 27339.72, - COGS: 3039, - Profit: 24300.72, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 4263, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 63945, - Discounts: 7795.13, - Sales: 56149.88, - COGS: 39975, - Profit: 16174.88, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 2239, - ManufacturingPrice: 120, - SalePrice: 350, - GrossSales: 783650, - Discounts: 119756, - Sales: 663894, - COGS: 684320, - Profit: 20426, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 569, - ManufacturingPrice: 120, - SalePrice: 7, - GrossSales: 3983, - Discounts: 1082.9, - Sales: 2900.1, - COGS: 5950, - Profit: 3049.9, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 3889, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 46668, - Discounts: 942.24, - Sales: 45725.76, - COGS: 1812, - Profit: 43913.76, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 1378, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 20670, - Discounts: 1287, - Sales: 19383, - COGS: 6600, - Profit: 12783, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 2253, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 27036, - Discounts: 639.6, - Sales: 26396.4, - COGS: 1230, - Profit: 25166.4, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 3202, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 960600, - Discounts: 101595, - Sales: 859005, - COGS: 651250, - Profit: 207755, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 3835, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 46020, - Discounts: 1580.28, - Sales: 44439.72, - COGS: 3039, - Profit: 41400.72, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 2487, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 310875, - Discounts: 25723.75, - Sales: 285151.25, - COGS: 189960, - Profit: 95191.25, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 4428, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 66420, - Discounts: 3051.75, - Sales: 63368.25, - COGS: 15650, - Profit: 47718.25, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 1200, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 150000, - Discounts: 26958.75, - Sales: 123041.25, - COGS: 199080, - Profit: 76038.75, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 2953, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 20671, - Discounts: 1082.9, - Sales: 19588.1, - COGS: 5950, - Profit: 13638.1, - Date: `6/1/19`, - Month: `June`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 1453, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 17436, - Discounts: 639.6, - Sales: 16796.4, - COGS: 1230, - Profit: 15566.4, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Luxe`, - UnitsSold: 865, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 10380, - Discounts: 2761.2, - Sales: 7618.8, - COGS: 5310, - Profit: 2308.8, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 1072, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 21440, - Discounts: 7221.2, - Sales: 14218.8, - COGS: 25790, - Profit: 11571.2, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 1737, - ManufacturingPrice: 3, - SalePrice: 20, - GrossSales: 34740, - Discounts: 4880.4, - Sales: 29859.6, - COGS: 17430, - Profit: 12429.6, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 1535, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 10745, - Discounts: 2936.08, - Sales: 7808.92, - COGS: 14980, - Profit: 7171.08, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 2532, - ManufacturingPrice: 3, - SalePrice: 7, - GrossSales: 17724, - Discounts: 274.4, - Sales: 17449.6, - COGS: 1400, - Profit: 16049.6, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Royal Oak`, - UnitsSold: 1765, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 12355, - Discounts: 287.14, - Sales: 12067.86, - COGS: 1465, - Profit: 10602.86, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Royal Oak`, - UnitsSold: 1567, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 10969, - Discounts: 2936.08, - Sales: 8032.92, - COGS: 14980, - Profit: 6947.08, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2640, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 39600, - Discounts: 583.8, - Sales: 39016.2, - COGS: 2780, - Profit: 36236.2, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 3079, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 61580, - Discounts: 6798.4, - Sales: 54781.6, - COGS: 24280, - Profit: 30501.6, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 4130, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 61950, - Discounts: 3710.7, - Sales: 58239.3, - COGS: 17670, - Profit: 40569.3, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 2938, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 35256, - Discounts: 2340.24, - Sales: 32915.76, - COGS: 4179, - Profit: 28736.76, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 3080, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 21560, - Discounts: 274.4, - Sales: 21285.6, - COGS: 1400, - Profit: 19885.6, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 1530, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 18360, - Discounts: 2340.24, - Sales: 16019.76, - COGS: 4179, - Profit: 11840.76, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 3537, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 42444, - Discounts: 3385.2, - Sales: 39058.8, - COGS: 6045, - Profit: 33013.8, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 2021, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 606300, - Discounts: 33642, - Sales: 572658, - COGS: 200250, - Profit: 372408, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 1804, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 225500, - Discounts: 17902.5, - Sales: 207597.5, - COGS: 122760, - Profit: 84837.5, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 1014, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 304200, - Discounts: 62832, - Sales: 241368, - COGS: 374000, - Profit: 132632, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Kensington`, - UnitsSold: 2913, - ManufacturingPrice: 3, - SalePrice: 300, - GrossSales: 873900, - Discounts: 42420, - Sales: 831480, - COGS: 252500, - Profit: 578980, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 763, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 11445, - Discounts: 3177.3, - Sales: 8267.7, - COGS: 15130, - Profit: 6862.3, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Kensington`, - UnitsSold: 1425, - ManufacturingPrice: 3, - SalePrice: 15, - GrossSales: 21375, - Discounts: 4830, - Sales: 16545, - COGS: 23000, - Profit: 6455, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Kensington`, - UnitsSold: 4357, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 544625, - Discounts: 49367.5, - Sales: 495257.5, - COGS: 338520, - Profit: 156737.5, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 2138, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 748300, - Discounts: 109147.5, - Sales: 639152.5, - COGS: 579150, - Profit: 60002.5, - Date: `1/1/19`, - Month: `January`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Royal Oak`, - UnitsSold: 3825, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1338750, - Discounts: 58751, - Sales: 1279999, - COGS: 311740, - Profit: 968259, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 3393, - ManufacturingPrice: 5, - SalePrice: 350, - GrossSales: 1187550, - Discounts: 9800, - Sales: 1177750, - COGS: 52000, - Profit: 1125750, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 2215, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 15505, - Discounts: 380.24, - Sales: 15124.76, - COGS: 1940, - Profit: 13184.76, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 2278, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 15946, - Discounts: 1692.46, - Sales: 14253.54, - COGS: 8635, - Profit: 5618.54, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Royal Oak`, - UnitsSold: 403, - ManufacturingPrice: 5, - SalePrice: 15, - GrossSales: 6045, - Discounts: 4830, - Sales: 1215, - COGS: 23000, - Profit: 21785, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 289, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 5780, - Discounts: 728, - Sales: 5052, - COGS: 2600, - Profit: 2452, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 749, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 11235, - Discounts: 5187, - Sales: 6048, - COGS: 24700, - Profit: 18652, - Date: `9/1/18`, - Month: `September`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 372, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 5580, - Discounts: 3660.3, - Sales: 1919.7, - COGS: 17430, - Profit: 15510.3, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3781, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 45372, - Discounts: 4895.52, - Sales: 40476.48, - COGS: 8742, - Profit: 31734.48, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1785, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 12495, - Discounts: 1696.38, - Sales: 10798.62, - COGS: 8655, - Profit: 2143.62, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 4029, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1410150, - Discounts: 34300, - Sales: 1375850, - COGS: 182000, - Profit: 1193850, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2813, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 33756, - Discounts: 3732.96, - Sales: 30023.04, - COGS: 6666, - Profit: 23357.04, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 2150, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 752500, - Discounts: 57673, - Sales: 694827, - COGS: 306020, - Profit: 388807, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 2093, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 732550, - Discounts: 94178, - Sales: 638372, - COGS: 499720, - Profit: 138652, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 4391, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 548875, - Discounts: 27562.5, - Sales: 521312.5, - COGS: 189000, - Profit: 332312.5, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 2695, - ManufacturingPrice: 120, - SalePrice: 20, - GrossSales: 53900, - Discounts: 1696.8, - Sales: 52203.2, - COGS: 6060, - Profit: 46143.2, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 1337, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 401100, - Discounts: 103320, - Sales: 297780, - COGS: 615000, - Profit: 317220, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Burlington`, - UnitsSold: 2621, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 786300, - Discounts: 11298, - Sales: 775002, - COGS: 67250, - Profit: 707752, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Burlington`, - UnitsSold: 3735, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1120500, - Discounts: 106512, - Sales: 1013988, - COGS: 634000, - Profit: 379988, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Mandarin`, - UnitsSold: 4320, - ManufacturingPrice: 250, - SalePrice: 7, - GrossSales: 30240, - Discounts: 2844.94, - Sales: 27395.06, - COGS: 14515, - Profit: 12880.06, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 2828, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 848400, - Discounts: 106722, - Sales: 741678, - COGS: 635250, - Profit: 106428, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 2586, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 775800, - Discounts: 11298, - Sales: 764502, - COGS: 67250, - Profit: 697252, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 1248, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 374400, - Discounts: 62832, - Sales: 311568, - COGS: 374000, - Profit: 62432, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 4035, - ManufacturingPrice: 250, - SalePrice: 300, - GrossSales: 1210500, - Discounts: 42420, - Sales: 1168080, - COGS: 252500, - Profit: 915580, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 359, - ManufacturingPrice: 250, - SalePrice: 350, - GrossSales: 125650, - Discounts: 62769, - Sales: 62881, - COGS: 333060, - Profit: 270179, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 3926, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 1177800, - Discounts: 37296, - Sales: 1140504, - COGS: 222000, - Profit: 918504, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 4247, - ManufacturingPrice: 260, - SalePrice: 125, - GrossSales: 530875, - Discounts: 49770, - Sales: 481105, - COGS: 341280, - Profit: 139825, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 2695, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 32340, - Discounts: 4158, - Sales: 28182, - COGS: 7425, - Profit: 20757, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Luxe`, - UnitsSold: 1104, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 16560, - Discounts: 3660.3, - Sales: 12899.7, - COGS: 17430, - Profit: 4530.3, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Luxe`, - UnitsSold: 1449, - ManufacturingPrice: 260, - SalePrice: 12, - GrossSales: 17388, - Discounts: 4895.52, - Sales: 12492.48, - COGS: 8742, - Profit: 3750.48, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 1131, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 7917, - Discounts: 1696.38, - Sales: 6220.62, - COGS: 8655, - Profit: 2434.38, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 1468, - ManufacturingPrice: 260, - SalePrice: 7, - GrossSales: 10276, - Discounts: 1692.46, - Sales: 8583.54, - COGS: 8635, - Profit: 51.46, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 1272, - ManufacturingPrice: 260, - SalePrice: 15, - GrossSales: 19080, - Discounts: 3927, - Sales: 15153, - COGS: 18700, - Profit: 3547, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Kensington`, - UnitsSold: 1403, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 175375, - Discounts: 22012.5, - Sales: 153362.5, - COGS: 140880, - Profit: 12482.5, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 2161, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 270125, - Discounts: 51881.25, - Sales: 218243.75, - COGS: 332040, - Profit: 113796.25, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Kensington`, - UnitsSold: 1937, - ManufacturingPrice: 3, - SalePrice: 125, - GrossSales: 242125, - Discounts: 20343.75, - Sales: 221781.25, - COGS: 130200, - Profit: 91581.25, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 2879, - ManufacturingPrice: 5, - SalePrice: 300, - GrossSales: 863700, - Discounts: 24570, - Sales: 839130, - COGS: 136500, - Profit: 702630, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 1330, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 26600, - Discounts: 3474, - Sales: 23126, - COGS: 11580, - Profit: 11546, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 2426, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 36390, - Discounts: 3631.5, - Sales: 32758.5, - COGS: 16140, - Profit: 16618.5, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2033, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 14231, - Discounts: 2661.75, - Sales: 11569.25, - COGS: 12675, - Profit: 1105.75, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 2029, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 710150, - Discounts: 149677.5, - Sales: 560472.5, - COGS: 741260, - Profit: 180787.5, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 1049, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 15735, - Discounts: 5757.75, - Sales: 9977.25, - COGS: 25590, - Profit: 15612.75, - Date: `8/1/19`, - Month: `August`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 1062, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 21240, - Discounts: 801, - Sales: 20439, - COGS: 2670, - Profit: 17769, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 2509, - ManufacturingPrice: 10, - SalePrice: 125, - GrossSales: 313625, - Discounts: 20343.75, - Sales: 293281.25, - COGS: 130200, - Profit: 163081.25, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Vermont`, - UnitsSold: 1743, - ManufacturingPrice: 10, - SalePrice: 15, - GrossSales: 26145, - Discounts: 2643.75, - Sales: 23501.25, - COGS: 11750, - Profit: 11751.25, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3418, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 1196300, - Discounts: 105367.5, - Sales: 1090932.5, - COGS: 521820, - Profit: 569112.5, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Vermont`, - UnitsSold: 1751, - ManufacturingPrice: 10, - SalePrice: 350, - GrossSales: 612850, - Discounts: 112927.5, - Sales: 499922.5, - COGS: 559260, - Profit: 59337.5, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Vermont`, - UnitsSold: 3228, - ManufacturingPrice: 10, - SalePrice: 12, - GrossSales: 38736, - Discounts: 1645.2, - Sales: 37090.8, - COGS: 2742, - Profit: 34348.8, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Vermont`, - UnitsSold: 1105, - ManufacturingPrice: 10, - SalePrice: 20, - GrossSales: 22100, - Discounts: 879, - Sales: 21221, - COGS: 2930, - Profit: 18291, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Burlington`, - UnitsSold: 2778, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 33336, - Discounts: 900, - Sales: 32436, - COGS: 1500, - Profit: 30936, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 1173, - ManufacturingPrice: 120, - SalePrice: 15, - GrossSales: 17595, - Discounts: 6358.5, - Sales: 11236.5, - COGS: 28260, - Profit: 17023.5, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Burlington`, - UnitsSold: 3160, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 395000, - Discounts: 12431.25, - Sales: 382568.75, - COGS: 79560, - Profit: 303008.75, - Date: `9/1/19`, - Month: `September`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 4322, - ManufacturingPrice: 120, - SalePrice: 300, - GrossSales: 1296600, - Discounts: 115830, - Sales: 1180770, - COGS: 643500, - Profit: 537270, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 1901, - ManufacturingPrice: 120, - SalePrice: 125, - GrossSales: 237625, - Discounts: 45712.5, - Sales: 191912.5, - COGS: 292560, - Profit: 100647.5, - Date: `12/1/18`, - Month: `December`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Burlington`, - UnitsSold: 2980, - ManufacturingPrice: 120, - SalePrice: 12, - GrossSales: 35760, - Discounts: 1645.2, - Sales: 34114.8, - COGS: 2742, - Profit: 31372.8, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 4068, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 81360, - Discounts: 2596.5, - Sales: 78763.5, - COGS: 8655, - Profit: 70108.5, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 2105, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 31575, - Discounts: 1107, - Sales: 30468, - COGS: 4920, - Profit: 25548, - Date: `7/1/19`, - Month: `July`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 1647, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 32940, - Discounts: 801, - Sales: 32139, - COGS: 2670, - Profit: 29469, - Date: `10/1/18`, - Month: `October`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 235, - ManufacturingPrice: 250, - SalePrice: 15, - GrossSales: 3525, - Discounts: 2643.75, - Sales: 881.25, - COGS: 11750, - Profit: 10868.75, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Mandarin`, - UnitsSold: 3617, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 452125, - Discounts: 55387.5, - Sales: 396737.5, - COGS: 354480, - Profit: 42257.5, - Date: `11/1/18`, - Month: `November`, - Year: `2018` - }), - new SalesDataItem( - { - Country: `India`, - Product: `Mandarin`, - UnitsSold: 2106, - ManufacturingPrice: 250, - SalePrice: 125, - GrossSales: 263250, - Discounts: 10350, - Sales: 252900, - COGS: 66240, - Profit: 186660, - Date: `11/1/19`, - Month: `November`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Mandarin`, - UnitsSold: 2351, - ManufacturingPrice: 250, - SalePrice: 20, - GrossSales: 47020, - Discounts: 879, - Sales: 46141, - COGS: 2930, - Profit: 43211, - Date: `12/1/19`, - Month: `December`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `UK`, - Product: `Luxe`, - UnitsSold: 1897, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 569100, - Discounts: 111375, - Sales: 457725, - COGS: 618750, - Profit: 161025, - Date: `3/1/19`, - Month: `March`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Luxe`, - UnitsSold: 647, - ManufacturingPrice: 260, - SalePrice: 300, - GrossSales: 194100, - Discounts: 24570, - Sales: 169530, - COGS: 136500, - Profit: 33030, - Date: `10/1/19`, - Month: `October`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Brazil`, - Product: `Royal Oak`, - UnitsSold: 3621, - ManufacturingPrice: 5, - SalePrice: 7, - GrossSales: 25347, - Discounts: 1436.4, - Sales: 23910.6, - COGS: 6840, - Profit: 17070.6, - Date: `2/1/19`, - Month: `February`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `Japan`, - Product: `Vermont`, - UnitsSold: 3221, - ManufacturingPrice: 10, - SalePrice: 7, - GrossSales: 22547, - Discounts: 759.15, - Sales: 21787.85, - COGS: 3615, - Profit: 18172.85, - Date: `4/1/19`, - Month: `April`, - Year: `2019` - }), - new SalesDataItem( - { - Country: `USA`, - Product: `Mandarin`, - UnitsSold: 493, - ManufacturingPrice: 250, - SalePrice: 12, - GrossSales: 5916, - Discounts: 3250.8, - Sales: 2665.2, - COGS: 5418, - Profit: 2752.8, - Date: `5/1/19`, - Month: `May`, - Year: `2019` - }), - ]; - super(...(newItems.slice(0, items))); - } - } -} From 09e00fd91c072b8dfcc22071c44834d2fe9b393a Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Thu, 6 Jun 2024 09:52:14 -0400 Subject: [PATCH 081/154] export cleanup (#190) --- samples/charts/category-chart/annotations-all/angular.json | 2 +- samples/charts/category-chart/annotations-callouts/angular.json | 2 +- .../charts/category-chart/annotations-crosshairs/angular.json | 2 +- samples/charts/category-chart/annotations-custom/angular.json | 2 +- .../charts/category-chart/annotations-final-value/angular.json | 2 +- .../charts/category-chart/annotations-highlighting/angular.json | 2 +- .../category-chart/area-chart-multiple-sources/angular.json | 2 +- .../charts/category-chart/area-chart-single-source/angular.json | 2 +- samples/charts/category-chart/area-chart-styling/angular.json | 2 +- samples/charts/category-chart/axis-gap/angular.json | 2 +- samples/charts/category-chart/axis-gridlines/angular.json | 2 +- samples/charts/category-chart/axis-inverted/angular.json | 2 +- samples/charts/category-chart/axis-labels/angular.json | 2 +- samples/charts/category-chart/axis-locations/angular.json | 2 +- samples/charts/category-chart/axis-options/angular.json | 2 +- samples/charts/category-chart/axis-overlap/angular.json | 2 +- samples/charts/category-chart/axis-range/angular.json | 2 +- samples/charts/category-chart/axis-tickmarks/angular.json | 2 +- samples/charts/category-chart/axis-titles/angular.json | 2 +- .../charts/category-chart/chart-highlight-filter/angular.json | 2 +- .../category-chart/column-chart-multiple-sources/angular.json | 2 +- .../category-chart/column-chart-single-source/angular.json | 2 +- samples/charts/category-chart/column-chart-styling/angular.json | 2 +- .../category-chart/column-chart-with-tooltips/angular.json | 2 +- samples/charts/category-chart/custom-selection/angular.json | 2 +- samples/charts/category-chart/data-aggregations/angular.json | 2 +- samples/charts/category-chart/data-filter/angular.json | 2 +- .../category-chart/data-legend-formatting-decimals/angular.json | 2 +- samples/charts/category-chart/data-legend/angular.json | 2 +- .../data-tooltip-formatting-decimals/angular.json | 2 +- .../charts/category-chart/data-tooltip-positioning/angular.json | 2 +- samples/charts/category-chart/data-tooltip/angular.json | 2 +- samples/charts/category-chart/format-specifiers/angular.json | 2 +- .../charts/category-chart/highlighting-behavior/angular.json | 2 +- samples/charts/category-chart/highlighting-mode/angular.json | 2 +- samples/charts/category-chart/legend-highlighting/angular.json | 2 +- .../category-chart/line-chart-multiple-sources/angular.json | 2 +- .../charts/category-chart/line-chart-single-source/angular.json | 2 +- samples/charts/category-chart/line-chart-styling/angular.json | 2 +- samples/charts/category-chart/marker-options/angular.json | 2 +- samples/charts/category-chart/overview/angular.json | 2 +- .../category-chart/point-chart-multiple-sources/angular.json | 2 +- .../category-chart/point-chart-single-source/angular.json | 2 +- samples/charts/category-chart/point-chart-styling/angular.json | 2 +- .../category-chart/spline-area-multiple-sources/angular.json | 2 +- .../category-chart/spline-area-single-source/angular.json | 2 +- samples/charts/category-chart/spline-area-styling/angular.json | 2 +- .../charts/category-chart/spline-multiple-sources/angular.json | 2 +- samples/charts/category-chart/spline-single-source/angular.json | 2 +- samples/charts/category-chart/spline-styling/angular.json | 2 +- .../category-chart/step-area-multiple-sources/angular.json | 2 +- .../charts/category-chart/step-area-single-source/angular.json | 2 +- samples/charts/category-chart/step-area-styling/angular.json | 2 +- .../category-chart/step-line-multiple-sources/angular.json | 2 +- .../charts/category-chart/step-line-single-source/angular.json | 2 +- samples/charts/category-chart/step-line-styling/angular.json | 2 +- samples/charts/category-chart/value-lines/angular.json | 2 +- samples/charts/data-chart/annotations-custom/angular.json | 2 +- .../data-chart/axis-annotations-corner-radius/angular.json | 2 +- samples/charts/data-chart/axis-label-rotation/angular.json | 2 +- samples/charts/data-chart/axis-min-max-gap/angular.json | 2 +- .../charts/data-chart/bar-chart-multiple-sources/angular.json | 2 +- samples/charts/data-chart/bar-chart-overlapping/angular.json | 2 +- samples/charts/data-chart/bar-chart-single-source/angular.json | 2 +- samples/charts/data-chart/bar-chart-styling/angular.json | 2 +- .../charts/data-chart/bar-chart-styling/src/app.component.html | 2 +- samples/charts/data-chart/callout-layer-styling/angular.json | 2 +- .../data-chart/chart-highlight-filter-datasource/angular.json | 2 +- .../chart-highlight-filter-multiple-series/angular.json | 2 +- samples/charts/data-chart/chart-highlight-filter/angular.json | 2 +- samples/charts/data-chart/data-legend/angular.json | 2 +- samples/charts/data-chart/data-tooltip/angular.json | 2 +- samples/charts/data-chart/financial-price-series/angular.json | 2 +- samples/charts/data-chart/polar-area-chart-styling/angular.json | 2 +- samples/charts/data-chart/polar-area-chart/angular.json | 2 +- samples/charts/data-chart/polar-line-chart/angular.json | 2 +- samples/charts/data-chart/polar-scatter-chart/angular.json | 2 +- samples/charts/data-chart/polar-spline-area-chart/angular.json | 2 +- samples/charts/data-chart/polar-spline-chart/angular.json | 2 +- .../charts/data-chart/radial-area-chart-styling/angular.json | 2 +- samples/charts/data-chart/radial-area-chart/angular.json | 2 +- samples/charts/data-chart/radial-column-chart/angular.json | 2 +- samples/charts/data-chart/radial-line-chart/angular.json | 2 +- samples/charts/data-chart/radial-pie-chart/angular.json | 2 +- samples/charts/data-chart/range-area-chart/angular.json | 2 +- samples/charts/data-chart/range-column-chart/angular.json | 2 +- .../data-chart/scatter-bubble-chart-fill-scale/angular.json | 2 +- .../scatter-bubble-chart-multiple-sources/angular.json | 2 +- .../data-chart/scatter-bubble-chart-single-source/angular.json | 2 +- .../charts/data-chart/scatter-bubble-chart-styling/angular.json | 2 +- samples/charts/data-chart/scatter-line-chart/angular.json | 2 +- samples/charts/data-chart/scatter-point-chart/angular.json | 2 +- samples/charts/data-chart/scatter-spline-chart/angular.json | 2 +- samples/charts/data-chart/stacked-100-area-chart/angular.json | 2 +- samples/charts/data-chart/stacked-100-bar-chart/angular.json | 2 +- samples/charts/data-chart/stacked-100-column-chart/angular.json | 2 +- samples/charts/data-chart/stacked-100-line-chart/angular.json | 2 +- .../data-chart/stacked-100-spline-area-chart/angular.json | 2 +- samples/charts/data-chart/stacked-100-spline-chart/angular.json | 2 +- samples/charts/data-chart/stacked-area-chart/angular.json | 2 +- samples/charts/data-chart/stacked-bar-chart/angular.json | 2 +- samples/charts/data-chart/stacked-column-chart/angular.json | 2 +- samples/charts/data-chart/stacked-line-chart/angular.json | 2 +- .../charts/data-chart/stacked-spline-area-chart/angular.json | 2 +- samples/charts/data-chart/stacked-spline-chart/angular.json | 2 +- samples/charts/data-chart/transition-event/angular.json | 2 +- samples/charts/data-chart/waterfall-chart/angular.json | 2 +- samples/charts/doughnut-chart/legend/angular.json | 2 +- samples/charts/doughnut-chart/overview/angular.json | 2 +- samples/charts/doughnut-chart/rings/angular.json | 2 +- .../data-legend-formatting-currency/angular.json | 2 +- .../financial-chart/data-legend-styling-props/angular.json | 2 +- samples/charts/financial-chart/data-legend/angular.json | 2 +- .../data-tooltip-formatting-currency/angular.json | 2 +- .../financial-chart/data-tooltip-styling-props/angular.json | 2 +- samples/charts/financial-chart/data-tooltip/angular.json | 2 +- samples/charts/financial-chart/format-specifiers/angular.json | 2 +- samples/charts/financial-chart/scrollbars/angular.json | 2 +- samples/charts/pie-chart/legend/angular.json | 2 +- samples/charts/pie-chart/others/angular.json | 2 +- samples/charts/pie-chart/overview/angular.json | 2 +- samples/charts/pie-chart/styling/angular.json | 2 +- samples/charts/sparkline/display-area/angular.json | 2 +- samples/charts/sparkline/display-column/angular.json | 2 +- samples/charts/sparkline/display-lines/angular.json | 2 +- samples/charts/sparkline/display-winloss/angular.json | 2 +- samples/charts/sparkline/markers/angular.json | 2 +- samples/charts/sparkline/normal-range/angular.json | 2 +- samples/charts/sparkline/trendlines/angular.json | 2 +- samples/charts/sparkline/unknown-values/angular.json | 2 +- .../charts/toolbar/actions-built-in-category-chart/angular.json | 2 +- samples/charts/toolbar/actions-built-in-data-chart/angular.json | 2 +- samples/charts/toolbar/custom-tool/angular.json | 2 +- .../charts/toolbar/layout-actions-for-data-chart/angular.json | 2 +- .../charts/toolbar/layout-in-vertical-orientation/angular.json | 2 +- samples/charts/toolbar/theming/angular.json | 2 +- samples/charts/tree-map/highlighting-percent-based/angular.json | 2 +- samples/charts/tree-map/layout/angular.json | 2 +- samples/charts/tree-map/overview/angular.json | 2 +- samples/charts/tree-map/styling/angular.json | 2 +- 140 files changed, 140 insertions(+), 140 deletions(-) diff --git a/samples/charts/category-chart/annotations-all/angular.json b/samples/charts/category-chart/annotations-all/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/annotations-all/angular.json +++ b/samples/charts/category-chart/annotations-all/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/annotations-callouts/angular.json b/samples/charts/category-chart/annotations-callouts/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/annotations-callouts/angular.json +++ b/samples/charts/category-chart/annotations-callouts/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/annotations-crosshairs/angular.json b/samples/charts/category-chart/annotations-crosshairs/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/annotations-crosshairs/angular.json +++ b/samples/charts/category-chart/annotations-crosshairs/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/annotations-custom/angular.json b/samples/charts/category-chart/annotations-custom/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/annotations-custom/angular.json +++ b/samples/charts/category-chart/annotations-custom/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/annotations-final-value/angular.json b/samples/charts/category-chart/annotations-final-value/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/annotations-final-value/angular.json +++ b/samples/charts/category-chart/annotations-final-value/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/annotations-highlighting/angular.json b/samples/charts/category-chart/annotations-highlighting/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/annotations-highlighting/angular.json +++ b/samples/charts/category-chart/annotations-highlighting/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/angular.json b/samples/charts/category-chart/area-chart-multiple-sources/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/angular.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/area-chart-single-source/angular.json b/samples/charts/category-chart/area-chart-single-source/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/area-chart-single-source/angular.json +++ b/samples/charts/category-chart/area-chart-single-source/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/area-chart-styling/angular.json b/samples/charts/category-chart/area-chart-styling/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/area-chart-styling/angular.json +++ b/samples/charts/category-chart/area-chart-styling/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/axis-gap/angular.json b/samples/charts/category-chart/axis-gap/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/axis-gap/angular.json +++ b/samples/charts/category-chart/axis-gap/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/axis-gridlines/angular.json b/samples/charts/category-chart/axis-gridlines/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/axis-gridlines/angular.json +++ b/samples/charts/category-chart/axis-gridlines/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/axis-inverted/angular.json b/samples/charts/category-chart/axis-inverted/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/axis-inverted/angular.json +++ b/samples/charts/category-chart/axis-inverted/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/axis-labels/angular.json b/samples/charts/category-chart/axis-labels/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/axis-labels/angular.json +++ b/samples/charts/category-chart/axis-labels/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/axis-locations/angular.json b/samples/charts/category-chart/axis-locations/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/axis-locations/angular.json +++ b/samples/charts/category-chart/axis-locations/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/axis-options/angular.json b/samples/charts/category-chart/axis-options/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/axis-options/angular.json +++ b/samples/charts/category-chart/axis-options/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/axis-overlap/angular.json b/samples/charts/category-chart/axis-overlap/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/axis-overlap/angular.json +++ b/samples/charts/category-chart/axis-overlap/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/axis-range/angular.json b/samples/charts/category-chart/axis-range/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/axis-range/angular.json +++ b/samples/charts/category-chart/axis-range/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/axis-tickmarks/angular.json b/samples/charts/category-chart/axis-tickmarks/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/axis-tickmarks/angular.json +++ b/samples/charts/category-chart/axis-tickmarks/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/axis-titles/angular.json b/samples/charts/category-chart/axis-titles/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/axis-titles/angular.json +++ b/samples/charts/category-chart/axis-titles/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/chart-highlight-filter/angular.json b/samples/charts/category-chart/chart-highlight-filter/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/chart-highlight-filter/angular.json +++ b/samples/charts/category-chart/chart-highlight-filter/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/angular.json b/samples/charts/category-chart/column-chart-multiple-sources/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/angular.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/column-chart-single-source/angular.json b/samples/charts/category-chart/column-chart-single-source/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/column-chart-single-source/angular.json +++ b/samples/charts/category-chart/column-chart-single-source/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/column-chart-styling/angular.json b/samples/charts/category-chart/column-chart-styling/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/column-chart-styling/angular.json +++ b/samples/charts/category-chart/column-chart-styling/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/angular.json b/samples/charts/category-chart/column-chart-with-tooltips/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/angular.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/custom-selection/angular.json b/samples/charts/category-chart/custom-selection/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/custom-selection/angular.json +++ b/samples/charts/category-chart/custom-selection/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/data-aggregations/angular.json b/samples/charts/category-chart/data-aggregations/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/data-aggregations/angular.json +++ b/samples/charts/category-chart/data-aggregations/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/data-filter/angular.json b/samples/charts/category-chart/data-filter/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/data-filter/angular.json +++ b/samples/charts/category-chart/data-filter/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/angular.json b/samples/charts/category-chart/data-legend-formatting-decimals/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/angular.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/data-legend/angular.json b/samples/charts/category-chart/data-legend/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/data-legend/angular.json +++ b/samples/charts/category-chart/data-legend/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/angular.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/angular.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/data-tooltip-positioning/angular.json b/samples/charts/category-chart/data-tooltip-positioning/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/angular.json +++ b/samples/charts/category-chart/data-tooltip-positioning/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/data-tooltip/angular.json b/samples/charts/category-chart/data-tooltip/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/data-tooltip/angular.json +++ b/samples/charts/category-chart/data-tooltip/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/format-specifiers/angular.json b/samples/charts/category-chart/format-specifiers/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/format-specifiers/angular.json +++ b/samples/charts/category-chart/format-specifiers/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/highlighting-behavior/angular.json b/samples/charts/category-chart/highlighting-behavior/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/highlighting-behavior/angular.json +++ b/samples/charts/category-chart/highlighting-behavior/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/highlighting-mode/angular.json b/samples/charts/category-chart/highlighting-mode/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/highlighting-mode/angular.json +++ b/samples/charts/category-chart/highlighting-mode/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/legend-highlighting/angular.json b/samples/charts/category-chart/legend-highlighting/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/legend-highlighting/angular.json +++ b/samples/charts/category-chart/legend-highlighting/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/angular.json b/samples/charts/category-chart/line-chart-multiple-sources/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/angular.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/line-chart-single-source/angular.json b/samples/charts/category-chart/line-chart-single-source/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/line-chart-single-source/angular.json +++ b/samples/charts/category-chart/line-chart-single-source/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/line-chart-styling/angular.json b/samples/charts/category-chart/line-chart-styling/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/line-chart-styling/angular.json +++ b/samples/charts/category-chart/line-chart-styling/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/marker-options/angular.json b/samples/charts/category-chart/marker-options/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/marker-options/angular.json +++ b/samples/charts/category-chart/marker-options/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/overview/angular.json b/samples/charts/category-chart/overview/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/overview/angular.json +++ b/samples/charts/category-chart/overview/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/angular.json b/samples/charts/category-chart/point-chart-multiple-sources/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/angular.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/point-chart-single-source/angular.json b/samples/charts/category-chart/point-chart-single-source/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/point-chart-single-source/angular.json +++ b/samples/charts/category-chart/point-chart-single-source/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/point-chart-styling/angular.json b/samples/charts/category-chart/point-chart-styling/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/point-chart-styling/angular.json +++ b/samples/charts/category-chart/point-chart-styling/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/angular.json b/samples/charts/category-chart/spline-area-multiple-sources/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/angular.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/spline-area-single-source/angular.json b/samples/charts/category-chart/spline-area-single-source/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/spline-area-single-source/angular.json +++ b/samples/charts/category-chart/spline-area-single-source/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/spline-area-styling/angular.json b/samples/charts/category-chart/spline-area-styling/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/spline-area-styling/angular.json +++ b/samples/charts/category-chart/spline-area-styling/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/spline-multiple-sources/angular.json b/samples/charts/category-chart/spline-multiple-sources/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/spline-multiple-sources/angular.json +++ b/samples/charts/category-chart/spline-multiple-sources/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/spline-single-source/angular.json b/samples/charts/category-chart/spline-single-source/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/spline-single-source/angular.json +++ b/samples/charts/category-chart/spline-single-source/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/spline-styling/angular.json b/samples/charts/category-chart/spline-styling/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/spline-styling/angular.json +++ b/samples/charts/category-chart/spline-styling/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/step-area-multiple-sources/angular.json b/samples/charts/category-chart/step-area-multiple-sources/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/angular.json +++ b/samples/charts/category-chart/step-area-multiple-sources/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/step-area-single-source/angular.json b/samples/charts/category-chart/step-area-single-source/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/step-area-single-source/angular.json +++ b/samples/charts/category-chart/step-area-single-source/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/step-area-styling/angular.json b/samples/charts/category-chart/step-area-styling/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/step-area-styling/angular.json +++ b/samples/charts/category-chart/step-area-styling/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/step-line-multiple-sources/angular.json b/samples/charts/category-chart/step-line-multiple-sources/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/angular.json +++ b/samples/charts/category-chart/step-line-multiple-sources/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/step-line-single-source/angular.json b/samples/charts/category-chart/step-line-single-source/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/step-line-single-source/angular.json +++ b/samples/charts/category-chart/step-line-single-source/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/step-line-styling/angular.json b/samples/charts/category-chart/step-line-styling/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/step-line-styling/angular.json +++ b/samples/charts/category-chart/step-line-styling/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/category-chart/value-lines/angular.json b/samples/charts/category-chart/value-lines/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/category-chart/value-lines/angular.json +++ b/samples/charts/category-chart/value-lines/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/annotations-custom/angular.json b/samples/charts/data-chart/annotations-custom/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/annotations-custom/angular.json +++ b/samples/charts/data-chart/annotations-custom/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/angular.json b/samples/charts/data-chart/axis-annotations-corner-radius/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/angular.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/axis-label-rotation/angular.json b/samples/charts/data-chart/axis-label-rotation/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/axis-label-rotation/angular.json +++ b/samples/charts/data-chart/axis-label-rotation/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/axis-min-max-gap/angular.json b/samples/charts/data-chart/axis-min-max-gap/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/axis-min-max-gap/angular.json +++ b/samples/charts/data-chart/axis-min-max-gap/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/angular.json b/samples/charts/data-chart/bar-chart-multiple-sources/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/angular.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/bar-chart-overlapping/angular.json b/samples/charts/data-chart/bar-chart-overlapping/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/angular.json +++ b/samples/charts/data-chart/bar-chart-overlapping/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/bar-chart-single-source/angular.json b/samples/charts/data-chart/bar-chart-single-source/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/bar-chart-single-source/angular.json +++ b/samples/charts/data-chart/bar-chart-single-source/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/bar-chart-styling/angular.json b/samples/charts/data-chart/bar-chart-styling/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/bar-chart-styling/angular.json +++ b/samples/charts/data-chart/bar-chart-styling/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/bar-chart-styling/src/app.component.html b/samples/charts/data-chart/bar-chart-styling/src/app.component.html index c5d646373..17bf7fbef 100644 --- a/samples/charts/data-chart/bar-chart-styling/src/app.component.html +++ b/samples/charts/data-chart/bar-chart-styling/src/app.component.html @@ -38,7 +38,7 @@ showDefaultTooltip="true" isTransitionInEnabled="true" isHighlightingEnabled="true" - brush="rgba(134, 6, 138, 0.6470588235294118)" + brush="rgba(134, 6, 138, 0.647058823529412)" outline="rgba(133, 6, 138, 1)" thickness="2" areaFillOpacity="0.5" diff --git a/samples/charts/data-chart/callout-layer-styling/angular.json b/samples/charts/data-chart/callout-layer-styling/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/callout-layer-styling/angular.json +++ b/samples/charts/data-chart/callout-layer-styling/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/angular.json b/samples/charts/data-chart/chart-highlight-filter-datasource/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/angular.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/angular.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/angular.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/chart-highlight-filter/angular.json b/samples/charts/data-chart/chart-highlight-filter/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/chart-highlight-filter/angular.json +++ b/samples/charts/data-chart/chart-highlight-filter/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/data-legend/angular.json b/samples/charts/data-chart/data-legend/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/data-legend/angular.json +++ b/samples/charts/data-chart/data-legend/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/data-tooltip/angular.json b/samples/charts/data-chart/data-tooltip/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/data-tooltip/angular.json +++ b/samples/charts/data-chart/data-tooltip/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/financial-price-series/angular.json b/samples/charts/data-chart/financial-price-series/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/financial-price-series/angular.json +++ b/samples/charts/data-chart/financial-price-series/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/polar-area-chart-styling/angular.json b/samples/charts/data-chart/polar-area-chart-styling/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/angular.json +++ b/samples/charts/data-chart/polar-area-chart-styling/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/polar-area-chart/angular.json b/samples/charts/data-chart/polar-area-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/polar-area-chart/angular.json +++ b/samples/charts/data-chart/polar-area-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/polar-line-chart/angular.json b/samples/charts/data-chart/polar-line-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/polar-line-chart/angular.json +++ b/samples/charts/data-chart/polar-line-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/polar-scatter-chart/angular.json b/samples/charts/data-chart/polar-scatter-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/polar-scatter-chart/angular.json +++ b/samples/charts/data-chart/polar-scatter-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/polar-spline-area-chart/angular.json b/samples/charts/data-chart/polar-spline-area-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/angular.json +++ b/samples/charts/data-chart/polar-spline-area-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/polar-spline-chart/angular.json b/samples/charts/data-chart/polar-spline-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/polar-spline-chart/angular.json +++ b/samples/charts/data-chart/polar-spline-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/radial-area-chart-styling/angular.json b/samples/charts/data-chart/radial-area-chart-styling/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/angular.json +++ b/samples/charts/data-chart/radial-area-chart-styling/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/radial-area-chart/angular.json b/samples/charts/data-chart/radial-area-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/radial-area-chart/angular.json +++ b/samples/charts/data-chart/radial-area-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/radial-column-chart/angular.json b/samples/charts/data-chart/radial-column-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/radial-column-chart/angular.json +++ b/samples/charts/data-chart/radial-column-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/radial-line-chart/angular.json b/samples/charts/data-chart/radial-line-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/radial-line-chart/angular.json +++ b/samples/charts/data-chart/radial-line-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/radial-pie-chart/angular.json b/samples/charts/data-chart/radial-pie-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/radial-pie-chart/angular.json +++ b/samples/charts/data-chart/radial-pie-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/range-area-chart/angular.json b/samples/charts/data-chart/range-area-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/range-area-chart/angular.json +++ b/samples/charts/data-chart/range-area-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/range-column-chart/angular.json b/samples/charts/data-chart/range-column-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/range-column-chart/angular.json +++ b/samples/charts/data-chart/range-column-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/angular.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/angular.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/angular.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/angular.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/angular.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/angular.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/angular.json b/samples/charts/data-chart/scatter-bubble-chart-styling/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/angular.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/scatter-line-chart/angular.json b/samples/charts/data-chart/scatter-line-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/scatter-line-chart/angular.json +++ b/samples/charts/data-chart/scatter-line-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/scatter-point-chart/angular.json b/samples/charts/data-chart/scatter-point-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/scatter-point-chart/angular.json +++ b/samples/charts/data-chart/scatter-point-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/scatter-spline-chart/angular.json b/samples/charts/data-chart/scatter-spline-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/scatter-spline-chart/angular.json +++ b/samples/charts/data-chart/scatter-spline-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/stacked-100-area-chart/angular.json b/samples/charts/data-chart/stacked-100-area-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-area-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/angular.json b/samples/charts/data-chart/stacked-100-bar-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/stacked-100-column-chart/angular.json b/samples/charts/data-chart/stacked-100-column-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-column-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/stacked-100-line-chart/angular.json b/samples/charts/data-chart/stacked-100-line-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-line-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/angular.json b/samples/charts/data-chart/stacked-100-spline-area-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/angular.json b/samples/charts/data-chart/stacked-100-spline-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/stacked-area-chart/angular.json b/samples/charts/data-chart/stacked-area-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/stacked-area-chart/angular.json +++ b/samples/charts/data-chart/stacked-area-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/stacked-bar-chart/angular.json b/samples/charts/data-chart/stacked-bar-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/stacked-bar-chart/angular.json +++ b/samples/charts/data-chart/stacked-bar-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/stacked-column-chart/angular.json b/samples/charts/data-chart/stacked-column-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/stacked-column-chart/angular.json +++ b/samples/charts/data-chart/stacked-column-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/stacked-line-chart/angular.json b/samples/charts/data-chart/stacked-line-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/stacked-line-chart/angular.json +++ b/samples/charts/data-chart/stacked-line-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/angular.json b/samples/charts/data-chart/stacked-spline-area-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/angular.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/stacked-spline-chart/angular.json b/samples/charts/data-chart/stacked-spline-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/stacked-spline-chart/angular.json +++ b/samples/charts/data-chart/stacked-spline-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/transition-event/angular.json b/samples/charts/data-chart/transition-event/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/transition-event/angular.json +++ b/samples/charts/data-chart/transition-event/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/data-chart/waterfall-chart/angular.json b/samples/charts/data-chart/waterfall-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/data-chart/waterfall-chart/angular.json +++ b/samples/charts/data-chart/waterfall-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/doughnut-chart/legend/angular.json b/samples/charts/doughnut-chart/legend/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/doughnut-chart/legend/angular.json +++ b/samples/charts/doughnut-chart/legend/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/doughnut-chart/overview/angular.json b/samples/charts/doughnut-chart/overview/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/doughnut-chart/overview/angular.json +++ b/samples/charts/doughnut-chart/overview/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/doughnut-chart/rings/angular.json b/samples/charts/doughnut-chart/rings/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/doughnut-chart/rings/angular.json +++ b/samples/charts/doughnut-chart/rings/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/angular.json b/samples/charts/financial-chart/data-legend-formatting-currency/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/angular.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/financial-chart/data-legend-styling-props/angular.json b/samples/charts/financial-chart/data-legend-styling-props/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/angular.json +++ b/samples/charts/financial-chart/data-legend-styling-props/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/financial-chart/data-legend/angular.json b/samples/charts/financial-chart/data-legend/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/financial-chart/data-legend/angular.json +++ b/samples/charts/financial-chart/data-legend/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/angular.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/angular.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/angular.json b/samples/charts/financial-chart/data-tooltip-styling-props/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/angular.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/financial-chart/data-tooltip/angular.json b/samples/charts/financial-chart/data-tooltip/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/financial-chart/data-tooltip/angular.json +++ b/samples/charts/financial-chart/data-tooltip/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/financial-chart/format-specifiers/angular.json b/samples/charts/financial-chart/format-specifiers/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/financial-chart/format-specifiers/angular.json +++ b/samples/charts/financial-chart/format-specifiers/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/financial-chart/scrollbars/angular.json b/samples/charts/financial-chart/scrollbars/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/financial-chart/scrollbars/angular.json +++ b/samples/charts/financial-chart/scrollbars/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/pie-chart/legend/angular.json b/samples/charts/pie-chart/legend/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/pie-chart/legend/angular.json +++ b/samples/charts/pie-chart/legend/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/pie-chart/others/angular.json b/samples/charts/pie-chart/others/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/pie-chart/others/angular.json +++ b/samples/charts/pie-chart/others/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/pie-chart/overview/angular.json b/samples/charts/pie-chart/overview/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/pie-chart/overview/angular.json +++ b/samples/charts/pie-chart/overview/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/pie-chart/styling/angular.json b/samples/charts/pie-chart/styling/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/pie-chart/styling/angular.json +++ b/samples/charts/pie-chart/styling/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/sparkline/display-area/angular.json b/samples/charts/sparkline/display-area/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/sparkline/display-area/angular.json +++ b/samples/charts/sparkline/display-area/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/sparkline/display-column/angular.json b/samples/charts/sparkline/display-column/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/sparkline/display-column/angular.json +++ b/samples/charts/sparkline/display-column/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/sparkline/display-lines/angular.json b/samples/charts/sparkline/display-lines/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/sparkline/display-lines/angular.json +++ b/samples/charts/sparkline/display-lines/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/sparkline/display-winloss/angular.json b/samples/charts/sparkline/display-winloss/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/sparkline/display-winloss/angular.json +++ b/samples/charts/sparkline/display-winloss/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/sparkline/markers/angular.json b/samples/charts/sparkline/markers/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/sparkline/markers/angular.json +++ b/samples/charts/sparkline/markers/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/sparkline/normal-range/angular.json b/samples/charts/sparkline/normal-range/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/sparkline/normal-range/angular.json +++ b/samples/charts/sparkline/normal-range/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/sparkline/trendlines/angular.json b/samples/charts/sparkline/trendlines/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/sparkline/trendlines/angular.json +++ b/samples/charts/sparkline/trendlines/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/sparkline/unknown-values/angular.json b/samples/charts/sparkline/unknown-values/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/sparkline/unknown-values/angular.json +++ b/samples/charts/sparkline/unknown-values/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/angular.json b/samples/charts/toolbar/actions-built-in-category-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/angular.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/angular.json b/samples/charts/toolbar/actions-built-in-data-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/angular.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/toolbar/custom-tool/angular.json b/samples/charts/toolbar/custom-tool/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/toolbar/custom-tool/angular.json +++ b/samples/charts/toolbar/custom-tool/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/angular.json b/samples/charts/toolbar/layout-actions-for-data-chart/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/angular.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/angular.json b/samples/charts/toolbar/layout-in-vertical-orientation/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/angular.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/toolbar/theming/angular.json b/samples/charts/toolbar/theming/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/toolbar/theming/angular.json +++ b/samples/charts/toolbar/theming/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/tree-map/highlighting-percent-based/angular.json b/samples/charts/tree-map/highlighting-percent-based/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/tree-map/highlighting-percent-based/angular.json +++ b/samples/charts/tree-map/highlighting-percent-based/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/tree-map/layout/angular.json b/samples/charts/tree-map/layout/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/tree-map/layout/angular.json +++ b/samples/charts/tree-map/layout/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/tree-map/overview/angular.json b/samples/charts/tree-map/overview/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/tree-map/overview/angular.json +++ b/samples/charts/tree-map/overview/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/tree-map/styling/angular.json b/samples/charts/tree-map/styling/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/tree-map/styling/angular.json +++ b/samples/charts/tree-map/styling/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", From 3ada1cdcdf14e5de9b160e76f54a1dc7a206ae68 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Thu, 6 Jun 2024 16:23:39 -0400 Subject: [PATCH 082/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.6.6.3 (#191) Co-authored-by: tfsbuild --- .../bar-chart-styling/src/app.component.html | 2 +- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 1 + .../angular.json | 120 ++++++++++++++++++ .../package.json | 44 +++++++ .../OlympicMedalsTopCountriesWithTotals.ts | 92 ++++++++++++++ .../src/app.component.html | 68 ++++++++++ .../src/app.component.scss | 3 + .../src/app.component.ts | 64 ++++++++++ .../src/app.module.ts | 31 +++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../src/index.html | 23 ++++ .../src/main.ts | 15 +++ .../src/polyfills.ts | 65 ++++++++++ .../src/styles.scss | 9 ++ .../src/typings.d.ts | 5 + .../tsconfig.app.json | 10 ++ .../tsconfig.json | 27 ++++ .../tslint.json | 31 +++++ .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../data-legend-grouping/.stackblitzrc | 1 + .../data-legend-grouping/angular.json | 120 ++++++++++++++++++ .../data-legend-grouping/package.json | 44 +++++++ .../OlympicMedalsTopCountriesWithTotals.ts | 92 ++++++++++++++ .../src/app.component.html | 56 ++++++++ .../src/app.component.scss | 3 + .../data-legend-grouping/src/app.component.ts | 64 ++++++++++ .../data-legend-grouping/src/app.module.ts | 31 +++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../data-legend-grouping/src/index.html | 23 ++++ .../data-legend-grouping/src/main.ts | 15 +++ .../data-legend-grouping/src/polyfills.ts | 65 ++++++++++ .../data-legend-grouping/src/styles.scss | 9 ++ .../data-legend-grouping/src/typings.d.ts | 5 + .../data-legend-grouping/tsconfig.app.json | 10 ++ .../data-legend-grouping/tsconfig.json | 27 ++++ .../data-legend-grouping/tslint.json | 31 +++++ .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../data-legend-styling/.stackblitzrc | 1 + .../data-legend-styling/angular.json | 120 ++++++++++++++++++ .../data-legend-styling/package.json | 44 +++++++ .../OlympicMedalsTopCountriesWithTotals.ts | 92 ++++++++++++++ .../src/app.component.html | 50 ++++++++ .../src/app.component.scss | 3 + .../data-legend-styling/src/app.component.ts | 62 +++++++++ .../data-legend-styling/src/app.module.ts | 31 +++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../data-legend-styling/src/index.html | 23 ++++ .../data-legend-styling/src/main.ts | 15 +++ .../data-legend-styling/src/polyfills.ts | 65 ++++++++++ .../data-legend-styling/src/styles.scss | 9 ++ .../data-legend-styling/src/typings.d.ts | 5 + .../data-legend-styling/tsconfig.app.json | 10 ++ .../data-legend-styling/tsconfig.json | 27 ++++ .../data-legend-styling/tslint.json | 31 +++++ .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 1 + .../angular.json | 120 ++++++++++++++++++ .../package.json | 46 +++++++ .../OlympicMedalsTopCountriesWithTotals.ts | 92 ++++++++++++++ .../src/app.component.html | 66 ++++++++++ .../src/app.component.scss | 3 + .../src/app.component.ts | 62 +++++++++ .../src/app.module.ts | 30 +++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../src/index.html | 23 ++++ .../src/main.ts | 15 +++ .../src/polyfills.ts | 65 ++++++++++ .../src/styles.scss | 9 ++ .../src/typings.d.ts | 5 + .../tsconfig.app.json | 10 ++ .../tsconfig.json | 27 ++++ .../tslint.json | 31 +++++ .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../data-tooltip-grouping/.stackblitzrc | 1 + .../data-tooltip-grouping/angular.json | 120 ++++++++++++++++++ .../data-tooltip-grouping/package.json | 46 +++++++ .../OlympicMedalsTopCountriesWithTotals.ts | 92 ++++++++++++++ .../src/app.component.html | 56 ++++++++ .../src/app.component.scss | 3 + .../src/app.component.ts | 62 +++++++++ .../data-tooltip-grouping/src/app.module.ts | 30 +++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../data-tooltip-grouping/src/index.html | 23 ++++ .../data-tooltip-grouping/src/main.ts | 15 +++ .../data-tooltip-grouping/src/polyfills.ts | 65 ++++++++++ .../data-tooltip-grouping/src/styles.scss | 9 ++ .../data-tooltip-grouping/src/typings.d.ts | 5 + .../data-tooltip-grouping/tsconfig.app.json | 10 ++ .../data-tooltip-grouping/tsconfig.json | 27 ++++ .../data-tooltip-grouping/tslint.json | 31 +++++ .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../data-tooltip-styling/.stackblitzrc | 1 + .../data-tooltip-styling/angular.json | 120 ++++++++++++++++++ .../data-tooltip-styling/package.json | 46 +++++++ .../OlympicMedalsTopCountriesWithTotals.ts | 92 ++++++++++++++ .../src/app.component.html | 42 ++++++ .../src/app.component.scss | 3 + .../data-tooltip-styling/src/app.component.ts | 58 +++++++++ .../data-tooltip-styling/src/app.module.ts | 30 +++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../data-tooltip-styling/src/index.html | 23 ++++ .../data-tooltip-styling/src/main.ts | 15 +++ .../data-tooltip-styling/src/polyfills.ts | 65 ++++++++++ .../data-tooltip-styling/src/styles.scss | 9 ++ .../data-tooltip-styling/src/typings.d.ts | 5 + .../data-tooltip-styling/tsconfig.app.json | 10 ++ .../data-tooltip-styling/tsconfig.json | 27 ++++ .../data-tooltip-styling/tslint.json | 31 +++++ 121 files changed, 3792 insertions(+), 1 deletion(-) create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/.stackblitzrc create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/angular.json create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/src/OlympicMedalsTopCountriesWithTotals.ts create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.component.html create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.component.scss create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.component.ts create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.module.ts create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/src/environments/environment.ts create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/src/index.html create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/src/main.ts create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/src/polyfills.ts create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/src/styles.scss create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/src/typings.d.ts create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/tsconfig.app.json create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/tsconfig.json create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/tslint.json create mode 100644 samples/charts/data-chart/data-legend-grouping/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/data-legend-grouping/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/data-legend-grouping/.stackblitzrc create mode 100644 samples/charts/data-chart/data-legend-grouping/angular.json create mode 100644 samples/charts/data-chart/data-legend-grouping/package.json create mode 100644 samples/charts/data-chart/data-legend-grouping/src/OlympicMedalsTopCountriesWithTotals.ts create mode 100644 samples/charts/data-chart/data-legend-grouping/src/app.component.html create mode 100644 samples/charts/data-chart/data-legend-grouping/src/app.component.scss create mode 100644 samples/charts/data-chart/data-legend-grouping/src/app.component.ts create mode 100644 samples/charts/data-chart/data-legend-grouping/src/app.module.ts create mode 100644 samples/charts/data-chart/data-legend-grouping/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/data-legend-grouping/src/environments/environment.ts create mode 100644 samples/charts/data-chart/data-legend-grouping/src/index.html create mode 100644 samples/charts/data-chart/data-legend-grouping/src/main.ts create mode 100644 samples/charts/data-chart/data-legend-grouping/src/polyfills.ts create mode 100644 samples/charts/data-chart/data-legend-grouping/src/styles.scss create mode 100644 samples/charts/data-chart/data-legend-grouping/src/typings.d.ts create mode 100644 samples/charts/data-chart/data-legend-grouping/tsconfig.app.json create mode 100644 samples/charts/data-chart/data-legend-grouping/tsconfig.json create mode 100644 samples/charts/data-chart/data-legend-grouping/tslint.json create mode 100644 samples/charts/data-chart/data-legend-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/data-legend-styling/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/data-legend-styling/.stackblitzrc create mode 100644 samples/charts/data-chart/data-legend-styling/angular.json create mode 100644 samples/charts/data-chart/data-legend-styling/package.json create mode 100644 samples/charts/data-chart/data-legend-styling/src/OlympicMedalsTopCountriesWithTotals.ts create mode 100644 samples/charts/data-chart/data-legend-styling/src/app.component.html create mode 100644 samples/charts/data-chart/data-legend-styling/src/app.component.scss create mode 100644 samples/charts/data-chart/data-legend-styling/src/app.component.ts create mode 100644 samples/charts/data-chart/data-legend-styling/src/app.module.ts create mode 100644 samples/charts/data-chart/data-legend-styling/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/data-legend-styling/src/environments/environment.ts create mode 100644 samples/charts/data-chart/data-legend-styling/src/index.html create mode 100644 samples/charts/data-chart/data-legend-styling/src/main.ts create mode 100644 samples/charts/data-chart/data-legend-styling/src/polyfills.ts create mode 100644 samples/charts/data-chart/data-legend-styling/src/styles.scss create mode 100644 samples/charts/data-chart/data-legend-styling/src/typings.d.ts create mode 100644 samples/charts/data-chart/data-legend-styling/tsconfig.app.json create mode 100644 samples/charts/data-chart/data-legend-styling/tsconfig.json create mode 100644 samples/charts/data-chart/data-legend-styling/tslint.json create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/.stackblitzrc create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/angular.json create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/OlympicMedalsTopCountriesWithTotals.ts create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.component.html create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.component.scss create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.component.ts create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.module.ts create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/environments/environment.ts create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/index.html create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/main.ts create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/polyfills.ts create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/styles.scss create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/typings.d.ts create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tsconfig.app.json create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tsconfig.json create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tslint.json create mode 100644 samples/charts/data-chart/data-tooltip-grouping/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/data-tooltip-grouping/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/data-tooltip-grouping/.stackblitzrc create mode 100644 samples/charts/data-chart/data-tooltip-grouping/angular.json create mode 100644 samples/charts/data-chart/data-tooltip-grouping/package.json create mode 100644 samples/charts/data-chart/data-tooltip-grouping/src/OlympicMedalsTopCountriesWithTotals.ts create mode 100644 samples/charts/data-chart/data-tooltip-grouping/src/app.component.html create mode 100644 samples/charts/data-chart/data-tooltip-grouping/src/app.component.scss create mode 100644 samples/charts/data-chart/data-tooltip-grouping/src/app.component.ts create mode 100644 samples/charts/data-chart/data-tooltip-grouping/src/app.module.ts create mode 100644 samples/charts/data-chart/data-tooltip-grouping/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/data-tooltip-grouping/src/environments/environment.ts create mode 100644 samples/charts/data-chart/data-tooltip-grouping/src/index.html create mode 100644 samples/charts/data-chart/data-tooltip-grouping/src/main.ts create mode 100644 samples/charts/data-chart/data-tooltip-grouping/src/polyfills.ts create mode 100644 samples/charts/data-chart/data-tooltip-grouping/src/styles.scss create mode 100644 samples/charts/data-chart/data-tooltip-grouping/src/typings.d.ts create mode 100644 samples/charts/data-chart/data-tooltip-grouping/tsconfig.app.json create mode 100644 samples/charts/data-chart/data-tooltip-grouping/tsconfig.json create mode 100644 samples/charts/data-chart/data-tooltip-grouping/tslint.json create mode 100644 samples/charts/data-chart/data-tooltip-styling/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/data-tooltip-styling/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/data-tooltip-styling/.stackblitzrc create mode 100644 samples/charts/data-chart/data-tooltip-styling/angular.json create mode 100644 samples/charts/data-chart/data-tooltip-styling/package.json create mode 100644 samples/charts/data-chart/data-tooltip-styling/src/OlympicMedalsTopCountriesWithTotals.ts create mode 100644 samples/charts/data-chart/data-tooltip-styling/src/app.component.html create mode 100644 samples/charts/data-chart/data-tooltip-styling/src/app.component.scss create mode 100644 samples/charts/data-chart/data-tooltip-styling/src/app.component.ts create mode 100644 samples/charts/data-chart/data-tooltip-styling/src/app.module.ts create mode 100644 samples/charts/data-chart/data-tooltip-styling/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/data-tooltip-styling/src/environments/environment.ts create mode 100644 samples/charts/data-chart/data-tooltip-styling/src/index.html create mode 100644 samples/charts/data-chart/data-tooltip-styling/src/main.ts create mode 100644 samples/charts/data-chart/data-tooltip-styling/src/polyfills.ts create mode 100644 samples/charts/data-chart/data-tooltip-styling/src/styles.scss create mode 100644 samples/charts/data-chart/data-tooltip-styling/src/typings.d.ts create mode 100644 samples/charts/data-chart/data-tooltip-styling/tsconfig.app.json create mode 100644 samples/charts/data-chart/data-tooltip-styling/tsconfig.json create mode 100644 samples/charts/data-chart/data-tooltip-styling/tslint.json diff --git a/samples/charts/data-chart/bar-chart-styling/src/app.component.html b/samples/charts/data-chart/bar-chart-styling/src/app.component.html index 17bf7fbef..c5d646373 100644 --- a/samples/charts/data-chart/bar-chart-styling/src/app.component.html +++ b/samples/charts/data-chart/bar-chart-styling/src/app.component.html @@ -38,7 +38,7 @@ showDefaultTooltip="true" isTransitionInEnabled="true" isHighlightingEnabled="true" - brush="rgba(134, 6, 138, 0.647058823529412)" + brush="rgba(134, 6, 138, 0.6470588235294118)" outline="rgba(133, 6, 138, 1)" thickness="2" areaFillOpacity="0.5" diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/.codesandbox/Dockerfile b/samples/charts/data-chart/data-legend-grouping-and-highlighting/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/.codesandbox/tasks.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/.stackblitzrc b/samples/charts/data-chart/data-legend-grouping-and-highlighting/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/angular.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json new file mode 100644 index 000000000..35620b319 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "^2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.3.3" + } +} diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/OlympicMedalsTopCountriesWithTotals.ts b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/OlympicMedalsTopCountriesWithTotals.ts new file mode 100644 index 000000000..63183e6f0 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/OlympicMedalsTopCountriesWithTotals.ts @@ -0,0 +1,92 @@ +export class OlympicMedalsTopCountriesWithTotalsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public america: number; + public americaGold: number; + public china: number; + public chinaGold: number; + public russia: number; + public russiaGold: number; + public total: number; + +} +export class OlympicMedalsTopCountriesWithTotals extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `1996`, + america: 148, + americaGold: 50, + china: 110, + chinaGold: 40, + russia: 95, + russiaGold: 20, + total: 353 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2000`, + america: 142, + americaGold: 40, + china: 115, + chinaGold: 45, + russia: 91, + russiaGold: 40, + total: 348 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2004`, + america: 134, + americaGold: 35, + china: 121, + chinaGold: 55, + russia: 86, + russiaGold: 25, + total: 341 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2008`, + america: 131, + americaGold: 20, + china: 129, + chinaGold: 35, + russia: 65, + russiaGold: 35, + total: 325 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2012`, + america: 135, + americaGold: 25, + china: 115, + chinaGold: 50, + russia: 77, + russiaGold: 15, + total: 327 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2016`, + america: 146, + americaGold: 45, + china: 112, + chinaGold: 45, + russia: 88, + russiaGold: 30, + total: 346 + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.component.html b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.component.html new file mode 100644 index 000000000..cefd8cb52 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.component.html @@ -0,0 +1,68 @@ +
+
+ + +
+
+ + + + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.component.scss b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.component.ts b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.component.ts new file mode 100644 index 000000000..92a707fb1 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.component.ts @@ -0,0 +1,64 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, LegendDescriptionModule, NumberAbbreviatorDescriptionModule, DataChartCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule, DataLegendDescriptionModule, DataChartAnnotationDescriptionModule } from 'igniteui-angular-core'; +import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithTotals } from './OlympicMedalsTopCountriesWithTotals'; +import { IgxDataLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxDataLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("columnSeries1", { static: true } ) + private columnSeries1: IgxColumnSeriesComponent + @ViewChild("columnSeries2", { static: true } ) + private columnSeries2: IgxColumnSeriesComponent + @ViewChild("columnSeries3", { static: true } ) + private columnSeries3: IgxColumnSeriesComponent + private _olympicMedalsTopCountriesWithTotals: OlympicMedalsTopCountriesWithTotals = null; + public get olympicMedalsTopCountriesWithTotals(): OlympicMedalsTopCountriesWithTotals { + if (this._olympicMedalsTopCountriesWithTotals == null) + { + this._olympicMedalsTopCountriesWithTotals = new OlympicMedalsTopCountriesWithTotals(); + } + return this._olympicMedalsTopCountriesWithTotals; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + LegendDescriptionModule.register(context); + NumberAbbreviatorDescriptionModule.register(context); + DataChartCoreDescriptionModule.register(context); + DataChartCategoryDescriptionModule.register(context); + DataChartInteractivityDescriptionModule.register(context); + DataLegendDescriptionModule.register(context); + DataChartAnnotationDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.module.ts b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.module.ts new file mode 100644 index 000000000..4014dfdbf --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.module.ts @@ -0,0 +1,31 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartInteractivityModule, IgxDataLegendModule, IgxDataChartAnnotationModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxLegendModule, + IgxNumberAbbreviatorModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartInteractivityModule, + IgxDataLegendModule, + IgxDataChartAnnotationModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/environments/environment.prod.ts b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/environments/environment.ts b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/index.html b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/main.ts b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/polyfills.ts b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/styles.scss b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/typings.d.ts b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/tsconfig.app.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/tsconfig.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/tslint.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/data-legend-grouping/.codesandbox/Dockerfile b/samples/charts/data-chart/data-legend-grouping/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-grouping/.codesandbox/tasks.json b/samples/charts/data-chart/data-legend-grouping/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-grouping/.stackblitzrc b/samples/charts/data-chart/data-legend-grouping/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-grouping/angular.json b/samples/charts/data-chart/data-legend-grouping/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json new file mode 100644 index 000000000..35620b319 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "^2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.3.3" + } +} diff --git a/samples/charts/data-chart/data-legend-grouping/src/OlympicMedalsTopCountriesWithTotals.ts b/samples/charts/data-chart/data-legend-grouping/src/OlympicMedalsTopCountriesWithTotals.ts new file mode 100644 index 000000000..63183e6f0 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/src/OlympicMedalsTopCountriesWithTotals.ts @@ -0,0 +1,92 @@ +export class OlympicMedalsTopCountriesWithTotalsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public america: number; + public americaGold: number; + public china: number; + public chinaGold: number; + public russia: number; + public russiaGold: number; + public total: number; + +} +export class OlympicMedalsTopCountriesWithTotals extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `1996`, + america: 148, + americaGold: 50, + china: 110, + chinaGold: 40, + russia: 95, + russiaGold: 20, + total: 353 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2000`, + america: 142, + americaGold: 40, + china: 115, + chinaGold: 45, + russia: 91, + russiaGold: 40, + total: 348 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2004`, + america: 134, + americaGold: 35, + china: 121, + chinaGold: 55, + russia: 86, + russiaGold: 25, + total: 341 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2008`, + america: 131, + americaGold: 20, + china: 129, + chinaGold: 35, + russia: 65, + russiaGold: 35, + total: 325 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2012`, + america: 135, + americaGold: 25, + china: 115, + chinaGold: 50, + russia: 77, + russiaGold: 15, + total: 327 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2016`, + america: 146, + americaGold: 45, + china: 112, + chinaGold: 45, + russia: 88, + russiaGold: 30, + total: 346 + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/data-chart/data-legend-grouping/src/app.component.html b/samples/charts/data-chart/data-legend-grouping/src/app.component.html new file mode 100644 index 000000000..cea9e8230 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/src/app.component.html @@ -0,0 +1,56 @@ +
+
+ + +
+
+ + + + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/data-legend-grouping/src/app.component.scss b/samples/charts/data-chart/data-legend-grouping/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-legend-grouping/src/app.component.ts b/samples/charts/data-chart/data-legend-grouping/src/app.component.ts new file mode 100644 index 000000000..92a707fb1 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/src/app.component.ts @@ -0,0 +1,64 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, LegendDescriptionModule, NumberAbbreviatorDescriptionModule, DataChartCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule, DataLegendDescriptionModule, DataChartAnnotationDescriptionModule } from 'igniteui-angular-core'; +import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithTotals } from './OlympicMedalsTopCountriesWithTotals'; +import { IgxDataLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxDataLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("columnSeries1", { static: true } ) + private columnSeries1: IgxColumnSeriesComponent + @ViewChild("columnSeries2", { static: true } ) + private columnSeries2: IgxColumnSeriesComponent + @ViewChild("columnSeries3", { static: true } ) + private columnSeries3: IgxColumnSeriesComponent + private _olympicMedalsTopCountriesWithTotals: OlympicMedalsTopCountriesWithTotals = null; + public get olympicMedalsTopCountriesWithTotals(): OlympicMedalsTopCountriesWithTotals { + if (this._olympicMedalsTopCountriesWithTotals == null) + { + this._olympicMedalsTopCountriesWithTotals = new OlympicMedalsTopCountriesWithTotals(); + } + return this._olympicMedalsTopCountriesWithTotals; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + LegendDescriptionModule.register(context); + NumberAbbreviatorDescriptionModule.register(context); + DataChartCoreDescriptionModule.register(context); + DataChartCategoryDescriptionModule.register(context); + DataChartInteractivityDescriptionModule.register(context); + DataLegendDescriptionModule.register(context); + DataChartAnnotationDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/data-legend-grouping/src/app.module.ts b/samples/charts/data-chart/data-legend-grouping/src/app.module.ts new file mode 100644 index 000000000..4014dfdbf --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/src/app.module.ts @@ -0,0 +1,31 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartInteractivityModule, IgxDataLegendModule, IgxDataChartAnnotationModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxLegendModule, + IgxNumberAbbreviatorModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartInteractivityModule, + IgxDataLegendModule, + IgxDataChartAnnotationModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/data-legend-grouping/src/environments/environment.prod.ts b/samples/charts/data-chart/data-legend-grouping/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/data-legend-grouping/src/environments/environment.ts b/samples/charts/data-chart/data-legend-grouping/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/data-legend-grouping/src/index.html b/samples/charts/data-chart/data-legend-grouping/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/data-legend-grouping/src/main.ts b/samples/charts/data-chart/data-legend-grouping/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/data-legend-grouping/src/polyfills.ts b/samples/charts/data-chart/data-legend-grouping/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/data-legend-grouping/src/styles.scss b/samples/charts/data-chart/data-legend-grouping/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/data-legend-grouping/src/typings.d.ts b/samples/charts/data-chart/data-legend-grouping/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/data-legend-grouping/tsconfig.app.json b/samples/charts/data-chart/data-legend-grouping/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/data-legend-grouping/tsconfig.json b/samples/charts/data-chart/data-legend-grouping/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-grouping/tslint.json b/samples/charts/data-chart/data-legend-grouping/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/data-legend-styling/.codesandbox/Dockerfile b/samples/charts/data-chart/data-legend-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-styling/.codesandbox/tasks.json b/samples/charts/data-chart/data-legend-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-styling/.stackblitzrc b/samples/charts/data-chart/data-legend-styling/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-styling/angular.json b/samples/charts/data-chart/data-legend-styling/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json new file mode 100644 index 000000000..35620b319 --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "^2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.3.3" + } +} diff --git a/samples/charts/data-chart/data-legend-styling/src/OlympicMedalsTopCountriesWithTotals.ts b/samples/charts/data-chart/data-legend-styling/src/OlympicMedalsTopCountriesWithTotals.ts new file mode 100644 index 000000000..63183e6f0 --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/src/OlympicMedalsTopCountriesWithTotals.ts @@ -0,0 +1,92 @@ +export class OlympicMedalsTopCountriesWithTotalsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public america: number; + public americaGold: number; + public china: number; + public chinaGold: number; + public russia: number; + public russiaGold: number; + public total: number; + +} +export class OlympicMedalsTopCountriesWithTotals extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `1996`, + america: 148, + americaGold: 50, + china: 110, + chinaGold: 40, + russia: 95, + russiaGold: 20, + total: 353 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2000`, + america: 142, + americaGold: 40, + china: 115, + chinaGold: 45, + russia: 91, + russiaGold: 40, + total: 348 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2004`, + america: 134, + americaGold: 35, + china: 121, + chinaGold: 55, + russia: 86, + russiaGold: 25, + total: 341 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2008`, + america: 131, + americaGold: 20, + china: 129, + chinaGold: 35, + russia: 65, + russiaGold: 35, + total: 325 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2012`, + america: 135, + americaGold: 25, + china: 115, + chinaGold: 50, + russia: 77, + russiaGold: 15, + total: 327 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2016`, + america: 146, + americaGold: 45, + china: 112, + chinaGold: 45, + russia: 88, + russiaGold: 30, + total: 346 + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/data-chart/data-legend-styling/src/app.component.html b/samples/charts/data-chart/data-legend-styling/src/app.component.html new file mode 100644 index 000000000..dc9c7a2e2 --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/src/app.component.html @@ -0,0 +1,50 @@ +
+
+ + +
+
+ + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/data-legend-styling/src/app.component.scss b/samples/charts/data-chart/data-legend-styling/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-legend-styling/src/app.component.ts b/samples/charts/data-chart/data-legend-styling/src/app.component.ts new file mode 100644 index 000000000..868110677 --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/src/app.component.ts @@ -0,0 +1,62 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, LegendDescriptionModule, NumberAbbreviatorDescriptionModule, DataChartCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule, DataLegendDescriptionModule, DataChartAnnotationDescriptionModule } from 'igniteui-angular-core'; +import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithTotals } from './OlympicMedalsTopCountriesWithTotals'; +import { IgxDataLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxDataLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("columnSeries1", { static: true } ) + private columnSeries1: IgxColumnSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent + private _olympicMedalsTopCountriesWithTotals: OlympicMedalsTopCountriesWithTotals = null; + public get olympicMedalsTopCountriesWithTotals(): OlympicMedalsTopCountriesWithTotals { + if (this._olympicMedalsTopCountriesWithTotals == null) + { + this._olympicMedalsTopCountriesWithTotals = new OlympicMedalsTopCountriesWithTotals(); + } + return this._olympicMedalsTopCountriesWithTotals; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + LegendDescriptionModule.register(context); + NumberAbbreviatorDescriptionModule.register(context); + DataChartCoreDescriptionModule.register(context); + DataChartCategoryDescriptionModule.register(context); + DataChartInteractivityDescriptionModule.register(context); + DataLegendDescriptionModule.register(context); + DataChartAnnotationDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/data-legend-styling/src/app.module.ts b/samples/charts/data-chart/data-legend-styling/src/app.module.ts new file mode 100644 index 000000000..4014dfdbf --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/src/app.module.ts @@ -0,0 +1,31 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartInteractivityModule, IgxDataLegendModule, IgxDataChartAnnotationModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxLegendModule, + IgxNumberAbbreviatorModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartInteractivityModule, + IgxDataLegendModule, + IgxDataChartAnnotationModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/data-legend-styling/src/environments/environment.prod.ts b/samples/charts/data-chart/data-legend-styling/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/data-legend-styling/src/environments/environment.ts b/samples/charts/data-chart/data-legend-styling/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/data-legend-styling/src/index.html b/samples/charts/data-chart/data-legend-styling/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/data-legend-styling/src/main.ts b/samples/charts/data-chart/data-legend-styling/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/data-legend-styling/src/polyfills.ts b/samples/charts/data-chart/data-legend-styling/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/data-legend-styling/src/styles.scss b/samples/charts/data-chart/data-legend-styling/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/data-legend-styling/src/typings.d.ts b/samples/charts/data-chart/data-legend-styling/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/data-legend-styling/tsconfig.app.json b/samples/charts/data-chart/data-legend-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/data-legend-styling/tsconfig.json b/samples/charts/data-chart/data-legend-styling/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-styling/tslint.json b/samples/charts/data-chart/data-legend-styling/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/.codesandbox/Dockerfile b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/.codesandbox/tasks.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/.stackblitzrc b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/angular.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json new file mode 100644 index 000000000..b18743c2c --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -0,0 +1,46 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "^2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.3.3" + } +} diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/OlympicMedalsTopCountriesWithTotals.ts b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/OlympicMedalsTopCountriesWithTotals.ts new file mode 100644 index 000000000..63183e6f0 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/OlympicMedalsTopCountriesWithTotals.ts @@ -0,0 +1,92 @@ +export class OlympicMedalsTopCountriesWithTotalsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public america: number; + public americaGold: number; + public china: number; + public chinaGold: number; + public russia: number; + public russiaGold: number; + public total: number; + +} +export class OlympicMedalsTopCountriesWithTotals extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `1996`, + america: 148, + americaGold: 50, + china: 110, + chinaGold: 40, + russia: 95, + russiaGold: 20, + total: 353 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2000`, + america: 142, + americaGold: 40, + china: 115, + chinaGold: 45, + russia: 91, + russiaGold: 40, + total: 348 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2004`, + america: 134, + americaGold: 35, + china: 121, + chinaGold: 55, + russia: 86, + russiaGold: 25, + total: 341 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2008`, + america: 131, + americaGold: 20, + china: 129, + chinaGold: 35, + russia: 65, + russiaGold: 35, + total: 325 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2012`, + america: 135, + americaGold: 25, + china: 115, + chinaGold: 50, + russia: 77, + russiaGold: 15, + total: 327 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2016`, + america: 146, + americaGold: 45, + china: 112, + chinaGold: 45, + russia: 88, + russiaGold: 30, + total: 346 + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.component.html b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.component.html new file mode 100644 index 000000000..7e21a56ee --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.component.html @@ -0,0 +1,66 @@ +
+
+ + + + + + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.component.scss b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.component.ts b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.component.ts new file mode 100644 index 000000000..883055c04 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.component.ts @@ -0,0 +1,62 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataChartCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule, DataChartAnnotationDescriptionModule } from 'igniteui-angular-core'; +import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithTotals } from './OlympicMedalsTopCountriesWithTotals'; +import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("columnSeries1", { static: true } ) + private columnSeries1: IgxColumnSeriesComponent + @ViewChild("columnSeries2", { static: true } ) + private columnSeries2: IgxColumnSeriesComponent + @ViewChild("columnSeries3", { static: true } ) + private columnSeries3: IgxColumnSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent + private _olympicMedalsTopCountriesWithTotals: OlympicMedalsTopCountriesWithTotals = null; + public get olympicMedalsTopCountriesWithTotals(): OlympicMedalsTopCountriesWithTotals { + if (this._olympicMedalsTopCountriesWithTotals == null) + { + this._olympicMedalsTopCountriesWithTotals = new OlympicMedalsTopCountriesWithTotals(); + } + return this._olympicMedalsTopCountriesWithTotals; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + DataChartCoreDescriptionModule.register(context); + DataChartCategoryDescriptionModule.register(context); + DataChartInteractivityDescriptionModule.register(context); + DataChartAnnotationDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.module.ts b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.module.ts new file mode 100644 index 000000000..f2aa4328f --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.module.ts @@ -0,0 +1,30 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/environments/environment.prod.ts b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/environments/environment.ts b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/index.html b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/main.ts b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/polyfills.ts b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/styles.scss b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/typings.d.ts b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tsconfig.app.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tsconfig.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tslint.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/data-tooltip-grouping/.codesandbox/Dockerfile b/samples/charts/data-chart/data-tooltip-grouping/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-grouping/.codesandbox/tasks.json b/samples/charts/data-chart/data-tooltip-grouping/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-grouping/.stackblitzrc b/samples/charts/data-chart/data-tooltip-grouping/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-grouping/angular.json b/samples/charts/data-chart/data-tooltip-grouping/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json new file mode 100644 index 000000000..b18743c2c --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -0,0 +1,46 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "^2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.3.3" + } +} diff --git a/samples/charts/data-chart/data-tooltip-grouping/src/OlympicMedalsTopCountriesWithTotals.ts b/samples/charts/data-chart/data-tooltip-grouping/src/OlympicMedalsTopCountriesWithTotals.ts new file mode 100644 index 000000000..63183e6f0 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/src/OlympicMedalsTopCountriesWithTotals.ts @@ -0,0 +1,92 @@ +export class OlympicMedalsTopCountriesWithTotalsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public america: number; + public americaGold: number; + public china: number; + public chinaGold: number; + public russia: number; + public russiaGold: number; + public total: number; + +} +export class OlympicMedalsTopCountriesWithTotals extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `1996`, + america: 148, + americaGold: 50, + china: 110, + chinaGold: 40, + russia: 95, + russiaGold: 20, + total: 353 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2000`, + america: 142, + americaGold: 40, + china: 115, + chinaGold: 45, + russia: 91, + russiaGold: 40, + total: 348 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2004`, + america: 134, + americaGold: 35, + china: 121, + chinaGold: 55, + russia: 86, + russiaGold: 25, + total: 341 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2008`, + america: 131, + americaGold: 20, + china: 129, + chinaGold: 35, + russia: 65, + russiaGold: 35, + total: 325 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2012`, + america: 135, + americaGold: 25, + china: 115, + chinaGold: 50, + russia: 77, + russiaGold: 15, + total: 327 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2016`, + america: 146, + americaGold: 45, + china: 112, + chinaGold: 45, + russia: 88, + russiaGold: 30, + total: 346 + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/data-chart/data-tooltip-grouping/src/app.component.html b/samples/charts/data-chart/data-tooltip-grouping/src/app.component.html new file mode 100644 index 000000000..7522afd73 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/src/app.component.html @@ -0,0 +1,56 @@ +
+
+ + + + + + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/data-tooltip-grouping/src/app.component.scss b/samples/charts/data-chart/data-tooltip-grouping/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-tooltip-grouping/src/app.component.ts b/samples/charts/data-chart/data-tooltip-grouping/src/app.component.ts new file mode 100644 index 000000000..883055c04 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/src/app.component.ts @@ -0,0 +1,62 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataChartCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule, DataChartAnnotationDescriptionModule } from 'igniteui-angular-core'; +import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithTotals } from './OlympicMedalsTopCountriesWithTotals'; +import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("columnSeries1", { static: true } ) + private columnSeries1: IgxColumnSeriesComponent + @ViewChild("columnSeries2", { static: true } ) + private columnSeries2: IgxColumnSeriesComponent + @ViewChild("columnSeries3", { static: true } ) + private columnSeries3: IgxColumnSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent + private _olympicMedalsTopCountriesWithTotals: OlympicMedalsTopCountriesWithTotals = null; + public get olympicMedalsTopCountriesWithTotals(): OlympicMedalsTopCountriesWithTotals { + if (this._olympicMedalsTopCountriesWithTotals == null) + { + this._olympicMedalsTopCountriesWithTotals = new OlympicMedalsTopCountriesWithTotals(); + } + return this._olympicMedalsTopCountriesWithTotals; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + DataChartCoreDescriptionModule.register(context); + DataChartCategoryDescriptionModule.register(context); + DataChartInteractivityDescriptionModule.register(context); + DataChartAnnotationDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/data-tooltip-grouping/src/app.module.ts b/samples/charts/data-chart/data-tooltip-grouping/src/app.module.ts new file mode 100644 index 000000000..f2aa4328f --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/src/app.module.ts @@ -0,0 +1,30 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/data-tooltip-grouping/src/environments/environment.prod.ts b/samples/charts/data-chart/data-tooltip-grouping/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/data-tooltip-grouping/src/environments/environment.ts b/samples/charts/data-chart/data-tooltip-grouping/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/data-tooltip-grouping/src/index.html b/samples/charts/data-chart/data-tooltip-grouping/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/data-tooltip-grouping/src/main.ts b/samples/charts/data-chart/data-tooltip-grouping/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/data-tooltip-grouping/src/polyfills.ts b/samples/charts/data-chart/data-tooltip-grouping/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/data-tooltip-grouping/src/styles.scss b/samples/charts/data-chart/data-tooltip-grouping/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/data-tooltip-grouping/src/typings.d.ts b/samples/charts/data-chart/data-tooltip-grouping/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/data-tooltip-grouping/tsconfig.app.json b/samples/charts/data-chart/data-tooltip-grouping/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/data-tooltip-grouping/tsconfig.json b/samples/charts/data-chart/data-tooltip-grouping/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-grouping/tslint.json b/samples/charts/data-chart/data-tooltip-grouping/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/data-tooltip-styling/.codesandbox/Dockerfile b/samples/charts/data-chart/data-tooltip-styling/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-styling/.codesandbox/tasks.json b/samples/charts/data-chart/data-tooltip-styling/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-styling/.stackblitzrc b/samples/charts/data-chart/data-tooltip-styling/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-styling/angular.json b/samples/charts/data-chart/data-tooltip-styling/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json new file mode 100644 index 000000000..b18743c2c --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -0,0 +1,46 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "^17.2.1", + "@angular/common": "^17.2.1", + "@angular/compiler": "^17.2.1", + "@angular/core": "^17.2.1", + "@angular/forms": "^17.2.1", + "@angular/platform-browser": "^17.2.1", + "@angular/platform-browser-dynamic": "^17.2.1", + "@types/hammerjs": "2.0.39", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "^2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "^7.8.1", + "tslib": "^2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "17.2.0", + "@angular/compiler-cli": "17.2.1", + "@angular/language-service": "17.2.1", + "@angular-devkit/build-angular": "17.2.0", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.3.3" + } +} diff --git a/samples/charts/data-chart/data-tooltip-styling/src/OlympicMedalsTopCountriesWithTotals.ts b/samples/charts/data-chart/data-tooltip-styling/src/OlympicMedalsTopCountriesWithTotals.ts new file mode 100644 index 000000000..63183e6f0 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/src/OlympicMedalsTopCountriesWithTotals.ts @@ -0,0 +1,92 @@ +export class OlympicMedalsTopCountriesWithTotalsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public america: number; + public americaGold: number; + public china: number; + public chinaGold: number; + public russia: number; + public russiaGold: number; + public total: number; + +} +export class OlympicMedalsTopCountriesWithTotals extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `1996`, + america: 148, + americaGold: 50, + china: 110, + chinaGold: 40, + russia: 95, + russiaGold: 20, + total: 353 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2000`, + america: 142, + americaGold: 40, + china: 115, + chinaGold: 45, + russia: 91, + russiaGold: 40, + total: 348 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2004`, + america: 134, + americaGold: 35, + china: 121, + chinaGold: 55, + russia: 86, + russiaGold: 25, + total: 341 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2008`, + america: 131, + americaGold: 20, + china: 129, + chinaGold: 35, + russia: 65, + russiaGold: 35, + total: 325 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2012`, + america: 135, + americaGold: 25, + china: 115, + chinaGold: 50, + russia: 77, + russiaGold: 15, + total: 327 + }), + new OlympicMedalsTopCountriesWithTotalsItem( + { + year: `2016`, + america: 146, + americaGold: 45, + china: 112, + chinaGold: 45, + russia: 88, + russiaGold: 30, + total: 346 + }), + ]; + super(...(newItems.slice(0, items))); + } + } +} diff --git a/samples/charts/data-chart/data-tooltip-styling/src/app.component.html b/samples/charts/data-chart/data-tooltip-styling/src/app.component.html new file mode 100644 index 000000000..7df3aecb4 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/src/app.component.html @@ -0,0 +1,42 @@ +
+
+ + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/data-tooltip-styling/src/app.component.scss b/samples/charts/data-chart/data-tooltip-styling/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-tooltip-styling/src/app.component.ts b/samples/charts/data-chart/data-tooltip-styling/src/app.component.ts new file mode 100644 index 000000000..c898f34f9 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/src/app.component.ts @@ -0,0 +1,58 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataChartCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule, DataChartAnnotationDescriptionModule } from 'igniteui-angular-core'; +import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithTotals } from './OlympicMedalsTopCountriesWithTotals'; +import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("columnSeries1", { static: true } ) + private columnSeries1: IgxColumnSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent + private _olympicMedalsTopCountriesWithTotals: OlympicMedalsTopCountriesWithTotals = null; + public get olympicMedalsTopCountriesWithTotals(): OlympicMedalsTopCountriesWithTotals { + if (this._olympicMedalsTopCountriesWithTotals == null) + { + this._olympicMedalsTopCountriesWithTotals = new OlympicMedalsTopCountriesWithTotals(); + } + return this._olympicMedalsTopCountriesWithTotals; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + DataChartCoreDescriptionModule.register(context); + DataChartCategoryDescriptionModule.register(context); + DataChartInteractivityDescriptionModule.register(context); + DataChartAnnotationDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/data-tooltip-styling/src/app.module.ts b/samples/charts/data-chart/data-tooltip-styling/src/app.module.ts new file mode 100644 index 000000000..f2aa4328f --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/src/app.module.ts @@ -0,0 +1,30 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/data-tooltip-styling/src/environments/environment.prod.ts b/samples/charts/data-chart/data-tooltip-styling/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/data-tooltip-styling/src/environments/environment.ts b/samples/charts/data-chart/data-tooltip-styling/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/data-tooltip-styling/src/index.html b/samples/charts/data-chart/data-tooltip-styling/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/data-tooltip-styling/src/main.ts b/samples/charts/data-chart/data-tooltip-styling/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/data-tooltip-styling/src/polyfills.ts b/samples/charts/data-chart/data-tooltip-styling/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/data-tooltip-styling/src/styles.scss b/samples/charts/data-chart/data-tooltip-styling/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/data-tooltip-styling/src/typings.d.ts b/samples/charts/data-chart/data-tooltip-styling/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/data-tooltip-styling/tsconfig.app.json b/samples/charts/data-chart/data-tooltip-styling/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/data-tooltip-styling/tsconfig.json b/samples/charts/data-chart/data-tooltip-styling/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-styling/tslint.json b/samples/charts/data-chart/data-tooltip-styling/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} From 6fd00c8e1f959e7117c4e65e639c777c0e3eb50b Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Tue, 11 Jun 2024 14:54:32 +0300 Subject: [PATCH 083/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.6.11.3 --- .../highlighting-behavior/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 - .../src/config/tsconfig.base.json | 24 - .../src/config/tsconfig.spec.json | 19 - .../src/config/tsconfig.worker.json | 14 - .../highlighting-mode/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 - .../src/config/tsconfig.base.json | 24 - .../src/config/tsconfig.spec.json | 19 - .../src/config/tsconfig.worker.json | 14 - .../legend-highlighting/sandbox.config.json | 5 - .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 - .../src/config/tsconfig.base.json | 24 - .../src/config/tsconfig.spec.json | 19 - .../src/config/tsconfig.worker.json | 14 - .../sandbox.config.json | 5 - .../src/WorldDebtAndPopulation.ts | 1845 ----------------- .../src/config/tsconfig-es5.app.json | 6 - .../src/config/tsconfig.app.json | 12 - .../src/config/tsconfig.base.json | 24 - .../src/config/tsconfig.spec.json | 19 - .../src/config/tsconfig.worker.json | 14 - .../src/WorldDebtAndPopulation.ts | 1845 ----------------- 26 files changed, 4010 deletions(-) delete mode 100644 samples/charts/category-chart/highlighting-behavior/sandbox.config.json delete mode 100644 samples/charts/category-chart/highlighting-behavior/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.worker.json delete mode 100644 samples/charts/category-chart/highlighting-mode/sandbox.config.json delete mode 100644 samples/charts/category-chart/highlighting-mode/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/highlighting-mode/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/highlighting-mode/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/highlighting-mode/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/highlighting-mode/src/config/tsconfig.worker.json delete mode 100644 samples/charts/category-chart/legend-highlighting/sandbox.config.json delete mode 100644 samples/charts/category-chart/legend-highlighting/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/category-chart/legend-highlighting/src/config/tsconfig.app.json delete mode 100644 samples/charts/category-chart/legend-highlighting/src/config/tsconfig.base.json delete mode 100644 samples/charts/category-chart/legend-highlighting/src/config/tsconfig.spec.json delete mode 100644 samples/charts/category-chart/legend-highlighting/src/config/tsconfig.worker.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/sandbox.config.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldDebtAndPopulation.ts delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig-es5.app.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.app.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.base.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.spec.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.worker.json delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldDebtAndPopulation.ts diff --git a/samples/charts/category-chart/highlighting-behavior/sandbox.config.json b/samples/charts/category-chart/highlighting-behavior/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/highlighting-behavior/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.app.json b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.base.json b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.spec.json b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.worker.json b/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/highlighting-behavior/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/highlighting-mode/sandbox.config.json b/samples/charts/category-chart/highlighting-mode/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/highlighting-mode/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.app.json b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.base.json b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.spec.json b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.worker.json b/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/highlighting-mode/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/category-chart/legend-highlighting/sandbox.config.json b/samples/charts/category-chart/legend-highlighting/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/category-chart/legend-highlighting/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig-es5.app.json b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.app.json b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.base.json b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.spec.json b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.worker.json b/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/category-chart/legend-highlighting/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/sandbox.config.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/sandbox.config.json deleted file mode 100644 index 07f53508e..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/sandbox.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser" -} \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldDebtAndPopulation.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldDebtAndPopulation.ts deleted file mode 100644 index d93f37f2b..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldDebtAndPopulation.ts +++ /dev/null @@ -1,1845 +0,0 @@ -export class WorldDebtAndPopulationItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public countryCode: string; - public countryName: string; - public gdpPerCapita: number; - public unemploymentRate: number; - public televisions: number; - public publicDebt: number; - public population: number; - public oilProduction: number; - public medianAge: number; - public internetUsers: number; - public electricityProduction: number; - public birthRate: number; - -} -export class WorldDebtAndPopulation extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new WorldDebtAndPopulationItem( - { - countryCode: `AL`, - countryName: `Albania`, - gdpPerCapita: 5800, - unemploymentRate: 13, - televisions: 700000, - publicDebt: 51, - population: 3619778, - oilProduction: 7006, - medianAge: 30, - internetUsers: 471200, - electricityProduction: 5385, - birthRate: 15 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `DZ`, - countryName: `Algeria`, - gdpPerCapita: 6700, - unemploymentRate: 12, - televisions: 3100000, - publicDebt: 18, - population: 33769668, - oilProduction: 1358000, - medianAge: 26, - internetUsers: 3500000, - electricityProduction: 31910, - birthRate: 17 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AO`, - countryName: `Angola`, - gdpPerCapita: 7800, - unemploymentRate: 0, - televisions: 196000, - publicDebt: 12, - population: 12531357, - oilProduction: 1712000, - medianAge: 18, - internetUsers: 100000, - electricityProduction: 2585, - birthRate: 44 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AR`, - countryName: `Argentina`, - gdpPerCapita: 13100, - unemploymentRate: 9, - televisions: 7950000, - publicDebt: 56, - population: 40134425, - oilProduction: 730000, - medianAge: 30, - internetUsers: 9309000, - electricityProduction: 101100, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AW`, - countryName: `Aruba`, - gdpPerCapita: 21800, - unemploymentRate: 7, - televisions: 20000, - publicDebt: 46, - population: 101541, - oilProduction: 2356, - medianAge: 38, - internetUsers: 24000, - electricityProduction: 770, - birthRate: 13 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AU`, - countryName: `Australia`, - gdpPerCapita: 37300, - unemploymentRate: 4, - televisions: 10150000, - publicDebt: 16, - population: 21007310, - oilProduction: 540000, - medianAge: 37, - internetUsers: 11240000, - electricityProduction: 236700, - birthRate: 13 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AT`, - countryName: `Austria`, - gdpPerCapita: 39300, - unemploymentRate: 4, - televisions: 10150000, - publicDebt: 59, - population: 8205533, - oilProduction: 23320, - medianAge: 42, - internetUsers: 4277000, - electricityProduction: 61020, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AZ`, - countryName: `Azerbaijan`, - gdpPerCapita: 8000, - unemploymentRate: 1, - televisions: 170000, - publicDebt: 7, - population: 8177717, - oilProduction: 934700, - medianAge: 28, - internetUsers: 1036000, - electricityProduction: 23800, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BH`, - countryName: `Bahrain`, - gdpPerCapita: 33900, - unemploymentRate: 15, - televisions: 275000, - publicDebt: 31, - population: 718306, - oilProduction: 184300, - medianAge: 30, - internetUsers: 250000, - electricityProduction: 8187, - birthRate: 17 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BD`, - countryName: `Bangladesh`, - gdpPerCapita: 1400, - unemploymentRate: 3, - televisions: 770000, - publicDebt: 37, - population: 153546896, - oilProduction: 6746, - medianAge: 23, - internetUsers: 500000, - electricityProduction: 21350, - birthRate: 29 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BE`, - countryName: `Belgium`, - gdpPerCapita: 36200, - unemploymentRate: 8, - televisions: 4720000, - publicDebt: 85, - population: 10403951, - oilProduction: 9000, - medianAge: 41, - internetUsers: 5220000, - electricityProduction: 80840, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BT`, - countryName: `Bhutan`, - gdpPerCapita: 5200, - unemploymentRate: 3, - televisions: 11000, - publicDebt: 81, - population: 682321, - oilProduction: 0, - medianAge: 24, - internetUsers: 40000, - electricityProduction: 2000, - birthRate: 21 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BO`, - countryName: `Bolivia`, - gdpPerCapita: 4400, - unemploymentRate: 8, - televisions: 900000, - publicDebt: 46, - population: 9247816, - oilProduction: 46470, - medianAge: 23, - internetUsers: 1000000, - electricityProduction: 5293, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BA`, - countryName: `Bosnia and Herzegovina`, - gdpPerCapita: 6100, - unemploymentRate: 46, - televisions: 0, - publicDebt: 34, - population: 4590310, - oilProduction: 0, - medianAge: 39, - internetUsers: 1055000, - electricityProduction: 12220, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BW`, - countryName: `Botswana`, - gdpPerCapita: 14300, - unemploymentRate: 8, - televisions: 31000, - publicDebt: 5, - population: 1842323, - oilProduction: 0, - medianAge: 21, - internetUsers: 80000, - electricityProduction: 912, - birthRate: 23 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BR`, - countryName: `Brazil`, - gdpPerCapita: 9500, - unemploymentRate: 9, - televisions: 36500000, - publicDebt: 45, - population: 196342592, - oilProduction: 1797000, - medianAge: 28, - internetUsers: 50000000, - electricityProduction: 396400, - birthRate: 19 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BG`, - countryName: `Bulgaria`, - gdpPerCapita: 11800, - unemploymentRate: 8, - televisions: 3310000, - publicDebt: 11, - population: 7262675, - oilProduction: 3661, - medianAge: 41, - internetUsers: 1899000, - electricityProduction: 45700, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CM`, - countryName: `Cameroon`, - gdpPerCapita: 2200, - unemploymentRate: 30, - televisions: 450000, - publicDebt: 16, - population: 18467692, - oilProduction: 85300, - medianAge: 19, - internetUsers: 370000, - electricityProduction: 4090, - birthRate: 35 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CA`, - countryName: `Canada`, - gdpPerCapita: 38600, - unemploymentRate: 6, - televisions: 21500000, - publicDebt: 64, - population: 33212696, - oilProduction: 3310000, - medianAge: 40, - internetUsers: 28000000, - electricityProduction: 609600, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CL`, - countryName: `Chile`, - gdpPerCapita: 14300, - unemploymentRate: 7, - televisions: 3150000, - publicDebt: 4, - population: 16454143, - oilProduction: 15100, - medianAge: 31, - internetUsers: 557000, - electricityProduction: 47600, - birthRate: 15 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CN`, - countryName: `China`, - gdpPerCapita: 5400, - unemploymentRate: 4, - televisions: 400000000, - publicDebt: 18, - population: 1330044544, - oilProduction: 3725000, - medianAge: 34, - internetUsers: 253000000, - electricityProduction: 3256000, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CO`, - countryName: `Colombia`, - gdpPerCapita: 7400, - unemploymentRate: 11, - televisions: 4590000, - publicDebt: 53, - population: 45013672, - oilProduction: 531300, - medianAge: 27, - internetUsers: 12100000, - electricityProduction: 50470, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CR`, - countryName: `Costa Rica`, - gdpPerCapita: 11100, - unemploymentRate: 5, - televisions: 525000, - publicDebt: 47, - population: 4195914, - oilProduction: 0, - medianAge: 27, - internetUsers: 1500000, - electricityProduction: 8349, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IV`, - countryName: `Ivory Coast`, - gdpPerCapita: 1700, - unemploymentRate: 0, - televisions: 1090000, - publicDebt: 75, - population: 20179602, - oilProduction: 48370, - medianAge: 19, - internetUsers: 300000, - electricityProduction: 5305, - birthRate: 33 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `HR`, - countryName: `Croatia`, - gdpPerCapita: 15500, - unemploymentRate: 12, - televisions: 1220000, - publicDebt: 48, - population: 4491543, - oilProduction: 17100, - medianAge: 41, - internetUsers: 1995000, - electricityProduction: 11990, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CU`, - countryName: `Cuba`, - gdpPerCapita: 11000, - unemploymentRate: 2, - televisions: 2640000, - publicDebt: 37, - population: 11423952, - oilProduction: 58300, - medianAge: 37, - internetUsers: 1310000, - electricityProduction: 16450, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CY`, - countryName: `Cyprus`, - gdpPerCapita: 27100, - unemploymentRate: 4, - televisions: 0, - publicDebt: 60, - population: 792604, - oilProduction: 0, - medianAge: 35, - internetUsers: 380000, - electricityProduction: 4618, - birthRate: 13 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CZ`, - countryName: `Czech Republic`, - gdpPerCapita: 24500, - unemploymentRate: 7, - televisions: 3405834, - publicDebt: 26, - population: 10220911, - oilProduction: 18030, - medianAge: 40, - internetUsers: 4400000, - electricityProduction: 77380, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `DK`, - countryName: `Denmark`, - gdpPerCapita: 37200, - unemploymentRate: 3, - televisions: 3121000, - publicDebt: 26, - population: 5484723, - oilProduction: 342000, - medianAge: 40, - internetUsers: 3500000, - electricityProduction: 43350, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `DO`, - countryName: `Dominican Republic`, - gdpPerCapita: 6600, - unemploymentRate: 16, - televisions: 770000, - publicDebt: 41, - population: 9507133, - oilProduction: 12, - medianAge: 25, - internetUsers: 1677000, - electricityProduction: 12220, - birthRate: 23 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `EC`, - countryName: `Ecuador`, - gdpPerCapita: 7200, - unemploymentRate: 9, - televisions: 2500000, - publicDebt: 33, - population: 13927650, - oilProduction: 511100, - medianAge: 24, - internetUsers: 1549000, - electricityProduction: 12940, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `EG`, - countryName: `Egypt`, - gdpPerCapita: 5000, - unemploymentRate: 9, - televisions: 7700000, - publicDebt: 106, - population: 81713520, - oilProduction: 665000, - medianAge: 25, - internetUsers: 8620000, - electricityProduction: 102500, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SV`, - countryName: `El Salvador`, - gdpPerCapita: 6000, - unemploymentRate: 6, - televisions: 600000, - publicDebt: 37, - population: 7066403, - oilProduction: 0, - medianAge: 22, - internetUsers: 700000, - electricityProduction: 5316, - birthRate: 26 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GQ`, - countryName: `Equatorial Guinea`, - gdpPerCapita: 28200, - unemploymentRate: 30, - televisions: 4000, - publicDebt: 2, - population: 616459, - oilProduction: 385500, - medianAge: 19, - internetUsers: 8000, - electricityProduction: 28, - birthRate: 37 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `EE`, - countryName: `Estonia`, - gdpPerCapita: 21800, - unemploymentRate: 5, - televisions: 605000, - publicDebt: 3, - population: 1307605, - oilProduction: 6930, - medianAge: 40, - internetUsers: 780000, - electricityProduction: 9599, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ET`, - countryName: `Ethiopia`, - gdpPerCapita: 700, - unemploymentRate: 0, - televisions: 682000, - publicDebt: 45, - population: 82544840, - oilProduction: 7, - medianAge: 17, - internetUsers: 291000, - electricityProduction: 2864, - birthRate: 44 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `FI`, - countryName: `Finland`, - gdpPerCapita: 36000, - unemploymentRate: 7, - televisions: 3200000, - publicDebt: 36, - population: 5244749, - oilProduction: 8951, - medianAge: 42, - internetUsers: 3600000, - electricityProduction: 73470, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GA`, - countryName: `Gabon`, - gdpPerCapita: 14000, - unemploymentRate: 21, - televisions: 63000, - publicDebt: 53, - population: 1485832, - oilProduction: 240000, - medianAge: 19, - internetUsers: 145000, - electricityProduction: 1520, - birthRate: 36 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `DE`, - countryName: `Germany`, - gdpPerCapita: 34100, - unemploymentRate: 9, - televisions: 51400000, - publicDebt: 65, - population: 82369552, - oilProduction: 141700, - medianAge: 43, - internetUsers: 42500000, - electricityProduction: 579400, - birthRate: 8 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GH`, - countryName: `Ghana`, - gdpPerCapita: 1400, - unemploymentRate: 11, - televisions: 1900000, - publicDebt: 59, - population: 23382848, - oilProduction: 700, - medianAge: 20, - internetUsers: 650000, - electricityProduction: 7042, - birthRate: 29 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GI`, - countryName: `Gibraltar`, - gdpPerCapita: 38200, - unemploymentRate: 3, - televisions: 10000, - publicDebt: 16, - population: 28002, - oilProduction: 0, - medianAge: 40, - internetUsers: 6200, - electricityProduction: 141, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GR`, - countryName: `Greece`, - gdpPerCapita: 30600, - unemploymentRate: 8, - televisions: 2540000, - publicDebt: 90, - population: 10722816, - oilProduction: 5687, - medianAge: 42, - internetUsers: 2540000, - electricityProduction: 56130, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GT`, - countryName: `Guatemala`, - gdpPerCapita: 5100, - unemploymentRate: 3, - televisions: 1323000, - publicDebt: 21, - population: 13002206, - oilProduction: 13000, - medianAge: 19, - internetUsers: 1320000, - electricityProduction: 7281, - birthRate: 29 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `HN`, - countryName: `Honduras`, - gdpPerCapita: 4300, - unemploymentRate: 28, - televisions: 570000, - publicDebt: 24, - population: 7639327, - oilProduction: 0, - medianAge: 20, - internetUsers: 344100, - electricityProduction: 5339, - birthRate: 27 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `HU`, - countryName: `Hungary`, - gdpPerCapita: 19300, - unemploymentRate: 7, - televisions: 4420000, - publicDebt: 67, - population: 9930915, - oilProduction: 42180, - medianAge: 39, - internetUsers: 4200000, - electricityProduction: 33690, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IS`, - countryName: `Iceland`, - gdpPerCapita: 40400, - unemploymentRate: 1, - televisions: 98000, - publicDebt: 28, - population: 304367, - oilProduction: 0, - medianAge: 35, - internetUsers: 202300, - electricityProduction: 8533, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IN`, - countryName: `India`, - gdpPerCapita: 2600, - unemploymentRate: 7, - televisions: 63000000, - publicDebt: 58, - population: 1147995904, - oilProduction: 810000, - medianAge: 25, - internetUsers: 80000000, - electricityProduction: 661600, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ID`, - countryName: `Indonesia`, - gdpPerCapita: 3600, - unemploymentRate: 9, - televisions: 13750000, - publicDebt: 34, - population: 237512352, - oilProduction: 837500, - medianAge: 27, - internetUsers: 13000000, - electricityProduction: 125900, - birthRate: 19 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IR`, - countryName: `Iran`, - gdpPerCapita: 11700, - unemploymentRate: 12, - televisions: 4610000, - publicDebt: 17, - population: 65875224, - oilProduction: 3956000, - medianAge: 26, - internetUsers: 23000000, - electricityProduction: 170400, - birthRate: 17 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IE`, - countryName: `Ireland`, - gdpPerCapita: 46600, - unemploymentRate: 5, - televisions: 1820000, - publicDebt: 25, - population: 4156119, - oilProduction: 0, - medianAge: 35, - internetUsers: 1708000, - electricityProduction: 24130, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IL`, - countryName: `Israel`, - gdpPerCapita: 26600, - unemploymentRate: 7, - televisions: 1690000, - publicDebt: 81, - population: 7112359, - oilProduction: 100, - medianAge: 29, - internetUsers: 2000000, - electricityProduction: 46850, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IT`, - countryName: `Italy`, - gdpPerCapita: 30900, - unemploymentRate: 6, - televisions: 30300000, - publicDebt: 104, - population: 58145320, - oilProduction: 164800, - medianAge: 43, - internetUsers: 32000000, - electricityProduction: 278500, - birthRate: 8 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `JM`, - countryName: `Jamaica`, - gdpPerCapita: 7400, - unemploymentRate: 10, - televisions: 460000, - publicDebt: 127, - population: 2804332, - oilProduction: 0, - medianAge: 23, - internetUsers: 1500000, - electricityProduction: 6985, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `JP`, - countryName: `Japan`, - gdpPerCapita: 33500, - unemploymentRate: 4, - televisions: 86500000, - publicDebt: 170, - population: 127288416, - oilProduction: 125000, - medianAge: 44, - internetUsers: 88110000, - electricityProduction: 1025000, - birthRate: 8 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `JO`, - countryName: `Jordan`, - gdpPerCapita: 4700, - unemploymentRate: 14, - televisions: 500000, - publicDebt: 72, - population: 6198677, - oilProduction: 0, - medianAge: 24, - internetUsers: 1127000, - electricityProduction: 9074, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `KZ`, - countryName: `Kazakhstan`, - gdpPerCapita: 11000, - unemploymentRate: 7, - televisions: 3880000, - publicDebt: 8, - population: 15340533, - oilProduction: 1355000, - medianAge: 29, - internetUsers: 1901000, - electricityProduction: 76340, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `KE`, - countryName: `Kenya`, - gdpPerCapita: 1700, - unemploymentRate: 40, - televisions: 730000, - publicDebt: 49, - population: 37953840, - oilProduction: 0, - medianAge: 19, - internetUsers: 3000000, - electricityProduction: 5502, - birthRate: 38 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `KR`, - countryName: `Korea, South`, - gdpPerCapita: 25000, - unemploymentRate: 3, - televisions: 15900000, - publicDebt: 28, - population: 48379392, - oilProduction: 17050, - medianAge: 37, - internetUsers: 35590000, - electricityProduction: 403200, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `KW`, - countryName: `Kuwait`, - gdpPerCapita: 55900, - unemploymentRate: 2, - televisions: 875000, - publicDebt: 10, - population: 2596799, - oilProduction: 2440000, - medianAge: 26, - internetUsers: 900000, - electricityProduction: 41110, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LV`, - countryName: `Latvia`, - gdpPerCapita: 17700, - unemploymentRate: 6, - televisions: 1220000, - publicDebt: 7, - population: 2245423, - oilProduction: 0, - medianAge: 40, - internetUsers: 1770000, - electricityProduction: 4778, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LB`, - countryName: `Lebanon`, - gdpPerCapita: 10300, - unemploymentRate: 20, - televisions: 1180000, - publicDebt: 187, - population: 3971941, - oilProduction: 0, - medianAge: 29, - internetUsers: 950000, - electricityProduction: 9183, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LY`, - countryName: `Libya`, - gdpPerCapita: 12400, - unemploymentRate: 30, - televisions: 730000, - publicDebt: 5, - population: 6173579, - oilProduction: 1712000, - medianAge: 24, - internetUsers: 260000, - electricityProduction: 21150, - birthRate: 26 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LT`, - countryName: `Lithuania`, - gdpPerCapita: 16800, - unemploymentRate: 4, - televisions: 1700000, - publicDebt: 17, - population: 3565205, - oilProduction: 13160, - medianAge: 39, - internetUsers: 1330000, - electricityProduction: 13480, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LU`, - countryName: `Luxembourg`, - gdpPerCapita: 79400, - unemploymentRate: 4, - televisions: 285000, - publicDebt: 6, - population: 486006, - oilProduction: 0, - medianAge: 39, - internetUsers: 345000, - electricityProduction: 3156, - birthRate: 12 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MK`, - countryName: `Macedonia`, - gdpPerCapita: 8400, - unemploymentRate: 35, - televisions: 510000, - publicDebt: 31, - population: 2061315, - oilProduction: 0, - medianAge: 35, - internetUsers: 685000, - electricityProduction: 6051, - birthRate: 12 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MW`, - countryName: `Malawi`, - gdpPerCapita: 800, - unemploymentRate: 0, - televisions: 0, - publicDebt: 51, - population: 13931831, - oilProduction: 0, - medianAge: 17, - internetUsers: 139500, - electricityProduction: 1397, - birthRate: 42 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MY`, - countryName: `Malaysia`, - gdpPerCapita: 14500, - unemploymentRate: 3, - televisions: 10800000, - publicDebt: 42, - population: 25274132, - oilProduction: 757500, - medianAge: 25, - internetUsers: 15868000, - electricityProduction: 82360, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MU`, - countryName: `Mauritius`, - gdpPerCapita: 11300, - unemploymentRate: 9, - televisions: 258000, - publicDebt: 63, - population: 1274189, - oilProduction: 0, - medianAge: 32, - internetUsers: 340000, - electricityProduction: 2350, - birthRate: 15 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MX`, - countryName: `Mexico`, - gdpPerCapita: 12400, - unemploymentRate: 4, - televisions: 25600000, - publicDebt: 23, - population: 109955400, - oilProduction: 3083000, - medianAge: 26, - internetUsers: 22812000, - electricityProduction: 222400, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MD`, - countryName: `Moldova`, - gdpPerCapita: 2300, - unemploymentRate: 2, - televisions: 1260000, - publicDebt: 23, - population: 4324450, - oilProduction: 0, - medianAge: 34, - internetUsers: 700000, - electricityProduction: 3881, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MA`, - countryName: `Morocco`, - gdpPerCapita: 3700, - unemploymentRate: 10, - televisions: 3100000, - publicDebt: 67, - population: 34343220, - oilProduction: 300, - medianAge: 25, - internetUsers: 7300000, - electricityProduction: 21370, - birthRate: 21 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MZ`, - countryName: `Mozambique`, - gdpPerCapita: 800, - unemploymentRate: 21, - televisions: 67600, - publicDebt: 22, - population: 21284700, - oilProduction: 0, - medianAge: 17, - internetUsers: 200000, - electricityProduction: 13170, - birthRate: 38 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NA`, - countryName: `Namibia`, - gdpPerCapita: 5200, - unemploymentRate: 5, - televisions: 60000, - publicDebt: 22, - population: 2088669, - oilProduction: 0, - medianAge: 21, - internetUsers: 101000, - electricityProduction: 1688, - birthRate: 23 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NL`, - countryName: `Netherlands`, - gdpPerCapita: 39000, - unemploymentRate: 5, - televisions: 8100000, - publicDebt: 46, - population: 16645313, - oilProduction: 76000, - medianAge: 40, - internetUsers: 15000000, - electricityProduction: 94340, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NZ`, - countryName: `New Zealand`, - gdpPerCapita: 27200, - unemploymentRate: 4, - televisions: 1926000, - publicDebt: 21, - population: 4173460, - oilProduction: 25880, - medianAge: 36, - internetUsers: 3360000, - electricityProduction: 42060, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NI`, - countryName: `Nicaragua`, - gdpPerCapita: 2800, - unemploymentRate: 5, - televisions: 320000, - publicDebt: 63, - population: 5785846, - oilProduction: 0, - medianAge: 22, - internetUsers: 155000, - electricityProduction: 2778, - birthRate: 24 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NG`, - countryName: `Nigeria`, - gdpPerCapita: 2100, - unemploymentRate: 5, - televisions: 6900000, - publicDebt: 14, - population: 146255312, - oilProduction: 2166000, - medianAge: 19, - internetUsers: 10000000, - electricityProduction: 22530, - birthRate: 37 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NO`, - countryName: `Norway`, - gdpPerCapita: 53300, - unemploymentRate: 3, - televisions: 2030000, - publicDebt: 83, - population: 4644457, - oilProduction: 2560000, - medianAge: 39, - internetUsers: 3800000, - electricityProduction: 135800, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `OM`, - countryName: `Oman`, - gdpPerCapita: 1900, - unemploymentRate: 15, - televisions: 1600000, - publicDebt: 4, - population: 3311640, - oilProduction: 710800, - medianAge: 19, - internetUsers: 340000, - electricityProduction: 11890, - birthRate: 35 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PK`, - countryName: `Pakistan`, - gdpPerCapita: 2400, - unemploymentRate: 6, - televisions: 3100000, - publicDebt: 51, - population: 172800048, - oilProduction: 62000, - medianAge: 21, - internetUsers: 17500000, - electricityProduction: 89820, - birthRate: 28 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PA`, - countryName: `Panama`, - gdpPerCapita: 10700, - unemploymentRate: 6, - televisions: 510000, - publicDebt: 53, - population: 3309679, - oilProduction: 0, - medianAge: 27, - internetUsers: 525200, - electricityProduction: 5661, - birthRate: 21 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PG`, - countryName: `Papua New Guinea`, - gdpPerCapita: 2100, - unemploymentRate: 2, - televisions: 59841, - publicDebt: 40, - population: 5931769, - oilProduction: 47800, - medianAge: 22, - internetUsers: 110000, - electricityProduction: 3698, - birthRate: 28 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PY`, - countryName: `Paraguay`, - gdpPerCapita: 4000, - unemploymentRate: 6, - televisions: 990000, - publicDebt: 27, - population: 6831306, - oilProduction: 0, - medianAge: 22, - internetUsers: 280000, - electricityProduction: 70000, - birthRate: 28 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PE`, - countryName: `Peru`, - gdpPerCapita: 7600, - unemploymentRate: 7, - televisions: 3060000, - publicDebt: 29, - population: 29180900, - oilProduction: 119000, - medianAge: 26, - internetUsers: 7636000, - electricityProduction: 24970, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PH`, - countryName: `Philippines`, - gdpPerCapita: 3200, - unemploymentRate: 7, - televisions: 3700000, - publicDebt: 56, - population: 96061680, - oilProduction: 0, - medianAge: 22, - internetUsers: 5300000, - electricityProduction: 53670, - birthRate: 26 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PL`, - countryName: `Poland`, - gdpPerCapita: 16200, - unemploymentRate: 13, - televisions: 13050000, - publicDebt: 43, - population: 38500696, - oilProduction: 0, - medianAge: 38, - internetUsers: 16000000, - electricityProduction: 146200, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PT`, - countryName: `Portugal`, - gdpPerCapita: 21800, - unemploymentRate: 8, - televisions: 3310000, - publicDebt: 64, - population: 10676910, - oilProduction: 9500, - medianAge: 39, - internetUsers: 3549000, - electricityProduction: 49040, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `QA`, - countryName: `Qatar`, - gdpPerCapita: 87600, - unemploymentRate: 1, - televisions: 230000, - publicDebt: 11, - population: 824789, - oilProduction: 797500, - medianAge: 31, - internetUsers: 351000, - electricityProduction: 13540, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `RO`, - countryName: `Romania`, - gdpPerCapita: 11100, - unemploymentRate: 4, - televisions: 5250000, - publicDebt: 13, - population: 22246862, - oilProduction: 115000, - medianAge: 37, - internetUsers: 12000000, - electricityProduction: 60520, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `RU`, - countryName: `Russia`, - gdpPerCapita: 14800, - unemploymentRate: 6, - televisions: 60500000, - publicDebt: 6, - population: 140702096, - oilProduction: 9870000, - medianAge: 38, - internetUsers: 30000000, - electricityProduction: 1000000, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SA`, - countryName: `Saudi Arabia`, - gdpPerCapita: 19800, - unemploymentRate: 13, - televisions: 5100000, - publicDebt: 24, - population: 28146656, - oilProduction: 11000000, - medianAge: 22, - internetUsers: 6200000, - electricityProduction: 165600, - birthRate: 29 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SN`, - countryName: `Senegal`, - gdpPerCapita: 1700, - unemploymentRate: 48, - televisions: 361000, - publicDebt: 23, - population: 12853259, - oilProduction: 0, - medianAge: 19, - internetUsers: 820000, - electricityProduction: 2159, - birthRate: 37 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SC`, - countryName: `Seychelles`, - gdpPerCapita: 16600, - unemploymentRate: 2, - televisions: 11000, - publicDebt: 92, - population: 82247, - oilProduction: 0, - medianAge: 29, - internetUsers: 32000, - electricityProduction: 252, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SG`, - countryName: `Singapore`, - gdpPerCapita: 49900, - unemploymentRate: 2, - televisions: 1330000, - publicDebt: 96, - population: 4608167, - oilProduction: 9836, - medianAge: 38, - internetUsers: 3105000, - electricityProduction: 39440, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SK`, - countryName: `Slovakia`, - gdpPerCapita: 20200, - unemploymentRate: 8, - televisions: 2620000, - publicDebt: 36, - population: 5455407, - oilProduction: 12840, - medianAge: 37, - internetUsers: 2350000, - electricityProduction: 29890, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SI`, - countryName: `Slovenia`, - gdpPerCapita: 28000, - unemploymentRate: 8, - televisions: 710000, - publicDebt: 24, - population: 2007711, - oilProduction: 5, - medianAge: 41, - internetUsers: 1300000, - electricityProduction: 14900, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ZA`, - countryName: `South Africa`, - gdpPerCapita: 9700, - unemploymentRate: 24, - televisions: 6000000, - publicDebt: 31, - population: 48782756, - oilProduction: 200000, - medianAge: 24, - internetUsers: 5100000, - electricityProduction: 264000, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ES`, - countryName: `Spain`, - gdpPerCapita: 33600, - unemploymentRate: 8, - televisions: 16200000, - publicDebt: 36, - population: 40491052, - oilProduction: 29350, - medianAge: 41, - internetUsers: 19690000, - electricityProduction: 270300, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LK`, - countryName: `Sri Lanka`, - gdpPerCapita: 4000, - unemploymentRate: 6, - televisions: 1530000, - publicDebt: 86, - population: 21128772, - oilProduction: 0, - medianAge: 30, - internetUsers: 771700, - electricityProduction: 8411, - birthRate: 17 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SD`, - countryName: `Sudan`, - gdpPerCapita: 1900, - unemploymentRate: 19, - televisions: 2380000, - publicDebt: 106, - population: 40218456, - oilProduction: 484500, - medianAge: 19, - internetUsers: 1500000, - electricityProduction: 3944, - birthRate: 34 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SE`, - countryName: `Sweden`, - gdpPerCapita: 37500, - unemploymentRate: 6, - televisions: 4600000, - publicDebt: 42, - population: 9045389, - oilProduction: 2350, - medianAge: 41, - internetUsers: 7000000, - electricityProduction: 153200, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CH`, - countryName: `Switzerland`, - gdpPerCapita: 40100, - unemploymentRate: 3, - televisions: 3310000, - publicDebt: 44, - population: 7581520, - oilProduction: 3202, - medianAge: 41, - internetUsers: 4610000, - electricityProduction: 56100, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SY`, - countryName: `Syria`, - gdpPerCapita: 4700, - unemploymentRate: 9, - televisions: 1050000, - publicDebt: 38, - population: 19747586, - oilProduction: 379000, - medianAge: 21, - internetUsers: 3470000, - electricityProduction: 153200, - birthRate: 27 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TW`, - countryName: `Taiwan`, - gdpPerCapita: 30100, - unemploymentRate: 4, - televisions: 8800000, - publicDebt: 28, - population: 22920946, - oilProduction: 600, - medianAge: 36, - internetUsers: 14760000, - electricityProduction: 235000, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TZ`, - countryName: `Tanzania`, - gdpPerCapita: 1300, - unemploymentRate: 0, - televisions: 103000, - publicDebt: 20, - population: 40213160, - oilProduction: 0, - medianAge: 18, - internetUsers: 400000, - electricityProduction: 1880, - birthRate: 35 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TH`, - countryName: `Thailand`, - gdpPerCapita: 8000, - unemploymentRate: 1, - televisions: 15190000, - publicDebt: 38, - population: 65493296, - oilProduction: 310000, - medianAge: 33, - internetUsers: 13416000, - electricityProduction: 124600, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TN`, - countryName: `Tunisia`, - gdpPerCapita: 7400, - unemploymentRate: 14, - televisions: 920000, - publicDebt: 55, - population: 10383577, - oilProduction: 76900, - medianAge: 29, - internetUsers: 1722000, - electricityProduction: 12850, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TR`, - countryName: `Turkey`, - gdpPerCapita: 12000, - unemploymentRate: 10, - televisions: 20900000, - publicDebt: 39, - population: 71892808, - oilProduction: 45460, - medianAge: 29, - internetUsers: 13150000, - electricityProduction: 154200, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UG`, - countryName: `Uganda`, - gdpPerCapita: 1000, - unemploymentRate: 0, - televisions: 500000, - publicDebt: 21, - population: 31367972, - oilProduction: 0, - medianAge: 15, - internetUsers: 2000000, - electricityProduction: 1983, - birthRate: 48 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UA`, - countryName: `Ukraine`, - gdpPerCapita: 7000, - unemploymentRate: 2, - televisions: 18050000, - publicDebt: 12, - population: 45994288, - oilProduction: 90400, - medianAge: 39, - internetUsers: 10000000, - electricityProduction: 192100, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AE`, - countryName: `United Arab Emirates`, - gdpPerCapita: 37000, - unemploymentRate: 2, - televisions: 310000, - publicDebt: 21, - population: 4621399, - oilProduction: 2510000, - medianAge: 30, - internetUsers: 2300000, - electricityProduction: 57060, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UK`, - countryName: `United Kingdom`, - gdpPerCapita: 35000, - unemploymentRate: 5, - televisions: 30500000, - publicDebt: 44, - population: 60943912, - oilProduction: 1636000, - medianAge: 40, - internetUsers: 40200000, - electricityProduction: 372600, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `US`, - countryName: `United States`, - gdpPerCapita: 45800, - unemploymentRate: 5, - televisions: 219000000, - publicDebt: 61, - population: 303824640, - oilProduction: 7460000, - medianAge: 37, - internetUsers: 223000000, - electricityProduction: 4062000, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UY`, - countryName: `Uruguay`, - gdpPerCapita: 10800, - unemploymentRate: 9, - televisions: 782000, - publicDebt: 65, - population: 3477778, - oilProduction: 27830, - medianAge: 33, - internetUsers: 968000, - electricityProduction: 9200, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UZ`, - countryName: `Uzbekistan`, - gdpPerCapita: 2400, - unemploymentRate: 1, - televisions: 6400000, - publicDebt: 19, - population: 27345026, - oilProduction: 109400, - medianAge: 24, - internetUsers: 1200000, - electricityProduction: 49000, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `VE`, - countryName: `Venezuela`, - gdpPerCapita: 12800, - unemploymentRate: 9, - televisions: 4100000, - publicDebt: 19, - population: 26414816, - oilProduction: 2398000, - medianAge: 25, - internetUsers: 5720000, - electricityProduction: 99200, - birthRate: 21 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `VN`, - countryName: `Vietnam`, - gdpPerCapita: 2600, - unemploymentRate: 4, - televisions: 3570000, - publicDebt: 42, - population: 86116560, - oilProduction: 324000, - medianAge: 27, - internetUsers: 17870000, - electricityProduction: 59010, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `WF`, - countryName: `Wallis and Futuna`, - gdpPerCapita: 3800, - unemploymentRate: 15, - televisions: 0, - publicDebt: 6, - population: 15237, - oilProduction: 0, - medianAge: 0, - internetUsers: 900, - electricityProduction: 0, - birthRate: 0 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `YE`, - countryName: `Yemen`, - gdpPerCapita: 2500, - unemploymentRate: 35, - televisions: 470000, - publicDebt: 34, - population: 23013376, - oilProduction: 339200, - medianAge: 17, - internetUsers: 320000, - electricityProduction: 4456, - birthRate: 42 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ZM`, - countryName: `Zambia`, - gdpPerCapita: 1400, - unemploymentRate: 50, - televisions: 277000, - publicDebt: 28, - population: 11669534, - oilProduction: 150, - medianAge: 17, - internetUsers: 500000, - electricityProduction: 8850, - birthRate: 41 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ZW`, - countryName: `Zimbabwe`, - gdpPerCapita: 200, - unemploymentRate: 80, - televisions: 370000, - publicDebt: 218, - population: 11350111, - oilProduction: 0, - medianAge: 18, - internetUsers: 1351000, - electricityProduction: 9950, - birthRate: 32 - }), - ]; - super(...(newItems.slice(0, items))); - } - } -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig-es5.app.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig-es5.app.json deleted file mode 100644 index 7e8983eb4..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig-es5.app.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "compilerOptions": { - "target": "ES2022" - } - } diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.app.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.app.json deleted file mode 100644 index f722e3fe4..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.app.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/app", - "baseUrl": "./", - "types": [] - }, - "files": [ - "../main.ts", - "../polyfills.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.base.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.base.json deleted file mode 100644 index 5574be5e5..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.base.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "importHelpers": true, - "module": "ES2022", - "outDir": "../../dist/out-tsc", - "sourceMap": false, - "declaration": false, - "moduleResolution": "node", - "experimentalDecorators": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "downlevelIteration": true, // required for excel library - "target": "ES2022", - "typeRoots": [ - "../../node_modules/@types" - ], - "lib": [ - "ES2022", - "dom" - ], - "useDefineForClassFields": false - } -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.spec.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.spec.json deleted file mode 100644 index 6eb8c055c..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.spec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/spec", - "baseUrl": "./", - "types": [ - "jasmine", - "node" - ] - }, - "files": [ - "../test.ts", - "../polyfills.ts" - ], - "include": [ - "../**/*.spec.ts", - "../**/*.d.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.worker.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.worker.json deleted file mode 100644 index 4867b1275..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/config/tsconfig.worker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "./tsconfig.base.json", - "compilerOptions": { - "outDir": "../../out-tsc/worker", - "lib": [ - "ES2022", - "DOM" - ], - "types": [] - }, - "include": [ - "../**/*Worker.ts" - ] -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldDebtAndPopulation.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldDebtAndPopulation.ts deleted file mode 100644 index d93f37f2b..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldDebtAndPopulation.ts +++ /dev/null @@ -1,1845 +0,0 @@ -export class WorldDebtAndPopulationItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public countryCode: string; - public countryName: string; - public gdpPerCapita: number; - public unemploymentRate: number; - public televisions: number; - public publicDebt: number; - public population: number; - public oilProduction: number; - public medianAge: number; - public internetUsers: number; - public electricityProduction: number; - public birthRate: number; - -} -export class WorldDebtAndPopulation extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new WorldDebtAndPopulationItem( - { - countryCode: `AL`, - countryName: `Albania`, - gdpPerCapita: 5800, - unemploymentRate: 13, - televisions: 700000, - publicDebt: 51, - population: 3619778, - oilProduction: 7006, - medianAge: 30, - internetUsers: 471200, - electricityProduction: 5385, - birthRate: 15 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `DZ`, - countryName: `Algeria`, - gdpPerCapita: 6700, - unemploymentRate: 12, - televisions: 3100000, - publicDebt: 18, - population: 33769668, - oilProduction: 1358000, - medianAge: 26, - internetUsers: 3500000, - electricityProduction: 31910, - birthRate: 17 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AO`, - countryName: `Angola`, - gdpPerCapita: 7800, - unemploymentRate: 0, - televisions: 196000, - publicDebt: 12, - population: 12531357, - oilProduction: 1712000, - medianAge: 18, - internetUsers: 100000, - electricityProduction: 2585, - birthRate: 44 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AR`, - countryName: `Argentina`, - gdpPerCapita: 13100, - unemploymentRate: 9, - televisions: 7950000, - publicDebt: 56, - population: 40134425, - oilProduction: 730000, - medianAge: 30, - internetUsers: 9309000, - electricityProduction: 101100, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AW`, - countryName: `Aruba`, - gdpPerCapita: 21800, - unemploymentRate: 7, - televisions: 20000, - publicDebt: 46, - population: 101541, - oilProduction: 2356, - medianAge: 38, - internetUsers: 24000, - electricityProduction: 770, - birthRate: 13 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AU`, - countryName: `Australia`, - gdpPerCapita: 37300, - unemploymentRate: 4, - televisions: 10150000, - publicDebt: 16, - population: 21007310, - oilProduction: 540000, - medianAge: 37, - internetUsers: 11240000, - electricityProduction: 236700, - birthRate: 13 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AT`, - countryName: `Austria`, - gdpPerCapita: 39300, - unemploymentRate: 4, - televisions: 10150000, - publicDebt: 59, - population: 8205533, - oilProduction: 23320, - medianAge: 42, - internetUsers: 4277000, - electricityProduction: 61020, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AZ`, - countryName: `Azerbaijan`, - gdpPerCapita: 8000, - unemploymentRate: 1, - televisions: 170000, - publicDebt: 7, - population: 8177717, - oilProduction: 934700, - medianAge: 28, - internetUsers: 1036000, - electricityProduction: 23800, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BH`, - countryName: `Bahrain`, - gdpPerCapita: 33900, - unemploymentRate: 15, - televisions: 275000, - publicDebt: 31, - population: 718306, - oilProduction: 184300, - medianAge: 30, - internetUsers: 250000, - electricityProduction: 8187, - birthRate: 17 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BD`, - countryName: `Bangladesh`, - gdpPerCapita: 1400, - unemploymentRate: 3, - televisions: 770000, - publicDebt: 37, - population: 153546896, - oilProduction: 6746, - medianAge: 23, - internetUsers: 500000, - electricityProduction: 21350, - birthRate: 29 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BE`, - countryName: `Belgium`, - gdpPerCapita: 36200, - unemploymentRate: 8, - televisions: 4720000, - publicDebt: 85, - population: 10403951, - oilProduction: 9000, - medianAge: 41, - internetUsers: 5220000, - electricityProduction: 80840, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BT`, - countryName: `Bhutan`, - gdpPerCapita: 5200, - unemploymentRate: 3, - televisions: 11000, - publicDebt: 81, - population: 682321, - oilProduction: 0, - medianAge: 24, - internetUsers: 40000, - electricityProduction: 2000, - birthRate: 21 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BO`, - countryName: `Bolivia`, - gdpPerCapita: 4400, - unemploymentRate: 8, - televisions: 900000, - publicDebt: 46, - population: 9247816, - oilProduction: 46470, - medianAge: 23, - internetUsers: 1000000, - electricityProduction: 5293, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BA`, - countryName: `Bosnia and Herzegovina`, - gdpPerCapita: 6100, - unemploymentRate: 46, - televisions: 0, - publicDebt: 34, - population: 4590310, - oilProduction: 0, - medianAge: 39, - internetUsers: 1055000, - electricityProduction: 12220, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BW`, - countryName: `Botswana`, - gdpPerCapita: 14300, - unemploymentRate: 8, - televisions: 31000, - publicDebt: 5, - population: 1842323, - oilProduction: 0, - medianAge: 21, - internetUsers: 80000, - electricityProduction: 912, - birthRate: 23 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BR`, - countryName: `Brazil`, - gdpPerCapita: 9500, - unemploymentRate: 9, - televisions: 36500000, - publicDebt: 45, - population: 196342592, - oilProduction: 1797000, - medianAge: 28, - internetUsers: 50000000, - electricityProduction: 396400, - birthRate: 19 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `BG`, - countryName: `Bulgaria`, - gdpPerCapita: 11800, - unemploymentRate: 8, - televisions: 3310000, - publicDebt: 11, - population: 7262675, - oilProduction: 3661, - medianAge: 41, - internetUsers: 1899000, - electricityProduction: 45700, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CM`, - countryName: `Cameroon`, - gdpPerCapita: 2200, - unemploymentRate: 30, - televisions: 450000, - publicDebt: 16, - population: 18467692, - oilProduction: 85300, - medianAge: 19, - internetUsers: 370000, - electricityProduction: 4090, - birthRate: 35 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CA`, - countryName: `Canada`, - gdpPerCapita: 38600, - unemploymentRate: 6, - televisions: 21500000, - publicDebt: 64, - population: 33212696, - oilProduction: 3310000, - medianAge: 40, - internetUsers: 28000000, - electricityProduction: 609600, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CL`, - countryName: `Chile`, - gdpPerCapita: 14300, - unemploymentRate: 7, - televisions: 3150000, - publicDebt: 4, - population: 16454143, - oilProduction: 15100, - medianAge: 31, - internetUsers: 557000, - electricityProduction: 47600, - birthRate: 15 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CN`, - countryName: `China`, - gdpPerCapita: 5400, - unemploymentRate: 4, - televisions: 400000000, - publicDebt: 18, - population: 1330044544, - oilProduction: 3725000, - medianAge: 34, - internetUsers: 253000000, - electricityProduction: 3256000, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CO`, - countryName: `Colombia`, - gdpPerCapita: 7400, - unemploymentRate: 11, - televisions: 4590000, - publicDebt: 53, - population: 45013672, - oilProduction: 531300, - medianAge: 27, - internetUsers: 12100000, - electricityProduction: 50470, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CR`, - countryName: `Costa Rica`, - gdpPerCapita: 11100, - unemploymentRate: 5, - televisions: 525000, - publicDebt: 47, - population: 4195914, - oilProduction: 0, - medianAge: 27, - internetUsers: 1500000, - electricityProduction: 8349, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IV`, - countryName: `Ivory Coast`, - gdpPerCapita: 1700, - unemploymentRate: 0, - televisions: 1090000, - publicDebt: 75, - population: 20179602, - oilProduction: 48370, - medianAge: 19, - internetUsers: 300000, - electricityProduction: 5305, - birthRate: 33 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `HR`, - countryName: `Croatia`, - gdpPerCapita: 15500, - unemploymentRate: 12, - televisions: 1220000, - publicDebt: 48, - population: 4491543, - oilProduction: 17100, - medianAge: 41, - internetUsers: 1995000, - electricityProduction: 11990, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CU`, - countryName: `Cuba`, - gdpPerCapita: 11000, - unemploymentRate: 2, - televisions: 2640000, - publicDebt: 37, - population: 11423952, - oilProduction: 58300, - medianAge: 37, - internetUsers: 1310000, - electricityProduction: 16450, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CY`, - countryName: `Cyprus`, - gdpPerCapita: 27100, - unemploymentRate: 4, - televisions: 0, - publicDebt: 60, - population: 792604, - oilProduction: 0, - medianAge: 35, - internetUsers: 380000, - electricityProduction: 4618, - birthRate: 13 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CZ`, - countryName: `Czech Republic`, - gdpPerCapita: 24500, - unemploymentRate: 7, - televisions: 3405834, - publicDebt: 26, - population: 10220911, - oilProduction: 18030, - medianAge: 40, - internetUsers: 4400000, - electricityProduction: 77380, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `DK`, - countryName: `Denmark`, - gdpPerCapita: 37200, - unemploymentRate: 3, - televisions: 3121000, - publicDebt: 26, - population: 5484723, - oilProduction: 342000, - medianAge: 40, - internetUsers: 3500000, - electricityProduction: 43350, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `DO`, - countryName: `Dominican Republic`, - gdpPerCapita: 6600, - unemploymentRate: 16, - televisions: 770000, - publicDebt: 41, - population: 9507133, - oilProduction: 12, - medianAge: 25, - internetUsers: 1677000, - electricityProduction: 12220, - birthRate: 23 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `EC`, - countryName: `Ecuador`, - gdpPerCapita: 7200, - unemploymentRate: 9, - televisions: 2500000, - publicDebt: 33, - population: 13927650, - oilProduction: 511100, - medianAge: 24, - internetUsers: 1549000, - electricityProduction: 12940, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `EG`, - countryName: `Egypt`, - gdpPerCapita: 5000, - unemploymentRate: 9, - televisions: 7700000, - publicDebt: 106, - population: 81713520, - oilProduction: 665000, - medianAge: 25, - internetUsers: 8620000, - electricityProduction: 102500, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SV`, - countryName: `El Salvador`, - gdpPerCapita: 6000, - unemploymentRate: 6, - televisions: 600000, - publicDebt: 37, - population: 7066403, - oilProduction: 0, - medianAge: 22, - internetUsers: 700000, - electricityProduction: 5316, - birthRate: 26 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GQ`, - countryName: `Equatorial Guinea`, - gdpPerCapita: 28200, - unemploymentRate: 30, - televisions: 4000, - publicDebt: 2, - population: 616459, - oilProduction: 385500, - medianAge: 19, - internetUsers: 8000, - electricityProduction: 28, - birthRate: 37 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `EE`, - countryName: `Estonia`, - gdpPerCapita: 21800, - unemploymentRate: 5, - televisions: 605000, - publicDebt: 3, - population: 1307605, - oilProduction: 6930, - medianAge: 40, - internetUsers: 780000, - electricityProduction: 9599, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ET`, - countryName: `Ethiopia`, - gdpPerCapita: 700, - unemploymentRate: 0, - televisions: 682000, - publicDebt: 45, - population: 82544840, - oilProduction: 7, - medianAge: 17, - internetUsers: 291000, - electricityProduction: 2864, - birthRate: 44 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `FI`, - countryName: `Finland`, - gdpPerCapita: 36000, - unemploymentRate: 7, - televisions: 3200000, - publicDebt: 36, - population: 5244749, - oilProduction: 8951, - medianAge: 42, - internetUsers: 3600000, - electricityProduction: 73470, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GA`, - countryName: `Gabon`, - gdpPerCapita: 14000, - unemploymentRate: 21, - televisions: 63000, - publicDebt: 53, - population: 1485832, - oilProduction: 240000, - medianAge: 19, - internetUsers: 145000, - electricityProduction: 1520, - birthRate: 36 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `DE`, - countryName: `Germany`, - gdpPerCapita: 34100, - unemploymentRate: 9, - televisions: 51400000, - publicDebt: 65, - population: 82369552, - oilProduction: 141700, - medianAge: 43, - internetUsers: 42500000, - electricityProduction: 579400, - birthRate: 8 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GH`, - countryName: `Ghana`, - gdpPerCapita: 1400, - unemploymentRate: 11, - televisions: 1900000, - publicDebt: 59, - population: 23382848, - oilProduction: 700, - medianAge: 20, - internetUsers: 650000, - electricityProduction: 7042, - birthRate: 29 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GI`, - countryName: `Gibraltar`, - gdpPerCapita: 38200, - unemploymentRate: 3, - televisions: 10000, - publicDebt: 16, - population: 28002, - oilProduction: 0, - medianAge: 40, - internetUsers: 6200, - electricityProduction: 141, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GR`, - countryName: `Greece`, - gdpPerCapita: 30600, - unemploymentRate: 8, - televisions: 2540000, - publicDebt: 90, - population: 10722816, - oilProduction: 5687, - medianAge: 42, - internetUsers: 2540000, - electricityProduction: 56130, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `GT`, - countryName: `Guatemala`, - gdpPerCapita: 5100, - unemploymentRate: 3, - televisions: 1323000, - publicDebt: 21, - population: 13002206, - oilProduction: 13000, - medianAge: 19, - internetUsers: 1320000, - electricityProduction: 7281, - birthRate: 29 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `HN`, - countryName: `Honduras`, - gdpPerCapita: 4300, - unemploymentRate: 28, - televisions: 570000, - publicDebt: 24, - population: 7639327, - oilProduction: 0, - medianAge: 20, - internetUsers: 344100, - electricityProduction: 5339, - birthRate: 27 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `HU`, - countryName: `Hungary`, - gdpPerCapita: 19300, - unemploymentRate: 7, - televisions: 4420000, - publicDebt: 67, - population: 9930915, - oilProduction: 42180, - medianAge: 39, - internetUsers: 4200000, - electricityProduction: 33690, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IS`, - countryName: `Iceland`, - gdpPerCapita: 40400, - unemploymentRate: 1, - televisions: 98000, - publicDebt: 28, - population: 304367, - oilProduction: 0, - medianAge: 35, - internetUsers: 202300, - electricityProduction: 8533, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IN`, - countryName: `India`, - gdpPerCapita: 2600, - unemploymentRate: 7, - televisions: 63000000, - publicDebt: 58, - population: 1147995904, - oilProduction: 810000, - medianAge: 25, - internetUsers: 80000000, - electricityProduction: 661600, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ID`, - countryName: `Indonesia`, - gdpPerCapita: 3600, - unemploymentRate: 9, - televisions: 13750000, - publicDebt: 34, - population: 237512352, - oilProduction: 837500, - medianAge: 27, - internetUsers: 13000000, - electricityProduction: 125900, - birthRate: 19 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IR`, - countryName: `Iran`, - gdpPerCapita: 11700, - unemploymentRate: 12, - televisions: 4610000, - publicDebt: 17, - population: 65875224, - oilProduction: 3956000, - medianAge: 26, - internetUsers: 23000000, - electricityProduction: 170400, - birthRate: 17 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IE`, - countryName: `Ireland`, - gdpPerCapita: 46600, - unemploymentRate: 5, - televisions: 1820000, - publicDebt: 25, - population: 4156119, - oilProduction: 0, - medianAge: 35, - internetUsers: 1708000, - electricityProduction: 24130, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IL`, - countryName: `Israel`, - gdpPerCapita: 26600, - unemploymentRate: 7, - televisions: 1690000, - publicDebt: 81, - population: 7112359, - oilProduction: 100, - medianAge: 29, - internetUsers: 2000000, - electricityProduction: 46850, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `IT`, - countryName: `Italy`, - gdpPerCapita: 30900, - unemploymentRate: 6, - televisions: 30300000, - publicDebt: 104, - population: 58145320, - oilProduction: 164800, - medianAge: 43, - internetUsers: 32000000, - electricityProduction: 278500, - birthRate: 8 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `JM`, - countryName: `Jamaica`, - gdpPerCapita: 7400, - unemploymentRate: 10, - televisions: 460000, - publicDebt: 127, - population: 2804332, - oilProduction: 0, - medianAge: 23, - internetUsers: 1500000, - electricityProduction: 6985, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `JP`, - countryName: `Japan`, - gdpPerCapita: 33500, - unemploymentRate: 4, - televisions: 86500000, - publicDebt: 170, - population: 127288416, - oilProduction: 125000, - medianAge: 44, - internetUsers: 88110000, - electricityProduction: 1025000, - birthRate: 8 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `JO`, - countryName: `Jordan`, - gdpPerCapita: 4700, - unemploymentRate: 14, - televisions: 500000, - publicDebt: 72, - population: 6198677, - oilProduction: 0, - medianAge: 24, - internetUsers: 1127000, - electricityProduction: 9074, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `KZ`, - countryName: `Kazakhstan`, - gdpPerCapita: 11000, - unemploymentRate: 7, - televisions: 3880000, - publicDebt: 8, - population: 15340533, - oilProduction: 1355000, - medianAge: 29, - internetUsers: 1901000, - electricityProduction: 76340, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `KE`, - countryName: `Kenya`, - gdpPerCapita: 1700, - unemploymentRate: 40, - televisions: 730000, - publicDebt: 49, - population: 37953840, - oilProduction: 0, - medianAge: 19, - internetUsers: 3000000, - electricityProduction: 5502, - birthRate: 38 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `KR`, - countryName: `Korea, South`, - gdpPerCapita: 25000, - unemploymentRate: 3, - televisions: 15900000, - publicDebt: 28, - population: 48379392, - oilProduction: 17050, - medianAge: 37, - internetUsers: 35590000, - electricityProduction: 403200, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `KW`, - countryName: `Kuwait`, - gdpPerCapita: 55900, - unemploymentRate: 2, - televisions: 875000, - publicDebt: 10, - population: 2596799, - oilProduction: 2440000, - medianAge: 26, - internetUsers: 900000, - electricityProduction: 41110, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LV`, - countryName: `Latvia`, - gdpPerCapita: 17700, - unemploymentRate: 6, - televisions: 1220000, - publicDebt: 7, - population: 2245423, - oilProduction: 0, - medianAge: 40, - internetUsers: 1770000, - electricityProduction: 4778, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LB`, - countryName: `Lebanon`, - gdpPerCapita: 10300, - unemploymentRate: 20, - televisions: 1180000, - publicDebt: 187, - population: 3971941, - oilProduction: 0, - medianAge: 29, - internetUsers: 950000, - electricityProduction: 9183, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LY`, - countryName: `Libya`, - gdpPerCapita: 12400, - unemploymentRate: 30, - televisions: 730000, - publicDebt: 5, - population: 6173579, - oilProduction: 1712000, - medianAge: 24, - internetUsers: 260000, - electricityProduction: 21150, - birthRate: 26 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LT`, - countryName: `Lithuania`, - gdpPerCapita: 16800, - unemploymentRate: 4, - televisions: 1700000, - publicDebt: 17, - population: 3565205, - oilProduction: 13160, - medianAge: 39, - internetUsers: 1330000, - electricityProduction: 13480, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LU`, - countryName: `Luxembourg`, - gdpPerCapita: 79400, - unemploymentRate: 4, - televisions: 285000, - publicDebt: 6, - population: 486006, - oilProduction: 0, - medianAge: 39, - internetUsers: 345000, - electricityProduction: 3156, - birthRate: 12 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MK`, - countryName: `Macedonia`, - gdpPerCapita: 8400, - unemploymentRate: 35, - televisions: 510000, - publicDebt: 31, - population: 2061315, - oilProduction: 0, - medianAge: 35, - internetUsers: 685000, - electricityProduction: 6051, - birthRate: 12 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MW`, - countryName: `Malawi`, - gdpPerCapita: 800, - unemploymentRate: 0, - televisions: 0, - publicDebt: 51, - population: 13931831, - oilProduction: 0, - medianAge: 17, - internetUsers: 139500, - electricityProduction: 1397, - birthRate: 42 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MY`, - countryName: `Malaysia`, - gdpPerCapita: 14500, - unemploymentRate: 3, - televisions: 10800000, - publicDebt: 42, - population: 25274132, - oilProduction: 757500, - medianAge: 25, - internetUsers: 15868000, - electricityProduction: 82360, - birthRate: 22 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MU`, - countryName: `Mauritius`, - gdpPerCapita: 11300, - unemploymentRate: 9, - televisions: 258000, - publicDebt: 63, - population: 1274189, - oilProduction: 0, - medianAge: 32, - internetUsers: 340000, - electricityProduction: 2350, - birthRate: 15 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MX`, - countryName: `Mexico`, - gdpPerCapita: 12400, - unemploymentRate: 4, - televisions: 25600000, - publicDebt: 23, - population: 109955400, - oilProduction: 3083000, - medianAge: 26, - internetUsers: 22812000, - electricityProduction: 222400, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MD`, - countryName: `Moldova`, - gdpPerCapita: 2300, - unemploymentRate: 2, - televisions: 1260000, - publicDebt: 23, - population: 4324450, - oilProduction: 0, - medianAge: 34, - internetUsers: 700000, - electricityProduction: 3881, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MA`, - countryName: `Morocco`, - gdpPerCapita: 3700, - unemploymentRate: 10, - televisions: 3100000, - publicDebt: 67, - population: 34343220, - oilProduction: 300, - medianAge: 25, - internetUsers: 7300000, - electricityProduction: 21370, - birthRate: 21 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `MZ`, - countryName: `Mozambique`, - gdpPerCapita: 800, - unemploymentRate: 21, - televisions: 67600, - publicDebt: 22, - population: 21284700, - oilProduction: 0, - medianAge: 17, - internetUsers: 200000, - electricityProduction: 13170, - birthRate: 38 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NA`, - countryName: `Namibia`, - gdpPerCapita: 5200, - unemploymentRate: 5, - televisions: 60000, - publicDebt: 22, - population: 2088669, - oilProduction: 0, - medianAge: 21, - internetUsers: 101000, - electricityProduction: 1688, - birthRate: 23 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NL`, - countryName: `Netherlands`, - gdpPerCapita: 39000, - unemploymentRate: 5, - televisions: 8100000, - publicDebt: 46, - population: 16645313, - oilProduction: 76000, - medianAge: 40, - internetUsers: 15000000, - electricityProduction: 94340, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NZ`, - countryName: `New Zealand`, - gdpPerCapita: 27200, - unemploymentRate: 4, - televisions: 1926000, - publicDebt: 21, - population: 4173460, - oilProduction: 25880, - medianAge: 36, - internetUsers: 3360000, - electricityProduction: 42060, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NI`, - countryName: `Nicaragua`, - gdpPerCapita: 2800, - unemploymentRate: 5, - televisions: 320000, - publicDebt: 63, - population: 5785846, - oilProduction: 0, - medianAge: 22, - internetUsers: 155000, - electricityProduction: 2778, - birthRate: 24 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NG`, - countryName: `Nigeria`, - gdpPerCapita: 2100, - unemploymentRate: 5, - televisions: 6900000, - publicDebt: 14, - population: 146255312, - oilProduction: 2166000, - medianAge: 19, - internetUsers: 10000000, - electricityProduction: 22530, - birthRate: 37 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `NO`, - countryName: `Norway`, - gdpPerCapita: 53300, - unemploymentRate: 3, - televisions: 2030000, - publicDebt: 83, - population: 4644457, - oilProduction: 2560000, - medianAge: 39, - internetUsers: 3800000, - electricityProduction: 135800, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `OM`, - countryName: `Oman`, - gdpPerCapita: 1900, - unemploymentRate: 15, - televisions: 1600000, - publicDebt: 4, - population: 3311640, - oilProduction: 710800, - medianAge: 19, - internetUsers: 340000, - electricityProduction: 11890, - birthRate: 35 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PK`, - countryName: `Pakistan`, - gdpPerCapita: 2400, - unemploymentRate: 6, - televisions: 3100000, - publicDebt: 51, - population: 172800048, - oilProduction: 62000, - medianAge: 21, - internetUsers: 17500000, - electricityProduction: 89820, - birthRate: 28 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PA`, - countryName: `Panama`, - gdpPerCapita: 10700, - unemploymentRate: 6, - televisions: 510000, - publicDebt: 53, - population: 3309679, - oilProduction: 0, - medianAge: 27, - internetUsers: 525200, - electricityProduction: 5661, - birthRate: 21 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PG`, - countryName: `Papua New Guinea`, - gdpPerCapita: 2100, - unemploymentRate: 2, - televisions: 59841, - publicDebt: 40, - population: 5931769, - oilProduction: 47800, - medianAge: 22, - internetUsers: 110000, - electricityProduction: 3698, - birthRate: 28 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PY`, - countryName: `Paraguay`, - gdpPerCapita: 4000, - unemploymentRate: 6, - televisions: 990000, - publicDebt: 27, - population: 6831306, - oilProduction: 0, - medianAge: 22, - internetUsers: 280000, - electricityProduction: 70000, - birthRate: 28 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PE`, - countryName: `Peru`, - gdpPerCapita: 7600, - unemploymentRate: 7, - televisions: 3060000, - publicDebt: 29, - population: 29180900, - oilProduction: 119000, - medianAge: 26, - internetUsers: 7636000, - electricityProduction: 24970, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PH`, - countryName: `Philippines`, - gdpPerCapita: 3200, - unemploymentRate: 7, - televisions: 3700000, - publicDebt: 56, - population: 96061680, - oilProduction: 0, - medianAge: 22, - internetUsers: 5300000, - electricityProduction: 53670, - birthRate: 26 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PL`, - countryName: `Poland`, - gdpPerCapita: 16200, - unemploymentRate: 13, - televisions: 13050000, - publicDebt: 43, - population: 38500696, - oilProduction: 0, - medianAge: 38, - internetUsers: 16000000, - electricityProduction: 146200, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `PT`, - countryName: `Portugal`, - gdpPerCapita: 21800, - unemploymentRate: 8, - televisions: 3310000, - publicDebt: 64, - population: 10676910, - oilProduction: 9500, - medianAge: 39, - internetUsers: 3549000, - electricityProduction: 49040, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `QA`, - countryName: `Qatar`, - gdpPerCapita: 87600, - unemploymentRate: 1, - televisions: 230000, - publicDebt: 11, - population: 824789, - oilProduction: 797500, - medianAge: 31, - internetUsers: 351000, - electricityProduction: 13540, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `RO`, - countryName: `Romania`, - gdpPerCapita: 11100, - unemploymentRate: 4, - televisions: 5250000, - publicDebt: 13, - population: 22246862, - oilProduction: 115000, - medianAge: 37, - internetUsers: 12000000, - electricityProduction: 60520, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `RU`, - countryName: `Russia`, - gdpPerCapita: 14800, - unemploymentRate: 6, - televisions: 60500000, - publicDebt: 6, - population: 140702096, - oilProduction: 9870000, - medianAge: 38, - internetUsers: 30000000, - electricityProduction: 1000000, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SA`, - countryName: `Saudi Arabia`, - gdpPerCapita: 19800, - unemploymentRate: 13, - televisions: 5100000, - publicDebt: 24, - population: 28146656, - oilProduction: 11000000, - medianAge: 22, - internetUsers: 6200000, - electricityProduction: 165600, - birthRate: 29 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SN`, - countryName: `Senegal`, - gdpPerCapita: 1700, - unemploymentRate: 48, - televisions: 361000, - publicDebt: 23, - population: 12853259, - oilProduction: 0, - medianAge: 19, - internetUsers: 820000, - electricityProduction: 2159, - birthRate: 37 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SC`, - countryName: `Seychelles`, - gdpPerCapita: 16600, - unemploymentRate: 2, - televisions: 11000, - publicDebt: 92, - population: 82247, - oilProduction: 0, - medianAge: 29, - internetUsers: 32000, - electricityProduction: 252, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SG`, - countryName: `Singapore`, - gdpPerCapita: 49900, - unemploymentRate: 2, - televisions: 1330000, - publicDebt: 96, - population: 4608167, - oilProduction: 9836, - medianAge: 38, - internetUsers: 3105000, - electricityProduction: 39440, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SK`, - countryName: `Slovakia`, - gdpPerCapita: 20200, - unemploymentRate: 8, - televisions: 2620000, - publicDebt: 36, - population: 5455407, - oilProduction: 12840, - medianAge: 37, - internetUsers: 2350000, - electricityProduction: 29890, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SI`, - countryName: `Slovenia`, - gdpPerCapita: 28000, - unemploymentRate: 8, - televisions: 710000, - publicDebt: 24, - population: 2007711, - oilProduction: 5, - medianAge: 41, - internetUsers: 1300000, - electricityProduction: 14900, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ZA`, - countryName: `South Africa`, - gdpPerCapita: 9700, - unemploymentRate: 24, - televisions: 6000000, - publicDebt: 31, - population: 48782756, - oilProduction: 200000, - medianAge: 24, - internetUsers: 5100000, - electricityProduction: 264000, - birthRate: 20 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ES`, - countryName: `Spain`, - gdpPerCapita: 33600, - unemploymentRate: 8, - televisions: 16200000, - publicDebt: 36, - population: 40491052, - oilProduction: 29350, - medianAge: 41, - internetUsers: 19690000, - electricityProduction: 270300, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `LK`, - countryName: `Sri Lanka`, - gdpPerCapita: 4000, - unemploymentRate: 6, - televisions: 1530000, - publicDebt: 86, - population: 21128772, - oilProduction: 0, - medianAge: 30, - internetUsers: 771700, - electricityProduction: 8411, - birthRate: 17 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SD`, - countryName: `Sudan`, - gdpPerCapita: 1900, - unemploymentRate: 19, - televisions: 2380000, - publicDebt: 106, - population: 40218456, - oilProduction: 484500, - medianAge: 19, - internetUsers: 1500000, - electricityProduction: 3944, - birthRate: 34 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SE`, - countryName: `Sweden`, - gdpPerCapita: 37500, - unemploymentRate: 6, - televisions: 4600000, - publicDebt: 42, - population: 9045389, - oilProduction: 2350, - medianAge: 41, - internetUsers: 7000000, - electricityProduction: 153200, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `CH`, - countryName: `Switzerland`, - gdpPerCapita: 40100, - unemploymentRate: 3, - televisions: 3310000, - publicDebt: 44, - population: 7581520, - oilProduction: 3202, - medianAge: 41, - internetUsers: 4610000, - electricityProduction: 56100, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `SY`, - countryName: `Syria`, - gdpPerCapita: 4700, - unemploymentRate: 9, - televisions: 1050000, - publicDebt: 38, - population: 19747586, - oilProduction: 379000, - medianAge: 21, - internetUsers: 3470000, - electricityProduction: 153200, - birthRate: 27 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TW`, - countryName: `Taiwan`, - gdpPerCapita: 30100, - unemploymentRate: 4, - televisions: 8800000, - publicDebt: 28, - population: 22920946, - oilProduction: 600, - medianAge: 36, - internetUsers: 14760000, - electricityProduction: 235000, - birthRate: 9 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TZ`, - countryName: `Tanzania`, - gdpPerCapita: 1300, - unemploymentRate: 0, - televisions: 103000, - publicDebt: 20, - population: 40213160, - oilProduction: 0, - medianAge: 18, - internetUsers: 400000, - electricityProduction: 1880, - birthRate: 35 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TH`, - countryName: `Thailand`, - gdpPerCapita: 8000, - unemploymentRate: 1, - televisions: 15190000, - publicDebt: 38, - population: 65493296, - oilProduction: 310000, - medianAge: 33, - internetUsers: 13416000, - electricityProduction: 124600, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TN`, - countryName: `Tunisia`, - gdpPerCapita: 7400, - unemploymentRate: 14, - televisions: 920000, - publicDebt: 55, - population: 10383577, - oilProduction: 76900, - medianAge: 29, - internetUsers: 1722000, - electricityProduction: 12850, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `TR`, - countryName: `Turkey`, - gdpPerCapita: 12000, - unemploymentRate: 10, - televisions: 20900000, - publicDebt: 39, - population: 71892808, - oilProduction: 45460, - medianAge: 29, - internetUsers: 13150000, - electricityProduction: 154200, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UG`, - countryName: `Uganda`, - gdpPerCapita: 1000, - unemploymentRate: 0, - televisions: 500000, - publicDebt: 21, - population: 31367972, - oilProduction: 0, - medianAge: 15, - internetUsers: 2000000, - electricityProduction: 1983, - birthRate: 48 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UA`, - countryName: `Ukraine`, - gdpPerCapita: 7000, - unemploymentRate: 2, - televisions: 18050000, - publicDebt: 12, - population: 45994288, - oilProduction: 90400, - medianAge: 39, - internetUsers: 10000000, - electricityProduction: 192100, - birthRate: 10 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `AE`, - countryName: `United Arab Emirates`, - gdpPerCapita: 37000, - unemploymentRate: 2, - televisions: 310000, - publicDebt: 21, - population: 4621399, - oilProduction: 2510000, - medianAge: 30, - internetUsers: 2300000, - electricityProduction: 57060, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UK`, - countryName: `United Kingdom`, - gdpPerCapita: 35000, - unemploymentRate: 5, - televisions: 30500000, - publicDebt: 44, - population: 60943912, - oilProduction: 1636000, - medianAge: 40, - internetUsers: 40200000, - electricityProduction: 372600, - birthRate: 11 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `US`, - countryName: `United States`, - gdpPerCapita: 45800, - unemploymentRate: 5, - televisions: 219000000, - publicDebt: 61, - population: 303824640, - oilProduction: 7460000, - medianAge: 37, - internetUsers: 223000000, - electricityProduction: 4062000, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UY`, - countryName: `Uruguay`, - gdpPerCapita: 10800, - unemploymentRate: 9, - televisions: 782000, - publicDebt: 65, - population: 3477778, - oilProduction: 27830, - medianAge: 33, - internetUsers: 968000, - electricityProduction: 9200, - birthRate: 14 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `UZ`, - countryName: `Uzbekistan`, - gdpPerCapita: 2400, - unemploymentRate: 1, - televisions: 6400000, - publicDebt: 19, - population: 27345026, - oilProduction: 109400, - medianAge: 24, - internetUsers: 1200000, - electricityProduction: 49000, - birthRate: 18 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `VE`, - countryName: `Venezuela`, - gdpPerCapita: 12800, - unemploymentRate: 9, - televisions: 4100000, - publicDebt: 19, - population: 26414816, - oilProduction: 2398000, - medianAge: 25, - internetUsers: 5720000, - electricityProduction: 99200, - birthRate: 21 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `VN`, - countryName: `Vietnam`, - gdpPerCapita: 2600, - unemploymentRate: 4, - televisions: 3570000, - publicDebt: 42, - population: 86116560, - oilProduction: 324000, - medianAge: 27, - internetUsers: 17870000, - electricityProduction: 59010, - birthRate: 16 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `WF`, - countryName: `Wallis and Futuna`, - gdpPerCapita: 3800, - unemploymentRate: 15, - televisions: 0, - publicDebt: 6, - population: 15237, - oilProduction: 0, - medianAge: 0, - internetUsers: 900, - electricityProduction: 0, - birthRate: 0 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `YE`, - countryName: `Yemen`, - gdpPerCapita: 2500, - unemploymentRate: 35, - televisions: 470000, - publicDebt: 34, - population: 23013376, - oilProduction: 339200, - medianAge: 17, - internetUsers: 320000, - electricityProduction: 4456, - birthRate: 42 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ZM`, - countryName: `Zambia`, - gdpPerCapita: 1400, - unemploymentRate: 50, - televisions: 277000, - publicDebt: 28, - population: 11669534, - oilProduction: 150, - medianAge: 17, - internetUsers: 500000, - electricityProduction: 8850, - birthRate: 41 - }), - new WorldDebtAndPopulationItem( - { - countryCode: `ZW`, - countryName: `Zimbabwe`, - gdpPerCapita: 200, - unemploymentRate: 80, - televisions: 370000, - publicDebt: 218, - population: 11350111, - oilProduction: 0, - medianAge: 18, - internetUsers: 1351000, - electricityProduction: 9950, - birthRate: 32 - }), - ]; - super(...(newItems.slice(0, items))); - } - } -} From ab49f0606ac875b249a7ea157a9085e7b5c6abea Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Wed, 12 Jun 2024 14:47:22 -0400 Subject: [PATCH 084/154] mdd-update-angular-18 mdd-update-angular-18 --- browser/package.json | 28 ++++----- browser/src/app/app.module.ts | 14 ++--- .../ReadMe.md | 58 +++++++++++++++++++ .../data-chart/data-legend-grouping/ReadMe.md | 58 +++++++++++++++++++ .../data-chart/data-legend-styling/ReadMe.md | 58 +++++++++++++++++++ .../ReadMe.md | 58 +++++++++++++++++++ .../data-tooltip-grouping/ReadMe.md | 58 +++++++++++++++++++ .../data-chart/data-tooltip-styling/ReadMe.md | 58 +++++++++++++++++++ 8 files changed, 366 insertions(+), 24 deletions(-) create mode 100644 samples/charts/data-chart/data-legend-grouping-and-highlighting/ReadMe.md create mode 100644 samples/charts/data-chart/data-legend-grouping/ReadMe.md create mode 100644 samples/charts/data-chart/data-legend-styling/ReadMe.md create mode 100644 samples/charts/data-chart/data-tooltip-grouping-and-highlighting/ReadMe.md create mode 100644 samples/charts/data-chart/data-tooltip-grouping/ReadMe.md create mode 100644 samples/charts/data-chart/data-tooltip-styling/ReadMe.md diff --git a/browser/package.json b/browser/package.json index c79d11311..45bcbcaa0 100644 --- a/browser/package.json +++ b/browser/package.json @@ -21,14 +21,14 @@ "url": "git://github.com/IgniteUI/@infragistics/igniteui-angular-examples/repository.git" }, "dependencies": { - "@angular/animations": "17.0.0", - "@angular/common": "17.0.0", - "@angular/compiler": "17.0.0", - "@angular/core": "17.0.0", - "@angular/forms": "17.0.0", - "@angular/platform-browser": "17.0.0", - "@angular/platform-browser-dynamic": "17.0.0", - "@angular/router": "17.0.0", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", + "@angular/router": "18.0.2", "@ionic/angular": "5.6.3", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", @@ -62,10 +62,10 @@ "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular/cli": "17.0.0", - "@angular/compiler-cli": "17.0.0", - "@angular/language-service": "17.0.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", "@types/jasmine": "3.10.2", "@types/jasminewd2": "2.0.9", "@types/node": "14.14.28", @@ -90,6 +90,6 @@ "sass.js": "0.11.1", "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.2.2" + "typescript": "5.4.5" } -} +} \ No newline at end of file diff --git a/browser/src/app/app.module.ts b/browser/src/app/app.module.ts index 253cd9b3e..70751687d 100644 --- a/browser/src/app/app.module.ts +++ b/browser/src/app/app.module.ts @@ -1,4 +1,4 @@ -import { HttpClientModule } from "@angular/common/http"; +import { provideHttpClient, withInterceptorsFromDi } from "@angular/common/http"; import { NgModule } from "@angular/core"; import { FormsModule } from "@angular/forms"; import { BrowserModule } from "@angular/platform-browser"; @@ -14,17 +14,14 @@ import { DocsLayoutComponent } from "./index/docs-layout.component"; import { IndexComponent } from "./index/index.component"; import { FallbackComponent } from './fallback/fallback.component'; -@NgModule({ - bootstrap: [AppComponent], +@NgModule({ bootstrap: [AppComponent], declarations: [ AppComponent, HomeComponent, DocsLayoutComponent, IndexComponent, FallbackComponent - ], - imports: [ - AppRoutingModule, + ], imports: [AppRoutingModule, IgxRippleModule, IgxNavbarModule, IgxNavigationDrawerModule, @@ -34,8 +31,5 @@ import { FallbackComponent } from './fallback/fallback.component'; BrowserModule, BrowserAnimationsModule, IgxButtonModule, - FormsModule, - HttpClientModule - ] -}) + FormsModule], providers: [provideHttpClient(withInterceptorsFromDi())] }) export class AppModule { } diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/ReadMe.md b/samples/charts/data-chart/data-legend-grouping-and-highlighting/ReadMe.md new file mode 100644 index 000000000..e40f7c277 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Data Legend Grouping And Highlighting feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/data-legend-grouping-and-highlighting +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/data-legend-grouping/ReadMe.md b/samples/charts/data-chart/data-legend-grouping/ReadMe.md new file mode 100644 index 000000000..3e2630115 --- /dev/null +++ b/samples/charts/data-chart/data-legend-grouping/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Data Legend Grouping feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/data-legend-grouping +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/data-legend-styling/ReadMe.md b/samples/charts/data-chart/data-legend-styling/ReadMe.md new file mode 100644 index 000000000..2c337b811 --- /dev/null +++ b/samples/charts/data-chart/data-legend-styling/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Data Legend Styling feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/data-legend-styling +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/ReadMe.md b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/ReadMe.md new file mode 100644 index 000000000..33819035c --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Data Tooltip Grouping And Highlighting feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/data-tooltip-grouping-and-highlighting +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/data-tooltip-grouping/ReadMe.md b/samples/charts/data-chart/data-tooltip-grouping/ReadMe.md new file mode 100644 index 000000000..2edadef55 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-grouping/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Data Tooltip Grouping feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/data-tooltip-grouping +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/data-tooltip-styling/ReadMe.md b/samples/charts/data-chart/data-tooltip-styling/ReadMe.md new file mode 100644 index 000000000..42d337fd1 --- /dev/null +++ b/samples/charts/data-chart/data-tooltip-styling/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Data Tooltip Styling feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/data-tooltip-styling +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). From 9057a54bcaa0c35c83cbdda8198717ca020f41f5 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Thu, 13 Jun 2024 17:44:21 -0400 Subject: [PATCH 085/154] mdd-update-highlight-label mdd-update-highlight-label --- .../radial-gauge/highlight-needle/src/app.component.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/gauges/radial-gauge/highlight-needle/src/app.component.html b/samples/gauges/radial-gauge/highlight-needle/src/app.component.html index b1e991c4b..4372f6c09 100644 --- a/samples/gauges/radial-gauge/highlight-needle/src/app.component.html +++ b/samples/gauges/radial-gauge/highlight-needle/src/app.component.html @@ -2,11 +2,11 @@ From 6ddad1b076692868c1a13e1fa7dcf8ba3ef31501 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Thu, 13 Jun 2024 17:46:39 -0400 Subject: [PATCH 086/154] Update app.component.html --- .../radial-gauge/highlight-needle/src/app.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/gauges/radial-gauge/highlight-needle/src/app.component.html b/samples/gauges/radial-gauge/highlight-needle/src/app.component.html index 4372f6c09..db1212a97 100644 --- a/samples/gauges/radial-gauge/highlight-needle/src/app.component.html +++ b/samples/gauges/radial-gauge/highlight-needle/src/app.component.html @@ -8,7 +8,7 @@ highlightLabelSnapsToNeedlePivot=true isHighlightNeedleDraggingEnabled=true height="100%" width="100%" - minimumValue=0 value=75 - maximumValue=80 interval=10 > + minimumValue=0 value=30 + maximumValue=100 interval=10 >
From 3e87711cae4c29abb0185f89dc74295c24a4c97e Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 17 Jun 2024 11:25:47 -0400 Subject: [PATCH 087/154] mdd-updateIG-angular18 (#205) mdd-updateIG-angular18 --- browser/scripts/browser.js | 24 ++++++------ .../annotations-all/package.json | 38 +++++++++---------- .../annotations-callouts/package.json | 38 +++++++++---------- .../annotations-crosshairs/package.json | 38 +++++++++---------- .../annotations-custom/package.json | 38 +++++++++---------- .../annotations-final-value/package.json | 38 +++++++++---------- .../annotations-highlighting/package.json | 38 +++++++++---------- .../category-chart/annotations/package.json | 38 +++++++++---------- .../area-chart-multiple-sources/package.json | 38 +++++++++---------- .../area-chart-single-source/package.json | 38 +++++++++---------- .../area-chart-styling/package.json | 38 +++++++++---------- .../category-chart/axis-gap/package.json | 38 +++++++++---------- .../axis-gridlines/package.json | 38 +++++++++---------- .../category-chart/axis-inverted/package.json | 38 +++++++++---------- .../category-chart/axis-labels/package.json | 38 +++++++++---------- .../axis-locations/package.json | 38 +++++++++---------- .../category-chart/axis-options/package.json | 38 +++++++++---------- .../category-chart/axis-overlap/package.json | 38 +++++++++---------- .../category-chart/axis-range/package.json | 38 +++++++++---------- .../axis-tickmarks/package.json | 38 +++++++++---------- .../category-chart/axis-titles/package.json | 38 +++++++++---------- .../chart-highlight-filter/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../column-chart-single-source/package.json | 38 +++++++++---------- .../column-chart-styling/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../column-chart-with-tooltips/package.json | 38 +++++++++---------- .../custom-selection/package.json | 38 +++++++++---------- .../data-aggregations/package.json | 38 +++++++++---------- .../category-chart/data-filter/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../category-chart/data-legend/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../data-tooltip-positioning/package.json | 38 +++++++++---------- .../category-chart/data-tooltip/package.json | 38 +++++++++---------- .../format-specifiers/package.json | 38 +++++++++---------- .../high-frequency/package.json | 38 +++++++++---------- .../category-chart/high-volume/package.json | 38 +++++++++---------- .../highlighting-behavior/package.json | 38 +++++++++---------- .../highlighting-mode/package.json | 38 +++++++++---------- .../category-chart/highlighting/package.json | 38 +++++++++---------- .../legend-highlighting/package.json | 38 +++++++++---------- .../line-chart-multiple-sources/package.json | 38 +++++++++---------- .../line-chart-single-source/package.json | 38 +++++++++---------- .../line-chart-styling/package.json | 38 +++++++++---------- .../line-chart-with-animations/package.json | 38 +++++++++---------- .../line-chart-with-annotations/package.json | 38 +++++++++---------- .../line-chart-with-legend/package.json | 38 +++++++++---------- .../marker-options/package.json | 38 +++++++++---------- .../marker-templates/package.json | 38 +++++++++---------- .../category-chart/overview/package.json | 38 +++++++++---------- .../point-chart-multiple-sources/package.json | 38 +++++++++---------- .../point-chart-single-source/package.json | 38 +++++++++---------- .../point-chart-styling/package.json | 38 +++++++++---------- .../spline-area-multiple-sources/package.json | 38 +++++++++---------- .../spline-area-single-source/package.json | 38 +++++++++---------- .../spline-area-styling/package.json | 38 +++++++++---------- .../spline-multiple-sources/package.json | 38 +++++++++---------- .../spline-single-source/package.json | 38 +++++++++---------- .../spline-styling/package.json | 38 +++++++++---------- .../category-chart/stack-columns/package.json | 38 +++++++++---------- .../step-area-multiple-sources/package.json | 38 +++++++++---------- .../step-area-single-source/package.json | 38 +++++++++---------- .../step-area-styling/package.json | 38 +++++++++---------- .../step-line-multiple-sources/package.json | 38 +++++++++---------- .../step-line-single-source/package.json | 38 +++++++++---------- .../step-line-styling/package.json | 38 +++++++++---------- .../tooltip-template/package.json | 38 +++++++++---------- .../category-chart/tooltip-types/package.json | 38 +++++++++---------- .../category-chart/trendline/package.json | 38 +++++++++---------- .../category-chart/value-lines/package.json | 38 +++++++++---------- .../annotations-custom/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../data-chart/axis-annotations/package.json | 38 +++++++++---------- .../data-chart/axis-crossing/package.json | 38 +++++++++---------- .../axis-label-rotation/package.json | 38 +++++++++---------- .../data-chart/axis-locations/package.json | 38 +++++++++---------- .../data-chart/axis-min-max-gap/package.json | 38 +++++++++---------- .../data-chart/axis-settings/package.json | 38 +++++++++---------- .../data-chart/axis-sharing/package.json | 38 +++++++++---------- .../charts/data-chart/axis-types/package.json | 38 +++++++++---------- .../bar-chart-multiple-sources/package.json | 38 +++++++++---------- .../bar-chart-overlapping/package.json | 38 +++++++++---------- .../bar-chart-single-source/package.json | 38 +++++++++---------- .../data-chart/bar-chart-styling/package.json | 38 +++++++++---------- .../callout-layer-styling/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../chart-highlight-filter/package.json | 38 +++++++++---------- .../data-chart/chart-navigation/package.json | 38 +++++++++---------- .../data-chart/chart-overview/package.json | 38 +++++++++---------- .../data-chart/chart-performance/package.json | 38 +++++++++---------- .../chart-synchronization/package.json | 38 +++++++++---------- .../data-chart/chart-titles/package.json | 38 +++++++++---------- .../column-chart-styling/package.json | 38 +++++++++---------- .../data-chart/composite-chart/package.json | 38 +++++++++---------- .../crosshair-layer-styling/package.json | 38 +++++++++---------- .../custom-drawing-annotations/package.json | 38 +++++++++---------- .../custom-editing-data/package.json | 38 +++++++++---------- .../data-chart/dash-array-axes/package.json | 38 +++++++++---------- .../data-chart/dash-array-series/package.json | 38 +++++++++---------- .../dash-array-tickmarks/package.json | 38 +++++++++---------- .../dash-array-trendline/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../data-legend-grouping/package.json | 38 +++++++++---------- .../data-legend-styling/package.json | 38 +++++++++---------- .../data-chart/data-legend/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../data-tooltip-grouping/package.json | 38 +++++++++---------- .../data-tooltip-styling/package.json | 38 +++++++++---------- .../data-chart/data-tooltip/package.json | 38 +++++++++---------- .../final-value-layer-styling/package.json | 38 +++++++++---------- .../financial-price-series/package.json | 38 +++++++++---------- .../data-chart/format-specifiers/package.json | 38 +++++++++---------- .../charts/data-chart/legends/package.json | 38 +++++++++---------- .../polar-area-chart-styling/package.json | 38 +++++++++---------- .../data-chart/polar-area-chart/package.json | 38 +++++++++---------- .../data-chart/polar-chart-types/package.json | 38 +++++++++---------- .../data-chart/polar-line-chart/package.json | 38 +++++++++---------- .../polar-scatter-chart/package.json | 38 +++++++++---------- .../polar-spline-area-chart/package.json | 38 +++++++++---------- .../polar-spline-chart/package.json | 38 +++++++++---------- .../radial-area-chart-styling/package.json | 38 +++++++++---------- .../data-chart/radial-area-chart/package.json | 38 +++++++++---------- .../radial-chart-types/package.json | 38 +++++++++---------- .../radial-column-chart/package.json | 38 +++++++++---------- .../data-chart/radial-line-chart/package.json | 38 +++++++++---------- .../data-chart/radial-pie-chart/package.json | 38 +++++++++---------- .../data-chart/range-area-chart/package.json | 38 +++++++++---------- .../range-column-chart/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../scatter-bubble-chart-styling/package.json | 38 +++++++++---------- .../scatter-line-chart/package.json | 38 +++++++++---------- .../scatter-point-chart/package.json | 38 +++++++++---------- .../scatter-spline-chart/package.json | 38 +++++++++---------- .../data-chart/series-animations/package.json | 38 +++++++++---------- .../series-annotations/package.json | 38 +++++++++---------- .../series-highlighting/package.json | 38 +++++++++---------- .../series-marker-template/package.json | 38 +++++++++---------- .../data-chart/series-markers/package.json | 38 +++++++++---------- .../data-chart/series-tooltips/package.json | 38 +++++++++---------- .../data-chart/series-trendlines/package.json | 38 +++++++++---------- .../series-value-overlay/package.json | 38 +++++++++---------- .../stacked-100-area-chart/package.json | 38 +++++++++---------- .../stacked-100-bar-chart/package.json | 38 +++++++++---------- .../stacked-100-column-chart/package.json | 38 +++++++++---------- .../stacked-100-line-chart/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../stacked-100-spline-chart/package.json | 38 +++++++++---------- .../stacked-area-chart/package.json | 38 +++++++++---------- .../data-chart/stacked-bar-chart/package.json | 38 +++++++++---------- .../stacked-chart-types/package.json | 38 +++++++++---------- .../stacked-column-chart/package.json | 38 +++++++++---------- .../stacked-line-chart/package.json | 38 +++++++++---------- .../stacked-spline-area-chart/package.json | 38 +++++++++---------- .../stacked-spline-chart/package.json | 38 +++++++++---------- .../data-chart/tooltip-template/package.json | 38 +++++++++---------- .../data-chart/transition-event/package.json | 38 +++++++++---------- .../type-category-area-series/package.json | 38 +++++++++---------- .../type-category-bar-series/package.json | 38 +++++++++---------- .../type-category-column-series/package.json | 38 +++++++++---------- .../type-category-line-series/package.json | 38 +++++++++---------- .../type-category-point-series/package.json | 38 +++++++++---------- .../type-category-series/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../type-category-spline-series/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../type-financial-ohlc-series/package.json | 38 +++++++++---------- .../type-financial-overlays/package.json | 38 +++++++++---------- .../type-financial-series/package.json | 38 +++++++++---------- .../type-radial-area-series/package.json | 38 +++++++++---------- .../type-radial-column-series/package.json | 38 +++++++++---------- .../type-radial-line-series/package.json | 38 +++++++++---------- .../type-radial-pie-series/package.json | 38 +++++++++---------- .../type-range-area-series/package.json | 38 +++++++++---------- .../type-range-column-series/package.json | 38 +++++++++---------- .../data-chart/type-range-series/package.json | 38 +++++++++---------- .../type-scatter-area-series/package.json | 38 +++++++++---------- .../type-scatter-bubble-series/package.json | 38 +++++++++---------- .../type-scatter-contour-series/package.json | 38 +++++++++---------- .../type-scatter-hd-series/package.json | 38 +++++++++---------- .../type-scatter-line-series/package.json | 38 +++++++++---------- .../type-scatter-point-series/package.json | 38 +++++++++---------- .../type-scatter-polygon-series/package.json | 38 +++++++++---------- .../type-scatter-polyline-series/package.json | 38 +++++++++---------- .../type-scatter-series/package.json | 38 +++++++++---------- .../type-scatter-spline-series/package.json | 38 +++++++++---------- .../data-chart/type-shape-series/package.json | 38 +++++++++---------- .../type-stacked-100-area-series/package.json | 38 +++++++++---------- .../type-stacked-100-bar-series/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../type-stacked-100-line-series/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../type-stacked-area-series/package.json | 38 +++++++++---------- .../type-stacked-bar-series/package.json | 38 +++++++++---------- .../type-stacked-column-series/package.json | 38 +++++++++---------- .../type-stacked-line-series/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../type-stacked-spline-series/package.json | 38 +++++++++---------- .../data-chart/waterfall-chart/package.json | 38 +++++++++---------- .../doughnut-chart/animation/package.json | 38 +++++++++---------- .../doughnut-chart/explosion/package.json | 38 +++++++++---------- .../charts/doughnut-chart/legend/package.json | 38 +++++++++---------- .../doughnut-chart/overview/package.json | 38 +++++++++---------- .../charts/doughnut-chart/rings/package.json | 38 +++++++++---------- .../doughnut-chart/selection/package.json | 38 +++++++++---------- .../financial-chart/annotations/package.json | 38 +++++++++---------- .../financial-chart/axis-types/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../data-legend-styling-props/package.json | 38 +++++++++---------- .../financial-chart/data-legend/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../data-tooltip-styling-props/package.json | 38 +++++++++---------- .../financial-chart/data-tooltip/package.json | 38 +++++++++---------- .../format-specifiers/package.json | 38 +++++++++---------- .../high-frequency/package.json | 38 +++++++++---------- .../financial-chart/high-volume/package.json | 38 +++++++++---------- .../indicator-customization/package.json | 38 +++++++++---------- .../indicator-types/package.json | 38 +++++++++---------- .../multiple-data/package.json | 38 +++++++++---------- .../multiple-feeds/package.json | 38 +++++++++---------- .../financial-chart/overview/package.json | 38 +++++++++---------- .../charts/financial-chart/panes/package.json | 38 +++++++++---------- .../financial-chart/performance/package.json | 38 +++++++++---------- .../financial-chart/scrollbars/package.json | 38 +++++++++---------- .../stock-index-chart/package.json | 38 +++++++++---------- .../financial-chart/styling/package.json | 38 +++++++++---------- .../financial-chart/theming/package.json | 38 +++++++++---------- .../time-based-data/package.json | 38 +++++++++---------- .../financial-chart/titles/package.json | 38 +++++++++---------- .../tooltip-template/package.json | 38 +++++++++---------- .../tooltip-types/package.json | 38 +++++++++---------- .../financial-chart/trendlines/package.json | 38 +++++++++---------- .../financial-chart/volume-types/package.json | 38 +++++++++---------- .../charts/pie-chart/animation/package.json | 38 +++++++++---------- .../charts/pie-chart/explosion/package.json | 38 +++++++++---------- samples/charts/pie-chart/legend/package.json | 38 +++++++++---------- samples/charts/pie-chart/others/package.json | 38 +++++++++---------- .../charts/pie-chart/overview/package.json | 38 +++++++++---------- .../charts/pie-chart/selection/package.json | 38 +++++++++---------- samples/charts/pie-chart/styling/package.json | 38 +++++++++---------- .../sparkline/display-area/package.json | 38 +++++++++---------- .../sparkline/display-column/package.json | 38 +++++++++---------- .../sparkline/display-lines/package.json | 38 +++++++++---------- .../sparkline/display-types/package.json | 38 +++++++++---------- .../sparkline/display-winloss/package.json | 38 +++++++++---------- samples/charts/sparkline/grid/package.json | 38 +++++++++---------- samples/charts/sparkline/markers/package.json | 38 +++++++++---------- .../sparkline/normal-range/package.json | 38 +++++++++---------- .../charts/sparkline/trendlines/package.json | 38 +++++++++---------- .../sparkline/unknown-values/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../actions-built-in-data-chart/package.json | 38 +++++++++---------- .../charts/toolbar/custom-tool/package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- .../package.json | 38 +++++++++---------- samples/charts/toolbar/theming/package.json | 38 +++++++++---------- samples/charts/tree-map/events/package.json | 38 +++++++++---------- .../highlighting-percent-based/package.json | 38 +++++++++---------- .../charts/tree-map/highlighting/package.json | 38 +++++++++---------- samples/charts/tree-map/layout/package.json | 38 +++++++++---------- samples/charts/tree-map/overview/package.json | 38 +++++++++---------- samples/charts/tree-map/styling/package.json | 38 +++++++++---------- .../charts/zoomslider/overview/package.json | 38 +++++++++---------- .../operations-on-workbooks/package.json | 38 +++++++++---------- .../operations-on-worksheets/package.json | 38 +++++++++---------- .../excel/excel-library/overview/package.json | 38 +++++++++---------- .../working-with-cells/package.json | 38 +++++++++---------- .../working-with-charts/package.json | 38 +++++++++---------- .../working-with-sparklines/package.json | 38 +++++++++---------- .../working-with-tables/package.json | 38 +++++++++---------- .../excel/spreadsheet/activation/package.json | 38 +++++++++---------- .../spreadsheet/adapter-chart/package.json | 38 +++++++++---------- .../spreadsheet/adapter-combo/package.json | 38 +++++++++---------- .../excel/spreadsheet/clipboard/package.json | 38 +++++++++---------- .../excel/spreadsheet/commands/package.json | 38 +++++++++---------- .../conditional-formatting/package.json | 38 +++++++++---------- .../spreadsheet/config-options/package.json | 38 +++++++++---------- .../spreadsheet/data-validation/package.json | 38 +++++++++---------- .../excel/spreadsheet/hyperlinks/package.json | 38 +++++++++---------- .../excel/spreadsheet/overview/package.json | 38 +++++++++---------- .../bullet-graph/animation/package.json | 38 +++++++++---------- .../bullet-graph/background/package.json | 38 +++++++++---------- .../highlight-needle/package.json | 38 +++++++++---------- .../gauges/bullet-graph/labels/package.json | 38 +++++++++---------- .../gauges/bullet-graph/measures/package.json | 38 +++++++++---------- .../gauges/bullet-graph/ranges/package.json | 38 +++++++++---------- .../gauges/bullet-graph/scale/package.json | 38 +++++++++---------- .../bullet-graph/tickmarks/package.json | 38 +++++++++---------- .../linear-gauge/animation/package.json | 38 +++++++++---------- .../gauges/linear-gauge/backing/package.json | 38 +++++++++---------- .../highlight-needle/package.json | 38 +++++++++---------- .../gauges/linear-gauge/labels/package.json | 38 +++++++++---------- .../gauges/linear-gauge/needle/package.json | 38 +++++++++---------- .../gauges/linear-gauge/ranges/package.json | 38 +++++++++---------- .../gauges/linear-gauge/scale/package.json | 38 +++++++++---------- .../linear-gauge/tickmarks/package.json | 38 +++++++++---------- .../radial-gauge/animation/package.json | 38 +++++++++---------- .../gauges/radial-gauge/backing/package.json | 38 +++++++++---------- .../highlight-needle/package.json | 38 +++++++++---------- .../gauges/radial-gauge/labels/package.json | 38 +++++++++---------- .../gauges/radial-gauge/needle/package.json | 38 +++++++++---------- .../radial-gauge/optical-scaling/package.json | 38 +++++++++---------- .../gauges/radial-gauge/ranges/package.json | 38 +++++++++---------- .../gauges/radial-gauge/scale/package.json | 38 +++++++++---------- .../radial-gauge/tickmarks/package.json | 38 +++++++++---------- .../geo-map/binding-data-csv/package.json | 38 +++++++++---------- .../binding-data-json-points/package.json | 38 +++++++++---------- .../geo-map/binding-data-model/package.json | 38 +++++++++---------- .../binding-multiple-shapes/package.json | 38 +++++++++---------- .../binding-multiple-sources/package.json | 38 +++++++++---------- .../geo-map/binding-shp-points/package.json | 38 +++++++++---------- .../geo-map/binding-shp-polygons/package.json | 38 +++++++++---------- .../binding-shp-polylines/package.json | 38 +++++++++---------- .../maps/geo-map/custom-tooltips/package.json | 38 +++++++++---------- .../geo-map/display-bing-imagery/package.json | 38 +++++++++---------- .../geo-map/display-esri-imagery/package.json | 38 +++++++++---------- .../geo-map/display-heat-imagery/package.json | 38 +++++++++---------- .../geo-map/display-osm-imagery/package.json | 38 +++++++++---------- .../maps/geo-map/marker-layouts/package.json | 38 +++++++++---------- .../maps/geo-map/marker-template/package.json | 38 +++++++++---------- samples/maps/geo-map/marker-type/package.json | 38 +++++++++---------- samples/maps/geo-map/navigation/package.json | 38 +++++++++---------- samples/maps/geo-map/overview/package.json | 38 +++++++++---------- .../maps/geo-map/shape-styling/package.json | 38 +++++++++---------- .../geo-map/triangulating-data/package.json | 38 +++++++++---------- .../type-scatter-area-series/package.json | 38 +++++++++---------- .../type-scatter-bubble-series/package.json | 38 +++++++++---------- .../type-scatter-contour-series/package.json | 38 +++++++++---------- .../type-scatter-density-series/package.json | 38 +++++++++---------- .../type-scatter-symbol-series/package.json | 38 +++++++++---------- .../type-shape-polygon-series/package.json | 38 +++++++++---------- .../type-shape-polyline-series/package.json | 38 +++++++++---------- 342 files changed, 6491 insertions(+), 6491 deletions(-) diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 94cc4613c..38fd24dfa 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1087,13 +1087,13 @@ function updateIG(cb) { { name: "igniteui-webcomponents", version: "4.9.0" }, { name: "igniteui-theming", version: "6.4.0-beta.2" }, { name: "igniteui-angular", version: "17.2.3" }, - { name: "@angular/animations", version: "17.0.0" }, - { name: "@angular/common", version: "17.0.0" }, - { name: "@angular/compiler", version: "17.0.0" }, - { name: "@angular/core", version: "17.0.0" }, - { name: "@angular/forms", version: "17.0.0" }, - { name: "@angular/platform-browser", version: "17.0.0" }, - { name: "@angular/platform-browser-dynamic", version: "17.0.0" }, + { name: "@angular/animations", version: "18.0.2" }, + { name: "@angular/common", version: "18.0.2" }, + { name: "@angular/compiler", version: "18.0.2" }, + { name: "@angular/core", version: "18.0.2" }, + { name: "@angular/forms", version: "18.0.2" }, + { name: "@angular/platform-browser", version: "18.0.2" }, + { name: "@angular/platform-browser-dynamic", version: "18.0.2" }, { name: "classlist-js", version: "1.1.20150312" }, { name: "core-js", version: "3.21.0" }, { name: "hammerjs", version: "2.0.8" }, @@ -1104,10 +1104,10 @@ function updateIG(cb) { { name: "web-animations-js", version: "2.3.2" }, { name: "zone.js", version: "~0.14.1" }, // dev packages: - { name: "@angular/cli", version: "17.0.0"}, - { name: "@angular/compiler-cli", version: "17.0.0"}, - { name: "@angular/language-service", version: "17.0.0"}, - { name: "@angular-devkit/build-angular", version: "17.0.0"}, + { name: "@angular/cli", version: "18.0.3"}, + { name: "@angular/compiler-cli", version: "18.0.2"}, + { name: "@angular/language-service", version: "18.0.2"}, + { name: "@angular-devkit/build-angular", version: "18.0.3"}, { name: "@types/node", version: "14.14.28"}, { name: "codelyzer", version: "6.0.2"}, { name: "jasmine-core", version: "3.7.1"}, @@ -1115,7 +1115,7 @@ function updateIG(cb) { { name: "sass.js", version: "0.11.1"}, { name: "tslint", version: "~6.1.3"}, { name: "ts-node", version: "9.1.1"}, - { name: "typescript", version: "5.2.2"}, + { name: "typescript", version: "5.4.5"}, ]; // NOTE you can comment out strings in this array to run these function only on a subset of samples diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index b18743c2c..184a5bbfa 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 455da6795..3400be0dd 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 455da6795..3400be0dd 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 692bec68c..8467feabf 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index b18743c2c..184a5bbfa 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index b18743c2c..184a5bbfa 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index b18743c2c..184a5bbfa 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index b18743c2c..184a5bbfa 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 07a06398c..d0b116de5 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-theming": "6.4.0-beta.2", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index b18743c2c..184a5bbfa 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index b18743c2c..184a5bbfa 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index ac0c7e9cd..542cf63f7 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index b18743c2c..184a5bbfa 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index b18743c2c..184a5bbfa 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 455da6795..3400be0dd 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index e03218915..e2acad227 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index ae1e51e80..7f1e93b82 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -7,17 +7,17 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 35620b319..85853afc1 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@angular-devkit/build-angular": "17.2.0", - "@types/node": "18.17.0", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "10.9.1", - "typescript": "5.3.3" + "ts-node": "9.1.1", + "typescript": "5.4.5" } } diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 2b3760a42..09f536dfe 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 543b4d932..51ad393aa 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index ac56cbd59..22d68664f 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index ac56cbd59..22d68664f 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index ac56cbd59..22d68664f 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -7,40 +7,40 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 0c18fe415..0f2f5bd98 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -7,42 +7,42 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 0c18fe415..0f2f5bd98 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -7,42 +7,42 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index d3ae2a586..e587a2aca 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -7,42 +7,42 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index f5afec064..3e5450a08 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index ea7cf664f..ad5c2f729 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", @@ -27,23 +27,23 @@ "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index ea7cf664f..ad5c2f729 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", @@ -27,23 +27,23 @@ "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index f5afec064..3e5450a08 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index f5afec064..3e5450a08 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index f5afec064..3e5450a08 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index f5afec064..3e5450a08 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index f5afec064..3e5450a08 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index f5afec064..3e5450a08 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index f5afec064..3e5450a08 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -7,41 +7,41 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-excel": "17.3.1-alpha.0", "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index be320fa81..556f34570 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index be320fa81..556f34570 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index be320fa81..556f34570 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular": "17.2.3", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 1d5da46d8..99651bacc 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -7,38 +7,38 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 427146442..84663cd71 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -7,39 +7,39 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "^17.2.1", - "@angular/common": "^17.2.1", - "@angular/compiler": "^17.2.1", - "@angular/core": "^17.2.1", - "@angular/forms": "^17.2.1", - "@angular/platform-browser": "^17.2.1", - "@angular/platform-browser-dynamic": "^17.2.1", + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", "@types/hammerjs": "2.0.39", "classlist.js": "1.1.20150312", "core-js": "3.21.0", - "hammerjs": "^2.0.8", + "hammerjs": "2.0.8", "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "^7.8.1", - "tslib": "^2.6.1", + "rxjs": "6.6.7", + "tslib": "2.3.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.14.1" }, "devDependencies": { - "@angular-devkit/build-angular": "17.2.0", - "@angular/cli": "17.2.0", - "@angular/compiler-cli": "17.2.1", - "@angular/language-service": "17.2.1", - "@types/node": "18.17.0", + "@angular-devkit/build-angular": "18.0.3", + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@types/node": "14.14.28", "codelyzer": "6.0.2", - "jasmine-core": "5.1.1", + "jasmine-core": "3.7.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", + "ts-node": "9.1.1", "tslint": "~6.1.3", - "typescript": "5.3.3" + "typescript": "5.4.5" } } From 6b029fbf0daa8583ebeef1212b40efec77b3ed4c Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Thu, 20 Jun 2024 11:23:51 -0400 Subject: [PATCH 088/154] mdd-update-browserjs (#209) * mdd-update-browserjs mdd-update-browserjs * update-all update-all --- browser/package.json | 12 ++++++------ browser/scripts/browser.js | 12 ++++++------ .../category-chart/annotations-all/package.json | 12 ++++++------ .../category-chart/annotations-callouts/package.json | 12 ++++++------ .../annotations-crosshairs/package.json | 12 ++++++------ .../category-chart/annotations-custom/package.json | 12 ++++++------ .../annotations-final-value/package.json | 12 ++++++------ .../annotations-highlighting/package.json | 12 ++++++------ .../charts/category-chart/annotations/package.json | 12 ++++++------ .../area-chart-multiple-sources/package.json | 12 ++++++------ .../area-chart-single-source/package.json | 12 ++++++------ .../category-chart/area-chart-styling/package.json | 12 ++++++------ samples/charts/category-chart/axis-gap/package.json | 12 ++++++------ .../category-chart/axis-gridlines/package.json | 12 ++++++------ .../charts/category-chart/axis-inverted/package.json | 12 ++++++------ .../charts/category-chart/axis-labels/package.json | 12 ++++++------ .../category-chart/axis-locations/package.json | 12 ++++++------ .../charts/category-chart/axis-options/package.json | 12 ++++++------ .../charts/category-chart/axis-overlap/package.json | 12 ++++++------ .../charts/category-chart/axis-range/package.json | 12 ++++++------ .../category-chart/axis-tickmarks/package.json | 12 ++++++------ .../charts/category-chart/axis-titles/package.json | 12 ++++++------ .../chart-highlight-filter/package.json | 12 ++++++------ .../column-chart-multiple-sources/package.json | 12 ++++++------ .../column-chart-single-source/package.json | 12 ++++++------ .../category-chart/column-chart-styling/package.json | 12 ++++++------ .../column-chart-with-highlighting/package.json | 12 ++++++------ .../column-chart-with-tooltips/package.json | 12 ++++++------ .../category-chart/custom-selection/package.json | 12 ++++++------ .../category-chart/data-aggregations/package.json | 12 ++++++------ .../charts/category-chart/data-filter/package.json | 12 ++++++------ .../data-legend-formatting-decimals/package.json | 12 ++++++------ .../charts/category-chart/data-legend/package.json | 12 ++++++------ .../data-tooltip-formatting-decimals/package.json | 12 ++++++------ .../data-tooltip-positioning/package.json | 12 ++++++------ .../charts/category-chart/data-tooltip/package.json | 12 ++++++------ .../category-chart/format-specifiers/package.json | 12 ++++++------ .../category-chart/high-frequency/package.json | 12 ++++++------ .../charts/category-chart/high-volume/package.json | 12 ++++++------ .../highlighting-behavior/package.json | 12 ++++++------ .../category-chart/highlighting-mode/package.json | 12 ++++++------ .../charts/category-chart/highlighting/package.json | 12 ++++++------ .../category-chart/legend-highlighting/package.json | 12 ++++++------ .../line-chart-multiple-sources/package.json | 12 ++++++------ .../line-chart-single-source/package.json | 12 ++++++------ .../category-chart/line-chart-styling/package.json | 12 ++++++------ .../line-chart-with-animations/package.json | 12 ++++++------ .../line-chart-with-annotations/package.json | 12 ++++++------ .../line-chart-with-legend/package.json | 12 ++++++------ .../category-chart/marker-options/package.json | 12 ++++++------ .../category-chart/marker-templates/package.json | 12 ++++++------ samples/charts/category-chart/overview/package.json | 12 ++++++------ .../point-chart-multiple-sources/package.json | 12 ++++++------ .../point-chart-single-source/package.json | 12 ++++++------ .../category-chart/point-chart-styling/package.json | 12 ++++++------ .../spline-area-multiple-sources/package.json | 12 ++++++------ .../spline-area-single-source/package.json | 12 ++++++------ .../category-chart/spline-area-styling/package.json | 12 ++++++------ .../spline-multiple-sources/package.json | 12 ++++++------ .../category-chart/spline-single-source/package.json | 12 ++++++------ .../category-chart/spline-styling/package.json | 12 ++++++------ .../charts/category-chart/stack-columns/package.json | 12 ++++++------ .../step-area-multiple-sources/package.json | 12 ++++++------ .../step-area-single-source/package.json | 12 ++++++------ .../category-chart/step-area-styling/package.json | 12 ++++++------ .../step-line-multiple-sources/package.json | 12 ++++++------ .../step-line-single-source/package.json | 12 ++++++------ .../category-chart/step-line-styling/package.json | 12 ++++++------ .../category-chart/tooltip-template/package.json | 12 ++++++------ .../charts/category-chart/tooltip-types/package.json | 12 ++++++------ samples/charts/category-chart/trendline/package.json | 12 ++++++------ .../charts/category-chart/value-lines/package.json | 12 ++++++------ .../data-chart/annotations-custom/package.json | 12 ++++++------ .../axis-annotations-corner-radius/package.json | 12 ++++++------ .../charts/data-chart/axis-annotations/package.json | 12 ++++++------ samples/charts/data-chart/axis-crossing/package.json | 12 ++++++------ .../data-chart/axis-label-rotation/package.json | 12 ++++++------ .../charts/data-chart/axis-locations/package.json | 12 ++++++------ .../charts/data-chart/axis-min-max-gap/package.json | 12 ++++++------ samples/charts/data-chart/axis-settings/package.json | 12 ++++++------ samples/charts/data-chart/axis-sharing/package.json | 12 ++++++------ samples/charts/data-chart/axis-types/package.json | 12 ++++++------ .../bar-chart-multiple-sources/package.json | 12 ++++++------ .../data-chart/bar-chart-overlapping/package.json | 12 ++++++------ .../data-chart/bar-chart-single-source/package.json | 12 ++++++------ .../charts/data-chart/bar-chart-styling/package.json | 12 ++++++------ .../data-chart/callout-layer-styling/package.json | 12 ++++++------ .../chart-highlight-filter-datasource/package.json | 12 ++++++------ .../package.json | 12 ++++++------ .../data-chart/chart-highlight-filter/package.json | 12 ++++++------ .../charts/data-chart/chart-navigation/package.json | 12 ++++++------ .../charts/data-chart/chart-overview/package.json | 12 ++++++------ .../charts/data-chart/chart-performance/package.json | 12 ++++++------ .../data-chart/chart-synchronization/package.json | 12 ++++++------ samples/charts/data-chart/chart-titles/package.json | 12 ++++++------ .../data-chart/column-chart-styling/package.json | 12 ++++++------ .../charts/data-chart/composite-chart/package.json | 12 ++++++------ .../data-chart/crosshair-layer-styling/package.json | 12 ++++++------ .../custom-drawing-annotations/package.json | 12 ++++++------ .../data-chart/custom-editing-data/package.json | 12 ++++++------ .../charts/data-chart/dash-array-axes/package.json | 12 ++++++------ .../charts/data-chart/dash-array-series/package.json | 12 ++++++------ .../data-chart/dash-array-tickmarks/package.json | 12 ++++++------ .../data-chart/dash-array-trendline/package.json | 12 ++++++------ .../package.json | 12 ++++++------ .../data-chart/data-legend-grouping/package.json | 12 ++++++------ .../data-chart/data-legend-styling/package.json | 12 ++++++------ samples/charts/data-chart/data-legend/package.json | 12 ++++++------ .../package.json | 12 ++++++------ .../data-chart/data-tooltip-grouping/package.json | 12 ++++++------ .../data-chart/data-tooltip-styling/package.json | 12 ++++++------ samples/charts/data-chart/data-tooltip/package.json | 12 ++++++------ .../final-value-layer-styling/package.json | 12 ++++++------ .../data-chart/financial-price-series/package.json | 12 ++++++------ .../charts/data-chart/format-specifiers/package.json | 12 ++++++------ samples/charts/data-chart/legends/package.json | 12 ++++++------ .../data-chart/polar-area-chart-styling/package.json | 12 ++++++------ .../charts/data-chart/polar-area-chart/package.json | 12 ++++++------ .../charts/data-chart/polar-chart-types/package.json | 12 ++++++------ .../charts/data-chart/polar-line-chart/package.json | 12 ++++++------ .../data-chart/polar-scatter-chart/package.json | 12 ++++++------ .../data-chart/polar-spline-area-chart/package.json | 12 ++++++------ .../data-chart/polar-spline-chart/package.json | 12 ++++++------ .../radial-area-chart-styling/package.json | 12 ++++++------ .../charts/data-chart/radial-area-chart/package.json | 12 ++++++------ .../data-chart/radial-chart-types/package.json | 12 ++++++------ .../data-chart/radial-column-chart/package.json | 12 ++++++------ .../charts/data-chart/radial-line-chart/package.json | 12 ++++++------ .../charts/data-chart/radial-pie-chart/package.json | 12 ++++++------ .../charts/data-chart/range-area-chart/package.json | 12 ++++++------ .../data-chart/range-column-chart/package.json | 12 ++++++------ .../scatter-bubble-chart-fill-scale/package.json | 12 ++++++------ .../package.json | 12 ++++++------ .../scatter-bubble-chart-single-source/package.json | 12 ++++++------ .../scatter-bubble-chart-styling/package.json | 12 ++++++------ .../data-chart/scatter-line-chart/package.json | 12 ++++++------ .../data-chart/scatter-point-chart/package.json | 12 ++++++------ .../data-chart/scatter-spline-chart/package.json | 12 ++++++------ .../charts/data-chart/series-animations/package.json | 12 ++++++------ .../data-chart/series-annotations/package.json | 12 ++++++------ .../data-chart/series-highlighting/package.json | 12 ++++++------ .../data-chart/series-marker-template/package.json | 12 ++++++------ .../charts/data-chart/series-markers/package.json | 12 ++++++------ .../charts/data-chart/series-tooltips/package.json | 12 ++++++------ .../charts/data-chart/series-trendlines/package.json | 12 ++++++------ .../data-chart/series-value-overlay/package.json | 12 ++++++------ .../data-chart/stacked-100-area-chart/package.json | 12 ++++++------ .../data-chart/stacked-100-bar-chart/package.json | 12 ++++++------ .../data-chart/stacked-100-column-chart/package.json | 12 ++++++------ .../data-chart/stacked-100-line-chart/package.json | 12 ++++++------ .../stacked-100-spline-area-chart/package.json | 12 ++++++------ .../data-chart/stacked-100-spline-chart/package.json | 12 ++++++------ .../data-chart/stacked-area-chart/package.json | 12 ++++++------ .../charts/data-chart/stacked-bar-chart/package.json | 12 ++++++------ .../data-chart/stacked-chart-types/package.json | 12 ++++++------ .../data-chart/stacked-column-chart/package.json | 12 ++++++------ .../data-chart/stacked-line-chart/package.json | 12 ++++++------ .../stacked-spline-area-chart/package.json | 12 ++++++------ .../data-chart/stacked-spline-chart/package.json | 12 ++++++------ .../charts/data-chart/tooltip-template/package.json | 12 ++++++------ .../charts/data-chart/transition-event/package.json | 12 ++++++------ .../type-category-area-series/package.json | 12 ++++++------ .../data-chart/type-category-bar-series/package.json | 12 ++++++------ .../type-category-column-series/package.json | 12 ++++++------ .../type-category-line-series/package.json | 12 ++++++------ .../type-category-point-series/package.json | 12 ++++++------ .../data-chart/type-category-series/package.json | 12 ++++++------ .../type-category-spline-area-series/package.json | 12 ++++++------ .../type-category-spline-series/package.json | 12 ++++++------ .../type-category-step-area-series/package.json | 12 ++++++------ .../type-category-step-line-series/package.json | 12 ++++++------ .../type-category-waterfall-series/package.json | 12 ++++++------ .../type-financial-area-indicators/package.json | 12 ++++++------ .../type-financial-candlestick-series/package.json | 12 ++++++------ .../type-financial-column-indicators/package.json | 12 ++++++------ .../type-financial-line-indicators/package.json | 12 ++++++------ .../type-financial-ohlc-series/package.json | 12 ++++++------ .../data-chart/type-financial-overlays/package.json | 12 ++++++------ .../data-chart/type-financial-series/package.json | 12 ++++++------ .../data-chart/type-radial-area-series/package.json | 12 ++++++------ .../type-radial-column-series/package.json | 12 ++++++------ .../data-chart/type-radial-line-series/package.json | 12 ++++++------ .../data-chart/type-radial-pie-series/package.json | 12 ++++++------ .../data-chart/type-range-area-series/package.json | 12 ++++++------ .../data-chart/type-range-column-series/package.json | 12 ++++++------ .../charts/data-chart/type-range-series/package.json | 12 ++++++------ .../data-chart/type-scatter-area-series/package.json | 12 ++++++------ .../type-scatter-bubble-series/package.json | 12 ++++++------ .../type-scatter-contour-series/package.json | 12 ++++++------ .../data-chart/type-scatter-hd-series/package.json | 12 ++++++------ .../data-chart/type-scatter-line-series/package.json | 12 ++++++------ .../type-scatter-point-series/package.json | 12 ++++++------ .../type-scatter-polygon-series/package.json | 12 ++++++------ .../type-scatter-polyline-series/package.json | 12 ++++++------ .../data-chart/type-scatter-series/package.json | 12 ++++++------ .../type-scatter-spline-series/package.json | 12 ++++++------ .../charts/data-chart/type-shape-series/package.json | 12 ++++++------ .../type-stacked-100-area-series/package.json | 12 ++++++------ .../type-stacked-100-bar-series/package.json | 12 ++++++------ .../type-stacked-100-column-series/package.json | 12 ++++++------ .../type-stacked-100-line-series/package.json | 12 ++++++------ .../type-stacked-100-spline-area-series/package.json | 12 ++++++------ .../type-stacked-100-spline-series/package.json | 12 ++++++------ .../data-chart/type-stacked-area-series/package.json | 12 ++++++------ .../data-chart/type-stacked-bar-series/package.json | 12 ++++++------ .../type-stacked-column-series/package.json | 12 ++++++------ .../data-chart/type-stacked-line-series/package.json | 12 ++++++------ .../type-stacked-spline-area-series/package.json | 12 ++++++------ .../type-stacked-spline-series/package.json | 12 ++++++------ .../charts/data-chart/waterfall-chart/package.json | 12 ++++++------ samples/charts/doughnut-chart/animation/package.json | 12 ++++++------ samples/charts/doughnut-chart/explosion/package.json | 12 ++++++------ samples/charts/doughnut-chart/legend/package.json | 12 ++++++------ samples/charts/doughnut-chart/overview/package.json | 12 ++++++------ samples/charts/doughnut-chart/rings/package.json | 12 ++++++------ samples/charts/doughnut-chart/selection/package.json | 12 ++++++------ .../charts/financial-chart/annotations/package.json | 12 ++++++------ .../charts/financial-chart/axis-types/package.json | 12 ++++++------ .../data-legend-formatting-currency/package.json | 12 ++++++------ .../data-legend-styling-props/package.json | 12 ++++++------ .../charts/financial-chart/data-legend/package.json | 12 ++++++------ .../data-tooltip-formatting-currency/package.json | 12 ++++++------ .../data-tooltip-styling-props/package.json | 12 ++++++------ .../charts/financial-chart/data-tooltip/package.json | 12 ++++++------ .../financial-chart/format-specifiers/package.json | 12 ++++++------ .../financial-chart/high-frequency/package.json | 12 ++++++------ .../charts/financial-chart/high-volume/package.json | 12 ++++++------ .../indicator-customization/package.json | 12 ++++++------ .../financial-chart/indicator-types/package.json | 12 ++++++------ .../financial-chart/multiple-data/package.json | 12 ++++++------ .../financial-chart/multiple-feeds/package.json | 12 ++++++------ samples/charts/financial-chart/overview/package.json | 12 ++++++------ samples/charts/financial-chart/panes/package.json | 12 ++++++------ .../charts/financial-chart/performance/package.json | 12 ++++++------ .../charts/financial-chart/scrollbars/package.json | 12 ++++++------ .../financial-chart/stock-index-chart/package.json | 12 ++++++------ samples/charts/financial-chart/styling/package.json | 12 ++++++------ samples/charts/financial-chart/theming/package.json | 12 ++++++------ .../financial-chart/time-based-data/package.json | 12 ++++++------ samples/charts/financial-chart/titles/package.json | 12 ++++++------ .../financial-chart/tooltip-template/package.json | 12 ++++++------ .../financial-chart/tooltip-types/package.json | 12 ++++++------ .../charts/financial-chart/trendlines/package.json | 12 ++++++------ .../charts/financial-chart/volume-types/package.json | 12 ++++++------ samples/charts/pie-chart/animation/package.json | 12 ++++++------ samples/charts/pie-chart/explosion/package.json | 12 ++++++------ samples/charts/pie-chart/legend/package.json | 12 ++++++------ samples/charts/pie-chart/others/package.json | 12 ++++++------ samples/charts/pie-chart/overview/package.json | 12 ++++++------ samples/charts/pie-chart/selection/package.json | 12 ++++++------ samples/charts/pie-chart/styling/package.json | 12 ++++++------ samples/charts/sparkline/display-area/package.json | 12 ++++++------ samples/charts/sparkline/display-column/package.json | 12 ++++++------ samples/charts/sparkline/display-lines/package.json | 12 ++++++------ samples/charts/sparkline/display-types/package.json | 12 ++++++------ .../charts/sparkline/display-winloss/package.json | 12 ++++++------ samples/charts/sparkline/grid/package.json | 12 ++++++------ samples/charts/sparkline/markers/package.json | 12 ++++++------ samples/charts/sparkline/normal-range/package.json | 12 ++++++------ samples/charts/sparkline/trendlines/package.json | 12 ++++++------ samples/charts/sparkline/unknown-values/package.json | 12 ++++++------ .../actions-built-in-category-chart/package.json | 12 ++++++------ .../toolbar/actions-built-in-data-chart/package.json | 12 ++++++------ samples/charts/toolbar/custom-tool/package.json | 12 ++++++------ .../layout-actions-for-data-chart/package.json | 12 ++++++------ .../layout-in-vertical-orientation/package.json | 12 ++++++------ samples/charts/toolbar/theming/package.json | 12 ++++++------ samples/charts/tree-map/events/package.json | 12 ++++++------ .../tree-map/highlighting-percent-based/package.json | 12 ++++++------ samples/charts/tree-map/highlighting/package.json | 12 ++++++------ samples/charts/tree-map/layout/package.json | 12 ++++++------ samples/charts/tree-map/overview/package.json | 12 ++++++------ samples/charts/tree-map/styling/package.json | 12 ++++++------ samples/charts/zoomslider/overview/package.json | 12 ++++++------ .../operations-on-workbooks/package.json | 12 ++++++------ .../operations-on-worksheets/package.json | 12 ++++++------ samples/excel/excel-library/overview/package.json | 12 ++++++------ .../excel-library/working-with-cells/package.json | 12 ++++++------ .../excel-library/working-with-charts/package.json | 12 ++++++------ .../working-with-sparklines/package.json | 12 ++++++------ .../excel-library/working-with-tables/package.json | 12 ++++++------ samples/excel/spreadsheet/activation/package.json | 12 ++++++------ samples/excel/spreadsheet/adapter-chart/package.json | 12 ++++++------ samples/excel/spreadsheet/adapter-combo/package.json | 12 ++++++------ samples/excel/spreadsheet/clipboard/package.json | 12 ++++++------ samples/excel/spreadsheet/commands/package.json | 12 ++++++------ .../spreadsheet/conditional-formatting/package.json | 12 ++++++------ .../excel/spreadsheet/config-options/package.json | 12 ++++++------ .../excel/spreadsheet/data-validation/package.json | 12 ++++++------ samples/excel/spreadsheet/hyperlinks/package.json | 12 ++++++------ samples/excel/spreadsheet/overview/package.json | 12 ++++++------ samples/gauges/bullet-graph/animation/package.json | 12 ++++++------ samples/gauges/bullet-graph/background/package.json | 12 ++++++------ .../bullet-graph/highlight-needle/package.json | 12 ++++++------ samples/gauges/bullet-graph/labels/package.json | 12 ++++++------ samples/gauges/bullet-graph/measures/package.json | 12 ++++++------ samples/gauges/bullet-graph/ranges/package.json | 12 ++++++------ samples/gauges/bullet-graph/scale/package.json | 12 ++++++------ samples/gauges/bullet-graph/tickmarks/package.json | 12 ++++++------ samples/gauges/linear-gauge/animation/package.json | 12 ++++++------ samples/gauges/linear-gauge/backing/package.json | 12 ++++++------ .../linear-gauge/highlight-needle/package.json | 12 ++++++------ samples/gauges/linear-gauge/labels/package.json | 12 ++++++------ samples/gauges/linear-gauge/needle/package.json | 12 ++++++------ samples/gauges/linear-gauge/ranges/package.json | 12 ++++++------ samples/gauges/linear-gauge/scale/package.json | 12 ++++++------ samples/gauges/linear-gauge/tickmarks/package.json | 12 ++++++------ samples/gauges/radial-gauge/animation/package.json | 12 ++++++------ samples/gauges/radial-gauge/backing/package.json | 12 ++++++------ .../radial-gauge/highlight-needle/package.json | 12 ++++++------ samples/gauges/radial-gauge/labels/package.json | 12 ++++++------ samples/gauges/radial-gauge/needle/package.json | 12 ++++++------ .../gauges/radial-gauge/optical-scaling/package.json | 12 ++++++------ samples/gauges/radial-gauge/ranges/package.json | 12 ++++++------ samples/gauges/radial-gauge/scale/package.json | 12 ++++++------ samples/gauges/radial-gauge/tickmarks/package.json | 12 ++++++------ samples/maps/geo-map/binding-data-csv/package.json | 12 ++++++------ .../geo-map/binding-data-json-points/package.json | 12 ++++++------ samples/maps/geo-map/binding-data-model/package.json | 12 ++++++------ .../geo-map/binding-multiple-shapes/package.json | 12 ++++++------ .../geo-map/binding-multiple-sources/package.json | 12 ++++++------ samples/maps/geo-map/binding-shp-points/package.json | 12 ++++++------ .../maps/geo-map/binding-shp-polygons/package.json | 12 ++++++------ .../maps/geo-map/binding-shp-polylines/package.json | 12 ++++++------ samples/maps/geo-map/custom-tooltips/package.json | 12 ++++++------ .../maps/geo-map/display-bing-imagery/package.json | 12 ++++++------ .../maps/geo-map/display-esri-imagery/package.json | 12 ++++++------ .../maps/geo-map/display-heat-imagery/package.json | 12 ++++++------ .../maps/geo-map/display-osm-imagery/package.json | 12 ++++++------ samples/maps/geo-map/marker-layouts/package.json | 12 ++++++------ samples/maps/geo-map/marker-template/package.json | 12 ++++++------ samples/maps/geo-map/marker-type/package.json | 12 ++++++------ samples/maps/geo-map/navigation/package.json | 12 ++++++------ samples/maps/geo-map/overview/package.json | 12 ++++++------ samples/maps/geo-map/shape-styling/package.json | 12 ++++++------ samples/maps/geo-map/triangulating-data/package.json | 12 ++++++------ .../geo-map/type-scatter-area-series/package.json | 12 ++++++------ .../geo-map/type-scatter-bubble-series/package.json | 12 ++++++------ .../geo-map/type-scatter-contour-series/package.json | 12 ++++++------ .../geo-map/type-scatter-density-series/package.json | 12 ++++++------ .../geo-map/type-scatter-symbol-series/package.json | 12 ++++++------ .../geo-map/type-shape-polygon-series/package.json | 12 ++++++------ .../geo-map/type-shape-polyline-series/package.json | 12 ++++++------ 343 files changed, 2058 insertions(+), 2058 deletions(-) diff --git a/browser/package.json b/browser/package.json index 45bcbcaa0..d65e3169a 100644 --- a/browser/package.json +++ b/browser/package.json @@ -54,12 +54,12 @@ "intl": "1.2.5", "jszip": "3.8.0", "minireset.css": "0.0.6", - "rxjs": "6.6.7", + "rxjs": "7.8.1", "rxjs-compat": "6.6.7", - "tslib": "2.3.1", + "tslib": "2.6.1", "uzip": "0.20200128.0", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", @@ -68,7 +68,7 @@ "@angular/language-service": "18.0.2", "@types/jasmine": "3.10.2", "@types/jasminewd2": "2.0.9", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", "del": "5.1.0", "event-stream": "4.0.1", @@ -78,7 +78,7 @@ "gulp-contains": "1.2.0", "gulp-exec": "4.0.0", "gulp-flatten": "0.4.0", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "karma": "6.3.7", "karma-chrome-launcher": "~3.1.0", @@ -88,7 +88,7 @@ "karma-jasmine-html-reporter": "1.6.0", "protractor": "~7.0.0", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 38fd24dfa..d28c1e249 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1099,22 +1099,22 @@ function updateIG(cb) { { name: "hammerjs", version: "2.0.8" }, { name: "intl", version: "1.2.5" }, { name: "jszip", version: "3.8.0" }, - { name: "rxjs", version: "6.6.7" }, - { name: "tslib", version: "2.3.1" }, + { name: "rxjs", version: "7.8.1" }, + { name: "tslib", version: "2.6.1" }, { name: "web-animations-js", version: "2.3.2" }, - { name: "zone.js", version: "~0.14.1" }, + { name: "zone.js", version: "~0.14.4" }, // dev packages: { name: "@angular/cli", version: "18.0.3"}, { name: "@angular/compiler-cli", version: "18.0.2"}, { name: "@angular/language-service", version: "18.0.2"}, { name: "@angular-devkit/build-angular", version: "18.0.3"}, - { name: "@types/node", version: "14.14.28"}, + { name: "@types/node", version: "18.17.0"}, { name: "codelyzer", version: "6.0.2"}, - { name: "jasmine-core", version: "3.7.1"}, + { name: "jasmine-core", version: "5.1.1"}, { name: "jasmine-spec-reporter", version: "~4.2.1"}, { name: "sass.js", version: "0.11.1"}, { name: "tslint", version: "~6.1.3"}, - { name: "ts-node", version: "9.1.1"}, + { name: "ts-node", version: "10.9.1"}, { name: "typescript", version: "5.4.5"}, ]; diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 184a5bbfa..565ea783f 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -24,23 +24,23 @@ "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 3400be0dd..775534aa4 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -23,22 +23,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 3400be0dd..775534aa4 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -23,22 +23,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 8467feabf..f420f6f14 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -24,22 +24,22 @@ "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index 184a5bbfa..565ea783f 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -24,23 +24,23 @@ "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index 184a5bbfa..565ea783f 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -24,23 +24,23 @@ "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index 184a5bbfa..565ea783f 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -24,23 +24,23 @@ "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 184a5bbfa..565ea783f 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -24,23 +24,23 @@ "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index d0b116de5..0959667a9 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -24,22 +24,22 @@ "igniteui-theming": "6.4.0-beta.2", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 184a5bbfa..565ea783f 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -24,23 +24,23 @@ "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 184a5bbfa..565ea783f 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -24,23 +24,23 @@ "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 542cf63f7..addc1c345 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -23,23 +23,23 @@ "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 184a5bbfa..565ea783f 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -24,23 +24,23 @@ "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 184a5bbfa..565ea783f 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -24,23 +24,23 @@ "igniteui-angular-layouts": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 3400be0dd..775534aa4 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -23,22 +23,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index e2acad227..95392320f 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -25,22 +25,22 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 7f1e93b82..fe5df79fb 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -25,23 +25,23 @@ "igniteui-webcomponents": "4.9.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 85853afc1..985780eeb 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -22,23 +22,23 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", "@angular-devkit/build-angular": "18.0.3", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", "tslint": "~6.1.3", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 09f536dfe..5004b0752 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -22,22 +22,22 @@ "igniteui-angular-core": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 51ad393aa..a803cf2e0 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -25,22 +25,22 @@ "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 22d68664f..646350907 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -24,22 +24,22 @@ "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 22d68664f..646350907 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -24,22 +24,22 @@ "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 22d68664f..646350907 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -24,22 +24,22 @@ "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 0f2f5bd98..efda04a5b 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -26,22 +26,22 @@ "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 0f2f5bd98..efda04a5b 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -26,22 +26,22 @@ "igniteui-angular-excel": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index e587a2aca..be1ee5661 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -26,22 +26,22 @@ "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 3e5450a08..065e240d2 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -25,22 +25,22 @@ "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index ad5c2f729..917c74a99 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -27,22 +27,22 @@ "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index ad5c2f729..917c74a99 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -27,22 +27,22 @@ "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index 3e5450a08..065e240d2 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -25,22 +25,22 @@ "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 3e5450a08..065e240d2 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -25,22 +25,22 @@ "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index 3e5450a08..065e240d2 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -25,22 +25,22 @@ "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 3e5450a08..065e240d2 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -25,22 +25,22 @@ "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 3e5450a08..065e240d2 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -25,22 +25,22 @@ "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 3e5450a08..065e240d2 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -25,22 +25,22 @@ "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index 3e5450a08..065e240d2 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -25,22 +25,22 @@ "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 556f34570..40242f415 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -23,22 +23,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 556f34570..40242f415 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -23,22 +23,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 556f34570..40242f415 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -23,22 +23,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 99651bacc..c734c555c 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -22,22 +22,22 @@ "igniteui-angular-gauges": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 84663cd71..dec89ac7b 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -23,22 +23,22 @@ "igniteui-angular-maps": "17.3.1-alpha.0", "intl": "1.2.5", "jszip": "3.8.0", - "rxjs": "6.6.7", - "tslib": "2.3.1", + "rxjs": "7.8.1", + "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.1" + "zone.js": "~0.14.4" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", - "@types/node": "14.14.28", + "@types/node": "18.17.0", "codelyzer": "6.0.2", - "jasmine-core": "3.7.1", + "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "9.1.1", + "ts-node": "10.9.1", "tslint": "~6.1.3", "typescript": "5.4.5" } From 514bcc07ddaf4a066bb636f112cac40b620592d1 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 24 Jun 2024 11:22:43 -0400 Subject: [PATCH 089/154] added @types/hammerjs (#211) added @types/hammerjs --- browser/package.json | 2 +- browser/scripts/browser.js | 1 + samples/charts/category-chart/annotations-all/package.json | 2 +- samples/charts/category-chart/annotations-callouts/package.json | 2 +- .../charts/category-chart/annotations-crosshairs/package.json | 2 +- samples/charts/category-chart/annotations-custom/package.json | 2 +- .../charts/category-chart/annotations-final-value/package.json | 2 +- .../charts/category-chart/annotations-highlighting/package.json | 2 +- samples/charts/category-chart/annotations/package.json | 2 +- .../category-chart/area-chart-multiple-sources/package.json | 2 +- .../charts/category-chart/area-chart-single-source/package.json | 2 +- samples/charts/category-chart/area-chart-styling/package.json | 2 +- samples/charts/category-chart/axis-gap/package.json | 2 +- samples/charts/category-chart/axis-gridlines/package.json | 2 +- samples/charts/category-chart/axis-inverted/package.json | 2 +- samples/charts/category-chart/axis-labels/package.json | 2 +- samples/charts/category-chart/axis-locations/package.json | 2 +- samples/charts/category-chart/axis-options/package.json | 2 +- samples/charts/category-chart/axis-overlap/package.json | 2 +- samples/charts/category-chart/axis-range/package.json | 2 +- samples/charts/category-chart/axis-tickmarks/package.json | 2 +- samples/charts/category-chart/axis-titles/package.json | 2 +- .../charts/category-chart/chart-highlight-filter/package.json | 2 +- .../category-chart/column-chart-multiple-sources/package.json | 2 +- .../category-chart/column-chart-single-source/package.json | 2 +- samples/charts/category-chart/column-chart-styling/package.json | 2 +- .../category-chart/column-chart-with-highlighting/package.json | 2 +- .../category-chart/column-chart-with-tooltips/package.json | 2 +- samples/charts/category-chart/custom-selection/package.json | 2 +- samples/charts/category-chart/data-aggregations/package.json | 2 +- samples/charts/category-chart/data-filter/package.json | 2 +- .../category-chart/data-legend-formatting-decimals/package.json | 2 +- samples/charts/category-chart/data-legend/package.json | 2 +- .../data-tooltip-formatting-decimals/package.json | 2 +- .../charts/category-chart/data-tooltip-positioning/package.json | 2 +- samples/charts/category-chart/data-tooltip/package.json | 2 +- samples/charts/category-chart/format-specifiers/package.json | 2 +- samples/charts/category-chart/high-frequency/package.json | 2 +- samples/charts/category-chart/high-volume/package.json | 2 +- .../charts/category-chart/highlighting-behavior/package.json | 2 +- samples/charts/category-chart/highlighting-mode/package.json | 2 +- samples/charts/category-chart/highlighting/package.json | 2 +- samples/charts/category-chart/legend-highlighting/package.json | 2 +- .../category-chart/line-chart-multiple-sources/package.json | 2 +- .../charts/category-chart/line-chart-single-source/package.json | 2 +- samples/charts/category-chart/line-chart-styling/package.json | 2 +- .../category-chart/line-chart-with-animations/package.json | 2 +- .../category-chart/line-chart-with-annotations/package.json | 2 +- .../charts/category-chart/line-chart-with-legend/package.json | 2 +- samples/charts/category-chart/marker-options/package.json | 2 +- samples/charts/category-chart/marker-templates/package.json | 2 +- samples/charts/category-chart/overview/package.json | 2 +- .../category-chart/point-chart-multiple-sources/package.json | 2 +- .../category-chart/point-chart-single-source/package.json | 2 +- samples/charts/category-chart/point-chart-styling/package.json | 2 +- .../category-chart/spline-area-multiple-sources/package.json | 2 +- .../category-chart/spline-area-single-source/package.json | 2 +- samples/charts/category-chart/spline-area-styling/package.json | 2 +- .../charts/category-chart/spline-multiple-sources/package.json | 2 +- samples/charts/category-chart/spline-single-source/package.json | 2 +- samples/charts/category-chart/spline-styling/package.json | 2 +- samples/charts/category-chart/stack-columns/package.json | 2 +- .../category-chart/step-area-multiple-sources/package.json | 2 +- .../charts/category-chart/step-area-single-source/package.json | 2 +- samples/charts/category-chart/step-area-styling/package.json | 2 +- .../category-chart/step-line-multiple-sources/package.json | 2 +- .../charts/category-chart/step-line-single-source/package.json | 2 +- samples/charts/category-chart/step-line-styling/package.json | 2 +- samples/charts/category-chart/tooltip-template/package.json | 2 +- samples/charts/category-chart/tooltip-types/package.json | 2 +- samples/charts/category-chart/trendline/package.json | 2 +- samples/charts/category-chart/value-lines/package.json | 2 +- samples/charts/data-chart/annotations-custom/package.json | 2 +- .../data-chart/axis-annotations-corner-radius/package.json | 2 +- samples/charts/data-chart/axis-annotations/package.json | 2 +- samples/charts/data-chart/axis-crossing/package.json | 2 +- samples/charts/data-chart/axis-label-rotation/package.json | 2 +- samples/charts/data-chart/axis-locations/package.json | 2 +- samples/charts/data-chart/axis-min-max-gap/package.json | 2 +- samples/charts/data-chart/axis-settings/package.json | 2 +- samples/charts/data-chart/axis-sharing/package.json | 2 +- samples/charts/data-chart/axis-types/package.json | 2 +- .../charts/data-chart/bar-chart-multiple-sources/package.json | 2 +- samples/charts/data-chart/bar-chart-overlapping/package.json | 2 +- samples/charts/data-chart/bar-chart-single-source/package.json | 2 +- samples/charts/data-chart/bar-chart-styling/package.json | 2 +- samples/charts/data-chart/callout-layer-styling/package.json | 2 +- .../data-chart/chart-highlight-filter-datasource/package.json | 2 +- .../chart-highlight-filter-multiple-series/package.json | 2 +- samples/charts/data-chart/chart-highlight-filter/package.json | 2 +- samples/charts/data-chart/chart-navigation/package.json | 2 +- samples/charts/data-chart/chart-overview/package.json | 2 +- samples/charts/data-chart/chart-performance/package.json | 2 +- samples/charts/data-chart/chart-synchronization/package.json | 2 +- samples/charts/data-chart/chart-titles/package.json | 2 +- samples/charts/data-chart/column-chart-styling/package.json | 2 +- samples/charts/data-chart/composite-chart/package.json | 2 +- samples/charts/data-chart/crosshair-layer-styling/package.json | 2 +- .../charts/data-chart/custom-drawing-annotations/package.json | 2 +- samples/charts/data-chart/custom-editing-data/package.json | 2 +- samples/charts/data-chart/dash-array-axes/package.json | 2 +- samples/charts/data-chart/dash-array-series/package.json | 2 +- samples/charts/data-chart/dash-array-tickmarks/package.json | 2 +- samples/charts/data-chart/dash-array-trendline/package.json | 2 +- .../data-legend-grouping-and-highlighting/package.json | 2 +- samples/charts/data-chart/data-legend-grouping/package.json | 2 +- samples/charts/data-chart/data-legend-styling/package.json | 2 +- samples/charts/data-chart/data-legend/package.json | 2 +- .../data-tooltip-grouping-and-highlighting/package.json | 2 +- samples/charts/data-chart/data-tooltip-grouping/package.json | 2 +- samples/charts/data-chart/data-tooltip-styling/package.json | 2 +- samples/charts/data-chart/data-tooltip/package.json | 2 +- .../charts/data-chart/final-value-layer-styling/package.json | 2 +- samples/charts/data-chart/financial-price-series/package.json | 2 +- samples/charts/data-chart/format-specifiers/package.json | 2 +- samples/charts/data-chart/legends/package.json | 2 +- samples/charts/data-chart/polar-area-chart-styling/package.json | 2 +- samples/charts/data-chart/polar-area-chart/package.json | 2 +- samples/charts/data-chart/polar-chart-types/package.json | 2 +- samples/charts/data-chart/polar-line-chart/package.json | 2 +- samples/charts/data-chart/polar-scatter-chart/package.json | 2 +- samples/charts/data-chart/polar-spline-area-chart/package.json | 2 +- samples/charts/data-chart/polar-spline-chart/package.json | 2 +- .../charts/data-chart/radial-area-chart-styling/package.json | 2 +- samples/charts/data-chart/radial-area-chart/package.json | 2 +- samples/charts/data-chart/radial-chart-types/package.json | 2 +- samples/charts/data-chart/radial-column-chart/package.json | 2 +- samples/charts/data-chart/radial-line-chart/package.json | 2 +- samples/charts/data-chart/radial-pie-chart/package.json | 2 +- samples/charts/data-chart/range-area-chart/package.json | 2 +- samples/charts/data-chart/range-column-chart/package.json | 2 +- .../data-chart/scatter-bubble-chart-fill-scale/package.json | 2 +- .../scatter-bubble-chart-multiple-sources/package.json | 2 +- .../data-chart/scatter-bubble-chart-single-source/package.json | 2 +- .../charts/data-chart/scatter-bubble-chart-styling/package.json | 2 +- samples/charts/data-chart/scatter-line-chart/package.json | 2 +- samples/charts/data-chart/scatter-point-chart/package.json | 2 +- samples/charts/data-chart/scatter-spline-chart/package.json | 2 +- samples/charts/data-chart/series-animations/package.json | 2 +- samples/charts/data-chart/series-annotations/package.json | 2 +- samples/charts/data-chart/series-highlighting/package.json | 2 +- samples/charts/data-chart/series-marker-template/package.json | 2 +- samples/charts/data-chart/series-markers/package.json | 2 +- samples/charts/data-chart/series-tooltips/package.json | 2 +- samples/charts/data-chart/series-trendlines/package.json | 2 +- samples/charts/data-chart/series-value-overlay/package.json | 2 +- samples/charts/data-chart/stacked-100-area-chart/package.json | 2 +- samples/charts/data-chart/stacked-100-bar-chart/package.json | 2 +- samples/charts/data-chart/stacked-100-column-chart/package.json | 2 +- samples/charts/data-chart/stacked-100-line-chart/package.json | 2 +- .../data-chart/stacked-100-spline-area-chart/package.json | 2 +- samples/charts/data-chart/stacked-100-spline-chart/package.json | 2 +- samples/charts/data-chart/stacked-area-chart/package.json | 2 +- samples/charts/data-chart/stacked-bar-chart/package.json | 2 +- samples/charts/data-chart/stacked-chart-types/package.json | 2 +- samples/charts/data-chart/stacked-column-chart/package.json | 2 +- samples/charts/data-chart/stacked-line-chart/package.json | 2 +- .../charts/data-chart/stacked-spline-area-chart/package.json | 2 +- samples/charts/data-chart/stacked-spline-chart/package.json | 2 +- samples/charts/data-chart/tooltip-template/package.json | 2 +- samples/charts/data-chart/transition-event/package.json | 2 +- .../charts/data-chart/type-category-area-series/package.json | 2 +- samples/charts/data-chart/type-category-bar-series/package.json | 2 +- .../charts/data-chart/type-category-column-series/package.json | 2 +- .../charts/data-chart/type-category-line-series/package.json | 2 +- .../charts/data-chart/type-category-point-series/package.json | 2 +- samples/charts/data-chart/type-category-series/package.json | 2 +- .../data-chart/type-category-spline-area-series/package.json | 2 +- .../charts/data-chart/type-category-spline-series/package.json | 2 +- .../data-chart/type-category-step-area-series/package.json | 2 +- .../data-chart/type-category-step-line-series/package.json | 2 +- .../data-chart/type-category-waterfall-series/package.json | 2 +- .../data-chart/type-financial-area-indicators/package.json | 2 +- .../data-chart/type-financial-candlestick-series/package.json | 2 +- .../data-chart/type-financial-column-indicators/package.json | 2 +- .../data-chart/type-financial-line-indicators/package.json | 2 +- .../charts/data-chart/type-financial-ohlc-series/package.json | 2 +- samples/charts/data-chart/type-financial-overlays/package.json | 2 +- samples/charts/data-chart/type-financial-series/package.json | 2 +- samples/charts/data-chart/type-radial-area-series/package.json | 2 +- .../charts/data-chart/type-radial-column-series/package.json | 2 +- samples/charts/data-chart/type-radial-line-series/package.json | 2 +- samples/charts/data-chart/type-radial-pie-series/package.json | 2 +- samples/charts/data-chart/type-range-area-series/package.json | 2 +- samples/charts/data-chart/type-range-column-series/package.json | 2 +- samples/charts/data-chart/type-range-series/package.json | 2 +- samples/charts/data-chart/type-scatter-area-series/package.json | 2 +- .../charts/data-chart/type-scatter-bubble-series/package.json | 2 +- .../charts/data-chart/type-scatter-contour-series/package.json | 2 +- samples/charts/data-chart/type-scatter-hd-series/package.json | 2 +- samples/charts/data-chart/type-scatter-line-series/package.json | 2 +- .../charts/data-chart/type-scatter-point-series/package.json | 2 +- .../charts/data-chart/type-scatter-polygon-series/package.json | 2 +- .../charts/data-chart/type-scatter-polyline-series/package.json | 2 +- samples/charts/data-chart/type-scatter-series/package.json | 2 +- .../charts/data-chart/type-scatter-spline-series/package.json | 2 +- samples/charts/data-chart/type-shape-series/package.json | 2 +- .../charts/data-chart/type-stacked-100-area-series/package.json | 2 +- .../charts/data-chart/type-stacked-100-bar-series/package.json | 2 +- .../data-chart/type-stacked-100-column-series/package.json | 2 +- .../charts/data-chart/type-stacked-100-line-series/package.json | 2 +- .../data-chart/type-stacked-100-spline-area-series/package.json | 2 +- .../data-chart/type-stacked-100-spline-series/package.json | 2 +- samples/charts/data-chart/type-stacked-area-series/package.json | 2 +- samples/charts/data-chart/type-stacked-bar-series/package.json | 2 +- .../charts/data-chart/type-stacked-column-series/package.json | 2 +- samples/charts/data-chart/type-stacked-line-series/package.json | 2 +- .../data-chart/type-stacked-spline-area-series/package.json | 2 +- .../charts/data-chart/type-stacked-spline-series/package.json | 2 +- samples/charts/data-chart/waterfall-chart/package.json | 2 +- samples/charts/doughnut-chart/animation/package.json | 2 +- samples/charts/doughnut-chart/explosion/package.json | 2 +- samples/charts/doughnut-chart/legend/package.json | 2 +- samples/charts/doughnut-chart/overview/package.json | 2 +- samples/charts/doughnut-chart/rings/package.json | 2 +- samples/charts/doughnut-chart/selection/package.json | 2 +- samples/charts/financial-chart/annotations/package.json | 2 +- samples/charts/financial-chart/axis-types/package.json | 2 +- .../data-legend-formatting-currency/package.json | 2 +- .../financial-chart/data-legend-styling-props/package.json | 2 +- samples/charts/financial-chart/data-legend/package.json | 2 +- .../data-tooltip-formatting-currency/package.json | 2 +- .../financial-chart/data-tooltip-styling-props/package.json | 2 +- samples/charts/financial-chart/data-tooltip/package.json | 2 +- samples/charts/financial-chart/format-specifiers/package.json | 2 +- samples/charts/financial-chart/high-frequency/package.json | 2 +- samples/charts/financial-chart/high-volume/package.json | 2 +- .../charts/financial-chart/indicator-customization/package.json | 2 +- samples/charts/financial-chart/indicator-types/package.json | 2 +- samples/charts/financial-chart/multiple-data/package.json | 2 +- samples/charts/financial-chart/multiple-feeds/package.json | 2 +- samples/charts/financial-chart/overview/package.json | 2 +- samples/charts/financial-chart/panes/package.json | 2 +- samples/charts/financial-chart/performance/package.json | 2 +- samples/charts/financial-chart/scrollbars/package.json | 2 +- samples/charts/financial-chart/stock-index-chart/package.json | 2 +- samples/charts/financial-chart/styling/package.json | 2 +- samples/charts/financial-chart/theming/package.json | 2 +- samples/charts/financial-chart/time-based-data/package.json | 2 +- samples/charts/financial-chart/titles/package.json | 2 +- samples/charts/financial-chart/tooltip-template/package.json | 2 +- samples/charts/financial-chart/tooltip-types/package.json | 2 +- samples/charts/financial-chart/trendlines/package.json | 2 +- samples/charts/financial-chart/volume-types/package.json | 2 +- samples/charts/pie-chart/animation/package.json | 2 +- samples/charts/pie-chart/explosion/package.json | 2 +- samples/charts/pie-chart/legend/package.json | 2 +- samples/charts/pie-chart/others/package.json | 2 +- samples/charts/pie-chart/overview/package.json | 2 +- samples/charts/pie-chart/selection/package.json | 2 +- samples/charts/pie-chart/styling/package.json | 2 +- samples/charts/sparkline/display-area/package.json | 2 +- samples/charts/sparkline/display-column/package.json | 2 +- samples/charts/sparkline/display-lines/package.json | 2 +- samples/charts/sparkline/display-types/package.json | 2 +- samples/charts/sparkline/display-winloss/package.json | 2 +- samples/charts/sparkline/grid/package.json | 2 +- samples/charts/sparkline/markers/package.json | 2 +- samples/charts/sparkline/normal-range/package.json | 2 +- samples/charts/sparkline/trendlines/package.json | 2 +- samples/charts/sparkline/unknown-values/package.json | 2 +- .../charts/toolbar/actions-built-in-category-chart/package.json | 2 +- samples/charts/toolbar/actions-built-in-data-chart/package.json | 2 +- samples/charts/toolbar/custom-tool/package.json | 2 +- .../charts/toolbar/layout-actions-for-data-chart/package.json | 2 +- .../charts/toolbar/layout-in-vertical-orientation/package.json | 2 +- samples/charts/toolbar/theming/package.json | 2 +- samples/charts/tree-map/events/package.json | 2 +- samples/charts/tree-map/highlighting-percent-based/package.json | 2 +- samples/charts/tree-map/highlighting/package.json | 2 +- samples/charts/tree-map/layout/package.json | 2 +- samples/charts/tree-map/overview/package.json | 2 +- samples/charts/tree-map/styling/package.json | 2 +- samples/charts/zoomslider/overview/package.json | 2 +- .../excel/excel-library/operations-on-workbooks/package.json | 2 +- .../excel/excel-library/operations-on-worksheets/package.json | 2 +- samples/excel/excel-library/overview/package.json | 2 +- samples/excel/excel-library/working-with-cells/package.json | 2 +- samples/excel/excel-library/working-with-charts/package.json | 2 +- .../excel/excel-library/working-with-sparklines/package.json | 2 +- samples/excel/excel-library/working-with-tables/package.json | 2 +- samples/excel/spreadsheet/activation/package.json | 2 +- samples/excel/spreadsheet/adapter-chart/package.json | 2 +- samples/excel/spreadsheet/adapter-combo/package.json | 2 +- samples/excel/spreadsheet/clipboard/package.json | 2 +- samples/excel/spreadsheet/commands/package.json | 2 +- samples/excel/spreadsheet/conditional-formatting/package.json | 2 +- samples/excel/spreadsheet/config-options/package.json | 2 +- samples/excel/spreadsheet/data-validation/package.json | 2 +- samples/excel/spreadsheet/hyperlinks/package.json | 2 +- samples/excel/spreadsheet/overview/package.json | 2 +- samples/gauges/bullet-graph/animation/package.json | 2 +- samples/gauges/bullet-graph/background/package.json | 2 +- samples/gauges/bullet-graph/highlight-needle/package.json | 2 +- samples/gauges/bullet-graph/labels/package.json | 2 +- samples/gauges/bullet-graph/measures/package.json | 2 +- samples/gauges/bullet-graph/ranges/package.json | 2 +- samples/gauges/bullet-graph/scale/package.json | 2 +- samples/gauges/bullet-graph/tickmarks/package.json | 2 +- samples/gauges/linear-gauge/animation/package.json | 2 +- samples/gauges/linear-gauge/backing/package.json | 2 +- samples/gauges/linear-gauge/highlight-needle/package.json | 2 +- samples/gauges/linear-gauge/labels/package.json | 2 +- samples/gauges/linear-gauge/needle/package.json | 2 +- samples/gauges/linear-gauge/ranges/package.json | 2 +- samples/gauges/linear-gauge/scale/package.json | 2 +- samples/gauges/linear-gauge/tickmarks/package.json | 2 +- samples/gauges/radial-gauge/animation/package.json | 2 +- samples/gauges/radial-gauge/backing/package.json | 2 +- samples/gauges/radial-gauge/highlight-needle/package.json | 2 +- samples/gauges/radial-gauge/labels/package.json | 2 +- samples/gauges/radial-gauge/needle/package.json | 2 +- samples/gauges/radial-gauge/optical-scaling/package.json | 2 +- samples/gauges/radial-gauge/ranges/package.json | 2 +- samples/gauges/radial-gauge/scale/package.json | 2 +- samples/gauges/radial-gauge/tickmarks/package.json | 2 +- samples/maps/geo-map/binding-data-csv/package.json | 2 +- samples/maps/geo-map/binding-data-json-points/package.json | 2 +- samples/maps/geo-map/binding-data-model/package.json | 2 +- samples/maps/geo-map/binding-multiple-shapes/package.json | 2 +- samples/maps/geo-map/binding-multiple-sources/package.json | 2 +- samples/maps/geo-map/binding-shp-points/package.json | 2 +- samples/maps/geo-map/binding-shp-polygons/package.json | 2 +- samples/maps/geo-map/binding-shp-polylines/package.json | 2 +- samples/maps/geo-map/custom-tooltips/package.json | 2 +- samples/maps/geo-map/display-bing-imagery/package.json | 2 +- samples/maps/geo-map/display-esri-imagery/package.json | 2 +- samples/maps/geo-map/display-heat-imagery/package.json | 2 +- samples/maps/geo-map/display-osm-imagery/package.json | 2 +- samples/maps/geo-map/marker-layouts/package.json | 2 +- samples/maps/geo-map/marker-template/package.json | 2 +- samples/maps/geo-map/marker-type/package.json | 2 +- samples/maps/geo-map/navigation/package.json | 2 +- samples/maps/geo-map/overview/package.json | 2 +- samples/maps/geo-map/shape-styling/package.json | 2 +- samples/maps/geo-map/triangulating-data/package.json | 2 +- samples/maps/geo-map/type-scatter-area-series/package.json | 2 +- samples/maps/geo-map/type-scatter-bubble-series/package.json | 2 +- samples/maps/geo-map/type-scatter-contour-series/package.json | 2 +- samples/maps/geo-map/type-scatter-density-series/package.json | 2 +- samples/maps/geo-map/type-scatter-symbol-series/package.json | 2 +- samples/maps/geo-map/type-shape-polygon-series/package.json | 2 +- samples/maps/geo-map/type-shape-polyline-series/package.json | 2 +- 343 files changed, 343 insertions(+), 342 deletions(-) diff --git a/browser/package.json b/browser/package.json index d65e3169a..1a310f835 100644 --- a/browser/package.json +++ b/browser/package.json @@ -31,7 +31,7 @@ "@angular/router": "18.0.2", "@ionic/angular": "5.6.3", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "ajv": "8.6.2", "angular-in-memory-web-api": "0.9.0", "classlist.js": "1.1.20150312", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index d28c1e249..f6b854281 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1094,6 +1094,7 @@ function updateIG(cb) { { name: "@angular/forms", version: "18.0.2" }, { name: "@angular/platform-browser", version: "18.0.2" }, { name: "@angular/platform-browser-dynamic", version: "18.0.2" }, + { name: "@types/hammerjs", version: "2.0.40" }, { name: "classlist-js", version: "1.1.20150312" }, { name: "core-js", version: "3.21.0" }, { name: "hammerjs", version: "2.0.8" }, diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 565ea783f..40af1b91b 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 775534aa4..2ed37da1b 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 775534aa4..2ed37da1b 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index f420f6f14..8d0b55778 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index 565ea783f..40af1b91b 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index 565ea783f..40af1b91b 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index 565ea783f..40af1b91b 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 565ea783f..40af1b91b 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 0959667a9..9ce8896a4 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 565ea783f..40af1b91b 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 565ea783f..40af1b91b 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index addc1c345..d35d0d216 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 565ea783f..40af1b91b 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 565ea783f..40af1b91b 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 775534aa4..2ed37da1b 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 95392320f..4589db2ac 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index fe5df79fb..292eee597 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 985780eeb..51b8ad913 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 5004b0752..c00995265 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index a803cf2e0..31ed4be9c 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -15,7 +15,7 @@ "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 646350907..2534a501c 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -15,7 +15,7 @@ "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 646350907..2534a501c 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -15,7 +15,7 @@ "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 646350907..2534a501c 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -15,7 +15,7 @@ "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index efda04a5b..f68bd330b 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -15,7 +15,7 @@ "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index efda04a5b..f68bd330b 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -15,7 +15,7 @@ "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index be1ee5661..dc4caffcc 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -15,7 +15,7 @@ "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 065e240d2..8ef049cc0 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -15,7 +15,7 @@ "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 917c74a99..25d470cad 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -15,7 +15,7 @@ "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index 917c74a99..25d470cad 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -15,7 +15,7 @@ "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index 065e240d2..8ef049cc0 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -15,7 +15,7 @@ "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 065e240d2..8ef049cc0 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -15,7 +15,7 @@ "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index 065e240d2..8ef049cc0 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -15,7 +15,7 @@ "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 065e240d2..8ef049cc0 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -15,7 +15,7 @@ "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 065e240d2..8ef049cc0 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -15,7 +15,7 @@ "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 065e240d2..8ef049cc0 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -15,7 +15,7 @@ "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index 065e240d2..8ef049cc0 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -15,7 +15,7 @@ "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", "@types/file-saver": "2.0.5", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 40242f415..55b6cb017 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 40242f415..55b6cb017 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 40242f415..55b6cb017 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index c734c555c..34bf28141 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index dec89ac7b..536637483 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -14,7 +14,7 @@ "@angular/forms": "18.0.2", "@angular/platform-browser": "18.0.2", "@angular/platform-browser-dynamic": "18.0.2", - "@types/hammerjs": "2.0.39", + "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", From e698da9959093b1ea2194ea6bc1ea26590286b74 Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Wed, 26 Jun 2024 16:22:36 +0300 Subject: [PATCH 090/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.6.26.1 --- .../src/TemperatureAnnotatedData.ts | 2 +- .../src/TemperatureAnnotatedData.ts | 2 +- .../src/TemperatureAnnotatedData.ts | 2 +- .../src/TemperatureAnnotatedData.ts | 2 +- .../src/TemperatureAnnotatedData.ts | 2 +- .../src/TemperatureAnnotatedData.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/OlympicMedalsTopCountries.ts | 2 +- .../axis-overlap/src/HighestGrossingMovies.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../chart-highlight-filter/src/SalesData.ts | 2 +- .../src/HighestGrossingMovies.ts | 2 +- .../src/TemperatureAverageData.ts | 2 +- .../src/EnergyRenewableConsumption.ts | 2 +- .../src/HighestGrossingMovies.ts | 2 +- .../custom-selection/src/SelectableData.ts | 2 +- .../data-aggregations/src/SalesData.ts | 2 +- .../data-filter/src/ContinentsBirthRate.ts | 2 +- .../src/HighestGrossingMovies.ts | 2 +- .../data-legend/src/HighestGrossingMovies.ts | 2 +- .../src/HighestGrossingMovies.ts | 2 +- .../src/HighestGrossingMovies.ts | 2 +- .../data-tooltip/src/HighestGrossingMovies.ts | 2 +- .../src/HighestGrossingMovies.ts | 2 +- .../src/TemperatureAnnotatedData.ts | 2 +- .../src/TemperatureAnnotatedData.ts | 2 +- .../src/HighestGrossingMovies.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../selection-modes/.codesandbox/Dockerfile | 1 + .../selection-modes/.codesandbox/tasks.json | 17 +++ .../selection-modes/.stackblitzrc | 1 + .../selection-modes/angular.json | 120 ++++++++++++++++++ .../selection-modes/package.json | 44 +++++++ .../src/TemperatureAverageData.ts | 80 ++++++++++++ .../selection-modes/src/app.component.html | 25 ++++ .../selection-modes/src/app.component.scss | 3 + .../selection-modes/src/app.component.ts | 35 +++++ .../selection-modes/src/app.module.ts | 26 ++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../selection-modes/src/index.html | 23 ++++ .../selection-modes/src/main.ts | 15 +++ .../selection-modes/src/polyfills.ts | 65 ++++++++++ .../selection-modes/src/styles.scss | 9 ++ .../selection-modes/src/typings.d.ts | 5 + .../selection-modes/tsconfig.app.json | 10 ++ .../selection-modes/tsconfig.json | 27 ++++ .../selection-modes/tslint.json | 31 +++++ .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../selection-multiple-modes/.stackblitzrc | 1 + .../selection-multiple-modes/angular.json | 120 ++++++++++++++++++ .../selection-multiple-modes/package.json | 47 +++++++ .../src/EnergyRenewableConsumption.ts | 69 ++++++++++ .../src/app.component.html | 56 ++++++++ .../src/app.component.scss | 3 + .../src/app.component.ts | 61 +++++++++ .../src/app.module.ts | 28 ++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../selection-multiple-modes/src/index.html | 23 ++++ .../selection-multiple-modes/src/main.ts | 15 +++ .../selection-multiple-modes/src/polyfills.ts | 65 ++++++++++ .../selection-multiple-modes/src/styles.scss | 9 ++ .../selection-multiple-modes/src/typings.d.ts | 5 + .../tsconfig.app.json | 10 ++ .../selection-multiple-modes/tsconfig.json | 27 ++++ .../selection-multiple-modes/tslint.json | 31 +++++ .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableCallouts.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/TemperatureAverageDataLongLabels.ts | 2 +- .../src/TemperatureAverageData.ts | 2 +- .../src/HighestGrossingMovies.ts | 2 +- .../src/RoadblocksToSuccess.ts | 2 +- .../src/OnlineShoppingSearches.ts | 2 +- .../src/OnlineShoppingSearches.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/OnlineTrafficHighlightDesktopOnly.ts | 2 +- .../src/OnlineTrafficHighlightTotals.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../CountryRenewableElectricityFiltered.ts | 2 +- .../OlympicMedalsTopCountriesWithTotals.ts | 2 +- .../OlympicMedalsTopCountriesWithTotals.ts | 2 +- .../OlympicMedalsTopCountriesWithTotals.ts | 2 +- .../OlympicMedalsTopCountriesWithTotals.ts | 2 +- .../src/CountryDemographicAfrican.ts | 2 +- .../src/CountryDemographicEurope.ts | 2 +- .../OlympicMedalsTopCountriesWithTotals.ts | 2 +- .../OlympicMedalsTopCountriesWithTotals.ts | 2 +- .../OlympicMedalsTopCountriesWithTotals.ts | 2 +- .../src/CountryDemographicAfrican.ts | 2 +- .../src/CountryDemographicEurope.ts | 2 +- .../financial-price-series/src/Stock2Years.ts | 2 +- .../src/BoatSailingData.ts | 2 +- .../polar-area-chart/src/BoatSailingData.ts | 2 +- .../polar-line-chart/src/BoatSailingData.ts | 2 +- .../src/BoatSailingData.ts | 2 +- .../src/BoatSailingData.ts | 2 +- .../polar-spline-chart/src/BoatSailingData.ts | 2 +- .../src/FootballPlayerStats.ts | 2 +- .../src/FootballPlayerStats.ts | 2 +- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 1 + .../angular.json | 120 ++++++++++++++++++ .../package.json | 44 +++++++ .../src/FootballPlayerStats.ts | 69 ++++++++++ .../src/app.component.html | 63 +++++++++ .../src/app.component.scss | 3 + .../src/app.component.ts | 45 +++++++ .../src/app.module.ts | 30 +++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../src/index.html | 23 ++++ .../radial-column-chart-selection/src/main.ts | 15 +++ .../src/polyfills.ts | 65 ++++++++++ .../src/styles.scss | 9 ++ .../src/typings.d.ts | 5 + .../tsconfig.app.json | 10 ++ .../tsconfig.json | 27 ++++ .../radial-column-chart-selection/tslint.json | 31 +++++ .../src/FootballPlayerStats.ts | 2 +- .../src/FootballPlayerStats.ts | 2 +- .../src/FootballPlayerStats.ts | 2 +- .../src/TemperatureRangeData.ts | 2 +- .../src/TemperatureRangeData.ts | 2 +- .../src/WorldStats.ts | 2 +- .../src/CountryStatsAfrica.ts | 2 +- .../src/CountryStatsEurope.ts | 2 +- .../src/WorldStats.ts | 2 +- .../src/CountryStatsAfrica.ts | 2 +- .../src/CountryStatsEurope.ts | 2 +- .../src/HealthDataForFrance.ts | 2 +- .../src/HealthDataForGermany.ts | 2 +- .../src/CountryDemographicAfrican.ts | 2 +- .../src/CountryDemographicEurope.ts | 2 +- .../src/HealthDataForFrance.ts | 2 +- .../src/HealthDataForGermany.ts | 2 +- .../src/ContinentsBirthRate.ts | 2 +- .../src/EnergyRenewableConsumption.ts | 2 +- .../src/OnlineTrafficByDevice.ts | 2 +- .../src/ContinentsBirthRate.ts | 2 +- .../src/ContinentsBirthRate.ts | 2 +- .../src/ContinentsBirthRate.ts | 2 +- .../src/ContinentsBirthRate.ts | 2 +- .../src/EnergyRenewableConsumption.ts | 2 +- .../src/ContinentsBirthRate.ts | 2 +- .../src/ContinentsBirthRate.ts | 2 +- .../src/ContinentsBirthRate.ts | 2 +- .../src/ContinentsBirthRate.ts | 2 +- .../transition-event/src/CompanyIncomeData.ts | 2 +- .../waterfall-chart/src/CompanyIncomeData.ts | 2 +- .../legend/src/EnergyGlobalDemand.ts | 2 +- .../overview/src/CompanyMarketShares.ts | 2 +- .../rings/src/CalendarMonths.ts | 2 +- .../rings/src/CalendarSeasons.ts | 2 +- .../src/StockGoogle.ts | 2 +- .../src/StockGoogle.ts | 2 +- .../legend/src/EnergyGlobalDemand.ts | 2 +- .../others/src/EnergyGlobalDemand.ts | 2 +- .../overview/src/EnergyGlobalDemand.ts | 2 +- .../styling/src/EnergyGlobalDemand.ts | 2 +- .../display-area/src/SparklineMixedData.ts | 2 +- .../display-column/src/SparklineMixedData.ts | 2 +- .../display-lines/src/SparklineMixedData.ts | 2 +- .../display-winloss/src/SparklineMixedData.ts | 2 +- .../markers/src/SparklineProfitData.ts | 2 +- .../normal-range/src/SparklineMixedData.ts | 2 +- .../trendlines/src/SparklineMixedData.ts | 2 +- .../src/SparklineUnknownData.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryRenewableElectricity.ts | 2 +- .../src/CountryTopUrbanPopData.ts | 2 +- .../charts/tree-map/highlighting/angular.json | 2 +- .../charts/tree-map/highlighting/package.json | 4 +- .../src/CountyHierarchicalData.ts | 4 +- .../highlighting/src/app.component.html | 26 +++- .../highlighting/src/app.component.ts | 39 +++--- .../layout/src/CountyHierarchicalData.ts | 2 +- .../overview/src/CountyHierarchicalData.ts | 2 +- .../styling/src/CountyHierarchicalData.ts | 2 +- 214 files changed, 1954 insertions(+), 179 deletions(-) create mode 100644 samples/charts/category-chart/selection-modes/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/selection-modes/.codesandbox/tasks.json create mode 100644 samples/charts/category-chart/selection-modes/.stackblitzrc create mode 100644 samples/charts/category-chart/selection-modes/angular.json create mode 100644 samples/charts/category-chart/selection-modes/package.json create mode 100644 samples/charts/category-chart/selection-modes/src/TemperatureAverageData.ts create mode 100644 samples/charts/category-chart/selection-modes/src/app.component.html create mode 100644 samples/charts/category-chart/selection-modes/src/app.component.scss create mode 100644 samples/charts/category-chart/selection-modes/src/app.component.ts create mode 100644 samples/charts/category-chart/selection-modes/src/app.module.ts create mode 100644 samples/charts/category-chart/selection-modes/src/environments/environment.prod.ts create mode 100644 samples/charts/category-chart/selection-modes/src/environments/environment.ts create mode 100644 samples/charts/category-chart/selection-modes/src/index.html create mode 100644 samples/charts/category-chart/selection-modes/src/main.ts create mode 100644 samples/charts/category-chart/selection-modes/src/polyfills.ts create mode 100644 samples/charts/category-chart/selection-modes/src/styles.scss create mode 100644 samples/charts/category-chart/selection-modes/src/typings.d.ts create mode 100644 samples/charts/category-chart/selection-modes/tsconfig.app.json create mode 100644 samples/charts/category-chart/selection-modes/tsconfig.json create mode 100644 samples/charts/category-chart/selection-modes/tslint.json create mode 100644 samples/charts/category-chart/selection-multiple-modes/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/selection-multiple-modes/.codesandbox/tasks.json create mode 100644 samples/charts/category-chart/selection-multiple-modes/.stackblitzrc create mode 100644 samples/charts/category-chart/selection-multiple-modes/angular.json create mode 100644 samples/charts/category-chart/selection-multiple-modes/package.json create mode 100644 samples/charts/category-chart/selection-multiple-modes/src/EnergyRenewableConsumption.ts create mode 100644 samples/charts/category-chart/selection-multiple-modes/src/app.component.html create mode 100644 samples/charts/category-chart/selection-multiple-modes/src/app.component.scss create mode 100644 samples/charts/category-chart/selection-multiple-modes/src/app.component.ts create mode 100644 samples/charts/category-chart/selection-multiple-modes/src/app.module.ts create mode 100644 samples/charts/category-chart/selection-multiple-modes/src/environments/environment.prod.ts create mode 100644 samples/charts/category-chart/selection-multiple-modes/src/environments/environment.ts create mode 100644 samples/charts/category-chart/selection-multiple-modes/src/index.html create mode 100644 samples/charts/category-chart/selection-multiple-modes/src/main.ts create mode 100644 samples/charts/category-chart/selection-multiple-modes/src/polyfills.ts create mode 100644 samples/charts/category-chart/selection-multiple-modes/src/styles.scss create mode 100644 samples/charts/category-chart/selection-multiple-modes/src/typings.d.ts create mode 100644 samples/charts/category-chart/selection-multiple-modes/tsconfig.app.json create mode 100644 samples/charts/category-chart/selection-multiple-modes/tsconfig.json create mode 100644 samples/charts/category-chart/selection-multiple-modes/tslint.json create mode 100644 samples/charts/data-chart/radial-column-chart-selection/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/radial-column-chart-selection/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/radial-column-chart-selection/.stackblitzrc create mode 100644 samples/charts/data-chart/radial-column-chart-selection/angular.json create mode 100644 samples/charts/data-chart/radial-column-chart-selection/package.json create mode 100644 samples/charts/data-chart/radial-column-chart-selection/src/FootballPlayerStats.ts create mode 100644 samples/charts/data-chart/radial-column-chart-selection/src/app.component.html create mode 100644 samples/charts/data-chart/radial-column-chart-selection/src/app.component.scss create mode 100644 samples/charts/data-chart/radial-column-chart-selection/src/app.component.ts create mode 100644 samples/charts/data-chart/radial-column-chart-selection/src/app.module.ts create mode 100644 samples/charts/data-chart/radial-column-chart-selection/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/radial-column-chart-selection/src/environments/environment.ts create mode 100644 samples/charts/data-chart/radial-column-chart-selection/src/index.html create mode 100644 samples/charts/data-chart/radial-column-chart-selection/src/main.ts create mode 100644 samples/charts/data-chart/radial-column-chart-selection/src/polyfills.ts create mode 100644 samples/charts/data-chart/radial-column-chart-selection/src/styles.scss create mode 100644 samples/charts/data-chart/radial-column-chart-selection/src/typings.d.ts create mode 100644 samples/charts/data-chart/radial-column-chart-selection/tsconfig.app.json create mode 100644 samples/charts/data-chart/radial-column-chart-selection/tsconfig.json create mode 100644 samples/charts/data-chart/radial-column-chart-selection/tslint.json diff --git a/samples/charts/category-chart/annotations-all/src/TemperatureAnnotatedData.ts b/samples/charts/category-chart/annotations-all/src/TemperatureAnnotatedData.ts index 8524db1df..70539ebf5 100644 --- a/samples/charts/category-chart/annotations-all/src/TemperatureAnnotatedData.ts +++ b/samples/charts/category-chart/annotations-all/src/TemperatureAnnotatedData.ts @@ -100,7 +100,7 @@ export class TemperatureAnnotatedData extends Array { highestGrossing: 1.11 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/category-chart/axis-range/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/axis-range/src/CountryRenewableElectricity.ts index a1c22c39e..b32970c46 100644 --- a/samples/charts/category-chart/axis-range/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/axis-range/src/CountryRenewableElectricity.ts @@ -100,7 +100,7 @@ export class CountryRenewableElectricity extends Array { Year: `2019` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/HighestGrossingMovies.ts b/samples/charts/category-chart/column-chart-multiple-sources/src/HighestGrossingMovies.ts index dea3e62a4..edced6c9e 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/column-chart-multiple-sources/src/HighestGrossingMovies.ts @@ -51,7 +51,7 @@ export class HighestGrossingMovies extends Array { highestGrossing: 1.11 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/category-chart/column-chart-single-source/src/TemperatureAverageData.ts b/samples/charts/category-chart/column-chart-single-source/src/TemperatureAverageData.ts index 8b7b074b7..4f63b25f7 100644 --- a/samples/charts/category-chart/column-chart-single-source/src/TemperatureAverageData.ts +++ b/samples/charts/category-chart/column-chart-single-source/src/TemperatureAverageData.ts @@ -74,7 +74,7 @@ export class TemperatureAverageData extends Array { temperature: 5 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/category-chart/column-chart-styling/src/EnergyRenewableConsumption.ts b/samples/charts/category-chart/column-chart-styling/src/EnergyRenewableConsumption.ts index 03270b7b3..f742bbef3 100644 --- a/samples/charts/category-chart/column-chart-styling/src/EnergyRenewableConsumption.ts +++ b/samples/charts/category-chart/column-chart-styling/src/EnergyRenewableConsumption.ts @@ -63,7 +63,7 @@ export class EnergyRenewableConsumption extends Array { highestGrossing: 1.11 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/category-chart/custom-selection/src/SelectableData.ts b/samples/charts/category-chart/custom-selection/src/SelectableData.ts index 609dc985b..2424432dd 100644 --- a/samples/charts/category-chart/custom-selection/src/SelectableData.ts +++ b/samples/charts/category-chart/custom-selection/src/SelectableData.ts @@ -111,7 +111,7 @@ export class SelectableData extends Array { selectedValue: null }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/category-chart/data-aggregations/src/SalesData.ts b/samples/charts/category-chart/data-aggregations/src/SalesData.ts index 50d5fe209..5f4ec009f 100644 --- a/samples/charts/category-chart/data-aggregations/src/SalesData.ts +++ b/samples/charts/category-chart/data-aggregations/src/SalesData.ts @@ -16697,7 +16697,7 @@ export class SalesData extends Array { Year: `2019` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/category-chart/data-filter/src/ContinentsBirthRate.ts b/samples/charts/category-chart/data-filter/src/ContinentsBirthRate.ts index 77f28339d..2e1860ade 100644 --- a/samples/charts/category-chart/data-filter/src/ContinentsBirthRate.ts +++ b/samples/charts/category-chart/data-filter/src/ContinentsBirthRate.ts @@ -99,7 +99,7 @@ export class ContinentsBirthRate extends Array { Oceania: 4 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/HighestGrossingMovies.ts b/samples/charts/category-chart/data-legend-formatting-decimals/src/HighestGrossingMovies.ts index dea3e62a4..edced6c9e 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/data-legend-formatting-decimals/src/HighestGrossingMovies.ts @@ -51,7 +51,7 @@ export class HighestGrossingMovies extends Array { highestGrossing: 1.11 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/category-chart/data-legend/src/HighestGrossingMovies.ts b/samples/charts/category-chart/data-legend/src/HighestGrossingMovies.ts index dea3e62a4..edced6c9e 100644 --- a/samples/charts/category-chart/data-legend/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/data-legend/src/HighestGrossingMovies.ts @@ -51,7 +51,7 @@ export class HighestGrossingMovies extends Array { highestGrossing: 1.11 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/HighestGrossingMovies.ts b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/HighestGrossingMovies.ts index dea3e62a4..edced6c9e 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/HighestGrossingMovies.ts @@ -51,7 +51,7 @@ export class HighestGrossingMovies extends Array { highestGrossing: 1.11 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/src/HighestGrossingMovies.ts b/samples/charts/category-chart/data-tooltip-positioning/src/HighestGrossingMovies.ts index dea3e62a4..edced6c9e 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/data-tooltip-positioning/src/HighestGrossingMovies.ts @@ -51,7 +51,7 @@ export class HighestGrossingMovies extends Array { highestGrossing: 1.11 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/category-chart/data-tooltip/src/HighestGrossingMovies.ts b/samples/charts/category-chart/data-tooltip/src/HighestGrossingMovies.ts index dea3e62a4..edced6c9e 100644 --- a/samples/charts/category-chart/data-tooltip/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/data-tooltip/src/HighestGrossingMovies.ts @@ -51,7 +51,7 @@ export class HighestGrossingMovies extends Array { highestGrossing: 1.11 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/category-chart/format-specifiers/src/HighestGrossingMovies.ts b/samples/charts/category-chart/format-specifiers/src/HighestGrossingMovies.ts index dea3e62a4..edced6c9e 100644 --- a/samples/charts/category-chart/format-specifiers/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/format-specifiers/src/HighestGrossingMovies.ts @@ -51,7 +51,7 @@ export class HighestGrossingMovies extends Array { highestGrossing: 1.11 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/category-chart/highlighting-behavior/src/TemperatureAnnotatedData.ts b/samples/charts/category-chart/highlighting-behavior/src/TemperatureAnnotatedData.ts index 8524db1df..70539ebf5 100644 --- a/samples/charts/category-chart/highlighting-behavior/src/TemperatureAnnotatedData.ts +++ b/samples/charts/category-chart/highlighting-behavior/src/TemperatureAnnotatedData.ts @@ -100,7 +100,7 @@ export class TemperatureAnnotatedData extends Array { highestGrossing: 1.11 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/line-chart-multiple-sources/src/CountryRenewableElectricity.ts index a1c22c39e..b32970c46 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/line-chart-multiple-sources/src/CountryRenewableElectricity.ts @@ -100,7 +100,7 @@ export class CountryRenewableElectricity extends Array) { + Object.assign(this, init); + } + + public month: string; + public temperature: number; + +} +export class TemperatureAverageData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new TemperatureAverageDataItem( + { + month: `Jan`, + temperature: 3 + }), + new TemperatureAverageDataItem( + { + month: `Feb`, + temperature: 4 + }), + new TemperatureAverageDataItem( + { + month: `Mar`, + temperature: 9 + }), + new TemperatureAverageDataItem( + { + month: `Apr`, + temperature: 15 + }), + new TemperatureAverageDataItem( + { + month: `May`, + temperature: 21 + }), + new TemperatureAverageDataItem( + { + month: `Jun`, + temperature: 26 + }), + new TemperatureAverageDataItem( + { + month: `Jul`, + temperature: 29 + }), + new TemperatureAverageDataItem( + { + month: `Aug`, + temperature: 28 + }), + new TemperatureAverageDataItem( + { + month: `Sep`, + temperature: 24 + }), + new TemperatureAverageDataItem( + { + month: `Oct`, + temperature: 18 + }), + new TemperatureAverageDataItem( + { + month: `Nov`, + temperature: 11 + }), + new TemperatureAverageDataItem( + { + month: `Dec`, + temperature: 5 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/category-chart/selection-modes/src/app.component.html b/samples/charts/category-chart/selection-modes/src/app.component.html new file mode 100644 index 000000000..6a0182541 --- /dev/null +++ b/samples/charts/category-chart/selection-modes/src/app.component.html @@ -0,0 +1,25 @@ +
+
+ Average Temperature Range in New York +
+
+ + +
+
diff --git a/samples/charts/category-chart/selection-modes/src/app.component.scss b/samples/charts/category-chart/selection-modes/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/category-chart/selection-modes/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/category-chart/selection-modes/src/app.component.ts b/samples/charts/category-chart/selection-modes/src/app.component.ts new file mode 100644 index 000000000..2ee433ece --- /dev/null +++ b/samples/charts/category-chart/selection-modes/src/app.component.ts @@ -0,0 +1,35 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { TemperatureAverageDataItem, TemperatureAverageData } from './TemperatureAverageData'; +import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent + private _temperatureAverageData: TemperatureAverageData = null; + public get temperatureAverageData(): TemperatureAverageData { + if (this._temperatureAverageData == null) + { + this._temperatureAverageData = new TemperatureAverageData(); + } + return this._temperatureAverageData; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/category-chart/selection-modes/src/app.module.ts b/samples/charts/category-chart/selection-modes/src/app.module.ts new file mode 100644 index 000000000..a77bef963 --- /dev/null +++ b/samples/charts/category-chart/selection-modes/src/app.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxCategoryChartModule, IgxDataChartInteractivityModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxCategoryChartModule, + IgxDataChartInteractivityModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/category-chart/selection-modes/src/environments/environment.prod.ts b/samples/charts/category-chart/selection-modes/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/category-chart/selection-modes/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/category-chart/selection-modes/src/environments/environment.ts b/samples/charts/category-chart/selection-modes/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/category-chart/selection-modes/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/category-chart/selection-modes/src/index.html b/samples/charts/category-chart/selection-modes/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/category-chart/selection-modes/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/category-chart/selection-modes/src/main.ts b/samples/charts/category-chart/selection-modes/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/category-chart/selection-modes/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/category-chart/selection-modes/src/polyfills.ts b/samples/charts/category-chart/selection-modes/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/category-chart/selection-modes/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/category-chart/selection-modes/src/styles.scss b/samples/charts/category-chart/selection-modes/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/category-chart/selection-modes/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/category-chart/selection-modes/src/typings.d.ts b/samples/charts/category-chart/selection-modes/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/category-chart/selection-modes/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/category-chart/selection-modes/tsconfig.app.json b/samples/charts/category-chart/selection-modes/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/selection-modes/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/selection-modes/tsconfig.json b/samples/charts/category-chart/selection-modes/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/category-chart/selection-modes/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/selection-modes/tslint.json b/samples/charts/category-chart/selection-modes/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/category-chart/selection-modes/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/category-chart/selection-multiple-modes/.codesandbox/Dockerfile b/samples/charts/category-chart/selection-multiple-modes/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/selection-multiple-modes/.codesandbox/tasks.json b/samples/charts/category-chart/selection-multiple-modes/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/selection-multiple-modes/.stackblitzrc b/samples/charts/category-chart/selection-multiple-modes/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/selection-multiple-modes/angular.json b/samples/charts/category-chart/selection-multiple-modes/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json new file mode 100644 index 000000000..292eee597 --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -0,0 +1,47 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-webcomponents": "4.9.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.4.5" + } +} diff --git a/samples/charts/category-chart/selection-multiple-modes/src/EnergyRenewableConsumption.ts b/samples/charts/category-chart/selection-multiple-modes/src/EnergyRenewableConsumption.ts new file mode 100644 index 000000000..f742bbef3 --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/src/EnergyRenewableConsumption.ts @@ -0,0 +1,69 @@ +export class EnergyRenewableConsumptionItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public location: string; + public year: number; + public hydro: number; + public solar: number; + public wind: number; + public other: number; + +} +export class EnergyRenewableConsumption extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyRenewableConsumptionItem( + { + location: `China`, + year: 2019, + hydro: 1269.5, + solar: 223, + wind: 405.2, + other: 102.8 + }), + new EnergyRenewableConsumptionItem( + { + location: `Europe`, + year: 2019, + hydro: 632.54, + solar: 154, + wind: 461.3, + other: 220.3 + }), + new EnergyRenewableConsumptionItem( + { + location: `USA`, + year: 2019, + hydro: 271.16, + solar: 108, + wind: 303.4, + other: 78.34 + }), + new EnergyRenewableConsumptionItem( + { + location: `Brazil`, + year: 2019, + hydro: 399.3, + solar: 5.5, + wind: 55.83, + other: 56.25 + }), + new EnergyRenewableConsumptionItem( + { + location: `Canada`, + year: 2019, + hydro: 381.98, + solar: 4.3, + wind: 34.17, + other: 10.81 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/category-chart/selection-multiple-modes/src/app.component.html b/samples/charts/category-chart/selection-multiple-modes/src/app.component.html new file mode 100644 index 000000000..7ac3f38ea --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/src/app.component.html @@ -0,0 +1,56 @@ +
+
+ + + + + + +
+
+ Highest Grossing Movie Franchises +
+
+ + +
+
+ + +
+
diff --git a/samples/charts/category-chart/selection-multiple-modes/src/app.component.scss b/samples/charts/category-chart/selection-multiple-modes/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/category-chart/selection-multiple-modes/src/app.component.ts b/samples/charts/category-chart/selection-multiple-modes/src/app.component.ts new file mode 100644 index 000000000..07046894d --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/src/app.component.ts @@ -0,0 +1,61 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; +import { EnergyRenewableConsumptionItem, EnergyRenewableConsumption } from './EnergyRenewableConsumption'; +import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; +import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("selectionModeEditor", { static: true } ) + private selectionModeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("selectionBehaviorEditor", { static: true } ) + private selectionBehaviorEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent + private _energyRenewableConsumption: EnergyRenewableConsumption = null; + public get energyRenewableConsumption(): EnergyRenewableConsumption { + if (this._energyRenewableConsumption == null) + { + this._energyRenewableConsumption = new EnergyRenewableConsumption(); + } + return this._energyRenewableConsumption; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + LegendDescriptionModule.register(context); + CategoryChartDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/category-chart/selection-multiple-modes/src/app.module.ts b/samples/charts/category-chart/selection-multiple-modes/src/app.module.ts new file mode 100644 index 000000000..b4febf5b8 --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/src/app.module.ts @@ -0,0 +1,28 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxLegendModule, IgxCategoryChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxLegendModule, + IgxCategoryChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/category-chart/selection-multiple-modes/src/environments/environment.prod.ts b/samples/charts/category-chart/selection-multiple-modes/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/category-chart/selection-multiple-modes/src/environments/environment.ts b/samples/charts/category-chart/selection-multiple-modes/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/category-chart/selection-multiple-modes/src/index.html b/samples/charts/category-chart/selection-multiple-modes/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/category-chart/selection-multiple-modes/src/main.ts b/samples/charts/category-chart/selection-multiple-modes/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/category-chart/selection-multiple-modes/src/polyfills.ts b/samples/charts/category-chart/selection-multiple-modes/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/category-chart/selection-multiple-modes/src/styles.scss b/samples/charts/category-chart/selection-multiple-modes/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/category-chart/selection-multiple-modes/src/typings.d.ts b/samples/charts/category-chart/selection-multiple-modes/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/category-chart/selection-multiple-modes/tsconfig.app.json b/samples/charts/category-chart/selection-multiple-modes/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/selection-multiple-modes/tsconfig.json b/samples/charts/category-chart/selection-multiple-modes/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/selection-multiple-modes/tslint.json b/samples/charts/category-chart/selection-multiple-modes/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/spline-area-multiple-sources/src/CountryRenewableElectricity.ts index a1c22c39e..b32970c46 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/spline-area-multiple-sources/src/CountryRenewableElectricity.ts @@ -100,7 +100,7 @@ export class CountryRenewableElectricity extends Array { temperature: 5 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/src/HighestGrossingMovies.ts b/samples/charts/data-chart/bar-chart-multiple-sources/src/HighestGrossingMovies.ts index dea3e62a4..edced6c9e 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/src/HighestGrossingMovies.ts +++ b/samples/charts/data-chart/bar-chart-multiple-sources/src/HighestGrossingMovies.ts @@ -51,7 +51,7 @@ export class HighestGrossingMovies extends Array { highestGrossing: 1.11 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/src/RoadblocksToSuccess.ts b/samples/charts/data-chart/bar-chart-overlapping/src/RoadblocksToSuccess.ts index 8d1456cc7..419d12c47 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/src/RoadblocksToSuccess.ts +++ b/samples/charts/data-chart/bar-chart-overlapping/src/RoadblocksToSuccess.ts @@ -63,7 +63,7 @@ export class RoadblocksToSuccess extends Array { category: `Cultural Challenges` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/bar-chart-single-source/src/OnlineShoppingSearches.ts b/samples/charts/data-chart/bar-chart-single-source/src/OnlineShoppingSearches.ts index 6ce4bb0b0..908ea508d 100644 --- a/samples/charts/data-chart/bar-chart-single-source/src/OnlineShoppingSearches.ts +++ b/samples/charts/data-chart/bar-chart-single-source/src/OnlineShoppingSearches.ts @@ -81,7 +81,7 @@ export class OnlineShoppingSearches extends Array { shop: `Other` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/bar-chart-styling/src/OnlineShoppingSearches.ts b/samples/charts/data-chart/bar-chart-styling/src/OnlineShoppingSearches.ts index 6ce4bb0b0..908ea508d 100644 --- a/samples/charts/data-chart/bar-chart-styling/src/OnlineShoppingSearches.ts +++ b/samples/charts/data-chart/bar-chart-styling/src/OnlineShoppingSearches.ts @@ -81,7 +81,7 @@ export class OnlineShoppingSearches extends Array { shop: `Other` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/callout-layer-styling/src/CountryRenewableElectricity.ts b/samples/charts/data-chart/callout-layer-styling/src/CountryRenewableElectricity.ts index a1c22c39e..b32970c46 100644 --- a/samples/charts/data-chart/callout-layer-styling/src/CountryRenewableElectricity.ts +++ b/samples/charts/data-chart/callout-layer-styling/src/CountryRenewableElectricity.ts @@ -100,7 +100,7 @@ export class CountryRenewableElectricity extends Array { volume: 30616 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/polar-area-chart-styling/src/BoatSailingData.ts b/samples/charts/data-chart/polar-area-chart-styling/src/BoatSailingData.ts index f15482a99..a7372e278 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/src/BoatSailingData.ts +++ b/samples/charts/data-chart/polar-area-chart-styling/src/BoatSailingData.ts @@ -69,7 +69,7 @@ export class BoatSailingData extends Array { windSpeed: 90 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/polar-area-chart/src/BoatSailingData.ts b/samples/charts/data-chart/polar-area-chart/src/BoatSailingData.ts index f15482a99..a7372e278 100644 --- a/samples/charts/data-chart/polar-area-chart/src/BoatSailingData.ts +++ b/samples/charts/data-chart/polar-area-chart/src/BoatSailingData.ts @@ -69,7 +69,7 @@ export class BoatSailingData extends Array { windSpeed: 90 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/polar-line-chart/src/BoatSailingData.ts b/samples/charts/data-chart/polar-line-chart/src/BoatSailingData.ts index f15482a99..a7372e278 100644 --- a/samples/charts/data-chart/polar-line-chart/src/BoatSailingData.ts +++ b/samples/charts/data-chart/polar-line-chart/src/BoatSailingData.ts @@ -69,7 +69,7 @@ export class BoatSailingData extends Array { windSpeed: 90 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/polar-scatter-chart/src/BoatSailingData.ts b/samples/charts/data-chart/polar-scatter-chart/src/BoatSailingData.ts index f15482a99..a7372e278 100644 --- a/samples/charts/data-chart/polar-scatter-chart/src/BoatSailingData.ts +++ b/samples/charts/data-chart/polar-scatter-chart/src/BoatSailingData.ts @@ -69,7 +69,7 @@ export class BoatSailingData extends Array { windSpeed: 90 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/polar-spline-area-chart/src/BoatSailingData.ts b/samples/charts/data-chart/polar-spline-area-chart/src/BoatSailingData.ts index f15482a99..a7372e278 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/src/BoatSailingData.ts +++ b/samples/charts/data-chart/polar-spline-area-chart/src/BoatSailingData.ts @@ -69,7 +69,7 @@ export class BoatSailingData extends Array { windSpeed: 90 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/polar-spline-chart/src/BoatSailingData.ts b/samples/charts/data-chart/polar-spline-chart/src/BoatSailingData.ts index f15482a99..a7372e278 100644 --- a/samples/charts/data-chart/polar-spline-chart/src/BoatSailingData.ts +++ b/samples/charts/data-chart/polar-spline-chart/src/BoatSailingData.ts @@ -69,7 +69,7 @@ export class BoatSailingData extends Array { windSpeed: 90 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/radial-area-chart-styling/src/FootballPlayerStats.ts b/samples/charts/data-chart/radial-area-chart-styling/src/FootballPlayerStats.ts index 7d9359d52..76a96e138 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/src/FootballPlayerStats.ts +++ b/samples/charts/data-chart/radial-area-chart-styling/src/FootballPlayerStats.ts @@ -63,7 +63,7 @@ export class FootballPlayerStats extends Array { messi: 6 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/radial-area-chart/src/FootballPlayerStats.ts b/samples/charts/data-chart/radial-area-chart/src/FootballPlayerStats.ts index 7d9359d52..76a96e138 100644 --- a/samples/charts/data-chart/radial-area-chart/src/FootballPlayerStats.ts +++ b/samples/charts/data-chart/radial-area-chart/src/FootballPlayerStats.ts @@ -63,7 +63,7 @@ export class FootballPlayerStats extends Array { messi: 6 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/radial-column-chart-selection/.codesandbox/Dockerfile b/samples/charts/data-chart/radial-column-chart-selection/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/radial-column-chart-selection/.codesandbox/tasks.json b/samples/charts/data-chart/radial-column-chart-selection/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-column-chart-selection/.stackblitzrc b/samples/charts/data-chart/radial-column-chart-selection/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-column-chart-selection/angular.json b/samples/charts/data-chart/radial-column-chart-selection/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json new file mode 100644 index 000000000..51b8ad913 --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.4.5" + } +} diff --git a/samples/charts/data-chart/radial-column-chart-selection/src/FootballPlayerStats.ts b/samples/charts/data-chart/radial-column-chart-selection/src/FootballPlayerStats.ts new file mode 100644 index 000000000..76a96e138 --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/src/FootballPlayerStats.ts @@ -0,0 +1,69 @@ +export class FootballPlayerStatsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public attribute: string; + public ronaldo: number; + public messi: number; + +} +export class FootballPlayerStats extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new FootballPlayerStatsItem( + { + attribute: `Dribbling`, + ronaldo: 8, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Passing`, + ronaldo: 8, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Finishing`, + ronaldo: 10, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Free Kicks`, + ronaldo: 8, + messi: 9 + }), + new FootballPlayerStatsItem( + { + attribute: `Penalties`, + ronaldo: 9, + messi: 7 + }), + new FootballPlayerStatsItem( + { + attribute: `Physical`, + ronaldo: 10, + messi: 7 + }), + new FootballPlayerStatsItem( + { + attribute: `Team Play`, + ronaldo: 7, + messi: 9 + }), + new FootballPlayerStatsItem( + { + attribute: `Heading`, + ronaldo: 9, + messi: 6 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/radial-column-chart-selection/src/app.component.html b/samples/charts/data-chart/radial-column-chart-selection/src/app.component.html new file mode 100644 index 000000000..6220b57fe --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/src/app.component.html @@ -0,0 +1,63 @@ +
+
+ Ronaldo vs Messi Player Stats +
+
+ + +
+
+ + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/radial-column-chart-selection/src/app.component.scss b/samples/charts/data-chart/radial-column-chart-selection/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/radial-column-chart-selection/src/app.component.ts b/samples/charts/data-chart/radial-column-chart-selection/src/app.component.ts new file mode 100644 index 000000000..30f250ba2 --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/src/app.component.ts @@ -0,0 +1,45 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { FootballPlayerStatsItem, FootballPlayerStats } from './FootballPlayerStats'; +import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxRadialColumnSeriesComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("angleAxis", { static: true } ) + private angleAxis: IgxCategoryAngleAxisComponent + @ViewChild("radiusAxis", { static: true } ) + private radiusAxis: IgxNumericRadiusAxisComponent + @ViewChild("radialColumnSeries1", { static: true } ) + private radialColumnSeries1: IgxRadialColumnSeriesComponent + @ViewChild("radialColumnSeries2", { static: true } ) + private radialColumnSeries2: IgxRadialColumnSeriesComponent + private _footballPlayerStats: FootballPlayerStats = null; + public get footballPlayerStats(): FootballPlayerStats { + if (this._footballPlayerStats == null) + { + this._footballPlayerStats = new FootballPlayerStats(); + } + return this._footballPlayerStats; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/radial-column-chart-selection/src/app.module.ts b/samples/charts/data-chart/radial-column-chart-selection/src/app.module.ts new file mode 100644 index 000000000..15d936032 --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/src/app.module.ts @@ -0,0 +1,30 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDataChartCoreModule, IgxDataChartRadialModule, IgxDataChartRadialCoreModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule, IgxLegendModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDataChartCoreModule, + IgxDataChartRadialModule, + IgxDataChartRadialCoreModule, + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule, + IgxLegendModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/radial-column-chart-selection/src/environments/environment.prod.ts b/samples/charts/data-chart/radial-column-chart-selection/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/radial-column-chart-selection/src/environments/environment.ts b/samples/charts/data-chart/radial-column-chart-selection/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/radial-column-chart-selection/src/index.html b/samples/charts/data-chart/radial-column-chart-selection/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/radial-column-chart-selection/src/main.ts b/samples/charts/data-chart/radial-column-chart-selection/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/radial-column-chart-selection/src/polyfills.ts b/samples/charts/data-chart/radial-column-chart-selection/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/radial-column-chart-selection/src/styles.scss b/samples/charts/data-chart/radial-column-chart-selection/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/radial-column-chart-selection/src/typings.d.ts b/samples/charts/data-chart/radial-column-chart-selection/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/radial-column-chart-selection/tsconfig.app.json b/samples/charts/data-chart/radial-column-chart-selection/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/radial-column-chart-selection/tsconfig.json b/samples/charts/data-chart/radial-column-chart-selection/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-column-chart-selection/tslint.json b/samples/charts/data-chart/radial-column-chart-selection/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/radial-column-chart/src/FootballPlayerStats.ts b/samples/charts/data-chart/radial-column-chart/src/FootballPlayerStats.ts index 7d9359d52..76a96e138 100644 --- a/samples/charts/data-chart/radial-column-chart/src/FootballPlayerStats.ts +++ b/samples/charts/data-chart/radial-column-chart/src/FootballPlayerStats.ts @@ -63,7 +63,7 @@ export class FootballPlayerStats extends Array { messi: 6 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/radial-line-chart/src/FootballPlayerStats.ts b/samples/charts/data-chart/radial-line-chart/src/FootballPlayerStats.ts index 7d9359d52..76a96e138 100644 --- a/samples/charts/data-chart/radial-line-chart/src/FootballPlayerStats.ts +++ b/samples/charts/data-chart/radial-line-chart/src/FootballPlayerStats.ts @@ -63,7 +63,7 @@ export class FootballPlayerStats extends Array { messi: 6 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/radial-pie-chart/src/FootballPlayerStats.ts b/samples/charts/data-chart/radial-pie-chart/src/FootballPlayerStats.ts index 7d9359d52..76a96e138 100644 --- a/samples/charts/data-chart/radial-pie-chart/src/FootballPlayerStats.ts +++ b/samples/charts/data-chart/radial-pie-chart/src/FootballPlayerStats.ts @@ -63,7 +63,7 @@ export class FootballPlayerStats extends Array { messi: 6 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/range-area-chart/src/TemperatureRangeData.ts b/samples/charts/data-chart/range-area-chart/src/TemperatureRangeData.ts index 13c31ef6d..50c309607 100644 --- a/samples/charts/data-chart/range-area-chart/src/TemperatureRangeData.ts +++ b/samples/charts/data-chart/range-area-chart/src/TemperatureRangeData.ts @@ -113,7 +113,7 @@ export class TemperatureRangeData extends Array { lowLA: 5.6 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/range-column-chart/src/TemperatureRangeData.ts b/samples/charts/data-chart/range-column-chart/src/TemperatureRangeData.ts index 13c31ef6d..50c309607 100644 --- a/samples/charts/data-chart/range-column-chart/src/TemperatureRangeData.ts +++ b/samples/charts/data-chart/range-column-chart/src/TemperatureRangeData.ts @@ -113,7 +113,7 @@ export class TemperatureRangeData extends Array { lowLA: 5.6 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts index b08f50344..a0b3fbe3f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts @@ -5437,7 +5437,7 @@ export class WorldStats extends Array { internet: 1247 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsAfrica.ts b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsAfrica.ts index cf0f8cd80..34e0a73da 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsAfrica.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsAfrica.ts @@ -425,7 +425,7 @@ export class CountryStatsAfrica extends Array { name: `Zimbabwe` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsEurope.ts b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsEurope.ts index 1a6694629..d0b93024d 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsEurope.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsEurope.ts @@ -345,7 +345,7 @@ export class CountryStatsEurope extends Array { name: `United Kingdom` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts index b08f50344..a0b3fbe3f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts @@ -5437,7 +5437,7 @@ export class WorldStats extends Array { internet: 1247 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts index cf0f8cd80..34e0a73da 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts @@ -425,7 +425,7 @@ export class CountryStatsAfrica extends Array { name: `Zimbabwe` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts index 1a6694629..d0b93024d 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts @@ -345,7 +345,7 @@ export class CountryStatsEurope extends Array { name: `United Kingdom` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/scatter-line-chart/src/HealthDataForFrance.ts b/samples/charts/data-chart/scatter-line-chart/src/HealthDataForFrance.ts index af6e0ccf8..42e805128 100644 --- a/samples/charts/data-chart/scatter-line-chart/src/HealthDataForFrance.ts +++ b/samples/charts/data-chart/scatter-line-chart/src/HealthDataForFrance.ts @@ -233,7 +233,7 @@ export class HealthDataForFrance extends Array { name: `Norway` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/scatter-line-chart/src/HealthDataForGermany.ts b/samples/charts/data-chart/scatter-line-chart/src/HealthDataForGermany.ts index c472954b8..e88199fe2 100644 --- a/samples/charts/data-chart/scatter-line-chart/src/HealthDataForGermany.ts +++ b/samples/charts/data-chart/scatter-line-chart/src/HealthDataForGermany.ts @@ -226,7 +226,7 @@ export class HealthDataForGermany extends Array { name: `Germany` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicAfrican.ts b/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicAfrican.ts index 70452bea7..3b694f90b 100644 --- a/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicAfrican.ts +++ b/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicAfrican.ts @@ -394,7 +394,7 @@ export class CountryDemographicAfrican extends Array { name: `Norway` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/scatter-spline-chart/src/HealthDataForGermany.ts b/samples/charts/data-chart/scatter-spline-chart/src/HealthDataForGermany.ts index c472954b8..e88199fe2 100644 --- a/samples/charts/data-chart/scatter-spline-chart/src/HealthDataForGermany.ts +++ b/samples/charts/data-chart/scatter-spline-chart/src/HealthDataForGermany.ts @@ -226,7 +226,7 @@ export class HealthDataForGermany extends Array { name: `Germany` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/stacked-100-area-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-100-area-chart/src/ContinentsBirthRate.ts index 3341e056c..df127b125 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-100-area-chart/src/ContinentsBirthRate.ts @@ -99,7 +99,7 @@ export class ContinentsBirthRate extends Array { oceania: 4 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/src/EnergyRenewableConsumption.ts b/samples/charts/data-chart/stacked-100-bar-chart/src/EnergyRenewableConsumption.ts index 03270b7b3..f742bbef3 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/src/EnergyRenewableConsumption.ts +++ b/samples/charts/data-chart/stacked-100-bar-chart/src/EnergyRenewableConsumption.ts @@ -63,7 +63,7 @@ export class EnergyRenewableConsumption extends Array { tablet: 3 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/stacked-100-line-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-100-line-chart/src/ContinentsBirthRate.ts index 3341e056c..df127b125 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-100-line-chart/src/ContinentsBirthRate.ts @@ -99,7 +99,7 @@ export class ContinentsBirthRate extends Array { oceania: 4 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-100-spline-area-chart/src/ContinentsBirthRate.ts index 3341e056c..df127b125 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/src/ContinentsBirthRate.ts @@ -99,7 +99,7 @@ export class ContinentsBirthRate extends Array { oceania: 4 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-100-spline-chart/src/ContinentsBirthRate.ts index 3341e056c..df127b125 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-100-spline-chart/src/ContinentsBirthRate.ts @@ -99,7 +99,7 @@ export class ContinentsBirthRate extends Array { oceania: 4 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts index 3341e056c..df127b125 100644 --- a/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts @@ -99,7 +99,7 @@ export class ContinentsBirthRate extends Array { oceania: 4 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/stacked-bar-chart/src/EnergyRenewableConsumption.ts b/samples/charts/data-chart/stacked-bar-chart/src/EnergyRenewableConsumption.ts index 03270b7b3..f742bbef3 100644 --- a/samples/charts/data-chart/stacked-bar-chart/src/EnergyRenewableConsumption.ts +++ b/samples/charts/data-chart/stacked-bar-chart/src/EnergyRenewableConsumption.ts @@ -63,7 +63,7 @@ export class EnergyRenewableConsumption extends Array { oceania: 4 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts index 3341e056c..df127b125 100644 --- a/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts @@ -99,7 +99,7 @@ export class ContinentsBirthRate extends Array { oceania: 4 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/stacked-spline-area-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-spline-area-chart/src/ContinentsBirthRate.ts index 3341e056c..df127b125 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-spline-area-chart/src/ContinentsBirthRate.ts @@ -99,7 +99,7 @@ export class ContinentsBirthRate extends Array { oceania: 4 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts index 3341e056c..df127b125 100644 --- a/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts @@ -99,7 +99,7 @@ export class ContinentsBirthRate extends Array { oceania: 4 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/transition-event/src/CompanyIncomeData.ts b/samples/charts/data-chart/transition-event/src/CompanyIncomeData.ts index 7fa95bb74..352bd2f69 100644 --- a/samples/charts/data-chart/transition-event/src/CompanyIncomeData.ts +++ b/samples/charts/data-chart/transition-event/src/CompanyIncomeData.ts @@ -57,7 +57,7 @@ export class CompanyIncomeData extends Array { category: `Net Income` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/data-chart/waterfall-chart/src/CompanyIncomeData.ts b/samples/charts/data-chart/waterfall-chart/src/CompanyIncomeData.ts index 7fa95bb74..352bd2f69 100644 --- a/samples/charts/data-chart/waterfall-chart/src/CompanyIncomeData.ts +++ b/samples/charts/data-chart/waterfall-chart/src/CompanyIncomeData.ts @@ -57,7 +57,7 @@ export class CompanyIncomeData extends Array { category: `Net Income` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/doughnut-chart/legend/src/EnergyGlobalDemand.ts b/samples/charts/doughnut-chart/legend/src/EnergyGlobalDemand.ts index 922fcf7a9..3d2ed388a 100644 --- a/samples/charts/doughnut-chart/legend/src/EnergyGlobalDemand.ts +++ b/samples/charts/doughnut-chart/legend/src/EnergyGlobalDemand.ts @@ -45,7 +45,7 @@ export class EnergyGlobalDemand extends Array { summary: `Other 15%` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/doughnut-chart/overview/src/CompanyMarketShares.ts b/samples/charts/doughnut-chart/overview/src/CompanyMarketShares.ts index b02bf58a7..67a18c3d9 100644 --- a/samples/charts/doughnut-chart/overview/src/CompanyMarketShares.ts +++ b/samples/charts/doughnut-chart/overview/src/CompanyMarketShares.ts @@ -45,7 +45,7 @@ export class CompanyMarketShares extends Array { summary: `Other 10%` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/doughnut-chart/rings/src/CalendarMonths.ts b/samples/charts/doughnut-chart/rings/src/CalendarMonths.ts index 6387ea750..5e401ecdb 100644 --- a/samples/charts/doughnut-chart/rings/src/CalendarMonths.ts +++ b/samples/charts/doughnut-chart/rings/src/CalendarMonths.ts @@ -74,7 +74,7 @@ export class CalendarMonths extends Array { label: `November` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/doughnut-chart/rings/src/CalendarSeasons.ts b/samples/charts/doughnut-chart/rings/src/CalendarSeasons.ts index b4abfde9c..a67d25579 100644 --- a/samples/charts/doughnut-chart/rings/src/CalendarSeasons.ts +++ b/samples/charts/doughnut-chart/rings/src/CalendarSeasons.ts @@ -34,7 +34,7 @@ export class CalendarSeasons extends Array { label: `Fall` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/StockGoogle.ts b/samples/charts/financial-chart/data-legend-styling-props/src/StockGoogle.ts index 5236d32cb..efd806727 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/src/StockGoogle.ts +++ b/samples/charts/financial-chart/data-legend-styling-props/src/StockGoogle.ts @@ -8721,7 +8721,7 @@ export class StockGoogle extends Array { volume: 1538688 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/src/StockGoogle.ts b/samples/charts/financial-chart/data-tooltip-styling-props/src/StockGoogle.ts index 5236d32cb..efd806727 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/src/StockGoogle.ts +++ b/samples/charts/financial-chart/data-tooltip-styling-props/src/StockGoogle.ts @@ -8721,7 +8721,7 @@ export class StockGoogle extends Array { volume: 1538688 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/pie-chart/legend/src/EnergyGlobalDemand.ts b/samples/charts/pie-chart/legend/src/EnergyGlobalDemand.ts index 922fcf7a9..3d2ed388a 100644 --- a/samples/charts/pie-chart/legend/src/EnergyGlobalDemand.ts +++ b/samples/charts/pie-chart/legend/src/EnergyGlobalDemand.ts @@ -45,7 +45,7 @@ export class EnergyGlobalDemand extends Array { summary: `Other 15%` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/pie-chart/others/src/EnergyGlobalDemand.ts b/samples/charts/pie-chart/others/src/EnergyGlobalDemand.ts index 922fcf7a9..3d2ed388a 100644 --- a/samples/charts/pie-chart/others/src/EnergyGlobalDemand.ts +++ b/samples/charts/pie-chart/others/src/EnergyGlobalDemand.ts @@ -45,7 +45,7 @@ export class EnergyGlobalDemand extends Array { summary: `Other 15%` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/pie-chart/overview/src/EnergyGlobalDemand.ts b/samples/charts/pie-chart/overview/src/EnergyGlobalDemand.ts index 922fcf7a9..3d2ed388a 100644 --- a/samples/charts/pie-chart/overview/src/EnergyGlobalDemand.ts +++ b/samples/charts/pie-chart/overview/src/EnergyGlobalDemand.ts @@ -45,7 +45,7 @@ export class EnergyGlobalDemand extends Array { summary: `Other 15%` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/pie-chart/styling/src/EnergyGlobalDemand.ts b/samples/charts/pie-chart/styling/src/EnergyGlobalDemand.ts index 922fcf7a9..3d2ed388a 100644 --- a/samples/charts/pie-chart/styling/src/EnergyGlobalDemand.ts +++ b/samples/charts/pie-chart/styling/src/EnergyGlobalDemand.ts @@ -45,7 +45,7 @@ export class EnergyGlobalDemand extends Array { summary: `Other 15%` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/sparkline/display-area/src/SparklineMixedData.ts b/samples/charts/sparkline/display-area/src/SparklineMixedData.ts index b7684d62c..fa5564d4e 100644 --- a/samples/charts/sparkline/display-area/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/display-area/src/SparklineMixedData.ts @@ -54,7 +54,7 @@ export class SparklineMixedData extends Array { value: 30 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/sparkline/display-column/src/SparklineMixedData.ts b/samples/charts/sparkline/display-column/src/SparklineMixedData.ts index b7684d62c..fa5564d4e 100644 --- a/samples/charts/sparkline/display-column/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/display-column/src/SparklineMixedData.ts @@ -54,7 +54,7 @@ export class SparklineMixedData extends Array { value: 30 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/sparkline/display-lines/src/SparklineMixedData.ts b/samples/charts/sparkline/display-lines/src/SparklineMixedData.ts index b7684d62c..fa5564d4e 100644 --- a/samples/charts/sparkline/display-lines/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/display-lines/src/SparklineMixedData.ts @@ -54,7 +54,7 @@ export class SparklineMixedData extends Array { value: 30 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/sparkline/display-winloss/src/SparklineMixedData.ts b/samples/charts/sparkline/display-winloss/src/SparklineMixedData.ts index b7684d62c..fa5564d4e 100644 --- a/samples/charts/sparkline/display-winloss/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/display-winloss/src/SparklineMixedData.ts @@ -54,7 +54,7 @@ export class SparklineMixedData extends Array { value: 30 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/sparkline/markers/src/SparklineProfitData.ts b/samples/charts/sparkline/markers/src/SparklineProfitData.ts index 368afc9dc..a9914e6ac 100644 --- a/samples/charts/sparkline/markers/src/SparklineProfitData.ts +++ b/samples/charts/sparkline/markers/src/SparklineProfitData.ts @@ -54,7 +54,7 @@ export class SparklineProfitData extends Array { label: `H` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/sparkline/normal-range/src/SparklineMixedData.ts b/samples/charts/sparkline/normal-range/src/SparklineMixedData.ts index b7684d62c..fa5564d4e 100644 --- a/samples/charts/sparkline/normal-range/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/normal-range/src/SparklineMixedData.ts @@ -54,7 +54,7 @@ export class SparklineMixedData extends Array { value: 30 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/sparkline/trendlines/src/SparklineMixedData.ts b/samples/charts/sparkline/trendlines/src/SparklineMixedData.ts index b7684d62c..fa5564d4e 100644 --- a/samples/charts/sparkline/trendlines/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/trendlines/src/SparklineMixedData.ts @@ -54,7 +54,7 @@ export class SparklineMixedData extends Array { value: 30 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/sparkline/unknown-values/src/SparklineUnknownData.ts b/samples/charts/sparkline/unknown-values/src/SparklineUnknownData.ts index cc0ceffa7..b2dd8473d 100644 --- a/samples/charts/sparkline/unknown-values/src/SparklineUnknownData.ts +++ b/samples/charts/sparkline/unknown-values/src/SparklineUnknownData.ts @@ -64,7 +64,7 @@ export class SparklineUnknownData extends Array { value: 6 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/CountryRenewableElectricity.ts b/samples/charts/toolbar/actions-built-in-category-chart/src/CountryRenewableElectricity.ts index a1c22c39e..b32970c46 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/CountryRenewableElectricity.ts +++ b/samples/charts/toolbar/actions-built-in-category-chart/src/CountryRenewableElectricity.ts @@ -100,7 +100,7 @@ export class CountryRenewableElectricity extends Array { urbanPopPercent: `88%` }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/tree-map/highlighting/angular.json b/samples/charts/tree-map/highlighting/angular.json index 0c2c173c9..ff6803cf7 100644 --- a/samples/charts/tree-map/highlighting/angular.json +++ b/samples/charts/tree-map/highlighting/angular.json @@ -101,7 +101,7 @@ "src/styles.scss" ], "scripts": [], - "assets": [ + "assets": [ "src/assets" ], "inlineStyleLanguage": "scss", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 4589db2ac..292eee597 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", "@angular/cli": "18.0.3", "@angular/compiler-cli": "18.0.2", "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.4.5" } } diff --git a/samples/charts/tree-map/highlighting/src/CountyHierarchicalData.ts b/samples/charts/tree-map/highlighting/src/CountyHierarchicalData.ts index e475830fc..5193e116c 100644 --- a/samples/charts/tree-map/highlighting/src/CountyHierarchicalData.ts +++ b/samples/charts/tree-map/highlighting/src/CountyHierarchicalData.ts @@ -2,7 +2,7 @@ export class CountyHierarchicalDataItem { public constructor(init: Partial) { Object.assign(this, init); } - + public code: string; public parent: string; public name: string; @@ -1570,7 +1570,7 @@ export class CountyHierarchicalData extends Array { population: 29278000 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/tree-map/highlighting/src/app.component.html b/samples/charts/tree-map/highlighting/src/app.component.html index f9b4360f3..248a9f048 100644 --- a/samples/charts/tree-map/highlighting/src/app.component.html +++ b/samples/charts/tree-map/highlighting/src/app.component.html @@ -1,9 +1,22 @@
-
- +
+ + + +
Comparing Population of Countries @@ -29,8 +42,7 @@ parentNodeRightPadding="0" parentNodeTopPadding="0" outline="black" - strokeThickness="1" - highlightingMode="Brighten"> + strokeThickness="1">
diff --git a/samples/charts/tree-map/highlighting/src/app.component.ts b/samples/charts/tree-map/highlighting/src/app.component.ts index 9f1828f32..525324fef 100644 --- a/samples/charts/tree-map/highlighting/src/app.component.ts +++ b/samples/charts/tree-map/highlighting/src/app.component.ts @@ -2,7 +2,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDet import { ComponentRenderer, PropertyEditorPanelDescriptionModule, TreemapDescriptionModule } from 'igniteui-angular-core'; import { CountyHierarchicalDataItem, CountyHierarchicalData } from './CountyHierarchicalData'; import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; -import { IgxTreemapComponent, TreemapHighlightingMode } from 'igniteui-angular-charts'; +import { IgxTreemapComponent } from 'igniteui-angular-charts'; import { defineAllComponents } from 'igniteui-webcomponents'; @@ -15,9 +15,13 @@ defineAllComponents(); changeDetection: ChangeDetectionStrategy.OnPush }) - export class AppComponent implements AfterViewInit -{ +{ + + @ViewChild("propertyEditor", { static: true } ) + private propertyEditor: IgxPropertyEditorPanelComponent + @ViewChild("highlightedModeEditor", { static: true } ) + private highlightedModeEditor: IgxPropertyEditorPropertyDescriptionComponent @ViewChild("treemap", { static: true } ) private treemap: IgxTreemapComponent private _countyHierarchicalData: CountyHierarchicalData = null; @@ -27,27 +31,26 @@ export class AppComponent implements AfterViewInit this._countyHierarchicalData = new CountyHierarchicalData(); } return this._countyHierarchicalData; - } - - public onHighlightingModeChange(args: any){ - let value = args.target.value; + } - if(value === "Brighten"){ - this.treemap.highlightingMode = TreemapHighlightingMode.Brighten; + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + TreemapDescriptionModule.register(context); } - else{ - this.treemap.highlightingMode = TreemapHighlightingMode.FadeOthers; - } + return this._componentRenderer; } - - public constructor(private _detector: ChangeDetectorRef) + + public constructor(private _detector: ChangeDetectorRef) { } - - public ngAfterViewInit(): void - { + + public ngAfterViewInit(): void + { } - } diff --git a/samples/charts/tree-map/layout/src/CountyHierarchicalData.ts b/samples/charts/tree-map/layout/src/CountyHierarchicalData.ts index 06eb97ccd..5193e116c 100644 --- a/samples/charts/tree-map/layout/src/CountyHierarchicalData.ts +++ b/samples/charts/tree-map/layout/src/CountyHierarchicalData.ts @@ -1570,7 +1570,7 @@ export class CountyHierarchicalData extends Array { population: 29278000 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/tree-map/overview/src/CountyHierarchicalData.ts b/samples/charts/tree-map/overview/src/CountyHierarchicalData.ts index 06eb97ccd..5193e116c 100644 --- a/samples/charts/tree-map/overview/src/CountyHierarchicalData.ts +++ b/samples/charts/tree-map/overview/src/CountyHierarchicalData.ts @@ -1570,7 +1570,7 @@ export class CountyHierarchicalData extends Array { population: 29278000 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } diff --git a/samples/charts/tree-map/styling/src/CountyHierarchicalData.ts b/samples/charts/tree-map/styling/src/CountyHierarchicalData.ts index 06eb97ccd..5193e116c 100644 --- a/samples/charts/tree-map/styling/src/CountyHierarchicalData.ts +++ b/samples/charts/tree-map/styling/src/CountyHierarchicalData.ts @@ -1570,7 +1570,7 @@ export class CountyHierarchicalData extends Array { population: 29278000 }), ]; - super(...(newItems.slice(0, items))); + super(...newItems.slice(0)); } } } From a4fd04c16669c6ad97ff55548108c119228c03f2 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Wed, 26 Jun 2024 11:02:03 -0400 Subject: [PATCH 091/154] mdd-fix-browser-rxjs mdd-fix-browser-rxjs --- browser/src/app/app-routing.module.ts | 7 ++- .../category-chart/selection-modes/ReadMe.md | 58 +++++++++++++++++++ .../selection-multiple-modes/ReadMe.md | 58 +++++++++++++++++++ .../radial-column-chart-selection/ReadMe.md | 58 +++++++++++++++++++ 4 files changed, 178 insertions(+), 3 deletions(-) create mode 100644 samples/charts/category-chart/selection-modes/ReadMe.md create mode 100644 samples/charts/category-chart/selection-multiple-modes/ReadMe.md create mode 100644 samples/charts/data-chart/radial-column-chart-selection/ReadMe.md diff --git a/browser/src/app/app-routing.module.ts b/browser/src/app/app-routing.module.ts index 8c276c989..8447e4cee 100644 --- a/browser/src/app/app-routing.module.ts +++ b/browser/src/app/app-routing.module.ts @@ -1,7 +1,7 @@ // tslint:disable:max-line-length import { NgModule } from "@angular/core"; import { NavigationStart, Router, RouterModule, Routes } from "@angular/router"; -import "rxjs/add/operator/filter"; +import { filter } from 'rxjs/operators'; import { HomeComponent } from "./home/home.component"; import { FallbackComponent } from "./fallback/fallback.component"; import { DocsLayoutComponent } from "./index/docs-layout.component"; @@ -61,8 +61,9 @@ export class AppRoutingModule { // } // } - router.events - .filter((event) => event instanceof NavigationStart) + router.events.pipe( + filter((event) => event instanceof NavigationStart) + ) .subscribe((event: NavigationStart) => { // console.log("app nav: " + event.url) this.setOverflow(event.url); diff --git a/samples/charts/category-chart/selection-modes/ReadMe.md b/samples/charts/category-chart/selection-modes/ReadMe.md new file mode 100644 index 000000000..6feba8c60 --- /dev/null +++ b/samples/charts/category-chart/selection-modes/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Selection Modes feature using [CategoryChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/category-chart/selection-modes +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/category-chart/selection-multiple-modes/ReadMe.md b/samples/charts/category-chart/selection-multiple-modes/ReadMe.md new file mode 100644 index 000000000..a34f32c06 --- /dev/null +++ b/samples/charts/category-chart/selection-multiple-modes/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Selection Multiple Modes feature using [CategoryChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/category-chart/selection-multiple-modes +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/radial-column-chart-selection/ReadMe.md b/samples/charts/data-chart/radial-column-chart-selection/ReadMe.md new file mode 100644 index 000000000..43081e46f --- /dev/null +++ b/samples/charts/data-chart/radial-column-chart-selection/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Radial Column Chart Selection feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/radial-column-chart-selection +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). From 9a5da37e5ce4d2ad31c631814038865463158fcd Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 14:22:16 -0400 Subject: [PATCH 092/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.7.2.2 (#215) Co-authored-by: tfsbuild --- .../custom-selection/src/app.component.ts | 28 ----- .../data-aggregations/src/app.component.ts | 2 +- .../charts/toolbar/custom-tool/package.json | 1 + .../src/CountryRenewableElectricity.ts | 106 ++++++++++++++++++ .../custom-tool/src/app.component.html | 33 +++++- .../custom-tool/src/app.component.scss | 18 +++ .../toolbar/custom-tool/src/app.component.ts | 18 ++- .../toolbar/custom-tool/src/app.module.ts | 6 +- 8 files changed, 179 insertions(+), 33 deletions(-) create mode 100644 samples/charts/toolbar/custom-tool/src/CountryRenewableElectricity.ts diff --git a/samples/charts/category-chart/custom-selection/src/app.component.ts b/samples/charts/category-chart/custom-selection/src/app.component.ts index 2524c1ea1..63d10096c 100644 --- a/samples/charts/category-chart/custom-selection/src/app.component.ts +++ b/samples/charts/category-chart/custom-selection/src/app.component.ts @@ -33,33 +33,5 @@ export class AppComponent implements AfterViewInit { } - public categoryChartCustomSelectionPointerDown(e: any): void { - - let oldItem = e.args.item as SelectableDataItem; - - if (oldItem === null) return; - - let newItem: SelectableDataItem = new SelectableDataItem({ - category: oldItem.category, - dataValue: oldItem.dataValue, - selectedValue: oldItem.selectedValue - }); - - var selectedIndex = -1; - for (var i = 0; i < this.selectableData.length; i++) { - if (oldItem.category === this.selectableData[i].category) { - selectedIndex = i; - break; - } - } - - if (oldItem.selectedValue === oldItem.dataValue) - newItem.selectedValue = null; - else - newItem.selectedValue = newItem.dataValue; - - this.chart.notifySetItem(this.selectableData, selectedIndex, oldItem, newItem); - } - } diff --git a/samples/charts/category-chart/data-aggregations/src/app.component.ts b/samples/charts/category-chart/data-aggregations/src/app.component.ts index 6034ed51f..c4a9cb8f3 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.component.ts +++ b/samples/charts/category-chart/data-aggregations/src/app.component.ts @@ -1,7 +1,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescriptionModule, CategoryChartDescriptionModule } from 'igniteui-angular-core'; import { SalesDataItem, SalesData } from './SalesData'; -import { IgxPropertyEditorPanelComponent, PropertyEditorValueType, IgxPropertyEditorPropertyDescriptionChangedEventArgs, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxPropertyEditorPanelComponent, PropertyEditorValueType, IgxPropertyEditorPropertyDescriptionComponent, IgxPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-angular-layouts'; import { IgxCategoryChartComponent, MarkerType, MarkerType_$type } from 'igniteui-angular-charts'; import { EnumUtil } from 'igniteui-angular-core'; diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index d35d0d216..40af1b91b 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -18,6 +18,7 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", diff --git a/samples/charts/toolbar/custom-tool/src/CountryRenewableElectricity.ts b/samples/charts/toolbar/custom-tool/src/CountryRenewableElectricity.ts new file mode 100644 index 000000000..b32970c46 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/CountryRenewableElectricity.ts @@ -0,0 +1,106 @@ +export class CountryRenewableElectricityItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public europe: number; + public china: number; + public america: number; + +} +export class CountryRenewableElectricity extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/toolbar/custom-tool/src/app.component.html b/samples/charts/toolbar/custom-tool/src/app.component.html index 53be05748..2de5ec0b4 100644 --- a/samples/charts/toolbar/custom-tool/src/app.component.html +++ b/samples/charts/toolbar/custom-tool/src/app.component.html @@ -1,8 +1,13 @@
-
+
+ Renewable Electricity Generated +
+
+
+
+
+ + +
+
+
+ +
diff --git a/samples/charts/toolbar/custom-tool/src/app.component.scss b/samples/charts/toolbar/custom-tool/src/app.component.scss index cbff781da..7d86d9783 100644 --- a/samples/charts/toolbar/custom-tool/src/app.component.scss +++ b/samples/charts/toolbar/custom-tool/src/app.component.scss @@ -1,3 +1,21 @@ /* styles are loaded the Shared CSS file located at: https://static.infragistics.com/xplatform/css/samples/ */ +.aboveContentSplit { + display: flex; + flex-direction: row; +} +.aboveContentLeftContainer { + margin-left: 1.25rem; + display: flex; + flex-grow: 1; + justify-content: flex-start; + align-items: flex-end; +} +.aboveContentRightContainer { + margin-right: 1.25rem; + display: flex; + flex-grow: 1; + justify-content: flex-end; + align-items: flex-end; +} diff --git a/samples/charts/toolbar/custom-tool/src/app.component.ts b/samples/charts/toolbar/custom-tool/src/app.component.ts index aa299d584..a3500632d 100644 --- a/samples/charts/toolbar/custom-tool/src/app.component.ts +++ b/samples/charts/toolbar/custom-tool/src/app.component.ts @@ -1,5 +1,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; import { IgxToolbarComponent, IgxToolActionLabelComponent, IgxToolActionComponent, IgxToolCommandEventArgs } from 'igniteui-angular-layouts'; +import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ selector: "app-root", @@ -11,8 +13,20 @@ import { IgxToolbarComponent, IgxToolActionLabelComponent, IgxToolActionComponen export class AppComponent implements AfterViewInit { + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent @ViewChild("toolbar", { static: true } ) private toolbar: IgxToolbarComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent + private _countryRenewableElectricity: CountryRenewableElectricity = null; + public get countryRenewableElectricity(): CountryRenewableElectricity { + if (this._countryRenewableElectricity == null) + { + this._countryRenewableElectricity = new CountryRenewableElectricity(); + } + return this._countryRenewableElectricity; + } public constructor(private _detector: ChangeDetectorRef) { @@ -24,9 +38,9 @@ export class AppComponent implements AfterViewInit } public toolbarCustomIconOnViewInit(): void { - + var toolbar = this.Toolbar; const icon = ''; - this.toolbar.registerIconFromText("CustomCollection", "CustomIcon", icon); + toolbar.registerIconFromText("CustomCollection", "CustomIcon", icon); } diff --git a/samples/charts/toolbar/custom-tool/src/app.module.ts b/samples/charts/toolbar/custom-tool/src/app.module.ts index cb4c87d23..b2d32f20c 100644 --- a/samples/charts/toolbar/custom-tool/src/app.module.ts +++ b/samples/charts/toolbar/custom-tool/src/app.module.ts @@ -5,6 +5,7 @@ import { BrowserModule } from "@angular/platform-browser"; import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; import { AppComponent } from "./app.component"; +import { IgxLegendModule, IgxCategoryChartModule, IgxCategoryChartToolbarModule } from 'igniteui-angular-charts'; import { IgxToolbarModule } from 'igniteui-angular-layouts'; @NgModule({ @@ -17,7 +18,10 @@ import { IgxToolbarModule } from 'igniteui-angular-layouts'; BrowserAnimationsModule, CommonModule, FormsModule, - IgxToolbarModule + IgxLegendModule, + IgxToolbarModule, + IgxCategoryChartModule, + IgxCategoryChartToolbarModule ], providers: [], schemas: [] From 9aafad2a7d792b1f38205518e2692fc743b0ab22 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 3 Jul 2024 09:52:39 -0400 Subject: [PATCH 093/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.7.2.3 (#216) Co-authored-by: tfsbuild --- samples/charts/toolbar/custom-tool/src/app.component.html | 2 +- samples/charts/toolbar/custom-tool/src/app.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/charts/toolbar/custom-tool/src/app.component.html b/samples/charts/toolbar/custom-tool/src/app.component.html index 2de5ec0b4..ef2cfac61 100644 --- a/samples/charts/toolbar/custom-tool/src/app.component.html +++ b/samples/charts/toolbar/custom-tool/src/app.component.html @@ -5,7 +5,7 @@
diff --git a/samples/charts/toolbar/custom-tool/src/app.component.ts b/samples/charts/toolbar/custom-tool/src/app.component.ts index a3500632d..7f366536d 100644 --- a/samples/charts/toolbar/custom-tool/src/app.component.ts +++ b/samples/charts/toolbar/custom-tool/src/app.component.ts @@ -38,7 +38,7 @@ export class AppComponent implements AfterViewInit } public toolbarCustomIconOnViewInit(): void { - var toolbar = this.Toolbar; + var toolbar = this.toolbar; const icon = ''; toolbar.registerIconFromText("CustomCollection", "CustomIcon", icon); From f9e90ca0db1bdece3cc93093b11b0298e0e082de Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 3 Jul 2024 13:08:14 -0400 Subject: [PATCH 094/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.7.3.1 (#217) Co-authored-by: tfsbuild --- .../area-chart-multiple-sources/src/app.component.html | 2 +- .../area-chart-styling/src/app.component.html | 2 +- .../category-chart/axis-gridlines/src/app.component.html | 2 +- .../category-chart/axis-labels/src/app.component.html | 2 +- .../category-chart/axis-locations/src/app.component.html | 2 +- .../category-chart/axis-overlap/src/app.component.html | 2 +- .../category-chart/axis-range/src/app.component.html | 2 +- .../category-chart/axis-tickmarks/src/app.component.html | 2 +- .../category-chart/axis-titles/src/app.component.html | 2 +- .../chart-highlight-filter/src/app.component.html | 2 +- .../column-chart-multiple-sources/src/app.component.html | 2 +- .../column-chart-styling/src/app.component.html | 2 +- .../column-chart-with-tooltips/src/app.component.html | 2 +- .../custom-selection/src/app.component.html | 2 +- .../category-chart/data-filter/src/app.component.html | 2 +- .../src/app.component.html | 2 +- .../category-chart/data-legend/src/app.component.html | 2 +- .../format-specifiers/src/app.component.html | 2 +- .../legend-highlighting/src/app.component.html | 2 +- .../line-chart-multiple-sources/src/app.component.html | 2 +- .../line-chart-styling/src/app.component.html | 2 +- .../charts/category-chart/overview/src/app.component.html | 2 +- .../point-chart-multiple-sources/src/app.component.html | 2 +- .../point-chart-styling/src/app.component.html | 2 +- .../selection-multiple-modes/src/app.component.html | 2 +- .../spline-area-multiple-sources/src/app.component.html | 2 +- .../spline-area-styling/src/app.component.html | 2 +- .../spline-multiple-sources/src/app.component.html | 2 +- .../category-chart/spline-styling/src/app.component.html | 2 +- .../step-area-multiple-sources/src/app.component.html | 2 +- .../step-area-styling/src/app.component.html | 2 +- .../step-line-multiple-sources/src/app.component.html | 2 +- .../step-line-styling/src/app.component.html | 2 +- .../category-chart/value-lines/src/app.component.html | 2 +- .../data-chart/annotations-custom/src/app.component.html | 2 +- .../axis-annotations-corner-radius/src/app.component.html | 2 +- .../bar-chart-multiple-sources/src/app.component.html | 2 +- .../bar-chart-overlapping/src/app.component.html | 2 +- .../callout-layer-styling/src/app.component.html | 2 +- .../src/app.component.html | 2 +- .../data-legend-grouping/src/app.component.html | 2 +- .../data-chart/data-legend-styling/src/app.component.html | 4 ++-- .../charts/data-chart/data-legend/src/app.component.html | 6 +++--- .../src/app.component.html | 2 +- .../data-tooltip-grouping/src/app.component.html | 2 +- .../data-tooltip-styling/src/app.component.html | 2 +- .../charts/data-chart/data-tooltip/src/app.component.html | 6 +++--- .../financial-price-series/src/app.component.html | 2 +- .../polar-area-chart-styling/src/app.component.html | 2 +- .../data-chart/polar-area-chart/src/app.component.html | 4 ++-- .../data-chart/polar-line-chart/src/app.component.html | 4 ++-- .../data-chart/polar-scatter-chart/src/app.component.html | 2 +- .../polar-spline-area-chart/src/app.component.html | 2 +- .../data-chart/polar-spline-chart/src/app.component.html | 2 +- .../radial-area-chart-styling/src/app.component.html | 2 +- .../data-chart/radial-area-chart/src/app.component.html | 4 ++-- .../radial-column-chart-selection/src/app.component.html | 2 +- .../data-chart/radial-column-chart/src/app.component.html | 4 ++-- .../data-chart/radial-line-chart/src/app.component.html | 4 ++-- .../data-chart/radial-pie-chart/src/app.component.html | 4 ++-- .../data-chart/range-area-chart/src/app.component.html | 8 ++++---- .../data-chart/range-column-chart/src/app.component.html | 4 ++-- .../src/app.component.html | 2 +- .../src/app.component.html | 6 +++--- .../src/app.component.html | 4 ++-- .../scatter-bubble-chart-styling/src/app.component.html | 8 ++++---- .../data-chart/scatter-line-chart/src/app.component.html | 4 ++-- .../data-chart/scatter-point-chart/src/app.component.html | 6 +++--- .../scatter-spline-chart/src/app.component.html | 8 ++++---- .../stacked-100-area-chart/src/app.component.html | 6 +++--- .../stacked-100-bar-chart/src/app.component.html | 6 +++--- .../stacked-100-column-chart/src/app.component.html | 6 +++--- .../stacked-100-line-chart/src/app.component.html | 6 +++--- .../stacked-100-spline-area-chart/src/app.component.html | 6 +++--- .../stacked-100-spline-chart/src/app.component.html | 6 +++--- .../data-chart/stacked-area-chart/src/app.component.html | 6 +++--- .../data-chart/stacked-bar-chart/src/app.component.html | 6 +++--- .../stacked-column-chart/src/app.component.html | 6 +++--- .../data-chart/stacked-line-chart/src/app.component.html | 6 +++--- .../stacked-spline-area-chart/src/app.component.html | 6 +++--- .../stacked-spline-chart/src/app.component.html | 6 +++--- .../charts/doughnut-chart/legend/src/app.component.html | 2 +- .../src/app.component.html | 2 +- .../data-legend-styling-props/src/app.component.html | 2 +- .../financial-chart/data-legend/src/app.component.html | 2 +- .../format-specifiers/src/app.component.html | 2 +- samples/charts/pie-chart/legend/src/app.component.html | 2 +- samples/charts/pie-chart/others/src/app.component.html | 2 +- samples/charts/pie-chart/overview/src/app.component.html | 2 +- samples/charts/pie-chart/styling/src/app.component.html | 2 +- .../src/app.component.html | 4 ++-- .../actions-built-in-data-chart/src/app.component.html | 4 ++-- samples/charts/toolbar/custom-tool/src/app.component.html | 2 +- .../layout-actions-for-data-chart/src/app.component.html | 8 ++++---- .../layout-in-vertical-orientation/src/app.component.html | 4 ++-- samples/charts/toolbar/theming/src/app.component.html | 4 ++-- 96 files changed, 154 insertions(+), 154 deletions(-) diff --git a/samples/charts/category-chart/area-chart-multiple-sources/src/app.component.html b/samples/charts/category-chart/area-chart-multiple-sources/src/app.component.html index ec95210b7..f0694b05b 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/src/app.component.html +++ b/samples/charts/category-chart/area-chart-multiple-sources/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/area-chart-styling/src/app.component.html b/samples/charts/category-chart/area-chart-styling/src/app.component.html index b288f512f..72a39165d 100644 --- a/samples/charts/category-chart/area-chart-styling/src/app.component.html +++ b/samples/charts/category-chart/area-chart-styling/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/axis-gridlines/src/app.component.html b/samples/charts/category-chart/axis-gridlines/src/app.component.html index 80ec4e8fc..315431877 100644 --- a/samples/charts/category-chart/axis-gridlines/src/app.component.html +++ b/samples/charts/category-chart/axis-gridlines/src/app.component.html @@ -48,7 +48,7 @@
diff --git a/samples/charts/category-chart/axis-labels/src/app.component.html b/samples/charts/category-chart/axis-labels/src/app.component.html index c7a48abd3..ef6906779 100644 --- a/samples/charts/category-chart/axis-labels/src/app.component.html +++ b/samples/charts/category-chart/axis-labels/src/app.component.html @@ -48,7 +48,7 @@
diff --git a/samples/charts/category-chart/axis-locations/src/app.component.html b/samples/charts/category-chart/axis-locations/src/app.component.html index a7afeedff..4100a30df 100644 --- a/samples/charts/category-chart/axis-locations/src/app.component.html +++ b/samples/charts/category-chart/axis-locations/src/app.component.html @@ -22,7 +22,7 @@
diff --git a/samples/charts/category-chart/axis-overlap/src/app.component.html b/samples/charts/category-chart/axis-overlap/src/app.component.html index 308abdb9b..6cf8e4fe3 100644 --- a/samples/charts/category-chart/axis-overlap/src/app.component.html +++ b/samples/charts/category-chart/axis-overlap/src/app.component.html @@ -27,7 +27,7 @@
diff --git a/samples/charts/category-chart/axis-range/src/app.component.html b/samples/charts/category-chart/axis-range/src/app.component.html index 50268a291..01471732a 100644 --- a/samples/charts/category-chart/axis-range/src/app.component.html +++ b/samples/charts/category-chart/axis-range/src/app.component.html @@ -39,7 +39,7 @@
diff --git a/samples/charts/category-chart/axis-tickmarks/src/app.component.html b/samples/charts/category-chart/axis-tickmarks/src/app.component.html index 31fab1fed..2fd1c3b52 100644 --- a/samples/charts/category-chart/axis-tickmarks/src/app.component.html +++ b/samples/charts/category-chart/axis-tickmarks/src/app.component.html @@ -26,7 +26,7 @@
diff --git a/samples/charts/category-chart/axis-titles/src/app.component.html b/samples/charts/category-chart/axis-titles/src/app.component.html index 70d0fa22d..c6795a87b 100644 --- a/samples/charts/category-chart/axis-titles/src/app.component.html +++ b/samples/charts/category-chart/axis-titles/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/chart-highlight-filter/src/app.component.html b/samples/charts/category-chart/chart-highlight-filter/src/app.component.html index 8ba9bc475..20053d1c9 100644 --- a/samples/charts/category-chart/chart-highlight-filter/src/app.component.html +++ b/samples/charts/category-chart/chart-highlight-filter/src/app.component.html @@ -10,7 +10,7 @@ isWrappingEnabled="true"> diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/app.component.html b/samples/charts/category-chart/column-chart-multiple-sources/src/app.component.html index 4b6c5ce40..52d34b3f7 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/app.component.html +++ b/samples/charts/category-chart/column-chart-multiple-sources/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/column-chart-styling/src/app.component.html b/samples/charts/category-chart/column-chart-styling/src/app.component.html index bbfb7cf7c..7df8aafe2 100644 --- a/samples/charts/category-chart/column-chart-styling/src/app.component.html +++ b/samples/charts/category-chart/column-chart-styling/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/column-chart-with-tooltips/src/app.component.html b/samples/charts/category-chart/column-chart-with-tooltips/src/app.component.html index 12c804bb1..9f2845478 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/src/app.component.html +++ b/samples/charts/category-chart/column-chart-with-tooltips/src/app.component.html @@ -22,7 +22,7 @@
diff --git a/samples/charts/category-chart/custom-selection/src/app.component.html b/samples/charts/category-chart/custom-selection/src/app.component.html index 4639fc79b..c2497b129 100644 --- a/samples/charts/category-chart/custom-selection/src/app.component.html +++ b/samples/charts/category-chart/custom-selection/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/app.component.html b/samples/charts/category-chart/data-legend-formatting-decimals/src/app.component.html index 24a7489af..53651e8f4 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/app.component.html +++ b/samples/charts/category-chart/data-legend-formatting-decimals/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/format-specifiers/src/app.component.html b/samples/charts/category-chart/format-specifiers/src/app.component.html index 43b0fd08f..69ce8abe6 100644 --- a/samples/charts/category-chart/format-specifiers/src/app.component.html +++ b/samples/charts/category-chart/format-specifiers/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/app.component.html b/samples/charts/category-chart/line-chart-multiple-sources/src/app.component.html index 156f9fd7b..e2ca6655d 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/app.component.html +++ b/samples/charts/category-chart/line-chart-multiple-sources/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/line-chart-styling/src/app.component.html b/samples/charts/category-chart/line-chart-styling/src/app.component.html index 6d39f86ee..acddb5184 100644 --- a/samples/charts/category-chart/line-chart-styling/src/app.component.html +++ b/samples/charts/category-chart/line-chart-styling/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/overview/src/app.component.html b/samples/charts/category-chart/overview/src/app.component.html index e60c290af..49329a19c 100644 --- a/samples/charts/category-chart/overview/src/app.component.html +++ b/samples/charts/category-chart/overview/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/point-chart-multiple-sources/src/app.component.html b/samples/charts/category-chart/point-chart-multiple-sources/src/app.component.html index 47f81f5b7..7dfb2e496 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/src/app.component.html +++ b/samples/charts/category-chart/point-chart-multiple-sources/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/point-chart-styling/src/app.component.html b/samples/charts/category-chart/point-chart-styling/src/app.component.html index 8381cd34d..94cab8e52 100644 --- a/samples/charts/category-chart/point-chart-styling/src/app.component.html +++ b/samples/charts/category-chart/point-chart-styling/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/selection-multiple-modes/src/app.component.html b/samples/charts/category-chart/selection-multiple-modes/src/app.component.html index 7ac3f38ea..7da2fea73 100644 --- a/samples/charts/category-chart/selection-multiple-modes/src/app.component.html +++ b/samples/charts/category-chart/selection-multiple-modes/src/app.component.html @@ -29,7 +29,7 @@
diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/app.component.html b/samples/charts/category-chart/spline-area-multiple-sources/src/app.component.html index f431fb599..e49261ce6 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/app.component.html +++ b/samples/charts/category-chart/spline-area-multiple-sources/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/spline-area-styling/src/app.component.html b/samples/charts/category-chart/spline-area-styling/src/app.component.html index bdabdf454..4b22a28bd 100644 --- a/samples/charts/category-chart/spline-area-styling/src/app.component.html +++ b/samples/charts/category-chart/spline-area-styling/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/spline-multiple-sources/src/app.component.html b/samples/charts/category-chart/spline-multiple-sources/src/app.component.html index 54d7a896b..af8c8d355 100644 --- a/samples/charts/category-chart/spline-multiple-sources/src/app.component.html +++ b/samples/charts/category-chart/spline-multiple-sources/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/spline-styling/src/app.component.html b/samples/charts/category-chart/spline-styling/src/app.component.html index f9d3a0129..79b749493 100644 --- a/samples/charts/category-chart/spline-styling/src/app.component.html +++ b/samples/charts/category-chart/spline-styling/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/step-area-multiple-sources/src/app.component.html b/samples/charts/category-chart/step-area-multiple-sources/src/app.component.html index 07d25c305..ec5f6348b 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/src/app.component.html +++ b/samples/charts/category-chart/step-area-multiple-sources/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/step-area-styling/src/app.component.html b/samples/charts/category-chart/step-area-styling/src/app.component.html index a77cbd89e..74cac2ae4 100644 --- a/samples/charts/category-chart/step-area-styling/src/app.component.html +++ b/samples/charts/category-chart/step-area-styling/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/step-line-multiple-sources/src/app.component.html b/samples/charts/category-chart/step-line-multiple-sources/src/app.component.html index 9f0fd089a..d038730d9 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/src/app.component.html +++ b/samples/charts/category-chart/step-line-multiple-sources/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/step-line-styling/src/app.component.html b/samples/charts/category-chart/step-line-styling/src/app.component.html index 742425d37..664b89d9a 100644 --- a/samples/charts/category-chart/step-line-styling/src/app.component.html +++ b/samples/charts/category-chart/step-line-styling/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/category-chart/value-lines/src/app.component.html b/samples/charts/category-chart/value-lines/src/app.component.html index 6e9d10450..03afaa78d 100644 --- a/samples/charts/category-chart/value-lines/src/app.component.html +++ b/samples/charts/category-chart/value-lines/src/app.component.html @@ -27,7 +27,7 @@
diff --git a/samples/charts/data-chart/annotations-custom/src/app.component.html b/samples/charts/data-chart/annotations-custom/src/app.component.html index ff0127ed9..1abea53e1 100644 --- a/samples/charts/data-chart/annotations-custom/src/app.component.html +++ b/samples/charts/data-chart/annotations-custom/src/app.component.html @@ -17,7 +17,7 @@ #yAxis>
diff --git a/samples/charts/data-chart/bar-chart-overlapping/src/app.component.html b/samples/charts/data-chart/bar-chart-overlapping/src/app.component.html index 48f694037..90fea6fb0 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/src/app.component.html +++ b/samples/charts/data-chart/bar-chart-overlapping/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/data-chart/callout-layer-styling/src/app.component.html b/samples/charts/data-chart/callout-layer-styling/src/app.component.html index 5111f2a4f..23dc0c0f4 100644 --- a/samples/charts/data-chart/callout-layer-styling/src/app.component.html +++ b/samples/charts/data-chart/callout-layer-styling/src/app.component.html @@ -21,7 +21,7 @@ labelLocation="OutsideRight">
diff --git a/samples/charts/data-chart/data-legend-grouping/src/app.component.html b/samples/charts/data-chart/data-legend-grouping/src/app.component.html index cea9e8230..b8c11bae7 100644 --- a/samples/charts/data-chart/data-legend-grouping/src/app.component.html +++ b/samples/charts/data-chart/data-legend-grouping/src/app.component.html @@ -1,7 +1,7 @@
diff --git a/samples/charts/data-chart/data-legend-styling/src/app.component.html b/samples/charts/data-chart/data-legend-styling/src/app.component.html index dc9c7a2e2..923b2c932 100644 --- a/samples/charts/data-chart/data-legend-styling/src/app.component.html +++ b/samples/charts/data-chart/data-legend-styling/src/app.component.html @@ -1,7 +1,7 @@
diff --git a/samples/charts/data-chart/data-legend/src/app.component.html b/samples/charts/data-chart/data-legend/src/app.component.html index 555001940..ddc9c80dc 100644 --- a/samples/charts/data-chart/data-legend/src/app.component.html +++ b/samples/charts/data-chart/data-legend/src/app.component.html @@ -4,7 +4,7 @@
@@ -30,7 +30,7 @@ maximumValue="60"> diff --git a/samples/charts/data-chart/data-tooltip-grouping/src/app.component.html b/samples/charts/data-chart/data-tooltip-grouping/src/app.component.html index 7522afd73..34d8ab158 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/src/app.component.html +++ b/samples/charts/data-chart/data-tooltip-grouping/src/app.component.html @@ -46,7 +46,7 @@ dataLegendGroup="Medals by Country"> diff --git a/samples/charts/data-chart/data-tooltip-styling/src/app.component.html b/samples/charts/data-chart/data-tooltip-styling/src/app.component.html index 7df3aecb4..56b6ce09c 100644 --- a/samples/charts/data-chart/data-tooltip-styling/src/app.component.html +++ b/samples/charts/data-chart/data-tooltip-styling/src/app.component.html @@ -30,7 +30,7 @@ highlightedTitleSuffix="America"> diff --git a/samples/charts/data-chart/financial-price-series/src/app.component.html b/samples/charts/data-chart/financial-price-series/src/app.component.html index 9484d2724..e31cfe956 100644 --- a/samples/charts/data-chart/financial-price-series/src/app.component.html +++ b/samples/charts/data-chart/financial-price-series/src/app.component.html @@ -22,7 +22,7 @@ labelLocation="OutsideRight">
diff --git a/samples/charts/data-chart/polar-area-chart/src/app.component.html b/samples/charts/data-chart/polar-area-chart/src/app.component.html index 9e1839d64..e59246f49 100644 --- a/samples/charts/data-chart/polar-area-chart/src/app.component.html +++ b/samples/charts/data-chart/polar-area-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -62,7 +62,7 @@ markerType="Circle"> diff --git a/samples/charts/data-chart/polar-line-chart/src/app.component.html b/samples/charts/data-chart/polar-line-chart/src/app.component.html index bb643e2c7..3d14c27f0 100644 --- a/samples/charts/data-chart/polar-line-chart/src/app.component.html +++ b/samples/charts/data-chart/polar-line-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -60,7 +60,7 @@ markerType="Circle"> diff --git a/samples/charts/data-chart/polar-scatter-chart/src/app.component.html b/samples/charts/data-chart/polar-scatter-chart/src/app.component.html index 3a7c4cf84..6ea7100a9 100644 --- a/samples/charts/data-chart/polar-scatter-chart/src/app.component.html +++ b/samples/charts/data-chart/polar-scatter-chart/src/app.component.html @@ -50,7 +50,7 @@ markerType="Circle"> diff --git a/samples/charts/data-chart/polar-spline-area-chart/src/app.component.html b/samples/charts/data-chart/polar-spline-area-chart/src/app.component.html index de82a5929..ea1de1b9c 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/src/app.component.html +++ b/samples/charts/data-chart/polar-spline-area-chart/src/app.component.html @@ -54,7 +54,7 @@ markerType="Circle"> diff --git a/samples/charts/data-chart/polar-spline-chart/src/app.component.html b/samples/charts/data-chart/polar-spline-chart/src/app.component.html index f8c396a77..55779c5ae 100644 --- a/samples/charts/data-chart/polar-spline-chart/src/app.component.html +++ b/samples/charts/data-chart/polar-spline-chart/src/app.component.html @@ -52,7 +52,7 @@ markerType="Circle"> diff --git a/samples/charts/data-chart/radial-area-chart-styling/src/app.component.html b/samples/charts/data-chart/radial-area-chart-styling/src/app.component.html index b4f1099b9..834c6283f 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/src/app.component.html +++ b/samples/charts/data-chart/radial-area-chart-styling/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/data-chart/radial-area-chart/src/app.component.html b/samples/charts/data-chart/radial-area-chart/src/app.component.html index 008d11264..d90822101 100644 --- a/samples/charts/data-chart/radial-area-chart/src/app.component.html +++ b/samples/charts/data-chart/radial-area-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -57,7 +57,7 @@ markerType="Circle"> diff --git a/samples/charts/data-chart/radial-column-chart-selection/src/app.component.html b/samples/charts/data-chart/radial-column-chart-selection/src/app.component.html index 6220b57fe..ed99e275b 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/src/app.component.html +++ b/samples/charts/data-chart/radial-column-chart-selection/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/data-chart/radial-column-chart/src/app.component.html b/samples/charts/data-chart/radial-column-chart/src/app.component.html index 3e0d70c4d..5f152ddb2 100644 --- a/samples/charts/data-chart/radial-column-chart/src/app.component.html +++ b/samples/charts/data-chart/radial-column-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -55,7 +55,7 @@ title="Messi"> diff --git a/samples/charts/data-chart/radial-line-chart/src/app.component.html b/samples/charts/data-chart/radial-line-chart/src/app.component.html index 6148393eb..f2d7d4bf0 100644 --- a/samples/charts/data-chart/radial-line-chart/src/app.component.html +++ b/samples/charts/data-chart/radial-line-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -57,7 +57,7 @@ markerType="Circle"> diff --git a/samples/charts/data-chart/radial-pie-chart/src/app.component.html b/samples/charts/data-chart/radial-pie-chart/src/app.component.html index 03d5cb588..a980bb74b 100644 --- a/samples/charts/data-chart/radial-pie-chart/src/app.component.html +++ b/samples/charts/data-chart/radial-pie-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -55,7 +55,7 @@ title="Messi"> diff --git a/samples/charts/data-chart/range-area-chart/src/app.component.html b/samples/charts/data-chart/range-area-chart/src/app.component.html index acf4284d5..859bfd596 100644 --- a/samples/charts/data-chart/range-area-chart/src/app.component.html +++ b/samples/charts/data-chart/range-area-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -31,7 +31,7 @@ titleLeftMargin="10"> diff --git a/samples/charts/data-chart/range-column-chart/src/app.component.html b/samples/charts/data-chart/range-column-chart/src/app.component.html index b85b0c225..15bd4927d 100644 --- a/samples/charts/data-chart/range-column-chart/src/app.component.html +++ b/samples/charts/data-chart/range-column-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -53,7 +53,7 @@ [dataSource]="temperatureRangeData"> diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html index cb8de07c5..2f44a0e95 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html @@ -24,7 +24,7 @@ title="Public Debt per GDP">
@@ -29,7 +29,7 @@ abbreviateLargeNumbers="true"> diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html index 7ec0ba1aa..6ac2211e3 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html @@ -4,7 +4,7 @@
@@ -29,7 +29,7 @@ abbreviateLargeNumbers="true"> diff --git a/samples/charts/data-chart/scatter-line-chart/src/app.component.html b/samples/charts/data-chart/scatter-line-chart/src/app.component.html index 7ef0d135d..f62a346b8 100644 --- a/samples/charts/data-chart/scatter-line-chart/src/app.component.html +++ b/samples/charts/data-chart/scatter-line-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -56,7 +56,7 @@ showDefaultTooltip="true"> diff --git a/samples/charts/data-chart/scatter-point-chart/src/app.component.html b/samples/charts/data-chart/scatter-point-chart/src/app.component.html index e21af6017..3ecca0294 100644 --- a/samples/charts/data-chart/scatter-point-chart/src/app.component.html +++ b/samples/charts/data-chart/scatter-point-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -30,7 +30,7 @@ interval="10">
@@ -32,7 +32,7 @@ interval="1000"> diff --git a/samples/charts/data-chart/stacked-100-area-chart/src/app.component.html b/samples/charts/data-chart/stacked-100-area-chart/src/app.component.html index 470fcf9ed..7dd2d0c11 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-100-area-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -31,7 +31,7 @@ labelFormat="{0}%"> diff --git a/samples/charts/data-chart/stacked-100-bar-chart/src/app.component.html b/samples/charts/data-chart/stacked-100-bar-chart/src/app.component.html index 6b943b6eb..420da700b 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-100-bar-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -30,7 +30,7 @@ title="TWh"> diff --git a/samples/charts/data-chart/stacked-100-column-chart/src/app.component.html b/samples/charts/data-chart/stacked-100-column-chart/src/app.component.html index be0312c48..31e9cd584 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-100-column-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -29,7 +29,7 @@ minimumValue="0"> diff --git a/samples/charts/data-chart/stacked-100-line-chart/src/app.component.html b/samples/charts/data-chart/stacked-100-line-chart/src/app.component.html index b9a8733ab..da688b1bb 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-100-line-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -30,7 +30,7 @@ labelFormat="{0}%"> diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.component.html b/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.component.html index ec34dba3a..0591352de 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -30,7 +30,7 @@ labelFormat="{0}%"> diff --git a/samples/charts/data-chart/stacked-100-spline-chart/src/app.component.html b/samples/charts/data-chart/stacked-100-spline-chart/src/app.component.html index ca069041c..aadbdc0e8 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-100-spline-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -29,7 +29,7 @@ labelFormat="{0}%"> diff --git a/samples/charts/data-chart/stacked-area-chart/src/app.component.html b/samples/charts/data-chart/stacked-area-chart/src/app.component.html index 3f3053fbf..bc6847608 100644 --- a/samples/charts/data-chart/stacked-area-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-area-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -34,7 +34,7 @@ labelFormat="{0} m"> diff --git a/samples/charts/data-chart/stacked-bar-chart/src/app.component.html b/samples/charts/data-chart/stacked-bar-chart/src/app.component.html index 68311341b..41fc0d1be 100644 --- a/samples/charts/data-chart/stacked-bar-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-bar-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -31,7 +31,7 @@ title="TWh"> diff --git a/samples/charts/data-chart/stacked-column-chart/src/app.component.html b/samples/charts/data-chart/stacked-column-chart/src/app.component.html index 480da2e17..1d4a9358b 100644 --- a/samples/charts/data-chart/stacked-column-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-column-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -33,7 +33,7 @@ labelFormat="{0} m"> diff --git a/samples/charts/data-chart/stacked-line-chart/src/app.component.html b/samples/charts/data-chart/stacked-line-chart/src/app.component.html index 6542937c3..0b703fb48 100644 --- a/samples/charts/data-chart/stacked-line-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-line-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -34,7 +34,7 @@ labelFormat="{0} m"> diff --git a/samples/charts/data-chart/stacked-spline-area-chart/src/app.component.html b/samples/charts/data-chart/stacked-spline-area-chart/src/app.component.html index 7ff162074..25d41205b 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-spline-area-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -34,7 +34,7 @@ labelFormat="{0} m"> diff --git a/samples/charts/data-chart/stacked-spline-chart/src/app.component.html b/samples/charts/data-chart/stacked-spline-chart/src/app.component.html index 9072efef0..b90e954cd 100644 --- a/samples/charts/data-chart/stacked-spline-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-spline-chart/src/app.component.html @@ -4,7 +4,7 @@
@@ -34,7 +34,7 @@ labelFormat="{0} m"> diff --git a/samples/charts/doughnut-chart/legend/src/app.component.html b/samples/charts/doughnut-chart/legend/src/app.component.html index 3c78e15c6..8e9f9be36 100644 --- a/samples/charts/doughnut-chart/legend/src/app.component.html +++ b/samples/charts/doughnut-chart/legend/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/src/app.component.html b/samples/charts/financial-chart/data-legend-formatting-currency/src/app.component.html index 3a26739ff..15cadf420 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/src/app.component.html +++ b/samples/charts/financial-chart/data-legend-formatting-currency/src/app.component.html @@ -1,7 +1,7 @@
diff --git a/samples/charts/financial-chart/format-specifiers/src/app.component.html b/samples/charts/financial-chart/format-specifiers/src/app.component.html index ca0cc5312..cf4bc77ec 100644 --- a/samples/charts/financial-chart/format-specifiers/src/app.component.html +++ b/samples/charts/financial-chart/format-specifiers/src/app.component.html @@ -1,7 +1,7 @@
diff --git a/samples/charts/pie-chart/others/src/app.component.html b/samples/charts/pie-chart/others/src/app.component.html index a6cb902e6..e6de1a362 100644 --- a/samples/charts/pie-chart/others/src/app.component.html +++ b/samples/charts/pie-chart/others/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/pie-chart/overview/src/app.component.html b/samples/charts/pie-chart/overview/src/app.component.html index 8a819ae74..800909193 100644 --- a/samples/charts/pie-chart/overview/src/app.component.html +++ b/samples/charts/pie-chart/overview/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/pie-chart/styling/src/app.component.html b/samples/charts/pie-chart/styling/src/app.component.html index 409e1a558..9930d2140 100644 --- a/samples/charts/pie-chart/styling/src/app.component.html +++ b/samples/charts/pie-chart/styling/src/app.component.html @@ -4,7 +4,7 @@
diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/app.component.html b/samples/charts/toolbar/actions-built-in-category-chart/src/app.component.html index 5fb53ffab..a9213c581 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/app.component.html +++ b/samples/charts/toolbar/actions-built-in-category-chart/src/app.component.html @@ -5,7 +5,7 @@
@@ -13,7 +13,7 @@
diff --git a/samples/charts/toolbar/actions-built-in-data-chart/src/app.component.html b/samples/charts/toolbar/actions-built-in-data-chart/src/app.component.html index 6f83235f6..74f01086c 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/app.component.html +++ b/samples/charts/toolbar/actions-built-in-data-chart/src/app.component.html @@ -2,7 +2,7 @@
@@ -33,7 +33,7 @@ labelLocation="OutsideRight">
diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.html b/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.html index 7072069c4..fde3de103 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.html +++ b/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.html @@ -2,7 +2,7 @@
@@ -25,7 +25,7 @@ labelLocation="OutsideRight">
Date: Thu, 18 Jul 2024 10:01:47 -0400 Subject: [PATCH 095/154] Update igniteui-webcomponents packages for Angular sb (#219) --- browser/package.json | 2 +- samples/charts/category-chart/annotations-all/package.json | 2 +- samples/charts/category-chart/annotations-callouts/package.json | 2 +- .../charts/category-chart/annotations-crosshairs/package.json | 2 +- samples/charts/category-chart/annotations-custom/package.json | 2 +- .../charts/category-chart/annotations-final-value/package.json | 2 +- .../charts/category-chart/annotations-highlighting/package.json | 2 +- samples/charts/category-chart/axis-gap/package.json | 2 +- samples/charts/category-chart/axis-gridlines/package.json | 2 +- samples/charts/category-chart/axis-inverted/package.json | 2 +- samples/charts/category-chart/axis-labels/package.json | 2 +- samples/charts/category-chart/axis-locations/package.json | 2 +- samples/charts/category-chart/axis-overlap/package.json | 2 +- samples/charts/category-chart/axis-range/package.json | 2 +- samples/charts/category-chart/axis-tickmarks/package.json | 2 +- .../charts/category-chart/chart-highlight-filter/package.json | 2 +- .../category-chart/column-chart-with-tooltips/package.json | 2 +- samples/charts/category-chart/data-aggregations/package.json | 2 +- samples/charts/category-chart/data-filter/package.json | 2 +- .../charts/category-chart/data-tooltip-positioning/package.json | 2 +- .../charts/category-chart/highlighting-behavior/package.json | 2 +- samples/charts/category-chart/highlighting-mode/package.json | 2 +- samples/charts/category-chart/marker-options/package.json | 2 +- .../charts/category-chart/selection-multiple-modes/package.json | 2 +- samples/charts/category-chart/value-lines/package.json | 2 +- samples/charts/data-chart/axis-label-rotation/package.json | 2 +- .../data-chart/chart-highlight-filter-datasource/package.json | 2 +- .../chart-highlight-filter-multiple-series/package.json | 2 +- samples/charts/data-chart/chart-highlight-filter/package.json | 2 +- samples/charts/data-chart/transition-event/package.json | 2 +- samples/charts/sparkline/markers/package.json | 2 +- samples/charts/sparkline/normal-range/package.json | 2 +- samples/charts/sparkline/trendlines/package.json | 2 +- samples/charts/sparkline/unknown-values/package.json | 2 +- samples/charts/toolbar/theming/package.json | 2 +- samples/charts/tree-map/highlighting/package.json | 2 +- samples/charts/tree-map/layout/package.json | 2 +- 37 files changed, 37 insertions(+), 37 deletions(-) diff --git a/browser/package.json b/browser/package.json index 1a310f835..23bcb67b8 100644 --- a/browser/package.json +++ b/browser/package.json @@ -49,7 +49,7 @@ "igniteui-angular-spreadsheet": "17.3.1-alpha.0", "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", "igniteui-theming": "6.4.0-beta.2", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "immediate": "3.2.3", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 292eee597..b5daa37a0 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -22,7 +22,7 @@ "igniteui-angular-core": "17.3.1-alpha.0", "igniteui-angular-inputs": "17.3.1-alpha.0", "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-webcomponents": "4.9.0", + "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", From 9f0e0ae079e9921d019a8bea96aa5dc71ee6e168 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Thu, 18 Jul 2024 10:02:38 -0400 Subject: [PATCH 096/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.7.15.1 (#218) Co-authored-by: tfsbuild --- .../custom-selection/src/app.component.ts | 33 ++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/samples/charts/category-chart/custom-selection/src/app.component.ts b/samples/charts/category-chart/custom-selection/src/app.component.ts index 63d10096c..5a7eceefa 100644 --- a/samples/charts/category-chart/custom-selection/src/app.component.ts +++ b/samples/charts/category-chart/custom-selection/src/app.component.ts @@ -1,6 +1,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { SelectableDataItem, SelectableData } from './SelectableData'; -import { IgxDataLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; +import { IgxCategoryChartComponent, IgxDomainChartSeriesPointerEventArgs } from 'igniteui-angular-charts'; +import { IgxDataLegendComponent } from 'igniteui-angular-charts'; @Component({ selector: "app-root", @@ -33,5 +34,35 @@ export class AppComponent implements AfterViewInit { } + public categoryChartCustomSelectionPointerDown({ sender, args }: { sender: any, args: IgxDomainChartSeriesPointerEventArgs }): void { + + var chart = this.chart; + var selectableData = chart.dataSource as SelectableData; + let oldItem = args.item as SelectableDataItem; + + if (oldItem === null) return; + + let newItem: SelectableDataItem = new SelectableDataItem({ + category: oldItem.category, + dataValue: oldItem.dataValue, + selectedValue: oldItem.selectedValue + }); + + var selectedIndex = -1; + for (var i = 0; i < selectableData.length; i++) { + if (oldItem.category === selectableData[i].category) { + selectedIndex = i; + break; + } + } + + if (oldItem.selectedValue === oldItem.dataValue) + newItem.selectedValue = null; + else + newItem.selectedValue = newItem.dataValue; + + chart.notifySetItem(selectableData, selectedIndex, oldItem, newItem); + } + } From 5f5f547a6dea564fef8f4dd68340e9152b52d3a3 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Fri, 2 Aug 2024 15:44:09 -0400 Subject: [PATCH 097/154] mdd-33040 33040 --- samples/gauges/radial-gauge/labels/src/app.component.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/samples/gauges/radial-gauge/labels/src/app.component.html b/samples/gauges/radial-gauge/labels/src/app.component.html index 6c6890b97..ac80a8095 100644 --- a/samples/gauges/radial-gauge/labels/src/app.component.html +++ b/samples/gauges/radial-gauge/labels/src/app.component.html @@ -4,7 +4,8 @@ labelInterval=10 font="11px Verdana" fontBrush="DodgerBlue" - + titleDisplaysValue=true + subtitleText="MPH" height="300px" width="300px" minimumValue=0 value=50 maximumValue=80 interval=10 > From 9a2a0e8267189ff0f8ee6949f559180d9a964f86 Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Mon, 5 Aug 2024 17:11:00 -0400 Subject: [PATCH 098/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.8.5.2 --- .../radial-label-mode/.codesandbox/Dockerfile | 1 + .../radial-label-mode/.codesandbox/tasks.json | 17 +++ .../radial-label-mode/.stackblitzrc | 1 + .../data-chart/radial-label-mode/angular.json | 120 ++++++++++++++++++ .../data-chart/radial-label-mode/package.json | 47 +++++++ .../src/FootballPlayerStats.ts | 69 ++++++++++ .../radial-label-mode/src/app.component.html | 97 ++++++++++++++ .../radial-label-mode/src/app.component.scss | 3 + .../radial-label-mode/src/app.component.ts | 75 +++++++++++ .../radial-label-mode/src/app.module.ts | 32 +++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../radial-label-mode/src/index.html | 23 ++++ .../data-chart/radial-label-mode/src/main.ts | 15 +++ .../radial-label-mode/src/polyfills.ts | 65 ++++++++++ .../radial-label-mode/src/styles.scss | 9 ++ .../radial-label-mode/src/typings.d.ts | 5 + .../radial-label-mode/tsconfig.app.json | 10 ++ .../radial-label-mode/tsconfig.json | 27 ++++ .../data-chart/radial-label-mode/tslint.json | 31 +++++ .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 1 + .../angular.json | 120 ++++++++++++++++++ .../package.json | 44 +++++++ .../src/RadialProportionalData.ts | 78 ++++++++++++ .../src/app.component.html | 41 ++++++ .../src/app.component.scss | 3 + .../src/app.component.ts | 41 ++++++ .../src/app.module.ts | 30 +++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../src/index.html | 23 ++++ .../src/main.ts | 15 +++ .../src/polyfills.ts | 65 ++++++++++ .../src/styles.scss | 9 ++ .../src/typings.d.ts | 5 + .../tsconfig.app.json | 10 ++ .../tsconfig.json | 27 ++++ .../tslint.json | 31 +++++ .../animation/.codesandbox/Dockerfile | 1 + .../animation/.codesandbox/tasks.json | 17 +++ .../data-pie-chart/animation/.stackblitzrc | 1 + .../data-pie-chart/animation/angular.json | 120 ++++++++++++++++++ .../data-pie-chart/animation/package.json | 47 +++++++ .../animation/src/EnergyGlobalDemand.ts | 51 ++++++++ .../animation/src/app.component.html | 36 ++++++ .../animation/src/app.component.scss | 3 + .../animation/src/app.component.ts | 55 ++++++++ .../animation/src/app.module.ts | 28 ++++ .../src/environments/environment.prod.ts | 3 + .../animation/src/environments/environment.ts | 16 +++ .../data-pie-chart/animation/src/index.html | 23 ++++ .../data-pie-chart/animation/src/main.ts | 15 +++ .../data-pie-chart/animation/src/polyfills.ts | 65 ++++++++++ .../data-pie-chart/animation/src/styles.scss | 9 ++ .../data-pie-chart/animation/src/typings.d.ts | 5 + .../animation/tsconfig.app.json | 10 ++ .../data-pie-chart/animation/tsconfig.json | 27 ++++ .../data-pie-chart/animation/tslint.json | 31 +++++ .../highlighting/.codesandbox/Dockerfile | 1 + .../highlighting/.codesandbox/tasks.json | 17 +++ .../data-pie-chart/highlighting/.stackblitzrc | 1 + .../data-pie-chart/highlighting/angular.json | 120 ++++++++++++++++++ .../data-pie-chart/highlighting/package.json | 47 +++++++ .../highlighting/src/EnergyGlobalDemand.ts | 51 ++++++++ .../highlighting/src/app.component.html | 35 +++++ .../highlighting/src/app.component.scss | 3 + .../highlighting/src/app.component.ts | 55 ++++++++ .../highlighting/src/app.module.ts | 28 ++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../highlighting/src/index.html | 23 ++++ .../data-pie-chart/highlighting/src/main.ts | 15 +++ .../highlighting/src/polyfills.ts | 65 ++++++++++ .../highlighting/src/styles.scss | 9 ++ .../highlighting/src/typings.d.ts | 5 + .../highlighting/tsconfig.app.json | 10 ++ .../data-pie-chart/highlighting/tsconfig.json | 27 ++++ .../data-pie-chart/highlighting/tslint.json | 31 +++++ .../legend/.codesandbox/Dockerfile | 1 + .../legend/.codesandbox/tasks.json | 17 +++ .../data-pie-chart/legend/.stackblitzrc | 1 + .../charts/data-pie-chart/legend/angular.json | 120 ++++++++++++++++++ .../charts/data-pie-chart/legend/package.json | 46 +++++++ .../legend/src/EnergyGlobalDemand.ts | 51 ++++++++ .../legend/src/app.component.html | 20 +++ .../legend/src/app.component.scss | 3 + .../legend/src/app.component.ts | 51 ++++++++ .../data-pie-chart/legend/src/app.module.ts | 28 ++++ .../src/environments/environment.prod.ts | 3 + .../legend/src/environments/environment.ts | 16 +++ .../data-pie-chart/legend/src/index.html | 23 ++++ .../charts/data-pie-chart/legend/src/main.ts | 15 +++ .../data-pie-chart/legend/src/polyfills.ts | 65 ++++++++++ .../data-pie-chart/legend/src/styles.scss | 9 ++ .../data-pie-chart/legend/src/typings.d.ts | 5 + .../data-pie-chart/legend/tsconfig.app.json | 10 ++ .../data-pie-chart/legend/tsconfig.json | 27 ++++ .../charts/data-pie-chart/legend/tslint.json | 31 +++++ .../others/.codesandbox/Dockerfile | 1 + .../others/.codesandbox/tasks.json | 17 +++ .../data-pie-chart/others/.stackblitzrc | 1 + .../charts/data-pie-chart/others/angular.json | 120 ++++++++++++++++++ .../charts/data-pie-chart/others/package.json | 47 +++++++ .../others/src/EnergyGlobalDemand.ts | 51 ++++++++ .../others/src/app.component.html | 43 +++++++ .../others/src/app.component.scss | 3 + .../others/src/app.component.ts | 55 ++++++++ .../data-pie-chart/others/src/app.module.ts | 28 ++++ .../src/environments/environment.prod.ts | 3 + .../others/src/environments/environment.ts | 16 +++ .../data-pie-chart/others/src/index.html | 23 ++++ .../charts/data-pie-chart/others/src/main.ts | 15 +++ .../data-pie-chart/others/src/polyfills.ts | 65 ++++++++++ .../data-pie-chart/others/src/styles.scss | 9 ++ .../data-pie-chart/others/src/typings.d.ts | 5 + .../data-pie-chart/others/tsconfig.app.json | 10 ++ .../data-pie-chart/others/tsconfig.json | 27 ++++ .../charts/data-pie-chart/others/tslint.json | 31 +++++ .../overview/.codesandbox/Dockerfile | 1 + .../overview/.codesandbox/tasks.json | 17 +++ .../data-pie-chart/overview/.stackblitzrc | 1 + .../data-pie-chart/overview/angular.json | 120 ++++++++++++++++++ .../data-pie-chart/overview/package.json | 44 +++++++ .../overview/src/EnergyGlobalDemand.ts | 51 ++++++++ .../overview/src/app.component.html | 12 ++ .../overview/src/app.component.scss | 3 + .../overview/src/app.component.ts | 35 +++++ .../data-pie-chart/overview/src/app.module.ts | 26 ++++ .../src/environments/environment.prod.ts | 3 + .../overview/src/environments/environment.ts | 16 +++ .../data-pie-chart/overview/src/index.html | 23 ++++ .../data-pie-chart/overview/src/main.ts | 15 +++ .../data-pie-chart/overview/src/polyfills.ts | 65 ++++++++++ .../data-pie-chart/overview/src/styles.scss | 9 ++ .../data-pie-chart/overview/src/typings.d.ts | 5 + .../data-pie-chart/overview/tsconfig.app.json | 10 ++ .../data-pie-chart/overview/tsconfig.json | 27 ++++ .../data-pie-chart/overview/tslint.json | 31 +++++ .../selection/.codesandbox/Dockerfile | 1 + .../selection/.codesandbox/tasks.json | 17 +++ .../data-pie-chart/selection/.stackblitzrc | 1 + .../data-pie-chart/selection/angular.json | 120 ++++++++++++++++++ .../data-pie-chart/selection/package.json | 47 +++++++ .../selection/src/EnergyGlobalDemand.ts | 51 ++++++++ .../selection/src/app.component.html | 39 ++++++ .../selection/src/app.component.scss | 3 + .../selection/src/app.component.ts | 55 ++++++++ .../selection/src/app.module.ts | 28 ++++ .../src/environments/environment.prod.ts | 3 + .../selection/src/environments/environment.ts | 16 +++ .../data-pie-chart/selection/src/index.html | 23 ++++ .../data-pie-chart/selection/src/main.ts | 15 +++ .../data-pie-chart/selection/src/polyfills.ts | 65 ++++++++++ .../data-pie-chart/selection/src/styles.scss | 9 ++ .../data-pie-chart/selection/src/typings.d.ts | 5 + .../selection/tsconfig.app.json | 10 ++ .../data-pie-chart/selection/tsconfig.json | 27 ++++ .../data-pie-chart/selection/tslint.json | 31 +++++ 160 files changed, 4563 insertions(+) create mode 100644 samples/charts/data-chart/radial-label-mode/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/radial-label-mode/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/radial-label-mode/.stackblitzrc create mode 100644 samples/charts/data-chart/radial-label-mode/angular.json create mode 100644 samples/charts/data-chart/radial-label-mode/package.json create mode 100644 samples/charts/data-chart/radial-label-mode/src/FootballPlayerStats.ts create mode 100644 samples/charts/data-chart/radial-label-mode/src/app.component.html create mode 100644 samples/charts/data-chart/radial-label-mode/src/app.component.scss create mode 100644 samples/charts/data-chart/radial-label-mode/src/app.component.ts create mode 100644 samples/charts/data-chart/radial-label-mode/src/app.module.ts create mode 100644 samples/charts/data-chart/radial-label-mode/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/radial-label-mode/src/environments/environment.ts create mode 100644 samples/charts/data-chart/radial-label-mode/src/index.html create mode 100644 samples/charts/data-chart/radial-label-mode/src/main.ts create mode 100644 samples/charts/data-chart/radial-label-mode/src/polyfills.ts create mode 100644 samples/charts/data-chart/radial-label-mode/src/styles.scss create mode 100644 samples/charts/data-chart/radial-label-mode/src/typings.d.ts create mode 100644 samples/charts/data-chart/radial-label-mode/tsconfig.app.json create mode 100644 samples/charts/data-chart/radial-label-mode/tsconfig.json create mode 100644 samples/charts/data-chart/radial-label-mode/tslint.json create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/.stackblitzrc create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/angular.json create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/RadialProportionalData.ts create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.html create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.scss create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.ts create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.module.ts create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/environments/environment.ts create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/index.html create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/main.ts create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/polyfills.ts create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/styles.scss create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/typings.d.ts create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tsconfig.app.json create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tsconfig.json create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tslint.json create mode 100644 samples/charts/data-pie-chart/animation/.codesandbox/Dockerfile create mode 100644 samples/charts/data-pie-chart/animation/.codesandbox/tasks.json create mode 100644 samples/charts/data-pie-chart/animation/.stackblitzrc create mode 100644 samples/charts/data-pie-chart/animation/angular.json create mode 100644 samples/charts/data-pie-chart/animation/package.json create mode 100644 samples/charts/data-pie-chart/animation/src/EnergyGlobalDemand.ts create mode 100644 samples/charts/data-pie-chart/animation/src/app.component.html create mode 100644 samples/charts/data-pie-chart/animation/src/app.component.scss create mode 100644 samples/charts/data-pie-chart/animation/src/app.component.ts create mode 100644 samples/charts/data-pie-chart/animation/src/app.module.ts create mode 100644 samples/charts/data-pie-chart/animation/src/environments/environment.prod.ts create mode 100644 samples/charts/data-pie-chart/animation/src/environments/environment.ts create mode 100644 samples/charts/data-pie-chart/animation/src/index.html create mode 100644 samples/charts/data-pie-chart/animation/src/main.ts create mode 100644 samples/charts/data-pie-chart/animation/src/polyfills.ts create mode 100644 samples/charts/data-pie-chart/animation/src/styles.scss create mode 100644 samples/charts/data-pie-chart/animation/src/typings.d.ts create mode 100644 samples/charts/data-pie-chart/animation/tsconfig.app.json create mode 100644 samples/charts/data-pie-chart/animation/tsconfig.json create mode 100644 samples/charts/data-pie-chart/animation/tslint.json create mode 100644 samples/charts/data-pie-chart/highlighting/.codesandbox/Dockerfile create mode 100644 samples/charts/data-pie-chart/highlighting/.codesandbox/tasks.json create mode 100644 samples/charts/data-pie-chart/highlighting/.stackblitzrc create mode 100644 samples/charts/data-pie-chart/highlighting/angular.json create mode 100644 samples/charts/data-pie-chart/highlighting/package.json create mode 100644 samples/charts/data-pie-chart/highlighting/src/EnergyGlobalDemand.ts create mode 100644 samples/charts/data-pie-chart/highlighting/src/app.component.html create mode 100644 samples/charts/data-pie-chart/highlighting/src/app.component.scss create mode 100644 samples/charts/data-pie-chart/highlighting/src/app.component.ts create mode 100644 samples/charts/data-pie-chart/highlighting/src/app.module.ts create mode 100644 samples/charts/data-pie-chart/highlighting/src/environments/environment.prod.ts create mode 100644 samples/charts/data-pie-chart/highlighting/src/environments/environment.ts create mode 100644 samples/charts/data-pie-chart/highlighting/src/index.html create mode 100644 samples/charts/data-pie-chart/highlighting/src/main.ts create mode 100644 samples/charts/data-pie-chart/highlighting/src/polyfills.ts create mode 100644 samples/charts/data-pie-chart/highlighting/src/styles.scss create mode 100644 samples/charts/data-pie-chart/highlighting/src/typings.d.ts create mode 100644 samples/charts/data-pie-chart/highlighting/tsconfig.app.json create mode 100644 samples/charts/data-pie-chart/highlighting/tsconfig.json create mode 100644 samples/charts/data-pie-chart/highlighting/tslint.json create mode 100644 samples/charts/data-pie-chart/legend/.codesandbox/Dockerfile create mode 100644 samples/charts/data-pie-chart/legend/.codesandbox/tasks.json create mode 100644 samples/charts/data-pie-chart/legend/.stackblitzrc create mode 100644 samples/charts/data-pie-chart/legend/angular.json create mode 100644 samples/charts/data-pie-chart/legend/package.json create mode 100644 samples/charts/data-pie-chart/legend/src/EnergyGlobalDemand.ts create mode 100644 samples/charts/data-pie-chart/legend/src/app.component.html create mode 100644 samples/charts/data-pie-chart/legend/src/app.component.scss create mode 100644 samples/charts/data-pie-chart/legend/src/app.component.ts create mode 100644 samples/charts/data-pie-chart/legend/src/app.module.ts create mode 100644 samples/charts/data-pie-chart/legend/src/environments/environment.prod.ts create mode 100644 samples/charts/data-pie-chart/legend/src/environments/environment.ts create mode 100644 samples/charts/data-pie-chart/legend/src/index.html create mode 100644 samples/charts/data-pie-chart/legend/src/main.ts create mode 100644 samples/charts/data-pie-chart/legend/src/polyfills.ts create mode 100644 samples/charts/data-pie-chart/legend/src/styles.scss create mode 100644 samples/charts/data-pie-chart/legend/src/typings.d.ts create mode 100644 samples/charts/data-pie-chart/legend/tsconfig.app.json create mode 100644 samples/charts/data-pie-chart/legend/tsconfig.json create mode 100644 samples/charts/data-pie-chart/legend/tslint.json create mode 100644 samples/charts/data-pie-chart/others/.codesandbox/Dockerfile create mode 100644 samples/charts/data-pie-chart/others/.codesandbox/tasks.json create mode 100644 samples/charts/data-pie-chart/others/.stackblitzrc create mode 100644 samples/charts/data-pie-chart/others/angular.json create mode 100644 samples/charts/data-pie-chart/others/package.json create mode 100644 samples/charts/data-pie-chart/others/src/EnergyGlobalDemand.ts create mode 100644 samples/charts/data-pie-chart/others/src/app.component.html create mode 100644 samples/charts/data-pie-chart/others/src/app.component.scss create mode 100644 samples/charts/data-pie-chart/others/src/app.component.ts create mode 100644 samples/charts/data-pie-chart/others/src/app.module.ts create mode 100644 samples/charts/data-pie-chart/others/src/environments/environment.prod.ts create mode 100644 samples/charts/data-pie-chart/others/src/environments/environment.ts create mode 100644 samples/charts/data-pie-chart/others/src/index.html create mode 100644 samples/charts/data-pie-chart/others/src/main.ts create mode 100644 samples/charts/data-pie-chart/others/src/polyfills.ts create mode 100644 samples/charts/data-pie-chart/others/src/styles.scss create mode 100644 samples/charts/data-pie-chart/others/src/typings.d.ts create mode 100644 samples/charts/data-pie-chart/others/tsconfig.app.json create mode 100644 samples/charts/data-pie-chart/others/tsconfig.json create mode 100644 samples/charts/data-pie-chart/others/tslint.json create mode 100644 samples/charts/data-pie-chart/overview/.codesandbox/Dockerfile create mode 100644 samples/charts/data-pie-chart/overview/.codesandbox/tasks.json create mode 100644 samples/charts/data-pie-chart/overview/.stackblitzrc create mode 100644 samples/charts/data-pie-chart/overview/angular.json create mode 100644 samples/charts/data-pie-chart/overview/package.json create mode 100644 samples/charts/data-pie-chart/overview/src/EnergyGlobalDemand.ts create mode 100644 samples/charts/data-pie-chart/overview/src/app.component.html create mode 100644 samples/charts/data-pie-chart/overview/src/app.component.scss create mode 100644 samples/charts/data-pie-chart/overview/src/app.component.ts create mode 100644 samples/charts/data-pie-chart/overview/src/app.module.ts create mode 100644 samples/charts/data-pie-chart/overview/src/environments/environment.prod.ts create mode 100644 samples/charts/data-pie-chart/overview/src/environments/environment.ts create mode 100644 samples/charts/data-pie-chart/overview/src/index.html create mode 100644 samples/charts/data-pie-chart/overview/src/main.ts create mode 100644 samples/charts/data-pie-chart/overview/src/polyfills.ts create mode 100644 samples/charts/data-pie-chart/overview/src/styles.scss create mode 100644 samples/charts/data-pie-chart/overview/src/typings.d.ts create mode 100644 samples/charts/data-pie-chart/overview/tsconfig.app.json create mode 100644 samples/charts/data-pie-chart/overview/tsconfig.json create mode 100644 samples/charts/data-pie-chart/overview/tslint.json create mode 100644 samples/charts/data-pie-chart/selection/.codesandbox/Dockerfile create mode 100644 samples/charts/data-pie-chart/selection/.codesandbox/tasks.json create mode 100644 samples/charts/data-pie-chart/selection/.stackblitzrc create mode 100644 samples/charts/data-pie-chart/selection/angular.json create mode 100644 samples/charts/data-pie-chart/selection/package.json create mode 100644 samples/charts/data-pie-chart/selection/src/EnergyGlobalDemand.ts create mode 100644 samples/charts/data-pie-chart/selection/src/app.component.html create mode 100644 samples/charts/data-pie-chart/selection/src/app.component.scss create mode 100644 samples/charts/data-pie-chart/selection/src/app.component.ts create mode 100644 samples/charts/data-pie-chart/selection/src/app.module.ts create mode 100644 samples/charts/data-pie-chart/selection/src/environments/environment.prod.ts create mode 100644 samples/charts/data-pie-chart/selection/src/environments/environment.ts create mode 100644 samples/charts/data-pie-chart/selection/src/index.html create mode 100644 samples/charts/data-pie-chart/selection/src/main.ts create mode 100644 samples/charts/data-pie-chart/selection/src/polyfills.ts create mode 100644 samples/charts/data-pie-chart/selection/src/styles.scss create mode 100644 samples/charts/data-pie-chart/selection/src/typings.d.ts create mode 100644 samples/charts/data-pie-chart/selection/tsconfig.app.json create mode 100644 samples/charts/data-pie-chart/selection/tsconfig.json create mode 100644 samples/charts/data-pie-chart/selection/tslint.json diff --git a/samples/charts/data-chart/radial-label-mode/.codesandbox/Dockerfile b/samples/charts/data-chart/radial-label-mode/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/radial-label-mode/.codesandbox/tasks.json b/samples/charts/data-chart/radial-label-mode/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-label-mode/.stackblitzrc b/samples/charts/data-chart/radial-label-mode/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-label-mode/angular.json b/samples/charts/data-chart/radial-label-mode/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json new file mode 100644 index 000000000..b5daa37a0 --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -0,0 +1,47 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-webcomponents": "4.11.1", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.4.5" + } +} diff --git a/samples/charts/data-chart/radial-label-mode/src/FootballPlayerStats.ts b/samples/charts/data-chart/radial-label-mode/src/FootballPlayerStats.ts new file mode 100644 index 000000000..76a96e138 --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/src/FootballPlayerStats.ts @@ -0,0 +1,69 @@ +export class FootballPlayerStatsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public attribute: string; + public ronaldo: number; + public messi: number; + +} +export class FootballPlayerStats extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new FootballPlayerStatsItem( + { + attribute: `Dribbling`, + ronaldo: 8, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Passing`, + ronaldo: 8, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Finishing`, + ronaldo: 10, + messi: 10 + }), + new FootballPlayerStatsItem( + { + attribute: `Free Kicks`, + ronaldo: 8, + messi: 9 + }), + new FootballPlayerStatsItem( + { + attribute: `Penalties`, + ronaldo: 9, + messi: 7 + }), + new FootballPlayerStatsItem( + { + attribute: `Physical`, + ronaldo: 10, + messi: 7 + }), + new FootballPlayerStatsItem( + { + attribute: `Team Play`, + ronaldo: 7, + messi: 9 + }), + new FootballPlayerStatsItem( + { + attribute: `Heading`, + ronaldo: 9, + messi: 6 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/radial-label-mode/src/app.component.html b/samples/charts/data-chart/radial-label-mode/src/app.component.html new file mode 100644 index 000000000..a56fd3c6a --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/src/app.component.html @@ -0,0 +1,97 @@ +
+
+ + + + + + +
+
+ Ronaldo vs Messi Player Stats +
+
+ + +
+
+ + + + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/radial-label-mode/src/app.component.scss b/samples/charts/data-chart/radial-label-mode/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/radial-label-mode/src/app.component.ts b/samples/charts/data-chart/radial-label-mode/src/app.component.ts new file mode 100644 index 000000000..d8409ac4d --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/src/app.component.ts @@ -0,0 +1,75 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataChartCoreDescriptionModule, DataChartRadialDescriptionModule, DataChartRadialCoreDescriptionModule, DataChartInteractivityDescriptionModule, DataChartAnnotationDescriptionModule, LegendDescriptionModule } from 'igniteui-angular-core'; +import { FootballPlayerStatsItem, FootballPlayerStats } from './FootballPlayerStats'; +import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxRadialColumnSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("labelExtent", { static: true } ) + private labelExtent: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("labelMode", { static: true } ) + private labelMode: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("angleAxis", { static: true } ) + private angleAxis: IgxCategoryAngleAxisComponent + @ViewChild("radiusAxis", { static: true } ) + private radiusAxis: IgxNumericRadiusAxisComponent + @ViewChild("radialColumnSeries1", { static: true } ) + private radialColumnSeries1: IgxRadialColumnSeriesComponent + @ViewChild("radialColumnSeries2", { static: true } ) + private radialColumnSeries2: IgxRadialColumnSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent + private _footballPlayerStats: FootballPlayerStats = null; + public get footballPlayerStats(): FootballPlayerStats { + if (this._footballPlayerStats == null) + { + this._footballPlayerStats = new FootballPlayerStats(); + } + return this._footballPlayerStats; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + DataChartCoreDescriptionModule.register(context); + DataChartRadialDescriptionModule.register(context); + DataChartRadialCoreDescriptionModule.register(context); + DataChartInteractivityDescriptionModule.register(context); + DataChartAnnotationDescriptionModule.register(context); + LegendDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/radial-label-mode/src/app.module.ts b/samples/charts/data-chart/radial-label-mode/src/app.module.ts new file mode 100644 index 000000000..32b4b90cf --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/src/app.module.ts @@ -0,0 +1,32 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxDataChartCoreModule, IgxDataChartRadialModule, IgxDataChartRadialCoreModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule, IgxLegendModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxDataChartCoreModule, + IgxDataChartRadialModule, + IgxDataChartRadialCoreModule, + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule, + IgxLegendModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/radial-label-mode/src/environments/environment.prod.ts b/samples/charts/data-chart/radial-label-mode/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/radial-label-mode/src/environments/environment.ts b/samples/charts/data-chart/radial-label-mode/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/radial-label-mode/src/index.html b/samples/charts/data-chart/radial-label-mode/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/radial-label-mode/src/main.ts b/samples/charts/data-chart/radial-label-mode/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/radial-label-mode/src/polyfills.ts b/samples/charts/data-chart/radial-label-mode/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/radial-label-mode/src/styles.scss b/samples/charts/data-chart/radial-label-mode/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/radial-label-mode/src/typings.d.ts b/samples/charts/data-chart/radial-label-mode/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/radial-label-mode/tsconfig.app.json b/samples/charts/data-chart/radial-label-mode/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/radial-label-mode/tsconfig.json b/samples/charts/data-chart/radial-label-mode/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-label-mode/tslint.json b/samples/charts/data-chart/radial-label-mode/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/.codesandbox/Dockerfile b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/.codesandbox/tasks.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/.stackblitzrc b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/angular.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json new file mode 100644 index 000000000..51b8ad913 --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.4.5" + } +} diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/RadialProportionalData.ts b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/RadialProportionalData.ts new file mode 100644 index 000000000..db3bd7831 --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/RadialProportionalData.ts @@ -0,0 +1,78 @@ +export class RadialProportionalDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public label: string; + public value: number; + public radius: number; + public radius2: number; + +} +export class RadialProportionalData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new RadialProportionalDataItem( + { + label: `A`, + value: 100, + radius: 75, + radius2: 50 + }), + new RadialProportionalDataItem( + { + label: `B`, + value: 100, + radius: 100, + radius2: 75 + }), + new RadialProportionalDataItem( + { + label: `C`, + value: 100, + radius: 80, + radius2: 140 + }), + new RadialProportionalDataItem( + { + label: `D`, + value: 100, + radius: 60, + radius2: 220 + }), + new RadialProportionalDataItem( + { + label: `E`, + value: 100, + radius: 90, + radius2: 30 + }), + new RadialProportionalDataItem( + { + label: `F`, + value: 100, + radius: 95, + radius2: 120 + }), + new RadialProportionalDataItem( + { + label: `G`, + value: 100, + radius: 100, + radius2: 200 + }), + new RadialProportionalDataItem( + { + label: `H`, + value: 100, + radius: 80, + radius2: 120 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.html b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.html new file mode 100644 index 000000000..5fba2f36e --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.html @@ -0,0 +1,41 @@ +
+
+ + + + + + + + +
+
diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.scss b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.ts b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.ts new file mode 100644 index 000000000..cbc8a23b9 --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.ts @@ -0,0 +1,41 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { RadialProportionalDataItem, RadialProportionalData } from './RadialProportionalData'; +import { IgxDataChartComponent, IgxProportionalCategoryAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxRadialPieSeriesComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("angleAxis", { static: true } ) + private angleAxis: IgxProportionalCategoryAngleAxisComponent + @ViewChild("radiusAxis", { static: true } ) + private radiusAxis: IgxNumericRadiusAxisComponent + @ViewChild("radialPieSeries1", { static: true } ) + private radialPieSeries1: IgxRadialPieSeriesComponent + private _radialProportionalData: RadialProportionalData = null; + public get radialProportionalData(): RadialProportionalData { + if (this._radialProportionalData == null) + { + this._radialProportionalData = new RadialProportionalData(); + } + return this._radialProportionalData; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.module.ts b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.module.ts new file mode 100644 index 000000000..ccf294ad2 --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.module.ts @@ -0,0 +1,30 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDataPieChartCoreModule, IgxDataChartCoreModule, IgxDataChartRadialModule, IgxDataChartRadialCoreModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDataPieChartCoreModule, + IgxDataChartCoreModule, + IgxDataChartRadialModule, + IgxDataChartRadialCoreModule, + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/environments/environment.prod.ts b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/environments/environment.ts b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/index.html b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/main.ts b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/polyfills.ts b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/styles.scss b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/typings.d.ts b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tsconfig.app.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tsconfig.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tslint.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-pie-chart/animation/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/animation/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-pie-chart/animation/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation/.codesandbox/tasks.json b/samples/charts/data-pie-chart/animation/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-pie-chart/animation/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation/.stackblitzrc b/samples/charts/data-pie-chart/animation/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-pie-chart/animation/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation/angular.json b/samples/charts/data-pie-chart/animation/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-pie-chart/animation/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json new file mode 100644 index 000000000..b5daa37a0 --- /dev/null +++ b/samples/charts/data-pie-chart/animation/package.json @@ -0,0 +1,47 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-webcomponents": "4.11.1", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.4.5" + } +} diff --git a/samples/charts/data-pie-chart/animation/src/EnergyGlobalDemand.ts b/samples/charts/data-pie-chart/animation/src/EnergyGlobalDemand.ts new file mode 100644 index 000000000..3d2ed388a --- /dev/null +++ b/samples/charts/data-pie-chart/animation/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-pie-chart/animation/src/app.component.html b/samples/charts/data-pie-chart/animation/src/app.component.html new file mode 100644 index 000000000..bf0565a09 --- /dev/null +++ b/samples/charts/data-pie-chart/animation/src/app.component.html @@ -0,0 +1,36 @@ +
+
+ + + + + + +
+
+ Global Electricity Demand by Energy Use +
+
+ + +
+
diff --git a/samples/charts/data-pie-chart/animation/src/app.component.scss b/samples/charts/data-pie-chart/animation/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-pie-chart/animation/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-pie-chart/animation/src/app.component.ts b/samples/charts/data-pie-chart/animation/src/app.component.ts new file mode 100644 index 000000000..4c3f156a1 --- /dev/null +++ b/samples/charts/data-pie-chart/animation/src/app.component.ts @@ -0,0 +1,55 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-angular-core'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { IgxPropertyEditorPanelComponent } from 'igniteui-angular-layouts'; +import { IgxDataPieChartComponent } from 'igniteui-angular-core'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataPieChartComponent + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + DataPieChartDescriptionModule.register(context); + ItemLegendDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-pie-chart/animation/src/app.module.ts b/samples/charts/data-pie-chart/animation/src/app.module.ts new file mode 100644 index 000000000..a66f493d9 --- /dev/null +++ b/samples/charts/data-pie-chart/animation/src/app.module.ts @@ -0,0 +1,28 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxDataPieChartModule, IgxItemLegendModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxDataPieChartModule, + IgxItemLegendModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-pie-chart/animation/src/environments/environment.prod.ts b/samples/charts/data-pie-chart/animation/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-pie-chart/animation/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-pie-chart/animation/src/environments/environment.ts b/samples/charts/data-pie-chart/animation/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-pie-chart/animation/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-pie-chart/animation/src/index.html b/samples/charts/data-pie-chart/animation/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-pie-chart/animation/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-pie-chart/animation/src/main.ts b/samples/charts/data-pie-chart/animation/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-pie-chart/animation/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-pie-chart/animation/src/polyfills.ts b/samples/charts/data-pie-chart/animation/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-pie-chart/animation/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-pie-chart/animation/src/styles.scss b/samples/charts/data-pie-chart/animation/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-pie-chart/animation/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-pie-chart/animation/src/typings.d.ts b/samples/charts/data-pie-chart/animation/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-pie-chart/animation/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-pie-chart/animation/tsconfig.app.json b/samples/charts/data-pie-chart/animation/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-pie-chart/animation/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-pie-chart/animation/tsconfig.json b/samples/charts/data-pie-chart/animation/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-pie-chart/animation/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation/tslint.json b/samples/charts/data-pie-chart/animation/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-pie-chart/animation/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-pie-chart/highlighting/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/highlighting/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/highlighting/.codesandbox/tasks.json b/samples/charts/data-pie-chart/highlighting/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/highlighting/.stackblitzrc b/samples/charts/data-pie-chart/highlighting/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/highlighting/angular.json b/samples/charts/data-pie-chart/highlighting/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json new file mode 100644 index 000000000..b5daa37a0 --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -0,0 +1,47 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-webcomponents": "4.11.1", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.4.5" + } +} diff --git a/samples/charts/data-pie-chart/highlighting/src/EnergyGlobalDemand.ts b/samples/charts/data-pie-chart/highlighting/src/EnergyGlobalDemand.ts new file mode 100644 index 000000000..3d2ed388a --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-pie-chart/highlighting/src/app.component.html b/samples/charts/data-pie-chart/highlighting/src/app.component.html new file mode 100644 index 000000000..07aa0c0e3 --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/src/app.component.html @@ -0,0 +1,35 @@ +
+
+ + + + + + +
+
+ Global Electricity Demand by Energy Use +
+
+ + +
+
diff --git a/samples/charts/data-pie-chart/highlighting/src/app.component.scss b/samples/charts/data-pie-chart/highlighting/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-pie-chart/highlighting/src/app.component.ts b/samples/charts/data-pie-chart/highlighting/src/app.component.ts new file mode 100644 index 000000000..4c3f156a1 --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/src/app.component.ts @@ -0,0 +1,55 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-angular-core'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { IgxPropertyEditorPanelComponent } from 'igniteui-angular-layouts'; +import { IgxDataPieChartComponent } from 'igniteui-angular-core'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataPieChartComponent + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + DataPieChartDescriptionModule.register(context); + ItemLegendDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-pie-chart/highlighting/src/app.module.ts b/samples/charts/data-pie-chart/highlighting/src/app.module.ts new file mode 100644 index 000000000..a66f493d9 --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/src/app.module.ts @@ -0,0 +1,28 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxDataPieChartModule, IgxItemLegendModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxDataPieChartModule, + IgxItemLegendModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-pie-chart/highlighting/src/environments/environment.prod.ts b/samples/charts/data-pie-chart/highlighting/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-pie-chart/highlighting/src/environments/environment.ts b/samples/charts/data-pie-chart/highlighting/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-pie-chart/highlighting/src/index.html b/samples/charts/data-pie-chart/highlighting/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-pie-chart/highlighting/src/main.ts b/samples/charts/data-pie-chart/highlighting/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-pie-chart/highlighting/src/polyfills.ts b/samples/charts/data-pie-chart/highlighting/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-pie-chart/highlighting/src/styles.scss b/samples/charts/data-pie-chart/highlighting/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-pie-chart/highlighting/src/typings.d.ts b/samples/charts/data-pie-chart/highlighting/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-pie-chart/highlighting/tsconfig.app.json b/samples/charts/data-pie-chart/highlighting/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-pie-chart/highlighting/tsconfig.json b/samples/charts/data-pie-chart/highlighting/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/highlighting/tslint.json b/samples/charts/data-pie-chart/highlighting/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-pie-chart/legend/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/legend/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-pie-chart/legend/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/legend/.codesandbox/tasks.json b/samples/charts/data-pie-chart/legend/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-pie-chart/legend/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/legend/.stackblitzrc b/samples/charts/data-pie-chart/legend/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-pie-chart/legend/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/legend/angular.json b/samples/charts/data-pie-chart/legend/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-pie-chart/legend/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json new file mode 100644 index 000000000..40af1b91b --- /dev/null +++ b/samples/charts/data-pie-chart/legend/package.json @@ -0,0 +1,46 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.4.5" + } +} diff --git a/samples/charts/data-pie-chart/legend/src/EnergyGlobalDemand.ts b/samples/charts/data-pie-chart/legend/src/EnergyGlobalDemand.ts new file mode 100644 index 000000000..3d2ed388a --- /dev/null +++ b/samples/charts/data-pie-chart/legend/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-pie-chart/legend/src/app.component.html b/samples/charts/data-pie-chart/legend/src/app.component.html new file mode 100644 index 000000000..0d26fb25f --- /dev/null +++ b/samples/charts/data-pie-chart/legend/src/app.component.html @@ -0,0 +1,20 @@ +
+
+ Global Electricity Demand by Energy Use +
+
+ + +
+
+ + +
+
diff --git a/samples/charts/data-pie-chart/legend/src/app.component.scss b/samples/charts/data-pie-chart/legend/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-pie-chart/legend/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-pie-chart/legend/src/app.component.ts b/samples/charts/data-pie-chart/legend/src/app.component.ts new file mode 100644 index 000000000..b4bb8078e --- /dev/null +++ b/samples/charts/data-pie-chart/legend/src/app.component.ts @@ -0,0 +1,51 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-angular-core'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { IgxItemLegendComponent } from 'igniteui-angular-charts'; +import { IgxDataPieChartComponent } from 'igniteui-angular-core'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxItemLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataPieChartComponent + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + DataPieChartDescriptionModule.register(context); + ItemLegendDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-pie-chart/legend/src/app.module.ts b/samples/charts/data-pie-chart/legend/src/app.module.ts new file mode 100644 index 000000000..a66f493d9 --- /dev/null +++ b/samples/charts/data-pie-chart/legend/src/app.module.ts @@ -0,0 +1,28 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxDataPieChartModule, IgxItemLegendModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxDataPieChartModule, + IgxItemLegendModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-pie-chart/legend/src/environments/environment.prod.ts b/samples/charts/data-pie-chart/legend/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-pie-chart/legend/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-pie-chart/legend/src/environments/environment.ts b/samples/charts/data-pie-chart/legend/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-pie-chart/legend/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-pie-chart/legend/src/index.html b/samples/charts/data-pie-chart/legend/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-pie-chart/legend/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-pie-chart/legend/src/main.ts b/samples/charts/data-pie-chart/legend/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-pie-chart/legend/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-pie-chart/legend/src/polyfills.ts b/samples/charts/data-pie-chart/legend/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-pie-chart/legend/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-pie-chart/legend/src/styles.scss b/samples/charts/data-pie-chart/legend/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-pie-chart/legend/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-pie-chart/legend/src/typings.d.ts b/samples/charts/data-pie-chart/legend/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-pie-chart/legend/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-pie-chart/legend/tsconfig.app.json b/samples/charts/data-pie-chart/legend/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-pie-chart/legend/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-pie-chart/legend/tsconfig.json b/samples/charts/data-pie-chart/legend/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-pie-chart/legend/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/legend/tslint.json b/samples/charts/data-pie-chart/legend/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-pie-chart/legend/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-pie-chart/others/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/others/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-pie-chart/others/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/others/.codesandbox/tasks.json b/samples/charts/data-pie-chart/others/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-pie-chart/others/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/others/.stackblitzrc b/samples/charts/data-pie-chart/others/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-pie-chart/others/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/others/angular.json b/samples/charts/data-pie-chart/others/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-pie-chart/others/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json new file mode 100644 index 000000000..b5daa37a0 --- /dev/null +++ b/samples/charts/data-pie-chart/others/package.json @@ -0,0 +1,47 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-webcomponents": "4.11.1", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.4.5" + } +} diff --git a/samples/charts/data-pie-chart/others/src/EnergyGlobalDemand.ts b/samples/charts/data-pie-chart/others/src/EnergyGlobalDemand.ts new file mode 100644 index 000000000..3d2ed388a --- /dev/null +++ b/samples/charts/data-pie-chart/others/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-pie-chart/others/src/app.component.html b/samples/charts/data-pie-chart/others/src/app.component.html new file mode 100644 index 000000000..d70f4e9c5 --- /dev/null +++ b/samples/charts/data-pie-chart/others/src/app.component.html @@ -0,0 +1,43 @@ +
+
+ + + + + + + + +
+
+ Global Electricity Demand by Energy Use +
+
+ + +
+
diff --git a/samples/charts/data-pie-chart/others/src/app.component.scss b/samples/charts/data-pie-chart/others/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-pie-chart/others/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-pie-chart/others/src/app.component.ts b/samples/charts/data-pie-chart/others/src/app.component.ts new file mode 100644 index 000000000..4c3f156a1 --- /dev/null +++ b/samples/charts/data-pie-chart/others/src/app.component.ts @@ -0,0 +1,55 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-angular-core'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { IgxPropertyEditorPanelComponent } from 'igniteui-angular-layouts'; +import { IgxDataPieChartComponent } from 'igniteui-angular-core'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataPieChartComponent + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + DataPieChartDescriptionModule.register(context); + ItemLegendDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-pie-chart/others/src/app.module.ts b/samples/charts/data-pie-chart/others/src/app.module.ts new file mode 100644 index 000000000..a66f493d9 --- /dev/null +++ b/samples/charts/data-pie-chart/others/src/app.module.ts @@ -0,0 +1,28 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxDataPieChartModule, IgxItemLegendModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxDataPieChartModule, + IgxItemLegendModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-pie-chart/others/src/environments/environment.prod.ts b/samples/charts/data-pie-chart/others/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-pie-chart/others/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-pie-chart/others/src/environments/environment.ts b/samples/charts/data-pie-chart/others/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-pie-chart/others/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-pie-chart/others/src/index.html b/samples/charts/data-pie-chart/others/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-pie-chart/others/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-pie-chart/others/src/main.ts b/samples/charts/data-pie-chart/others/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-pie-chart/others/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-pie-chart/others/src/polyfills.ts b/samples/charts/data-pie-chart/others/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-pie-chart/others/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-pie-chart/others/src/styles.scss b/samples/charts/data-pie-chart/others/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-pie-chart/others/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-pie-chart/others/src/typings.d.ts b/samples/charts/data-pie-chart/others/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-pie-chart/others/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-pie-chart/others/tsconfig.app.json b/samples/charts/data-pie-chart/others/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-pie-chart/others/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-pie-chart/others/tsconfig.json b/samples/charts/data-pie-chart/others/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-pie-chart/others/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/others/tslint.json b/samples/charts/data-pie-chart/others/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-pie-chart/others/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-pie-chart/overview/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/overview/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-pie-chart/overview/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/overview/.codesandbox/tasks.json b/samples/charts/data-pie-chart/overview/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-pie-chart/overview/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/overview/.stackblitzrc b/samples/charts/data-pie-chart/overview/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-pie-chart/overview/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/overview/angular.json b/samples/charts/data-pie-chart/overview/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-pie-chart/overview/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json new file mode 100644 index 000000000..51b8ad913 --- /dev/null +++ b/samples/charts/data-pie-chart/overview/package.json @@ -0,0 +1,44 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.4.5" + } +} diff --git a/samples/charts/data-pie-chart/overview/src/EnergyGlobalDemand.ts b/samples/charts/data-pie-chart/overview/src/EnergyGlobalDemand.ts new file mode 100644 index 000000000..3d2ed388a --- /dev/null +++ b/samples/charts/data-pie-chart/overview/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-pie-chart/overview/src/app.component.html b/samples/charts/data-pie-chart/overview/src/app.component.html new file mode 100644 index 000000000..3c81748e6 --- /dev/null +++ b/samples/charts/data-pie-chart/overview/src/app.component.html @@ -0,0 +1,12 @@ +
+
+ Global Electricity Demand by Energy Use +
+
+ + +
+
diff --git a/samples/charts/data-pie-chart/overview/src/app.component.scss b/samples/charts/data-pie-chart/overview/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-pie-chart/overview/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-pie-chart/overview/src/app.component.ts b/samples/charts/data-pie-chart/overview/src/app.component.ts new file mode 100644 index 000000000..9aba1c969 --- /dev/null +++ b/samples/charts/data-pie-chart/overview/src/app.component.ts @@ -0,0 +1,35 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { IgxDataPieChartComponent } from 'igniteui-angular-core'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("chart", { static: true } ) + private chart: IgxDataPieChartComponent + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-pie-chart/overview/src/app.module.ts b/samples/charts/data-pie-chart/overview/src/app.module.ts new file mode 100644 index 000000000..d5b8d4418 --- /dev/null +++ b/samples/charts/data-pie-chart/overview/src/app.module.ts @@ -0,0 +1,26 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDataPieChartModule, IgxItemLegendModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDataPieChartModule, + IgxItemLegendModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-pie-chart/overview/src/environments/environment.prod.ts b/samples/charts/data-pie-chart/overview/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-pie-chart/overview/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-pie-chart/overview/src/environments/environment.ts b/samples/charts/data-pie-chart/overview/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-pie-chart/overview/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-pie-chart/overview/src/index.html b/samples/charts/data-pie-chart/overview/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-pie-chart/overview/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-pie-chart/overview/src/main.ts b/samples/charts/data-pie-chart/overview/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-pie-chart/overview/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-pie-chart/overview/src/polyfills.ts b/samples/charts/data-pie-chart/overview/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-pie-chart/overview/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-pie-chart/overview/src/styles.scss b/samples/charts/data-pie-chart/overview/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-pie-chart/overview/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-pie-chart/overview/src/typings.d.ts b/samples/charts/data-pie-chart/overview/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-pie-chart/overview/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-pie-chart/overview/tsconfig.app.json b/samples/charts/data-pie-chart/overview/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-pie-chart/overview/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-pie-chart/overview/tsconfig.json b/samples/charts/data-pie-chart/overview/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-pie-chart/overview/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/overview/tslint.json b/samples/charts/data-pie-chart/overview/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-pie-chart/overview/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-pie-chart/selection/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/selection/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-pie-chart/selection/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/selection/.codesandbox/tasks.json b/samples/charts/data-pie-chart/selection/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-pie-chart/selection/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/selection/.stackblitzrc b/samples/charts/data-pie-chart/selection/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-pie-chart/selection/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/selection/angular.json b/samples/charts/data-pie-chart/selection/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-pie-chart/selection/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json new file mode 100644 index 000000000..b5daa37a0 --- /dev/null +++ b/samples/charts/data-pie-chart/selection/package.json @@ -0,0 +1,47 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.0.2", + "@angular/common": "18.0.2", + "@angular/compiler": "18.0.2", + "@angular/core": "18.0.2", + "@angular/forms": "18.0.2", + "@angular/platform-browser": "18.0.2", + "@angular/platform-browser-dynamic": "18.0.2", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "core-js": "3.21.0", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "17.3.1-alpha.0", + "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-inputs": "17.3.1-alpha.0", + "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-webcomponents": "4.11.1", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.0.3", + "@angular/compiler-cli": "18.0.2", + "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.0.3", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.4.5" + } +} diff --git a/samples/charts/data-pie-chart/selection/src/EnergyGlobalDemand.ts b/samples/charts/data-pie-chart/selection/src/EnergyGlobalDemand.ts new file mode 100644 index 000000000..3d2ed388a --- /dev/null +++ b/samples/charts/data-pie-chart/selection/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-pie-chart/selection/src/app.component.html b/samples/charts/data-pie-chart/selection/src/app.component.html new file mode 100644 index 000000000..244408a4e --- /dev/null +++ b/samples/charts/data-pie-chart/selection/src/app.component.html @@ -0,0 +1,39 @@ +
+
+ + + + + + +
+
+ Global Electricity Demand by Energy Use +
+
+ + +
+
diff --git a/samples/charts/data-pie-chart/selection/src/app.component.scss b/samples/charts/data-pie-chart/selection/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-pie-chart/selection/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-pie-chart/selection/src/app.component.ts b/samples/charts/data-pie-chart/selection/src/app.component.ts new file mode 100644 index 000000000..4c3f156a1 --- /dev/null +++ b/samples/charts/data-pie-chart/selection/src/app.component.ts @@ -0,0 +1,55 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-angular-core'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { IgxPropertyEditorPanelComponent } from 'igniteui-angular-layouts'; +import { IgxDataPieChartComponent } from 'igniteui-angular-core'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataPieChartComponent + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + DataPieChartDescriptionModule.register(context); + ItemLegendDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-pie-chart/selection/src/app.module.ts b/samples/charts/data-pie-chart/selection/src/app.module.ts new file mode 100644 index 000000000..a66f493d9 --- /dev/null +++ b/samples/charts/data-pie-chart/selection/src/app.module.ts @@ -0,0 +1,28 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxDataPieChartModule, IgxItemLegendModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxDataPieChartModule, + IgxItemLegendModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-pie-chart/selection/src/environments/environment.prod.ts b/samples/charts/data-pie-chart/selection/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-pie-chart/selection/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-pie-chart/selection/src/environments/environment.ts b/samples/charts/data-pie-chart/selection/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-pie-chart/selection/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-pie-chart/selection/src/index.html b/samples/charts/data-pie-chart/selection/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-pie-chart/selection/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-pie-chart/selection/src/main.ts b/samples/charts/data-pie-chart/selection/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-pie-chart/selection/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-pie-chart/selection/src/polyfills.ts b/samples/charts/data-pie-chart/selection/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/charts/data-pie-chart/selection/src/polyfills.ts @@ -0,0 +1,65 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +// import "core-js/es7/object"; + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ +// import "core-js/es6/reflect"; + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. +// import "core-js/es7/reflect"; + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-pie-chart/selection/src/styles.scss b/samples/charts/data-pie-chart/selection/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-pie-chart/selection/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-pie-chart/selection/src/typings.d.ts b/samples/charts/data-pie-chart/selection/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-pie-chart/selection/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-pie-chart/selection/tsconfig.app.json b/samples/charts/data-pie-chart/selection/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-pie-chart/selection/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-pie-chart/selection/tsconfig.json b/samples/charts/data-pie-chart/selection/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-pie-chart/selection/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/selection/tslint.json b/samples/charts/data-pie-chart/selection/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-pie-chart/selection/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} From ff34c063563af1a90371a9b8ef312d744d7e2de8 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 26 Aug 2024 15:38:07 -0400 Subject: [PATCH 099/154] mdd-update-angular-18.2.1 mdd-update-angular-18.2.1 --- browser/package.json | 46 +++++++-------- browser/scripts/browser.js | 48 +++++++-------- browser/src/browser-info.json | 24 ++++---- .../annotations-all/package.json | 32 +++++----- .../annotations-callouts/package.json | 32 +++++----- .../annotations-crosshairs/package.json | 32 +++++----- .../annotations-custom/package.json | 32 +++++----- .../annotations-final-value/package.json | 32 +++++----- .../annotations-highlighting/package.json | 32 +++++----- .../category-chart/annotations/package.json | 26 ++++----- .../area-chart-multiple-sources/package.json | 28 ++++----- .../area-chart-single-source/package.json | 28 ++++----- .../area-chart-styling/package.json | 28 ++++----- .../category-chart/axis-gap/package.json | 32 +++++----- .../axis-gridlines/package.json | 32 +++++----- .../category-chart/axis-inverted/package.json | 32 +++++----- .../category-chart/axis-labels/package.json | 32 +++++----- .../axis-locations/package.json | 32 +++++----- .../category-chart/axis-options/package.json | 28 ++++----- .../category-chart/axis-overlap/package.json | 32 +++++----- .../category-chart/axis-range/package.json | 32 +++++----- .../axis-tickmarks/package.json | 32 +++++----- .../category-chart/axis-titles/package.json | 28 ++++----- .../chart-highlight-filter/package.json | 32 +++++----- .../package.json | 28 ++++----- .../column-chart-single-source/package.json | 28 ++++----- .../column-chart-styling/package.json | 28 ++++----- .../package.json | 26 ++++----- .../column-chart-with-tooltips/package.json | 32 +++++----- .../custom-selection/package.json | 28 ++++----- .../data-aggregations/package.json | 32 +++++----- .../category-chart/data-filter/package.json | 32 +++++----- .../package.json | 28 ++++----- .../category-chart/data-legend/package.json | 28 ++++----- .../package.json | 28 ++++----- .../data-tooltip-positioning/package.json | 32 +++++----- .../category-chart/data-tooltip/package.json | 28 ++++----- .../format-specifiers/package.json | 32 +++++----- .../high-frequency/package.json | 28 ++++----- .../category-chart/high-volume/package.json | 28 ++++----- .../highlighting-behavior/package.json | 32 +++++----- .../highlighting-mode/package.json | 32 +++++----- .../category-chart/highlighting/package.json | 26 ++++----- .../legend-highlighting/package.json | 28 ++++----- .../line-chart-multiple-sources/package.json | 28 ++++----- .../line-chart-single-source/package.json | 28 ++++----- .../line-chart-styling/package.json | 28 ++++----- .../line-chart-with-animations/package.json | 26 ++++----- .../line-chart-with-annotations/package.json | 26 ++++----- .../line-chart-with-legend/package.json | 26 ++++----- .../marker-options/package.json | 32 +++++----- .../marker-templates/package.json | 26 ++++----- .../category-chart/overview/package.json | 28 ++++----- .../point-chart-multiple-sources/package.json | 28 ++++----- .../point-chart-single-source/package.json | 28 ++++----- .../point-chart-styling/package.json | 28 ++++----- .../selection-modes/package.json | 28 ++++----- .../selection-multiple-modes/package.json | 32 +++++----- .../spline-area-multiple-sources/package.json | 28 ++++----- .../spline-area-single-source/package.json | 28 ++++----- .../spline-area-styling/package.json | 28 ++++----- .../spline-multiple-sources/package.json | 28 ++++----- .../spline-single-source/package.json | 28 ++++----- .../spline-styling/package.json | 28 ++++----- .../category-chart/stack-columns/package.json | 26 ++++----- .../step-area-multiple-sources/package.json | 28 ++++----- .../step-area-single-source/package.json | 28 ++++----- .../step-area-styling/package.json | 28 ++++----- .../step-line-multiple-sources/package.json | 28 ++++----- .../step-line-single-source/package.json | 28 ++++----- .../step-line-styling/package.json | 28 ++++----- .../tooltip-template/package.json | 26 ++++----- .../category-chart/tooltip-types/package.json | 26 ++++----- .../category-chart/trendline/package.json | 26 ++++----- .../category-chart/value-lines/package.json | 32 +++++----- .../annotations-custom/package.json | 28 ++++----- .../package.json | 28 ++++----- .../data-chart/axis-annotations/package.json | 26 ++++----- .../data-chart/axis-crossing/package.json | 26 ++++----- .../axis-label-rotation/package.json | 32 +++++----- .../data-chart/axis-locations/package.json | 26 ++++----- .../data-chart/axis-min-max-gap/package.json | 28 ++++----- .../data-chart/axis-settings/package.json | 26 ++++----- .../data-chart/axis-sharing/package.json | 26 ++++----- .../charts/data-chart/axis-types/package.json | 26 ++++----- .../bar-chart-multiple-sources/package.json | 28 ++++----- .../bar-chart-overlapping/package.json | 28 ++++----- .../bar-chart-single-source/package.json | 28 ++++----- .../data-chart/bar-chart-styling/package.json | 28 ++++----- .../callout-layer-styling/package.json | 28 ++++----- .../package.json | 32 +++++----- .../package.json | 32 +++++----- .../chart-highlight-filter/package.json | 32 +++++----- .../data-chart/chart-navigation/package.json | 26 ++++----- .../data-chart/chart-overview/package.json | 26 ++++----- .../data-chart/chart-performance/package.json | 26 ++++----- .../chart-synchronization/package.json | 26 ++++----- .../data-chart/chart-titles/package.json | 26 ++++----- .../column-chart-styling/package.json | 26 ++++----- .../data-chart/composite-chart/package.json | 26 ++++----- .../crosshair-layer-styling/package.json | 26 ++++----- .../custom-drawing-annotations/package.json | 30 +++++----- .../custom-editing-data/package.json | 26 ++++----- .../data-chart/dash-array-axes/package.json | 26 ++++----- .../data-chart/dash-array-series/package.json | 26 ++++----- .../dash-array-tickmarks/package.json | 26 ++++----- .../dash-array-trendline/package.json | 26 ++++----- .../package.json | 28 ++++----- .../data-legend-grouping/package.json | 28 ++++----- .../data-legend-styling/package.json | 28 ++++----- .../data-chart/data-legend/package.json | 28 ++++----- .../package.json | 32 +++++----- .../data-tooltip-grouping/package.json | 32 +++++----- .../data-tooltip-styling/package.json | 32 +++++----- .../data-chart/data-tooltip/package.json | 28 ++++----- .../final-value-layer-styling/package.json | 26 ++++----- .../financial-price-series/package.json | 28 ++++----- .../data-chart/format-specifiers/package.json | 26 ++++----- .../charts/data-chart/legends/package.json | 26 ++++----- .../polar-area-chart-styling/package.json | 28 ++++----- .../data-chart/polar-area-chart/package.json | 28 ++++----- .../data-chart/polar-chart-types/package.json | 26 ++++----- .../data-chart/polar-line-chart/package.json | 28 ++++----- .../polar-scatter-chart/package.json | 28 ++++----- .../polar-spline-area-chart/package.json | 28 ++++----- .../polar-spline-chart/package.json | 28 ++++----- .../radial-area-chart-styling/package.json | 28 ++++----- .../data-chart/radial-area-chart/package.json | 28 ++++----- .../radial-chart-types/package.json | 26 ++++----- .../package.json | 28 ++++----- .../radial-column-chart/package.json | 28 ++++----- .../data-chart/radial-label-mode/ReadMe.md | 58 +++++++++++++++++++ .../data-chart/radial-label-mode/package.json | 32 +++++----- .../data-chart/radial-line-chart/package.json | 28 ++++----- .../data-chart/radial-pie-chart/package.json | 28 ++++----- .../ReadMe.md | 58 +++++++++++++++++++ .../package.json | 28 ++++----- .../data-chart/range-area-chart/package.json | 28 ++++----- .../range-column-chart/package.json | 28 ++++----- .../package.json | 28 ++++----- .../package.json | 28 ++++----- .../package.json | 28 ++++----- .../scatter-bubble-chart-styling/package.json | 28 ++++----- .../scatter-line-chart/package.json | 28 ++++----- .../scatter-point-chart/package.json | 28 ++++----- .../scatter-spline-chart/package.json | 28 ++++----- .../data-chart/series-animations/package.json | 26 ++++----- .../series-annotations/package.json | 26 ++++----- .../series-highlighting/package.json | 26 ++++----- .../series-marker-template/package.json | 26 ++++----- .../data-chart/series-markers/package.json | 26 ++++----- .../data-chart/series-tooltips/package.json | 26 ++++----- .../data-chart/series-trendlines/package.json | 26 ++++----- .../series-value-overlay/package.json | 26 ++++----- .../stacked-100-area-chart/package.json | 28 ++++----- .../stacked-100-bar-chart/package.json | 28 ++++----- .../stacked-100-column-chart/package.json | 28 ++++----- .../stacked-100-line-chart/package.json | 28 ++++----- .../package.json | 28 ++++----- .../stacked-100-spline-chart/package.json | 28 ++++----- .../stacked-area-chart/package.json | 28 ++++----- .../data-chart/stacked-bar-chart/package.json | 28 ++++----- .../stacked-chart-types/package.json | 26 ++++----- .../stacked-column-chart/package.json | 28 ++++----- .../stacked-line-chart/package.json | 28 ++++----- .../stacked-spline-area-chart/package.json | 28 ++++----- .../stacked-spline-chart/package.json | 28 ++++----- .../data-chart/tooltip-template/package.json | 26 ++++----- .../data-chart/transition-event/package.json | 32 +++++----- .../type-category-area-series/package.json | 26 ++++----- .../type-category-bar-series/package.json | 26 ++++----- .../type-category-column-series/package.json | 26 ++++----- .../type-category-line-series/package.json | 26 ++++----- .../type-category-point-series/package.json | 26 ++++----- .../type-category-series/package.json | 26 ++++----- .../package.json | 26 ++++----- .../type-category-spline-series/package.json | 26 ++++----- .../package.json | 26 ++++----- .../package.json | 26 ++++----- .../package.json | 26 ++++----- .../package.json | 26 ++++----- .../package.json | 26 ++++----- .../package.json | 26 ++++----- .../package.json | 26 ++++----- .../type-financial-ohlc-series/package.json | 26 ++++----- .../type-financial-overlays/package.json | 26 ++++----- .../type-financial-series/package.json | 26 ++++----- .../type-radial-area-series/package.json | 26 ++++----- .../type-radial-column-series/package.json | 26 ++++----- .../type-radial-line-series/package.json | 26 ++++----- .../type-radial-pie-series/package.json | 26 ++++----- .../type-range-area-series/package.json | 26 ++++----- .../type-range-column-series/package.json | 26 ++++----- .../data-chart/type-range-series/package.json | 26 ++++----- .../type-scatter-area-series/package.json | 26 ++++----- .../type-scatter-bubble-series/package.json | 26 ++++----- .../type-scatter-contour-series/package.json | 26 ++++----- .../type-scatter-hd-series/package.json | 26 ++++----- .../type-scatter-line-series/package.json | 26 ++++----- .../type-scatter-point-series/package.json | 26 ++++----- .../type-scatter-polygon-series/package.json | 26 ++++----- .../type-scatter-polyline-series/package.json | 26 ++++----- .../type-scatter-series/package.json | 26 ++++----- .../type-scatter-spline-series/package.json | 26 ++++----- .../data-chart/type-shape-series/package.json | 26 ++++----- .../type-stacked-100-area-series/package.json | 26 ++++----- .../type-stacked-100-bar-series/package.json | 26 ++++----- .../package.json | 26 ++++----- .../type-stacked-100-line-series/package.json | 26 ++++----- .../package.json | 26 ++++----- .../package.json | 26 ++++----- .../type-stacked-area-series/package.json | 26 ++++----- .../type-stacked-bar-series/package.json | 26 ++++----- .../type-stacked-column-series/package.json | 26 ++++----- .../type-stacked-line-series/package.json | 26 ++++----- .../package.json | 26 ++++----- .../type-stacked-spline-series/package.json | 26 ++++----- .../data-chart/waterfall-chart/package.json | 28 ++++----- .../charts/data-pie-chart/animation/ReadMe.md | 58 +++++++++++++++++++ .../data-pie-chart/animation/package.json | 32 +++++----- .../animation/src/app.component.ts | 2 +- .../data-pie-chart/highlighting/ReadMe.md | 58 +++++++++++++++++++ .../data-pie-chart/highlighting/package.json | 32 +++++----- .../highlighting/src/app.component.ts | 2 +- .../charts/data-pie-chart/legend/ReadMe.md | 58 +++++++++++++++++++ .../charts/data-pie-chart/legend/package.json | 32 +++++----- .../legend/src/app.component.ts | 2 +- .../charts/data-pie-chart/others/ReadMe.md | 58 +++++++++++++++++++ .../charts/data-pie-chart/others/package.json | 32 +++++----- .../others/src/app.component.ts | 2 +- .../charts/data-pie-chart/overview/ReadMe.md | 58 +++++++++++++++++++ .../data-pie-chart/overview/package.json | 28 ++++----- .../overview/src/app.component.ts | 2 +- .../charts/data-pie-chart/selection/ReadMe.md | 58 +++++++++++++++++++ .../data-pie-chart/selection/package.json | 32 +++++----- .../selection/src/app.component.ts | 2 +- .../doughnut-chart/animation/package.json | 26 ++++----- .../doughnut-chart/explosion/package.json | 26 ++++----- .../charts/doughnut-chart/legend/package.json | 28 ++++----- .../doughnut-chart/overview/package.json | 28 ++++----- .../charts/doughnut-chart/rings/package.json | 28 ++++----- .../doughnut-chart/selection/package.json | 26 ++++----- .../financial-chart/annotations/package.json | 26 ++++----- .../financial-chart/axis-types/package.json | 26 ++++----- .../package.json | 28 ++++----- .../data-legend-styling-props/package.json | 28 ++++----- .../financial-chart/data-legend/package.json | 28 ++++----- .../package.json | 28 ++++----- .../data-tooltip-styling-props/package.json | 28 ++++----- .../financial-chart/data-tooltip/package.json | 28 ++++----- .../format-specifiers/package.json | 28 ++++----- .../high-frequency/package.json | 26 ++++----- .../financial-chart/high-volume/package.json | 26 ++++----- .../indicator-customization/package.json | 26 ++++----- .../indicator-types/package.json | 26 ++++----- .../multiple-data/package.json | 26 ++++----- .../multiple-feeds/package.json | 26 ++++----- .../financial-chart/overview/package.json | 26 ++++----- .../charts/financial-chart/panes/package.json | 26 ++++----- .../financial-chart/performance/package.json | 26 ++++----- .../financial-chart/scrollbars/package.json | 28 ++++----- .../stock-index-chart/package.json | 26 ++++----- .../financial-chart/styling/package.json | 26 ++++----- .../financial-chart/theming/package.json | 26 ++++----- .../time-based-data/package.json | 26 ++++----- .../financial-chart/titles/package.json | 26 ++++----- .../tooltip-template/package.json | 26 ++++----- .../tooltip-types/package.json | 26 ++++----- .../financial-chart/trendlines/package.json | 26 ++++----- .../financial-chart/volume-types/package.json | 26 ++++----- .../charts/pie-chart/animation/package.json | 26 ++++----- .../charts/pie-chart/explosion/package.json | 26 ++++----- samples/charts/pie-chart/legend/package.json | 28 ++++----- samples/charts/pie-chart/others/package.json | 28 ++++----- .../charts/pie-chart/overview/package.json | 28 ++++----- .../charts/pie-chart/selection/package.json | 26 ++++----- samples/charts/pie-chart/styling/package.json | 28 ++++----- .../sparkline/display-area/package.json | 28 ++++----- .../sparkline/display-column/package.json | 28 ++++----- .../sparkline/display-lines/package.json | 32 +++++----- .../sparkline/display-types/package.json | 26 ++++----- .../sparkline/display-winloss/package.json | 28 ++++----- samples/charts/sparkline/grid/package.json | 30 +++++----- samples/charts/sparkline/markers/package.json | 32 +++++----- .../sparkline/normal-range/package.json | 32 +++++----- .../charts/sparkline/trendlines/package.json | 32 +++++----- .../sparkline/unknown-values/package.json | 32 +++++----- .../package.json | 32 +++++----- .../actions-built-in-data-chart/package.json | 32 +++++----- .../charts/toolbar/custom-tool/package.json | 32 +++++----- .../package.json | 32 +++++----- .../package.json | 32 +++++----- samples/charts/toolbar/theming/package.json | 32 +++++----- samples/charts/tree-map/events/package.json | 28 ++++----- .../highlighting-percent-based/package.json | 28 ++++----- .../charts/tree-map/highlighting/package.json | 32 +++++----- samples/charts/tree-map/layout/package.json | 32 +++++----- samples/charts/tree-map/overview/package.json | 28 ++++----- samples/charts/tree-map/styling/package.json | 28 ++++----- .../charts/zoomslider/overview/package.json | 26 ++++----- .../operations-on-workbooks/package.json | 28 ++++----- .../operations-on-worksheets/package.json | 26 ++++----- .../excel/excel-library/overview/package.json | 26 ++++----- .../working-with-cells/package.json | 26 ++++----- .../working-with-charts/package.json | 30 +++++----- .../working-with-sparklines/package.json | 30 +++++----- .../working-with-tables/package.json | 30 +++++----- .../excel/spreadsheet/activation/package.json | 28 ++++----- .../spreadsheet/adapter-chart/package.json | 32 +++++----- .../spreadsheet/adapter-combo/package.json | 32 +++++----- .../excel/spreadsheet/clipboard/package.json | 28 ++++----- .../excel/spreadsheet/commands/package.json | 28 ++++----- .../conditional-formatting/package.json | 28 ++++----- .../spreadsheet/config-options/package.json | 28 ++++----- .../spreadsheet/data-validation/package.json | 28 ++++----- .../excel/spreadsheet/hyperlinks/package.json | 28 ++++----- .../excel/spreadsheet/overview/package.json | 28 ++++----- .../bullet-graph/animation/package.json | 28 ++++----- .../bullet-graph/background/package.json | 26 ++++----- .../highlight-needle/package.json | 26 ++++----- .../gauges/bullet-graph/labels/package.json | 26 ++++----- .../gauges/bullet-graph/measures/package.json | 26 ++++----- .../gauges/bullet-graph/ranges/package.json | 26 ++++----- .../gauges/bullet-graph/scale/package.json | 26 ++++----- .../bullet-graph/tickmarks/package.json | 26 ++++----- .../linear-gauge/animation/package.json | 28 ++++----- .../gauges/linear-gauge/backing/package.json | 26 ++++----- .../highlight-needle/package.json | 26 ++++----- .../gauges/linear-gauge/labels/package.json | 26 ++++----- .../gauges/linear-gauge/needle/package.json | 26 ++++----- .../gauges/linear-gauge/ranges/package.json | 26 ++++----- .../gauges/linear-gauge/scale/package.json | 26 ++++----- .../linear-gauge/tickmarks/package.json | 26 ++++----- .../radial-gauge/animation/package.json | 28 ++++----- .../gauges/radial-gauge/backing/package.json | 26 ++++----- .../highlight-needle/package.json | 26 ++++----- .../gauges/radial-gauge/labels/package.json | 26 ++++----- .../gauges/radial-gauge/needle/package.json | 26 ++++----- .../radial-gauge/optical-scaling/package.json | 26 ++++----- .../gauges/radial-gauge/ranges/package.json | 26 ++++----- .../gauges/radial-gauge/scale/package.json | 26 ++++----- .../radial-gauge/tickmarks/package.json | 26 ++++----- .../geo-map/binding-data-csv/package.json | 28 ++++----- .../binding-data-json-points/package.json | 28 ++++----- .../geo-map/binding-data-model/package.json | 28 ++++----- .../binding-multiple-shapes/package.json | 28 ++++----- .../binding-multiple-sources/package.json | 28 ++++----- .../geo-map/binding-shp-points/package.json | 28 ++++----- .../geo-map/binding-shp-polygons/package.json | 28 ++++----- .../binding-shp-polylines/package.json | 28 ++++----- .../maps/geo-map/custom-tooltips/package.json | 28 ++++----- .../geo-map/display-bing-imagery/package.json | 28 ++++----- .../geo-map/display-esri-imagery/package.json | 28 ++++----- .../geo-map/display-heat-imagery/package.json | 28 ++++----- .../geo-map/display-osm-imagery/package.json | 28 ++++----- .../maps/geo-map/marker-layouts/package.json | 28 ++++----- .../maps/geo-map/marker-template/package.json | 28 ++++----- samples/maps/geo-map/marker-type/package.json | 28 ++++----- samples/maps/geo-map/navigation/package.json | 28 ++++----- samples/maps/geo-map/overview/package.json | 28 ++++----- .../maps/geo-map/shape-styling/package.json | 28 ++++----- .../geo-map/triangulating-data/package.json | 28 ++++----- .../type-scatter-area-series/package.json | 28 ++++----- .../type-scatter-bubble-series/package.json | 28 ++++----- .../type-scatter-contour-series/package.json | 28 ++++----- .../type-scatter-density-series/package.json | 28 ++++----- .../type-scatter-symbol-series/package.json | 28 ++++----- .../type-shape-polygon-series/package.json | 28 ++++----- .../type-shape-polyline-series/package.json | 28 ++++----- 369 files changed, 5424 insertions(+), 4960 deletions(-) create mode 100644 samples/charts/data-chart/radial-label-mode/ReadMe.md create mode 100644 samples/charts/data-chart/radial-pie-proportional-category-angle-axis/ReadMe.md create mode 100644 samples/charts/data-pie-chart/animation/ReadMe.md create mode 100644 samples/charts/data-pie-chart/highlighting/ReadMe.md create mode 100644 samples/charts/data-pie-chart/legend/ReadMe.md create mode 100644 samples/charts/data-pie-chart/others/ReadMe.md create mode 100644 samples/charts/data-pie-chart/overview/ReadMe.md create mode 100644 samples/charts/data-pie-chart/selection/ReadMe.md diff --git a/browser/package.json b/browser/package.json index 23bcb67b8..a7289ed94 100644 --- a/browser/package.json +++ b/browser/package.json @@ -21,13 +21,13 @@ "url": "git://github.com/IgniteUI/@infragistics/igniteui-angular-examples/repository.git" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@angular/router": "18.0.2", "@ionic/angular": "5.6.3", "@types/file-saver": "2.0.5", @@ -38,17 +38,17 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.3", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", - "igniteui-angular-spreadsheet": "17.3.1-alpha.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", - "igniteui-theming": "6.4.0-beta.2", + "igniteui-angular": "18.1.7", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", + "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", + "igniteui-angular-maps": "18.1.0", + "igniteui-angular-spreadsheet": "18.1.0", + "igniteui-angular-spreadsheet-chart-adapter": "18.1.0", + "igniteui-theming": "11.0.0", "igniteui-webcomponents": "4.11.1", "immediate": "3.2.3", "intl": "1.2.5", @@ -62,10 +62,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/jasmine": "3.10.2", "@types/jasminewd2": "2.0.9", "@types/node": "18.17.0", @@ -92,4 +92,4 @@ "tslint": "~6.1.3", "typescript": "5.4.5" } -} \ No newline at end of file +} diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index f6b854281..41aa56760 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1073,27 +1073,27 @@ function updateIG(cb) { // { name: "igniteui-angular-charts", version: "14.1.0" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { name: "igniteui-angular-core" , version: "17.3.1-alpha.0" }, - { name: "igniteui-angular-charts" , version: "17.3.1-alpha.0" }, - { name: "igniteui-angular-excel" , version: "17.3.1-alpha.0" }, - { name: "igniteui-angular-gauges" , version: "17.3.1-alpha.0" }, - { name: "igniteui-angular-inputs" , version: "17.3.1-alpha.0" }, - { name: "igniteui-angular-layouts" , version: "17.3.1-alpha.0" }, - { name: "igniteui-angular-maps" , version: "17.3.1-alpha.0" }, - { name: "igniteui-angular-spreadsheet-chart-adapter", version: "17.3.1-alpha.0" }, - { name: "igniteui-angular-spreadsheet" , version: "17.3.1-alpha.0" }, - { name: "igniteui-angular-datasources" , version: "17.3.1-alpha.0" }, + { name: "igniteui-angular-core" , version: "18.1.0" }, + { name: "igniteui-angular-charts" , version: "18.1.0" }, + { name: "igniteui-angular-excel" , version: "18.1.0" }, + { name: "igniteui-angular-gauges" , version: "18.1.0" }, + { name: "igniteui-angular-inputs" , version: "18.1.0" }, + { name: "igniteui-angular-layouts" , version: "18.1.0" }, + { name: "igniteui-angular-maps" , version: "18.1.0" }, + { name: "igniteui-angular-spreadsheet-chart-adapter", version: "18.1.0" }, + { name: "igniteui-angular-spreadsheet" , version: "18.1.0" }, + { name: "igniteui-angular-datasources" , version: "18.1.0" }, // these IG packages are sometimes updated: - { name: "igniteui-webcomponents", version: "4.9.0" }, - { name: "igniteui-theming", version: "6.4.0-beta.2" }, - { name: "igniteui-angular", version: "17.2.3" }, - { name: "@angular/animations", version: "18.0.2" }, - { name: "@angular/common", version: "18.0.2" }, - { name: "@angular/compiler", version: "18.0.2" }, - { name: "@angular/core", version: "18.0.2" }, - { name: "@angular/forms", version: "18.0.2" }, - { name: "@angular/platform-browser", version: "18.0.2" }, - { name: "@angular/platform-browser-dynamic", version: "18.0.2" }, + { name: "igniteui-webcomponents", version: "4.11.1" }, + { name: "igniteui-theming", version: "11.0.0" }, + { name: "igniteui-angular", version: "18.1.7" }, + { name: "@angular/animations", version: "18.2.1" }, + { name: "@angular/common", version: "18.2.1" }, + { name: "@angular/compiler", version: "18.2.1" }, + { name: "@angular/core", version: "18.2.1" }, + { name: "@angular/forms", version: "18.2.1" }, + { name: "@angular/platform-browser", version: "18.2.1" }, + { name: "@angular/platform-browser-dynamic", version: "18.2.1" }, { name: "@types/hammerjs", version: "2.0.40" }, { name: "classlist-js", version: "1.1.20150312" }, { name: "core-js", version: "3.21.0" }, @@ -1105,10 +1105,10 @@ function updateIG(cb) { { name: "web-animations-js", version: "2.3.2" }, { name: "zone.js", version: "~0.14.4" }, // dev packages: - { name: "@angular/cli", version: "18.0.3"}, - { name: "@angular/compiler-cli", version: "18.0.2"}, - { name: "@angular/language-service", version: "18.0.2"}, - { name: "@angular-devkit/build-angular", version: "18.0.3"}, + { name: "@angular/cli", version: "18.2.1"}, + { name: "@angular/compiler-cli", version: "18.2.1"}, + { name: "@angular/language-service", version: "18.2.1"}, + { name: "@angular-devkit/build-angular", version: "18.2.1"}, { name: "@types/node", version: "18.17.0"}, { name: "codelyzer", version: "6.0.2"}, { name: "jasmine-core", version: "5.1.1"}, diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index e8e2478a9..fa9a92bb9 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,14 +1,14 @@ [ -{"ver":"17.2.3","name":"igniteui-angular"}, -{"ver":"17.3.1-alpha.0","name":"igniteui-angular-charts"}, -{"ver":"17.3.1-alpha.0","name":"igniteui-angular-core"}, -{"ver":"17.3.1-alpha.0","name":"igniteui-angular-excel"}, -{"ver":"17.3.1-alpha.0","name":"igniteui-angular-gauges"}, -{"ver":"17.3.1-alpha.0","name":"igniteui-angular-inputs"}, -{"ver":"17.3.1-alpha.0","name":"igniteui-angular-layouts"}, -{"ver":"17.3.1-alpha.0","name":"igniteui-angular-maps"}, -{"ver":"17.3.1-alpha.0","name":"igniteui-angular-spreadsheet"}, -{"ver":"17.3.1-alpha.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, -{"ver":"6.4.0-beta.2","name":"igniteui-theming"}, -{"ver":"4.9.0","name":"igniteui-webcomponents"} +{"ver":"18.1.7","name":"igniteui-angular"}, +{"ver":"18.1.0","name":"igniteui-angular-charts"}, +{"ver":"18.1.0","name":"igniteui-angular-core"}, +{"ver":"18.1.0","name":"igniteui-angular-excel"}, +{"ver":"18.1.0","name":"igniteui-angular-gauges"}, +{"ver":"18.1.0","name":"igniteui-angular-inputs"}, +{"ver":"18.1.0","name":"igniteui-angular-layouts"}, +{"ver":"18.1.0","name":"igniteui-angular-maps"}, +{"ver":"18.1.0","name":"igniteui-angular-spreadsheet"}, +{"ver":"18.1.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"11.0.0","name":"igniteui-theming"}, +{"ver":"4.11.1","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index c00995265..639df4276 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index c00995265..639df4276 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 40af1b91b..d08a923a5 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 2ed37da1b..cadf185dc 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.3", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular": "18.1.7", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 2ed37da1b..cadf185dc 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.3", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular": "18.1.7", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index c00995265..639df4276 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index c00995265..639df4276 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index c00995265..639df4276 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index c00995265..639df4276 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index c00995265..639df4276 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index c00995265..639df4276 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index c00995265..639df4276 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index c00995265..639df4276 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index c00995265..639df4276 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 8d0b55778..d08a923a5 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index 40af1b91b..d08a923a5 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index 40af1b91b..d08a923a5 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index 40af1b91b..d08a923a5 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-label-mode/ReadMe.md b/samples/charts/data-chart/radial-label-mode/ReadMe.md new file mode 100644 index 000000000..140782bec --- /dev/null +++ b/samples/charts/data-chart/radial-label-mode/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Radial Label Mode feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/radial-label-mode +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/ReadMe.md b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/ReadMe.md new file mode 100644 index 000000000..18a3e80fa --- /dev/null +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Radial Pie Proportional Category Angle Axis feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/radial-pie-proportional-category-angle-axis +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index c00995265..639df4276 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-pie-chart/animation/ReadMe.md b/samples/charts/data-pie-chart/animation/ReadMe.md new file mode 100644 index 000000000..10e079d86 --- /dev/null +++ b/samples/charts/data-pie-chart/animation/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Animation feature using [DataPieChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-pie-chart/animation +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-pie-chart/animation/src/app.component.ts b/samples/charts/data-pie-chart/animation/src/app.component.ts index 4c3f156a1..7bd639bf7 100644 --- a/samples/charts/data-pie-chart/animation/src/app.component.ts +++ b/samples/charts/data-pie-chart/animation/src/app.component.ts @@ -2,7 +2,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDet import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-angular-core'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; import { IgxPropertyEditorPanelComponent } from 'igniteui-angular-layouts'; -import { IgxDataPieChartComponent } from 'igniteui-angular-core'; +import { IgxDataPieChartComponent } from 'igniteui-angular-charts'; import { defineAllComponents } from 'igniteui-webcomponents'; diff --git a/samples/charts/data-pie-chart/highlighting/ReadMe.md b/samples/charts/data-pie-chart/highlighting/ReadMe.md new file mode 100644 index 000000000..890518a08 --- /dev/null +++ b/samples/charts/data-pie-chart/highlighting/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Highlighting feature using [DataPieChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-pie-chart/highlighting +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-pie-chart/highlighting/src/app.component.ts b/samples/charts/data-pie-chart/highlighting/src/app.component.ts index 4c3f156a1..7bd639bf7 100644 --- a/samples/charts/data-pie-chart/highlighting/src/app.component.ts +++ b/samples/charts/data-pie-chart/highlighting/src/app.component.ts @@ -2,7 +2,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDet import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-angular-core'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; import { IgxPropertyEditorPanelComponent } from 'igniteui-angular-layouts'; -import { IgxDataPieChartComponent } from 'igniteui-angular-core'; +import { IgxDataPieChartComponent } from 'igniteui-angular-charts'; import { defineAllComponents } from 'igniteui-webcomponents'; diff --git a/samples/charts/data-pie-chart/legend/ReadMe.md b/samples/charts/data-pie-chart/legend/ReadMe.md new file mode 100644 index 000000000..bc41de432 --- /dev/null +++ b/samples/charts/data-pie-chart/legend/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Legend feature using [DataPieChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-pie-chart/legend +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index 40af1b91b..d08a923a5 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-pie-chart/legend/src/app.component.ts b/samples/charts/data-pie-chart/legend/src/app.component.ts index b4bb8078e..fe1f74e33 100644 --- a/samples/charts/data-pie-chart/legend/src/app.component.ts +++ b/samples/charts/data-pie-chart/legend/src/app.component.ts @@ -2,7 +2,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDet import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-angular-core'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; import { IgxItemLegendComponent } from 'igniteui-angular-charts'; -import { IgxDataPieChartComponent } from 'igniteui-angular-core'; +import { IgxDataPieChartComponent } from 'igniteui-angular-charts'; @Component({ selector: "app-root", diff --git a/samples/charts/data-pie-chart/others/ReadMe.md b/samples/charts/data-pie-chart/others/ReadMe.md new file mode 100644 index 000000000..9a63356f3 --- /dev/null +++ b/samples/charts/data-pie-chart/others/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Others feature using [DataPieChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-pie-chart/others +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-pie-chart/others/src/app.component.ts b/samples/charts/data-pie-chart/others/src/app.component.ts index 4c3f156a1..7bd639bf7 100644 --- a/samples/charts/data-pie-chart/others/src/app.component.ts +++ b/samples/charts/data-pie-chart/others/src/app.component.ts @@ -2,7 +2,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDet import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-angular-core'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; import { IgxPropertyEditorPanelComponent } from 'igniteui-angular-layouts'; -import { IgxDataPieChartComponent } from 'igniteui-angular-core'; +import { IgxDataPieChartComponent } from 'igniteui-angular-charts'; import { defineAllComponents } from 'igniteui-webcomponents'; diff --git a/samples/charts/data-pie-chart/overview/ReadMe.md b/samples/charts/data-pie-chart/overview/ReadMe.md new file mode 100644 index 000000000..edc930ca2 --- /dev/null +++ b/samples/charts/data-pie-chart/overview/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Overview feature using [DataPieChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-pie-chart/overview +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-pie-chart/overview/src/app.component.ts b/samples/charts/data-pie-chart/overview/src/app.component.ts index 9aba1c969..2ddce8045 100644 --- a/samples/charts/data-pie-chart/overview/src/app.component.ts +++ b/samples/charts/data-pie-chart/overview/src/app.component.ts @@ -1,6 +1,6 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; -import { IgxDataPieChartComponent } from 'igniteui-angular-core'; +import { IgxDataPieChartComponent } from 'igniteui-angular-charts'; @Component({ selector: "app-root", diff --git a/samples/charts/data-pie-chart/selection/ReadMe.md b/samples/charts/data-pie-chart/selection/ReadMe.md new file mode 100644 index 000000000..ec371dacd --- /dev/null +++ b/samples/charts/data-pie-chart/selection/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Selection feature using [DataPieChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-pie-chart/selection +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/data-pie-chart/selection/src/app.component.ts b/samples/charts/data-pie-chart/selection/src/app.component.ts index 4c3f156a1..7bd639bf7 100644 --- a/samples/charts/data-pie-chart/selection/src/app.component.ts +++ b/samples/charts/data-pie-chart/selection/src/app.component.ts @@ -2,7 +2,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDet import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-angular-core'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; import { IgxPropertyEditorPanelComponent } from 'igniteui-angular-layouts'; -import { IgxDataPieChartComponent } from 'igniteui-angular-core'; +import { IgxDataPieChartComponent } from 'igniteui-angular-charts'; import { defineAllComponents } from 'igniteui-webcomponents'; diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index c00995265..639df4276 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index c00995265..639df4276 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index c00995265..639df4276 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index c00995265..639df4276 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index c00995265..639df4276 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index c00995265..639df4276 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index c00995265..639df4276 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 40af1b91b..d08a923a5 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index c00995265..639df4276 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 9ce8896a4..d53877ea2 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.3", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-theming": "6.4.0-beta.2", + "igniteui-angular": "18.1.7", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-theming": "11.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 40af1b91b..d08a923a5 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 40af1b91b..d08a923a5 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 40af1b91b..d08a923a5 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 40af1b91b..d08a923a5 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 40af1b91b..d08a923a5 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 2ed37da1b..cadf185dc 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.3", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular": "18.1.7", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index b5daa37a0..0f89cb52c 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-inputs": "17.3.1-alpha.0", - "igniteui-angular-layouts": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", "igniteui-webcomponents": "4.11.1", "intl": "1.2.5", "jszip": "3.8.0", @@ -31,17 +31,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 51b8ad913..639df4276 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,17 +28,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", - "@angular-devkit/build-angular": "18.0.3", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.4.5" } } diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index c00995265..639df4276 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 31ed4be9c..eb4fecd93 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.3", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular": "18.1.7", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 2534a501c..44e7ed857 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 2534a501c..44e7ed857 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 2534a501c..44e7ed857 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index f68bd330b..99bf65387 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -7,23 +7,23 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.3", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular": "18.1.7", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -32,10 +32,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index f68bd330b..99bf65387 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -7,23 +7,23 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.3", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", + "igniteui-angular": "18.1.7", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -32,10 +32,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index dc4caffcc..0f3074701 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -7,23 +7,23 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", - "igniteui-angular-spreadsheet": "17.3.1-alpha.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", + "igniteui-angular-spreadsheet": "18.1.0", + "igniteui-angular-spreadsheet-chart-adapter": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -32,10 +32,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 8ef049cc0..fb41d1b02 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", - "igniteui-angular-spreadsheet": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", + "igniteui-angular-spreadsheet": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 25d470cad..c1509d337 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -7,24 +7,24 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", - "igniteui-angular-spreadsheet": "17.3.1-alpha.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", + "igniteui-angular-spreadsheet": "18.1.0", + "igniteui-angular-spreadsheet-chart-adapter": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -33,10 +33,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index 25d470cad..c1509d337 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -7,24 +7,24 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", - "igniteui-angular-spreadsheet": "17.3.1-alpha.0", - "igniteui-angular-spreadsheet-chart-adapter": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", + "igniteui-angular-spreadsheet": "18.1.0", + "igniteui-angular-spreadsheet-chart-adapter": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -33,10 +33,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index 8ef049cc0..fb41d1b02 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", - "igniteui-angular-spreadsheet": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", + "igniteui-angular-spreadsheet": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 8ef049cc0..fb41d1b02 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", - "igniteui-angular-spreadsheet": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", + "igniteui-angular-spreadsheet": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index 8ef049cc0..fb41d1b02 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", - "igniteui-angular-spreadsheet": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", + "igniteui-angular-spreadsheet": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 8ef049cc0..fb41d1b02 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", - "igniteui-angular-spreadsheet": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", + "igniteui-angular-spreadsheet": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 8ef049cc0..fb41d1b02 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", - "igniteui-angular-spreadsheet": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", + "igniteui-angular-spreadsheet": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 8ef049cc0..fb41d1b02 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", - "igniteui-angular-spreadsheet": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", + "igniteui-angular-spreadsheet": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index 8ef049cc0..fb41d1b02 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-excel": "17.3.1-alpha.0", - "igniteui-angular-spreadsheet": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-excel": "18.1.0", + "igniteui-angular-spreadsheet": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 55b6cb017..bde968d6a 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.3", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular": "18.1.7", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 55b6cb017..bde968d6a 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.3", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular": "18.1.7", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 55b6cb017..bde968d6a 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "17.2.3", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular": "18.1.7", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 34bf28141..5aabd6084 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-gauges": "17.3.1-alpha.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-gauges": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 536637483..3dfc2c843 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.0.2", - "@angular/common": "18.0.2", - "@angular/compiler": "18.0.2", - "@angular/core": "18.0.2", - "@angular/forms": "18.0.2", - "@angular/platform-browser": "18.0.2", - "@angular/platform-browser-dynamic": "18.0.2", + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "17.3.1-alpha.0", - "igniteui-angular-core": "17.3.1-alpha.0", - "igniteui-angular-maps": "17.3.1-alpha.0", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-maps": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.0.3", - "@angular/cli": "18.0.3", - "@angular/compiler-cli": "18.0.2", - "@angular/language-service": "18.0.2", + "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", From f829902ae6dff055aedc7f310c050794d0d57ec6 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 26 Aug 2024 16:12:01 -0400 Subject: [PATCH 100/154] Update app.component.html --- .../src/app.component.html | 1 - 1 file changed, 1 deletion(-) diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.html b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.html index 5fba2f36e..8ad5eab8f 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.html +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.html @@ -3,7 +3,6 @@ Date: Tue, 27 Aug 2024 10:20:58 -0400 Subject: [PATCH 101/154] update update --- browser/package.json | 2 +- browser/scripts/browser.js | 2 +- samples/charts/category-chart/annotations-all/package.json | 2 +- samples/charts/category-chart/annotations-callouts/package.json | 2 +- .../charts/category-chart/annotations-crosshairs/package.json | 2 +- samples/charts/category-chart/annotations-custom/package.json | 2 +- .../charts/category-chart/annotations-final-value/package.json | 2 +- .../charts/category-chart/annotations-highlighting/package.json | 2 +- samples/charts/category-chart/annotations/package.json | 2 +- .../category-chart/area-chart-multiple-sources/package.json | 2 +- .../charts/category-chart/area-chart-single-source/package.json | 2 +- samples/charts/category-chart/area-chart-styling/package.json | 2 +- samples/charts/category-chart/axis-gap/package.json | 2 +- samples/charts/category-chart/axis-gridlines/package.json | 2 +- samples/charts/category-chart/axis-inverted/package.json | 2 +- samples/charts/category-chart/axis-labels/package.json | 2 +- samples/charts/category-chart/axis-locations/package.json | 2 +- samples/charts/category-chart/axis-options/package.json | 2 +- samples/charts/category-chart/axis-overlap/package.json | 2 +- samples/charts/category-chart/axis-range/package.json | 2 +- samples/charts/category-chart/axis-tickmarks/package.json | 2 +- samples/charts/category-chart/axis-titles/package.json | 2 +- .../charts/category-chart/chart-highlight-filter/package.json | 2 +- .../category-chart/column-chart-multiple-sources/package.json | 2 +- .../category-chart/column-chart-single-source/package.json | 2 +- samples/charts/category-chart/column-chart-styling/package.json | 2 +- .../category-chart/column-chart-with-highlighting/package.json | 2 +- .../category-chart/column-chart-with-tooltips/package.json | 2 +- samples/charts/category-chart/custom-selection/package.json | 2 +- samples/charts/category-chart/data-aggregations/package.json | 2 +- samples/charts/category-chart/data-filter/package.json | 2 +- .../category-chart/data-legend-formatting-decimals/package.json | 2 +- samples/charts/category-chart/data-legend/package.json | 2 +- .../data-tooltip-formatting-decimals/package.json | 2 +- .../charts/category-chart/data-tooltip-positioning/package.json | 2 +- samples/charts/category-chart/data-tooltip/package.json | 2 +- samples/charts/category-chart/format-specifiers/package.json | 2 +- samples/charts/category-chart/high-frequency/package.json | 2 +- samples/charts/category-chart/high-volume/package.json | 2 +- .../charts/category-chart/highlighting-behavior/package.json | 2 +- samples/charts/category-chart/highlighting-mode/package.json | 2 +- samples/charts/category-chart/highlighting/package.json | 2 +- samples/charts/category-chart/legend-highlighting/package.json | 2 +- .../category-chart/line-chart-multiple-sources/package.json | 2 +- .../charts/category-chart/line-chart-single-source/package.json | 2 +- samples/charts/category-chart/line-chart-styling/package.json | 2 +- .../category-chart/line-chart-with-animations/package.json | 2 +- .../category-chart/line-chart-with-annotations/package.json | 2 +- .../charts/category-chart/line-chart-with-legend/package.json | 2 +- samples/charts/category-chart/marker-options/package.json | 2 +- samples/charts/category-chart/marker-templates/package.json | 2 +- samples/charts/category-chart/overview/package.json | 2 +- .../category-chart/point-chart-multiple-sources/package.json | 2 +- .../category-chart/point-chart-single-source/package.json | 2 +- samples/charts/category-chart/point-chart-styling/package.json | 2 +- samples/charts/category-chart/selection-modes/package.json | 2 +- .../charts/category-chart/selection-multiple-modes/package.json | 2 +- .../category-chart/spline-area-multiple-sources/package.json | 2 +- .../category-chart/spline-area-single-source/package.json | 2 +- samples/charts/category-chart/spline-area-styling/package.json | 2 +- .../charts/category-chart/spline-multiple-sources/package.json | 2 +- samples/charts/category-chart/spline-single-source/package.json | 2 +- samples/charts/category-chart/spline-styling/package.json | 2 +- samples/charts/category-chart/stack-columns/package.json | 2 +- .../category-chart/step-area-multiple-sources/package.json | 2 +- .../charts/category-chart/step-area-single-source/package.json | 2 +- samples/charts/category-chart/step-area-styling/package.json | 2 +- .../category-chart/step-line-multiple-sources/package.json | 2 +- .../charts/category-chart/step-line-single-source/package.json | 2 +- samples/charts/category-chart/step-line-styling/package.json | 2 +- samples/charts/category-chart/tooltip-template/package.json | 2 +- samples/charts/category-chart/tooltip-types/package.json | 2 +- samples/charts/category-chart/trendline/package.json | 2 +- samples/charts/category-chart/value-lines/package.json | 2 +- samples/charts/data-chart/annotations-custom/package.json | 2 +- .../data-chart/axis-annotations-corner-radius/package.json | 2 +- samples/charts/data-chart/axis-annotations/package.json | 2 +- samples/charts/data-chart/axis-crossing/package.json | 2 +- samples/charts/data-chart/axis-label-rotation/package.json | 2 +- samples/charts/data-chart/axis-locations/package.json | 2 +- samples/charts/data-chart/axis-min-max-gap/package.json | 2 +- samples/charts/data-chart/axis-settings/package.json | 2 +- samples/charts/data-chart/axis-sharing/package.json | 2 +- samples/charts/data-chart/axis-types/package.json | 2 +- .../charts/data-chart/bar-chart-multiple-sources/package.json | 2 +- samples/charts/data-chart/bar-chart-overlapping/package.json | 2 +- samples/charts/data-chart/bar-chart-single-source/package.json | 2 +- samples/charts/data-chart/bar-chart-styling/package.json | 2 +- samples/charts/data-chart/callout-layer-styling/package.json | 2 +- .../data-chart/chart-highlight-filter-datasource/package.json | 2 +- .../chart-highlight-filter-multiple-series/package.json | 2 +- samples/charts/data-chart/chart-highlight-filter/package.json | 2 +- samples/charts/data-chart/chart-navigation/package.json | 2 +- samples/charts/data-chart/chart-overview/package.json | 2 +- samples/charts/data-chart/chart-performance/package.json | 2 +- samples/charts/data-chart/chart-synchronization/package.json | 2 +- samples/charts/data-chart/chart-titles/package.json | 2 +- samples/charts/data-chart/column-chart-styling/package.json | 2 +- samples/charts/data-chart/composite-chart/package.json | 2 +- samples/charts/data-chart/crosshair-layer-styling/package.json | 2 +- .../charts/data-chart/custom-drawing-annotations/package.json | 2 +- samples/charts/data-chart/custom-editing-data/package.json | 2 +- samples/charts/data-chart/dash-array-axes/package.json | 2 +- samples/charts/data-chart/dash-array-series/package.json | 2 +- samples/charts/data-chart/dash-array-tickmarks/package.json | 2 +- samples/charts/data-chart/dash-array-trendline/package.json | 2 +- .../data-legend-grouping-and-highlighting/package.json | 2 +- samples/charts/data-chart/data-legend-grouping/package.json | 2 +- samples/charts/data-chart/data-legend-styling/package.json | 2 +- samples/charts/data-chart/data-legend/package.json | 2 +- .../data-tooltip-grouping-and-highlighting/package.json | 2 +- samples/charts/data-chart/data-tooltip-grouping/package.json | 2 +- samples/charts/data-chart/data-tooltip-styling/package.json | 2 +- samples/charts/data-chart/data-tooltip/package.json | 2 +- .../charts/data-chart/final-value-layer-styling/package.json | 2 +- samples/charts/data-chart/financial-price-series/package.json | 2 +- samples/charts/data-chart/format-specifiers/package.json | 2 +- samples/charts/data-chart/legends/package.json | 2 +- samples/charts/data-chart/polar-area-chart-styling/package.json | 2 +- samples/charts/data-chart/polar-area-chart/package.json | 2 +- samples/charts/data-chart/polar-chart-types/package.json | 2 +- samples/charts/data-chart/polar-line-chart/package.json | 2 +- samples/charts/data-chart/polar-scatter-chart/package.json | 2 +- samples/charts/data-chart/polar-spline-area-chart/package.json | 2 +- samples/charts/data-chart/polar-spline-chart/package.json | 2 +- .../charts/data-chart/radial-area-chart-styling/package.json | 2 +- samples/charts/data-chart/radial-area-chart/package.json | 2 +- samples/charts/data-chart/radial-chart-types/package.json | 2 +- .../data-chart/radial-column-chart-selection/package.json | 2 +- samples/charts/data-chart/radial-column-chart/package.json | 2 +- samples/charts/data-chart/radial-label-mode/package.json | 2 +- samples/charts/data-chart/radial-line-chart/package.json | 2 +- samples/charts/data-chart/radial-pie-chart/package.json | 2 +- .../radial-pie-proportional-category-angle-axis/package.json | 2 +- samples/charts/data-chart/range-area-chart/package.json | 2 +- samples/charts/data-chart/range-column-chart/package.json | 2 +- .../data-chart/scatter-bubble-chart-fill-scale/package.json | 2 +- .../scatter-bubble-chart-multiple-sources/package.json | 2 +- .../data-chart/scatter-bubble-chart-single-source/package.json | 2 +- .../charts/data-chart/scatter-bubble-chart-styling/package.json | 2 +- samples/charts/data-chart/scatter-line-chart/package.json | 2 +- samples/charts/data-chart/scatter-point-chart/package.json | 2 +- samples/charts/data-chart/scatter-spline-chart/package.json | 2 +- samples/charts/data-chart/series-animations/package.json | 2 +- samples/charts/data-chart/series-annotations/package.json | 2 +- samples/charts/data-chart/series-highlighting/package.json | 2 +- samples/charts/data-chart/series-marker-template/package.json | 2 +- samples/charts/data-chart/series-markers/package.json | 2 +- samples/charts/data-chart/series-tooltips/package.json | 2 +- samples/charts/data-chart/series-trendlines/package.json | 2 +- samples/charts/data-chart/series-value-overlay/package.json | 2 +- samples/charts/data-chart/stacked-100-area-chart/package.json | 2 +- samples/charts/data-chart/stacked-100-bar-chart/package.json | 2 +- samples/charts/data-chart/stacked-100-column-chart/package.json | 2 +- samples/charts/data-chart/stacked-100-line-chart/package.json | 2 +- .../data-chart/stacked-100-spline-area-chart/package.json | 2 +- samples/charts/data-chart/stacked-100-spline-chart/package.json | 2 +- samples/charts/data-chart/stacked-area-chart/package.json | 2 +- samples/charts/data-chart/stacked-bar-chart/package.json | 2 +- samples/charts/data-chart/stacked-chart-types/package.json | 2 +- samples/charts/data-chart/stacked-column-chart/package.json | 2 +- samples/charts/data-chart/stacked-line-chart/package.json | 2 +- .../charts/data-chart/stacked-spline-area-chart/package.json | 2 +- samples/charts/data-chart/stacked-spline-chart/package.json | 2 +- samples/charts/data-chart/tooltip-template/package.json | 2 +- samples/charts/data-chart/transition-event/package.json | 2 +- .../charts/data-chart/type-category-area-series/package.json | 2 +- samples/charts/data-chart/type-category-bar-series/package.json | 2 +- .../charts/data-chart/type-category-column-series/package.json | 2 +- .../charts/data-chart/type-category-line-series/package.json | 2 +- .../charts/data-chart/type-category-point-series/package.json | 2 +- samples/charts/data-chart/type-category-series/package.json | 2 +- .../data-chart/type-category-spline-area-series/package.json | 2 +- .../charts/data-chart/type-category-spline-series/package.json | 2 +- .../data-chart/type-category-step-area-series/package.json | 2 +- .../data-chart/type-category-step-line-series/package.json | 2 +- .../data-chart/type-category-waterfall-series/package.json | 2 +- .../data-chart/type-financial-area-indicators/package.json | 2 +- .../data-chart/type-financial-candlestick-series/package.json | 2 +- .../data-chart/type-financial-column-indicators/package.json | 2 +- .../data-chart/type-financial-line-indicators/package.json | 2 +- .../charts/data-chart/type-financial-ohlc-series/package.json | 2 +- samples/charts/data-chart/type-financial-overlays/package.json | 2 +- samples/charts/data-chart/type-financial-series/package.json | 2 +- samples/charts/data-chart/type-radial-area-series/package.json | 2 +- .../charts/data-chart/type-radial-column-series/package.json | 2 +- samples/charts/data-chart/type-radial-line-series/package.json | 2 +- samples/charts/data-chart/type-radial-pie-series/package.json | 2 +- samples/charts/data-chart/type-range-area-series/package.json | 2 +- samples/charts/data-chart/type-range-column-series/package.json | 2 +- samples/charts/data-chart/type-range-series/package.json | 2 +- samples/charts/data-chart/type-scatter-area-series/package.json | 2 +- .../charts/data-chart/type-scatter-bubble-series/package.json | 2 +- .../charts/data-chart/type-scatter-contour-series/package.json | 2 +- samples/charts/data-chart/type-scatter-hd-series/package.json | 2 +- samples/charts/data-chart/type-scatter-line-series/package.json | 2 +- .../charts/data-chart/type-scatter-point-series/package.json | 2 +- .../charts/data-chart/type-scatter-polygon-series/package.json | 2 +- .../charts/data-chart/type-scatter-polyline-series/package.json | 2 +- samples/charts/data-chart/type-scatter-series/package.json | 2 +- .../charts/data-chart/type-scatter-spline-series/package.json | 2 +- samples/charts/data-chart/type-shape-series/package.json | 2 +- .../charts/data-chart/type-stacked-100-area-series/package.json | 2 +- .../charts/data-chart/type-stacked-100-bar-series/package.json | 2 +- .../data-chart/type-stacked-100-column-series/package.json | 2 +- .../charts/data-chart/type-stacked-100-line-series/package.json | 2 +- .../data-chart/type-stacked-100-spline-area-series/package.json | 2 +- .../data-chart/type-stacked-100-spline-series/package.json | 2 +- samples/charts/data-chart/type-stacked-area-series/package.json | 2 +- samples/charts/data-chart/type-stacked-bar-series/package.json | 2 +- .../charts/data-chart/type-stacked-column-series/package.json | 2 +- samples/charts/data-chart/type-stacked-line-series/package.json | 2 +- .../data-chart/type-stacked-spline-area-series/package.json | 2 +- .../charts/data-chart/type-stacked-spline-series/package.json | 2 +- samples/charts/data-chart/waterfall-chart/package.json | 2 +- samples/charts/data-pie-chart/animation/package.json | 2 +- samples/charts/data-pie-chart/highlighting/package.json | 2 +- samples/charts/data-pie-chart/legend/package.json | 2 +- samples/charts/data-pie-chart/others/package.json | 2 +- samples/charts/data-pie-chart/overview/package.json | 2 +- samples/charts/data-pie-chart/selection/package.json | 2 +- samples/charts/doughnut-chart/animation/package.json | 2 +- samples/charts/doughnut-chart/explosion/package.json | 2 +- samples/charts/doughnut-chart/legend/package.json | 2 +- samples/charts/doughnut-chart/overview/package.json | 2 +- samples/charts/doughnut-chart/rings/package.json | 2 +- samples/charts/doughnut-chart/selection/package.json | 2 +- samples/charts/financial-chart/annotations/package.json | 2 +- samples/charts/financial-chart/axis-types/package.json | 2 +- .../data-legend-formatting-currency/package.json | 2 +- .../financial-chart/data-legend-styling-props/package.json | 2 +- samples/charts/financial-chart/data-legend/package.json | 2 +- .../data-tooltip-formatting-currency/package.json | 2 +- .../financial-chart/data-tooltip-styling-props/package.json | 2 +- samples/charts/financial-chart/data-tooltip/package.json | 2 +- samples/charts/financial-chart/format-specifiers/package.json | 2 +- samples/charts/financial-chart/high-frequency/package.json | 2 +- samples/charts/financial-chart/high-volume/package.json | 2 +- .../charts/financial-chart/indicator-customization/package.json | 2 +- samples/charts/financial-chart/indicator-types/package.json | 2 +- samples/charts/financial-chart/multiple-data/package.json | 2 +- samples/charts/financial-chart/multiple-feeds/package.json | 2 +- samples/charts/financial-chart/overview/package.json | 2 +- samples/charts/financial-chart/panes/package.json | 2 +- samples/charts/financial-chart/performance/package.json | 2 +- samples/charts/financial-chart/scrollbars/package.json | 2 +- samples/charts/financial-chart/stock-index-chart/package.json | 2 +- samples/charts/financial-chart/styling/package.json | 2 +- samples/charts/financial-chart/theming/package.json | 2 +- samples/charts/financial-chart/time-based-data/package.json | 2 +- samples/charts/financial-chart/titles/package.json | 2 +- samples/charts/financial-chart/tooltip-template/package.json | 2 +- samples/charts/financial-chart/tooltip-types/package.json | 2 +- samples/charts/financial-chart/trendlines/package.json | 2 +- samples/charts/financial-chart/volume-types/package.json | 2 +- samples/charts/pie-chart/animation/package.json | 2 +- samples/charts/pie-chart/explosion/package.json | 2 +- samples/charts/pie-chart/legend/package.json | 2 +- samples/charts/pie-chart/others/package.json | 2 +- samples/charts/pie-chart/overview/package.json | 2 +- samples/charts/pie-chart/selection/package.json | 2 +- samples/charts/pie-chart/styling/package.json | 2 +- samples/charts/sparkline/display-area/package.json | 2 +- samples/charts/sparkline/display-column/package.json | 2 +- samples/charts/sparkline/display-lines/package.json | 2 +- samples/charts/sparkline/display-types/package.json | 2 +- samples/charts/sparkline/display-winloss/package.json | 2 +- samples/charts/sparkline/grid/package.json | 2 +- samples/charts/sparkline/markers/package.json | 2 +- samples/charts/sparkline/normal-range/package.json | 2 +- samples/charts/sparkline/trendlines/package.json | 2 +- samples/charts/sparkline/unknown-values/package.json | 2 +- .../charts/toolbar/actions-built-in-category-chart/package.json | 2 +- samples/charts/toolbar/actions-built-in-data-chart/package.json | 2 +- samples/charts/toolbar/custom-tool/package.json | 2 +- .../charts/toolbar/layout-actions-for-data-chart/package.json | 2 +- .../charts/toolbar/layout-in-vertical-orientation/package.json | 2 +- samples/charts/toolbar/theming/package.json | 2 +- samples/charts/tree-map/events/package.json | 2 +- samples/charts/tree-map/highlighting-percent-based/package.json | 2 +- samples/charts/tree-map/highlighting/package.json | 2 +- samples/charts/tree-map/layout/package.json | 2 +- samples/charts/tree-map/overview/package.json | 2 +- samples/charts/tree-map/styling/package.json | 2 +- samples/charts/zoomslider/overview/package.json | 2 +- .../excel/excel-library/operations-on-workbooks/package.json | 2 +- .../excel/excel-library/operations-on-worksheets/package.json | 2 +- samples/excel/excel-library/overview/package.json | 2 +- samples/excel/excel-library/working-with-cells/package.json | 2 +- samples/excel/excel-library/working-with-charts/package.json | 2 +- .../excel/excel-library/working-with-sparklines/package.json | 2 +- samples/excel/excel-library/working-with-tables/package.json | 2 +- samples/excel/spreadsheet/activation/package.json | 2 +- samples/excel/spreadsheet/adapter-chart/package.json | 2 +- samples/excel/spreadsheet/adapter-combo/package.json | 2 +- samples/excel/spreadsheet/clipboard/package.json | 2 +- samples/excel/spreadsheet/commands/package.json | 2 +- samples/excel/spreadsheet/conditional-formatting/package.json | 2 +- samples/excel/spreadsheet/config-options/package.json | 2 +- samples/excel/spreadsheet/data-validation/package.json | 2 +- samples/excel/spreadsheet/hyperlinks/package.json | 2 +- samples/excel/spreadsheet/overview/package.json | 2 +- samples/gauges/bullet-graph/animation/package.json | 2 +- samples/gauges/bullet-graph/background/package.json | 2 +- samples/gauges/bullet-graph/highlight-needle/package.json | 2 +- samples/gauges/bullet-graph/labels/package.json | 2 +- samples/gauges/bullet-graph/measures/package.json | 2 +- samples/gauges/bullet-graph/ranges/package.json | 2 +- samples/gauges/bullet-graph/scale/package.json | 2 +- samples/gauges/bullet-graph/tickmarks/package.json | 2 +- samples/gauges/linear-gauge/animation/package.json | 2 +- samples/gauges/linear-gauge/backing/package.json | 2 +- samples/gauges/linear-gauge/highlight-needle/package.json | 2 +- samples/gauges/linear-gauge/labels/package.json | 2 +- samples/gauges/linear-gauge/needle/package.json | 2 +- samples/gauges/linear-gauge/ranges/package.json | 2 +- samples/gauges/linear-gauge/scale/package.json | 2 +- samples/gauges/linear-gauge/tickmarks/package.json | 2 +- samples/gauges/radial-gauge/animation/package.json | 2 +- samples/gauges/radial-gauge/backing/package.json | 2 +- samples/gauges/radial-gauge/highlight-needle/package.json | 2 +- samples/gauges/radial-gauge/labels/package.json | 2 +- samples/gauges/radial-gauge/needle/package.json | 2 +- samples/gauges/radial-gauge/optical-scaling/package.json | 2 +- samples/gauges/radial-gauge/ranges/package.json | 2 +- samples/gauges/radial-gauge/scale/package.json | 2 +- samples/gauges/radial-gauge/tickmarks/package.json | 2 +- samples/maps/geo-map/binding-data-csv/package.json | 2 +- samples/maps/geo-map/binding-data-json-points/package.json | 2 +- samples/maps/geo-map/binding-data-model/package.json | 2 +- samples/maps/geo-map/binding-multiple-shapes/package.json | 2 +- samples/maps/geo-map/binding-multiple-sources/package.json | 2 +- samples/maps/geo-map/binding-shp-points/package.json | 2 +- samples/maps/geo-map/binding-shp-polygons/package.json | 2 +- samples/maps/geo-map/binding-shp-polylines/package.json | 2 +- samples/maps/geo-map/custom-tooltips/package.json | 2 +- samples/maps/geo-map/display-bing-imagery/package.json | 2 +- samples/maps/geo-map/display-esri-imagery/package.json | 2 +- samples/maps/geo-map/display-heat-imagery/package.json | 2 +- samples/maps/geo-map/display-osm-imagery/package.json | 2 +- samples/maps/geo-map/marker-layouts/package.json | 2 +- samples/maps/geo-map/marker-template/package.json | 2 +- samples/maps/geo-map/marker-type/package.json | 2 +- samples/maps/geo-map/navigation/package.json | 2 +- samples/maps/geo-map/overview/package.json | 2 +- samples/maps/geo-map/shape-styling/package.json | 2 +- samples/maps/geo-map/triangulating-data/package.json | 2 +- samples/maps/geo-map/type-scatter-area-series/package.json | 2 +- samples/maps/geo-map/type-scatter-bubble-series/package.json | 2 +- samples/maps/geo-map/type-scatter-contour-series/package.json | 2 +- samples/maps/geo-map/type-scatter-density-series/package.json | 2 +- samples/maps/geo-map/type-scatter-symbol-series/package.json | 2 +- samples/maps/geo-map/type-shape-polygon-series/package.json | 2 +- samples/maps/geo-map/type-shape-polyline-series/package.json | 2 +- 354 files changed, 354 insertions(+), 354 deletions(-) diff --git a/browser/package.json b/browser/package.json index a7289ed94..8c753f010 100644 --- a/browser/package.json +++ b/browser/package.json @@ -90,6 +90,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 41aa56760..ef4ec9a14 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1116,7 +1116,7 @@ function updateIG(cb) { { name: "sass.js", version: "0.11.1"}, { name: "tslint", version: "~6.1.3"}, { name: "ts-node", version: "10.9.1"}, - { name: "typescript", version: "5.4.5"}, + { name: "typescript", version: "5.5.4"}, ]; // NOTE you can comment out strings in this array to run these function only on a subset of samples diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index d08a923a5..7e284b173 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index cadf185dc..c85c90b4e 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index cadf185dc..c85c90b4e 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index d08a923a5..7e284b173 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index d08a923a5..7e284b173 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index d08a923a5..7e284b173 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index d08a923a5..7e284b173 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index d08a923a5..7e284b173 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index d08a923a5..7e284b173 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index d53877ea2..e83c088a8 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index d08a923a5..7e284b173 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index d08a923a5..7e284b173 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index d08a923a5..7e284b173 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index d08a923a5..7e284b173 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index d08a923a5..7e284b173 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index cadf185dc..c85c90b4e 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 0f89cb52c..37fcd2e8d 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 639df4276..df31ab5c3 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index eb4fecd93..a3c04320f 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 44e7ed857..e323af5f3 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 44e7ed857..e323af5f3 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 44e7ed857..e323af5f3 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 99bf65387..588a32757 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -43,6 +43,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 99bf65387..588a32757 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -43,6 +43,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index 0f3074701..2654e9565 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -43,6 +43,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index fb41d1b02..c109679bb 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index c1509d337..2f97b35b2 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index c1509d337..2f97b35b2 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index fb41d1b02..c109679bb 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index fb41d1b02..c109679bb 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index fb41d1b02..c109679bb 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index fb41d1b02..c109679bb 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index fb41d1b02..c109679bb 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index fb41d1b02..c109679bb 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index fb41d1b02..c109679bb 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index bde968d6a..72382053b 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index bde968d6a..72382053b 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index bde968d6a..72382053b 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 5aabd6084..b05cd9e87 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 3dfc2c843..477773406 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.4.5" + "typescript": "5.5.4" } } From c9e8df7e810e7808f4aae0829feedd863c5fc889 Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Wed, 28 Aug 2024 10:12:21 -0400 Subject: [PATCH 102/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.8.28.3 --- .../annotations-all/package.json | 5 +- .../annotations-all/src/polyfills.ts | 4 - .../annotations-callouts/package.json | 5 +- .../annotations-callouts/src/polyfills.ts | 4 - .../annotations-crosshairs/package.json | 5 +- .../annotations-crosshairs/src/polyfills.ts | 4 - .../annotations-custom/package.json | 5 +- .../annotations-custom/src/polyfills.ts | 4 - .../annotations-final-value/package.json | 5 +- .../annotations-final-value/src/polyfills.ts | 4 - .../annotations-highlighting/package.json | 5 +- .../annotations-highlighting/src/polyfills.ts | 4 - .../area-chart-multiple-sources/package.json | 5 +- .../src/polyfills.ts | 4 - .../area-chart-single-source/package.json | 5 +- .../area-chart-single-source/src/polyfills.ts | 4 - .../area-chart-styling/package.json | 5 +- .../area-chart-styling/src/polyfills.ts | 4 - .../category-chart/axis-gap/package.json | 5 +- .../category-chart/axis-gap/src/polyfills.ts | 4 - .../axis-gridlines/package.json | 5 +- .../axis-gridlines/src/polyfills.ts | 4 - .../category-chart/axis-inverted/package.json | 5 +- .../axis-inverted/src/polyfills.ts | 4 - .../category-chart/axis-labels/package.json | 5 +- .../axis-labels/src/polyfills.ts | 4 - .../axis-locations/package.json | 5 +- .../axis-locations/src/polyfills.ts | 4 - .../category-chart/axis-options/package.json | 5 +- .../axis-options/src/polyfills.ts | 4 - .../category-chart/axis-overlap/package.json | 5 +- .../axis-overlap/src/polyfills.ts | 4 - .../category-chart/axis-range/package.json | 5 +- .../axis-range/src/polyfills.ts | 4 - .../axis-tickmarks/package.json | 5 +- .../axis-tickmarks/src/polyfills.ts | 4 - .../category-chart/axis-titles/package.json | 5 +- .../axis-titles/src/polyfills.ts | 4 - .../chart-highlight-filter/package.json | 5 +- .../chart-highlight-filter/src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../column-chart-single-source/package.json | 5 +- .../src/polyfills.ts | 4 - .../column-chart-styling/package.json | 5 +- .../column-chart-styling/src/polyfills.ts | 4 - .../column-chart-with-tooltips/package.json | 5 +- .../src/polyfills.ts | 4 - .../custom-selection/package.json | 5 +- .../custom-selection/src/polyfills.ts | 4 - .../data-aggregations/package.json | 5 +- .../data-aggregations/src/polyfills.ts | 4 - .../category-chart/data-filter/package.json | 5 +- .../data-filter/src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../category-chart/data-legend/package.json | 5 +- .../data-legend/src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../data-tooltip-positioning/package.json | 5 +- .../data-tooltip-positioning/src/polyfills.ts | 4 - .../category-chart/data-tooltip/package.json | 5 +- .../data-tooltip/src/polyfills.ts | 4 - .../format-specifiers/package.json | 5 +- .../format-specifiers/src/polyfills.ts | 4 - .../highlighting-behavior/package.json | 5 +- .../highlighting-behavior/src/polyfills.ts | 4 - .../highlighting-mode/package.json | 5 +- .../highlighting-mode/src/polyfills.ts | 4 - .../legend-highlighting/package.json | 5 +- .../legend-highlighting/src/polyfills.ts | 4 - .../line-chart-multiple-sources/package.json | 5 +- .../src/polyfills.ts | 4 - .../line-chart-single-source/package.json | 5 +- .../line-chart-single-source/src/polyfills.ts | 4 - .../line-chart-styling/package.json | 5 +- .../line-chart-styling/src/polyfills.ts | 4 - .../marker-options/package.json | 5 +- .../marker-options/src/polyfills.ts | 4 - .../category-chart/overview/package.json | 5 +- .../category-chart/overview/src/polyfills.ts | 4 - .../point-chart-multiple-sources/package.json | 5 +- .../src/polyfills.ts | 4 - .../point-chart-single-source/package.json | 5 +- .../src/polyfills.ts | 4 - .../point-chart-styling/package.json | 5 +- .../point-chart-styling/src/polyfills.ts | 4 - .../selection-modes/package.json | 5 +- .../selection-modes/src/polyfills.ts | 4 - .../selection-multiple-modes/package.json | 5 +- .../selection-multiple-modes/src/polyfills.ts | 4 - .../spline-area-multiple-sources/package.json | 5 +- .../src/polyfills.ts | 4 - .../spline-area-single-source/package.json | 5 +- .../src/polyfills.ts | 4 - .../spline-area-styling/package.json | 5 +- .../spline-area-styling/src/polyfills.ts | 4 - .../spline-multiple-sources/package.json | 5 +- .../spline-multiple-sources/src/polyfills.ts | 4 - .../spline-single-source/package.json | 5 +- .../spline-single-source/src/polyfills.ts | 4 - .../spline-styling/package.json | 5 +- .../spline-styling/src/polyfills.ts | 4 - .../step-area-multiple-sources/package.json | 5 +- .../src/polyfills.ts | 4 - .../step-area-single-source/package.json | 5 +- .../step-area-single-source/src/polyfills.ts | 4 - .../step-area-styling/package.json | 5 +- .../step-area-styling/src/polyfills.ts | 4 - .../step-line-multiple-sources/package.json | 5 +- .../src/polyfills.ts | 4 - .../step-line-single-source/package.json | 5 +- .../step-line-single-source/src/polyfills.ts | 4 - .../step-line-styling/package.json | 5 +- .../step-line-styling/src/polyfills.ts | 4 - .../category-chart/value-lines/package.json | 5 +- .../value-lines/src/polyfills.ts | 4 - .../annotations-custom/package.json | 5 +- .../annotations-custom/src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../axis-label-rotation/package.json | 5 +- .../axis-label-rotation/src/polyfills.ts | 4 - .../data-chart/axis-min-max-gap/package.json | 5 +- .../axis-min-max-gap/src/polyfills.ts | 4 - .../bar-chart-multiple-sources/package.json | 5 +- .../src/polyfills.ts | 4 - .../bar-chart-overlapping/package.json | 5 +- .../bar-chart-overlapping/src/polyfills.ts | 4 - .../bar-chart-single-source/package.json | 5 +- .../bar-chart-single-source/src/polyfills.ts | 4 - .../data-chart/bar-chart-styling/package.json | 5 +- .../bar-chart-styling/src/polyfills.ts | 4 - .../callout-layer-styling/package.json | 5 +- .../callout-layer-styling/src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../chart-highlight-filter/package.json | 5 +- .../chart-highlight-filter/src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../data-legend-grouping/package.json | 5 +- .../data-legend-grouping/src/polyfills.ts | 4 - .../data-legend-styling/package.json | 5 +- .../data-legend-styling/src/polyfills.ts | 4 - .../data-chart/data-legend/package.json | 5 +- .../data-chart/data-legend/src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../data-tooltip-grouping/package.json | 5 +- .../data-tooltip-grouping/src/polyfills.ts | 4 - .../data-tooltip-styling/package.json | 5 +- .../data-tooltip-styling/src/polyfills.ts | 4 - .../data-chart/data-tooltip/package.json | 5 +- .../data-chart/data-tooltip/src/polyfills.ts | 4 - .../financial-price-series/package.json | 5 +- .../financial-price-series/src/polyfills.ts | 4 - .../polar-area-chart-styling/package.json | 5 +- .../polar-area-chart-styling/src/polyfills.ts | 4 - .../data-chart/polar-area-chart/package.json | 5 +- .../polar-area-chart/src/polyfills.ts | 4 - .../data-chart/polar-line-chart/package.json | 5 +- .../polar-line-chart/src/polyfills.ts | 4 - .../polar-scatter-chart/package.json | 5 +- .../polar-scatter-chart/src/polyfills.ts | 4 - .../polar-spline-area-chart/package.json | 5 +- .../polar-spline-area-chart/src/polyfills.ts | 4 - .../polar-spline-chart/package.json | 5 +- .../polar-spline-chart/src/polyfills.ts | 4 - .../radial-area-chart-styling/package.json | 5 +- .../src/polyfills.ts | 4 - .../data-chart/radial-area-chart/package.json | 5 +- .../radial-area-chart/src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../radial-column-chart/package.json | 5 +- .../radial-column-chart/src/polyfills.ts | 4 - .../data-chart/radial-label-mode/package.json | 5 +- .../radial-label-mode/src/polyfills.ts | 4 - .../data-chart/radial-line-chart/package.json | 5 +- .../radial-line-chart/src/polyfills.ts | 4 - .../data-chart/radial-pie-chart/package.json | 5 +- .../radial-pie-chart/src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../.stackblitzrc | 1 + .../angular.json | 120 ++++++++++++++++++ .../package.json | 43 +++++++ .../src/EnergyRenewableConsumption.ts | 69 ++++++++++ .../src/app.component.html | 50 ++++++++ .../src/app.component.scss | 3 + .../src/app.component.ts | 45 +++++++ .../src/app.module.ts | 31 +++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../src/index.html | 23 ++++ .../src/main.ts | 15 +++ .../src/polyfills.ts | 61 +++++++++ .../src/styles.scss | 9 ++ .../src/typings.d.ts | 5 + .../tsconfig.app.json | 10 ++ .../tsconfig.json | 27 ++++ .../tslint.json | 31 +++++ .../data-chart/range-area-chart/package.json | 5 +- .../range-area-chart/src/polyfills.ts | 4 - .../range-column-chart/package.json | 5 +- .../range-column-chart/src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../scatter-bubble-chart-styling/package.json | 5 +- .../src/polyfills.ts | 4 - .../scatter-line-chart/package.json | 5 +- .../scatter-line-chart/src/polyfills.ts | 4 - .../scatter-point-chart/package.json | 5 +- .../scatter-point-chart/src/polyfills.ts | 4 - .../scatter-spline-chart/package.json | 5 +- .../scatter-spline-chart/src/polyfills.ts | 4 - .../stacked-100-area-chart/package.json | 5 +- .../stacked-100-area-chart/src/polyfills.ts | 4 - .../stacked-100-bar-chart/package.json | 5 +- .../stacked-100-bar-chart/src/polyfills.ts | 4 - .../stacked-100-column-chart/package.json | 5 +- .../stacked-100-column-chart/src/polyfills.ts | 4 - .../stacked-100-line-chart/package.json | 5 +- .../stacked-100-line-chart/src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../stacked-100-spline-chart/package.json | 5 +- .../stacked-100-spline-chart/src/polyfills.ts | 4 - .../stacked-area-chart/package.json | 5 +- .../stacked-area-chart/src/polyfills.ts | 4 - .../data-chart/stacked-bar-chart/package.json | 5 +- .../stacked-bar-chart/src/polyfills.ts | 4 - .../stacked-column-chart/package.json | 5 +- .../stacked-column-chart/src/polyfills.ts | 4 - .../stacked-line-chart/package.json | 5 +- .../stacked-line-chart/src/polyfills.ts | 4 - .../stacked-spline-area-chart/package.json | 5 +- .../src/polyfills.ts | 4 - .../stacked-spline-chart/package.json | 5 +- .../stacked-spline-chart/src/polyfills.ts | 4 - .../data-chart/transition-event/package.json | 5 +- .../transition-event/src/polyfills.ts | 4 - .../data-chart/waterfall-chart/package.json | 5 +- .../waterfall-chart/src/polyfills.ts | 4 - .../data-pie-chart/animation/package.json | 5 +- .../data-pie-chart/animation/src/polyfills.ts | 4 - .../highlight-filter/.codesandbox/Dockerfile | 1 + .../highlight-filter/.codesandbox/tasks.json | 17 +++ .../highlight-filter/.stackblitzrc | 1 + .../highlight-filter/angular.json | 120 ++++++++++++++++++ .../highlight-filter/package.json | 43 +++++++ .../src/OnlineTrafficHighlightDesktopOnly.ts | 55 ++++++++ .../src/OnlineTrafficHighlightTotals.ts | 55 ++++++++ .../highlight-filter/src/app.component.html | 11 ++ .../highlight-filter/src/app.component.scss | 3 + .../highlight-filter/src/app.component.ts | 56 ++++++++ .../highlight-filter/src/app.module.ts | 25 ++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../highlight-filter/src/index.html | 23 ++++ .../highlight-filter/src/main.ts | 15 +++ .../highlight-filter/src/polyfills.ts | 61 +++++++++ .../highlight-filter/src/styles.scss | 9 ++ .../highlight-filter/src/typings.d.ts | 5 + .../highlight-filter/tsconfig.app.json | 10 ++ .../highlight-filter/tsconfig.json | 27 ++++ .../highlight-filter/tslint.json | 31 +++++ .../data-pie-chart/highlighting/package.json | 5 +- .../highlighting/src/polyfills.ts | 4 - .../charts/data-pie-chart/legend/package.json | 5 +- .../legend/src/app.component.ts | 3 +- .../data-pie-chart/legend/src/polyfills.ts | 4 - .../charts/data-pie-chart/others/package.json | 5 +- .../data-pie-chart/others/src/polyfills.ts | 4 - .../data-pie-chart/overview/package.json | 5 +- .../data-pie-chart/overview/src/polyfills.ts | 4 - .../data-pie-chart/selection/package.json | 5 +- .../data-pie-chart/selection/src/polyfills.ts | 4 - .../charts/doughnut-chart/legend/package.json | 5 +- .../doughnut-chart/legend/src/polyfills.ts | 4 - .../doughnut-chart/overview/package.json | 5 +- .../doughnut-chart/overview/src/polyfills.ts | 4 - .../charts/doughnut-chart/rings/package.json | 5 +- .../doughnut-chart/rings/src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../data-legend-styling-props/package.json | 5 +- .../src/polyfills.ts | 4 - .../financial-chart/data-legend/package.json | 5 +- .../data-legend/src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../data-tooltip-styling-props/package.json | 5 +- .../src/polyfills.ts | 4 - .../financial-chart/data-tooltip/package.json | 5 +- .../data-tooltip/src/polyfills.ts | 4 - .../format-specifiers/package.json | 5 +- .../format-specifiers/src/polyfills.ts | 4 - .../financial-chart/scrollbars/package.json | 5 +- .../scrollbars/src/polyfills.ts | 4 - samples/charts/pie-chart/legend/package.json | 5 +- .../charts/pie-chart/legend/src/polyfills.ts | 4 - samples/charts/pie-chart/others/package.json | 5 +- .../charts/pie-chart/others/src/polyfills.ts | 4 - .../charts/pie-chart/overview/package.json | 5 +- .../pie-chart/overview/src/polyfills.ts | 4 - samples/charts/pie-chart/styling/package.json | 5 +- .../charts/pie-chart/styling/src/polyfills.ts | 4 - .../sparkline/display-area/package.json | 5 +- .../sparkline/display-area/src/polyfills.ts | 4 - .../sparkline/display-column/package.json | 5 +- .../sparkline/display-column/src/polyfills.ts | 4 - .../sparkline/display-lines/package.json | 5 +- .../sparkline/display-lines/src/polyfills.ts | 4 - .../sparkline/display-winloss/package.json | 5 +- .../display-winloss/src/polyfills.ts | 4 - samples/charts/sparkline/markers/package.json | 5 +- .../charts/sparkline/markers/src/polyfills.ts | 4 - .../sparkline/normal-range/package.json | 5 +- .../sparkline/normal-range/src/polyfills.ts | 4 - .../charts/sparkline/trendlines/package.json | 5 +- .../sparkline/trendlines/src/polyfills.ts | 4 - .../sparkline/unknown-values/package.json | 5 +- .../sparkline/unknown-values/src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../actions-built-in-data-chart/package.json | 5 +- .../src/polyfills.ts | 4 - .../charts/toolbar/custom-tool/package.json | 5 +- .../toolbar/custom-tool/src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - .../package.json | 5 +- .../src/polyfills.ts | 4 - samples/charts/toolbar/theming/package.json | 5 +- .../charts/toolbar/theming/src/polyfills.ts | 4 - .../highlighting-percent-based/package.json | 5 +- .../src/polyfills.ts | 4 - .../charts/tree-map/highlighting/package.json | 5 +- .../tree-map/highlighting/src/polyfills.ts | 4 - samples/charts/tree-map/layout/package.json | 5 +- .../charts/tree-map/layout/src/polyfills.ts | 4 - samples/charts/tree-map/overview/package.json | 5 +- .../charts/tree-map/overview/src/polyfills.ts | 4 - samples/charts/tree-map/styling/package.json | 5 +- .../charts/tree-map/styling/src/polyfills.ts | 4 - 356 files changed, 1482 insertions(+), 1101 deletions(-) create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/.stackblitzrc create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/angular.json create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/src/EnergyRenewableConsumption.ts create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.component.html create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.component.scss create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.component.ts create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.module.ts create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/src/environments/environment.ts create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/src/index.html create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/src/main.ts create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/src/polyfills.ts create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/src/styles.scss create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/src/typings.d.ts create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/tsconfig.app.json create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/tsconfig.json create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/tslint.json create mode 100644 samples/charts/data-pie-chart/highlight-filter/.codesandbox/Dockerfile create mode 100644 samples/charts/data-pie-chart/highlight-filter/.codesandbox/tasks.json create mode 100644 samples/charts/data-pie-chart/highlight-filter/.stackblitzrc create mode 100644 samples/charts/data-pie-chart/highlight-filter/angular.json create mode 100644 samples/charts/data-pie-chart/highlight-filter/package.json create mode 100644 samples/charts/data-pie-chart/highlight-filter/src/OnlineTrafficHighlightDesktopOnly.ts create mode 100644 samples/charts/data-pie-chart/highlight-filter/src/OnlineTrafficHighlightTotals.ts create mode 100644 samples/charts/data-pie-chart/highlight-filter/src/app.component.html create mode 100644 samples/charts/data-pie-chart/highlight-filter/src/app.component.scss create mode 100644 samples/charts/data-pie-chart/highlight-filter/src/app.component.ts create mode 100644 samples/charts/data-pie-chart/highlight-filter/src/app.module.ts create mode 100644 samples/charts/data-pie-chart/highlight-filter/src/environments/environment.prod.ts create mode 100644 samples/charts/data-pie-chart/highlight-filter/src/environments/environment.ts create mode 100644 samples/charts/data-pie-chart/highlight-filter/src/index.html create mode 100644 samples/charts/data-pie-chart/highlight-filter/src/main.ts create mode 100644 samples/charts/data-pie-chart/highlight-filter/src/polyfills.ts create mode 100644 samples/charts/data-pie-chart/highlight-filter/src/styles.scss create mode 100644 samples/charts/data-pie-chart/highlight-filter/src/typings.d.ts create mode 100644 samples/charts/data-pie-chart/highlight-filter/tsconfig.app.json create mode 100644 samples/charts/data-pie-chart/highlight-filter/tsconfig.json create mode 100644 samples/charts/data-pie-chart/highlight-filter/tslint.json diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/annotations-all/src/polyfills.ts b/samples/charts/category-chart/annotations-all/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/annotations-all/src/polyfills.ts +++ b/samples/charts/category-chart/annotations-all/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/annotations-callouts/src/polyfills.ts b/samples/charts/category-chart/annotations-callouts/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/annotations-callouts/src/polyfills.ts +++ b/samples/charts/category-chart/annotations-callouts/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/annotations-crosshairs/src/polyfills.ts b/samples/charts/category-chart/annotations-crosshairs/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/annotations-crosshairs/src/polyfills.ts +++ b/samples/charts/category-chart/annotations-crosshairs/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/annotations-custom/src/polyfills.ts b/samples/charts/category-chart/annotations-custom/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/annotations-custom/src/polyfills.ts +++ b/samples/charts/category-chart/annotations-custom/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/annotations-final-value/src/polyfills.ts b/samples/charts/category-chart/annotations-final-value/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/annotations-final-value/src/polyfills.ts +++ b/samples/charts/category-chart/annotations-final-value/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/annotations-highlighting/src/polyfills.ts b/samples/charts/category-chart/annotations-highlighting/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/annotations-highlighting/src/polyfills.ts +++ b/samples/charts/category-chart/annotations-highlighting/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/area-chart-multiple-sources/src/polyfills.ts b/samples/charts/category-chart/area-chart-multiple-sources/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/src/polyfills.ts +++ b/samples/charts/category-chart/area-chart-multiple-sources/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/area-chart-single-source/src/polyfills.ts b/samples/charts/category-chart/area-chart-single-source/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/area-chart-single-source/src/polyfills.ts +++ b/samples/charts/category-chart/area-chart-single-source/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/area-chart-styling/src/polyfills.ts b/samples/charts/category-chart/area-chart-styling/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/area-chart-styling/src/polyfills.ts +++ b/samples/charts/category-chart/area-chart-styling/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-gap/src/polyfills.ts b/samples/charts/category-chart/axis-gap/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/axis-gap/src/polyfills.ts +++ b/samples/charts/category-chart/axis-gap/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-gridlines/src/polyfills.ts b/samples/charts/category-chart/axis-gridlines/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/axis-gridlines/src/polyfills.ts +++ b/samples/charts/category-chart/axis-gridlines/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-inverted/src/polyfills.ts b/samples/charts/category-chart/axis-inverted/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/axis-inverted/src/polyfills.ts +++ b/samples/charts/category-chart/axis-inverted/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-labels/src/polyfills.ts b/samples/charts/category-chart/axis-labels/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/axis-labels/src/polyfills.ts +++ b/samples/charts/category-chart/axis-labels/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-locations/src/polyfills.ts b/samples/charts/category-chart/axis-locations/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/axis-locations/src/polyfills.ts +++ b/samples/charts/category-chart/axis-locations/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-options/src/polyfills.ts b/samples/charts/category-chart/axis-options/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/axis-options/src/polyfills.ts +++ b/samples/charts/category-chart/axis-options/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-overlap/src/polyfills.ts b/samples/charts/category-chart/axis-overlap/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/axis-overlap/src/polyfills.ts +++ b/samples/charts/category-chart/axis-overlap/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-range/src/polyfills.ts b/samples/charts/category-chart/axis-range/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/axis-range/src/polyfills.ts +++ b/samples/charts/category-chart/axis-range/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-tickmarks/src/polyfills.ts b/samples/charts/category-chart/axis-tickmarks/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/axis-tickmarks/src/polyfills.ts +++ b/samples/charts/category-chart/axis-tickmarks/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/axis-titles/src/polyfills.ts b/samples/charts/category-chart/axis-titles/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/axis-titles/src/polyfills.ts +++ b/samples/charts/category-chart/axis-titles/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/chart-highlight-filter/src/polyfills.ts b/samples/charts/category-chart/chart-highlight-filter/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/chart-highlight-filter/src/polyfills.ts +++ b/samples/charts/category-chart/chart-highlight-filter/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/polyfills.ts b/samples/charts/category-chart/column-chart-multiple-sources/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/polyfills.ts +++ b/samples/charts/category-chart/column-chart-multiple-sources/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/column-chart-single-source/src/polyfills.ts b/samples/charts/category-chart/column-chart-single-source/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/column-chart-single-source/src/polyfills.ts +++ b/samples/charts/category-chart/column-chart-single-source/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/column-chart-styling/src/polyfills.ts b/samples/charts/category-chart/column-chart-styling/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/column-chart-styling/src/polyfills.ts +++ b/samples/charts/category-chart/column-chart-styling/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/src/polyfills.ts b/samples/charts/category-chart/column-chart-with-tooltips/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/src/polyfills.ts +++ b/samples/charts/category-chart/column-chart-with-tooltips/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/custom-selection/src/polyfills.ts b/samples/charts/category-chart/custom-selection/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/custom-selection/src/polyfills.ts +++ b/samples/charts/category-chart/custom-selection/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/data-aggregations/src/polyfills.ts b/samples/charts/category-chart/data-aggregations/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/data-aggregations/src/polyfills.ts +++ b/samples/charts/category-chart/data-aggregations/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/data-filter/src/polyfills.ts b/samples/charts/category-chart/data-filter/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/data-filter/src/polyfills.ts +++ b/samples/charts/category-chart/data-filter/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/polyfills.ts b/samples/charts/category-chart/data-legend-formatting-decimals/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/polyfills.ts +++ b/samples/charts/category-chart/data-legend-formatting-decimals/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/data-legend/src/polyfills.ts b/samples/charts/category-chart/data-legend/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/data-legend/src/polyfills.ts +++ b/samples/charts/category-chart/data-legend/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/polyfills.ts b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/polyfills.ts +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/src/polyfills.ts b/samples/charts/category-chart/data-tooltip-positioning/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/src/polyfills.ts +++ b/samples/charts/category-chart/data-tooltip-positioning/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/data-tooltip/src/polyfills.ts b/samples/charts/category-chart/data-tooltip/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/data-tooltip/src/polyfills.ts +++ b/samples/charts/category-chart/data-tooltip/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 7e284b173..36710857f 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -30,17 +29,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/format-specifiers/src/polyfills.ts b/samples/charts/category-chart/format-specifiers/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/format-specifiers/src/polyfills.ts +++ b/samples/charts/category-chart/format-specifiers/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/highlighting-behavior/src/polyfills.ts b/samples/charts/category-chart/highlighting-behavior/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/highlighting-behavior/src/polyfills.ts +++ b/samples/charts/category-chart/highlighting-behavior/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/highlighting-mode/src/polyfills.ts b/samples/charts/category-chart/highlighting-mode/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/highlighting-mode/src/polyfills.ts +++ b/samples/charts/category-chart/highlighting-mode/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/legend-highlighting/src/polyfills.ts b/samples/charts/category-chart/legend-highlighting/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/legend-highlighting/src/polyfills.ts +++ b/samples/charts/category-chart/legend-highlighting/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/polyfills.ts b/samples/charts/category-chart/line-chart-multiple-sources/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/polyfills.ts +++ b/samples/charts/category-chart/line-chart-multiple-sources/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/line-chart-single-source/src/polyfills.ts b/samples/charts/category-chart/line-chart-single-source/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/line-chart-single-source/src/polyfills.ts +++ b/samples/charts/category-chart/line-chart-single-source/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/line-chart-styling/src/polyfills.ts b/samples/charts/category-chart/line-chart-styling/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/line-chart-styling/src/polyfills.ts +++ b/samples/charts/category-chart/line-chart-styling/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/marker-options/src/polyfills.ts b/samples/charts/category-chart/marker-options/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/marker-options/src/polyfills.ts +++ b/samples/charts/category-chart/marker-options/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/overview/src/polyfills.ts b/samples/charts/category-chart/overview/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/overview/src/polyfills.ts +++ b/samples/charts/category-chart/overview/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/src/polyfills.ts b/samples/charts/category-chart/point-chart-multiple-sources/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/src/polyfills.ts +++ b/samples/charts/category-chart/point-chart-multiple-sources/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/point-chart-single-source/src/polyfills.ts b/samples/charts/category-chart/point-chart-single-source/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/point-chart-single-source/src/polyfills.ts +++ b/samples/charts/category-chart/point-chart-single-source/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/point-chart-styling/src/polyfills.ts b/samples/charts/category-chart/point-chart-styling/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/point-chart-styling/src/polyfills.ts +++ b/samples/charts/category-chart/point-chart-styling/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/selection-modes/src/polyfills.ts b/samples/charts/category-chart/selection-modes/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/selection-modes/src/polyfills.ts +++ b/samples/charts/category-chart/selection-modes/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/selection-multiple-modes/src/polyfills.ts b/samples/charts/category-chart/selection-multiple-modes/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/selection-multiple-modes/src/polyfills.ts +++ b/samples/charts/category-chart/selection-multiple-modes/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/polyfills.ts b/samples/charts/category-chart/spline-area-multiple-sources/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/polyfills.ts +++ b/samples/charts/category-chart/spline-area-multiple-sources/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/spline-area-single-source/src/polyfills.ts b/samples/charts/category-chart/spline-area-single-source/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/spline-area-single-source/src/polyfills.ts +++ b/samples/charts/category-chart/spline-area-single-source/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/spline-area-styling/src/polyfills.ts b/samples/charts/category-chart/spline-area-styling/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/spline-area-styling/src/polyfills.ts +++ b/samples/charts/category-chart/spline-area-styling/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/spline-multiple-sources/src/polyfills.ts b/samples/charts/category-chart/spline-multiple-sources/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/spline-multiple-sources/src/polyfills.ts +++ b/samples/charts/category-chart/spline-multiple-sources/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/spline-single-source/src/polyfills.ts b/samples/charts/category-chart/spline-single-source/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/spline-single-source/src/polyfills.ts +++ b/samples/charts/category-chart/spline-single-source/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/spline-styling/src/polyfills.ts b/samples/charts/category-chart/spline-styling/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/spline-styling/src/polyfills.ts +++ b/samples/charts/category-chart/spline-styling/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/step-area-multiple-sources/src/polyfills.ts b/samples/charts/category-chart/step-area-multiple-sources/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/src/polyfills.ts +++ b/samples/charts/category-chart/step-area-multiple-sources/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/step-area-single-source/src/polyfills.ts b/samples/charts/category-chart/step-area-single-source/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/step-area-single-source/src/polyfills.ts +++ b/samples/charts/category-chart/step-area-single-source/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/step-area-styling/src/polyfills.ts b/samples/charts/category-chart/step-area-styling/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/step-area-styling/src/polyfills.ts +++ b/samples/charts/category-chart/step-area-styling/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/step-line-multiple-sources/src/polyfills.ts b/samples/charts/category-chart/step-line-multiple-sources/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/src/polyfills.ts +++ b/samples/charts/category-chart/step-line-multiple-sources/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/step-line-single-source/src/polyfills.ts b/samples/charts/category-chart/step-line-single-source/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/step-line-single-source/src/polyfills.ts +++ b/samples/charts/category-chart/step-line-single-source/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/step-line-styling/src/polyfills.ts b/samples/charts/category-chart/step-line-styling/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/step-line-styling/src/polyfills.ts +++ b/samples/charts/category-chart/step-line-styling/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/category-chart/value-lines/src/polyfills.ts b/samples/charts/category-chart/value-lines/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/category-chart/value-lines/src/polyfills.ts +++ b/samples/charts/category-chart/value-lines/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/annotations-custom/src/polyfills.ts b/samples/charts/data-chart/annotations-custom/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/annotations-custom/src/polyfills.ts +++ b/samples/charts/data-chart/annotations-custom/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/src/polyfills.ts b/samples/charts/data-chart/axis-annotations-corner-radius/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/src/polyfills.ts +++ b/samples/charts/data-chart/axis-annotations-corner-radius/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/axis-label-rotation/src/polyfills.ts b/samples/charts/data-chart/axis-label-rotation/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/axis-label-rotation/src/polyfills.ts +++ b/samples/charts/data-chart/axis-label-rotation/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/axis-min-max-gap/src/polyfills.ts b/samples/charts/data-chart/axis-min-max-gap/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/axis-min-max-gap/src/polyfills.ts +++ b/samples/charts/data-chart/axis-min-max-gap/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/src/polyfills.ts b/samples/charts/data-chart/bar-chart-multiple-sources/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/src/polyfills.ts +++ b/samples/charts/data-chart/bar-chart-multiple-sources/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/src/polyfills.ts b/samples/charts/data-chart/bar-chart-overlapping/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/src/polyfills.ts +++ b/samples/charts/data-chart/bar-chart-overlapping/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/bar-chart-single-source/src/polyfills.ts b/samples/charts/data-chart/bar-chart-single-source/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/bar-chart-single-source/src/polyfills.ts +++ b/samples/charts/data-chart/bar-chart-single-source/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/bar-chart-styling/src/polyfills.ts b/samples/charts/data-chart/bar-chart-styling/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/bar-chart-styling/src/polyfills.ts +++ b/samples/charts/data-chart/bar-chart-styling/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/callout-layer-styling/src/polyfills.ts b/samples/charts/data-chart/callout-layer-styling/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/callout-layer-styling/src/polyfills.ts +++ b/samples/charts/data-chart/callout-layer-styling/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/polyfills.ts b/samples/charts/data-chart/chart-highlight-filter-datasource/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/src/polyfills.ts +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/polyfills.ts b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/polyfills.ts +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/chart-highlight-filter/src/polyfills.ts b/samples/charts/data-chart/chart-highlight-filter/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/chart-highlight-filter/src/polyfills.ts +++ b/samples/charts/data-chart/chart-highlight-filter/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/polyfills.ts b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/polyfills.ts +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/data-legend-grouping/src/polyfills.ts b/samples/charts/data-chart/data-legend-grouping/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/data-legend-grouping/src/polyfills.ts +++ b/samples/charts/data-chart/data-legend-grouping/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/data-legend-styling/src/polyfills.ts b/samples/charts/data-chart/data-legend-styling/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/data-legend-styling/src/polyfills.ts +++ b/samples/charts/data-chart/data-legend-styling/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/data-legend/src/polyfills.ts b/samples/charts/data-chart/data-legend/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/data-legend/src/polyfills.ts +++ b/samples/charts/data-chart/data-legend/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index 7e284b173..36710857f 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -30,17 +29,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/polyfills.ts b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/polyfills.ts +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index 7e284b173..36710857f 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -30,17 +29,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/data-tooltip-grouping/src/polyfills.ts b/samples/charts/data-chart/data-tooltip-grouping/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/src/polyfills.ts +++ b/samples/charts/data-chart/data-tooltip-grouping/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index 7e284b173..36710857f 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -30,17 +29,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/data-tooltip-styling/src/polyfills.ts b/samples/charts/data-chart/data-tooltip-styling/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/data-tooltip-styling/src/polyfills.ts +++ b/samples/charts/data-chart/data-tooltip-styling/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/data-tooltip/src/polyfills.ts b/samples/charts/data-chart/data-tooltip/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/data-tooltip/src/polyfills.ts +++ b/samples/charts/data-chart/data-tooltip/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/financial-price-series/src/polyfills.ts b/samples/charts/data-chart/financial-price-series/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/financial-price-series/src/polyfills.ts +++ b/samples/charts/data-chart/financial-price-series/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/polar-area-chart-styling/src/polyfills.ts b/samples/charts/data-chart/polar-area-chart-styling/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/src/polyfills.ts +++ b/samples/charts/data-chart/polar-area-chart-styling/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/polar-area-chart/src/polyfills.ts b/samples/charts/data-chart/polar-area-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/polar-area-chart/src/polyfills.ts +++ b/samples/charts/data-chart/polar-area-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/polar-line-chart/src/polyfills.ts b/samples/charts/data-chart/polar-line-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/polar-line-chart/src/polyfills.ts +++ b/samples/charts/data-chart/polar-line-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/polar-scatter-chart/src/polyfills.ts b/samples/charts/data-chart/polar-scatter-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/polar-scatter-chart/src/polyfills.ts +++ b/samples/charts/data-chart/polar-scatter-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/polar-spline-area-chart/src/polyfills.ts b/samples/charts/data-chart/polar-spline-area-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/src/polyfills.ts +++ b/samples/charts/data-chart/polar-spline-area-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/polar-spline-chart/src/polyfills.ts b/samples/charts/data-chart/polar-spline-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/polar-spline-chart/src/polyfills.ts +++ b/samples/charts/data-chart/polar-spline-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/radial-area-chart-styling/src/polyfills.ts b/samples/charts/data-chart/radial-area-chart-styling/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/src/polyfills.ts +++ b/samples/charts/data-chart/radial-area-chart-styling/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/radial-area-chart/src/polyfills.ts b/samples/charts/data-chart/radial-area-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/radial-area-chart/src/polyfills.ts +++ b/samples/charts/data-chart/radial-area-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/radial-column-chart-selection/src/polyfills.ts b/samples/charts/data-chart/radial-column-chart-selection/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/src/polyfills.ts +++ b/samples/charts/data-chart/radial-column-chart-selection/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/radial-column-chart/src/polyfills.ts b/samples/charts/data-chart/radial-column-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/radial-column-chart/src/polyfills.ts +++ b/samples/charts/data-chart/radial-column-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/radial-label-mode/src/polyfills.ts b/samples/charts/data-chart/radial-label-mode/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/radial-label-mode/src/polyfills.ts +++ b/samples/charts/data-chart/radial-label-mode/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/radial-line-chart/src/polyfills.ts b/samples/charts/data-chart/radial-line-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/radial-line-chart/src/polyfills.ts +++ b/samples/charts/data-chart/radial-line-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/radial-pie-chart/src/polyfills.ts b/samples/charts/data-chart/radial-pie-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/radial-pie-chart/src/polyfills.ts +++ b/samples/charts/data-chart/radial-pie-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/polyfills.ts b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/polyfills.ts +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/.codesandbox/Dockerfile b/samples/charts/data-chart/radial-proportional-radial-angle-axis/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/.codesandbox/tasks.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/.stackblitzrc b/samples/charts/data-chart/radial-proportional-radial-angle-axis/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/angular.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json new file mode 100644 index 000000000..7356096ea --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -0,0 +1,43 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.5.4" + } +} diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/EnergyRenewableConsumption.ts b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/EnergyRenewableConsumption.ts new file mode 100644 index 000000000..f742bbef3 --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/EnergyRenewableConsumption.ts @@ -0,0 +1,69 @@ +export class EnergyRenewableConsumptionItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public location: string; + public year: number; + public hydro: number; + public solar: number; + public wind: number; + public other: number; + +} +export class EnergyRenewableConsumption extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyRenewableConsumptionItem( + { + location: `China`, + year: 2019, + hydro: 1269.5, + solar: 223, + wind: 405.2, + other: 102.8 + }), + new EnergyRenewableConsumptionItem( + { + location: `Europe`, + year: 2019, + hydro: 632.54, + solar: 154, + wind: 461.3, + other: 220.3 + }), + new EnergyRenewableConsumptionItem( + { + location: `USA`, + year: 2019, + hydro: 271.16, + solar: 108, + wind: 303.4, + other: 78.34 + }), + new EnergyRenewableConsumptionItem( + { + location: `Brazil`, + year: 2019, + hydro: 399.3, + solar: 5.5, + wind: 55.83, + other: 56.25 + }), + new EnergyRenewableConsumptionItem( + { + location: `Canada`, + year: 2019, + hydro: 381.98, + solar: 4.3, + wind: 34.17, + other: 10.81 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.component.html b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.component.html new file mode 100644 index 000000000..3b8053971 --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.component.html @@ -0,0 +1,50 @@ +
+
+ Hydro Consumption in 2019 +
+
+ + +
+
+ + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.component.scss b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.component.ts b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.component.ts new file mode 100644 index 000000000..f8c1df8d5 --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.component.ts @@ -0,0 +1,45 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { EnergyRenewableConsumptionItem, EnergyRenewableConsumption } from './EnergyRenewableConsumption'; +import { IgxLegendComponent, IgxDataChartComponent, IgxProportionalCategoryAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxRadialPieSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("angleAxis", { static: true } ) + private angleAxis: IgxProportionalCategoryAngleAxisComponent + @ViewChild("radiusAxis", { static: true } ) + private radiusAxis: IgxNumericRadiusAxisComponent + @ViewChild("radialPieSeries1", { static: true } ) + private radialPieSeries1: IgxRadialPieSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent + private _energyRenewableConsumption: EnergyRenewableConsumption = null; + public get energyRenewableConsumption(): EnergyRenewableConsumption { + if (this._energyRenewableConsumption == null) + { + this._energyRenewableConsumption = new EnergyRenewableConsumption(); + } + return this._energyRenewableConsumption; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.module.ts b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.module.ts new file mode 100644 index 000000000..3bd5b3852 --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.module.ts @@ -0,0 +1,31 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxLegendModule, IgxDataPieChartModule, IgxDataChartCoreModule, IgxDataChartRadialModule, IgxDataChartRadialCoreModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxLegendModule, + IgxDataPieChartModule, + IgxDataChartCoreModule, + IgxDataChartRadialModule, + IgxDataChartRadialCoreModule, + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/environments/environment.prod.ts b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/environments/environment.ts b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/index.html b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/main.ts b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/polyfills.ts b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/styles.scss b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/typings.d.ts b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/tsconfig.app.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/tsconfig.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/tslint.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/range-area-chart/src/polyfills.ts b/samples/charts/data-chart/range-area-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/range-area-chart/src/polyfills.ts +++ b/samples/charts/data-chart/range-area-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/range-column-chart/src/polyfills.ts b/samples/charts/data-chart/range-column-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/range-column-chart/src/polyfills.ts +++ b/samples/charts/data-chart/range-column-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/polyfills.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/polyfills.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/polyfills.ts b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/polyfills.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/polyfills.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/polyfills.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/polyfills.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/polyfills.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/scatter-line-chart/src/polyfills.ts b/samples/charts/data-chart/scatter-line-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/scatter-line-chart/src/polyfills.ts +++ b/samples/charts/data-chart/scatter-line-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/scatter-point-chart/src/polyfills.ts b/samples/charts/data-chart/scatter-point-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/scatter-point-chart/src/polyfills.ts +++ b/samples/charts/data-chart/scatter-point-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/scatter-spline-chart/src/polyfills.ts b/samples/charts/data-chart/scatter-spline-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/scatter-spline-chart/src/polyfills.ts +++ b/samples/charts/data-chart/scatter-spline-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-100-area-chart/src/polyfills.ts b/samples/charts/data-chart/stacked-100-area-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/src/polyfills.ts +++ b/samples/charts/data-chart/stacked-100-area-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/src/polyfills.ts b/samples/charts/data-chart/stacked-100-bar-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/src/polyfills.ts +++ b/samples/charts/data-chart/stacked-100-bar-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-100-column-chart/src/polyfills.ts b/samples/charts/data-chart/stacked-100-column-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/src/polyfills.ts +++ b/samples/charts/data-chart/stacked-100-column-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-100-line-chart/src/polyfills.ts b/samples/charts/data-chart/stacked-100-line-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/src/polyfills.ts +++ b/samples/charts/data-chart/stacked-100-line-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/src/polyfills.ts b/samples/charts/data-chart/stacked-100-spline-area-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/src/polyfills.ts +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/src/polyfills.ts b/samples/charts/data-chart/stacked-100-spline-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/src/polyfills.ts +++ b/samples/charts/data-chart/stacked-100-spline-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-area-chart/src/polyfills.ts b/samples/charts/data-chart/stacked-area-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/stacked-area-chart/src/polyfills.ts +++ b/samples/charts/data-chart/stacked-area-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-bar-chart/src/polyfills.ts b/samples/charts/data-chart/stacked-bar-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/stacked-bar-chart/src/polyfills.ts +++ b/samples/charts/data-chart/stacked-bar-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-column-chart/src/polyfills.ts b/samples/charts/data-chart/stacked-column-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/stacked-column-chart/src/polyfills.ts +++ b/samples/charts/data-chart/stacked-column-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-line-chart/src/polyfills.ts b/samples/charts/data-chart/stacked-line-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/stacked-line-chart/src/polyfills.ts +++ b/samples/charts/data-chart/stacked-line-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-spline-area-chart/src/polyfills.ts b/samples/charts/data-chart/stacked-spline-area-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/src/polyfills.ts +++ b/samples/charts/data-chart/stacked-spline-area-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/stacked-spline-chart/src/polyfills.ts b/samples/charts/data-chart/stacked-spline-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/stacked-spline-chart/src/polyfills.ts +++ b/samples/charts/data-chart/stacked-spline-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/transition-event/src/polyfills.ts b/samples/charts/data-chart/transition-event/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/transition-event/src/polyfills.ts +++ b/samples/charts/data-chart/transition-event/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-chart/waterfall-chart/src/polyfills.ts b/samples/charts/data-chart/waterfall-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-chart/waterfall-chart/src/polyfills.ts +++ b/samples/charts/data-chart/waterfall-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-pie-chart/animation/src/polyfills.ts b/samples/charts/data-pie-chart/animation/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-pie-chart/animation/src/polyfills.ts +++ b/samples/charts/data-pie-chart/animation/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-pie-chart/highlight-filter/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/highlight-filter/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/highlight-filter/.codesandbox/tasks.json b/samples/charts/data-pie-chart/highlight-filter/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/highlight-filter/.stackblitzrc b/samples/charts/data-pie-chart/highlight-filter/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/highlight-filter/angular.json b/samples/charts/data-pie-chart/highlight-filter/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json new file mode 100644 index 000000000..7356096ea --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -0,0 +1,43 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.5.4" + } +} diff --git a/samples/charts/data-pie-chart/highlight-filter/src/OnlineTrafficHighlightDesktopOnly.ts b/samples/charts/data-pie-chart/highlight-filter/src/OnlineTrafficHighlightDesktopOnly.ts new file mode 100644 index 000000000..b5787b318 --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/src/OnlineTrafficHighlightDesktopOnly.ts @@ -0,0 +1,55 @@ +export class OnlineTrafficHighlightDesktopOnlyItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public category: string; + public value: number; + +} +export class OnlineTrafficHighlightDesktopOnly extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OnlineTrafficHighlightDesktopOnlyItem( + { + category: `Apparel`, + value: 27 + }), + new OnlineTrafficHighlightDesktopOnlyItem( + { + category: `Beauty`, + value: 29 + }), + new OnlineTrafficHighlightDesktopOnlyItem( + { + category: `Travel`, + value: 41 + }), + new OnlineTrafficHighlightDesktopOnlyItem( + { + category: `Grocery`, + value: 37 + }), + new OnlineTrafficHighlightDesktopOnlyItem( + { + category: `Energy`, + value: 58 + }), + new OnlineTrafficHighlightDesktopOnlyItem( + { + category: `Home Supply`, + value: 35 + }), + new OnlineTrafficHighlightDesktopOnlyItem( + { + category: `Financial`, + value: 58 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-pie-chart/highlight-filter/src/OnlineTrafficHighlightTotals.ts b/samples/charts/data-pie-chart/highlight-filter/src/OnlineTrafficHighlightTotals.ts new file mode 100644 index 000000000..5c376f641 --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/src/OnlineTrafficHighlightTotals.ts @@ -0,0 +1,55 @@ +export class OnlineTrafficHighlightTotalsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public category: string; + public value: number; + +} +export class OnlineTrafficHighlightTotals extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OnlineTrafficHighlightTotalsItem( + { + category: `Apparel`, + value: 56 + }), + new OnlineTrafficHighlightTotalsItem( + { + category: `Beauty`, + value: 67 + }), + new OnlineTrafficHighlightTotalsItem( + { + category: `Travel`, + value: 80 + }), + new OnlineTrafficHighlightTotalsItem( + { + category: `Grocery`, + value: 62 + }), + new OnlineTrafficHighlightTotalsItem( + { + category: `Energy`, + value: 74 + }), + new OnlineTrafficHighlightTotalsItem( + { + category: `Home Supply`, + value: 65 + }), + new OnlineTrafficHighlightTotalsItem( + { + category: `Financial`, + value: 88 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-pie-chart/highlight-filter/src/app.component.html b/samples/charts/data-pie-chart/highlight-filter/src/app.component.html new file mode 100644 index 000000000..b60160944 --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/src/app.component.html @@ -0,0 +1,11 @@ +
+
+ + +
+
diff --git a/samples/charts/data-pie-chart/highlight-filter/src/app.component.scss b/samples/charts/data-pie-chart/highlight-filter/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-pie-chart/highlight-filter/src/app.component.ts b/samples/charts/data-pie-chart/highlight-filter/src/app.component.ts new file mode 100644 index 000000000..1ff8d408c --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/src/app.component.ts @@ -0,0 +1,56 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, DataPieChartDescriptionModule } from 'igniteui-angular-core'; +import { OnlineTrafficHighlightTotalsItem, OnlineTrafficHighlightTotals } from './OnlineTrafficHighlightTotals'; +import { OnlineTrafficHighlightDesktopOnlyItem, OnlineTrafficHighlightDesktopOnly } from './OnlineTrafficHighlightDesktopOnly'; +import { IgxDataPieChartComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("chart", { static: true } ) + private chart: IgxDataPieChartComponent + private _onlineTrafficHighlightTotals: OnlineTrafficHighlightTotals = null; + public get onlineTrafficHighlightTotals(): OnlineTrafficHighlightTotals { + if (this._onlineTrafficHighlightTotals == null) + { + this._onlineTrafficHighlightTotals = new OnlineTrafficHighlightTotals(); + } + return this._onlineTrafficHighlightTotals; + } + + private _onlineTrafficHighlightDesktopOnly: OnlineTrafficHighlightDesktopOnly = null; + public get onlineTrafficHighlightDesktopOnly(): OnlineTrafficHighlightDesktopOnly { + if (this._onlineTrafficHighlightDesktopOnly == null) + { + this._onlineTrafficHighlightDesktopOnly = new OnlineTrafficHighlightDesktopOnly(); + } + return this._onlineTrafficHighlightDesktopOnly; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + DataPieChartDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-pie-chart/highlight-filter/src/app.module.ts b/samples/charts/data-pie-chart/highlight-filter/src/app.module.ts new file mode 100644 index 000000000..fa40a615b --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/src/app.module.ts @@ -0,0 +1,25 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDataPieChartModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDataPieChartModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-pie-chart/highlight-filter/src/environments/environment.prod.ts b/samples/charts/data-pie-chart/highlight-filter/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-pie-chart/highlight-filter/src/environments/environment.ts b/samples/charts/data-pie-chart/highlight-filter/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-pie-chart/highlight-filter/src/index.html b/samples/charts/data-pie-chart/highlight-filter/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-pie-chart/highlight-filter/src/main.ts b/samples/charts/data-pie-chart/highlight-filter/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-pie-chart/highlight-filter/src/polyfills.ts b/samples/charts/data-pie-chart/highlight-filter/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-pie-chart/highlight-filter/src/styles.scss b/samples/charts/data-pie-chart/highlight-filter/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-pie-chart/highlight-filter/src/typings.d.ts b/samples/charts/data-pie-chart/highlight-filter/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-pie-chart/highlight-filter/tsconfig.app.json b/samples/charts/data-pie-chart/highlight-filter/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-pie-chart/highlight-filter/tsconfig.json b/samples/charts/data-pie-chart/highlight-filter/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/highlight-filter/tslint.json b/samples/charts/data-pie-chart/highlight-filter/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-pie-chart/highlighting/src/polyfills.ts b/samples/charts/data-pie-chart/highlighting/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-pie-chart/highlighting/src/polyfills.ts +++ b/samples/charts/data-pie-chart/highlighting/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index 7e284b173..36710857f 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -30,17 +29,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-pie-chart/legend/src/app.component.ts b/samples/charts/data-pie-chart/legend/src/app.component.ts index fe1f74e33..ce009fffc 100644 --- a/samples/charts/data-pie-chart/legend/src/app.component.ts +++ b/samples/charts/data-pie-chart/legend/src/app.component.ts @@ -1,8 +1,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-angular-core'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; -import { IgxItemLegendComponent } from 'igniteui-angular-charts'; -import { IgxDataPieChartComponent } from 'igniteui-angular-charts'; +import { IgxItemLegendComponent, IgxDataPieChartComponent } from 'igniteui-angular-charts'; @Component({ selector: "app-root", diff --git a/samples/charts/data-pie-chart/legend/src/polyfills.ts b/samples/charts/data-pie-chart/legend/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-pie-chart/legend/src/polyfills.ts +++ b/samples/charts/data-pie-chart/legend/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-pie-chart/others/src/polyfills.ts b/samples/charts/data-pie-chart/others/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-pie-chart/others/src/polyfills.ts +++ b/samples/charts/data-pie-chart/others/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-pie-chart/overview/src/polyfills.ts b/samples/charts/data-pie-chart/overview/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-pie-chart/overview/src/polyfills.ts +++ b/samples/charts/data-pie-chart/overview/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/data-pie-chart/selection/src/polyfills.ts b/samples/charts/data-pie-chart/selection/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/data-pie-chart/selection/src/polyfills.ts +++ b/samples/charts/data-pie-chart/selection/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/doughnut-chart/legend/src/polyfills.ts b/samples/charts/doughnut-chart/legend/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/doughnut-chart/legend/src/polyfills.ts +++ b/samples/charts/doughnut-chart/legend/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/doughnut-chart/overview/src/polyfills.ts b/samples/charts/doughnut-chart/overview/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/doughnut-chart/overview/src/polyfills.ts +++ b/samples/charts/doughnut-chart/overview/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/doughnut-chart/rings/src/polyfills.ts b/samples/charts/doughnut-chart/rings/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/doughnut-chart/rings/src/polyfills.ts +++ b/samples/charts/doughnut-chart/rings/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/src/polyfills.ts b/samples/charts/financial-chart/data-legend-formatting-currency/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/src/polyfills.ts +++ b/samples/charts/financial-chart/data-legend-formatting-currency/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/polyfills.ts b/samples/charts/financial-chart/data-legend-styling-props/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/src/polyfills.ts +++ b/samples/charts/financial-chart/data-legend-styling-props/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/data-legend/src/polyfills.ts b/samples/charts/financial-chart/data-legend/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/financial-chart/data-legend/src/polyfills.ts +++ b/samples/charts/financial-chart/data-legend/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/polyfills.ts b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/polyfills.ts +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/src/polyfills.ts b/samples/charts/financial-chart/data-tooltip-styling-props/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/src/polyfills.ts +++ b/samples/charts/financial-chart/data-tooltip-styling-props/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/data-tooltip/src/polyfills.ts b/samples/charts/financial-chart/data-tooltip/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/financial-chart/data-tooltip/src/polyfills.ts +++ b/samples/charts/financial-chart/data-tooltip/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/format-specifiers/src/polyfills.ts b/samples/charts/financial-chart/format-specifiers/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/financial-chart/format-specifiers/src/polyfills.ts +++ b/samples/charts/financial-chart/format-specifiers/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/financial-chart/scrollbars/src/polyfills.ts b/samples/charts/financial-chart/scrollbars/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/financial-chart/scrollbars/src/polyfills.ts +++ b/samples/charts/financial-chart/scrollbars/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/pie-chart/legend/src/polyfills.ts b/samples/charts/pie-chart/legend/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/pie-chart/legend/src/polyfills.ts +++ b/samples/charts/pie-chart/legend/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/pie-chart/others/src/polyfills.ts b/samples/charts/pie-chart/others/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/pie-chart/others/src/polyfills.ts +++ b/samples/charts/pie-chart/others/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/pie-chart/overview/src/polyfills.ts b/samples/charts/pie-chart/overview/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/pie-chart/overview/src/polyfills.ts +++ b/samples/charts/pie-chart/overview/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/pie-chart/styling/src/polyfills.ts b/samples/charts/pie-chart/styling/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/pie-chart/styling/src/polyfills.ts +++ b/samples/charts/pie-chart/styling/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/display-area/src/polyfills.ts b/samples/charts/sparkline/display-area/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/sparkline/display-area/src/polyfills.ts +++ b/samples/charts/sparkline/display-area/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/display-column/src/polyfills.ts b/samples/charts/sparkline/display-column/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/sparkline/display-column/src/polyfills.ts +++ b/samples/charts/sparkline/display-column/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 7e284b173..36710857f 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -30,17 +29,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/display-lines/src/polyfills.ts b/samples/charts/sparkline/display-lines/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/sparkline/display-lines/src/polyfills.ts +++ b/samples/charts/sparkline/display-lines/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/display-winloss/src/polyfills.ts b/samples/charts/sparkline/display-winloss/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/sparkline/display-winloss/src/polyfills.ts +++ b/samples/charts/sparkline/display-winloss/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/markers/src/polyfills.ts b/samples/charts/sparkline/markers/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/sparkline/markers/src/polyfills.ts +++ b/samples/charts/sparkline/markers/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/normal-range/src/polyfills.ts b/samples/charts/sparkline/normal-range/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/sparkline/normal-range/src/polyfills.ts +++ b/samples/charts/sparkline/normal-range/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/trendlines/src/polyfills.ts b/samples/charts/sparkline/trendlines/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/sparkline/trendlines/src/polyfills.ts +++ b/samples/charts/sparkline/trendlines/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/sparkline/unknown-values/src/polyfills.ts b/samples/charts/sparkline/unknown-values/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/sparkline/unknown-values/src/polyfills.ts +++ b/samples/charts/sparkline/unknown-values/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 7e284b173..36710857f 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -30,17 +29,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/polyfills.ts b/samples/charts/toolbar/actions-built-in-category-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/polyfills.ts +++ b/samples/charts/toolbar/actions-built-in-category-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 7e284b173..36710857f 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -30,17 +29,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/src/polyfills.ts b/samples/charts/toolbar/actions-built-in-data-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/polyfills.ts +++ b/samples/charts/toolbar/actions-built-in-data-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 7e284b173..36710857f 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -30,17 +29,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/toolbar/custom-tool/src/polyfills.ts b/samples/charts/toolbar/custom-tool/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/toolbar/custom-tool/src/polyfills.ts +++ b/samples/charts/toolbar/custom-tool/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 7e284b173..36710857f 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -30,17 +29,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/polyfills.ts b/samples/charts/toolbar/layout-actions-for-data-chart/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/polyfills.ts +++ b/samples/charts/toolbar/layout-actions-for-data-chart/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 7e284b173..36710857f 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -30,17 +29,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/src/polyfills.ts b/samples/charts/toolbar/layout-in-vertical-orientation/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/src/polyfills.ts +++ b/samples/charts/toolbar/layout-in-vertical-orientation/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/toolbar/theming/src/polyfills.ts b/samples/charts/toolbar/theming/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/toolbar/theming/src/polyfills.ts +++ b/samples/charts/toolbar/theming/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/tree-map/highlighting-percent-based/src/polyfills.ts b/samples/charts/tree-map/highlighting-percent-based/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/tree-map/highlighting-percent-based/src/polyfills.ts +++ b/samples/charts/tree-map/highlighting-percent-based/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/tree-map/highlighting/src/polyfills.ts b/samples/charts/tree-map/highlighting/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/tree-map/highlighting/src/polyfills.ts +++ b/samples/charts/tree-map/highlighting/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 37fcd2e8d..75d8b2472 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -31,17 +30,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/tree-map/layout/src/polyfills.ts b/samples/charts/tree-map/layout/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/tree-map/layout/src/polyfills.ts +++ b/samples/charts/tree-map/layout/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/tree-map/overview/src/polyfills.ts b/samples/charts/tree-map/overview/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/tree-map/overview/src/polyfills.ts +++ b/samples/charts/tree-map/overview/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index df31ab5c3..7356096ea 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -16,7 +16,6 @@ "@angular/platform-browser-dynamic": "18.2.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", - "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular-charts": "18.1.0", "igniteui-angular-core": "18.1.0", @@ -28,17 +27,17 @@ "zone.js": "~0.14.4" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", "@angular/cli": "18.2.1", "@angular/compiler-cli": "18.2.1", "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.5.4" } } diff --git a/samples/charts/tree-map/styling/src/polyfills.ts b/samples/charts/tree-map/styling/src/polyfills.ts index d583cff9c..bea4237c0 100644 --- a/samples/charts/tree-map/styling/src/polyfills.ts +++ b/samples/charts/tree-map/styling/src/polyfills.ts @@ -18,17 +18,13 @@ * BROWSER POLYFILLS */ -// import "core-js/es7/object"; - /** IE10 and IE11 requires the following for NgClass support on SVG elements */ //import "classlist.js"; // run `npm install --save classlist.js`. /** IE10 and IE11 requires the following for the Reflect API. */ -// import "core-js/es6/reflect"; /* Evergreen browsers require these. */ // used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. -// import "core-js/es7/reflect"; /* * Required to support Web Animations `@angular/platform-browser/animations`. From ef2694976504d041cd98bcd30406c4ea6096893b Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 10:02:30 -0400 Subject: [PATCH 103/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.10.21.1 (#236) Co-authored-by: tfsbuild --- .../data-legend/src/app.component.html | 20 ++++++++++--------- .../data-legend/src/app.component.ts | 6 +++--- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/samples/charts/data-chart/data-legend/src/app.component.html b/samples/charts/data-chart/data-legend/src/app.component.html index ddc9c80dc..78be73b8b 100644 --- a/samples/charts/data-chart/data-legend/src/app.component.html +++ b/samples/charts/data-chart/data-legend/src/app.component.html @@ -6,21 +6,15 @@ + [target]="chart" + unitsText="%" + includedColumns="BirthRate, DeathRate">
- - + + Date: Fri, 22 Nov 2024 11:57:30 -0500 Subject: [PATCH 104/154] sync IG version --- browser/package.json | 2 +- browser/scripts/browser.js | 2 +- samples/charts/category-chart/annotations-all/package.json | 2 +- samples/charts/category-chart/annotations-callouts/package.json | 2 +- .../charts/category-chart/annotations-crosshairs/package.json | 2 +- samples/charts/category-chart/annotations-custom/package.json | 2 +- .../charts/category-chart/annotations-final-value/package.json | 2 +- .../charts/category-chart/annotations-highlighting/package.json | 2 +- samples/charts/category-chart/axis-gap/package.json | 2 +- samples/charts/category-chart/axis-gridlines/package.json | 2 +- samples/charts/category-chart/axis-inverted/package.json | 2 +- samples/charts/category-chart/axis-labels/package.json | 2 +- samples/charts/category-chart/axis-locations/package.json | 2 +- samples/charts/category-chart/axis-overlap/package.json | 2 +- samples/charts/category-chart/axis-range/package.json | 2 +- samples/charts/category-chart/axis-tickmarks/package.json | 2 +- .../charts/category-chart/chart-highlight-filter/package.json | 2 +- .../category-chart/column-chart-with-tooltips/package.json | 2 +- samples/charts/category-chart/data-aggregations/package.json | 2 +- samples/charts/category-chart/data-filter/package.json | 2 +- .../charts/category-chart/data-tooltip-positioning/package.json | 2 +- .../charts/category-chart/highlighting-behavior/package.json | 2 +- samples/charts/category-chart/highlighting-mode/package.json | 2 +- samples/charts/category-chart/marker-options/package.json | 2 +- .../charts/category-chart/selection-multiple-modes/package.json | 2 +- samples/charts/category-chart/value-lines/package.json | 2 +- samples/charts/data-chart/axis-label-rotation/package.json | 2 +- .../data-chart/chart-highlight-filter-datasource/package.json | 2 +- .../chart-highlight-filter-multiple-series/package.json | 2 +- samples/charts/data-chart/chart-highlight-filter/package.json | 2 +- samples/charts/data-chart/radial-label-mode/package.json | 2 +- samples/charts/data-chart/transition-event/package.json | 2 +- samples/charts/data-pie-chart/animation/package.json | 2 +- samples/charts/data-pie-chart/highlighting/package.json | 2 +- samples/charts/data-pie-chart/others/package.json | 2 +- samples/charts/data-pie-chart/selection/package.json | 2 +- samples/charts/sparkline/markers/package.json | 2 +- samples/charts/sparkline/normal-range/package.json | 2 +- samples/charts/sparkline/trendlines/package.json | 2 +- samples/charts/sparkline/unknown-values/package.json | 2 +- samples/charts/toolbar/theming/package.json | 2 +- samples/charts/tree-map/highlighting/package.json | 2 +- samples/charts/tree-map/layout/package.json | 2 +- 43 files changed, 43 insertions(+), 43 deletions(-) diff --git a/browser/package.json b/browser/package.json index 8c753f010..ecaf29966 100644 --- a/browser/package.json +++ b/browser/package.json @@ -49,7 +49,7 @@ "igniteui-angular-spreadsheet": "18.1.0", "igniteui-angular-spreadsheet-chart-adapter": "18.1.0", "igniteui-theming": "11.0.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "immediate": "3.2.3", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index ef4ec9a14..ebc0b6bee 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1084,7 +1084,7 @@ function updateIG(cb) { { name: "igniteui-angular-spreadsheet" , version: "18.1.0" }, { name: "igniteui-angular-datasources" , version: "18.1.0" }, // these IG packages are sometimes updated: - { name: "igniteui-webcomponents", version: "4.11.1" }, + { name: "igniteui-webcomponents", version: "5.1.1" }, { name: "igniteui-theming", version: "11.0.0" }, { name: "igniteui-angular", version: "18.1.7" }, { name: "@angular/animations", version: "18.2.1" }, diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 75d8b2472..411af6f90 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.1.0", "igniteui-angular-inputs": "18.1.0", "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "4.11.1", + "igniteui-webcomponents": "5.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", From fb2f76b873832b0fc747a19f39388b142c7c9452 Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Fri, 22 Nov 2024 11:57:55 -0500 Subject: [PATCH 105/154] update readme --- .../ReadMe.md | 58 +++++++++++++++++++ .../data-pie-chart/highlight-filter/ReadMe.md | 58 +++++++++++++++++++ 2 files changed, 116 insertions(+) create mode 100644 samples/charts/data-chart/radial-proportional-radial-angle-axis/ReadMe.md create mode 100644 samples/charts/data-pie-chart/highlight-filter/ReadMe.md diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/ReadMe.md b/samples/charts/data-chart/radial-proportional-radial-angle-axis/ReadMe.md new file mode 100644 index 000000000..64cc3b7ac --- /dev/null +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Radial Proportional Radial Angle Axis feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/radial-proportional-radial-angle-axis +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-pie-chart/highlight-filter/ReadMe.md b/samples/charts/data-pie-chart/highlight-filter/ReadMe.md new file mode 100644 index 000000000..9f8493abe --- /dev/null +++ b/samples/charts/data-pie-chart/highlight-filter/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Highlight Filter feature using [DataPieChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-pie-chart/highlight-filter +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). From ab9f1ea63f31277b93ba722a44a5f82026521656 Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Mon, 25 Nov 2024 14:36:09 -0500 Subject: [PATCH 106/154] readme - Updating Packages in Samples --- README.md | 14 +++--- browser/scripts/browser.js | 94 +++++++++++++++++++------------------- 2 files changed, 53 insertions(+), 55 deletions(-) diff --git a/README.md b/README.md index 129d2eca7..75467b4e4 100644 --- a/README.md +++ b/README.md @@ -172,19 +172,17 @@ NOTE this will re-generate the Readme.md file in the new sample To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-Angular/Angular/components/general-getting-started.html). -# Updating Version of IgniteUI Packages +## Updating Packages in Samples -Perform these steps to update version of **Ignite UI for Angular** packages in all samples. NOTE that the order of these steps is very important. +NOTE Do NOT find replace version of packages in package.json files. - open this repo in VS Code - open [browser.js](./browser/tasks/browser.js) file - navigate to the `updateIG` function -- change version of **Ignite UI for Angular** packages in the `packageUpgrades` array +- update version of packages in `packageUpgrades` array - open terminal window - run `cd browser` command -- run `gulp updateIG` command +- run the `gulp updateIG` command - run `npm install --legacy-peer-deps` command -- create pull request with your changes -- open the [Igniteui-xplat-example](https://github.com/IgniteUI/igniteui-xplat-examples) repo in VS Code -- update version of **Ignite UI for Angular** packages in [Angular template](https://github.com/IgniteUI/igniteui-xplat-examples/blob/23.2.x/editor-templates/Angular/main-template/package.json) -- create pull request with your changes in [Igniteui-xplat-example](https://github.com/IgniteUI/igniteui-xplat-examples) repo \ No newline at end of file +- create AND merge a pull request with changes in all package.json files in this repository +- create 2nd pull request with similar changes in `/editor-templates/angular/main-template/package.json` of the [igniteui-xplat-examples](https://github.com/IgniteUI/igniteui-xplat-examples) repository. \ No newline at end of file diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index ebc0b6bee..e38e997fd 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1063,60 +1063,60 @@ function sortByKeys(dependencies) function updateIG(cb) { // cleanup packages to speedup this gulp script - // del.sync("./samples/**/node_modules/**/*.*", {force:true}); - // del.sync("./samples/**/node_modules/**", {force:true}); - // del.sync("./samples/**/node_modules", {force:true}); + del.sync("./samples/**/node_modules/**/*.*", {force:true}); + del.sync("./samples/**/node_modules/**", {force:true}); + del.sync("./samples/**/node_modules", {force:true}); // NOTE: change this array with new version of packages // and optionally use "@infragistics/" proget prefix, e.g. - // { name: "@infragistics/igniteui-angular-charts", version: "23.2.18" }, // PROGET - // { name: "igniteui-angular-charts", version: "14.1.0" }, // NPM + // { version: "23.2.18", name: "@infragistics/igniteui-angular-charts" }, // PROGET + // { version: "14.1.0", name: "igniteui-angular-charts" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { name: "igniteui-angular-core" , version: "18.1.0" }, - { name: "igniteui-angular-charts" , version: "18.1.0" }, - { name: "igniteui-angular-excel" , version: "18.1.0" }, - { name: "igniteui-angular-gauges" , version: "18.1.0" }, - { name: "igniteui-angular-inputs" , version: "18.1.0" }, - { name: "igniteui-angular-layouts" , version: "18.1.0" }, - { name: "igniteui-angular-maps" , version: "18.1.0" }, - { name: "igniteui-angular-spreadsheet-chart-adapter", version: "18.1.0" }, - { name: "igniteui-angular-spreadsheet" , version: "18.1.0" }, - { name: "igniteui-angular-datasources" , version: "18.1.0" }, + { version: "18.1.0", name: "igniteui-angular-core" }, + { version: "18.1.0", name: "igniteui-angular-charts" }, + { version: "18.1.0", name: "igniteui-angular-excel" }, + { version: "18.1.0", name: "igniteui-angular-gauges" }, + { version: "18.1.0", name: "igniteui-angular-inputs" }, + { version: "18.1.0", name: "igniteui-angular-layouts" }, + { version: "18.1.0", name: "igniteui-angular-maps" }, + { version: "18.1.0", name: "igniteui-angular-spreadsheet-chart-adapter" }, + { version: "18.1.0", name: "igniteui-angular-spreadsheet" }, + { version: "18.1.0", name: "igniteui-angular-datasources" }, // these IG packages are sometimes updated: - { name: "igniteui-webcomponents", version: "5.1.1" }, - { name: "igniteui-theming", version: "11.0.0" }, - { name: "igniteui-angular", version: "18.1.7" }, - { name: "@angular/animations", version: "18.2.1" }, - { name: "@angular/common", version: "18.2.1" }, - { name: "@angular/compiler", version: "18.2.1" }, - { name: "@angular/core", version: "18.2.1" }, - { name: "@angular/forms", version: "18.2.1" }, - { name: "@angular/platform-browser", version: "18.2.1" }, - { name: "@angular/platform-browser-dynamic", version: "18.2.1" }, - { name: "@types/hammerjs", version: "2.0.40" }, - { name: "classlist-js", version: "1.1.20150312" }, - { name: "core-js", version: "3.21.0" }, - { name: "hammerjs", version: "2.0.8" }, - { name: "intl", version: "1.2.5" }, - { name: "jszip", version: "3.8.0" }, - { name: "rxjs", version: "7.8.1" }, - { name: "tslib", version: "2.6.1" }, - { name: "web-animations-js", version: "2.3.2" }, - { name: "zone.js", version: "~0.14.4" }, + { version: "5.1.1" , name: "igniteui-webcomponents" }, + { version: "11.0.0", name: "igniteui-theming" }, + { version: "18.1.7", name: "igniteui-angular" }, + { version: "18.2.1", name: "@angular/animations" }, + { version: "18.2.1", name: "@angular/common" }, + { version: "18.2.1", name: "@angular/compiler" }, + { version: "18.2.1", name: "@angular/core" }, + { version: "18.2.1", name: "@angular/forms" }, + { version: "18.2.1", name: "@angular/platform-browser" }, + { version: "18.2.1", name: "@angular/platform-browser-dynamic" }, + { version: "2.0.40", name: "@types/hammerjs" }, + { version: "1.1.20150312", name: "classlist-js" }, + { version: "3.21.0" , name: "core-js" }, + { version: "2.0.8" , name: "hammerjs" }, + { version: "1.2.5" , name: "intl" }, + { version: "3.8.0" , name: "jszip" }, + { version: "7.8.1" , name: "rxjs" }, + { version: "2.6.1" , name: "tslib" }, + { version: "2.3.2" , name: "web-animations-js", }, + { version: "~0.14.4", name: "zone.js" }, // dev packages: - { name: "@angular/cli", version: "18.2.1"}, - { name: "@angular/compiler-cli", version: "18.2.1"}, - { name: "@angular/language-service", version: "18.2.1"}, - { name: "@angular-devkit/build-angular", version: "18.2.1"}, - { name: "@types/node", version: "18.17.0"}, - { name: "codelyzer", version: "6.0.2"}, - { name: "jasmine-core", version: "5.1.1"}, - { name: "jasmine-spec-reporter", version: "~4.2.1"}, - { name: "sass.js", version: "0.11.1"}, - { name: "tslint", version: "~6.1.3"}, - { name: "ts-node", version: "10.9.1"}, - { name: "typescript", version: "5.5.4"}, + { version: "18.2.1" , name: "@angular/cli" }, + { version: "18.2.1" , name: "@angular/compiler-cli" }, + { version: "18.2.1" , name: "@angular/language-service" }, + { version: "18.2.1" , name: "@angular-devkit/build-angular" }, + { version: "18.17.0", name: "@types/node" }, + { version: "6.0.2" , name: "codelyzer" }, + { version: "5.1.1" , name: "jasmine-core" }, + { version: "~4.2.1" , name: "jasmine-spec-reporter" }, + { version: "0.11.1" , name: "sass.js" }, + { version: "~6.1.3" , name: "tslint" }, + { version: "10.9.1" , name: "ts-node" }, + { version: "5.5.4" , name: "typescript" }, ]; // NOTE you can comment out strings in this array to run these function only on a subset of samples From d02f54f5646cbc2e76a0e46030121f8c336f8de3 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 14:46:29 -0500 Subject: [PATCH 107/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.12.12.2 (#249) Co-authored-by: tfsbuild --- .../annotations-all/src/app.component.html | 3 +- .../src/app.component.html | 3 +- .../src/app.component.html | 3 +- .../annotations-custom/src/app.component.html | 3 +- .../src/app.component.html | 3 +- .../src/app.component.html | 3 +- .../axis-gridlines/src/app.component.html | 22 ++++ .../axis-gridlines/src/app.component.ts | 4 + .../src/app.component.html | 3 +- .../highlighting-mode/src/app.component.html | 3 +- .../src/app.component.html | 3 +- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../color-editor-support/.stackblitzrc | 1 + .../toolbar/color-editor-support/angular.json | 120 ++++++++++++++++++ .../toolbar/color-editor-support/package.json | 45 +++++++ .../src/CountryRenewableElectricity.ts | 106 ++++++++++++++++ .../src/app.component.html | 51 ++++++++ .../src/app.component.scss | 21 +++ .../color-editor-support/src/app.component.ts | 61 +++++++++ .../color-editor-support/src/app.module.ts | 39 ++++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../color-editor-support/src/index.html | 23 ++++ .../toolbar/color-editor-support/src/main.ts | 15 +++ .../color-editor-support/src/polyfills.ts | 61 +++++++++ .../color-editor-support/src/styles.scss | 9 ++ .../color-editor-support/src/typings.d.ts | 5 + .../color-editor-support/tsconfig.app.json | 10 ++ .../color-editor-support/tsconfig.json | 27 ++++ .../toolbar/color-editor-support/tslint.json | 31 +++++ .../custom-tool/src/app.component.html | 4 +- .../toolbar/custom-tool/src/app.component.ts | 2 + .../overview/.codesandbox/Dockerfile | 1 + .../overview/.codesandbox/tasks.json | 17 +++ .../color-editor/overview/.stackblitzrc | 1 + .../inputs/color-editor/overview/angular.json | 120 ++++++++++++++++++ .../inputs/color-editor/overview/package.json | 43 +++++++ .../overview/src/app.component.html | 8 ++ .../overview/src/app.component.scss | 3 + .../overview/src/app.component.ts | 26 ++++ .../color-editor/overview/src/app.module.ts | 25 ++++ .../src/environments/environment.prod.ts | 3 + .../overview/src/environments/environment.ts | 16 +++ .../color-editor/overview/src/index.html | 23 ++++ .../inputs/color-editor/overview/src/main.ts | 15 +++ .../color-editor/overview/src/polyfills.ts | 61 +++++++++ .../color-editor/overview/src/styles.scss | 9 ++ .../color-editor/overview/src/typings.d.ts | 5 + .../color-editor/overview/tsconfig.app.json | 10 ++ .../color-editor/overview/tsconfig.json | 27 ++++ .../inputs/color-editor/overview/tslint.json | 31 +++++ 52 files changed, 1155 insertions(+), 10 deletions(-) create mode 100644 samples/charts/toolbar/color-editor-support/.codesandbox/Dockerfile create mode 100644 samples/charts/toolbar/color-editor-support/.codesandbox/tasks.json create mode 100644 samples/charts/toolbar/color-editor-support/.stackblitzrc create mode 100644 samples/charts/toolbar/color-editor-support/angular.json create mode 100644 samples/charts/toolbar/color-editor-support/package.json create mode 100644 samples/charts/toolbar/color-editor-support/src/CountryRenewableElectricity.ts create mode 100644 samples/charts/toolbar/color-editor-support/src/app.component.html create mode 100644 samples/charts/toolbar/color-editor-support/src/app.component.scss create mode 100644 samples/charts/toolbar/color-editor-support/src/app.component.ts create mode 100644 samples/charts/toolbar/color-editor-support/src/app.module.ts create mode 100644 samples/charts/toolbar/color-editor-support/src/environments/environment.prod.ts create mode 100644 samples/charts/toolbar/color-editor-support/src/environments/environment.ts create mode 100644 samples/charts/toolbar/color-editor-support/src/index.html create mode 100644 samples/charts/toolbar/color-editor-support/src/main.ts create mode 100644 samples/charts/toolbar/color-editor-support/src/polyfills.ts create mode 100644 samples/charts/toolbar/color-editor-support/src/styles.scss create mode 100644 samples/charts/toolbar/color-editor-support/src/typings.d.ts create mode 100644 samples/charts/toolbar/color-editor-support/tsconfig.app.json create mode 100644 samples/charts/toolbar/color-editor-support/tsconfig.json create mode 100644 samples/charts/toolbar/color-editor-support/tslint.json create mode 100644 samples/inputs/color-editor/overview/.codesandbox/Dockerfile create mode 100644 samples/inputs/color-editor/overview/.codesandbox/tasks.json create mode 100644 samples/inputs/color-editor/overview/.stackblitzrc create mode 100644 samples/inputs/color-editor/overview/angular.json create mode 100644 samples/inputs/color-editor/overview/package.json create mode 100644 samples/inputs/color-editor/overview/src/app.component.html create mode 100644 samples/inputs/color-editor/overview/src/app.component.scss create mode 100644 samples/inputs/color-editor/overview/src/app.component.ts create mode 100644 samples/inputs/color-editor/overview/src/app.module.ts create mode 100644 samples/inputs/color-editor/overview/src/environments/environment.prod.ts create mode 100644 samples/inputs/color-editor/overview/src/environments/environment.ts create mode 100644 samples/inputs/color-editor/overview/src/index.html create mode 100644 samples/inputs/color-editor/overview/src/main.ts create mode 100644 samples/inputs/color-editor/overview/src/polyfills.ts create mode 100644 samples/inputs/color-editor/overview/src/styles.scss create mode 100644 samples/inputs/color-editor/overview/src/typings.d.ts create mode 100644 samples/inputs/color-editor/overview/tsconfig.app.json create mode 100644 samples/inputs/color-editor/overview/tsconfig.json create mode 100644 samples/inputs/color-editor/overview/tslint.json diff --git a/samples/charts/category-chart/annotations-all/src/app.component.html b/samples/charts/category-chart/annotations-all/src/app.component.html index 200d2841b..4c282415c 100644 --- a/samples/charts/category-chart/annotations-all/src/app.component.html +++ b/samples/charts/category-chart/annotations-all/src/app.component.html @@ -65,7 +65,8 @@ finalValueAnnotationsTextColor="white" finalValueAnnotationsPrecision="0" yAxisMaximumValue="35" - yAxisLabelLocation="OutsideRight"> + yAxisLabelLocation="OutsideRight" + isTransitionInEnabled="false">
diff --git a/samples/charts/category-chart/annotations-callouts/src/app.component.html b/samples/charts/category-chart/annotations-callouts/src/app.component.html index 1bdd6320b..4b4b4d910 100644 --- a/samples/charts/category-chart/annotations-callouts/src/app.component.html +++ b/samples/charts/category-chart/annotations-callouts/src/app.component.html @@ -35,7 +35,8 @@ crosshairsAnnotationYAxisPrecision="0" yAxisMaximumValue="35" yAxisTitle="Degrees Celsius" - yAxisLabelLocation="OutsideRight"> + yAxisLabelLocation="OutsideRight" + isTransitionInEnabled="false">
diff --git a/samples/charts/category-chart/annotations-crosshairs/src/app.component.html b/samples/charts/category-chart/annotations-crosshairs/src/app.component.html index 0ae5b42e0..c3ef97e39 100644 --- a/samples/charts/category-chart/annotations-crosshairs/src/app.component.html +++ b/samples/charts/category-chart/annotations-crosshairs/src/app.component.html @@ -47,7 +47,8 @@ crosshairsLineThickness="2" crosshairsSnapToData="true" yAxisMaximumValue="35" - yAxisLabelLocation="OutsideRight"> + yAxisLabelLocation="OutsideRight" + isTransitionInEnabled="false">
diff --git a/samples/charts/category-chart/annotations-custom/src/app.component.html b/samples/charts/category-chart/annotations-custom/src/app.component.html index 5b578c01e..16c10b1f0 100644 --- a/samples/charts/category-chart/annotations-custom/src/app.component.html +++ b/samples/charts/category-chart/annotations-custom/src/app.component.html @@ -38,7 +38,8 @@ calloutsYMemberPath="temperature" calloutsLabelMemberPath="tempInfo" yAxisMaximumValue="35" - yAxisLabelLocation="OutsideRight"> + yAxisLabelLocation="OutsideRight" + isTransitionInEnabled="false">
diff --git a/samples/charts/category-chart/annotations-final-value/src/app.component.html b/samples/charts/category-chart/annotations-final-value/src/app.component.html index 6c309c70f..d96b7b2b3 100644 --- a/samples/charts/category-chart/annotations-final-value/src/app.component.html +++ b/samples/charts/category-chart/annotations-final-value/src/app.component.html @@ -37,7 +37,8 @@ finalValueAnnotationsPrecision="0" crosshairsAnnotationYAxisPrecision="0" yAxisMaximumValue="35" - yAxisLabelLocation="OutsideRight"> + yAxisLabelLocation="OutsideRight" + isTransitionInEnabled="false">
diff --git a/samples/charts/category-chart/annotations-highlighting/src/app.component.html b/samples/charts/category-chart/annotations-highlighting/src/app.component.html index 34636f649..ad9586992 100644 --- a/samples/charts/category-chart/annotations-highlighting/src/app.component.html +++ b/samples/charts/category-chart/annotations-highlighting/src/app.component.html @@ -40,7 +40,8 @@ highlightingBehavior="NearestItemsAndSeries" yAxisMaximumValue="35" yAxisLabelLocation="OutsideRight" - toolTipType="None"> + toolTipType="None" + isTransitionInEnabled="false">
diff --git a/samples/charts/category-chart/axis-gridlines/src/app.component.html b/samples/charts/category-chart/axis-gridlines/src/app.component.html index 315431877..5e97159e4 100644 --- a/samples/charts/category-chart/axis-gridlines/src/app.component.html +++ b/samples/charts/category-chart/axis-gridlines/src/app.component.html @@ -8,6 +8,28 @@ isWrappingEnabled="true" name="propertyEditorPanel1" #propertyEditorPanel1> + + + + + crosshairsDisplayMode="None" + isTransitionInEnabled="false">
diff --git a/samples/charts/category-chart/highlighting-mode/src/app.component.html b/samples/charts/category-chart/highlighting-mode/src/app.component.html index a0dad92d9..42a210971 100644 --- a/samples/charts/category-chart/highlighting-mode/src/app.component.html +++ b/samples/charts/category-chart/highlighting-mode/src/app.component.html @@ -28,7 +28,8 @@ [dataSource]="temperatureAnnotatedData" highlightingMode="BrightenSpecific" toolTipType="None" - crosshairsDisplayMode="None"> + crosshairsDisplayMode="None" + isTransitionInEnabled="false">
diff --git a/samples/charts/category-chart/legend-highlighting/src/app.component.html b/samples/charts/category-chart/legend-highlighting/src/app.component.html index cffac685e..cd2e8bc5d 100644 --- a/samples/charts/category-chart/legend-highlighting/src/app.component.html +++ b/samples/charts/category-chart/legend-highlighting/src/app.component.html @@ -23,7 +23,8 @@ isHorizontalZoomEnabled="false" isVerticalZoomEnabled="false" highlightingMode="Brighten" - legendHighlightingMode="MatchSeries"> + legendHighlightingMode="MatchSeries" + isTransitionInEnabled="false">
diff --git a/samples/charts/toolbar/color-editor-support/.codesandbox/Dockerfile b/samples/charts/toolbar/color-editor-support/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/toolbar/color-editor-support/.codesandbox/tasks.json b/samples/charts/toolbar/color-editor-support/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/toolbar/color-editor-support/.stackblitzrc b/samples/charts/toolbar/color-editor-support/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/toolbar/color-editor-support/angular.json b/samples/charts/toolbar/color-editor-support/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json new file mode 100644 index 000000000..36710857f --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -0,0 +1,45 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "18.1.0", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-layouts": "18.1.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.5.4" + } +} diff --git a/samples/charts/toolbar/color-editor-support/src/CountryRenewableElectricity.ts b/samples/charts/toolbar/color-editor-support/src/CountryRenewableElectricity.ts new file mode 100644 index 000000000..b32970c46 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/CountryRenewableElectricity.ts @@ -0,0 +1,106 @@ +export class CountryRenewableElectricityItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public europe: number; + public china: number; + public america: number; + +} +export class CountryRenewableElectricity extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/toolbar/color-editor-support/src/app.component.html b/samples/charts/toolbar/color-editor-support/src/app.component.html new file mode 100644 index 000000000..14aca0126 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/app.component.html @@ -0,0 +1,51 @@ +
+
+
+ + + + +
+
+ + +
+
+
+ + + + + + + + +
+
diff --git a/samples/charts/toolbar/color-editor-support/src/app.component.scss b/samples/charts/toolbar/color-editor-support/src/app.component.scss new file mode 100644 index 000000000..7d86d9783 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/app.component.scss @@ -0,0 +1,21 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ +.aboveContentSplit { + display: flex; + flex-direction: row; +} +.aboveContentLeftContainer { + margin-left: 1.25rem; + display: flex; + flex-grow: 1; + justify-content: flex-start; + align-items: flex-end; +} +.aboveContentRightContainer { + margin-right: 1.25rem; + display: flex; + flex-grow: 1; + justify-content: flex-end; + align-items: flex-end; +} diff --git a/samples/charts/toolbar/color-editor-support/src/app.component.ts b/samples/charts/toolbar/color-editor-support/src/app.component.ts new file mode 100644 index 000000000..c65346545 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/app.component.ts @@ -0,0 +1,61 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; +import { IgxToolCommandEventArgs } from 'igniteui-angular-layouts'; +import { IgxDataChartComponent, IgxSeriesComponent } from 'igniteui-angular-charts'; +import { IgxToolbarComponent, IgxToolActionColorEditorComponent } from 'igniteui-angular-layouts'; +import { IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxLineSeriesComponent } from 'igniteui-angular-charts'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("toolbar", { static: true } ) + private toolbar: IgxToolbarComponent + @ViewChild("colorEditorTool", { static: true } ) + private colorEditorTool: IgxToolActionColorEditorComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("lineSeries1", { static: true } ) + private lineSeries1: IgxLineSeriesComponent + private _countryRenewableElectricity: CountryRenewableElectricity = null; + public get countryRenewableElectricity(): CountryRenewableElectricity { + if (this._countryRenewableElectricity == null) + { + this._countryRenewableElectricity = new CountryRenewableElectricity(); + } + return this._countryRenewableElectricity; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + + public colorEditorToggleSeriesBrush({ sender, args }: { sender: any, args: IgxToolCommandEventArgs }): void { + var target = this.chart; + var color = args.command.argumentsList[0].value; + + switch (args.command.commandId) + { + case "ToggleSeriesBrush": + let series = target.contentSeries.first as IgxSeriesComponent; + series.brush = color; + break; + } + } + +} + diff --git a/samples/charts/toolbar/color-editor-support/src/app.module.ts b/samples/charts/toolbar/color-editor-support/src/app.module.ts new file mode 100644 index 000000000..4b6c7b284 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/app.module.ts @@ -0,0 +1,39 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxXIconModule } from 'igniteui-angular-inputs'; +import { IgxToolbarModule, IgxToolActionComboModule, IgxToolActionColorEditorModule } from 'igniteui-angular-layouts'; +import { IgxDataChartToolbarModule, IgxDataLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCategoryModule, IgxDataChartCoreModule, IgxDataChartAnnotationModule, IgxDataChartInteractivityModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxXIconModule, + IgxToolbarModule, + IgxToolActionComboModule, + IgxToolActionColorEditorModule, + IgxDataChartToolbarModule, + IgxDataLegendModule, + IgxNumberAbbreviatorModule, + IgxDataChartCategoryModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartAnnotationModule, + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/toolbar/color-editor-support/src/environments/environment.prod.ts b/samples/charts/toolbar/color-editor-support/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/toolbar/color-editor-support/src/environments/environment.ts b/samples/charts/toolbar/color-editor-support/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/toolbar/color-editor-support/src/index.html b/samples/charts/toolbar/color-editor-support/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/toolbar/color-editor-support/src/main.ts b/samples/charts/toolbar/color-editor-support/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/toolbar/color-editor-support/src/polyfills.ts b/samples/charts/toolbar/color-editor-support/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/toolbar/color-editor-support/src/styles.scss b/samples/charts/toolbar/color-editor-support/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/toolbar/color-editor-support/src/typings.d.ts b/samples/charts/toolbar/color-editor-support/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/toolbar/color-editor-support/tsconfig.app.json b/samples/charts/toolbar/color-editor-support/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/toolbar/color-editor-support/tsconfig.json b/samples/charts/toolbar/color-editor-support/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/toolbar/color-editor-support/tslint.json b/samples/charts/toolbar/color-editor-support/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/toolbar/custom-tool/src/app.component.html b/samples/charts/toolbar/custom-tool/src/app.component.html index f69db0b31..f3c0cfb1d 100644 --- a/samples/charts/toolbar/custom-tool/src/app.component.html +++ b/samples/charts/toolbar/custom-tool/src/app.component.html @@ -12,7 +12,9 @@ + iconCollectionName="CustomCollection" + name="CustomIconName" + #customIconName>
diff --git a/samples/charts/toolbar/custom-tool/src/app.component.ts b/samples/charts/toolbar/custom-tool/src/app.component.ts index 7f366536d..1f8142d25 100644 --- a/samples/charts/toolbar/custom-tool/src/app.component.ts +++ b/samples/charts/toolbar/custom-tool/src/app.component.ts @@ -17,6 +17,8 @@ export class AppComponent implements AfterViewInit private legend: IgxLegendComponent @ViewChild("toolbar", { static: true } ) private toolbar: IgxToolbarComponent + @ViewChild("customIconName", { static: true } ) + private customIconName: IgxToolActionLabelComponent @ViewChild("chart", { static: true } ) private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/inputs/color-editor/overview/.codesandbox/Dockerfile b/samples/inputs/color-editor/overview/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/inputs/color-editor/overview/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/inputs/color-editor/overview/.codesandbox/tasks.json b/samples/inputs/color-editor/overview/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/inputs/color-editor/overview/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/inputs/color-editor/overview/.stackblitzrc b/samples/inputs/color-editor/overview/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/inputs/color-editor/overview/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/inputs/color-editor/overview/angular.json b/samples/inputs/color-editor/overview/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/inputs/color-editor/overview/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json new file mode 100644 index 000000000..b70ed6af2 --- /dev/null +++ b/samples/inputs/color-editor/overview/package.json @@ -0,0 +1,43 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-core": "18.1.0", + "igniteui-angular-inputs": "18.1.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.5.4" + } +} diff --git a/samples/inputs/color-editor/overview/src/app.component.html b/samples/inputs/color-editor/overview/src/app.component.html new file mode 100644 index 000000000..b920b5116 --- /dev/null +++ b/samples/inputs/color-editor/overview/src/app.component.html @@ -0,0 +1,8 @@ +
+
+ + +
+
diff --git a/samples/inputs/color-editor/overview/src/app.component.scss b/samples/inputs/color-editor/overview/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/inputs/color-editor/overview/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/inputs/color-editor/overview/src/app.component.ts b/samples/inputs/color-editor/overview/src/app.component.ts new file mode 100644 index 000000000..20ce15216 --- /dev/null +++ b/samples/inputs/color-editor/overview/src/app.component.ts @@ -0,0 +1,26 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { IgxColorEditorComponent } from 'igniteui-angular-dashboards'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("colorEditor", { static: true } ) + private colorEditor: IgxColorEditorComponent + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/inputs/color-editor/overview/src/app.module.ts b/samples/inputs/color-editor/overview/src/app.module.ts new file mode 100644 index 000000000..317d05d67 --- /dev/null +++ b/samples/inputs/color-editor/overview/src/app.module.ts @@ -0,0 +1,25 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxColorEditorModule } from 'igniteui-angular-inputs'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxColorEditorModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/inputs/color-editor/overview/src/environments/environment.prod.ts b/samples/inputs/color-editor/overview/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/inputs/color-editor/overview/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/inputs/color-editor/overview/src/environments/environment.ts b/samples/inputs/color-editor/overview/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/inputs/color-editor/overview/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/inputs/color-editor/overview/src/index.html b/samples/inputs/color-editor/overview/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/inputs/color-editor/overview/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/inputs/color-editor/overview/src/main.ts b/samples/inputs/color-editor/overview/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/inputs/color-editor/overview/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/inputs/color-editor/overview/src/polyfills.ts b/samples/inputs/color-editor/overview/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/inputs/color-editor/overview/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/inputs/color-editor/overview/src/styles.scss b/samples/inputs/color-editor/overview/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/inputs/color-editor/overview/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/inputs/color-editor/overview/src/typings.d.ts b/samples/inputs/color-editor/overview/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/inputs/color-editor/overview/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/inputs/color-editor/overview/tsconfig.app.json b/samples/inputs/color-editor/overview/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/inputs/color-editor/overview/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/inputs/color-editor/overview/tsconfig.json b/samples/inputs/color-editor/overview/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/inputs/color-editor/overview/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/inputs/color-editor/overview/tslint.json b/samples/inputs/color-editor/overview/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/inputs/color-editor/overview/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} From 6a6b51fef5997a18e30f90d95eafbd68e01df21d Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Fri, 13 Dec 2024 00:08:25 -0500 Subject: [PATCH 108/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.12.13.3 --- .../annotations-all/package.json | 10 +- .../annotations-callouts/package.json | 10 +- .../annotations-crosshairs/package.json | 10 +- .../annotations-custom/package.json | 10 +- .../annotations-final-value/package.json | 10 +- .../annotations-highlighting/package.json | 10 +- .../area-chart-multiple-sources/package.json | 4 +- .../area-chart-single-source/package.json | 4 +- .../area-chart-styling/package.json | 4 +- .../category-chart/axis-gap/package.json | 10 +- .../axis-gridlines/package.json | 10 +- .../category-chart/axis-inverted/package.json | 10 +- .../category-chart/axis-labels/package.json | 10 +- .../axis-locations/package.json | 10 +- .../category-chart/axis-options/package.json | 4 +- .../category-chart/axis-overlap/package.json | 10 +- .../category-chart/axis-range/package.json | 10 +- .../axis-tickmarks/package.json | 10 +- .../category-chart/axis-titles/package.json | 4 +- .../chart-highlight-filter/package.json | 10 +- .../package.json | 4 +- .../column-chart-single-source/package.json | 4 +- .../column-chart-styling/package.json | 4 +- .../column-chart-with-tooltips/package.json | 10 +- .../custom-selection/package.json | 4 +- .../data-aggregations/package.json | 10 +- .../category-chart/data-filter/package.json | 10 +- .../package.json | 4 +- .../category-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-positioning/package.json | 10 +- .../category-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 8 +- .../highlighting-behavior/package.json | 10 +- .../highlighting-mode/package.json | 10 +- .../legend-highlighting/package.json | 4 +- .../line-chart-multiple-sources/package.json | 4 +- .../line-chart-single-source/package.json | 4 +- .../line-chart-styling/package.json | 4 +- .../marker-options/package.json | 10 +- .../category-chart/overview/package.json | 4 +- .../point-chart-multiple-sources/package.json | 4 +- .../point-chart-single-source/package.json | 4 +- .../point-chart-styling/package.json | 4 +- .../selection-modes/package.json | 4 +- .../selection-multiple-modes/package.json | 10 +- .../spline-area-multiple-sources/package.json | 4 +- .../spline-area-single-source/package.json | 4 +- .../spline-area-styling/package.json | 4 +- .../spline-multiple-sources/package.json | 4 +- .../spline-single-source/package.json | 4 +- .../spline-styling/package.json | 4 +- .../step-area-multiple-sources/package.json | 4 +- .../step-area-single-source/package.json | 4 +- .../step-area-styling/package.json | 4 +- .../step-line-multiple-sources/package.json | 4 +- .../step-line-single-source/package.json | 4 +- .../step-line-styling/package.json | 4 +- .../category-chart/value-lines/package.json | 10 +- .../chart-dashboard/.codesandbox/Dockerfile | 1 + .../chart-dashboard/.codesandbox/tasks.json | 17 + .../chart-dashboard/.stackblitzrc | 1 + .../chart-dashboard/angular.json | 120 + .../chart-dashboard/package.json | 43 + .../src/OlympicMedalsTopCountries.ts | 64 + .../chart-dashboard/src/app.component.html | 9 + .../chart-dashboard/src/app.component.scss | 3 + .../chart-dashboard/src/app.component.ts | 35 + .../chart-dashboard/src/app.module.ts | 30 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../chart-dashboard/src/index.html | 23 + .../chart-dashboard/src/main.ts | 15 + .../chart-dashboard/src/polyfills.ts | 61 + .../chart-dashboard/src/styles.scss | 9 + .../chart-dashboard/src/typings.d.ts | 5 + .../chart-dashboard/tsconfig.app.json | 10 + .../chart-dashboard/tsconfig.json | 27 + .../chart-dashboard/tslint.json | 31 + .../gauge-dashboard/.codesandbox/Dockerfile | 1 + .../gauge-dashboard/.codesandbox/tasks.json | 17 + .../gauge-dashboard/.stackblitzrc | 1 + .../gauge-dashboard/angular.json | 120 + .../gauge-dashboard/package.json | 43 + .../gauge-dashboard/src/app.component.html | 9 + .../gauge-dashboard/src/app.component.scss | 3 + .../gauge-dashboard/src/app.component.ts | 34 + .../gauge-dashboard/src/app.module.ts | 30 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../gauge-dashboard/src/index.html | 23 + .../gauge-dashboard/src/main.ts | 15 + .../gauge-dashboard/src/polyfills.ts | 61 + .../gauge-dashboard/src/styles.scss | 9 + .../gauge-dashboard/src/typings.d.ts | 5 + .../gauge-dashboard/tsconfig.app.json | 10 + .../gauge-dashboard/tsconfig.json | 27 + .../gauge-dashboard/tslint.json | 31 + .../map-dashboard/.codesandbox/Dockerfile | 1 + .../map-dashboard/.codesandbox/tasks.json | 17 + .../map-dashboard/.stackblitzrc | 1 + .../dashboard-tile/map-dashboard/angular.json | 120 + .../dashboard-tile/map-dashboard/package.json | 43 + .../map-dashboard/src/WorldCities.ts | 5478 +++++++++++++++++ .../map-dashboard/src/app.component.html | 10 + .../map-dashboard/src/app.component.scss | 3 + .../map-dashboard/src/app.component.ts | 35 + .../map-dashboard/src/app.module.ts | 30 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../map-dashboard/src/index.html | 23 + .../dashboard-tile/map-dashboard/src/main.ts | 15 + .../map-dashboard/src/polyfills.ts | 61 + .../map-dashboard/src/styles.scss | 9 + .../map-dashboard/src/typings.d.ts | 5 + .../map-dashboard/tsconfig.app.json | 10 + .../map-dashboard/tsconfig.json | 27 + .../dashboard-tile/map-dashboard/tslint.json | 31 + .../pie-dashboard/.codesandbox/Dockerfile | 1 + .../pie-dashboard/.codesandbox/tasks.json | 17 + .../pie-dashboard/.stackblitzrc | 1 + .../dashboard-tile/pie-dashboard/angular.json | 120 + .../dashboard-tile/pie-dashboard/package.json | 43 + .../pie-dashboard/src/EnergyGlobalDemand.ts | 51 + .../pie-dashboard/src/app.component.html | 9 + .../pie-dashboard/src/app.component.scss | 3 + .../pie-dashboard/src/app.component.ts | 35 + .../pie-dashboard/src/app.module.ts | 30 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../pie-dashboard/src/index.html | 23 + .../dashboard-tile/pie-dashboard/src/main.ts | 15 + .../pie-dashboard/src/polyfills.ts | 61 + .../pie-dashboard/src/styles.scss | 9 + .../pie-dashboard/src/typings.d.ts | 5 + .../pie-dashboard/tsconfig.app.json | 10 + .../pie-dashboard/tsconfig.json | 27 + .../dashboard-tile/pie-dashboard/tslint.json | 31 + .../annotations-custom/package.json | 4 +- .../package.json | 4 +- .../axis-label-rotation/package.json | 10 +- .../data-chart/axis-min-max-gap/package.json | 4 +- .../bar-chart-multiple-sources/package.json | 4 +- .../bar-chart-overlapping/package.json | 4 +- .../bar-chart-single-source/package.json | 4 +- .../data-chart/bar-chart-styling/package.json | 4 +- .../callout-layer-styling/package.json | 4 +- .../package.json | 10 +- .../package.json | 10 +- .../chart-highlight-filter/package.json | 10 +- .../package.json | 4 +- .../data-legend-grouping/package.json | 4 +- .../data-legend-styling/package.json | 4 +- .../data-chart/data-legend/package.json | 4 +- .../package.json | 8 +- .../data-tooltip-grouping/package.json | 8 +- .../data-tooltip-styling/package.json | 8 +- .../data-chart/data-tooltip/package.json | 4 +- .../financial-price-series/package.json | 4 +- .../polar-area-chart-styling/package.json | 4 +- .../data-chart/polar-area-chart/package.json | 4 +- .../data-chart/polar-line-chart/package.json | 4 +- .../polar-scatter-chart/package.json | 4 +- .../polar-spline-area-chart/package.json | 4 +- .../polar-spline-chart/package.json | 4 +- .../radial-area-chart-styling/package.json | 4 +- .../data-chart/radial-area-chart/package.json | 4 +- .../package.json | 4 +- .../radial-column-chart/package.json | 4 +- .../data-chart/radial-label-mode/package.json | 10 +- .../data-chart/radial-line-chart/package.json | 4 +- .../data-chart/radial-pie-chart/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../data-chart/range-area-chart/package.json | 4 +- .../range-column-chart/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../scatter-bubble-chart-styling/package.json | 4 +- .../scatter-line-chart/package.json | 4 +- .../scatter-point-chart/package.json | 4 +- .../scatter-spline-chart/package.json | 4 +- .../stacked-100-area-chart/package.json | 4 +- .../stacked-100-bar-chart/package.json | 4 +- .../stacked-100-column-chart/package.json | 4 +- .../stacked-100-line-chart/package.json | 4 +- .../package.json | 4 +- .../stacked-100-spline-chart/package.json | 4 +- .../stacked-area-chart/package.json | 4 +- .../data-chart/stacked-bar-chart/package.json | 4 +- .../stacked-column-chart/package.json | 4 +- .../stacked-line-chart/package.json | 4 +- .../stacked-spline-area-chart/package.json | 4 +- .../stacked-spline-chart/package.json | 4 +- .../data-chart/transition-event/package.json | 10 +- .../data-chart/waterfall-chart/package.json | 4 +- .../data-pie-chart/animation/package.json | 10 +- .../highlight-filter/package.json | 4 +- .../data-pie-chart/highlighting/package.json | 10 +- .../charts/data-pie-chart/legend/package.json | 8 +- .../charts/data-pie-chart/others/package.json | 10 +- .../data-pie-chart/overview/package.json | 4 +- .../data-pie-chart/selection/package.json | 10 +- .../charts/doughnut-chart/legend/package.json | 4 +- .../doughnut-chart/overview/package.json | 4 +- .../charts/doughnut-chart/rings/package.json | 4 +- .../package.json | 4 +- .../data-legend-styling-props/package.json | 4 +- .../financial-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-styling-props/package.json | 4 +- .../financial-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 4 +- .../financial-chart/scrollbars/package.json | 4 +- samples/charts/pie-chart/legend/package.json | 4 +- samples/charts/pie-chart/others/package.json | 4 +- .../charts/pie-chart/overview/package.json | 4 +- samples/charts/pie-chart/styling/package.json | 4 +- .../sparkline/display-area/package.json | 4 +- .../sparkline/display-column/package.json | 4 +- .../sparkline/display-lines/package.json | 8 +- .../sparkline/display-winloss/package.json | 4 +- samples/charts/sparkline/markers/package.json | 10 +- .../sparkline/normal-range/package.json | 10 +- .../charts/sparkline/trendlines/package.json | 10 +- .../sparkline/unknown-values/package.json | 10 +- .../package.json | 8 +- .../actions-built-in-data-chart/package.json | 8 +- .../toolbar/color-editor-support/package.json | 8 +- .../charts/toolbar/custom-tool/package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- samples/charts/toolbar/theming/package.json | 10 +- .../highlighting-percent-based/package.json | 4 +- .../charts/tree-map/highlighting/package.json | 10 +- samples/charts/tree-map/layout/package.json | 10 +- samples/charts/tree-map/overview/package.json | 4 +- samples/charts/tree-map/styling/package.json | 4 +- .../inputs/color-editor/overview/package.json | 4 +- 240 files changed, 7898 insertions(+), 469 deletions(-) create mode 100644 samples/charts/dashboard-tile/chart-dashboard/.codesandbox/Dockerfile create mode 100644 samples/charts/dashboard-tile/chart-dashboard/.codesandbox/tasks.json create mode 100644 samples/charts/dashboard-tile/chart-dashboard/.stackblitzrc create mode 100644 samples/charts/dashboard-tile/chart-dashboard/angular.json create mode 100644 samples/charts/dashboard-tile/chart-dashboard/package.json create mode 100644 samples/charts/dashboard-tile/chart-dashboard/src/OlympicMedalsTopCountries.ts create mode 100644 samples/charts/dashboard-tile/chart-dashboard/src/app.component.html create mode 100644 samples/charts/dashboard-tile/chart-dashboard/src/app.component.scss create mode 100644 samples/charts/dashboard-tile/chart-dashboard/src/app.component.ts create mode 100644 samples/charts/dashboard-tile/chart-dashboard/src/app.module.ts create mode 100644 samples/charts/dashboard-tile/chart-dashboard/src/environments/environment.prod.ts create mode 100644 samples/charts/dashboard-tile/chart-dashboard/src/environments/environment.ts create mode 100644 samples/charts/dashboard-tile/chart-dashboard/src/index.html create mode 100644 samples/charts/dashboard-tile/chart-dashboard/src/main.ts create mode 100644 samples/charts/dashboard-tile/chart-dashboard/src/polyfills.ts create mode 100644 samples/charts/dashboard-tile/chart-dashboard/src/styles.scss create mode 100644 samples/charts/dashboard-tile/chart-dashboard/src/typings.d.ts create mode 100644 samples/charts/dashboard-tile/chart-dashboard/tsconfig.app.json create mode 100644 samples/charts/dashboard-tile/chart-dashboard/tsconfig.json create mode 100644 samples/charts/dashboard-tile/chart-dashboard/tslint.json create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/.codesandbox/Dockerfile create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/.codesandbox/tasks.json create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/.stackblitzrc create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/angular.json create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/package.json create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/src/app.component.html create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/src/app.component.scss create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/src/app.component.ts create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/src/app.module.ts create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/src/environments/environment.prod.ts create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/src/environments/environment.ts create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/src/index.html create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/src/main.ts create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/src/polyfills.ts create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/src/styles.scss create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/src/typings.d.ts create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/tsconfig.app.json create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/tsconfig.json create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/tslint.json create mode 100644 samples/charts/dashboard-tile/map-dashboard/.codesandbox/Dockerfile create mode 100644 samples/charts/dashboard-tile/map-dashboard/.codesandbox/tasks.json create mode 100644 samples/charts/dashboard-tile/map-dashboard/.stackblitzrc create mode 100644 samples/charts/dashboard-tile/map-dashboard/angular.json create mode 100644 samples/charts/dashboard-tile/map-dashboard/package.json create mode 100644 samples/charts/dashboard-tile/map-dashboard/src/WorldCities.ts create mode 100644 samples/charts/dashboard-tile/map-dashboard/src/app.component.html create mode 100644 samples/charts/dashboard-tile/map-dashboard/src/app.component.scss create mode 100644 samples/charts/dashboard-tile/map-dashboard/src/app.component.ts create mode 100644 samples/charts/dashboard-tile/map-dashboard/src/app.module.ts create mode 100644 samples/charts/dashboard-tile/map-dashboard/src/environments/environment.prod.ts create mode 100644 samples/charts/dashboard-tile/map-dashboard/src/environments/environment.ts create mode 100644 samples/charts/dashboard-tile/map-dashboard/src/index.html create mode 100644 samples/charts/dashboard-tile/map-dashboard/src/main.ts create mode 100644 samples/charts/dashboard-tile/map-dashboard/src/polyfills.ts create mode 100644 samples/charts/dashboard-tile/map-dashboard/src/styles.scss create mode 100644 samples/charts/dashboard-tile/map-dashboard/src/typings.d.ts create mode 100644 samples/charts/dashboard-tile/map-dashboard/tsconfig.app.json create mode 100644 samples/charts/dashboard-tile/map-dashboard/tsconfig.json create mode 100644 samples/charts/dashboard-tile/map-dashboard/tslint.json create mode 100644 samples/charts/dashboard-tile/pie-dashboard/.codesandbox/Dockerfile create mode 100644 samples/charts/dashboard-tile/pie-dashboard/.codesandbox/tasks.json create mode 100644 samples/charts/dashboard-tile/pie-dashboard/.stackblitzrc create mode 100644 samples/charts/dashboard-tile/pie-dashboard/angular.json create mode 100644 samples/charts/dashboard-tile/pie-dashboard/package.json create mode 100644 samples/charts/dashboard-tile/pie-dashboard/src/EnergyGlobalDemand.ts create mode 100644 samples/charts/dashboard-tile/pie-dashboard/src/app.component.html create mode 100644 samples/charts/dashboard-tile/pie-dashboard/src/app.component.scss create mode 100644 samples/charts/dashboard-tile/pie-dashboard/src/app.component.ts create mode 100644 samples/charts/dashboard-tile/pie-dashboard/src/app.module.ts create mode 100644 samples/charts/dashboard-tile/pie-dashboard/src/environments/environment.prod.ts create mode 100644 samples/charts/dashboard-tile/pie-dashboard/src/environments/environment.ts create mode 100644 samples/charts/dashboard-tile/pie-dashboard/src/index.html create mode 100644 samples/charts/dashboard-tile/pie-dashboard/src/main.ts create mode 100644 samples/charts/dashboard-tile/pie-dashboard/src/polyfills.ts create mode 100644 samples/charts/dashboard-tile/pie-dashboard/src/styles.scss create mode 100644 samples/charts/dashboard-tile/pie-dashboard/src/typings.d.ts create mode 100644 samples/charts/dashboard-tile/pie-dashboard/tsconfig.app.json create mode 100644 samples/charts/dashboard-tile/pie-dashboard/tsconfig.json create mode 100644 samples/charts/dashboard-tile/pie-dashboard/tslint.json diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 36710857f..aa557375b 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 7356096ea..430680387 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/chart-dashboard/.codesandbox/Dockerfile b/samples/charts/dashboard-tile/chart-dashboard/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/dashboard-tile/chart-dashboard/.codesandbox/tasks.json b/samples/charts/dashboard-tile/chart-dashboard/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/chart-dashboard/.stackblitzrc b/samples/charts/dashboard-tile/chart-dashboard/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/chart-dashboard/angular.json b/samples/charts/dashboard-tile/chart-dashboard/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json new file mode 100644 index 000000000..475e20a80 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -0,0 +1,43 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-dashboards": "18.2.0-beta.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.5.4" + } +} diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/OlympicMedalsTopCountries.ts b/samples/charts/dashboard-tile/chart-dashboard/src/OlympicMedalsTopCountries.ts new file mode 100644 index 000000000..d47a868bd --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/OlympicMedalsTopCountries.ts @@ -0,0 +1,64 @@ +export class OlympicMedalsTopCountriesItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public america: number; + public china: number; + public russia: number; + +} +export class OlympicMedalsTopCountries extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OlympicMedalsTopCountriesItem( + { + year: `1996`, + america: 148, + china: 110, + russia: 95 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2000`, + america: 142, + china: 115, + russia: 91 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2004`, + america: 134, + china: 121, + russia: 86 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2008`, + america: 131, + china: 129, + russia: 65 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2012`, + america: 135, + china: 115, + russia: 77 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2016`, + america: 146, + china: 112, + russia: 88 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/app.component.html b/samples/charts/dashboard-tile/chart-dashboard/src/app.component.html new file mode 100644 index 000000000..353053c69 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/app.component.html @@ -0,0 +1,9 @@ +
+
+ + +
+
diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/app.component.scss b/samples/charts/dashboard-tile/chart-dashboard/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/app.component.ts b/samples/charts/dashboard-tile/chart-dashboard/src/app.component.ts new file mode 100644 index 000000000..7d4afe3bc --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/app.component.ts @@ -0,0 +1,35 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { OlympicMedalsTopCountriesItem, OlympicMedalsTopCountries } from './OlympicMedalsTopCountries'; +import { IgxDashboardTileComponent } from 'igniteui-angular-dashboards'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("dashboard", { static: true } ) + private dashboard: IgxDashboardTileComponent + private _olympicMedalsTopCountries: OlympicMedalsTopCountries = null; + public get olympicMedalsTopCountries(): OlympicMedalsTopCountries { + if (this._olympicMedalsTopCountries == null) + { + this._olympicMedalsTopCountries = new OlympicMedalsTopCountries(); + } + return this._olympicMedalsTopCountries; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/app.module.ts b/samples/charts/dashboard-tile/chart-dashboard/src/app.module.ts new file mode 100644 index 000000000..fc20a0109 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/app.module.ts @@ -0,0 +1,30 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDashboardTileModule, IgxDataChartDashboardTileModule, IgxGeographicMapDashboardTileModule, IgxLinearGaugeDashboardTileModule, IgxPieChartDashboardTileModule, IgxRadialGaugeDashboardTileModule } from 'igniteui-angular-dashboards'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDashboardTileModule, + IgxDataChartDashboardTileModule, + IgxGeographicMapDashboardTileModule, + IgxLinearGaugeDashboardTileModule, + IgxPieChartDashboardTileModule, + IgxRadialGaugeDashboardTileModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/environments/environment.prod.ts b/samples/charts/dashboard-tile/chart-dashboard/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/environments/environment.ts b/samples/charts/dashboard-tile/chart-dashboard/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/index.html b/samples/charts/dashboard-tile/chart-dashboard/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/main.ts b/samples/charts/dashboard-tile/chart-dashboard/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/polyfills.ts b/samples/charts/dashboard-tile/chart-dashboard/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/styles.scss b/samples/charts/dashboard-tile/chart-dashboard/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/typings.d.ts b/samples/charts/dashboard-tile/chart-dashboard/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/dashboard-tile/chart-dashboard/tsconfig.app.json b/samples/charts/dashboard-tile/chart-dashboard/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/dashboard-tile/chart-dashboard/tsconfig.json b/samples/charts/dashboard-tile/chart-dashboard/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/chart-dashboard/tslint.json b/samples/charts/dashboard-tile/chart-dashboard/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/dashboard-tile/gauge-dashboard/.codesandbox/Dockerfile b/samples/charts/dashboard-tile/gauge-dashboard/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/dashboard-tile/gauge-dashboard/.codesandbox/tasks.json b/samples/charts/dashboard-tile/gauge-dashboard/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/gauge-dashboard/.stackblitzrc b/samples/charts/dashboard-tile/gauge-dashboard/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/gauge-dashboard/angular.json b/samples/charts/dashboard-tile/gauge-dashboard/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json new file mode 100644 index 000000000..475e20a80 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -0,0 +1,43 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-dashboards": "18.2.0-beta.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.5.4" + } +} diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.html b/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.html new file mode 100644 index 000000000..b593a3a04 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.html @@ -0,0 +1,9 @@ +
+
+ + +
+
diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.scss b/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.ts b/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.ts new file mode 100644 index 000000000..6eebc28d4 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.ts @@ -0,0 +1,34 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { IgxDashboardTileComponent } from 'igniteui-angular-dashboards'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("dashboard", { static: true } ) + private dashboard: IgxDashboardTileComponent + + public constructor(private _detector: ChangeDetectorRef) + { + this.dashboardTileGaugeOnInit(); + } + + public ngAfterViewInit(): void + { + } + + public dashboardTileGaugeOnInit(): void { + + var target = this.dashboard; + + target.dataSource = 40; + } + +} + diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/app.module.ts b/samples/charts/dashboard-tile/gauge-dashboard/src/app.module.ts new file mode 100644 index 000000000..fc20a0109 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/app.module.ts @@ -0,0 +1,30 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDashboardTileModule, IgxDataChartDashboardTileModule, IgxGeographicMapDashboardTileModule, IgxLinearGaugeDashboardTileModule, IgxPieChartDashboardTileModule, IgxRadialGaugeDashboardTileModule } from 'igniteui-angular-dashboards'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDashboardTileModule, + IgxDataChartDashboardTileModule, + IgxGeographicMapDashboardTileModule, + IgxLinearGaugeDashboardTileModule, + IgxPieChartDashboardTileModule, + IgxRadialGaugeDashboardTileModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/environments/environment.prod.ts b/samples/charts/dashboard-tile/gauge-dashboard/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/environments/environment.ts b/samples/charts/dashboard-tile/gauge-dashboard/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/index.html b/samples/charts/dashboard-tile/gauge-dashboard/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/main.ts b/samples/charts/dashboard-tile/gauge-dashboard/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/polyfills.ts b/samples/charts/dashboard-tile/gauge-dashboard/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/styles.scss b/samples/charts/dashboard-tile/gauge-dashboard/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/typings.d.ts b/samples/charts/dashboard-tile/gauge-dashboard/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/dashboard-tile/gauge-dashboard/tsconfig.app.json b/samples/charts/dashboard-tile/gauge-dashboard/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/dashboard-tile/gauge-dashboard/tsconfig.json b/samples/charts/dashboard-tile/gauge-dashboard/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/gauge-dashboard/tslint.json b/samples/charts/dashboard-tile/gauge-dashboard/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/dashboard-tile/map-dashboard/.codesandbox/Dockerfile b/samples/charts/dashboard-tile/map-dashboard/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/dashboard-tile/map-dashboard/.codesandbox/tasks.json b/samples/charts/dashboard-tile/map-dashboard/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/map-dashboard/.stackblitzrc b/samples/charts/dashboard-tile/map-dashboard/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/map-dashboard/angular.json b/samples/charts/dashboard-tile/map-dashboard/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json new file mode 100644 index 000000000..475e20a80 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -0,0 +1,43 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-dashboards": "18.2.0-beta.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.5.4" + } +} diff --git a/samples/charts/dashboard-tile/map-dashboard/src/WorldCities.ts b/samples/charts/dashboard-tile/map-dashboard/src/WorldCities.ts new file mode 100644 index 000000000..7ffffb7ab --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/WorldCities.ts @@ -0,0 +1,5478 @@ +export class WorldCitiesItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public capital: boolean; + public population: number; + public y: number; + public x: number; + public country: string; + public name: string; + +} +export class WorldCities extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new WorldCitiesItem( + { + capital: true, + population: 23.62, + y: 35.68, + x: 139.81, + country: `Japan`, + name: `Tokyo` + }), + new WorldCitiesItem( + { + capital: false, + population: 16.47, + y: 40.75, + x: -74.1, + country: `US`, + name: `New York` + }), + new WorldCitiesItem( + { + capital: true, + population: 15.85, + y: 37.54, + x: 126.94, + country: `South Korea`, + name: `Seoul` + }), + new WorldCitiesItem( + { + capital: false, + population: 15.18, + y: -23.58, + x: -46.62, + country: `Brazil`, + name: `Sao Paulo` + }), + new WorldCitiesItem( + { + capital: false, + population: 15.04, + y: 34.64, + x: 135.52, + country: `Japan`, + name: `Osaka` + }), + new WorldCitiesItem( + { + capital: true, + population: 14.1, + y: 19.43, + x: -99.13, + country: `Mexico`, + name: `Mexico City` + }), + new WorldCitiesItem( + { + capital: true, + population: 13.1, + y: 55.75, + x: 37.7, + country: `Russia`, + name: `Moscow` + }), + new WorldCitiesItem( + { + capital: false, + population: 11.1, + y: 22.54, + x: 88.33, + country: `India`, + name: `Calcutta` + }), + new WorldCitiesItem( + { + capital: true, + population: 11.1, + y: 51.49, + x: -0.18, + country: `UK`, + name: `London` + }), + new WorldCitiesItem( + { + capital: true, + population: 10.75, + y: -34.67, + x: -58.41, + country: `Argentina`, + name: `Buenos Aires` + }), + new WorldCitiesItem( + { + capital: false, + population: 10.15, + y: -22.72, + x: -43.46, + country: `Brazil`, + name: `Rio de Janeiro` + }), + new WorldCitiesItem( + { + capital: false, + population: 9.95, + y: 19.05, + x: 73.17, + country: `India`, + name: `Bombay` + }), + new WorldCitiesItem( + { + capital: true, + population: 9.78, + y: 48.88, + x: 2.43, + country: `France`, + name: `Paris` + }), + new WorldCitiesItem( + { + capital: false, + population: 9.76, + y: 34, + x: -118.25, + country: `US`, + name: `Los Angeles` + }), + new WorldCitiesItem( + { + capital: false, + population: 9.41, + y: 24.98, + x: 121.53, + country: `Taiwan`, + name: `Chingmei` + }), + new WorldCitiesItem( + { + capital: true, + population: 9.3, + y: 30.08, + x: 31.25, + country: `Egypt`, + name: `Cairo` + }), + new WorldCitiesItem( + { + capital: false, + population: 9.3, + y: 31.25, + x: 121.47, + country: `China`, + name: `Shanghai` + }), + new WorldCitiesItem( + { + capital: true, + population: 8.6, + y: -6.29, + x: 106.76, + country: `Indonesia`, + name: `Jakarta` + }), + new WorldCitiesItem( + { + capital: false, + population: 7.72, + y: 41.83, + x: -87.64, + country: `US`, + name: `Chicago` + }), + new WorldCitiesItem( + { + capital: false, + population: 7.2, + y: 28.53, + x: 77.22, + country: `India`, + name: `Delhi` + }), + new WorldCitiesItem( + { + capital: true, + population: 6.45, + y: 13.75, + x: 100.55, + country: `Thailand`, + name: `Bangkok` + }), + new WorldCitiesItem( + { + capital: true, + population: 6.45, + y: 39.91, + x: 116.39, + country: `China`, + name: `Beijing` + }), + new WorldCitiesItem( + { + capital: true, + population: 6.4, + y: 35.77, + x: 51.45, + country: `Iran`, + name: `Tehran` + }), + new WorldCitiesItem( + { + capital: true, + population: 6.13, + y: 25.04, + x: 121.51, + country: `Taiwan`, + name: `Taipei` + }), + new WorldCitiesItem( + { + capital: false, + population: 5.83, + y: 59.95, + x: 30.45, + country: `Russia`, + name: `Saint Petersburg` + }), + new WorldCitiesItem( + { + capital: false, + population: 5.75, + y: 41.07, + x: 29.01, + country: `Turkey`, + name: `Istanbul` + }), + new WorldCitiesItem( + { + capital: true, + population: 5.47, + y: 14.55, + x: 121.17, + country: `Philippines`, + name: `Manila` + }), + new WorldCitiesItem( + { + capital: true, + population: 5.4, + y: 22.43, + x: 114.15, + country: `UK`, + name: `Hong Kong` + }), + new WorldCitiesItem( + { + capital: false, + population: 5.3, + y: 24.85, + x: 67.03, + country: `Pakistan`, + name: `Karachi` + }), + new WorldCitiesItem( + { + capital: false, + population: 5.21, + y: 39.93, + x: -75.22, + country: `US`, + name: `Philadelphia` + }), + new WorldCitiesItem( + { + capital: true, + population: 5.06, + y: 52.52, + x: 13.33, + country: `Germany`, + name: `Berlin` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.88, + y: 39.13, + x: 117.19, + country: `China`, + name: `Tianjin` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.8, + y: 35.15, + x: 136.92, + country: `Japan`, + name: `Nagoya` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.69, + y: 42.39, + x: -83.08, + country: `US`, + name: `Detroit` + }), + new WorldCitiesItem( + { + capital: true, + population: 4.65, + y: 40.44, + x: -3.69, + country: `Spain`, + name: `Madrid` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.47, + y: 13.06, + x: 80.25, + country: `India`, + name: `Madras` + }), + new WorldCitiesItem( + { + capital: true, + population: 4.34, + y: -12.07, + x: -76.82, + country: `Peru`, + name: `Lima` + }), + new WorldCitiesItem( + { + capital: true, + population: 4.26, + y: 4.63, + x: -74.08, + country: `Colombia`, + name: `Bogota` + }), + new WorldCitiesItem( + { + capital: true, + population: 4.1, + y: -33.48, + x: -70.65, + country: `Chile`, + name: `Santiago` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.05, + y: 37.73, + x: -122.31, + country: `US`, + name: `San Francisco` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.04, + y: 41.53, + x: 2.17, + country: `Spain`, + name: `BarceXa` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.97, + y: 42.38, + x: -71.1, + country: `US`, + name: `Boston` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.87, + y: 51.35, + x: 7.12, + country: `Germany`, + name: `Essen` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.84, + y: 33.33, + x: 44.4, + country: `Iraq`, + name: `Baghdad` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.84, + y: 41.8, + x: 123.38, + country: `China`, + name: `Shenyang` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.8, + y: 6.45, + x: 3.3, + country: `Nigeria`, + name: `Lagos` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.8, + y: 35.16, + x: 129.05, + country: `South Korea`, + name: `Pusan` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.75, + y: 45.47, + x: 9.19, + country: `Italy`, + name: `Milano` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.65, + y: -26.18, + x: 28, + country: `South Africa`, + name: `Johannesburg` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.6, + y: 10.5, + x: -66.9, + country: `Venezuela`, + name: `Caracas` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.49, + y: 30.57, + x: 114.28, + country: `China`, + name: `Wuhan` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.43, + y: 23.71, + x: 90.41, + country: `Bangladesh`, + name: `Dhaka` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.43, + y: 43.72, + x: -79.41, + country: `Canada`, + name: `Toronto` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.37, + y: -33.89, + x: 151.03, + country: `Australia`, + name: `Sydney` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.35, + y: 31.07, + x: 29.98, + country: `Egypt`, + name: `Alexandria` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.22, + y: 38.89, + x: -76.95, + country: `US`, + name: `Washington D.C.` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.17, + y: 41.88, + x: 12.52, + country: `Italy`, + name: `Roma` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.1, + y: 10.76, + x: 106.66, + country: `Vietnam`, + name: `Ho Chi Minh City` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.05, + y: 23.1, + x: 113.29, + country: `China`, + name: `Guangzhou` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.03, + y: 38.12, + x: 23.65, + country: `Greece`, + name: `Athens` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.02, + y: 1.23, + x: 104.18, + country: `Singapore`, + name: `Singapore` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.02, + y: 31.55, + x: 74.34, + country: `Pakistan`, + name: `Lahore` + }), + new WorldCitiesItem( + { + capital: true, + population: 3, + y: -4.39, + x: 15.47, + country: `Zaire`, + name: `Kinshasa` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.99, + y: 35.44, + x: 139.62, + country: `Japan`, + name: `Yokohama` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.95, + y: -19.85, + x: -43.91, + country: `Brazil`, + name: `Belo Horizonte` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.95, + y: 12.97, + x: 77.59, + country: `India`, + name: `Bangalore` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.92, + y: 45.54, + x: -73.65, + country: `Canada`, + name: `Montreal` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.9, + y: 50.45, + x: 30.5, + country: `Ukraine`, + name: `Kiev` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.88, + y: 40.83, + x: 14.27, + country: `Italy`, + name: `Napoli` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.83, + y: -37.85, + x: 145.08, + country: `Australia`, + name: `Melbourne` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.83, + y: 25.83, + x: -80.27, + country: `US`, + name: `Miami` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.8, + y: 16.87, + x: 96.12, + country: `Burma`, + name: `Rangoon` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.77, + y: 53.48, + x: -2.26, + country: `UK`, + name: `Manchester` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.75, + y: 17.39, + x: 78.49, + country: `India`, + name: `Hyderabad` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.75, + y: 29.77, + x: -95.41, + country: `US`, + name: `Houston` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.73, + y: 32.76, + x: -96.66, + country: `US`, + name: `Dallas` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.67, + y: 45.76, + x: 126.62, + country: `China`, + name: `Harbin` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.67, + y: 52.49, + x: -1.86, + country: `UK`, + name: `Birmingham` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.63, + y: -8.09, + x: -34.91, + country: `Brazil`, + name: `Recife` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.6, + y: -30.04, + x: -51.21, + country: `Brazil`, + name: `Porto Alegre` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.56, + y: 47.51, + x: 19.09, + country: `Hungary`, + name: `Budapest` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.55, + y: 36.6, + x: 2.99, + country: `Algeria`, + name: `Algiers` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.48, + y: 33.54, + x: -7.53, + country: `Morocco`, + name: `Casablanca` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.45, + y: 29.54, + x: 106.52, + country: `China`, + name: `Chongqing` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.4, + y: 23.04, + x: 72.57, + country: `India`, + name: `Ahmadabad` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.4, + y: 39.93, + x: 32.85, + country: `Turkey`, + name: `Ankara` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.38, + y: 50.84, + x: 4.37, + country: `Belgium`, + name: `Bruxelles` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.33, + y: 41.25, + x: 69.35, + country: `Uzbekistan`, + name: `Toshkent` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.33, + y: 20.67, + x: -103.34, + country: `Mexico`, + name: `Guadalajara` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.32, + y: 52.24, + x: 21.01, + country: `Poland`, + name: `Warsaw` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.29, + y: 32.05, + x: 118.77, + country: `China`, + name: `Nanjing` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.25, + y: 38.73, + x: -9.13, + country: `Portugal`, + name: `Lisboa` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.25, + y: 44.43, + x: 26.12, + country: `Romania`, + name: `Bucharest` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.23, + y: 53.57, + x: 10.03, + country: `Germany`, + name: `Hamburg` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.22, + y: 40.5, + x: -80, + country: `US`, + name: `Pittsburgh` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.22, + y: 41.39, + x: -81.73, + country: `US`, + name: `Cleveland` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.21, + y: 35.86, + x: 128.59, + country: `South Korea`, + name: `Taegu` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.2, + y: 38.64, + x: -90.34, + country: `US`, + name: `St. Louis` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.2, + y: 48.04, + x: 37.74, + country: `Ukraine`, + name: `Donets'k` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.13, + y: 23.05, + x: -82.42, + country: `Cuba`, + name: `Havana` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.1, + y: 32.76, + x: -117.13, + country: `US`, + name: `San Diego` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.1, + y: 6.24, + x: -75.59, + country: `Colombia`, + name: `Medellin` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.08, + y: 47.59, + x: -122.32, + country: `US`, + name: `Seattle` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.05, + y: -12.6, + x: -38.48, + country: `Brazil`, + name: `Salvador` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.05, + y: 7.02, + x: 80.09, + country: `Sri Lanka`, + name: `Colombo` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.05, + y: 34.27, + x: 108.88, + country: `China`, + name: `Xian` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.03, + y: -7.4, + x: 112.68, + country: `Indonesia`, + name: `Surabaja` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.02, + y: 25.68, + x: -100.32, + country: `Mexico`, + name: `Monterrey` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.02, + y: 40.32, + x: 49.82, + country: `Azerbaijan`, + name: `Baku` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.02, + y: 56.29, + x: 43.94, + country: `Russia`, + name: `Nizhniy Novgorod` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.01, + y: 44.92, + x: -93.31, + country: `US`, + name: `Minneapolis` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.96, + y: 33.8, + x: -84.35, + country: `US`, + name: `Atlanta` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.96, + y: 39.32, + x: -76.62, + country: `US`, + name: `Baltimore` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.96, + y: 48.14, + x: 11.54, + country: `Germany`, + name: `Munich` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.95, + y: 5.32, + x: -4.02, + country: `Ivory Coast`, + name: `Abidjan` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.94, + y: 49.99, + x: 36.21, + country: `Ukraine`, + name: `Kharkov` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.9, + y: 43.06, + x: 141.35, + country: `Japan`, + name: `Sapporo` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.88, + y: 26.46, + x: 80.32, + country: `India`, + name: `Kanpur` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.88, + y: 48.2, + x: 16.32, + country: `Austria`, + name: `Vienna` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.87, + y: 30.47, + x: 30.85, + country: `Egypt`, + name: `Giza` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.86, + y: 52.37, + x: 4.89, + country: `Netherlands`, + name: `Amsterdam` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.85, + y: 33.52, + x: 36.31, + country: `Syria`, + name: `Damascus` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.85, + y: 50.13, + x: 8.67, + country: `Germany`, + name: `Frankfurt am Main` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.84, + y: 22.67, + x: 120.34, + country: `Taiwan`, + name: `Kao-Hsiung` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.82, + y: -3.78, + x: -38.59, + country: `Brazil`, + name: `Fortaleza` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.81, + y: 30.67, + x: 104.07, + country: `China`, + name: `Chengdu` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.8, + y: -6.91, + x: 107.61, + country: `Indonesia`, + name: `Bandung` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.8, + y: 55.86, + x: -4.27, + country: `UK`, + name: `Glasgow` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.79, + y: -33.8, + x: 18.69, + country: `South Africa`, + name: `Cape Town` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.77, + y: 18.4, + x: -66.08, + country: `Puerto Rico`, + name: `San Juan` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.77, + y: 18.54, + x: 73.85, + country: `India`, + name: `Pune` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.76, + y: 50.94, + x: 6.93, + country: `Germany`, + name: `Koln` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.75, + y: 33.31, + x: 130.32, + country: `Japan`, + name: `Fukuoka` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.74, + y: 43.88, + x: 125.31, + country: `China`, + name: `Changchung` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.7, + y: -25.43, + x: -49.28, + country: `Brazil`, + name: `Curitiba` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.69, + y: 55.72, + x: 12.55, + country: `Denmark`, + name: `Kobenhavn` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.68, + y: 33.78, + x: 35.66, + country: `Lebanon`, + name: `Beirut` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.68, + y: 39.03, + x: 121.6, + country: `China`, + name: `Dalian` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.67, + y: 31.92, + x: 34.86, + country: `Israel`, + name: `Tel Aviv-Yafo` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.66, + y: 37.89, + x: 112.55, + country: `China`, + name: `Taiyuan` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.65, + y: 53.9, + x: 27.58, + country: `Belarus`, + name: `Minsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.62, + y: 56.85, + x: 60.61, + country: `Russia`, + name: `Yekaterinburg` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.6, + y: 48.42, + x: 35.14, + country: `Ukraine`, + name: `Dnepropetrovsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.6, + y: 37.59, + x: 126.77, + country: `South Korea`, + name: `Inch\`on` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.6, + y: 39.03, + x: 125.76, + country: `North Korea`, + name: `Pyongyang` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.6, + y: 55.03, + x: 82.94, + country: `Russia`, + name: `Novosibirsk` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.57, + y: -15.79, + x: -47.9, + country: `Brazil`, + name: `Brasilia` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.57, + y: 34.38, + x: 132.44, + country: `Japan`, + name: `Hiroshima` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.55, + y: -34.92, + x: -56.17, + country: `Uruguay`, + name: `Montevideo` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.55, + y: 38.44, + x: 27.21, + country: `Turkey`, + name: `Izmir` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.55, + y: -29.84, + x: 30.94, + country: `South Africa`, + name: `Durban` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.55, + y: 45.07, + x: 7.67, + country: `Italy`, + name: `Torino` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.54, + y: 53.81, + x: -1.5, + country: `UK`, + name: `Leeds` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.52, + y: 53.42, + x: -2.77, + country: `UK`, + name: `Liverpool` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.52, + y: 33.68, + x: 130.8, + country: `Japan`, + name: `Kita Kyushu` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.5, + y: 9.03, + x: 38.7, + country: `Ethiopia`, + name: `Adis Abeba` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.5, + y: 21.03, + x: 105.82, + country: `Vietnam`, + name: `Hanoi` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.5, + y: 53.14, + x: 50.1, + country: `Russia`, + name: `Samara` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.48, + y: 3.15, + x: 101.71, + country: `Malaysia`, + name: `Kuala Lumpur` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.48, + y: 33.51, + x: -112.11, + country: `US`, + name: `Phoenix` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.48, + y: 35.01, + x: 135.75, + country: `Japan`, + name: `Kyoto` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.48, + y: 39.15, + x: -84.48, + country: `US`, + name: `Cincinnati` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.48, + y: 42.9, + x: -78.85, + country: `US`, + name: `Buffalo` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.46, + y: -9, + x: 13.46, + country: `Angola`, + name: `Luanda` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.46, + y: 36.29, + x: 59.6, + country: `Iran`, + name: `Mashhad` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.46, + y: 36.66, + x: 116.97, + country: `China`, + name: `Jinan` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.46, + y: 41.72, + x: 44.78, + country: `Georgia`, + name: `Tbilisi` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.45, + y: 59.24, + x: 18.08, + country: `Sweden`, + name: `Stockholm` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.43, + y: 14.63, + x: -16.85, + country: `Senegal`, + name: `Dakar` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.41, + y: 39.75, + x: -105.07, + country: `US`, + name: `Denver` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.41, + y: 34.66, + x: 135.18, + country: `Japan`, + name: `Kobe` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.4, + y: 3.46, + x: -76.52, + country: `Colombia`, + name: `Cali` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.4, + y: 14.62, + x: -90.52, + country: `Guatemala`, + name: `Guatemala` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.4, + y: 44.8, + x: 20.41, + country: `Serbia`, + name: `Belgrade` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.39, + y: 22.48, + x: 91.83, + country: `Bangladesh`, + name: `Chittagong` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.38, + y: 49.27, + x: -122.96, + country: `Canada`, + name: `Vancouver` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.38, + y: 29.19, + x: 48, + country: `Kuwait`, + name: `Al Kuwayt` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.38, + y: 43.07, + x: -87.99, + country: `US`, + name: `Milwaukee` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.37, + y: 3.59, + x: 98.68, + country: `Indonesia`, + name: `Medan` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.36, + y: 48.71, + x: 44.48, + country: `Russia`, + name: `Volgograd` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.33, + y: 14.65, + x: 121.03, + country: `Philippines`, + name: `Quezon City` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.32, + y: 50.11, + x: 14.46, + country: `Czechia`, + name: `Prague` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.32, + y: 55.15, + x: 61.39, + country: `Russia`, + name: `Chelyabinsk` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.31, + y: 18.5, + x: -69.91, + country: `Dominican Rp`, + name: `Santo Domingo` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.31, + y: 40.21, + x: 44.53, + country: `Armenia`, + name: `Yerevan` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.3, + y: 21.62, + x: 39.37, + country: `Saudi Arabia`, + name: `Jiddah` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.3, + y: -6.82, + x: 39.25, + country: `Tanzania`, + name: `Dar es Salaam` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.3, + y: 21.16, + x: 79.09, + country: `India`, + name: `Nagpur` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.3, + y: 41.12, + x: 122.98, + country: `China`, + name: `Anshan` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.29, + y: -1.17, + x: 36.83, + country: `Kenya`, + name: `Nairobi` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.28, + y: 25.05, + x: 102.7, + country: `China`, + name: `Kunming` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 36.15, + x: 120.43, + country: `China`, + name: `Qingdao` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 30.25, + x: 120.17, + country: `China`, + name: `Hangzhou` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 36.11, + x: 103.6, + country: `China`, + name: `Lanzhou` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 38.99, + x: -94.63, + country: `US`, + name: `Kansas City` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 39.47, + x: -0.37, + country: `Spain`, + name: `Valencia` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 41.86, + x: 123.91, + country: `China`, + name: `Fushun` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 45.75, + x: 4.86, + country: `France`, + name: `Lyon` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.25, + y: 24.65, + x: 46.77, + country: `Saudi Arabia`, + name: `Ar Riyad` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.25, + y: -2.2, + x: -79.91, + country: `Ecuador`, + name: `Guayaquil` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.25, + y: 5.56, + x: -0.2, + country: `Ghana`, + name: `Accra` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.25, + y: 31.95, + x: 35.93, + country: `Jordan`, + name: `Amman` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.23, + y: 41.15, + x: -8.49, + country: `Portugal`, + name: `Porto` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.23, + y: 43.3, + x: 5.38, + country: `France`, + name: `Marseille` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.23, + y: 45.44, + x: -122.64, + country: `US`, + name: `Portland` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.23, + y: 36.82, + x: 10.17, + country: `Tunisia`, + name: `Tunis` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.22, + y: 36.22, + x: 37.16, + country: `Syria`, + name: `Aleppo` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.21, + y: 42.71, + x: 23.33, + country: `Bulgaria`, + name: `Sofia` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.2, + y: -1.61, + x: -48.32, + country: `Brazil`, + name: `Belem` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.19, + y: 28.2, + x: 112.97, + country: `China`, + name: `Changsha` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.19, + y: 29.96, + x: -90.1, + country: `US`, + name: `New Orleans` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.19, + y: 38.08, + x: 114.56, + country: `China`, + name: `Shijiazhuang` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.19, + y: 43.26, + x: 76.91, + country: `Kazakhstan`, + name: `Almaty` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.19, + y: 46.57, + x: 30.68, + country: `Ukraine`, + name: `Odessa` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.18, + y: 34.53, + x: 69.14, + country: `Afghanistan`, + name: `Kabul` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.18, + y: 55.06, + x: 73.25, + country: `Russia`, + name: `Omsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.17, + y: 34.76, + x: 113.64, + country: `China`, + name: `Zhengzhou` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.17, + y: 43.85, + x: 126.57, + country: `China`, + name: `Jilin` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.17, + y: 47.23, + x: 39.69, + country: `Russia`, + name: `Rostov-na-Donu` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.16, + y: 58, + x: 56.23, + country: `Russia`, + name: `Perm'` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.15, + y: -27.45, + x: 153.03, + country: `Australia`, + name: `Brisbane` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.15, + y: 47.34, + x: 123.96, + country: `China`, + name: `Qiqihar` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.14, + y: 11.01, + x: -74.68, + country: `Colombia`, + name: `Barranquilla` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.14, + y: 7.38, + x: 3.9, + country: `Nigeria`, + name: `Ibadan` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.14, + y: 53.34, + x: -6.26, + country: `Ireland`, + name: `Dublin` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.14, + y: 55.73, + x: 49.15, + country: `Russia`, + name: `Kazan'` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.12, + y: 40.65, + x: 109.98, + country: `China`, + name: `Baotou` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.11, + y: 51.93, + x: 4.49, + country: `Netherlands`, + name: `Rotterdam` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.1, + y: 31.41, + x: 73.08, + country: `Pakistan`, + name: `Faisalabad` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.1, + y: 51.21, + x: 4.43, + country: `Belgium`, + name: `Antwerp` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.1, + y: 54.82, + x: 56.1, + country: `Russia`, + name: `Ufa` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.09, + y: 35.5, + x: 139.73, + country: `Japan`, + name: `Kawasaki` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.07, + y: -31.32, + x: -64.18, + country: `Argentina`, + name: `Cordoba` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.07, + y: -25.96, + x: 32.57, + country: `Mozambique`, + name: `Maputo` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.06, + y: -23.95, + x: -46.31, + country: `Brazil`, + name: `Santos` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.06, + y: 26.85, + x: 80.92, + country: `India`, + name: `Lucknow` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.06, + y: 39.62, + x: 118.18, + country: `China`, + name: `Tangshan` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.06, + y: 51.78, + x: 19.48, + country: `Poland`, + name: `Lodz` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.05, + y: -0.23, + x: -78.52, + country: `Ecuador`, + name: `Quito` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.05, + y: 19.05, + x: -98.19, + country: `Mexico`, + name: `Puebla de Zaragoza` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.04, + y: 31.78, + x: -106.45, + country: `US`, + name: `El Paso` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.04, + y: -32.94, + x: -60.66, + country: `Argentina`, + name: `Rosario` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.04, + y: 43.78, + x: 87.59, + country: `China`, + name: `Urumqi` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.03, + y: 4.14, + x: 9.71, + country: `Cameroon`, + name: `Douala` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.03, + y: 28.67, + x: 115.89, + country: `China`, + name: `Nanchang` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.02, + y: -7.03, + x: 110.44, + country: `Indonesia`, + name: `Semarang` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.02, + y: 25.61, + x: 85.14, + country: `India`, + name: `Patna` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.02, + y: 26.91, + x: 75.8, + country: `India`, + name: `Jaipur` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.02, + y: 50.63, + x: 3.06, + country: `France`, + name: `Lille` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.01, + y: 26.57, + x: 106.7, + country: `China`, + name: `Guiyang` + }), + new WorldCitiesItem( + { + capital: true, + population: 1, + y: 56.88, + x: 24.05, + country: `Latvia`, + name: `Riga` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.99, + y: -31.98, + x: 115.92, + country: `Australia`, + name: `Perth` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.99, + y: 32.75, + x: 13.21, + country: `Libya`, + name: `Tripoli` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.99, + y: -16.73, + x: -49.25, + country: `Brazil`, + name: `Goiania` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.99, + y: -16.5, + x: -68.15, + country: `Bolivia`, + name: `La Paz` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.99, + y: 32.65, + x: 51.68, + country: `Iran`, + name: `Esfahan` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.98, + y: 33.92, + x: -6.75, + country: `Morocco`, + name: `Rabat` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.98, + y: -34.92, + x: 138.87, + country: `Australia`, + name: `Adelaide` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.98, + y: 43.28, + x: -2.97, + country: `Spain`, + name: `Bilbao` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.97, + y: 29.43, + x: -98.52, + country: `US`, + name: `San Antonio` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.97, + y: 38.08, + x: 46.29, + country: `Iran`, + name: `Tabriz` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.96, + y: -25.73, + x: 28.22, + country: `South Africa`, + name: `Pretoria` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.96, + y: 9.91, + x: 78.12, + country: `India`, + name: `Madurai` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.96, + y: 40.04, + x: -82.99, + country: `US`, + name: `Columbus` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.94, + y: 37.37, + x: -5.97, + country: `Spain`, + name: `Sevilla` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.93, + y: 25.28, + x: 82.96, + country: `India`, + name: `Benares` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.92, + y: 15.55, + x: 32.53, + country: `Sudan`, + name: `Khartoum` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.92, + y: 13.7, + x: -89.2, + country: `El Salvador`, + name: `San Salvador` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.91, + y: 54.37, + x: 18.62, + country: `Poland`, + name: `Gdansk` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.9, + y: 60.2, + x: 24.98, + country: `Finland`, + name: `Helsinki` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.89, + y: -17.83, + x: 31.02, + country: `Zimbabwe`, + name: `Harare` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.89, + y: 10.65, + x: -71.64, + country: `Venezuela`, + name: `Maracaibo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.89, + y: 26.07, + x: 119.3, + country: `China`, + name: `Fuzhou` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.88, + y: 18.53, + x: -72.34, + country: `Haiti`, + name: `Port-au-Prince` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.87, + y: 38.57, + x: -121.42, + country: `US`, + name: `Sacramento` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.85, + y: 29.63, + x: 52.57, + country: `Iran`, + name: `Shiraz` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.85, + y: -36.89, + x: 174.8, + country: `New Zealand`, + name: `Auckland` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.85, + y: 35.11, + x: -90, + country: `US`, + name: `Memphis` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.84, + y: 33.61, + x: 73.04, + country: `Pakistan`, + name: `Rawalpindi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.83, + y: 36.79, + x: 118.06, + country: `China`, + name: `Zibo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.83, + y: 50.06, + x: 19.95, + country: `Poland`, + name: `Krakow` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.82, + y: 43.21, + x: -77.64, + country: `US`, + name: `Rochester` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.82, + y: 45.37, + x: -75.65, + country: `Canada`, + name: `Ottawa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.81, + y: 44.46, + x: 8.92, + country: `Italy`, + name: `Genova` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.81, + y: -3.12, + x: -60.01, + country: `Brazil`, + name: `Manaus` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.8, + y: 9.52, + x: -12.8, + country: `Guinea`, + name: `Conakry` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.8, + y: 25.38, + x: 68.37, + country: `Pakistan`, + name: `Hyderabad` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.8, + y: 36.88, + x: -76.27, + country: `US`, + name: `Norfolk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.8, + y: 53.08, + x: 8.86, + country: `Germany`, + name: `Bremen` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.79, + y: 53.57, + x: -113.27, + country: `Canada`, + name: `Edmonton` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.79, + y: -3, + x: 104.83, + country: `Indonesia`, + name: `Palembang` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.79, + y: 49.84, + x: 24.03, + country: `Ukraine`, + name: `Lvov` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.78, + y: 22.38, + x: 114.23, + country: `UK`, + name: `Kowloon` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.78, + y: 37, + x: 35.32, + country: `Turkey`, + name: `Adana` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.77, + y: 51.9, + x: 4.3, + country: `Netherlands`, + name: `The Hague` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.77, + y: 18.02, + x: -76.8, + country: `Jamaica`, + name: `Kingston` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.76, + y: 21.32, + x: -157.81, + country: `US`, + name: `Honolulu` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.75, + y: 50.62, + x: 5.57, + country: `Belgium`, + name: `Liege` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.74, + y: 34.67, + x: 112.36, + country: `China`, + name: `Luoyang` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.74, + y: 35.49, + x: -97.53, + country: `US`, + name: `Oklahoma City` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.72, + y: 38.13, + x: 13.4, + country: `Italy`, + name: `Palermo` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.72, + y: 59.93, + x: 10.72, + country: `Norway`, + name: `Oslo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.71, + y: 40.63, + x: 22.8, + country: `Greece`, + name: `ThessaXiki` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.71, + y: 57.75, + x: 12, + country: `Sweden`, + name: `Goteborg` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.71, + y: -5.19, + x: 119.72, + country: `Indonesia`, + name: `Vjuag Padang` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.71, + y: 24.14, + x: 120.67, + country: `Taiwan`, + name: `T\`ai-chung` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.71, + y: 53.37, + x: -1.46, + country: `UK`, + name: `Sheffield` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.7, + y: -25.22, + x: -57.67, + country: `Paraguay`, + name: `Asuncion` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.7, + y: 45.81, + x: 15.96, + country: `Croatia`, + name: `Zagreb` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.7, + y: 11.56, + x: 104.91, + country: `Cambodia`, + name: `Phnom Penh` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.7, + y: 51.35, + x: 12.4, + country: `Germany`, + name: `Leipzig` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.69, + y: 9.99, + x: 76.52, + country: `India`, + name: `Cochin` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.69, + y: -33.88, + x: 25.48, + country: `South Africa`, + name: `Port Elizabeth` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.69, + y: 54.59, + x: -5.91, + country: `UK`, + name: `Belfast` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.68, + y: -32.9, + x: -71.3, + country: `Chile`, + name: `Valparaiso` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.68, + y: -36.88, + x: -72.85, + country: `Chile`, + name: `Concepcion` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.68, + y: 12.15, + x: -86.27, + country: `Nicaragua`, + name: `Managua` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.68, + y: 40.69, + x: -111.89, + country: `US`, + name: `Salt Lake City` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.67, + y: 47, + x: 28.83, + country: `Moldova`, + name: `Kishinev` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.67, + y: 9.93, + x: -84.08, + country: `Costa Rica`, + name: `San Jose` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.67, + y: 51.03, + x: -114.05, + country: `Canada`, + name: `Calgary` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.67, + y: 51.05, + x: 13.71, + country: `Germany`, + name: `Dresden` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.66, + y: 23.17, + x: 120.23, + country: `Taiwan`, + name: `T\`ai-nan` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.66, + y: -18.87, + x: 47.5, + country: `Madagascar`, + name: `Antananarivo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.65, + y: 43.13, + x: 131.96, + country: `Russia`, + name: `Vladivostok` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.65, + y: -32.9, + x: -68.83, + country: `Argentina`, + name: `Mendoza` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.65, + y: 3.87, + x: 11.51, + country: `Cameroon`, + name: `Yaounde` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.65, + y: 12.65, + x: -7.99, + country: `Mali`, + name: `Bamako` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.65, + y: 22.84, + x: 89.56, + country: `Bangladesh`, + name: `Khulna` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.64, + y: 30.33, + x: -81.66, + country: `US`, + name: `Jacksonville` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.64, + y: 43.78, + x: 11.21, + country: `Italy`, + name: `Firenze` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.64, + y: 44.84, + x: -0.6, + country: `France`, + name: `Bordeaux` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.64, + y: 51.12, + x: 17.04, + country: `Poland`, + name: `Wroclaw` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 37.31, + x: -121.85, + country: `US`, + name: `San Jose` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.63, + y: 8.95, + x: -79.4, + country: `Panama`, + name: `Panama` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 35.75, + x: -0.52, + country: `Algeria`, + name: `Oran` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 51.5, + x: -3.15, + country: `UK`, + name: `Cardiff` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 55.88, + x: -3.3, + country: `UK`, + name: `Edinburgh` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 49.92, + x: -97.12, + country: `Canada`, + name: `Winnipeg` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 52.32, + x: 104.25, + country: `Russia`, + name: `Irkutsk` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.62, + y: 42.88, + x: 74.77, + country: `Kyrgyzstan`, + name: `Frunze` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.62, + y: 10.18, + x: -68, + country: `Venezuela`, + name: `Valencia` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.62, + y: 30.5, + x: 47.76, + country: `Iraq`, + name: `Al Basra` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.61, + y: 49.88, + x: 73.2, + country: `Kazakhstan`, + name: `Karaganda` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.6, + y: 48.53, + x: 135.07, + country: `Russia`, + name: `Khabarovsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.6, + y: 17.75, + x: 83.33, + country: `India`, + name: `Vishakhapatnam` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.6, + y: -2.5, + x: -44.43, + country: `Brazil`, + name: `Sao Luis` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.6, + y: 53.7, + x: 87.17, + country: `Russia`, + name: `Novokuznetsk` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.6, + y: 2.04, + x: 45.34, + country: `Somalia`, + name: `Muqdisho` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.6, + y: 46.8, + x: -71.24, + country: `Canada`, + name: `Quebec` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.59, + y: 28, + x: -82.59, + country: `US`, + name: `Tampa` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.59, + y: 38.63, + x: 68.9, + country: `Tajikistan`, + name: `Dushanfe` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.59, + y: -4.29, + x: 15.29, + country: `Congo`, + name: `Brazzaville` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.59, + y: 31.63, + x: 74.87, + country: `India`, + name: `Amritsar` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.58, + y: 54.69, + x: 25.28, + country: `Lithuania`, + name: `Vilnius` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.57, + y: 36.34, + x: 43.14, + country: `Iraq`, + name: `Mosul` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.57, + y: 41.65, + x: -0.88, + country: `Spain`, + name: `Zaragoza` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.57, + y: 50.73, + x: 7.1, + country: `Germany`, + name: `Bonn` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.57, + y: 51.51, + x: 7.47, + country: `Germany`, + name: `Dortmund` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.55, + y: 14.1, + x: -87.2, + country: `Honduras`, + name: `Tegucigalpa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.55, + y: 21.43, + x: 39.81, + country: `Saudi Arabia`, + name: `Mecca` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.55, + y: 47.93, + x: 106.91, + country: `Mongolia`, + name: `Ulaanbaatar` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.54, + y: -15.43, + x: 28.17, + country: `Zambia`, + name: `Lusaka` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.54, + y: -11.68, + x: 27.55, + country: `Zaire`, + name: `Lumumbashi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.54, + y: 11.92, + x: 8.52, + country: `Nigeria`, + name: `Kano` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.54, + y: 31.15, + x: -8, + country: `Morocco`, + name: `Marrakech` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.54, + y: 34.04, + x: -5, + country: `Morocco`, + name: `Fes` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.54, + y: 43.6, + x: 1.44, + country: `France`, + name: `Toulouse` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.53, + y: 15.62, + x: 32.48, + country: `Sudan`, + name: `Omdurman` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.53, + y: 8.38, + x: -12.91, + country: `Sierra Leone`, + name: `Freetown` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.53, + y: 21.98, + x: 96.08, + country: `Burma`, + name: `Mandalay` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.52, + y: 51.49, + x: 6.78, + country: `Germany`, + name: `Duisburg` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.51, + y: 46.25, + x: 48, + country: `Russia`, + name: `Astrakhan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.51, + y: -5.78, + x: -35.25, + country: `Brazil`, + name: `Natal` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.5, + y: 10.07, + x: -69.34, + country: `Venezuela`, + name: `Barquisimeto` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.49, + y: 5.35, + x: 100.55, + country: `Malaysia`, + name: `George Town` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.49, + y: 31.77, + x: 35.23, + country: `Israel`, + name: `Jerusalem` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.48, + y: 59.28, + x: 24.75, + country: `Estonia`, + name: `Tallinn` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.48, + y: 35.21, + x: -80.84, + country: `US`, + name: `Charlotte` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.47, + y: 6.52, + x: -10.77, + country: `Liberia`, + name: `Monrovia` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.47, + y: 4.37, + x: 18.56, + country: `Cent Af Rep`, + name: `Bangui` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.47, + y: 47.22, + x: -1.56, + country: `France`, + name: `Nantes` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.47, + y: 51.05, + x: 3.74, + country: `Belgium`, + name: `Gent` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.47, + y: 68.96, + x: 33.09, + country: `Russia`, + name: `Murmansk` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.46, + y: 0.32, + x: 32.58, + country: `Uganda`, + name: `Kampala` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.45, + y: 42, + x: 21.53, + country: `Macedonia`, + name: `Skopje` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.45, + y: 32.88, + x: 129.86, + country: `Japan`, + name: `Nagasaki` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.45, + y: -16.4, + x: -71.52, + country: `Peru`, + name: `Arequipa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.45, + y: 49.2, + x: 16.62, + country: `Czechia`, + name: `Brno` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.44, + y: 12.48, + x: -1.67, + country: `Burkina Faso`, + name: `Ouagadouou` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.44, + y: -4.02, + x: 39.67, + country: `Kenya`, + name: `Mombasa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.44, + y: 32.04, + x: 20.31, + country: `Libya`, + name: `Banghazi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.44, + y: -17.79, + x: -63.2, + country: `Bolivia`, + name: `Santa Cruz de La Sierra` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.43, + y: 48.27, + x: 17.27, + country: `Slovakia`, + name: `Bratislava` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.43, + y: 15.36, + x: 44.21, + country: `Yemen`, + name: `Sanaa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.43, + y: 22.24, + x: -97.84, + country: `Mexico`, + name: `Tampico` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.43, + y: 34.73, + x: 36.72, + country: `Syria`, + name: `Homs` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.42, + y: 45.42, + x: 12.37, + country: `Italy`, + name: `Venezia` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.42, + y: 64.52, + x: 40.65, + country: `Russia`, + name: `Arkhangelsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.41, + y: -20.2, + x: 28.71, + country: `Zimbabwe`, + name: `Bulawayo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.41, + y: -33, + x: 151.91, + country: `Australia`, + name: `Newcastle` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.41, + y: 7.08, + x: 125.61, + country: `Philippines`, + name: `Davao` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.4, + y: 6.28, + x: 1.35, + country: `Togo`, + name: `Lome` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.4, + y: 13.6, + x: 2.08, + country: `Niger`, + name: `Niamey` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.4, + y: 20.82, + x: -89.55, + country: `Mexico`, + name: `Merida` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.4, + y: 37.95, + x: 58.39, + country: `Turkmenistan`, + name: `Ashkhabad` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.4, + y: 48.58, + x: 7.77, + country: `France`, + name: `Strasbourg` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.39, + y: 19.01, + x: -96.08, + country: `Mexico`, + name: `Veracruz` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.39, + y: 28.56, + x: -105.97, + country: `Mexico`, + name: `Chihuaha` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.39, + y: 20.86, + x: 106.68, + country: `Vietnam`, + name: `Haiphong` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.38, + y: 18, + x: 102.68, + country: `Laos`, + name: `Vientiane` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.37, + y: 10.64, + x: -61.49, + country: `Trinidad`, + name: `Port of Spain` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.37, + y: 39.66, + x: 66.95, + country: `Uzbekistan`, + name: `Samarkand` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.35, + y: -41.21, + x: 175.14, + country: `New Zealand`, + name: `Wellington` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.35, + y: -7.93, + x: -79, + country: `Peru`, + name: `Trujillo` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.34, + y: 43.87, + x: 18.43, + country: `Bosnia`, + name: `Sarajevo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.34, + y: 48.3, + x: 14.29, + country: `Austria`, + name: `Linz` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.33, + y: 40.72, + x: -74.2, + country: `US`, + name: `Newark` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.33, + y: 29.96, + x: 32.56, + country: `Egypt`, + name: `Suez` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.33, + y: 47.06, + x: 15.43, + country: `Austria`, + name: `Graz` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.32, + y: 12.86, + x: 45.18, + country: `Yemen`, + name: `Aden` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.32, + y: -33.03, + x: 27.9, + country: `South Africa`, + name: `East Xdon` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.32, + y: -43.55, + x: 172.68, + country: `New Zealand`, + name: `Christchurch` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.32, + y: 27.71, + x: 85.31, + country: `Nepal`, + name: `Kathmandu` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.31, + y: 12.95, + x: 75.16, + country: `India`, + name: `Mangalore` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.31, + y: 34.75, + x: 10.76, + country: `Tunisia`, + name: `Sfax` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.31, + y: 25.2, + x: 51.5, + country: `Qatar`, + name: `Doha` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.3, + y: -0.92, + x: 100.48, + country: `Indonesia`, + name: `Padang` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.3, + y: 44.63, + x: -63.58, + country: `Canada`, + name: `Halifax` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.3, + y: 16.97, + x: -99.93, + country: `Mexico`, + name: `ACapulco` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.3, + y: 12.1, + x: 15.24, + country: `Chad`, + name: `N'Djamena` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.3, + y: 39.23, + x: 9.11, + country: `Italy`, + name: `Cagliari` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.3, + y: 46.95, + x: 7.45, + country: `Switzerland`, + name: `Bern` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: -19.77, + x: 35.02, + country: `Mozambique`, + name: `Beira` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: -4.64, + x: 12.06, + country: `Congo`, + name: `Pointe Noire` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: 40.75, + x: 140.67, + country: `Japan`, + name: `Aomori` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: 24.43, + x: 39.7, + country: `Saudi Arabia`, + name: `Al Madinah` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: -31.62, + x: -60.7, + country: `Argentina`, + name: `Santa Fe` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: -5.89, + x: 22.4, + country: `Zaire`, + name: `Kananga` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.28, + y: 18.03, + x: -15.78, + country: `Mauritania`, + name: `Nouakchott` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.28, + y: 15.33, + x: 38.97, + country: `Eritrea`, + name: `Asmara` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.28, + y: 29.6, + x: 60.83, + country: `Iran`, + name: `Zahedan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.28, + y: -6.62, + x: -79.83, + country: `Peru`, + name: `Chiclayo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.28, + y: -15.55, + x: -56.05, + country: `Brazil`, + name: `Cuiaba` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.28, + y: 0.52, + x: 25.2, + country: `Zaire`, + name: `Kisangani` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.27, + y: 53.2, + x: 158.72, + country: `Russia`, + name: `Petropavloski-Kamchatskiy` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.27, + y: -3.27, + x: 29.53, + country: `Burundi`, + name: `Bujumbura` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.27, + y: -35.35, + x: 149.04, + country: `Australia`, + name: `Canberra` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.27, + y: 28.57, + x: 77.22, + country: `India`, + name: `New Delhi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.26, + y: 49.32, + x: 0.22, + country: `France`, + name: `Le Havre` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.26, + y: 48.65, + x: -123.57, + country: `Canada`, + name: `Victoria` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.26, + y: 11.88, + x: 13.26, + country: `Niger`, + name: `Maiduguri` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.26, + y: -12.04, + x: -76.84, + country: `Peru`, + name: `Callao` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.25, + y: -7.33, + x: 19, + country: `Zaire`, + name: `Kahemba` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.25, + y: 6.45, + x: 7.49, + country: `Nigeria`, + name: `Enugu` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.25, + y: 39.9, + x: 41.29, + country: `Turkey`, + name: `Erzurum` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.24, + y: 24.24, + x: 54.62, + country: `UAE`, + name: `Abu Zaby` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.24, + y: 5.93, + x: -55.23, + country: `SuriName`, + name: `Paramaribo` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.24, + y: -0.5, + x: 9.49, + country: `Gabon`, + name: `Libreville` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.24, + y: 60.35, + x: 5.49, + country: `Norway`, + name: `Bergen` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.24, + y: 41.32, + x: 36.37, + country: `Turkey`, + name: `Samsun` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.24, + y: 45.7, + x: 13.93, + country: `Italy`, + name: `Trieste` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.23, + y: -13.92, + x: 33.82, + country: `Malawi`, + name: `LiXgwe` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.23, + y: 31.97, + x: 54.45, + country: `Iran`, + name: `Yazd` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.23, + y: -29.15, + x: 26.26, + country: `South Africa`, + name: `Bloemfontein` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.23, + y: -2.46, + x: -54.61, + country: `Brazil`, + name: `Santarem` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.23, + y: 46.07, + x: 14.64, + country: `Slovenia`, + name: `Ljubljana` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.22, + y: 1.42, + x: 124.88, + country: `Indonesia`, + name: `Manado` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.22, + y: -8.93, + x: -78.45, + country: `Peru`, + name: `Chimbote` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.22, + y: -27.4, + x: -58.9, + country: `Argentina`, + name: `Resistencia` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.22, + y: 47.8, + x: 13.09, + country: `Austria`, + name: `Salzburg` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.22, + y: -38.73, + x: -62.27, + country: `Argentina`, + name: `Bahia Blanca` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.21, + y: -1.21, + x: 116.86, + country: `Indonesia`, + name: `Balikpapan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.21, + y: 19.62, + x: 37.22, + country: `Sudan`, + name: `Bur Sudan` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.21, + y: 41.33, + x: 19.83, + country: `Albania`, + name: `Tirane` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: 7.58, + x: -72.01, + country: `Venezuela`, + name: `San Cristobal` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: 34.34, + x: 36.01, + country: `Lebanon`, + name: `Tripoli` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: 31.6, + x: 65.5, + country: `Afghanistan`, + name: `Qandahar` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: 23.36, + x: -106.27, + country: `Mexico`, + name: `Mazatlan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: -12.73, + x: 15.78, + country: `Angola`, + name: `Huambo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: -8.75, + x: -63.9, + country: `Brazil`, + name: `Porto Velho` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: 52.11, + x: -106.63, + country: `Canada`, + name: `Saskatoon` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.2, + y: 33.72, + x: 73.06, + country: `Pakistan`, + name: `Islamabad` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.19, + y: 6.77, + x: -58.17, + country: `Guyana`, + name: `Georgetown` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.19, + y: 24.08, + x: 32.95, + country: `Egypt`, + name: `Aswan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.19, + y: 62.01, + x: 129.83, + country: `Russia`, + name: `Yakutsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.19, + y: 50.41, + x: -104.65, + country: `Canada`, + name: `Regina` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.18, + y: 61.19, + x: -149.17, + country: `US`, + name: `Anchorage` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.18, + y: -23.83, + x: -70.23, + country: `Chile`, + name: `Antofagasta` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.18, + y: -13.6, + x: -71.86, + country: `Peru`, + name: `Cuzco` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.18, + y: -2.12, + x: 29.99, + country: `Rwanda`, + name: `Kigali` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.18, + y: 35.17, + x: 33.39, + country: `Cyprus`, + name: `Nicosia` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.18, + y: -3.75, + x: -73.19, + country: `Peru`, + name: `Iquitos` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.18, + y: 47.27, + x: 11.35, + country: `Austria`, + name: `Innsbruck` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.17, + y: 69.33, + x: 88.1, + country: `Russia`, + name: `Noril\`sk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.17, + y: -43, + x: 147.5, + country: `Australia`, + name: `Hobart` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.17, + y: 50.33, + x: 110.75, + country: `Russia`, + name: `Chatanga` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.17, + y: 16.46, + x: 107.7, + country: `Vietnam`, + name: `Hue` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.16, + y: 6.6, + x: 2.63, + country: `Benin`, + name: `Porto Novo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.16, + y: 34.46, + x: 62.21, + country: `Afghanistan`, + name: `Herat` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.15, + y: 16.92, + x: -96.94, + country: `Mexico`, + name: `Oaxaca` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.15, + y: -9.55, + x: 147.41, + country: `Papua N Guin`, + name: `Port Moresby` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.15, + y: 38.14, + x: 21.88, + country: `Greece`, + name: `Patras` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.15, + y: 39.48, + x: 76, + country: `China`, + name: `Kashi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.15, + y: -12.72, + x: 13.46, + country: `Angola`, + name: `Benguela` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.15, + y: 59.57, + x: 150.78, + country: `Russia`, + name: `Magadan` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.14, + y: 64.31, + x: -21.34, + country: `Iceland`, + name: `Reykjavik` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.14, + y: 55.57, + x: 9.9, + country: `Denmark`, + name: `Odense` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.14, + y: 13.18, + x: 30.16, + country: `Sudan`, + name: `El Obeid` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.14, + y: -28.66, + x: 24.83, + country: `South Africa`, + name: `Kimberley` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.14, + y: -5.81, + x: 13.45, + country: `Zaire`, + name: `Matadi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.13, + y: 0.05, + x: 18.46, + country: `Zaire`, + name: `Mbandaka` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.13, + y: 49.74, + x: 6.27, + country: `Luxembourg`, + name: `Luxembourg` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.12, + y: -22.57, + x: 17.1, + country: `Namibia`, + name: `Windhoek` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.12, + y: 67.8, + x: 64.33, + country: `Russia`, + name: `Vorkuta` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.12, + y: 45.34, + x: -65.65, + country: `Canada`, + name: `Saint John` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.12, + y: -0.82, + x: 9.15, + country: `Gabon`, + name: `Port Gentil` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.12, + y: 11.5, + x: 43.1, + country: `Djibouti`, + name: `Djibouti` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.11, + y: -20.26, + x: -69.91, + country: `Chile`, + name: `Iquique` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.11, + y: 11.91, + x: -15.65, + country: `GuineaBissau`, + name: `Bissau` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.11, + y: -3.39, + x: 129.31, + country: `Indonesia`, + name: `Ambon` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.11, + y: -45.86, + x: 170.5, + country: `New Zealand`, + name: `Dunedin` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.11, + y: -19.3, + x: 146.83, + country: `Australia`, + name: `Townsville` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.11, + y: -29.26, + x: 27.89, + country: `Lesotho`, + name: `Maseru` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.1, + y: 46.92, + x: -122.88, + country: `US`, + name: `Olympia` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.1, + y: 13.45, + x: -16.49, + country: `Gambia`, + name: `Banjul` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.1, + y: -45.83, + x: -67.5, + country: `Argentina`, + name: `Comodoro Rivadavia` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.1, + y: -53.15, + x: -70.8, + country: `Chile`, + name: `Punte Arenas` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.1, + y: -18.23, + x: 49.41, + country: `Madagascar`, + name: `Toamasina` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.1, + y: -24.66, + x: 25.79, + country: `Botswana`, + name: `Gaborone` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.09, + y: 15.95, + x: -16.3, + country: `Senegal`, + name: `Saint Louis` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.09, + y: 27, + x: -13.18, + country: `W Sahara`, + name: `Laayoune` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.09, + y: -19.04, + x: -65.26, + country: `Bolivia`, + name: `Sucre` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.08, + y: -31.31, + x: -57.71, + country: `Uruguay`, + name: `Salto` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.08, + y: 42.5, + x: 19.4, + country: `Montenegro`, + name: `Podgorica` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.08, + y: -41.48, + x: -73, + country: `Chile`, + name: `Puerto Montt` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.08, + y: 29.65, + x: 91.13, + country: `China`, + name: `Lhasa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.07, + y: 61.15, + x: 47, + country: `Russia`, + name: `Kotlas` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.07, + y: -12.7, + x: 130.99, + country: `Australia`, + name: `Darwin` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.07, + y: 1.5, + x: 110.43, + country: `Malaysia`, + name: `Kuching` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.06, + y: -23.29, + x: 44.02, + country: `Madagascar`, + name: `Toliara` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.06, + y: -31, + x: -71.02, + country: `Chile`, + name: `Coquimbo` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.06, + y: 4.93, + x: 114.97, + country: `Brunei`, + name: `Bandar Seri Begawan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.06, + y: -17.83, + x: 25.88, + country: `Zambia`, + name: `Livingstone` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.06, + y: -23.43, + x: 150.48, + country: `Australia`, + name: `Rockhampton` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.05, + y: 23.52, + x: 58.63, + country: `Oman`, + name: `Masqat` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.05, + y: -4.95, + x: 30, + country: `Tanzania`, + name: `Kigoma` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.05, + y: 16.96, + x: 7.98, + country: `Niger`, + name: `Agadez` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.05, + y: -10.26, + x: 40.18, + country: `Tanzania`, + name: `Mtwara` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.05, + y: -46.41, + x: 168.45, + country: `New Zealand`, + name: `Invercargill` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.05, + y: -6.18, + x: 35.75, + country: `Tanzania`, + name: `Dodoma` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.04, + y: 64.84, + x: -147.65, + country: `US`, + name: `Fairbanks` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.04, + y: 19.71, + x: -155.07, + country: `US`, + name: `Hilo` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.04, + y: 4.92, + x: -52.4, + country: `Fr Guiana`, + name: `Cayenne` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.04, + y: -26.3, + x: 31.19, + country: `Swaziland`, + name: `Mbabne` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.04, + y: -16.85, + x: 145.71, + country: `Australia`, + name: `Cairns` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.03, + y: 3.64, + x: 8.82, + country: `Eq Guinea`, + name: `Malabo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.03, + y: 50.28, + x: -66.4, + country: `Canada`, + name: `Sept-Iles` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.03, + y: -41.3, + x: 173.27, + country: `New Zealand`, + name: `Nelson` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.03, + y: 16.76, + x: -3.01, + country: `Mali`, + name: `Tombouctoo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: 58.39, + x: -134.13, + country: `US`, + name: `Juneau` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: -23.1, + x: 14.62, + country: `Namibia`, + name: `Walvis Bay` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: 54.42, + x: -130.05, + country: `Canada`, + name: `Prince Rupert` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: 20.9, + x: -16.83, + country: `Mauritania`, + name: `Nouadnibou` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: 27.2, + x: 2.53, + country: `Algeria`, + name: `In Salah` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: -32.04, + x: 115.93, + country: `Australia`, + name: `Fremantle` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: 68.35, + x: 17.3, + country: `Norway`, + name: `Narvik` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 62.52, + x: -114.06, + country: `Canada`, + name: `Yellowknife` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.01, + y: 17.12, + x: -88.8, + country: `Belize`, + name: `Belmopan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 70.39, + x: 23.91, + country: `Norway`, + name: `Hammerfest` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.01, + y: 64.27, + x: -51.58, + country: `Greenland`, + name: `Godthab` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 60.65, + x: -135.01, + country: `Canada`, + name: `Whitehorse` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 59.33, + x: 143.25, + country: `Russia`, + name: `Okhotsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 52.05, + x: 113.58, + country: `Russia`, + name: `Chita` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 55.88, + x: 37.75, + country: `Russia`, + name: `Druzba` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 53.31, + x: -60.55, + country: `Canada`, + name: `Goose Bay` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.01, + y: 27.44, + x: 89.67, + country: `Bhutan`, + name: `Thimbu` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 78.2, + x: 15.66, + country: `Norway`, + name: `Xgyearbyen` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 30.14, + x: 9.82, + country: `Libya`, + name: `Ghadamis` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 71.7, + x: 128.75, + country: `Russia`, + name: `Tiksi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 77.67, + x: -69, + country: `Greenland`, + name: `Thule` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 22.83, + x: 5.55, + country: `Algeria`, + name: `Tamanrasset` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 60.12, + x: -149.45, + country: `US`, + name: `Seward` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 70.53, + x: -23, + country: `Greenland`, + name: `Scoresbyund` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 66.57, + x: 66.58, + country: `Russia`, + name: `Salekhard` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 64.59, + x: -165.27, + country: `US`, + name: `Nome` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 68.27, + x: -133.67, + country: `Canada`, + name: `Inuvik` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 67.35, + x: 86.55, + country: `Russia`, + name: `Igarka` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 69.38, + x: -53.63, + country: `Greenland`, + name: `Godhavn` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 58.71, + x: -94.18, + country: `Canada`, + name: `Churchill` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 2.75, + x: -60.5, + country: `Brazil`, + name: `Boa Vista` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: -15.75, + x: 133.22, + country: `Australia`, + name: `Birdum` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 65.67, + x: -37.31, + country: `Greenland`, + name: `Angmagssalik` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 64.4, + x: 177.13, + country: `Russia`, + name: `Anadyr` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 47.81, + x: 97, + country: `Mongolia`, + name: `Uliastay` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: -15.05, + x: 40.7, + country: `Mozambique`, + name: `Mocambique` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: -51.71, + x: -69.41, + country: `Argentina`, + name: `Rio Gallegos` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 27.7, + x: -8.16, + country: `Algeria`, + name: `Tindouf` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 25.91, + x: 13.91, + country: `Libya`, + name: `Murzuq` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 21.76, + x: 31.28, + country: `Sudan`, + name: `Wadi Halfa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: -23.63, + x: 133.93, + country: `Australia`, + name: `Alice Springs` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 46.96, + x: 142.75, + country: `Russia`, + name: `Yuzhno-Sakhalinsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 50.08, + x: 45.53, + country: `Russia`, + name: `Nikolayevsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 67.58, + x: 133.41, + country: `Russia`, + name: `Verkhoyansk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 54.86, + x: -67.01, + country: `Canada`, + name: `Schefferville` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 51.33, + x: -80.73, + country: `Canada`, + name: `Moosonee` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/dashboard-tile/map-dashboard/src/app.component.html b/samples/charts/dashboard-tile/map-dashboard/src/app.component.html new file mode 100644 index 000000000..55a970e18 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/app.component.html @@ -0,0 +1,10 @@ +
+
+ + +
+
diff --git a/samples/charts/dashboard-tile/map-dashboard/src/app.component.scss b/samples/charts/dashboard-tile/map-dashboard/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/dashboard-tile/map-dashboard/src/app.component.ts b/samples/charts/dashboard-tile/map-dashboard/src/app.component.ts new file mode 100644 index 000000000..05181a35e --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/app.component.ts @@ -0,0 +1,35 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { WorldCitiesItem, WorldCities } from './WorldCities'; +import { IgxDashboardTileComponent } from 'igniteui-angular-dashboards'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("dashboard", { static: true } ) + private dashboard: IgxDashboardTileComponent + private _worldCities: WorldCities = null; + public get worldCities(): WorldCities { + if (this._worldCities == null) + { + this._worldCities = new WorldCities(); + } + return this._worldCities; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/dashboard-tile/map-dashboard/src/app.module.ts b/samples/charts/dashboard-tile/map-dashboard/src/app.module.ts new file mode 100644 index 000000000..fc20a0109 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/app.module.ts @@ -0,0 +1,30 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDashboardTileModule, IgxDataChartDashboardTileModule, IgxGeographicMapDashboardTileModule, IgxLinearGaugeDashboardTileModule, IgxPieChartDashboardTileModule, IgxRadialGaugeDashboardTileModule } from 'igniteui-angular-dashboards'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDashboardTileModule, + IgxDataChartDashboardTileModule, + IgxGeographicMapDashboardTileModule, + IgxLinearGaugeDashboardTileModule, + IgxPieChartDashboardTileModule, + IgxRadialGaugeDashboardTileModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/dashboard-tile/map-dashboard/src/environments/environment.prod.ts b/samples/charts/dashboard-tile/map-dashboard/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/dashboard-tile/map-dashboard/src/environments/environment.ts b/samples/charts/dashboard-tile/map-dashboard/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/dashboard-tile/map-dashboard/src/index.html b/samples/charts/dashboard-tile/map-dashboard/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/dashboard-tile/map-dashboard/src/main.ts b/samples/charts/dashboard-tile/map-dashboard/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/dashboard-tile/map-dashboard/src/polyfills.ts b/samples/charts/dashboard-tile/map-dashboard/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/dashboard-tile/map-dashboard/src/styles.scss b/samples/charts/dashboard-tile/map-dashboard/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/dashboard-tile/map-dashboard/src/typings.d.ts b/samples/charts/dashboard-tile/map-dashboard/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/dashboard-tile/map-dashboard/tsconfig.app.json b/samples/charts/dashboard-tile/map-dashboard/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/dashboard-tile/map-dashboard/tsconfig.json b/samples/charts/dashboard-tile/map-dashboard/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/map-dashboard/tslint.json b/samples/charts/dashboard-tile/map-dashboard/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/dashboard-tile/pie-dashboard/.codesandbox/Dockerfile b/samples/charts/dashboard-tile/pie-dashboard/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/dashboard-tile/pie-dashboard/.codesandbox/tasks.json b/samples/charts/dashboard-tile/pie-dashboard/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/pie-dashboard/.stackblitzrc b/samples/charts/dashboard-tile/pie-dashboard/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/pie-dashboard/angular.json b/samples/charts/dashboard-tile/pie-dashboard/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json new file mode 100644 index 000000000..475e20a80 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -0,0 +1,43 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-dashboards": "18.2.0-beta.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.5.4" + } +} diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/EnergyGlobalDemand.ts b/samples/charts/dashboard-tile/pie-dashboard/src/EnergyGlobalDemand.ts new file mode 100644 index 000000000..3d2ed388a --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/app.component.html b/samples/charts/dashboard-tile/pie-dashboard/src/app.component.html new file mode 100644 index 000000000..2a156932c --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/app.component.html @@ -0,0 +1,9 @@ +
+
+ + +
+
diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/app.component.scss b/samples/charts/dashboard-tile/pie-dashboard/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/app.component.ts b/samples/charts/dashboard-tile/pie-dashboard/src/app.component.ts new file mode 100644 index 000000000..0c7223220 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/app.component.ts @@ -0,0 +1,35 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { IgxDashboardTileComponent } from 'igniteui-angular-dashboards'; + +@Component({ + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("dashboard", { static: true } ) + private dashboard: IgxDashboardTileComponent + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/app.module.ts b/samples/charts/dashboard-tile/pie-dashboard/src/app.module.ts new file mode 100644 index 000000000..fc20a0109 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/app.module.ts @@ -0,0 +1,30 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDashboardTileModule, IgxDataChartDashboardTileModule, IgxGeographicMapDashboardTileModule, IgxLinearGaugeDashboardTileModule, IgxPieChartDashboardTileModule, IgxRadialGaugeDashboardTileModule } from 'igniteui-angular-dashboards'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDashboardTileModule, + IgxDataChartDashboardTileModule, + IgxGeographicMapDashboardTileModule, + IgxLinearGaugeDashboardTileModule, + IgxPieChartDashboardTileModule, + IgxRadialGaugeDashboardTileModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/environments/environment.prod.ts b/samples/charts/dashboard-tile/pie-dashboard/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/environments/environment.ts b/samples/charts/dashboard-tile/pie-dashboard/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/index.html b/samples/charts/dashboard-tile/pie-dashboard/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/main.ts b/samples/charts/dashboard-tile/pie-dashboard/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/polyfills.ts b/samples/charts/dashboard-tile/pie-dashboard/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/styles.scss b/samples/charts/dashboard-tile/pie-dashboard/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/typings.d.ts b/samples/charts/dashboard-tile/pie-dashboard/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/dashboard-tile/pie-dashboard/tsconfig.app.json b/samples/charts/dashboard-tile/pie-dashboard/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/dashboard-tile/pie-dashboard/tsconfig.json b/samples/charts/dashboard-tile/pie-dashboard/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/pie-dashboard/tslint.json b/samples/charts/dashboard-tile/pie-dashboard/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index 36710857f..aa557375b 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index 36710857f..aa557375b 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index 36710857f..aa557375b 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index 36710857f..aa557375b 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index 7356096ea..430680387 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 7356096ea..430680387 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 7356096ea..430680387 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 7356096ea..430680387 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 7356096ea..430680387 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 7356096ea..430680387 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 7356096ea..430680387 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 7356096ea..430680387 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 7356096ea..430680387 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 7356096ea..430680387 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 7356096ea..430680387 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 7356096ea..430680387 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 7356096ea..430680387 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 7356096ea..430680387 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 7356096ea..430680387 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 7356096ea..430680387 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 7356096ea..430680387 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 7356096ea..430680387 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 36710857f..aa557375b 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 7356096ea..430680387 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 36710857f..aa557375b 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 36710857f..aa557375b 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json index 36710857f..aa557375b 100644 --- a/samples/charts/toolbar/color-editor-support/package.json +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 36710857f..aa557375b 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 36710857f..aa557375b 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 36710857f..aa557375b 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 7356096ea..430680387 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 411af6f90..ca3fe984b 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 7356096ea..430680387 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 7356096ea..430680387 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json index b70ed6af2..3cc8ac428 100644 --- a/samples/inputs/color-editor/overview/package.json +++ b/samples/inputs/color-editor/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-inputs": "18.2.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", From b2edf1625f88f89a17e2aada462340541ab41928 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 16 Dec 2024 11:25:42 -0500 Subject: [PATCH 109/154] Mdd update angular19 (#242) * mdd-revert and proper fix to tsconfig.base added ES2022.Iterable * mdd-update2 mdd-update2 * update update * mdd-updpate-with-standalone-false mdd-updpate-with-standalone * mdd-update-browser mdd-update-browser * mdd-update mdd-update * update update --- browser/angular.json | 16 ++--- browser/gulpfile-old.js | 2 + browser/gulpfile.js | 4 ++ browser/package.json | 26 +++++---- browser/package_move.bat | 4 ++ browser/scripts/browser.js | 25 ++++---- browser/scripts/utils.js | 4 ++ browser/src/app/app-routing.module.ts | 1 + browser/src/app/app.component.ts | 3 +- .../src/app/fallback/fallback.component.ts | 7 ++- browser/src/app/home/home.component.ts | 3 +- .../src/app/index/docs-layout.component.ts | 3 +- browser/src/app/index/index.component.ts | 5 +- browser/src/browser-info.json | 24 ++++---- browser/src/styles.scss | 2 +- browser/tsconfig.json | 4 +- package-lock.json | 6 ++ .../annotations-all/package.json | 8 +-- .../annotations-all/src/app.component.ts | 1 + .../annotations-callouts/package.json | 8 +-- .../annotations-callouts/src/app.component.ts | 1 + .../annotations-crosshairs/package.json | 8 +-- .../src/app.component.ts | 1 + .../annotations-custom/package.json | 8 +-- .../annotations-custom/src/app.component.ts | 1 + .../annotations-final-value/package.json | 8 +-- .../src/app.component.ts | 1 + .../annotations-highlighting/package.json | 8 +-- .../src/app.component.ts | 1 + .../category-chart/annotations/package.json | 4 +- .../annotations/src/app.component.ts | 1 + .../area-chart-multiple-sources/package.json | 4 +- .../src/app.component.ts | 1 + .../area-chart-single-source/package.json | 4 +- .../src/app.component.ts | 1 + .../area-chart-styling/package.json | 4 +- .../area-chart-styling/src/app.component.ts | 1 + .../category-chart/axis-gap/package.json | 8 +-- .../axis-gap/src/app.component.ts | 1 + .../axis-gridlines/package.json | 8 +-- .../axis-gridlines/src/app.component.ts | 1 + .../category-chart/axis-inverted/package.json | 8 +-- .../axis-inverted/src/app.component.ts | 1 + .../category-chart/axis-labels/package.json | 8 +-- .../axis-labels/src/app.component.ts | 1 + .../axis-locations/package.json | 8 +-- .../axis-locations/src/app.component.ts | 1 + .../category-chart/axis-options/package.json | 4 +- .../axis-options/src/app.component.ts | 1 + .../category-chart/axis-overlap/package.json | 8 +-- .../axis-overlap/src/app.component.ts | 1 + .../category-chart/axis-range/package.json | 8 +-- .../axis-range/src/app.component.ts | 1 + .../axis-tickmarks/package.json | 8 +-- .../axis-tickmarks/src/app.component.ts | 1 + .../category-chart/axis-titles/package.json | 4 +- .../axis-titles/src/app.component.ts | 1 + .../chart-highlight-filter/package.json | 8 +-- .../src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../column-chart-single-source/package.json | 4 +- .../src/app.component.ts | 1 + .../column-chart-styling/package.json | 4 +- .../column-chart-styling/src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../column-chart-with-tooltips/package.json | 8 +-- .../src/app.component.ts | 1 + .../custom-selection/package.json | 4 +- .../custom-selection/src/app.component.ts | 1 + .../data-aggregations/package.json | 8 +-- .../data-aggregations/src/app.component.ts | 1 + .../category-chart/data-filter/package.json | 8 +-- .../data-filter/src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../category-chart/data-legend/package.json | 4 +- .../data-legend/src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../data-tooltip-positioning/package.json | 8 +-- .../src/app.component.ts | 1 + .../category-chart/data-tooltip/package.json | 4 +- .../data-tooltip/src/app.component.ts | 1 + .../format-specifiers/package.json | 8 +-- .../format-specifiers/src/app.component.ts | 1 + .../high-frequency/package.json | 6 +- .../high-frequency/src/app.component.ts | 1 + .../category-chart/high-volume/package.json | 6 +- .../high-volume/src/app.component.ts | 1 + .../highlighting-behavior/package.json | 8 +-- .../src/app.component.ts | 1 + .../highlighting-mode/package.json | 8 +-- .../highlighting-mode/src/app.component.ts | 1 + .../category-chart/highlighting/package.json | 4 +- .../highlighting/src/app.component.ts | 1 + .../legend-highlighting/package.json | 4 +- .../legend-highlighting/src/app.component.ts | 1 + .../line-chart-multiple-sources/package.json | 4 +- .../src/app.component.ts | 1 + .../line-chart-single-source/package.json | 4 +- .../src/app.component.ts | 1 + .../line-chart-styling/package.json | 4 +- .../line-chart-styling/src/app.component.ts | 1 + .../line-chart-with-animations/package.json | 4 +- .../src/app.component.ts | 1 + .../line-chart-with-annotations/package.json | 4 +- .../src/app.component.ts | 1 + .../line-chart-with-legend/package.json | 4 +- .../src/app.component.ts | 1 + .../marker-options/package.json | 8 +-- .../marker-options/src/app.component.ts | 1 + .../marker-templates/package.json | 4 +- .../marker-templates/src/app.component.ts | 1 + .../category-chart/overview/package.json | 4 +- .../overview/src/app.component.ts | 1 + .../point-chart-multiple-sources/package.json | 4 +- .../src/app.component.ts | 1 + .../point-chart-single-source/package.json | 4 +- .../src/app.component.ts | 1 + .../point-chart-styling/package.json | 4 +- .../point-chart-styling/src/app.component.ts | 1 + .../selection-modes/package.json | 4 +- .../selection-modes/src/app.component.ts | 1 + .../selection-multiple-modes/package.json | 8 +-- .../src/app.component.ts | 1 + .../spline-area-multiple-sources/package.json | 4 +- .../src/app.component.ts | 1 + .../spline-area-single-source/package.json | 4 +- .../src/app.component.ts | 1 + .../spline-area-styling/package.json | 4 +- .../spline-area-styling/src/app.component.ts | 1 + .../spline-multiple-sources/package.json | 4 +- .../src/app.component.ts | 1 + .../spline-single-source/package.json | 4 +- .../spline-single-source/src/app.component.ts | 1 + .../spline-styling/package.json | 4 +- .../spline-styling/src/app.component.ts | 1 + .../category-chart/stack-columns/package.json | 4 +- .../stack-columns/src/app.component.ts | 1 + .../step-area-multiple-sources/package.json | 4 +- .../src/app.component.ts | 1 + .../step-area-single-source/package.json | 4 +- .../src/app.component.ts | 1 + .../step-area-styling/package.json | 4 +- .../step-area-styling/src/app.component.ts | 1 + .../step-line-multiple-sources/package.json | 4 +- .../src/app.component.ts | 1 + .../step-line-single-source/package.json | 4 +- .../src/app.component.ts | 1 + .../step-line-styling/package.json | 4 +- .../step-line-styling/src/app.component.ts | 1 + .../tooltip-template/package.json | 4 +- .../tooltip-template/src/app.component.ts | 1 + .../category-chart/tooltip-types/package.json | 4 +- .../tooltip-types/src/app.component.ts | 1 + .../category-chart/trendline/package.json | 4 +- .../trendline/src/app.component.ts | 1 + .../category-chart/value-lines/package.json | 8 +-- .../value-lines/src/app.component.ts | 1 + .../dashboard-tile/chart-dashboard/ReadMe.md | 58 +++++++++++++++++++ .../chart-dashboard/package.json | 4 +- .../chart-dashboard/src/app.component.ts | 1 + .../chart-dashboard/src/app.module.ts | 1 + .../dashboard-tile/gauge-dashboard/ReadMe.md | 58 +++++++++++++++++++ .../gauge-dashboard/package.json | 4 +- .../gauge-dashboard/src/app.component.ts | 1 + .../dashboard-tile/map-dashboard/ReadMe.md | 58 +++++++++++++++++++ .../dashboard-tile/map-dashboard/package.json | 4 +- .../map-dashboard/src/app.component.ts | 1 + .../dashboard-tile/pie-dashboard/ReadMe.md | 58 +++++++++++++++++++ .../dashboard-tile/pie-dashboard/package.json | 4 +- .../pie-dashboard/src/app.component.ts | 1 + .../annotations-custom/package.json | 4 +- .../annotations-custom/src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../data-chart/axis-annotations/package.json | 4 +- .../axis-annotations/src/app.component.ts | 1 + .../data-chart/axis-crossing/package.json | 4 +- .../axis-crossing/src/app.component.ts | 1 + .../axis-label-rotation/package.json | 8 +-- .../axis-label-rotation/src/app.component.ts | 1 + .../data-chart/axis-locations/package.json | 4 +- .../axis-locations/src/app.component.ts | 1 + .../data-chart/axis-min-max-gap/package.json | 4 +- .../axis-min-max-gap/src/app.component.ts | 1 + .../data-chart/axis-settings/package.json | 4 +- .../axis-settings/src/app.component.ts | 1 + .../data-chart/axis-sharing/package.json | 4 +- .../axis-sharing/src/app.component.ts | 1 + .../charts/data-chart/axis-types/package.json | 4 +- .../axis-types/src/app.component.ts | 1 + .../bar-chart-multiple-sources/package.json | 4 +- .../src/app.component.ts | 1 + .../bar-chart-overlapping/package.json | 4 +- .../src/app.component.ts | 1 + .../bar-chart-single-source/package.json | 4 +- .../src/app.component.ts | 1 + .../data-chart/bar-chart-styling/package.json | 4 +- .../bar-chart-styling/src/app.component.ts | 1 + .../callout-layer-styling/package.json | 4 +- .../src/app.component.ts | 1 + .../package.json | 8 +-- .../src/app.component.ts | 1 + .../package.json | 8 +-- .../src/app.component.ts | 1 + .../chart-highlight-filter/package.json | 8 +-- .../src/app.component.ts | 1 + .../data-chart/chart-navigation/package.json | 4 +- .../chart-navigation/src/app.component.ts | 1 + .../data-chart/chart-overview/package.json | 4 +- .../chart-overview/src/app.component.ts | 3 +- .../data-chart/chart-performance/package.json | 4 +- .../chart-performance/src/app.component.ts | 1 + .../chart-synchronization/package.json | 4 +- .../src/app.component.ts | 1 + .../data-chart/chart-titles/package.json | 4 +- .../chart-titles/src/app.component.ts | 1 + .../column-chart-styling/package.json | 4 +- .../column-chart-styling/src/app.component.ts | 1 + .../data-chart/composite-chart/package.json | 4 +- .../composite-chart/src/app.component.ts | 1 + .../crosshair-layer-styling/package.json | 4 +- .../src/app.component.ts | 1 + .../custom-drawing-annotations/package.json | 8 +-- .../src/app.component.ts | 1 + .../custom-editing-data/package.json | 4 +- .../custom-editing-data/src/app.component.ts | 1 + .../data-chart/dash-array-axes/package.json | 4 +- .../dash-array-axes/src/app.component.ts | 1 + .../data-chart/dash-array-series/package.json | 4 +- .../dash-array-series/src/app.component.ts | 1 + .../dash-array-tickmarks/package.json | 4 +- .../dash-array-tickmarks/src/app.component.ts | 1 + .../dash-array-trendline/package.json | 4 +- .../dash-array-trendline/src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../data-legend-grouping/package.json | 4 +- .../data-legend-grouping/src/app.component.ts | 1 + .../data-legend-styling/package.json | 4 +- .../data-legend-styling/src/app.component.ts | 1 + .../data-chart/data-legend/package.json | 4 +- .../data-legend/src/app.component.ts | 1 + .../package.json | 8 +-- .../src/app.component.ts | 1 + .../data-tooltip-grouping/package.json | 8 +-- .../src/app.component.ts | 1 + .../data-tooltip-styling/package.json | 8 +-- .../data-tooltip-styling/src/app.component.ts | 1 + .../data-chart/data-tooltip/package.json | 4 +- .../data-tooltip/src/app.component.ts | 1 + .../final-value-layer-styling/package.json | 4 +- .../src/app.component.ts | 1 + .../financial-price-series/package.json | 4 +- .../src/app.component.ts | 1 + .../data-chart/format-specifiers/package.json | 4 +- .../format-specifiers/src/app.component.ts | 1 + .../charts/data-chart/legends/package.json | 4 +- .../data-chart/legends/src/app.component.ts | 1 + .../polar-area-chart-styling/package.json | 4 +- .../src/app.component.ts | 1 + .../data-chart/polar-area-chart/package.json | 4 +- .../polar-area-chart/src/app.component.ts | 1 + .../data-chart/polar-chart-types/package.json | 4 +- .../polar-chart-types/src/app.component.ts | 1 + .../data-chart/polar-line-chart/package.json | 4 +- .../polar-line-chart/src/app.component.ts | 1 + .../polar-scatter-chart/package.json | 4 +- .../polar-scatter-chart/src/app.component.ts | 1 + .../polar-spline-area-chart/package.json | 4 +- .../src/app.component.ts | 1 + .../polar-spline-chart/package.json | 4 +- .../polar-spline-chart/src/app.component.ts | 1 + .../radial-area-chart-styling/package.json | 4 +- .../src/app.component.ts | 1 + .../data-chart/radial-area-chart/package.json | 4 +- .../radial-area-chart/src/app.component.ts | 1 + .../radial-chart-types/package.json | 4 +- .../radial-chart-types/src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../radial-column-chart/package.json | 4 +- .../radial-column-chart/src/app.component.ts | 1 + .../data-chart/radial-label-mode/package.json | 8 +-- .../radial-label-mode/src/app.component.ts | 1 + .../data-chart/radial-line-chart/package.json | 4 +- .../radial-line-chart/src/app.component.ts | 1 + .../data-chart/radial-pie-chart/package.json | 4 +- .../radial-pie-chart/src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../data-chart/range-area-chart/package.json | 4 +- .../range-area-chart/src/app.component.ts | 1 + .../range-column-chart/package.json | 4 +- .../range-column-chart/src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../scatter-bubble-chart-styling/package.json | 4 +- .../src/app.component.ts | 1 + .../scatter-line-chart/package.json | 4 +- .../scatter-line-chart/src/app.component.ts | 1 + .../scatter-point-chart/package.json | 4 +- .../scatter-point-chart/src/app.component.ts | 1 + .../scatter-spline-chart/package.json | 4 +- .../scatter-spline-chart/src/app.component.ts | 1 + .../data-chart/series-animations/package.json | 4 +- .../series-animations/src/app.component.ts | 1 + .../series-annotations/package.json | 4 +- .../series-annotations/src/app.component.ts | 1 + .../series-highlighting/package.json | 4 +- .../series-highlighting/src/app.component.ts | 1 + .../series-marker-template/package.json | 4 +- .../src/app.component.ts | 1 + .../data-chart/series-markers/package.json | 4 +- .../series-markers/src/app.component.ts | 1 + .../data-chart/series-tooltips/package.json | 4 +- .../series-tooltips/src/app.component.ts | 1 + .../data-chart/series-trendlines/package.json | 4 +- .../series-trendlines/src/app.component.ts | 1 + .../series-value-overlay/package.json | 4 +- .../series-value-overlay/src/app.component.ts | 1 + .../stacked-100-area-chart/package.json | 4 +- .../src/app.component.ts | 1 + .../stacked-100-bar-chart/package.json | 4 +- .../src/app.component.ts | 1 + .../stacked-100-column-chart/package.json | 4 +- .../src/app.component.ts | 1 + .../stacked-100-line-chart/package.json | 4 +- .../src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../stacked-100-spline-chart/package.json | 4 +- .../src/app.component.ts | 1 + .../stacked-area-chart/package.json | 4 +- .../stacked-area-chart/src/app.component.ts | 1 + .../data-chart/stacked-bar-chart/package.json | 4 +- .../stacked-bar-chart/src/app.component.ts | 1 + .../stacked-chart-types/package.json | 4 +- .../stacked-chart-types/src/app.component.ts | 1 + .../stacked-column-chart/package.json | 4 +- .../stacked-column-chart/src/app.component.ts | 1 + .../stacked-line-chart/package.json | 4 +- .../stacked-line-chart/src/app.component.ts | 1 + .../stacked-spline-area-chart/package.json | 4 +- .../src/app.component.ts | 1 + .../stacked-spline-chart/package.json | 4 +- .../stacked-spline-chart/src/app.component.ts | 1 + .../data-chart/tooltip-template/package.json | 4 +- .../tooltip-template/src/app.component.ts | 1 + .../data-chart/transition-event/package.json | 8 +-- .../transition-event/src/app.component.ts | 1 + .../type-category-area-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-category-bar-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-category-column-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-category-line-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-category-point-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-category-series/package.json | 4 +- .../type-category-series/src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../type-category-spline-series/package.json | 4 +- .../src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../type-financial-ohlc-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-financial-overlays/package.json | 4 +- .../src/app.component.ts | 1 + .../type-financial-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-radial-area-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-radial-column-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-radial-line-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-radial-pie-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-range-area-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-range-column-series/package.json | 4 +- .../src/app.component.ts | 1 + .../data-chart/type-range-series/package.json | 4 +- .../type-range-series/src/app.component.ts | 1 + .../type-scatter-area-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-scatter-bubble-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-scatter-contour-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-scatter-hd-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-scatter-line-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-scatter-point-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-scatter-polygon-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-scatter-polyline-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-scatter-series/package.json | 4 +- .../type-scatter-series/src/app.component.ts | 1 + .../type-scatter-spline-series/package.json | 4 +- .../src/app.component.ts | 1 + .../data-chart/type-shape-series/package.json | 4 +- .../type-shape-series/src/app.component.ts | 1 + .../type-stacked-100-area-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-stacked-100-bar-series/package.json | 4 +- .../src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../type-stacked-100-line-series/package.json | 4 +- .../src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../type-stacked-area-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-stacked-bar-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-stacked-column-series/package.json | 4 +- .../src/app.component.ts | 1 + .../type-stacked-line-series/package.json | 4 +- .../src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../type-stacked-spline-series/package.json | 4 +- .../src/app.component.ts | 1 + .../data-chart/waterfall-chart/package.json | 4 +- .../waterfall-chart/src/app.component.ts | 1 + .../data-pie-chart/animation/package.json | 8 +-- .../animation/src/app.component.ts | 1 + .../highlight-filter/package.json | 4 +- .../highlight-filter/src/app.component.ts | 1 + .../data-pie-chart/highlighting/package.json | 8 +-- .../highlighting/src/app.component.ts | 1 + .../charts/data-pie-chart/legend/package.json | 8 +-- .../legend/src/app.component.ts | 1 + .../charts/data-pie-chart/others/package.json | 8 +-- .../others/src/app.component.ts | 1 + .../data-pie-chart/overview/package.json | 4 +- .../overview/src/app.component.ts | 1 + .../data-pie-chart/selection/package.json | 8 +-- .../selection/src/app.component.ts | 1 + .../doughnut-chart/animation/package.json | 4 +- .../animation/src/app.component.ts | 1 + .../doughnut-chart/explosion/package.json | 4 +- .../explosion/src/app.component.ts | 1 + .../charts/doughnut-chart/legend/package.json | 4 +- .../legend/src/app.component.ts | 1 + .../doughnut-chart/overview/package.json | 4 +- .../overview/src/app.component.ts | 1 + .../charts/doughnut-chart/rings/package.json | 4 +- .../doughnut-chart/rings/src/app.component.ts | 1 + .../doughnut-chart/selection/package.json | 4 +- .../selection/src/app.component.ts | 1 + .../financial-chart/annotations/package.json | 4 +- .../annotations/src/app.component.ts | 1 + .../financial-chart/axis-types/package.json | 4 +- .../axis-types/src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../data-legend-styling-props/package.json | 4 +- .../src/app.component.ts | 1 + .../financial-chart/data-legend/package.json | 4 +- .../data-legend/src/app.component.ts | 1 + .../package.json | 4 +- .../src/app.component.ts | 1 + .../data-tooltip-styling-props/package.json | 4 +- .../src/app.component.ts | 1 + .../financial-chart/data-tooltip/package.json | 4 +- .../data-tooltip/src/app.component.ts | 1 + .../format-specifiers/package.json | 4 +- .../format-specifiers/src/app.component.ts | 1 + .../high-frequency/package.json | 4 +- .../high-frequency/src/app.component.ts | 1 + .../financial-chart/high-volume/package.json | 4 +- .../high-volume/src/app.component.ts | 1 + .../indicator-customization/package.json | 4 +- .../src/app.component.ts | 1 + .../indicator-types/package.json | 4 +- .../indicator-types/src/app.component.ts | 1 + .../multiple-data/package.json | 4 +- .../multiple-data/src/app.component.ts | 1 + .../multiple-feeds/package.json | 4 +- .../multiple-feeds/src/app.component.ts | 1 + .../financial-chart/overview/package.json | 4 +- .../overview/src/app.component.ts | 1 + .../charts/financial-chart/panes/package.json | 4 +- .../panes/src/app.component.ts | 1 + .../financial-chart/performance/package.json | 4 +- .../performance/src/app.component.ts | 1 + .../financial-chart/scrollbars/package.json | 4 +- .../scrollbars/src/app.component.ts | 1 + .../stock-index-chart/package.json | 4 +- .../stock-index-chart/src/app.component.ts | 1 + .../financial-chart/styling/package.json | 4 +- .../styling/src/app.component.ts | 1 + .../financial-chart/theming/package.json | 4 +- .../theming/src/app.component.ts | 1 + .../time-based-data/package.json | 4 +- .../time-based-data/src/app.component.ts | 1 + .../financial-chart/titles/package.json | 4 +- .../titles/src/app.component.ts | 1 + .../tooltip-template/package.json | 4 +- .../tooltip-template/src/app.component.ts | 1 + .../tooltip-types/package.json | 4 +- .../tooltip-types/src/app.component.ts | 1 + .../financial-chart/trendlines/package.json | 4 +- .../trendlines/src/app.component.ts | 1 + .../financial-chart/volume-types/package.json | 4 +- .../volume-types/src/app.component.ts | 1 + .../charts/pie-chart/animation/package.json | 4 +- .../pie-chart/animation/src/app.component.ts | 1 + .../charts/pie-chart/explosion/package.json | 4 +- .../pie-chart/explosion/src/app.component.ts | 1 + samples/charts/pie-chart/legend/package.json | 4 +- .../pie-chart/legend/src/app.component.ts | 1 + samples/charts/pie-chart/others/package.json | 4 +- .../pie-chart/others/src/app.component.ts | 1 + .../charts/pie-chart/overview/package.json | 4 +- .../pie-chart/overview/src/app.component.ts | 1 + .../charts/pie-chart/selection/package.json | 4 +- .../pie-chart/selection/src/app.component.ts | 1 + samples/charts/pie-chart/styling/package.json | 4 +- .../pie-chart/styling/src/app.component.ts | 1 + .../sparkline/display-area/package.json | 4 +- .../display-area/src/app.component.ts | 1 + .../sparkline/display-column/package.json | 4 +- .../display-column/src/app.component.ts | 1 + .../sparkline/display-lines/package.json | 8 +-- .../display-lines/src/app.component.ts | 1 + .../sparkline/display-types/package.json | 4 +- .../display-types/src/app.component.ts | 1 + .../sparkline/display-winloss/package.json | 4 +- .../display-winloss/src/app.component.ts | 1 + samples/charts/sparkline/grid/package.json | 6 +- .../sparkline/grid/src/app.component.ts | 1 + samples/charts/sparkline/markers/package.json | 8 +-- .../sparkline/markers/src/app.component.ts | 1 + .../sparkline/normal-range/package.json | 8 +-- .../normal-range/src/app.component.ts | 1 + .../charts/sparkline/trendlines/package.json | 8 +-- .../sparkline/trendlines/src/app.component.ts | 1 + .../sparkline/unknown-values/package.json | 8 +-- .../unknown-values/src/app.component.ts | 1 + .../package.json | 8 +-- .../src/app.component.ts | 1 + .../actions-built-in-data-chart/package.json | 8 +-- .../src/app.component.ts | 1 + .../toolbar/color-editor-support/ReadMe.md | 58 +++++++++++++++++++ .../toolbar/color-editor-support/package.json | 8 +-- .../color-editor-support/src/app.component.ts | 1 + .../charts/toolbar/custom-tool/package.json | 8 +-- .../toolbar/custom-tool/src/app.component.ts | 1 + .../package.json | 8 +-- .../src/app.component.ts | 1 + .../package.json | 8 +-- .../src/app.component.ts | 1 + samples/charts/toolbar/theming/package.json | 8 +-- .../toolbar/theming/src/app.component.ts | 1 + samples/charts/tree-map/events/package.json | 6 +- .../tree-map/events/src/app.component.ts | 1 + .../highlighting-percent-based/package.json | 4 +- .../src/app.component.ts | 1 + .../charts/tree-map/highlighting/package.json | 8 +-- .../highlighting/src/app.component.ts | 1 + samples/charts/tree-map/layout/package.json | 8 +-- .../tree-map/layout/src/app.component.ts | 1 + samples/charts/tree-map/overview/package.json | 4 +- .../tree-map/overview/src/app.component.ts | 1 + samples/charts/tree-map/styling/package.json | 4 +- .../tree-map/styling/src/app.component.ts | 1 + .../charts/zoomslider/overview/package.json | 4 +- .../zoomslider/overview/src/app.component.ts | 1 + .../operations-on-workbooks/package.json | 6 +- .../src/app.component.ts | 1 + .../operations-on-worksheets/package.json | 4 +- .../src/app.component.ts | 1 + .../excel/excel-library/overview/package.json | 4 +- .../overview/src/app.component.ts | 1 + .../working-with-cells/package.json | 4 +- .../working-with-cells/src/app.component.ts | 1 + .../working-with-charts/package.json | 8 +-- .../working-with-charts/src/app.component.ts | 1 + .../working-with-sparklines/package.json | 8 +-- .../src/app.component.ts | 1 + .../working-with-tables/package.json | 8 +-- .../working-with-tables/src/app.component.ts | 1 + .../excel/spreadsheet/activation/package.json | 6 +- .../activation/src/app.component.ts | 1 + .../spreadsheet/adapter-chart/package.json | 10 ++-- .../adapter-chart/src/app.component.ts | 1 + .../spreadsheet/adapter-combo/package.json | 10 ++-- .../adapter-combo/src/app.component.ts | 1 + .../excel/spreadsheet/clipboard/package.json | 6 +- .../clipboard/src/app.component.ts | 1 + .../excel/spreadsheet/commands/package.json | 6 +- .../spreadsheet/commands/src/app.component.ts | 1 + .../conditional-formatting/package.json | 6 +- .../src/app.component.ts | 1 + .../spreadsheet/config-options/package.json | 6 +- .../config-options/src/app.component.ts | 1 + .../spreadsheet/data-validation/package.json | 6 +- .../data-validation/src/app.component.ts | 1 + .../excel/spreadsheet/hyperlinks/package.json | 6 +- .../hyperlinks/src/app.component.ts | 1 + .../excel/spreadsheet/overview/package.json | 6 +- .../spreadsheet/overview/src/app.component.ts | 1 + .../bullet-graph/animation/package.json | 6 +- .../animation/src/app.component.ts | 1 + .../bullet-graph/background/package.json | 4 +- .../background/src/app.component.ts | 1 + .../highlight-needle/package.json | 4 +- .../highlight-needle/src/app.component.ts | 1 + .../gauges/bullet-graph/labels/package.json | 4 +- .../bullet-graph/labels/src/app.component.ts | 1 + .../gauges/bullet-graph/measures/package.json | 4 +- .../measures/src/app.component.ts | 1 + .../gauges/bullet-graph/ranges/package.json | 4 +- .../bullet-graph/ranges/src/app.component.ts | 1 + .../gauges/bullet-graph/scale/package.json | 4 +- .../bullet-graph/scale/src/app.component.ts | 1 + .../bullet-graph/tickmarks/package.json | 4 +- .../tickmarks/src/app.component.ts | 1 + .../linear-gauge/animation/package.json | 6 +- .../animation/src/app.component.ts | 1 + .../gauges/linear-gauge/backing/package.json | 4 +- .../linear-gauge/backing/src/app.component.ts | 1 + .../highlight-needle/package.json | 4 +- .../highlight-needle/src/app.component.ts | 1 + .../gauges/linear-gauge/labels/package.json | 4 +- .../linear-gauge/labels/src/app.component.ts | 1 + .../gauges/linear-gauge/needle/package.json | 4 +- .../linear-gauge/needle/src/app.component.ts | 1 + .../gauges/linear-gauge/ranges/package.json | 4 +- .../linear-gauge/ranges/src/app.component.ts | 1 + .../gauges/linear-gauge/scale/package.json | 4 +- .../linear-gauge/scale/src/app.component.ts | 1 + .../linear-gauge/tickmarks/package.json | 4 +- .../tickmarks/src/app.component.ts | 1 + .../radial-gauge/animation/package.json | 6 +- .../animation/src/app.component.ts | 1 + .../gauges/radial-gauge/backing/package.json | 4 +- .../radial-gauge/backing/src/app.component.ts | 1 + .../highlight-needle/package.json | 4 +- .../highlight-needle/src/app.component.ts | 1 + .../gauges/radial-gauge/labels/package.json | 4 +- .../radial-gauge/labels/src/app.component.ts | 1 + .../gauges/radial-gauge/needle/package.json | 4 +- .../radial-gauge/needle/src/app.component.ts | 1 + .../radial-gauge/optical-scaling/package.json | 4 +- .../optical-scaling/src/app.component.ts | 1 + .../optical-scaling/src/app/app.component.ts | 1 + .../gauges/radial-gauge/ranges/package.json | 4 +- .../radial-gauge/ranges/src/app.component.ts | 1 + .../gauges/radial-gauge/scale/package.json | 4 +- .../radial-gauge/scale/src/app.component.ts | 1 + .../radial-gauge/tickmarks/package.json | 4 +- .../tickmarks/src/app.component.ts | 1 + .../inputs/color-editor/overview/ReadMe.md | 58 +++++++++++++++++++ .../inputs/color-editor/overview/package.json | 4 +- .../overview/src/app.component.ts | 3 +- .../geo-map/binding-data-csv/package.json | 6 +- .../binding-data-csv/src/app.component.ts | 1 + .../binding-data-json-points/package.json | 6 +- .../src/app.component.ts | 1 + .../geo-map/binding-data-model/package.json | 6 +- .../binding-data-model/src/app.component.ts | 1 + .../binding-multiple-shapes/package.json | 6 +- .../src/app.component.ts | 1 + .../binding-multiple-sources/package.json | 6 +- .../src/app.component.ts | 1 + .../geo-map/binding-shp-points/package.json | 6 +- .../binding-shp-points/src/app.component.ts | 1 + .../geo-map/binding-shp-polygons/package.json | 6 +- .../binding-shp-polygons/src/app.component.ts | 1 + .../binding-shp-polylines/package.json | 6 +- .../src/app.component.ts | 1 + .../maps/geo-map/custom-tooltips/package.json | 6 +- .../custom-tooltips/src/app.component.ts | 1 + .../geo-map/display-bing-imagery/package.json | 6 +- .../display-bing-imagery/src/app.component.ts | 1 + .../geo-map/display-esri-imagery/package.json | 6 +- .../display-esri-imagery/src/app.component.ts | 1 + .../geo-map/display-heat-imagery/package.json | 6 +- .../display-heat-imagery/src/app.component.ts | 1 + .../geo-map/display-osm-imagery/package.json | 6 +- .../display-osm-imagery/src/app.component.ts | 1 + .../maps/geo-map/marker-layouts/package.json | 6 +- .../marker-layouts/src/app.component.ts | 1 + .../maps/geo-map/marker-template/package.json | 6 +- .../marker-template/src/app.component.ts | 1 + samples/maps/geo-map/marker-type/package.json | 6 +- .../geo-map/marker-type/src/app.component.ts | 1 + samples/maps/geo-map/navigation/package.json | 6 +- .../geo-map/navigation/src/app.component.ts | 1 + samples/maps/geo-map/overview/package.json | 6 +- .../geo-map/overview/src/app.component.ts | 1 + .../maps/geo-map/shape-styling/package.json | 6 +- .../shape-styling/src/app.component.ts | 1 + .../geo-map/triangulating-data/package.json | 6 +- .../triangulating-data/src/app.component.ts | 1 + .../type-scatter-area-series/package.json | 6 +- .../src/app.component.ts | 1 + .../type-scatter-bubble-series/package.json | 6 +- .../src/app.component.ts | 1 + .../type-scatter-contour-series/package.json | 6 +- .../src/app.component.ts | 1 + .../type-scatter-density-series/package.json | 6 +- .../src/app.component.ts | 1 + .../type-scatter-symbol-series/package.json | 6 +- .../src/app.component.ts | 1 + .../type-shape-polygon-series/package.json | 6 +- .../src/app.component.ts | 1 + .../type-shape-polyline-series/package.json | 6 +- .../src/app.component.ts | 1 + 745 files changed, 1681 insertions(+), 938 deletions(-) create mode 100644 package-lock.json create mode 100644 samples/charts/dashboard-tile/chart-dashboard/ReadMe.md create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/ReadMe.md create mode 100644 samples/charts/dashboard-tile/map-dashboard/ReadMe.md create mode 100644 samples/charts/dashboard-tile/pie-dashboard/ReadMe.md create mode 100644 samples/charts/toolbar/color-editor-support/ReadMe.md create mode 100644 samples/inputs/color-editor/overview/ReadMe.md diff --git a/browser/angular.json b/browser/angular.json index 176c654db..d81ccbeb9 100644 --- a/browser/angular.json +++ b/browser/angular.json @@ -10,12 +10,14 @@ "prefix": "app", "architect": { "build": { - "builder": "@angular-devkit/build-angular:browser", + "builder": "@angular-devkit/build-angular:application", "options": { + "aot": true, "progress": true, - "outputPath": "dist", + "outputPath": { + "base": "dist" + }, "index": "src/index.html", - "main": "src/main.ts", "tsConfig": "src/tsconfig.app.json", "polyfills": [ "zone.js", @@ -34,14 +36,14 @@ }, "webWorkerTsConfig": "tsconfig.worker.json", "sourceMap": false, - "vendorChunk": true, "extractLicenses": false, - "buildOptimizer": false, "optimization": false, - "namedChunks": true + "namedChunks": true, + "browser": "src/main.ts" }, "configurations": { "production": { + "aot": true, "budgets": [ { "type": "anyComponentStyle", @@ -53,8 +55,6 @@ "sourceMap": false, "namedChunks": false, "extractLicenses": true, - "vendorChunk": false, - "buildOptimizer": true, "fileReplacements": [ { "replace": "src/environments/environment.ts", diff --git a/browser/gulpfile-old.js b/browser/gulpfile-old.js index e07cce3d2..51cd1b655 100644 --- a/browser/gulpfile-old.js +++ b/browser/gulpfile-old.js @@ -144,6 +144,8 @@ function logSamples(done) { gulp.task("overwrite-package-json", (done) => { const packagesPaths = [ "./node_modules/igniteui-angular-charts/package.json", + "./node_modules/igniteui-angular-grids/package.json", + "./node_modules/igniteui-angular-dashboards/package.json", "./node_modules/igniteui-angular-core/package.json", "./node_modules/igniteui-angular-excel/package.json", "./node_modules/igniteui-angular-gauges/package.json", diff --git a/browser/gulpfile.js b/browser/gulpfile.js index 50cbb0191..69292cdf0 100644 --- a/browser/gulpfile.js +++ b/browser/gulpfile.js @@ -54,7 +54,11 @@ gulp.task('moveAppFiles', browser.moveAppFiles); gulp.task("overwrite-package-json", (done) => { const packagesPaths = [ "./node_modules/igniteui-angular-charts/package.json", + "./node_modules/igniteui-angular-grids/package.json", + "./node_modules/igniteui-angular-dashboards/package.json", "./node_modules/igniteui-angular-core/package.json", + "./node_modules/igniteui-angular-inputs/package.json", + "./node_modules/igniteui-angular-layouts/package.json", "./node_modules/igniteui-angular-excel/package.json", "./node_modules/igniteui-angular-gauges/package.json", "./node_modules/igniteui-angular-spreadsheet/package.json", diff --git a/browser/package.json b/browser/package.json index ecaf29966..17c63c98b 100644 --- a/browser/package.json +++ b/browser/package.json @@ -28,7 +28,7 @@ "@angular/forms": "18.2.1", "@angular/platform-browser": "18.2.1", "@angular/platform-browser-dynamic": "18.2.1", - "@angular/router": "18.0.2", + "@angular/router": "19.1.0-next.1", "@ionic/angular": "5.6.3", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", @@ -38,18 +38,20 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "18.1.7", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", - "igniteui-angular-gauges": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", - "igniteui-angular-maps": "18.1.0", - "igniteui-angular-spreadsheet": "18.1.0", - "igniteui-angular-spreadsheet-chart-adapter": "18.1.0", + "igniteui-angular": "19.0.2", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-dashboards": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-grids": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-spreadsheet": "18.2.0-beta.1", + "igniteui-angular-spreadsheet-chart-adapter": "18.2.0-beta.1", "igniteui-theming": "11.0.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "immediate": "3.2.3", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/browser/package_move.bat b/browser/package_move.bat index b4411ef97..bc61e7e0b 100644 --- a/browser/package_move.bat +++ b/browser/package_move.bat @@ -6,6 +6,10 @@ IF EXIST @infragistics\igniteui-angular-charts ( MOVE /y @infragistics\igniteui-angular-charts igniteui-angular-charts ) +IF EXIST @infragistics\igniteui-angular-dashboards ( + MOVE /y @infragistics\igniteui-angular-dashboards igniteui-angular-dashboards +) + IF EXIST @infragistics\igniteui-angular-core ( MOVE /y @infragistics\igniteui-angular-core igniteui-angular-core ) diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index e38e997fd..1d6b2ef3c 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1073,20 +1073,21 @@ function updateIG(cb) { // { version: "14.1.0", name: "igniteui-angular-charts" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { version: "18.1.0", name: "igniteui-angular-core" }, - { version: "18.1.0", name: "igniteui-angular-charts" }, - { version: "18.1.0", name: "igniteui-angular-excel" }, - { version: "18.1.0", name: "igniteui-angular-gauges" }, - { version: "18.1.0", name: "igniteui-angular-inputs" }, - { version: "18.1.0", name: "igniteui-angular-layouts" }, - { version: "18.1.0", name: "igniteui-angular-maps" }, - { version: "18.1.0", name: "igniteui-angular-spreadsheet-chart-adapter" }, - { version: "18.1.0", name: "igniteui-angular-spreadsheet" }, - { version: "18.1.0", name: "igniteui-angular-datasources" }, + { version: "18.2.0-beta.1", name: "igniteui-angular-core" }, + { version: "18.2.0-beta.1", name: "igniteui-angular-charts" }, + { version: "18.2.0-beta.1", name: "igniteui-angular-excel" }, + { version: "18.2.0-beta.1", name: "igniteui-angular-gauges" }, + { version: "18.2.0-beta.1", name: "igniteui-angular-inputs" }, + { version: "18.2.0-beta.1", name: "igniteui-angular-layouts" }, + { version: "18.2.0-beta.1", name: "igniteui-angular-maps" }, + { version: "18.2.0-beta.1", name: "igniteui-angular-spreadsheet-chart-adapter" }, + { version: "18.2.0-beta.1", name: "igniteui-angular-spreadsheet" }, + { version: "18.2.0-beta.1", name: "igniteui-angular-datasources" }, + { version: "18.2.0-beta.1", name: "igniteui-angular-dashboards" }, // these IG packages are sometimes updated: - { version: "5.1.1" , name: "igniteui-webcomponents" }, + { version: "5.1.2" , name: "igniteui-webcomponents" }, { version: "11.0.0", name: "igniteui-theming" }, - { version: "18.1.7", name: "igniteui-angular" }, + { version: "19.0.2", name: "igniteui-angular" }, { version: "18.2.1", name: "@angular/animations" }, { version: "18.2.1", name: "@angular/common" }, { version: "18.2.1", name: "@angular/compiler" }, diff --git a/browser/scripts/utils.js b/browser/scripts/utils.js index 2541f3be0..15873425b 100644 --- a/browser/scripts/utils.js +++ b/browser/scripts/utils.js @@ -177,6 +177,10 @@ var lintPackageNames = [ 'igniteui-angular', 'igniteui-angular-core', 'igniteui-angular-charts', + 'igniteui-angular-dashboards', + 'igniteui-angular-inputs', + 'igniteui-angular-layouts', + 'igniteui-angular-grids', 'igniteui-angular-excel', 'igniteui-angular-gauges', 'igniteui-angular-maps', diff --git a/browser/src/app/app-routing.module.ts b/browser/src/app/app-routing.module.ts index 8447e4cee..5777256dc 100644 --- a/browser/src/app/app-routing.module.ts +++ b/browser/src/app/app-routing.module.ts @@ -18,6 +18,7 @@ export const samplesRoutes: Routes = [ { path: "charts", data: ["SamplesForCharts"], loadChildren: () => import("../samples/charts/samples-modules").then(m => m.SamplesForCharts) }, { path: "excel", data: ["SamplesForExcel"], loadChildren: () => import("../samples/excel/samples-modules").then(m => m.SamplesForExcel) }, { path: "gauges", data: ["SamplesForGauges"], loadChildren: () => import("../samples/gauges/samples-modules").then(m => m.SamplesForGauges) }, + { path: "inputs", data: ["SamplesForInputs"], loadChildren: () => import("../samples/inputs/samples-modules").then(m => m.SamplesForInputs) }, { path: "maps", data: ["SamplesForMaps"], loadChildren: () => import("../samples/maps/samples-modules").then(m => m.SamplesForMaps) } diff --git a/browser/src/app/app.component.ts b/browser/src/app/app.component.ts index d6108a81a..e49215700 100644 --- a/browser/src/app/app.component.ts +++ b/browser/src/app/app.component.ts @@ -4,7 +4,8 @@ import { Component, HostListener, Inject, OnInit } from "@angular/core"; @Component({ selector: "app-root", styleUrls: ["./app.component.scss"], - templateUrl: "./app.component.html" + templateUrl: "./app.component.html", + standalone: false }) export class AppComponent implements OnInit { public title = "Samples"; diff --git a/browser/src/app/fallback/fallback.component.ts b/browser/src/app/fallback/fallback.component.ts index ef2ffd31a..f01b0a1af 100644 --- a/browser/src/app/fallback/fallback.component.ts +++ b/browser/src/app/fallback/fallback.component.ts @@ -1,9 +1,10 @@ import { Component } from '@angular/core'; @Component({ - selector: 'app-fallback', - templateUrl: './fallback.component.html', - styleUrls: ['./fallback.component.scss'] + selector: 'app-fallback', + templateUrl: './fallback.component.html', + styleUrls: ['./fallback.component.scss'], + standalone: false }) export class FallbackComponent { diff --git a/browser/src/app/home/home.component.ts b/browser/src/app/home/home.component.ts index 7e603914b..ece661e40 100644 --- a/browser/src/app/home/home.component.ts +++ b/browser/src/app/home/home.component.ts @@ -3,7 +3,8 @@ import { Component, OnInit } from "@angular/core"; @Component({ selector: "app-home", styleUrls: ["./home.component.scss"], - templateUrl: "./home.component.html" + templateUrl: "./home.component.html", + standalone: false }) export class HomeComponent implements OnInit { diff --git a/browser/src/app/index/docs-layout.component.ts b/browser/src/app/index/docs-layout.component.ts index fa657f284..aebf76f02 100644 --- a/browser/src/app/index/docs-layout.component.ts +++ b/browser/src/app/index/docs-layout.component.ts @@ -4,7 +4,8 @@ import { Component, HostListener, Inject, OnInit } from "@angular/core"; @Component({ selector: "app-docs-layout", styleUrls: ["./docs-layout.component.scss"], - template: `` + template: ``, + standalone: false }) export class DocsLayoutComponent {} diff --git a/browser/src/app/index/index.component.ts b/browser/src/app/index/index.component.ts index 6213578a9..9b4bac03d 100644 --- a/browser/src/app/index/index.component.ts +++ b/browser/src/app/index/index.component.ts @@ -11,6 +11,7 @@ import BrowserInfo from "../../browser-info.json"; import { RoutingDataForCharts } from "../../samples/charts/routing-data"; import { RoutingDataForExcel } from "../../samples/excel/routing-data"; import { RoutingDataForGauges } from "../../samples/gauges/routing-data"; +import { RoutingDataForInputs } from "../../samples/inputs/routing-data"; import { RoutingDataForMaps } from "../../samples/maps/routing-data"; @@ -19,7 +20,8 @@ import { RoutingDataForMaps } from "../../samples/maps/routing-data"; @Component({ selector: "app-index", styleUrls: ["./index.component.scss"], - templateUrl: "./index.component.html" + templateUrl: "./index.component.html", + standalone: false }) export class IndexComponent implements OnInit, AfterViewInit { @@ -50,6 +52,7 @@ export class IndexComponent implements OnInit, AfterViewInit { { path: "charts", routesData: RoutingDataForCharts }, { path: "excel", routesData: RoutingDataForExcel }, { path: "gauges", routesData: RoutingDataForGauges }, + { path: "inputs", routesData: RoutingDataForInputs }, { path: "maps", routesData: RoutingDataForMaps } diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index fa9a92bb9..a7a942637 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,14 +1,16 @@ [ -{"ver":"18.1.7","name":"igniteui-angular"}, -{"ver":"18.1.0","name":"igniteui-angular-charts"}, -{"ver":"18.1.0","name":"igniteui-angular-core"}, -{"ver":"18.1.0","name":"igniteui-angular-excel"}, -{"ver":"18.1.0","name":"igniteui-angular-gauges"}, -{"ver":"18.1.0","name":"igniteui-angular-inputs"}, -{"ver":"18.1.0","name":"igniteui-angular-layouts"}, -{"ver":"18.1.0","name":"igniteui-angular-maps"}, -{"ver":"18.1.0","name":"igniteui-angular-spreadsheet"}, -{"ver":"18.1.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"19.0.2","name":"igniteui-angular"}, +{"ver":"18.2.0-beta.1","name":"igniteui-angular-charts"}, +{"ver":"18.2.0-beta.1","name":"igniteui-angular-core"}, +{"ver":"18.2.0-beta.1","name":"igniteui-angular-dashboards"}, +{"ver":"18.2.0-beta.1","name":"igniteui-angular-excel"}, +{"ver":"18.2.0-beta.1","name":"igniteui-angular-gauges"}, +{"ver":"18.2.0-beta.1","name":"igniteui-angular-grids"}, +{"ver":"18.2.0-beta.1","name":"igniteui-angular-inputs"}, +{"ver":"18.2.0-beta.1","name":"igniteui-angular-layouts"}, +{"ver":"18.2.0-beta.1","name":"igniteui-angular-maps"}, +{"ver":"18.2.0-beta.1","name":"igniteui-angular-spreadsheet"}, +{"ver":"18.2.0-beta.1","name":"igniteui-angular-spreadsheet-chart-adapter"}, {"ver":"11.0.0","name":"igniteui-theming"}, -{"ver":"4.11.1","name":"igniteui-webcomponents"} +{"ver":"5.1.2","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/browser/src/styles.scss b/browser/src/styles.scss index 0725f772d..6d470442c 100644 --- a/browser/src/styles.scss +++ b/browser/src/styles.scss @@ -21,7 +21,7 @@ )); // IMPORTANT: Prior to Ignite UI for Angular version 13 use: -// @import '~igniteui-angular/lib/core/styles/themes/index'; +// @import 'igniteui-angular/lib/core/styles/themes/index'; // @include igx-core(); // @include igx-theme($default-palette); diff --git a/browser/tsconfig.json b/browser/tsconfig.json index 1d2f37b50..260548de9 100644 --- a/browser/tsconfig.json +++ b/browser/tsconfig.json @@ -8,12 +8,13 @@ "compilerOptions": { "sourceMap": false, "declaration": false, - "downlevelIteration": true, + "esModuleInterop": true, "experimentalDecorators": true, "target": "ES2022", "module": "ES2022", "moduleResolution": "node", "importHelpers": true, + "useDefineForClassFields": false, "typeRoots": [ "node_modules/@types" ] @@ -22,7 +23,6 @@ "ES2022", "dom" ], - "useDefineForClassFields": false, "files": [], "references": [ { diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 000000000..f0a0b254c --- /dev/null +++ b/package-lock.json @@ -0,0 +1,6 @@ +{ + "name": "igniteui-angular-examples", + "lockfileVersion": 3, + "requires": true, + "packages": {} +} diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-all/src/app.component.ts b/samples/charts/category-chart/annotations-all/src/app.component.ts index b86dc3256..41f27f831 100644 --- a/samples/charts/category-chart/annotations-all/src/app.component.ts +++ b/samples/charts/category-chart/annotations-all/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-callouts/src/app.component.ts b/samples/charts/category-chart/annotations-callouts/src/app.component.ts index 4b1d1ed65..3f46566c0 100644 --- a/samples/charts/category-chart/annotations-callouts/src/app.component.ts +++ b/samples/charts/category-chart/annotations-callouts/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-crosshairs/src/app.component.ts b/samples/charts/category-chart/annotations-crosshairs/src/app.component.ts index 701095b31..06bc905d4 100644 --- a/samples/charts/category-chart/annotations-crosshairs/src/app.component.ts +++ b/samples/charts/category-chart/annotations-crosshairs/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-custom/src/app.component.ts b/samples/charts/category-chart/annotations-custom/src/app.component.ts index 4b1d1ed65..3f46566c0 100644 --- a/samples/charts/category-chart/annotations-custom/src/app.component.ts +++ b/samples/charts/category-chart/annotations-custom/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-final-value/src/app.component.ts b/samples/charts/category-chart/annotations-final-value/src/app.component.ts index 9418dc1d0..e30bc76bd 100644 --- a/samples/charts/category-chart/annotations-final-value/src/app.component.ts +++ b/samples/charts/category-chart/annotations-final-value/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-highlighting/src/app.component.ts b/samples/charts/category-chart/annotations-highlighting/src/app.component.ts index ec61ecf09..c2de6f8a5 100644 --- a/samples/charts/category-chart/annotations-highlighting/src/app.component.ts +++ b/samples/charts/category-chart/annotations-highlighting/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations/src/app.component.ts b/samples/charts/category-chart/annotations/src/app.component.ts index 40671f44e..e4142f126 100644 --- a/samples/charts/category-chart/annotations/src/app.component.ts +++ b/samples/charts/category-chart/annotations/src/app.component.ts @@ -1,6 +1,7 @@ import { ChangeDetectionStrategy, Component } from "@angular/core"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/src/app.component.ts b/samples/charts/category-chart/area-chart-multiple-sources/src/app.component.ts index cf1e9fcaf..73dab0189 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/src/app.component.ts +++ b/samples/charts/category-chart/area-chart-multiple-sources/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-single-source/src/app.component.ts b/samples/charts/category-chart/area-chart-single-source/src/app.component.ts index 0ad6dc0d6..f53827dda 100644 --- a/samples/charts/category-chart/area-chart-single-source/src/app.component.ts +++ b/samples/charts/category-chart/area-chart-single-source/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-styling/src/app.component.ts b/samples/charts/category-chart/area-chart-styling/src/app.component.ts index cf1e9fcaf..73dab0189 100644 --- a/samples/charts/category-chart/area-chart-styling/src/app.component.ts +++ b/samples/charts/category-chart/area-chart-styling/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-gap/src/app.component.ts b/samples/charts/category-chart/axis-gap/src/app.component.ts index 43690271d..b2e2c40e4 100644 --- a/samples/charts/category-chart/axis-gap/src/app.component.ts +++ b/samples/charts/category-chart/axis-gap/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-gridlines/src/app.component.ts b/samples/charts/category-chart/axis-gridlines/src/app.component.ts index 978a93345..d20b9c6c6 100644 --- a/samples/charts/category-chart/axis-gridlines/src/app.component.ts +++ b/samples/charts/category-chart/axis-gridlines/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-inverted/src/app.component.ts b/samples/charts/category-chart/axis-inverted/src/app.component.ts index 72b004825..0665570c3 100644 --- a/samples/charts/category-chart/axis-inverted/src/app.component.ts +++ b/samples/charts/category-chart/axis-inverted/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-labels/src/app.component.ts b/samples/charts/category-chart/axis-labels/src/app.component.ts index 0336cdb5f..ddc47b3aa 100644 --- a/samples/charts/category-chart/axis-labels/src/app.component.ts +++ b/samples/charts/category-chart/axis-labels/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-locations/src/app.component.ts b/samples/charts/category-chart/axis-locations/src/app.component.ts index 595fd5643..62720c94c 100644 --- a/samples/charts/category-chart/axis-locations/src/app.component.ts +++ b/samples/charts/category-chart/axis-locations/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-options/src/app.component.ts b/samples/charts/category-chart/axis-options/src/app.component.ts index 1fe82f4f4..9c4b3efd7 100644 --- a/samples/charts/category-chart/axis-options/src/app.component.ts +++ b/samples/charts/category-chart/axis-options/src/app.component.ts @@ -3,6 +3,7 @@ import { OlympicMedalsTopCountriesItem, OlympicMedalsTopCountries } from './Olym import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-overlap/src/app.component.ts b/samples/charts/category-chart/axis-overlap/src/app.component.ts index c24c345f3..5fa4dc4cc 100644 --- a/samples/charts/category-chart/axis-overlap/src/app.component.ts +++ b/samples/charts/category-chart/axis-overlap/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-range/src/app.component.ts b/samples/charts/category-chart/axis-range/src/app.component.ts index be58fb3b2..75ee4f20d 100644 --- a/samples/charts/category-chart/axis-range/src/app.component.ts +++ b/samples/charts/category-chart/axis-range/src/app.component.ts @@ -12,6 +12,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-tickmarks/src/app.component.ts b/samples/charts/category-chart/axis-tickmarks/src/app.component.ts index 760cce5fe..966f08842 100644 --- a/samples/charts/category-chart/axis-tickmarks/src/app.component.ts +++ b/samples/charts/category-chart/axis-tickmarks/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-titles/src/app.component.ts b/samples/charts/category-chart/axis-titles/src/app.component.ts index cf1e9fcaf..73dab0189 100644 --- a/samples/charts/category-chart/axis-titles/src/app.component.ts +++ b/samples/charts/category-chart/axis-titles/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/chart-highlight-filter/src/app.component.ts b/samples/charts/category-chart/chart-highlight-filter/src/app.component.ts index a0923f8a1..7fc85f75f 100644 --- a/samples/charts/category-chart/chart-highlight-filter/src/app.component.ts +++ b/samples/charts/category-chart/chart-highlight-filter/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/app.component.ts b/samples/charts/category-chart/column-chart-multiple-sources/src/app.component.ts index 05ffc0780..ca366bd17 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/app.component.ts +++ b/samples/charts/category-chart/column-chart-multiple-sources/src/app.component.ts @@ -3,6 +3,7 @@ import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGross import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-single-source/src/app.component.ts b/samples/charts/category-chart/column-chart-single-source/src/app.component.ts index 2ee433ece..c8189ae02 100644 --- a/samples/charts/category-chart/column-chart-single-source/src/app.component.ts +++ b/samples/charts/category-chart/column-chart-single-source/src/app.component.ts @@ -3,6 +3,7 @@ import { TemperatureAverageDataItem, TemperatureAverageData } from './Temperatur import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-styling/src/app.component.ts b/samples/charts/category-chart/column-chart-styling/src/app.component.ts index 6539c9693..e0e7586d5 100644 --- a/samples/charts/category-chart/column-chart-styling/src/app.component.ts +++ b/samples/charts/category-chart/column-chart-styling/src/app.component.ts @@ -3,6 +3,7 @@ import { EnergyRenewableConsumptionItem, EnergyRenewableConsumption } from './En import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/src/app.component.ts b/samples/charts/category-chart/column-chart-with-highlighting/src/app.component.ts index 94eb0c3f0..5e8be7a7f 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/src/app.component.ts +++ b/samples/charts/category-chart/column-chart-with-highlighting/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, AfterViewInit, ViewChild } from "@angular/core"; import { IgxCategoryChartComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/src/app.component.ts b/samples/charts/category-chart/column-chart-with-tooltips/src/app.component.ts index 0e6fef269..c1e30d9dd 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/src/app.component.ts +++ b/samples/charts/category-chart/column-chart-with-tooltips/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/custom-selection/src/app.component.ts b/samples/charts/category-chart/custom-selection/src/app.component.ts index 5a7eceefa..9d93bdde0 100644 --- a/samples/charts/category-chart/custom-selection/src/app.component.ts +++ b/samples/charts/category-chart/custom-selection/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxCategoryChartComponent, IgxDomainChartSeriesPointerEventArgs } from import { IgxDataLegendComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-aggregations/src/app.component.ts b/samples/charts/category-chart/data-aggregations/src/app.component.ts index c4a9cb8f3..a47e2e7f6 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.component.ts +++ b/samples/charts/category-chart/data-aggregations/src/app.component.ts @@ -10,6 +10,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-filter/src/app.component.ts b/samples/charts/category-chart/data-filter/src/app.component.ts index 5432c3011..fd2ff408a 100644 --- a/samples/charts/category-chart/data-filter/src/app.component.ts +++ b/samples/charts/category-chart/data-filter/src/app.component.ts @@ -12,6 +12,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/app.component.ts b/samples/charts/category-chart/data-legend-formatting-decimals/src/app.component.ts index 38b629f73..bf9dbebb7 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/app.component.ts +++ b/samples/charts/category-chart/data-legend-formatting-decimals/src/app.component.ts @@ -3,6 +3,7 @@ import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGross import { IgxDataLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-legend/src/app.component.ts b/samples/charts/category-chart/data-legend/src/app.component.ts index 38b629f73..bf9dbebb7 100644 --- a/samples/charts/category-chart/data-legend/src/app.component.ts +++ b/samples/charts/category-chart/data-legend/src/app.component.ts @@ -3,6 +3,7 @@ import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGross import { IgxDataLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/app.component.ts b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/app.component.ts index 870facf82..68698ef17 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/app.component.ts +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/app.component.ts @@ -3,6 +3,7 @@ import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGross import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-tooltip-positioning/src/app.component.ts b/samples/charts/category-chart/data-tooltip-positioning/src/app.component.ts index 88b9a8fb8..1e2aafcd5 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/src/app.component.ts +++ b/samples/charts/category-chart/data-tooltip-positioning/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip/src/app.component.ts b/samples/charts/category-chart/data-tooltip/src/app.component.ts index 870facf82..68698ef17 100644 --- a/samples/charts/category-chart/data-tooltip/src/app.component.ts +++ b/samples/charts/category-chart/data-tooltip/src/app.component.ts @@ -3,6 +3,7 @@ import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGross import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index aa557375b..0b236f859 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/format-specifiers/src/app.component.ts b/samples/charts/category-chart/format-specifiers/src/app.component.ts index 2d701d621..8fb92355d 100644 --- a/samples/charts/category-chart/format-specifiers/src/app.component.ts +++ b/samples/charts/category-chart/format-specifiers/src/app.component.ts @@ -5,6 +5,7 @@ import { IgxDataLegendComponent, IgxCategoryChartComponent } from 'igniteui-angu import { IgxNumberFormatSpecifier } from 'igniteui-angular-core'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index c85c90b4e..d551358b9 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "18.1.7", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular": "19.0.2", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/high-frequency/src/app.component.ts b/samples/charts/category-chart/high-frequency/src/app.component.ts index df620f829..e819f9569 100644 --- a/samples/charts/category-chart/high-frequency/src/app.component.ts +++ b/samples/charts/category-chart/high-frequency/src/app.component.ts @@ -2,6 +2,7 @@ import { AfterViewInit, ChangeDetectionStrategy, Component, ElementRef, Input, N import { IgxCategoryChartComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index c85c90b4e..d551358b9 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "18.1.7", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular": "19.0.2", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/high-volume/src/app.component.ts b/samples/charts/category-chart/high-volume/src/app.component.ts index 99c9a138a..f3e69d84c 100644 --- a/samples/charts/category-chart/high-volume/src/app.component.ts +++ b/samples/charts/category-chart/high-volume/src/app.component.ts @@ -5,6 +5,7 @@ import { IgxChartSeriesEventArgs } from "igniteui-angular-charts"; import { IgxHorizontalAnchoredCategorySeriesComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/highlighting-behavior/src/app.component.ts b/samples/charts/category-chart/highlighting-behavior/src/app.component.ts index daf7721f3..75a4000ce 100644 --- a/samples/charts/category-chart/highlighting-behavior/src/app.component.ts +++ b/samples/charts/category-chart/highlighting-behavior/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/highlighting-mode/src/app.component.ts b/samples/charts/category-chart/highlighting-mode/src/app.component.ts index f4c1df6dd..9f1e8bb04 100644 --- a/samples/charts/category-chart/highlighting-mode/src/app.component.ts +++ b/samples/charts/category-chart/highlighting-mode/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting/src/app.component.ts b/samples/charts/category-chart/highlighting/src/app.component.ts index 8c4451b78..5a85ca220 100644 --- a/samples/charts/category-chart/highlighting/src/app.component.ts +++ b/samples/charts/category-chart/highlighting/src/app.component.ts @@ -2,6 +2,7 @@ import { AfterViewInit, ChangeDetectionStrategy, Component, ViewChild } from "@a import { IgxCategoryChartComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/legend-highlighting/src/app.component.ts b/samples/charts/category-chart/legend-highlighting/src/app.component.ts index 05ffc0780..ca366bd17 100644 --- a/samples/charts/category-chart/legend-highlighting/src/app.component.ts +++ b/samples/charts/category-chart/legend-highlighting/src/app.component.ts @@ -3,6 +3,7 @@ import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGross import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/app.component.ts b/samples/charts/category-chart/line-chart-multiple-sources/src/app.component.ts index cf1e9fcaf..73dab0189 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/app.component.ts +++ b/samples/charts/category-chart/line-chart-multiple-sources/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-single-source/src/app.component.ts b/samples/charts/category-chart/line-chart-single-source/src/app.component.ts index 0ad6dc0d6..f53827dda 100644 --- a/samples/charts/category-chart/line-chart-single-source/src/app.component.ts +++ b/samples/charts/category-chart/line-chart-single-source/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-styling/src/app.component.ts b/samples/charts/category-chart/line-chart-styling/src/app.component.ts index cf1e9fcaf..73dab0189 100644 --- a/samples/charts/category-chart/line-chart-styling/src/app.component.ts +++ b/samples/charts/category-chart/line-chart-styling/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-animations/src/app.component.ts b/samples/charts/category-chart/line-chart-with-animations/src/app.component.ts index ff57e95ee..c586f2c73 100644 --- a/samples/charts/category-chart/line-chart-with-animations/src/app.component.ts +++ b/samples/charts/category-chart/line-chart-with-animations/src/app.component.ts @@ -2,6 +2,7 @@ import { ChangeDetectionStrategy, Component, ViewChild } from "@angular/core"; import { IgxCategoryChartComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-annotations/src/app.component.ts b/samples/charts/category-chart/line-chart-with-annotations/src/app.component.ts index fa9404ea4..41b79db23 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/src/app.component.ts +++ b/samples/charts/category-chart/line-chart-with-annotations/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxCalloutLayerComponent } from "igniteui-angular-charts"; import { IgxSeriesComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-legend/src/app.component.ts b/samples/charts/category-chart/line-chart-with-legend/src/app.component.ts index 7f8e27cfe..b59490e96 100644 --- a/samples/charts/category-chart/line-chart-with-legend/src/app.component.ts +++ b/samples/charts/category-chart/line-chart-with-legend/src/app.component.ts @@ -1,6 +1,7 @@ import { Component, OnInit } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/marker-options/src/app.component.ts b/samples/charts/category-chart/marker-options/src/app.component.ts index 4ffde8434..e57baa8c6 100644 --- a/samples/charts/category-chart/marker-options/src/app.component.ts +++ b/samples/charts/category-chart/marker-options/src/app.component.ts @@ -11,6 +11,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/marker-templates/src/app.component.ts b/samples/charts/category-chart/marker-templates/src/app.component.ts index 5854c2572..1834c36db 100644 --- a/samples/charts/category-chart/marker-templates/src/app.component.ts +++ b/samples/charts/category-chart/marker-templates/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, OnInit } from "@angular/core"; import { DataTemplateMeasureInfo, DataTemplateRenderInfo } from "igniteui-angular-core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/overview/src/app.component.ts b/samples/charts/category-chart/overview/src/app.component.ts index cf1e9fcaf..73dab0189 100644 --- a/samples/charts/category-chart/overview/src/app.component.ts +++ b/samples/charts/category-chart/overview/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/src/app.component.ts b/samples/charts/category-chart/point-chart-multiple-sources/src/app.component.ts index cf1e9fcaf..73dab0189 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/src/app.component.ts +++ b/samples/charts/category-chart/point-chart-multiple-sources/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-single-source/src/app.component.ts b/samples/charts/category-chart/point-chart-single-source/src/app.component.ts index 0ad6dc0d6..f53827dda 100644 --- a/samples/charts/category-chart/point-chart-single-source/src/app.component.ts +++ b/samples/charts/category-chart/point-chart-single-source/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-styling/src/app.component.ts b/samples/charts/category-chart/point-chart-styling/src/app.component.ts index cf1e9fcaf..73dab0189 100644 --- a/samples/charts/category-chart/point-chart-styling/src/app.component.ts +++ b/samples/charts/category-chart/point-chart-styling/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-modes/src/app.component.ts b/samples/charts/category-chart/selection-modes/src/app.component.ts index 2ee433ece..c8189ae02 100644 --- a/samples/charts/category-chart/selection-modes/src/app.component.ts +++ b/samples/charts/category-chart/selection-modes/src/app.component.ts @@ -3,6 +3,7 @@ import { TemperatureAverageDataItem, TemperatureAverageData } from './Temperatur import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/selection-multiple-modes/src/app.component.ts b/samples/charts/category-chart/selection-multiple-modes/src/app.component.ts index 07046894d..92b8ee08a 100644 --- a/samples/charts/category-chart/selection-multiple-modes/src/app.component.ts +++ b/samples/charts/category-chart/selection-multiple-modes/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/app.component.ts b/samples/charts/category-chart/spline-area-multiple-sources/src/app.component.ts index cf1e9fcaf..73dab0189 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/app.component.ts +++ b/samples/charts/category-chart/spline-area-multiple-sources/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-single-source/src/app.component.ts b/samples/charts/category-chart/spline-area-single-source/src/app.component.ts index 0ad6dc0d6..f53827dda 100644 --- a/samples/charts/category-chart/spline-area-single-source/src/app.component.ts +++ b/samples/charts/category-chart/spline-area-single-source/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-styling/src/app.component.ts b/samples/charts/category-chart/spline-area-styling/src/app.component.ts index cf1e9fcaf..73dab0189 100644 --- a/samples/charts/category-chart/spline-area-styling/src/app.component.ts +++ b/samples/charts/category-chart/spline-area-styling/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-multiple-sources/src/app.component.ts b/samples/charts/category-chart/spline-multiple-sources/src/app.component.ts index cf1e9fcaf..73dab0189 100644 --- a/samples/charts/category-chart/spline-multiple-sources/src/app.component.ts +++ b/samples/charts/category-chart/spline-multiple-sources/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-single-source/src/app.component.ts b/samples/charts/category-chart/spline-single-source/src/app.component.ts index 0ad6dc0d6..f53827dda 100644 --- a/samples/charts/category-chart/spline-single-source/src/app.component.ts +++ b/samples/charts/category-chart/spline-single-source/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-styling/src/app.component.ts b/samples/charts/category-chart/spline-styling/src/app.component.ts index cf1e9fcaf..73dab0189 100644 --- a/samples/charts/category-chart/spline-styling/src/app.component.ts +++ b/samples/charts/category-chart/spline-styling/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/stack-columns/src/app.component.ts b/samples/charts/category-chart/stack-columns/src/app.component.ts index db92d6cf9..3b5044992 100644 --- a/samples/charts/category-chart/stack-columns/src/app.component.ts +++ b/samples/charts/category-chart/stack-columns/src/app.component.ts @@ -3,6 +3,7 @@ import { IgxCategoryChartComponent } from "igniteui-angular-charts"; import { IgxLegendComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-multiple-sources/src/app.component.ts b/samples/charts/category-chart/step-area-multiple-sources/src/app.component.ts index cf1e9fcaf..73dab0189 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/src/app.component.ts +++ b/samples/charts/category-chart/step-area-multiple-sources/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-single-source/src/app.component.ts b/samples/charts/category-chart/step-area-single-source/src/app.component.ts index 0ad6dc0d6..f53827dda 100644 --- a/samples/charts/category-chart/step-area-single-source/src/app.component.ts +++ b/samples/charts/category-chart/step-area-single-source/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-styling/src/app.component.ts b/samples/charts/category-chart/step-area-styling/src/app.component.ts index cf1e9fcaf..73dab0189 100644 --- a/samples/charts/category-chart/step-area-styling/src/app.component.ts +++ b/samples/charts/category-chart/step-area-styling/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-multiple-sources/src/app.component.ts b/samples/charts/category-chart/step-line-multiple-sources/src/app.component.ts index cf1e9fcaf..73dab0189 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/src/app.component.ts +++ b/samples/charts/category-chart/step-line-multiple-sources/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-single-source/src/app.component.ts b/samples/charts/category-chart/step-line-single-source/src/app.component.ts index 0ad6dc0d6..f53827dda 100644 --- a/samples/charts/category-chart/step-line-single-source/src/app.component.ts +++ b/samples/charts/category-chart/step-line-single-source/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-styling/src/app.component.ts b/samples/charts/category-chart/step-line-styling/src/app.component.ts index cf1e9fcaf..73dab0189 100644 --- a/samples/charts/category-chart/step-line-styling/src/app.component.ts +++ b/samples/charts/category-chart/step-line-styling/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/tooltip-template/src/app.component.ts b/samples/charts/category-chart/tooltip-template/src/app.component.ts index 9a588ced7..d89572e1d 100644 --- a/samples/charts/category-chart/tooltip-template/src/app.component.ts +++ b/samples/charts/category-chart/tooltip-template/src/app.component.ts @@ -1,6 +1,7 @@ import { ChangeDetectionStrategy, Component, ViewChild, TemplateRef } from "@angular/core"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/tooltip-types/src/app.component.ts b/samples/charts/category-chart/tooltip-types/src/app.component.ts index 0475d028c..7afb196ef 100644 --- a/samples/charts/category-chart/tooltip-types/src/app.component.ts +++ b/samples/charts/category-chart/tooltip-types/src/app.component.ts @@ -3,6 +3,7 @@ import { IgxCategoryChartComponent } from "igniteui-angular-charts"; import { ToolTipType } from "igniteui-angular-charts"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/trendline/src/app.component.ts b/samples/charts/category-chart/trendline/src/app.component.ts index 188a8848f..d249c2ba5 100644 --- a/samples/charts/category-chart/trendline/src/app.component.ts +++ b/samples/charts/category-chart/trendline/src/app.component.ts @@ -2,6 +2,7 @@ import { AfterViewInit, ChangeDetectionStrategy, Component, ViewChild } from "@a import { IgxCategoryChartComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/value-lines/src/app.component.ts b/samples/charts/category-chart/value-lines/src/app.component.ts index de1ff9d7c..698db2b1c 100644 --- a/samples/charts/category-chart/value-lines/src/app.component.ts +++ b/samples/charts/category-chart/value-lines/src/app.component.ts @@ -12,6 +12,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/dashboard-tile/chart-dashboard/ReadMe.md b/samples/charts/dashboard-tile/chart-dashboard/ReadMe.md new file mode 100644 index 000000000..17c0afa86 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Chart Dashboard feature using [DashboardTile](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/dashboard-tile/chart-dashboard +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index 475e20a80..6f177a7d3 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-dashboards": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-dashboards": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/app.component.ts b/samples/charts/dashboard-tile/chart-dashboard/src/app.component.ts index 7d4afe3bc..3fd93685f 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/src/app.component.ts +++ b/samples/charts/dashboard-tile/chart-dashboard/src/app.component.ts @@ -3,6 +3,7 @@ import { OlympicMedalsTopCountriesItem, OlympicMedalsTopCountries } from './Olym import { IgxDashboardTileComponent } from 'igniteui-angular-dashboards'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/app.module.ts b/samples/charts/dashboard-tile/chart-dashboard/src/app.module.ts index fc20a0109..935cb2999 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/src/app.module.ts +++ b/samples/charts/dashboard-tile/chart-dashboard/src/app.module.ts @@ -17,6 +17,7 @@ import { IgxDashboardTileModule, IgxDataChartDashboardTileModule, IgxGeographicM BrowserAnimationsModule, CommonModule, FormsModule, + IgxGridModule, IgxDashboardTileModule, IgxDataChartDashboardTileModule, IgxGeographicMapDashboardTileModule, diff --git a/samples/charts/dashboard-tile/gauge-dashboard/ReadMe.md b/samples/charts/dashboard-tile/gauge-dashboard/ReadMe.md new file mode 100644 index 000000000..7dcc4d688 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Gauge Dashboard feature using [DashboardTile](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/dashboard-tile/gauge-dashboard +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index 475e20a80..6f177a7d3 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-dashboards": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-dashboards": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.ts b/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.ts index 6eebc28d4..1d54fe3d0 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.ts +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.ts @@ -2,6 +2,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDet import { IgxDashboardTileComponent } from 'igniteui-angular-dashboards'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/dashboard-tile/map-dashboard/ReadMe.md b/samples/charts/dashboard-tile/map-dashboard/ReadMe.md new file mode 100644 index 000000000..ba3ca633c --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Map Dashboard feature using [DashboardTile](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/dashboard-tile/map-dashboard +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index 475e20a80..6f177a7d3 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-dashboards": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-dashboards": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/map-dashboard/src/app.component.ts b/samples/charts/dashboard-tile/map-dashboard/src/app.component.ts index 05181a35e..c17084bcd 100644 --- a/samples/charts/dashboard-tile/map-dashboard/src/app.component.ts +++ b/samples/charts/dashboard-tile/map-dashboard/src/app.component.ts @@ -3,6 +3,7 @@ import { WorldCitiesItem, WorldCities } from './WorldCities'; import { IgxDashboardTileComponent } from 'igniteui-angular-dashboards'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/dashboard-tile/pie-dashboard/ReadMe.md b/samples/charts/dashboard-tile/pie-dashboard/ReadMe.md new file mode 100644 index 000000000..f6b018912 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Pie Dashboard feature using [DashboardTile](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/dashboard-tile/pie-dashboard +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index 475e20a80..6f177a7d3 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-dashboards": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-dashboards": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/app.component.ts b/samples/charts/dashboard-tile/pie-dashboard/src/app.component.ts index 0c7223220..70bcc60dd 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/src/app.component.ts +++ b/samples/charts/dashboard-tile/pie-dashboard/src/app.component.ts @@ -3,6 +3,7 @@ import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand import { IgxDashboardTileComponent } from 'igniteui-angular-dashboards'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/annotations-custom/src/app.component.ts b/samples/charts/data-chart/annotations-custom/src/app.component.ts index c23557ab5..b24a9d1c2 100644 --- a/samples/charts/data-chart/annotations-custom/src/app.component.ts +++ b/samples/charts/data-chart/annotations-custom/src/app.component.ts @@ -4,6 +4,7 @@ import { CountryRenewableCalloutsItem, CountryRenewableCallouts } from './Countr import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxLineSeriesComponent, IgxCalloutLayerComponent, IgxFinalValueLayerComponent, IgxCrosshairLayerComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/src/app.component.ts b/samples/charts/data-chart/axis-annotations-corner-radius/src/app.component.ts index fc863ead4..5353619ab 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/src/app.component.ts +++ b/samples/charts/data-chart/axis-annotations-corner-radius/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxLineSeriesComponent, IgxCalloutLayerComponent, IgxFinalValueLayerComponent, IgxCrosshairLayerComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-annotations/src/app.component.ts b/samples/charts/data-chart/axis-annotations/src/app.component.ts index 61f9fd9a9..d41973ec1 100644 --- a/samples/charts/data-chart/axis-annotations/src/app.component.ts +++ b/samples/charts/data-chart/axis-annotations/src/app.component.ts @@ -8,6 +8,7 @@ import { IgxDataChartComponent } from "igniteui-angular-charts"; import { IgxNumericYAxisComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-crossing/src/app.component.ts b/samples/charts/data-chart/axis-crossing/src/app.component.ts index e0f1ae360..3e79d25ad 100644 --- a/samples/charts/data-chart/axis-crossing/src/app.component.ts +++ b/samples/charts/data-chart/axis-crossing/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/axis-label-rotation/src/app.component.ts b/samples/charts/data-chart/axis-label-rotation/src/app.component.ts index 2e8e963d0..6fdfc5a8a 100644 --- a/samples/charts/data-chart/axis-label-rotation/src/app.component.ts +++ b/samples/charts/data-chart/axis-label-rotation/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-locations/src/app.component.ts b/samples/charts/data-chart/axis-locations/src/app.component.ts index eb3958a28..1f826dd67 100644 --- a/samples/charts/data-chart/axis-locations/src/app.component.ts +++ b/samples/charts/data-chart/axis-locations/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxLegendComponent } from "igniteui-angular-charts"; import { IgxNumericYAxisComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-min-max-gap/src/app.component.ts b/samples/charts/data-chart/axis-min-max-gap/src/app.component.ts index 220a57600..85e02978f 100644 --- a/samples/charts/data-chart/axis-min-max-gap/src/app.component.ts +++ b/samples/charts/data-chart/axis-min-max-gap/src/app.component.ts @@ -3,6 +3,7 @@ import { TemperatureAverageDataItem, TemperatureAverageData } from './Temperatur import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxCategoryHighlightLayerComponent, IgxColumnSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-settings/src/app.component.ts b/samples/charts/data-chart/axis-settings/src/app.component.ts index 3b0f36a86..eba56fada 100644 --- a/samples/charts/data-chart/axis-settings/src/app.component.ts +++ b/samples/charts/data-chart/axis-settings/src/app.component.ts @@ -5,6 +5,7 @@ import { IgxNumericYAxisComponent } from "igniteui-angular-charts"; import { SharedData } from "./SharedData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-sharing/src/app.component.ts b/samples/charts/data-chart/axis-sharing/src/app.component.ts index 245722c94..dfeaf62ed 100644 --- a/samples/charts/data-chart/axis-sharing/src/app.component.ts +++ b/samples/charts/data-chart/axis-sharing/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, OnInit } from "@angular/core"; import { SampleFinancialData } from "./SampleFinancialData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-types/src/app.component.ts b/samples/charts/data-chart/axis-types/src/app.component.ts index 2c9bb987b..6f867e96e 100644 --- a/samples/charts/data-chart/axis-types/src/app.component.ts +++ b/samples/charts/data-chart/axis-types/src/app.component.ts @@ -15,6 +15,7 @@ import { SampleFinancialData } from "./SampleFinancialData"; import { SampleScatterData } from "./SampleScatterData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/src/app.component.ts b/samples/charts/data-chart/bar-chart-multiple-sources/src/app.component.ts index 7c59dd98c..0d57a11a0 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/src/app.component.ts +++ b/samples/charts/data-chart/bar-chart-multiple-sources/src/app.component.ts @@ -3,6 +3,7 @@ import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGross import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryYAxisComponent, IgxNumericXAxisComponent, IgxCategoryHighlightLayerComponent, IgxBarSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-overlapping/src/app.component.ts b/samples/charts/data-chart/bar-chart-overlapping/src/app.component.ts index 7ccec65ef..792ad82be 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/src/app.component.ts +++ b/samples/charts/data-chart/bar-chart-overlapping/src/app.component.ts @@ -3,6 +3,7 @@ import { RoadblocksToSuccessItem, RoadblocksToSuccess } from './RoadblocksToSucc import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryYAxisComponent, IgxNumericXAxisComponent, IgxCategoryHighlightLayerComponent, IgxBarSeriesComponent, IgxCalloutLayerComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-single-source/src/app.component.ts b/samples/charts/data-chart/bar-chart-single-source/src/app.component.ts index b70343bc5..8cd8e07e2 100644 --- a/samples/charts/data-chart/bar-chart-single-source/src/app.component.ts +++ b/samples/charts/data-chart/bar-chart-single-source/src/app.component.ts @@ -3,6 +3,7 @@ import { OnlineShoppingSearchesItem, OnlineShoppingSearches } from './OnlineShop import { IgxDataChartComponent, IgxCategoryYAxisComponent, IgxNumericXAxisComponent, IgxCategoryHighlightLayerComponent, IgxBarSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-styling/src/app.component.ts b/samples/charts/data-chart/bar-chart-styling/src/app.component.ts index 6a091f05d..5f69af6ef 100644 --- a/samples/charts/data-chart/bar-chart-styling/src/app.component.ts +++ b/samples/charts/data-chart/bar-chart-styling/src/app.component.ts @@ -3,6 +3,7 @@ import { OnlineShoppingSearchesItem, OnlineShoppingSearches } from './OnlineShop import { IgxDataChartComponent, IgxCategoryYAxisComponent, IgxNumericXAxisComponent, IgxCategoryHighlightLayerComponent, IgxBarSeriesComponent, IgxCalloutLayerComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/callout-layer-styling/src/app.component.ts b/samples/charts/data-chart/callout-layer-styling/src/app.component.ts index 01c6b3623..120490396 100644 --- a/samples/charts/data-chart/callout-layer-styling/src/app.component.ts +++ b/samples/charts/data-chart/callout-layer-styling/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxLineSeriesComponent, IgxCalloutLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.ts b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.ts index 4c1234e3d..cb22e4dcd 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.ts +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/app.component.ts @@ -10,6 +10,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.ts b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.ts index d5454b630..67f1d5315 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.ts +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/app.component.ts @@ -10,6 +10,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter/src/app.component.ts b/samples/charts/data-chart/chart-highlight-filter/src/app.component.ts index 2b048e31e..7c20c70e7 100644 --- a/samples/charts/data-chart/chart-highlight-filter/src/app.component.ts +++ b/samples/charts/data-chart/chart-highlight-filter/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-navigation/src/app.component.ts b/samples/charts/data-chart/chart-navigation/src/app.component.ts index dc9c72e29..e9feb21fd 100644 --- a/samples/charts/data-chart/chart-navigation/src/app.component.ts +++ b/samples/charts/data-chart/chart-navigation/src/app.component.ts @@ -7,6 +7,7 @@ import { IgxSizeScaleComponent } from "igniteui-angular-charts"; import { SampleScatterStats } from "./SampleScatterStats"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-overview/src/app.component.ts b/samples/charts/data-chart/chart-overview/src/app.component.ts index 573655131..3894ac297 100644 --- a/samples/charts/data-chart/chart-overview/src/app.component.ts +++ b/samples/charts/data-chart/chart-overview/src/app.component.ts @@ -9,7 +9,8 @@ import { MarkerType } from "igniteui-angular-charts"; import { SampleScatterStats } from "./SampleScatterStats"; @Component({ - providers: [ SampleScatterStats ], + standalone: false, + providers: [ SampleScatterStats ], selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-performance/src/app.component.ts b/samples/charts/data-chart/chart-performance/src/app.component.ts index 8bd5457e2..c3baae039 100644 --- a/samples/charts/data-chart/chart-performance/src/app.component.ts +++ b/samples/charts/data-chart/chart-performance/src/app.component.ts @@ -1,6 +1,7 @@ import { Component, OnInit } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-synchronization/src/app.component.ts b/samples/charts/data-chart/chart-synchronization/src/app.component.ts index 094c46480..600554205 100644 --- a/samples/charts/data-chart/chart-synchronization/src/app.component.ts +++ b/samples/charts/data-chart/chart-synchronization/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, ViewChild } from "@angular/core"; import { IgxDataChartComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-titles/src/app.component.ts b/samples/charts/data-chart/chart-titles/src/app.component.ts index 3b0f36a86..eba56fada 100644 --- a/samples/charts/data-chart/chart-titles/src/app.component.ts +++ b/samples/charts/data-chart/chart-titles/src/app.component.ts @@ -5,6 +5,7 @@ import { IgxNumericYAxisComponent } from "igniteui-angular-charts"; import { SharedData } from "./SharedData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/column-chart-styling/src/app.component.ts b/samples/charts/data-chart/column-chart-styling/src/app.component.ts index c171bd981..5fe6f9c5f 100644 --- a/samples/charts/data-chart/column-chart-styling/src/app.component.ts +++ b/samples/charts/data-chart/column-chart-styling/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, OnInit } from "@angular/core"; import { DataTemplateMeasureInfo, DataTemplateRenderInfo } from "igniteui-angular-core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/composite-chart/src/app.component.ts b/samples/charts/data-chart/composite-chart/src/app.component.ts index f84ee06ea..ec69116b5 100644 --- a/samples/charts/data-chart/composite-chart/src/app.component.ts +++ b/samples/charts/data-chart/composite-chart/src/app.component.ts @@ -1,6 +1,7 @@ import { Component, OnInit } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/crosshair-layer-styling/src/app.component.ts b/samples/charts/data-chart/crosshair-layer-styling/src/app.component.ts index 251b176ac..4b4787a4e 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/src/app.component.ts +++ b/samples/charts/data-chart/crosshair-layer-styling/src/app.component.ts @@ -1,6 +1,7 @@ import { Component, OnInit } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 7e284b173..6dd878d34 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-inputs": "18.1.0", - "igniteui-angular-layouts": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/app.component.ts b/samples/charts/data-chart/custom-drawing-annotations/src/app.component.ts index bb7372737..1aacac985 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/src/app.component.ts +++ b/samples/charts/data-chart/custom-drawing-annotations/src/app.component.ts @@ -5,6 +5,7 @@ import { StocksHistory } from "./StocksHistory"; import { IgxToolCommandEventArgs, IgxToolActionLabelComponent } from "igniteui-angular-layouts"; @Component({ + standalone: false, providers: [ StocksHistory ], selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/custom-editing-data/src/app.component.ts b/samples/charts/data-chart/custom-editing-data/src/app.component.ts index 45231821a..968098877 100644 --- a/samples/charts/data-chart/custom-editing-data/src/app.component.ts +++ b/samples/charts/data-chart/custom-editing-data/src/app.component.ts @@ -3,6 +3,7 @@ import { IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisCompone import { EditableDataSource } from "./EditableDataSource"; @Component({ + standalone: false, providers: [ EditableDataSource ], selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-axes/src/app.component.ts b/samples/charts/data-chart/dash-array-axes/src/app.component.ts index 9086ad69a..264357122 100644 --- a/samples/charts/data-chart/dash-array-axes/src/app.component.ts +++ b/samples/charts/data-chart/dash-array-axes/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxLineSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-series/src/app.component.ts b/samples/charts/data-chart/dash-array-series/src/app.component.ts index 9086ad69a..264357122 100644 --- a/samples/charts/data-chart/dash-array-series/src/app.component.ts +++ b/samples/charts/data-chart/dash-array-series/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxLineSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-tickmarks/src/app.component.ts b/samples/charts/data-chart/dash-array-tickmarks/src/app.component.ts index 6915a499b..8e762caf1 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/src/app.component.ts +++ b/samples/charts/data-chart/dash-array-tickmarks/src/app.component.ts @@ -3,6 +3,7 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-trendline/src/app.component.ts b/samples/charts/data-chart/dash-array-trendline/src/app.component.ts index dc495cc1d..8e470225a 100644 --- a/samples/charts/data-chart/dash-array-trendline/src/app.component.ts +++ b/samples/charts/data-chart/dash-array-trendline/src/app.component.ts @@ -3,6 +3,7 @@ import { Stock2YearsItem, Stock2Years } from './Stock2Years'; import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxFinancialPriceSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.component.ts b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.component.ts index 92a707fb1..a66daf491 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.component.ts +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/app.component.ts @@ -4,6 +4,7 @@ import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithT import { IgxDataLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-grouping/src/app.component.ts b/samples/charts/data-chart/data-legend-grouping/src/app.component.ts index 92a707fb1..a66daf491 100644 --- a/samples/charts/data-chart/data-legend-grouping/src/app.component.ts +++ b/samples/charts/data-chart/data-legend-grouping/src/app.component.ts @@ -4,6 +4,7 @@ import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithT import { IgxDataLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-styling/src/app.component.ts b/samples/charts/data-chart/data-legend-styling/src/app.component.ts index 868110677..f88a26aaa 100644 --- a/samples/charts/data-chart/data-legend-styling/src/app.component.ts +++ b/samples/charts/data-chart/data-legend-styling/src/app.component.ts @@ -4,6 +4,7 @@ import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithT import { IgxDataLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend/src/app.component.ts b/samples/charts/data-chart/data-legend/src/app.component.ts index 63e72aea1..3be6e7101 100644 --- a/samples/charts/data-chart/data-legend/src/app.component.ts +++ b/samples/charts/data-chart/data-legend/src/app.component.ts @@ -4,6 +4,7 @@ import { CountryDemographicEuropeItem, CountryDemographicEurope } from './Countr import { IgxDataLegendComponent, IgxDataChartComponent, IgxNumericYAxisComponent, IgxNumericXAxisComponent, IgxBubbleSeriesComponent, IgxSizeScaleComponent, IgxCrosshairLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index aa557375b..0b236f859 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.component.ts b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.component.ts index 883055c04..701080eb6 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.component.ts +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/app.component.ts @@ -4,6 +4,7 @@ import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithT import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index aa557375b..0b236f859 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-grouping/src/app.component.ts b/samples/charts/data-chart/data-tooltip-grouping/src/app.component.ts index 883055c04..701080eb6 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/src/app.component.ts +++ b/samples/charts/data-chart/data-tooltip-grouping/src/app.component.ts @@ -4,6 +4,7 @@ import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithT import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index aa557375b..0b236f859 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-styling/src/app.component.ts b/samples/charts/data-chart/data-tooltip-styling/src/app.component.ts index c898f34f9..4ed38f21f 100644 --- a/samples/charts/data-chart/data-tooltip-styling/src/app.component.ts +++ b/samples/charts/data-chart/data-tooltip-styling/src/app.component.ts @@ -4,6 +4,7 @@ import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithT import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxColumnSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip/src/app.component.ts b/samples/charts/data-chart/data-tooltip/src/app.component.ts index f24bc5055..f136d7dbe 100644 --- a/samples/charts/data-chart/data-tooltip/src/app.component.ts +++ b/samples/charts/data-chart/data-tooltip/src/app.component.ts @@ -4,6 +4,7 @@ import { CountryDemographicEuropeItem, CountryDemographicEurope } from './Countr import { IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent, IgxSizeScaleComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/final-value-layer-styling/src/app.component.ts b/samples/charts/data-chart/final-value-layer-styling/src/app.component.ts index 251b176ac..4b4787a4e 100644 --- a/samples/charts/data-chart/final-value-layer-styling/src/app.component.ts +++ b/samples/charts/data-chart/final-value-layer-styling/src/app.component.ts @@ -1,6 +1,7 @@ import { Component, OnInit } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/financial-price-series/src/app.component.ts b/samples/charts/data-chart/financial-price-series/src/app.component.ts index cb899d910..64be05581 100644 --- a/samples/charts/data-chart/financial-price-series/src/app.component.ts +++ b/samples/charts/data-chart/financial-price-series/src/app.component.ts @@ -3,6 +3,7 @@ import { Stock2YearsItem, Stock2Years } from './Stock2Years'; import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxFinancialPriceSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/format-specifiers/src/app.component.ts b/samples/charts/data-chart/format-specifiers/src/app.component.ts index 91100d4c0..d51f28967 100644 --- a/samples/charts/data-chart/format-specifiers/src/app.component.ts +++ b/samples/charts/data-chart/format-specifiers/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxDataLegendComponent, IgxDataChartComponent, IgxCategoryYAxisComponen import { IgxNumberFormatSpecifier } from 'igniteui-angular-core'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/legends/src/app.component.ts b/samples/charts/data-chart/legends/src/app.component.ts index 33cca0f70..d2cb13235 100644 --- a/samples/charts/data-chart/legends/src/app.component.ts +++ b/samples/charts/data-chart/legends/src/app.component.ts @@ -5,6 +5,7 @@ import { IgxNumericYAxisComponent } from "igniteui-angular-charts"; import { SharedData } from "./SharedData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-area-chart-styling/src/app.component.ts b/samples/charts/data-chart/polar-area-chart-styling/src/app.component.ts index 27eefd200..0c3c99c20 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/src/app.component.ts +++ b/samples/charts/data-chart/polar-area-chart-styling/src/app.component.ts @@ -3,6 +3,7 @@ import { BoatSailingDataItem, BoatSailingData } from './BoatSailingData'; import { IgxLegendComponent, IgxDataChartComponent, IgxNumericAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxPolarAreaSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-area-chart/src/app.component.ts b/samples/charts/data-chart/polar-area-chart/src/app.component.ts index b927a2be0..41f702108 100644 --- a/samples/charts/data-chart/polar-area-chart/src/app.component.ts +++ b/samples/charts/data-chart/polar-area-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { BoatSailingDataItem, BoatSailingData } from './BoatSailingData'; import { IgxLegendComponent, IgxDataChartComponent, IgxNumericAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxPolarAreaSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-chart-types/src/app.component.ts b/samples/charts/data-chart/polar-chart-types/src/app.component.ts index f9ece9e75..af2e7c74d 100644 --- a/samples/charts/data-chart/polar-chart-types/src/app.component.ts +++ b/samples/charts/data-chart/polar-chart-types/src/app.component.ts @@ -16,6 +16,7 @@ import { IgxLegendComponent } from "igniteui-angular-charts"; import { SamplePolarData } from "./SamplePolarData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-line-chart/src/app.component.ts b/samples/charts/data-chart/polar-line-chart/src/app.component.ts index 9fc0bdd6f..5f7f76406 100644 --- a/samples/charts/data-chart/polar-line-chart/src/app.component.ts +++ b/samples/charts/data-chart/polar-line-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { BoatSailingDataItem, BoatSailingData } from './BoatSailingData'; import { IgxLegendComponent, IgxDataChartComponent, IgxNumericAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxPolarLineSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-scatter-chart/src/app.component.ts b/samples/charts/data-chart/polar-scatter-chart/src/app.component.ts index 03ceb77a4..72718300d 100644 --- a/samples/charts/data-chart/polar-scatter-chart/src/app.component.ts +++ b/samples/charts/data-chart/polar-scatter-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { BoatSailingDataItem, BoatSailingData } from './BoatSailingData'; import { IgxDataChartComponent, IgxNumericAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxPolarScatterSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-spline-area-chart/src/app.component.ts b/samples/charts/data-chart/polar-spline-area-chart/src/app.component.ts index 52c2c3a8c..1bcf4c1e0 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/src/app.component.ts +++ b/samples/charts/data-chart/polar-spline-area-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { BoatSailingDataItem, BoatSailingData } from './BoatSailingData'; import { IgxDataChartComponent, IgxNumericAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxPolarSplineAreaSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-spline-chart/src/app.component.ts b/samples/charts/data-chart/polar-spline-chart/src/app.component.ts index 99447b199..6d3be4422 100644 --- a/samples/charts/data-chart/polar-spline-chart/src/app.component.ts +++ b/samples/charts/data-chart/polar-spline-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { BoatSailingDataItem, BoatSailingData } from './BoatSailingData'; import { IgxDataChartComponent, IgxNumericAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxPolarSplineSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-area-chart-styling/src/app.component.ts b/samples/charts/data-chart/radial-area-chart-styling/src/app.component.ts index a6609b0db..89fcdb618 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/src/app.component.ts +++ b/samples/charts/data-chart/radial-area-chart-styling/src/app.component.ts @@ -3,6 +3,7 @@ import { FootballPlayerStatsItem, FootballPlayerStats } from './FootballPlayerSt import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxRadialAreaSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-area-chart/src/app.component.ts b/samples/charts/data-chart/radial-area-chart/src/app.component.ts index 2b8c9b3f3..18e01c46a 100644 --- a/samples/charts/data-chart/radial-area-chart/src/app.component.ts +++ b/samples/charts/data-chart/radial-area-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { FootballPlayerStatsItem, FootballPlayerStats } from './FootballPlayerSt import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxRadialAreaSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-chart-types/src/app.component.ts b/samples/charts/data-chart/radial-chart-types/src/app.component.ts index 531c5ceda..234923469 100644 --- a/samples/charts/data-chart/radial-chart-types/src/app.component.ts +++ b/samples/charts/data-chart/radial-chart-types/src/app.component.ts @@ -14,6 +14,7 @@ import { IgxRadialPieSeriesComponent } from "igniteui-angular-charts"; import { SampleRadialData } from "./SampleRadialData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-column-chart-selection/src/app.component.ts b/samples/charts/data-chart/radial-column-chart-selection/src/app.component.ts index 30f250ba2..665b1d3fc 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/src/app.component.ts +++ b/samples/charts/data-chart/radial-column-chart-selection/src/app.component.ts @@ -3,6 +3,7 @@ import { FootballPlayerStatsItem, FootballPlayerStats } from './FootballPlayerSt import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxRadialColumnSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-column-chart/src/app.component.ts b/samples/charts/data-chart/radial-column-chart/src/app.component.ts index 6f51ac4c9..71b54b025 100644 --- a/samples/charts/data-chart/radial-column-chart/src/app.component.ts +++ b/samples/charts/data-chart/radial-column-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { FootballPlayerStatsItem, FootballPlayerStats } from './FootballPlayerSt import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxRadialColumnSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/radial-label-mode/src/app.component.ts b/samples/charts/data-chart/radial-label-mode/src/app.component.ts index d8409ac4d..ef46fe51b 100644 --- a/samples/charts/data-chart/radial-label-mode/src/app.component.ts +++ b/samples/charts/data-chart/radial-label-mode/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-line-chart/src/app.component.ts b/samples/charts/data-chart/radial-line-chart/src/app.component.ts index cda60a81a..29d5ae8a2 100644 --- a/samples/charts/data-chart/radial-line-chart/src/app.component.ts +++ b/samples/charts/data-chart/radial-line-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { FootballPlayerStatsItem, FootballPlayerStats } from './FootballPlayerSt import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxRadialLineSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-pie-chart/src/app.component.ts b/samples/charts/data-chart/radial-pie-chart/src/app.component.ts index 077457f00..925e81644 100644 --- a/samples/charts/data-chart/radial-pie-chart/src/app.component.ts +++ b/samples/charts/data-chart/radial-pie-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { FootballPlayerStatsItem, FootballPlayerStats } from './FootballPlayerSt import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxRadialPieSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.ts b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.ts index cbc8a23b9..2df647667 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.ts +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/app.component.ts @@ -3,6 +3,7 @@ import { RadialProportionalDataItem, RadialProportionalData } from './RadialProp import { IgxDataChartComponent, IgxProportionalCategoryAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxRadialPieSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.component.ts b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.component.ts index f8c1df8d5..895c16c2d 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.component.ts +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/app.component.ts @@ -3,6 +3,7 @@ import { EnergyRenewableConsumptionItem, EnergyRenewableConsumption } from './En import { IgxLegendComponent, IgxDataChartComponent, IgxProportionalCategoryAngleAxisComponent, IgxNumericRadiusAxisComponent, IgxRadialPieSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/range-area-chart/src/app.component.ts b/samples/charts/data-chart/range-area-chart/src/app.component.ts index d15f056a7..c7646b1cb 100644 --- a/samples/charts/data-chart/range-area-chart/src/app.component.ts +++ b/samples/charts/data-chart/range-area-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { TemperatureRangeDataItem, TemperatureRangeData } from './TemperatureRan import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxRangeAreaSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/range-column-chart/src/app.component.ts b/samples/charts/data-chart/range-column-chart/src/app.component.ts index d2fada297..ae35e62c4 100644 --- a/samples/charts/data-chart/range-column-chart/src/app.component.ts +++ b/samples/charts/data-chart/range-column-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { TemperatureRangeDataItem, TemperatureRangeData } from './TemperatureRan import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxRangeColumnSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts index 8c8254f3d..c5779eb5e 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts @@ -4,6 +4,7 @@ import { WorldStatsItem, WorldStats } from './WorldStats'; import { IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent, IgxSizeScaleComponent, IgxValueBrushScaleComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.ts index 1c3d15717..3da7d8aab 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.ts @@ -4,6 +4,7 @@ import { CountryStatsEuropeItem, CountryStatsEurope } from './CountryStatsEurope import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent, IgxSizeScaleComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.ts index 62b87e728..1bbaec20b 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.ts @@ -3,6 +3,7 @@ import { WorldStatsItem, WorldStats } from './WorldStats'; import { IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent, IgxSizeScaleComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.ts index 1da857659..b4b21503c 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.ts @@ -4,6 +4,7 @@ import { CountryStatsEuropeItem, CountryStatsEurope } from './CountryStatsEurope import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent, IgxSizeScaleComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-line-chart/src/app.component.ts b/samples/charts/data-chart/scatter-line-chart/src/app.component.ts index 37d653fd6..f1ff73fae 100644 --- a/samples/charts/data-chart/scatter-line-chart/src/app.component.ts +++ b/samples/charts/data-chart/scatter-line-chart/src/app.component.ts @@ -4,6 +4,7 @@ import { HealthDataForFranceItem, HealthDataForFrance } from './HealthDataForFra import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxScatterLineSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-point-chart/src/app.component.ts b/samples/charts/data-chart/scatter-point-chart/src/app.component.ts index 769f5bf3c..432919642 100644 --- a/samples/charts/data-chart/scatter-point-chart/src/app.component.ts +++ b/samples/charts/data-chart/scatter-point-chart/src/app.component.ts @@ -4,6 +4,7 @@ import { CountryDemographicAfricanItem, CountryDemographicAfrican } from './Coun import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxScatterSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-spline-chart/src/app.component.ts b/samples/charts/data-chart/scatter-spline-chart/src/app.component.ts index 6598143e8..a125fc658 100644 --- a/samples/charts/data-chart/scatter-spline-chart/src/app.component.ts +++ b/samples/charts/data-chart/scatter-spline-chart/src/app.component.ts @@ -4,6 +4,7 @@ import { HealthDataForFranceItem, HealthDataForFrance } from './HealthDataForFra import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxScatterSplineSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-animations/src/app.component.ts b/samples/charts/data-chart/series-animations/src/app.component.ts index 8bd5457e2..c3baae039 100644 --- a/samples/charts/data-chart/series-animations/src/app.component.ts +++ b/samples/charts/data-chart/series-animations/src/app.component.ts @@ -1,6 +1,7 @@ import { Component, OnInit } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-annotations/src/app.component.ts b/samples/charts/data-chart/series-annotations/src/app.component.ts index 8f9cd9854..c18e853cb 100644 --- a/samples/charts/data-chart/series-annotations/src/app.component.ts +++ b/samples/charts/data-chart/series-annotations/src/app.component.ts @@ -9,6 +9,7 @@ import { IgxSeriesComponent } from "igniteui-angular-charts"; import { FinalValueSelectionMode } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-highlighting/src/app.component.ts b/samples/charts/data-chart/series-highlighting/src/app.component.ts index 087bba383..7569c021d 100644 --- a/samples/charts/data-chart/series-highlighting/src/app.component.ts +++ b/samples/charts/data-chart/series-highlighting/src/app.component.ts @@ -6,6 +6,7 @@ import { IgxCategoryHighlightLayerComponent } from "igniteui-angular-charts"; import { IgxCategoryItemHighlightLayerComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-marker-template/src/app.component.ts b/samples/charts/data-chart/series-marker-template/src/app.component.ts index fe4d777d5..0b18a08dd 100644 --- a/samples/charts/data-chart/series-marker-template/src/app.component.ts +++ b/samples/charts/data-chart/series-marker-template/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxColumnSeriesComponent } from "igniteui-angular-charts"; import { DataTemplateMeasureInfo, DataTemplateRenderInfo } from "igniteui-angular-core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-markers/src/app.component.ts b/samples/charts/data-chart/series-markers/src/app.component.ts index f881d56c3..349c07b38 100644 --- a/samples/charts/data-chart/series-markers/src/app.component.ts +++ b/samples/charts/data-chart/series-markers/src/app.component.ts @@ -1,6 +1,7 @@ import { Component, OnInit } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-tooltips/src/app.component.ts b/samples/charts/data-chart/series-tooltips/src/app.component.ts index dc3dd2498..a67e26bab 100644 --- a/samples/charts/data-chart/series-tooltips/src/app.component.ts +++ b/samples/charts/data-chart/series-tooltips/src/app.component.ts @@ -6,6 +6,7 @@ import { IgxCategoryToolTipLayerComponent } from "igniteui-angular-charts"; import { IgxItemToolTipLayerComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-trendlines/src/app.component.ts b/samples/charts/data-chart/series-trendlines/src/app.component.ts index 7fa695cb6..ffb7cdcee 100644 --- a/samples/charts/data-chart/series-trendlines/src/app.component.ts +++ b/samples/charts/data-chart/series-trendlines/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxNumericYAxisComponent } from "igniteui-angular-charts"; import { SampleFinancialData } from "./SampleFinancialData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-value-overlay/src/app.component.ts b/samples/charts/data-chart/series-value-overlay/src/app.component.ts index 554e40dac..a49699cd0 100644 --- a/samples/charts/data-chart/series-value-overlay/src/app.component.ts +++ b/samples/charts/data-chart/series-value-overlay/src/app.component.ts @@ -1,6 +1,7 @@ import { Component, OnInit } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-area-chart/src/app.component.ts b/samples/charts/data-chart/stacked-100-area-chart/src/app.component.ts index 5f308e1bf..2ec6fca63 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-100-area-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthR import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxStacked100AreaSeriesComponent, IgxStackedFragmentSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/src/app.component.ts b/samples/charts/data-chart/stacked-100-bar-chart/src/app.component.ts index 0a2f7e75d..70c563264 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-100-bar-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { EnergyRenewableConsumptionItem, EnergyRenewableConsumption } from './En import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryYAxisComponent, IgxNumericXAxisComponent, IgxStacked100BarSeriesComponent, IgxStackedFragmentSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-column-chart/src/app.component.ts b/samples/charts/data-chart/stacked-100-column-chart/src/app.component.ts index b4e5c86a8..36da12b45 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-100-column-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { OnlineTrafficByDeviceItem, OnlineTrafficByDevice } from './OnlineTraffi import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxStacked100ColumnSeriesComponent, IgxStackedFragmentSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-line-chart/src/app.component.ts b/samples/charts/data-chart/stacked-100-line-chart/src/app.component.ts index 7f5cc0c7e..f8021106b 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-100-line-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthR import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxStacked100LineSeriesComponent, IgxStackedFragmentSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.component.ts b/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.component.ts index fc41c6d30..86165cc91 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthR import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxStacked100SplineAreaSeriesComponent, IgxStackedFragmentSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/src/app.component.ts b/samples/charts/data-chart/stacked-100-spline-chart/src/app.component.ts index 5bf7866f7..f9773977b 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-100-spline-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthR import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxStacked100SplineSeriesComponent, IgxStackedFragmentSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-area-chart/src/app.component.ts b/samples/charts/data-chart/stacked-area-chart/src/app.component.ts index a3fb6e0ba..9623a8c84 100644 --- a/samples/charts/data-chart/stacked-area-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-area-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthR import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxStackedAreaSeriesComponent, IgxStackedFragmentSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-bar-chart/src/app.component.ts b/samples/charts/data-chart/stacked-bar-chart/src/app.component.ts index 81efffc19..e119c56c2 100644 --- a/samples/charts/data-chart/stacked-bar-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-bar-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { EnergyRenewableConsumptionItem, EnergyRenewableConsumption } from './En import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryYAxisComponent, IgxNumericXAxisComponent, IgxStackedBarSeriesComponent, IgxStackedFragmentSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-chart-types/src/app.component.ts b/samples/charts/data-chart/stacked-chart-types/src/app.component.ts index 5355b50c7..741cca0d5 100644 --- a/samples/charts/data-chart/stacked-chart-types/src/app.component.ts +++ b/samples/charts/data-chart/stacked-chart-types/src/app.component.ts @@ -17,6 +17,7 @@ import { IgxStackedLineSeriesComponent } from "igniteui-angular-charts"; import { IgxStackedSplineSeriesComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-column-chart/src/app.component.ts b/samples/charts/data-chart/stacked-column-chart/src/app.component.ts index 6e6694553..b2d6dfefd 100644 --- a/samples/charts/data-chart/stacked-column-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-column-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthR import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxStackedColumnSeriesComponent, IgxStackedFragmentSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-line-chart/src/app.component.ts b/samples/charts/data-chart/stacked-line-chart/src/app.component.ts index bde10a552..019b3b33c 100644 --- a/samples/charts/data-chart/stacked-line-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-line-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthR import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxStackedLineSeriesComponent, IgxStackedFragmentSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/src/app.component.ts b/samples/charts/data-chart/stacked-spline-area-chart/src/app.component.ts index 198cc13c8..b36227f3f 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-spline-area-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthR import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxStackedSplineAreaSeriesComponent, IgxStackedFragmentSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-spline-chart/src/app.component.ts b/samples/charts/data-chart/stacked-spline-chart/src/app.component.ts index d37dd2475..5868a0519 100644 --- a/samples/charts/data-chart/stacked-spline-chart/src/app.component.ts +++ b/samples/charts/data-chart/stacked-spline-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthR import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxStackedSplineSeriesComponent, IgxStackedFragmentSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/tooltip-template/src/app.component.ts b/samples/charts/data-chart/tooltip-template/src/app.component.ts index e0d2d2125..287e5d99a 100644 --- a/samples/charts/data-chart/tooltip-template/src/app.component.ts +++ b/samples/charts/data-chart/tooltip-template/src/app.component.ts @@ -2,6 +2,7 @@ import { Component } from "@angular/core"; import { UnknownValuePlotting } from "igniteui-angular-core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/transition-event/src/app.component.ts b/samples/charts/data-chart/transition-event/src/app.component.ts index ea3de101f..ede9e5c10 100644 --- a/samples/charts/data-chart/transition-event/src/app.component.ts +++ b/samples/charts/data-chart/transition-event/src/app.component.ts @@ -11,6 +11,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-area-series/src/app.component.ts b/samples/charts/data-chart/type-category-area-series/src/app.component.ts index b68d00979..1c263facf 100644 --- a/samples/charts/data-chart/type-category-area-series/src/app.component.ts +++ b/samples/charts/data-chart/type-category-area-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-bar-series/src/app.component.ts b/samples/charts/data-chart/type-category-bar-series/src/app.component.ts index b68d00979..1c263facf 100644 --- a/samples/charts/data-chart/type-category-bar-series/src/app.component.ts +++ b/samples/charts/data-chart/type-category-bar-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-column-series/src/app.component.ts b/samples/charts/data-chart/type-category-column-series/src/app.component.ts index b68d00979..1c263facf 100644 --- a/samples/charts/data-chart/type-category-column-series/src/app.component.ts +++ b/samples/charts/data-chart/type-category-column-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-line-series/src/app.component.ts b/samples/charts/data-chart/type-category-line-series/src/app.component.ts index c83615b0c..29cec4ad3 100644 --- a/samples/charts/data-chart/type-category-line-series/src/app.component.ts +++ b/samples/charts/data-chart/type-category-line-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-point-series/src/app.component.ts b/samples/charts/data-chart/type-category-point-series/src/app.component.ts index c83615b0c..29cec4ad3 100644 --- a/samples/charts/data-chart/type-category-point-series/src/app.component.ts +++ b/samples/charts/data-chart/type-category-point-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-series/src/app.component.ts b/samples/charts/data-chart/type-category-series/src/app.component.ts index 35bae54cf..5310b7caf 100644 --- a/samples/charts/data-chart/type-category-series/src/app.component.ts +++ b/samples/charts/data-chart/type-category-series/src/app.component.ts @@ -21,6 +21,7 @@ import { MarkerType } from "igniteui-angular-charts"; import { IgxLegendComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-spline-area-series/src/app.component.ts b/samples/charts/data-chart/type-category-spline-area-series/src/app.component.ts index b68d00979..1c263facf 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/src/app.component.ts +++ b/samples/charts/data-chart/type-category-spline-area-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-spline-series/src/app.component.ts b/samples/charts/data-chart/type-category-spline-series/src/app.component.ts index c83615b0c..29cec4ad3 100644 --- a/samples/charts/data-chart/type-category-spline-series/src/app.component.ts +++ b/samples/charts/data-chart/type-category-spline-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-step-area-series/src/app.component.ts b/samples/charts/data-chart/type-category-step-area-series/src/app.component.ts index c83615b0c..29cec4ad3 100644 --- a/samples/charts/data-chart/type-category-step-area-series/src/app.component.ts +++ b/samples/charts/data-chart/type-category-step-area-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-step-line-series/src/app.component.ts b/samples/charts/data-chart/type-category-step-line-series/src/app.component.ts index c83615b0c..29cec4ad3 100644 --- a/samples/charts/data-chart/type-category-step-line-series/src/app.component.ts +++ b/samples/charts/data-chart/type-category-step-line-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-waterfall-series/src/app.component.ts b/samples/charts/data-chart/type-category-waterfall-series/src/app.component.ts index c83615b0c..29cec4ad3 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/src/app.component.ts +++ b/samples/charts/data-chart/type-category-waterfall-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-area-indicators/src/app.component.ts b/samples/charts/data-chart/type-financial-area-indicators/src/app.component.ts index b2fbef07f..4b6ca6300 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/src/app.component.ts +++ b/samples/charts/data-chart/type-financial-area-indicators/src/app.component.ts @@ -36,6 +36,7 @@ import { IgxNumericYAxisComponent } from "igniteui-angular-charts"; import { IndicatorDisplayType } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/src/app.component.ts b/samples/charts/data-chart/type-financial-candlestick-series/src/app.component.ts index 83d8c8c92..e9e9e876d 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/src/app.component.ts +++ b/samples/charts/data-chart/type-financial-candlestick-series/src/app.component.ts @@ -2,6 +2,7 @@ import { Component } from "@angular/core"; import { SampleFinancialData } from "./SampleFinancialData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-column-indicators/src/app.component.ts b/samples/charts/data-chart/type-financial-column-indicators/src/app.component.ts index 89f32bfe7..4f3f17ffa 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/src/app.component.ts +++ b/samples/charts/data-chart/type-financial-column-indicators/src/app.component.ts @@ -36,6 +36,7 @@ import { IgxNumericYAxisComponent } from "igniteui-angular-charts"; import { IndicatorDisplayType } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-line-indicators/src/app.component.ts b/samples/charts/data-chart/type-financial-line-indicators/src/app.component.ts index 94cd84dac..63a95954d 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/src/app.component.ts +++ b/samples/charts/data-chart/type-financial-line-indicators/src/app.component.ts @@ -36,6 +36,7 @@ import { IgxNumericYAxisComponent } from "igniteui-angular-charts"; import { IndicatorDisplayType } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/src/app.component.ts b/samples/charts/data-chart/type-financial-ohlc-series/src/app.component.ts index 837e16073..2a59ee90e 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/src/app.component.ts +++ b/samples/charts/data-chart/type-financial-ohlc-series/src/app.component.ts @@ -2,6 +2,7 @@ import { Component } from "@angular/core"; import { SampleFinancialData } from "./SampleFinancialData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-overlays/src/app.component.ts b/samples/charts/data-chart/type-financial-overlays/src/app.component.ts index 16c405358..eea791cf2 100644 --- a/samples/charts/data-chart/type-financial-overlays/src/app.component.ts +++ b/samples/charts/data-chart/type-financial-overlays/src/app.component.ts @@ -7,6 +7,7 @@ import { IgxCategoryXAxisComponent } from "igniteui-angular-charts"; import { IgxDataChartComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-series/src/app.component.ts b/samples/charts/data-chart/type-financial-series/src/app.component.ts index b158b0828..dfde8f2ec 100644 --- a/samples/charts/data-chart/type-financial-series/src/app.component.ts +++ b/samples/charts/data-chart/type-financial-series/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, OnInit } from "@angular/core"; import { SampleFinancialData } from "./SampleFinancialData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-area-series/src/app.component.ts b/samples/charts/data-chart/type-radial-area-series/src/app.component.ts index 2d8b40b8b..1e13d7c55 100644 --- a/samples/charts/data-chart/type-radial-area-series/src/app.component.ts +++ b/samples/charts/data-chart/type-radial-area-series/src/app.component.ts @@ -2,6 +2,7 @@ import { Component } from "@angular/core"; import { SampleRadialData } from "./SampleRadialData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-column-series/src/app.component.ts b/samples/charts/data-chart/type-radial-column-series/src/app.component.ts index e80a1ab4c..8f62ba4a0 100644 --- a/samples/charts/data-chart/type-radial-column-series/src/app.component.ts +++ b/samples/charts/data-chart/type-radial-column-series/src/app.component.ts @@ -2,6 +2,7 @@ import { Component } from "@angular/core"; import { SampleRadialData } from "./SampleRadialData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-line-series/src/app.component.ts b/samples/charts/data-chart/type-radial-line-series/src/app.component.ts index e80a1ab4c..8f62ba4a0 100644 --- a/samples/charts/data-chart/type-radial-line-series/src/app.component.ts +++ b/samples/charts/data-chart/type-radial-line-series/src/app.component.ts @@ -2,6 +2,7 @@ import { Component } from "@angular/core"; import { SampleRadialData } from "./SampleRadialData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-pie-series/src/app.component.ts b/samples/charts/data-chart/type-radial-pie-series/src/app.component.ts index a304c1ea2..0fc8a9cac 100644 --- a/samples/charts/data-chart/type-radial-pie-series/src/app.component.ts +++ b/samples/charts/data-chart/type-radial-pie-series/src/app.component.ts @@ -2,6 +2,7 @@ import { Component } from "@angular/core"; import { SampleRadialData } from "./SampleRadialData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-area-series/src/app.component.ts b/samples/charts/data-chart/type-range-area-series/src/app.component.ts index 41cc3b870..a467538b3 100644 --- a/samples/charts/data-chart/type-range-area-series/src/app.component.ts +++ b/samples/charts/data-chart/type-range-area-series/src/app.component.ts @@ -2,6 +2,7 @@ import { Component } from "@angular/core"; import { SampleRangeData } from "./SampleRangeData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-column-series/src/app.component.ts b/samples/charts/data-chart/type-range-column-series/src/app.component.ts index d5d108326..b2d1443a1 100644 --- a/samples/charts/data-chart/type-range-column-series/src/app.component.ts +++ b/samples/charts/data-chart/type-range-column-series/src/app.component.ts @@ -2,6 +2,7 @@ import { Component } from "@angular/core"; import { SampleRangeData } from "./SampleRangeData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-series/src/app.component.ts b/samples/charts/data-chart/type-range-series/src/app.component.ts index 816d24d92..2a9820ddd 100644 --- a/samples/charts/data-chart/type-range-series/src/app.component.ts +++ b/samples/charts/data-chart/type-range-series/src/app.component.ts @@ -7,6 +7,7 @@ import { IgxRangeAreaSeriesComponent } from "igniteui-angular-charts"; import { IgxRangeColumnSeriesComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-area-series/src/app.component.ts b/samples/charts/data-chart/type-scatter-area-series/src/app.component.ts index abbb288f9..2c7aead68 100644 --- a/samples/charts/data-chart/type-scatter-area-series/src/app.component.ts +++ b/samples/charts/data-chart/type-scatter-area-series/src/app.component.ts @@ -6,6 +6,7 @@ import { IgxScatterAreaSeriesComponent } from "igniteui-angular-charts"; import { SampleScatterData } from "./SampleScatterData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/src/app.component.ts b/samples/charts/data-chart/type-scatter-bubble-series/src/app.component.ts index 8c0fab999..35181d3ed 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/src/app.component.ts +++ b/samples/charts/data-chart/type-scatter-bubble-series/src/app.component.ts @@ -11,6 +11,7 @@ import { BrushSelectionMode } from "igniteui-angular-charts"; import { SampleScatterStats } from "./SampleScatterStats"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-contour-series/src/app.component.ts b/samples/charts/data-chart/type-scatter-contour-series/src/app.component.ts index e9f378d01..b06d23f5b 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/src/app.component.ts +++ b/samples/charts/data-chart/type-scatter-contour-series/src/app.component.ts @@ -8,6 +8,7 @@ import { IgxScatterContourSeriesComponent } from "igniteui-angular-charts"; import { IgxValueBrushScaleComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-hd-series/src/app.component.ts b/samples/charts/data-chart/type-scatter-hd-series/src/app.component.ts index f4650c3fb..c83a3e0d2 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/src/app.component.ts +++ b/samples/charts/data-chart/type-scatter-hd-series/src/app.component.ts @@ -6,6 +6,7 @@ import { IgxHighDensityScatterSeriesComponent } from "igniteui-angular-charts"; import { SampleDensityData } from "./SampleDensityData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-line-series/src/app.component.ts b/samples/charts/data-chart/type-scatter-line-series/src/app.component.ts index 8616c5ce6..de6ec5612 100644 --- a/samples/charts/data-chart/type-scatter-line-series/src/app.component.ts +++ b/samples/charts/data-chart/type-scatter-line-series/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, OnInit } from "@angular/core"; import { SampleScatterStats } from "./SampleScatterStats"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-point-series/src/app.component.ts b/samples/charts/data-chart/type-scatter-point-series/src/app.component.ts index a40febe7c..0941fa3be 100644 --- a/samples/charts/data-chart/type-scatter-point-series/src/app.component.ts +++ b/samples/charts/data-chart/type-scatter-point-series/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, OnInit } from "@angular/core"; import { SampleScatterStats } from "./SampleScatterStats"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/src/app.component.ts b/samples/charts/data-chart/type-scatter-polygon-series/src/app.component.ts index 339c0e0dc..6c9f73341 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/src/app.component.ts +++ b/samples/charts/data-chart/type-scatter-polygon-series/src/app.component.ts @@ -3,6 +3,7 @@ import { IgxStyleShapeEventArgs } from "igniteui-angular-charts"; import { IgxScatterPolygonSeriesComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/src/app.component.ts b/samples/charts/data-chart/type-scatter-polyline-series/src/app.component.ts index 095db165b..c5e68e6bc 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/src/app.component.ts +++ b/samples/charts/data-chart/type-scatter-polyline-series/src/app.component.ts @@ -3,6 +3,7 @@ import { IgxStyleShapeEventArgs } from "igniteui-angular-charts"; import { IgxScatterPolylineSeriesComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-series/src/app.component.ts b/samples/charts/data-chart/type-scatter-series/src/app.component.ts index 0d78b8470..393276a7a 100644 --- a/samples/charts/data-chart/type-scatter-series/src/app.component.ts +++ b/samples/charts/data-chart/type-scatter-series/src/app.component.ts @@ -21,6 +21,7 @@ import { IgxLegendComponent } from "igniteui-angular-charts"; import { SampleScatterStats } from "./SampleScatterStats"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-spline-series/src/app.component.ts b/samples/charts/data-chart/type-scatter-spline-series/src/app.component.ts index a40febe7c..0941fa3be 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/src/app.component.ts +++ b/samples/charts/data-chart/type-scatter-spline-series/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, OnInit } from "@angular/core"; import { SampleScatterStats } from "./SampleScatterStats"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-shape-series/src/app.component.ts b/samples/charts/data-chart/type-shape-series/src/app.component.ts index fccb4a291..80554e66e 100644 --- a/samples/charts/data-chart/type-shape-series/src/app.component.ts +++ b/samples/charts/data-chart/type-shape-series/src/app.component.ts @@ -7,6 +7,7 @@ import { IgxScatterPolylineSeriesComponent } from "igniteui-angular-charts"; import { SampleShapeData } from "./SampleShapeData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-area-series/src/app.component.ts b/samples/charts/data-chart/type-stacked-100-area-series/src/app.component.ts index 206ddf4b0..779a865e4 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/src/app.component.ts +++ b/samples/charts/data-chart/type-stacked-100-area-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/src/app.component.ts b/samples/charts/data-chart/type-stacked-100-bar-series/src/app.component.ts index 666a5f11f..6284e5e7a 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/src/app.component.ts +++ b/samples/charts/data-chart/type-stacked-100-bar-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-column-series/src/app.component.ts b/samples/charts/data-chart/type-stacked-100-column-series/src/app.component.ts index 666a5f11f..6284e5e7a 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/src/app.component.ts +++ b/samples/charts/data-chart/type-stacked-100-column-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-line-series/src/app.component.ts b/samples/charts/data-chart/type-stacked-100-line-series/src/app.component.ts index 666a5f11f..6284e5e7a 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/src/app.component.ts +++ b/samples/charts/data-chart/type-stacked-100-line-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/app.component.ts b/samples/charts/data-chart/type-stacked-100-spline-area-series/src/app.component.ts index 666a5f11f..6284e5e7a 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/src/app.component.ts +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/src/app.component.ts b/samples/charts/data-chart/type-stacked-100-spline-series/src/app.component.ts index 666a5f11f..6284e5e7a 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/src/app.component.ts +++ b/samples/charts/data-chart/type-stacked-100-spline-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-area-series/src/app.component.ts b/samples/charts/data-chart/type-stacked-area-series/src/app.component.ts index 666a5f11f..6284e5e7a 100644 --- a/samples/charts/data-chart/type-stacked-area-series/src/app.component.ts +++ b/samples/charts/data-chart/type-stacked-area-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-bar-series/src/app.component.ts b/samples/charts/data-chart/type-stacked-bar-series/src/app.component.ts index 206ddf4b0..779a865e4 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/src/app.component.ts +++ b/samples/charts/data-chart/type-stacked-bar-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-column-series/src/app.component.ts b/samples/charts/data-chart/type-stacked-column-series/src/app.component.ts index 666a5f11f..6284e5e7a 100644 --- a/samples/charts/data-chart/type-stacked-column-series/src/app.component.ts +++ b/samples/charts/data-chart/type-stacked-column-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-line-series/src/app.component.ts b/samples/charts/data-chart/type-stacked-line-series/src/app.component.ts index 8d83ccb7a..6cc140e1e 100644 --- a/samples/charts/data-chart/type-stacked-line-series/src/app.component.ts +++ b/samples/charts/data-chart/type-stacked-line-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/src/app.component.ts b/samples/charts/data-chart/type-stacked-spline-area-series/src/app.component.ts index 666a5f11f..6284e5e7a 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/src/app.component.ts +++ b/samples/charts/data-chart/type-stacked-spline-area-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-spline-series/src/app.component.ts b/samples/charts/data-chart/type-stacked-spline-series/src/app.component.ts index 666a5f11f..6284e5e7a 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/src/app.component.ts +++ b/samples/charts/data-chart/type-stacked-spline-series/src/app.component.ts @@ -1,6 +1,7 @@ import { Component } from "@angular/core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/waterfall-chart/src/app.component.ts b/samples/charts/data-chart/waterfall-chart/src/app.component.ts index 8522570c5..e63050876 100644 --- a/samples/charts/data-chart/waterfall-chart/src/app.component.ts +++ b/samples/charts/data-chart/waterfall-chart/src/app.component.ts @@ -3,6 +3,7 @@ import { CompanyIncomeDataItem, CompanyIncomeData } from './CompanyIncomeData'; import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxWaterfallSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/animation/src/app.component.ts b/samples/charts/data-pie-chart/animation/src/app.component.ts index 7bd639bf7..7227e8072 100644 --- a/samples/charts/data-pie-chart/animation/src/app.component.ts +++ b/samples/charts/data-pie-chart/animation/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/highlight-filter/src/app.component.ts b/samples/charts/data-pie-chart/highlight-filter/src/app.component.ts index 1ff8d408c..561dd1d55 100644 --- a/samples/charts/data-pie-chart/highlight-filter/src/app.component.ts +++ b/samples/charts/data-pie-chart/highlight-filter/src/app.component.ts @@ -5,6 +5,7 @@ import { OnlineTrafficHighlightDesktopOnlyItem, OnlineTrafficHighlightDesktopOnl import { IgxDataPieChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/highlighting/src/app.component.ts b/samples/charts/data-pie-chart/highlighting/src/app.component.ts index 7bd639bf7..7227e8072 100644 --- a/samples/charts/data-pie-chart/highlighting/src/app.component.ts +++ b/samples/charts/data-pie-chart/highlighting/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index aa557375b..0b236f859 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/legend/src/app.component.ts b/samples/charts/data-pie-chart/legend/src/app.component.ts index ce009fffc..0fc41e232 100644 --- a/samples/charts/data-pie-chart/legend/src/app.component.ts +++ b/samples/charts/data-pie-chart/legend/src/app.component.ts @@ -4,6 +4,7 @@ import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand import { IgxItemLegendComponent, IgxDataPieChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/others/src/app.component.ts b/samples/charts/data-pie-chart/others/src/app.component.ts index 7bd639bf7..7227e8072 100644 --- a/samples/charts/data-pie-chart/others/src/app.component.ts +++ b/samples/charts/data-pie-chart/others/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/overview/src/app.component.ts b/samples/charts/data-pie-chart/overview/src/app.component.ts index 2ddce8045..e41a87419 100644 --- a/samples/charts/data-pie-chart/overview/src/app.component.ts +++ b/samples/charts/data-pie-chart/overview/src/app.component.ts @@ -3,6 +3,7 @@ import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand import { IgxDataPieChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/selection/src/app.component.ts b/samples/charts/data-pie-chart/selection/src/app.component.ts index 7bd639bf7..7227e8072 100644 --- a/samples/charts/data-pie-chart/selection/src/app.component.ts +++ b/samples/charts/data-pie-chart/selection/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/animation/src/app.component.ts b/samples/charts/doughnut-chart/animation/src/app.component.ts index a9c5a70c6..c91559bb3 100644 --- a/samples/charts/doughnut-chart/animation/src/app.component.ts +++ b/samples/charts/doughnut-chart/animation/src/app.component.ts @@ -2,6 +2,7 @@ import { AfterViewInit, Component, ElementRef, NgZone, ViewChild } from "@angula import { IgxDoughnutChartComponent, IgxRingSeriesComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/explosion/src/app.component.ts b/samples/charts/doughnut-chart/explosion/src/app.component.ts index 9f836038a..c51680173 100644 --- a/samples/charts/doughnut-chart/explosion/src/app.component.ts +++ b/samples/charts/doughnut-chart/explosion/src/app.component.ts @@ -3,6 +3,7 @@ import { IgxDoughnutChartComponent } from "igniteui-angular-charts"; import { IgxRingSeriesComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/legend/src/app.component.ts b/samples/charts/doughnut-chart/legend/src/app.component.ts index d7720aa4b..dbe28851b 100644 --- a/samples/charts/doughnut-chart/legend/src/app.component.ts +++ b/samples/charts/doughnut-chart/legend/src/app.component.ts @@ -3,6 +3,7 @@ import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand import { IgxItemLegendComponent, IgxDoughnutChartComponent, IgxRingSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/overview/src/app.component.ts b/samples/charts/doughnut-chart/overview/src/app.component.ts index 1ea53ff1f..0df32ef64 100644 --- a/samples/charts/doughnut-chart/overview/src/app.component.ts +++ b/samples/charts/doughnut-chart/overview/src/app.component.ts @@ -3,6 +3,7 @@ import { CompanyMarketSharesItem, CompanyMarketShares } from './CompanyMarketSha import { IgxDoughnutChartComponent, IgxRingSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/rings/src/app.component.ts b/samples/charts/doughnut-chart/rings/src/app.component.ts index cd0d244e0..ac337842c 100644 --- a/samples/charts/doughnut-chart/rings/src/app.component.ts +++ b/samples/charts/doughnut-chart/rings/src/app.component.ts @@ -4,6 +4,7 @@ import { CalendarMonthsItem, CalendarMonths } from './CalendarMonths'; import { IgxDoughnutChartComponent, IgxRingSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/selection/src/app.component.ts b/samples/charts/doughnut-chart/selection/src/app.component.ts index f04e7f712..55123467e 100644 --- a/samples/charts/doughnut-chart/selection/src/app.component.ts +++ b/samples/charts/doughnut-chart/selection/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxRingSeriesComponent } from "igniteui-angular-charts"; import { IgxSliceClickEventArgs } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/annotations/src/app.component.ts b/samples/charts/financial-chart/annotations/src/app.component.ts index c3b0b8736..62048baf8 100644 --- a/samples/charts/financial-chart/annotations/src/app.component.ts +++ b/samples/charts/financial-chart/annotations/src/app.component.ts @@ -3,6 +3,7 @@ import { IgxFinancialChartComponent } from "igniteui-angular-charts"; import { StocksUtility } from "./StocksUtility"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [ StocksUtility ], selector: "app-root", diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/axis-types/src/app.component.ts b/samples/charts/financial-chart/axis-types/src/app.component.ts index 6faf9e1ab..7b9a951bf 100644 --- a/samples/charts/financial-chart/axis-types/src/app.component.ts +++ b/samples/charts/financial-chart/axis-types/src/app.component.ts @@ -2,6 +2,7 @@ import { ChangeDetectionStrategy, Component } from "@angular/core"; import { FinancialDataService } from "./FinancialDataService"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [ FinancialDataService ], selector: "app-root", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/src/app.component.ts b/samples/charts/financial-chart/data-legend-formatting-currency/src/app.component.ts index 6fcf7c128..002306671 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/src/app.component.ts +++ b/samples/charts/financial-chart/data-legend-formatting-currency/src/app.component.ts @@ -3,6 +3,7 @@ import { MultipleStocks } from './MultipleStocks'; import { IgxDataLegendComponent, IgxFinancialChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/app.component.ts b/samples/charts/financial-chart/data-legend-styling-props/src/app.component.ts index 43a3aeb72..d472b3bfb 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/src/app.component.ts +++ b/samples/charts/financial-chart/data-legend-styling-props/src/app.component.ts @@ -3,6 +3,7 @@ import { StockGoogleItem, StockGoogle } from './StockGoogle'; import { IgxDataLegendComponent, IgxFinancialChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend/src/app.component.ts b/samples/charts/financial-chart/data-legend/src/app.component.ts index 6fcf7c128..002306671 100644 --- a/samples/charts/financial-chart/data-legend/src/app.component.ts +++ b/samples/charts/financial-chart/data-legend/src/app.component.ts @@ -3,6 +3,7 @@ import { MultipleStocks } from './MultipleStocks'; import { IgxDataLegendComponent, IgxFinancialChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/app.component.ts b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/app.component.ts index b9221ae86..bb260e027 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/app.component.ts +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/app.component.ts @@ -3,6 +3,7 @@ import { MultipleStocks } from './MultipleStocks'; import { IgxFinancialChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/src/app.component.ts b/samples/charts/financial-chart/data-tooltip-styling-props/src/app.component.ts index 8b4e015ed..f05af8427 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/src/app.component.ts +++ b/samples/charts/financial-chart/data-tooltip-styling-props/src/app.component.ts @@ -3,6 +3,7 @@ import { StockGoogleItem, StockGoogle } from './StockGoogle'; import { IgxFinancialChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip/src/app.component.ts b/samples/charts/financial-chart/data-tooltip/src/app.component.ts index b9221ae86..bb260e027 100644 --- a/samples/charts/financial-chart/data-tooltip/src/app.component.ts +++ b/samples/charts/financial-chart/data-tooltip/src/app.component.ts @@ -3,6 +3,7 @@ import { MultipleStocks } from './MultipleStocks'; import { IgxFinancialChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/format-specifiers/src/app.component.ts b/samples/charts/financial-chart/format-specifiers/src/app.component.ts index 37c4fabf2..4f04f365f 100644 --- a/samples/charts/financial-chart/format-specifiers/src/app.component.ts +++ b/samples/charts/financial-chart/format-specifiers/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxDataLegendComponent, IgxFinancialChartComponent } from 'igniteui-ang import { IgxNumberFormatSpecifier, IgxDateTimeFormatSpecifier } from 'igniteui-angular-core'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/high-frequency/src/app.component.ts b/samples/charts/financial-chart/high-frequency/src/app.component.ts index ddc7e6d4d..0aec10936 100644 --- a/samples/charts/financial-chart/high-frequency/src/app.component.ts +++ b/samples/charts/financial-chart/high-frequency/src/app.component.ts @@ -2,6 +2,7 @@ import { AfterViewInit, ChangeDetectionStrategy, Component, ElementRef, Input, N import { IgxFinancialChartComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/high-volume/src/app.component.ts b/samples/charts/financial-chart/high-volume/src/app.component.ts index 0d621f9b5..7f3a744f4 100644 --- a/samples/charts/financial-chart/high-volume/src/app.component.ts +++ b/samples/charts/financial-chart/high-volume/src/app.component.ts @@ -2,6 +2,7 @@ import { ChangeDetectionStrategy, Component } from "@angular/core"; import { GenerateHourlyPricesService } from "./GenerateHourlyPricesService"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [ GenerateHourlyPricesService ], selector: "app-root", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/indicator-customization/src/app.component.ts b/samples/charts/financial-chart/indicator-customization/src/app.component.ts index b18febae4..9d1833e23 100644 --- a/samples/charts/financial-chart/indicator-customization/src/app.component.ts +++ b/samples/charts/financial-chart/indicator-customization/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxFinancialEventArgs } from "igniteui-angular-charts"; import { FinancialDataService } from "./FinancialDataService"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [FinancialDataService], selector: "app-root", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/indicator-types/src/app.component.ts b/samples/charts/financial-chart/indicator-types/src/app.component.ts index 1d82f126c..64e5272ba 100644 --- a/samples/charts/financial-chart/indicator-types/src/app.component.ts +++ b/samples/charts/financial-chart/indicator-types/src/app.component.ts @@ -2,6 +2,7 @@ import { ChangeDetectionStrategy, Component } from "@angular/core"; import { FinancialDataService } from "./FinancialDataService"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [ FinancialDataService ], selector: "app-root", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/multiple-data/src/app.component.ts b/samples/charts/financial-chart/multiple-data/src/app.component.ts index 3e8bec0d4..cacbf1367 100644 --- a/samples/charts/financial-chart/multiple-data/src/app.component.ts +++ b/samples/charts/financial-chart/multiple-data/src/app.component.ts @@ -2,6 +2,7 @@ import { ChangeDetectionStrategy, Component } from "@angular/core"; import { FinancialDataService } from "./FinancialDataService"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [ FinancialDataService ], selector: "app-root", diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/multiple-feeds/src/app.component.ts b/samples/charts/financial-chart/multiple-feeds/src/app.component.ts index 3817f7081..0cdfbec19 100644 --- a/samples/charts/financial-chart/multiple-feeds/src/app.component.ts +++ b/samples/charts/financial-chart/multiple-feeds/src/app.component.ts @@ -3,6 +3,7 @@ import { IgxFinancialChartComponent } from "igniteui-angular-charts"; import { IgxLegendComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/overview/src/app.component.ts b/samples/charts/financial-chart/overview/src/app.component.ts index 5d9889eaf..d67cfb394 100644 --- a/samples/charts/financial-chart/overview/src/app.component.ts +++ b/samples/charts/financial-chart/overview/src/app.component.ts @@ -2,6 +2,7 @@ import { ChangeDetectionStrategy, Component } from "@angular/core"; import { FinancialDataService } from "./FinancialDataService"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [ FinancialDataService ], selector: "app-root", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/panes/src/app.component.ts b/samples/charts/financial-chart/panes/src/app.component.ts index 4a7135888..b75688518 100644 --- a/samples/charts/financial-chart/panes/src/app.component.ts +++ b/samples/charts/financial-chart/panes/src/app.component.ts @@ -10,6 +10,7 @@ import { IgxFinancialOverlayTypeCollection } from "igniteui-angular-charts"; import { StockDataService } from "./StockDataService"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [ StockDataService ], selector: "app-root", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/performance/src/app.component.ts b/samples/charts/financial-chart/performance/src/app.component.ts index 1165d75a2..0e59d4d95 100644 --- a/samples/charts/financial-chart/performance/src/app.component.ts +++ b/samples/charts/financial-chart/performance/src/app.component.ts @@ -2,6 +2,7 @@ import { ChangeDetectionStrategy, Component } from "@angular/core"; import { GenerateOhlcPricesService } from "./GenerateOhlcPricesService"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [ GenerateOhlcPricesService ], selector: "app-root", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/scrollbars/src/app.component.ts b/samples/charts/financial-chart/scrollbars/src/app.component.ts index b9221ae86..bb260e027 100644 --- a/samples/charts/financial-chart/scrollbars/src/app.component.ts +++ b/samples/charts/financial-chart/scrollbars/src/app.component.ts @@ -3,6 +3,7 @@ import { MultipleStocks } from './MultipleStocks'; import { IgxFinancialChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/stock-index-chart/src/app.component.ts b/samples/charts/financial-chart/stock-index-chart/src/app.component.ts index 0e9ee9079..c86349a85 100644 --- a/samples/charts/financial-chart/stock-index-chart/src/app.component.ts +++ b/samples/charts/financial-chart/stock-index-chart/src/app.component.ts @@ -2,6 +2,7 @@ import { ChangeDetectionStrategy, Component } from "@angular/core"; import { StockIndexDataService } from "./StockIndexDataService"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [ StockIndexDataService ], selector: "app-root", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/styling/src/app.component.ts b/samples/charts/financial-chart/styling/src/app.component.ts index faa13edc2..bde9b3899 100644 --- a/samples/charts/financial-chart/styling/src/app.component.ts +++ b/samples/charts/financial-chart/styling/src/app.component.ts @@ -2,6 +2,7 @@ import { ChangeDetectionStrategy, Component } from "@angular/core"; import { FinancialDataService } from "./FinancialDataService"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [ FinancialDataService ], selector: "app-root", diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/theming/src/app.component.ts b/samples/charts/financial-chart/theming/src/app.component.ts index ea60448b1..11aa5502f 100644 --- a/samples/charts/financial-chart/theming/src/app.component.ts +++ b/samples/charts/financial-chart/theming/src/app.component.ts @@ -6,6 +6,7 @@ import { IgxFinancialChartComponent } from "igniteui-angular-charts"; import { StockDataService } from "./StockDataService"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [ StockDataService ], selector: "app-root", diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/time-based-data/src/app.component.ts b/samples/charts/financial-chart/time-based-data/src/app.component.ts index 08b51b2fb..2cff7d8b3 100644 --- a/samples/charts/financial-chart/time-based-data/src/app.component.ts +++ b/samples/charts/financial-chart/time-based-data/src/app.component.ts @@ -3,6 +3,7 @@ import { IgxFinancialChartComponent } from "igniteui-angular-charts"; import { FinancialDataService } from "./FinancialDataService"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [ FinancialDataService ], selector: "app-root", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/titles/src/app.component.ts b/samples/charts/financial-chart/titles/src/app.component.ts index 8fe0edf67..7e2c455f5 100644 --- a/samples/charts/financial-chart/titles/src/app.component.ts +++ b/samples/charts/financial-chart/titles/src/app.component.ts @@ -2,6 +2,7 @@ import { ChangeDetectionStrategy, Component } from "@angular/core"; import { StockDataService } from "./StockDataService"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [ StockDataService ], selector: "app-root", diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/tooltip-template/src/app.component.ts b/samples/charts/financial-chart/tooltip-template/src/app.component.ts index 158ede403..853f2a3a4 100644 --- a/samples/charts/financial-chart/tooltip-template/src/app.component.ts +++ b/samples/charts/financial-chart/tooltip-template/src/app.component.ts @@ -2,6 +2,7 @@ import { ChangeDetectionStrategy, Component } from "@angular/core"; import { FinancialDataService } from "./FinancialDataService"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [ FinancialDataService ], selector: "app-root", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/tooltip-types/src/app.component.ts b/samples/charts/financial-chart/tooltip-types/src/app.component.ts index ad7971fd3..f3b0d31dc 100644 --- a/samples/charts/financial-chart/tooltip-types/src/app.component.ts +++ b/samples/charts/financial-chart/tooltip-types/src/app.component.ts @@ -2,6 +2,7 @@ import { ChangeDetectionStrategy, Component } from "@angular/core"; import { FinancialDataService } from "./FinancialDataService"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [ FinancialDataService ], selector: "app-root", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/trendlines/src/app.component.ts b/samples/charts/financial-chart/trendlines/src/app.component.ts index 449e59f9a..c1067194d 100644 --- a/samples/charts/financial-chart/trendlines/src/app.component.ts +++ b/samples/charts/financial-chart/trendlines/src/app.component.ts @@ -2,6 +2,7 @@ import { ChangeDetectionStrategy, Component } from "@angular/core"; import { FinancialDataService } from "./FinancialDataService"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [FinancialDataService], selector: "app-root", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/volume-types/src/app.component.ts b/samples/charts/financial-chart/volume-types/src/app.component.ts index 1d82f126c..64e5272ba 100644 --- a/samples/charts/financial-chart/volume-types/src/app.component.ts +++ b/samples/charts/financial-chart/volume-types/src/app.component.ts @@ -2,6 +2,7 @@ import { ChangeDetectionStrategy, Component } from "@angular/core"; import { FinancialDataService } from "./FinancialDataService"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [ FinancialDataService ], selector: "app-root", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/animation/src/app.component.ts b/samples/charts/pie-chart/animation/src/app.component.ts index 64ef9f5d3..c42e490b4 100644 --- a/samples/charts/pie-chart/animation/src/app.component.ts +++ b/samples/charts/pie-chart/animation/src/app.component.ts @@ -2,6 +2,7 @@ import { AfterViewInit, Component, ElementRef, NgZone, ViewChild } from "@angula import { IgxPieChartComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/explosion/src/app.component.ts b/samples/charts/pie-chart/explosion/src/app.component.ts index b48566a09..4a36cadab 100644 --- a/samples/charts/pie-chart/explosion/src/app.component.ts +++ b/samples/charts/pie-chart/explosion/src/app.component.ts @@ -2,6 +2,7 @@ import { AfterViewInit, Component, ViewChild } from "@angular/core"; import { IgxPieChartComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/legend/src/app.component.ts b/samples/charts/pie-chart/legend/src/app.component.ts index 25b540f07..a28423f06 100644 --- a/samples/charts/pie-chart/legend/src/app.component.ts +++ b/samples/charts/pie-chart/legend/src/app.component.ts @@ -3,6 +3,7 @@ import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand import { IgxItemLegendComponent, IgxPieChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/others/src/app.component.ts b/samples/charts/pie-chart/others/src/app.component.ts index 25b540f07..a28423f06 100644 --- a/samples/charts/pie-chart/others/src/app.component.ts +++ b/samples/charts/pie-chart/others/src/app.component.ts @@ -3,6 +3,7 @@ import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand import { IgxItemLegendComponent, IgxPieChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/overview/src/app.component.ts b/samples/charts/pie-chart/overview/src/app.component.ts index 25b540f07..a28423f06 100644 --- a/samples/charts/pie-chart/overview/src/app.component.ts +++ b/samples/charts/pie-chart/overview/src/app.component.ts @@ -3,6 +3,7 @@ import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand import { IgxItemLegendComponent, IgxPieChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/selection/src/app.component.ts b/samples/charts/pie-chart/selection/src/app.component.ts index e6be97370..bc9f6eac2 100644 --- a/samples/charts/pie-chart/selection/src/app.component.ts +++ b/samples/charts/pie-chart/selection/src/app.component.ts @@ -2,6 +2,7 @@ import { AfterViewInit, Component, ViewChild } from "@angular/core"; import { IgxPieChartComponent } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/styling/src/app.component.ts b/samples/charts/pie-chart/styling/src/app.component.ts index 25b540f07..a28423f06 100644 --- a/samples/charts/pie-chart/styling/src/app.component.ts +++ b/samples/charts/pie-chart/styling/src/app.component.ts @@ -3,6 +3,7 @@ import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand import { IgxItemLegendComponent, IgxPieChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-area/src/app.component.ts b/samples/charts/sparkline/display-area/src/app.component.ts index f7abaf08a..646a88cf7 100644 --- a/samples/charts/sparkline/display-area/src/app.component.ts +++ b/samples/charts/sparkline/display-area/src/app.component.ts @@ -3,6 +3,7 @@ import { SparklineMixedDataItem, SparklineMixedData } from './SparklineMixedData import { IgxSparklineComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-column/src/app.component.ts b/samples/charts/sparkline/display-column/src/app.component.ts index f7abaf08a..646a88cf7 100644 --- a/samples/charts/sparkline/display-column/src/app.component.ts +++ b/samples/charts/sparkline/display-column/src/app.component.ts @@ -3,6 +3,7 @@ import { SparklineMixedDataItem, SparklineMixedData } from './SparklineMixedData import { IgxSparklineComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index aa557375b..0b236f859 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-lines/src/app.component.ts b/samples/charts/sparkline/display-lines/src/app.component.ts index ebe19a3ce..2d854dd81 100644 --- a/samples/charts/sparkline/display-lines/src/app.component.ts +++ b/samples/charts/sparkline/display-lines/src/app.component.ts @@ -4,6 +4,7 @@ import { SparklineMixedDataItem, SparklineMixedData } from './SparklineMixedData import { IgxSparklineComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-types/src/app.component.ts b/samples/charts/sparkline/display-types/src/app.component.ts index 723930b50..e7f6dce5e 100644 --- a/samples/charts/sparkline/display-types/src/app.component.ts +++ b/samples/charts/sparkline/display-types/src/app.component.ts @@ -4,6 +4,7 @@ import { SparklineDisplayType } from "igniteui-angular-charts"; import { SharedData } from "./SharedData"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-winloss/src/app.component.ts b/samples/charts/sparkline/display-winloss/src/app.component.ts index f7abaf08a..646a88cf7 100644 --- a/samples/charts/sparkline/display-winloss/src/app.component.ts +++ b/samples/charts/sparkline/display-winloss/src/app.component.ts @@ -3,6 +3,7 @@ import { SparklineMixedDataItem, SparklineMixedData } from './SparklineMixedData import { IgxSparklineComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index e83c088a8..0048a171e 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "18.1.7", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular": "19.0.2", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "igniteui-theming": "11.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/grid/src/app.component.ts b/samples/charts/sparkline/grid/src/app.component.ts index 2158807f0..158801c89 100644 --- a/samples/charts/sparkline/grid/src/app.component.ts +++ b/samples/charts/sparkline/grid/src/app.component.ts @@ -20,6 +20,7 @@ export class LocalService { } @Component({ + standalone: false, providers: [LocalService], selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/markers/src/app.component.ts b/samples/charts/sparkline/markers/src/app.component.ts index e81174723..2808b0d38 100644 --- a/samples/charts/sparkline/markers/src/app.component.ts +++ b/samples/charts/sparkline/markers/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/normal-range/src/app.component.ts b/samples/charts/sparkline/normal-range/src/app.component.ts index d4c79364b..637f19d7e 100644 --- a/samples/charts/sparkline/normal-range/src/app.component.ts +++ b/samples/charts/sparkline/normal-range/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/trendlines/src/app.component.ts b/samples/charts/sparkline/trendlines/src/app.component.ts index 6a5dbb7ab..5232f739d 100644 --- a/samples/charts/sparkline/trendlines/src/app.component.ts +++ b/samples/charts/sparkline/trendlines/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/unknown-values/src/app.component.ts b/samples/charts/sparkline/unknown-values/src/app.component.ts index a7107a21c..aed2cc523 100644 --- a/samples/charts/sparkline/unknown-values/src/app.component.ts +++ b/samples/charts/sparkline/unknown-values/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index aa557375b..0b236f859 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/app.component.ts b/samples/charts/toolbar/actions-built-in-category-chart/src/app.component.ts index 6ba51d852..f224ce496 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/app.component.ts +++ b/samples/charts/toolbar/actions-built-in-category-chart/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular- import { IgxToolbarComponent } from 'igniteui-angular-layouts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index aa557375b..0b236f859 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/src/app.component.ts b/samples/charts/toolbar/actions-built-in-data-chart/src/app.component.ts index 144fe4969..896235272 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/app.component.ts +++ b/samples/charts/toolbar/actions-built-in-data-chart/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxToolbarComponent } from 'igniteui-angular-layouts'; import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxLineSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/toolbar/color-editor-support/ReadMe.md b/samples/charts/toolbar/color-editor-support/ReadMe.md new file mode 100644 index 000000000..67a02a07b --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Color Editor Support feature using [Toolbar](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/toolbar/color-editor-support +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json index aa557375b..0b236f859 100644 --- a/samples/charts/toolbar/color-editor-support/package.json +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/color-editor-support/src/app.component.ts b/samples/charts/toolbar/color-editor-support/src/app.component.ts index c65346545..255cfeecf 100644 --- a/samples/charts/toolbar/color-editor-support/src/app.component.ts +++ b/samples/charts/toolbar/color-editor-support/src/app.component.ts @@ -6,6 +6,7 @@ import { IgxToolbarComponent, IgxToolActionColorEditorComponent } from 'igniteui import { IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxLineSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index aa557375b..0b236f859 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/custom-tool/src/app.component.ts b/samples/charts/toolbar/custom-tool/src/app.component.ts index 1f8142d25..32ad330f0 100644 --- a/samples/charts/toolbar/custom-tool/src/app.component.ts +++ b/samples/charts/toolbar/custom-tool/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxToolbarComponent, IgxToolActionLabelComponent, IgxToolActionComponen import { IgxLegendComponent, IgxCategoryChartComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index aa557375b..0b236f859 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.ts b/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.ts index c79d4e96e..91a403fde 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.ts +++ b/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.ts @@ -6,6 +6,7 @@ import { IgxToolbarComponent, IgxToolActionCheckboxComponent, IgxToolActionLabel import { IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxLineSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index aa557375b..0b236f859 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/src/app.component.ts b/samples/charts/toolbar/layout-in-vertical-orientation/src/app.component.ts index 605eb3faa..0130900fe 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/src/app.component.ts +++ b/samples/charts/toolbar/layout-in-vertical-orientation/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxToolbarComponent } from 'igniteui-angular-layouts'; import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxLineSeriesComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/toolbar/theming/src/app.component.ts b/samples/charts/toolbar/theming/src/app.component.ts index 17703a1fc..a19cb9b31 100644 --- a/samples/charts/toolbar/theming/src/app.component.ts +++ b/samples/charts/toolbar/theming/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index c85c90b4e..d551358b9 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "18.1.7", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular": "19.0.2", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/events/src/app.component.ts b/samples/charts/tree-map/events/src/app.component.ts index 09ddd4ae0..b7adddcd4 100644 --- a/samples/charts/tree-map/events/src/app.component.ts +++ b/samples/charts/tree-map/events/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, OnInit } from "@angular/core"; import { TreemapNodePointerEventArgs } from "igniteui-angular-charts"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/highlighting-percent-based/src/app.component.ts b/samples/charts/tree-map/highlighting-percent-based/src/app.component.ts index 07c695377..7b1c39e8a 100644 --- a/samples/charts/tree-map/highlighting-percent-based/src/app.component.ts +++ b/samples/charts/tree-map/highlighting-percent-based/src/app.component.ts @@ -4,6 +4,7 @@ import { CountryTopUrbanPopDataItem, CountryTopUrbanPopData } from './CountryTop import { IgxTreemapComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/highlighting/src/app.component.ts b/samples/charts/tree-map/highlighting/src/app.component.ts index 525324fef..b26ebf4bd 100644 --- a/samples/charts/tree-map/highlighting/src/app.component.ts +++ b/samples/charts/tree-map/highlighting/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index ca3fe984b..402d837a7 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", - "igniteui-angular-layouts": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/layout/src/app.component.ts b/samples/charts/tree-map/layout/src/app.component.ts index 936e198bc..34773414d 100644 --- a/samples/charts/tree-map/layout/src/app.component.ts +++ b/samples/charts/tree-map/layout/src/app.component.ts @@ -9,6 +9,7 @@ import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/overview/src/app.component.ts b/samples/charts/tree-map/overview/src/app.component.ts index 7b22b0470..576d19e1b 100644 --- a/samples/charts/tree-map/overview/src/app.component.ts +++ b/samples/charts/tree-map/overview/src/app.component.ts @@ -3,6 +3,7 @@ import { CountyHierarchicalDataItem, CountyHierarchicalData } from './CountyHier import { IgxTreemapComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 430680387..150f8abd4 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.0", - "igniteui-angular-core": "18.2.0-beta.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/styling/src/app.component.ts b/samples/charts/tree-map/styling/src/app.component.ts index b81157f89..f17c1bcef 100644 --- a/samples/charts/tree-map/styling/src/app.component.ts +++ b/samples/charts/tree-map/styling/src/app.component.ts @@ -3,6 +3,7 @@ import { CountyHierarchicalDataItem, CountyHierarchicalData } from './CountyHier import { IgxTreemapComponent, IgxTreemapNodeStyleMappingComponent } from 'igniteui-angular-charts'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index df31ab5c3..389a46e3a 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/zoomslider/overview/src/app.component.ts b/samples/charts/zoomslider/overview/src/app.component.ts index 23773873b..12fb40ebe 100644 --- a/samples/charts/zoomslider/overview/src/app.component.ts +++ b/samples/charts/zoomslider/overview/src/app.component.ts @@ -12,6 +12,7 @@ import { IgxRectChangedEventArgs } from "igniteui-angular-core"; import { SampleScatterStats } from "./SampleScatterStats"; @Component({ + standalone: false, providers: [ SampleScatterStats ], selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index a3c04320f..00350e25d 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "18.1.7", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", + "igniteui-angular": "19.0.2", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/operations-on-workbooks/src/app.component.ts b/samples/excel/excel-library/operations-on-workbooks/src/app.component.ts index 02a3748a2..1ba2351a9 100644 --- a/samples/excel/excel-library/operations-on-workbooks/src/app.component.ts +++ b/samples/excel/excel-library/operations-on-workbooks/src/app.component.ts @@ -7,6 +7,7 @@ import { WorksheetTable } from "igniteui-angular-excel"; import { ExcelUtility } from "./ExcelUtility"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index e323af5f3..2fa07fa50 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/operations-on-worksheets/src/app.component.ts b/samples/excel/excel-library/operations-on-worksheets/src/app.component.ts index 10585454c..b1a375e2c 100644 --- a/samples/excel/excel-library/operations-on-worksheets/src/app.component.ts +++ b/samples/excel/excel-library/operations-on-worksheets/src/app.component.ts @@ -6,6 +6,7 @@ import { WorkbookFormat } from "igniteui-angular-excel"; import { ExcelUtility } from "./ExcelUtility"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index e323af5f3..2fa07fa50 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/overview/src/app.component.ts b/samples/excel/excel-library/overview/src/app.component.ts index c3926c941..65bfb1761 100644 --- a/samples/excel/excel-library/overview/src/app.component.ts +++ b/samples/excel/excel-library/overview/src/app.component.ts @@ -4,6 +4,7 @@ import { WorkbookFormat } from "igniteui-angular-excel"; import { ExcelUtility } from "./ExcelUtility"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index e323af5f3..2fa07fa50 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-cells/src/app.component.ts b/samples/excel/excel-library/working-with-cells/src/app.component.ts index 76701b048..b569c7751 100644 --- a/samples/excel/excel-library/working-with-cells/src/app.component.ts +++ b/samples/excel/excel-library/working-with-cells/src/app.component.ts @@ -10,6 +10,7 @@ import { WorksheetCellComment } from "igniteui-angular-excel"; import { ExcelUtility } from "./ExcelUtility"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 588a32757..5a035471c 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -20,10 +20,10 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "18.1.7", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", + "igniteui-angular": "19.0.2", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-charts/src/app.component.ts b/samples/excel/excel-library/working-with-charts/src/app.component.ts index 0151c611b..c47d7137f 100644 --- a/samples/excel/excel-library/working-with-charts/src/app.component.ts +++ b/samples/excel/excel-library/working-with-charts/src/app.component.ts @@ -7,6 +7,7 @@ import { WorksheetRegion } from "igniteui-angular-excel"; import { ExcelUtility } from "./ExcelUtility"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 588a32757..5a035471c 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -20,10 +20,10 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "18.1.7", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", + "igniteui-angular": "19.0.2", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-sparklines/src/app.component.ts b/samples/excel/excel-library/working-with-sparklines/src/app.component.ts index 83288698a..6d8f8f04e 100644 --- a/samples/excel/excel-library/working-with-sparklines/src/app.component.ts +++ b/samples/excel/excel-library/working-with-sparklines/src/app.component.ts @@ -6,6 +6,7 @@ import { Workbook } from "igniteui-angular-excel"; import { ExcelUtility } from "./ExcelUtility"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index 2654e9565..e64575926 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -20,10 +20,10 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", - "igniteui-angular-spreadsheet": "18.1.0", - "igniteui-angular-spreadsheet-chart-adapter": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular-spreadsheet": "18.2.0-beta.1", + "igniteui-angular-spreadsheet-chart-adapter": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-tables/src/app.component.ts b/samples/excel/excel-library/working-with-tables/src/app.component.ts index 418fd5276..58487a3a9 100644 --- a/samples/excel/excel-library/working-with-tables/src/app.component.ts +++ b/samples/excel/excel-library/working-with-tables/src/app.component.ts @@ -5,6 +5,7 @@ import { WorkbookFormat } from "igniteui-angular-excel"; import { ExcelUtility } from "./ExcelUtility"; @Component({ + standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, selector: "app-root", styleUrls: ["./app.component.scss"], diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index c109679bb..7e8e821c3 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", - "igniteui-angular-spreadsheet": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular-spreadsheet": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/activation/src/app.component.ts b/samples/excel/spreadsheet/activation/src/app.component.ts index 82e0b9597..7ae10f332 100644 --- a/samples/excel/spreadsheet/activation/src/app.component.ts +++ b/samples/excel/spreadsheet/activation/src/app.component.ts @@ -4,6 +4,7 @@ import { SpreadsheetCell } from "igniteui-angular-spreadsheet"; import { ExcelUtility } from "./ExcelUtility"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 2f97b35b2..f39e19828 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", - "igniteui-angular-spreadsheet": "18.1.0", - "igniteui-angular-spreadsheet-chart-adapter": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular-spreadsheet": "18.2.0-beta.1", + "igniteui-angular-spreadsheet-chart-adapter": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/adapter-chart/src/app.component.ts b/samples/excel/spreadsheet/adapter-chart/src/app.component.ts index 1e0e028db..99f2b85e4 100644 --- a/samples/excel/spreadsheet/adapter-chart/src/app.component.ts +++ b/samples/excel/spreadsheet/adapter-chart/src/app.component.ts @@ -7,6 +7,7 @@ import { Worksheet } from "igniteui-angular-excel"; import { WorksheetCell } from "igniteui-angular-excel"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index 2f97b35b2..f39e19828 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", - "igniteui-angular-spreadsheet": "18.1.0", - "igniteui-angular-spreadsheet-chart-adapter": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular-spreadsheet": "18.2.0-beta.1", + "igniteui-angular-spreadsheet-chart-adapter": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/adapter-combo/src/app.component.ts b/samples/excel/spreadsheet/adapter-combo/src/app.component.ts index 70bc255da..bf129d029 100644 --- a/samples/excel/spreadsheet/adapter-combo/src/app.component.ts +++ b/samples/excel/spreadsheet/adapter-combo/src/app.component.ts @@ -9,6 +9,7 @@ import { AxisGroup, AxisPosition, AxisType, CellReferenceMode, ChartTitle, Chart WorksheetTableColumnArea, XValues } from "igniteui-angular-excel"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index c109679bb..7e8e821c3 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", - "igniteui-angular-spreadsheet": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular-spreadsheet": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/clipboard/src/app.component.ts b/samples/excel/spreadsheet/clipboard/src/app.component.ts index 15d6ddc68..b0f3c181c 100644 --- a/samples/excel/spreadsheet/clipboard/src/app.component.ts +++ b/samples/excel/spreadsheet/clipboard/src/app.component.ts @@ -4,6 +4,7 @@ import { SpreadsheetAction } from "igniteui-angular-spreadsheet"; import { ExcelUtility } from "./ExcelUtility"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index c109679bb..7e8e821c3 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", - "igniteui-angular-spreadsheet": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular-spreadsheet": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/commands/src/app.component.ts b/samples/excel/spreadsheet/commands/src/app.component.ts index 89fba1dbc..a4febc7fa 100644 --- a/samples/excel/spreadsheet/commands/src/app.component.ts +++ b/samples/excel/spreadsheet/commands/src/app.component.ts @@ -4,6 +4,7 @@ import { SpreadsheetAction } from "igniteui-angular-spreadsheet"; import { ExcelUtility } from "./ExcelUtility"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index c109679bb..7e8e821c3 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", - "igniteui-angular-spreadsheet": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular-spreadsheet": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/conditional-formatting/src/app.component.ts b/samples/excel/spreadsheet/conditional-formatting/src/app.component.ts index fa36d4d42..1a2ef3369 100644 --- a/samples/excel/spreadsheet/conditional-formatting/src/app.component.ts +++ b/samples/excel/spreadsheet/conditional-formatting/src/app.component.ts @@ -3,6 +3,7 @@ import { IgxSpreadsheetComponent } from "igniteui-angular-spreadsheet"; import { ExcelUtility } from "./ExcelUtility"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index c109679bb..7e8e821c3 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", - "igniteui-angular-spreadsheet": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular-spreadsheet": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/config-options/src/app.component.ts b/samples/excel/spreadsheet/config-options/src/app.component.ts index fc4d48252..47dbd0225 100644 --- a/samples/excel/spreadsheet/config-options/src/app.component.ts +++ b/samples/excel/spreadsheet/config-options/src/app.component.ts @@ -3,6 +3,7 @@ import { IgxSpreadsheetComponent } from "igniteui-angular-spreadsheet"; import { ExcelUtility } from "./ExcelUtility"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index c109679bb..7e8e821c3 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", - "igniteui-angular-spreadsheet": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular-spreadsheet": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/data-validation/src/app.component.ts b/samples/excel/spreadsheet/data-validation/src/app.component.ts index 7e31b3c71..0f2df4e7c 100644 --- a/samples/excel/spreadsheet/data-validation/src/app.component.ts +++ b/samples/excel/spreadsheet/data-validation/src/app.component.ts @@ -12,6 +12,7 @@ import { WorksheetColumnWidthUnit } from "igniteui-angular-excel"; import { IgxSpreadsheetComponent } from "igniteui-angular-spreadsheet"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index c109679bb..7e8e821c3 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", - "igniteui-angular-spreadsheet": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular-spreadsheet": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/hyperlinks/src/app.component.ts b/samples/excel/spreadsheet/hyperlinks/src/app.component.ts index 6f10cc545..ed473409f 100644 --- a/samples/excel/spreadsheet/hyperlinks/src/app.component.ts +++ b/samples/excel/spreadsheet/hyperlinks/src/app.component.ts @@ -3,6 +3,7 @@ import { IgxSpreadsheetComponent } from "igniteui-angular-spreadsheet"; import { ExcelUtility } from "./ExcelUtility"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index c109679bb..7e8e821c3 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-excel": "18.1.0", - "igniteui-angular-spreadsheet": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular-spreadsheet": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/overview/src/app.component.ts b/samples/excel/spreadsheet/overview/src/app.component.ts index 759336021..8a02e82a6 100644 --- a/samples/excel/spreadsheet/overview/src/app.component.ts +++ b/samples/excel/spreadsheet/overview/src/app.component.ts @@ -3,6 +3,7 @@ import { IgxSpreadsheetComponent } from "igniteui-angular-spreadsheet"; import { ExcelUtility } from "./ExcelUtility"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 72382053b..99032bdf1 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "18.1.7", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular": "19.0.2", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/animation/src/app.component.ts b/samples/gauges/bullet-graph/animation/src/app.component.ts index 527681c9b..e4862b2c0 100644 --- a/samples/gauges/bullet-graph/animation/src/app.component.ts +++ b/samples/gauges/bullet-graph/animation/src/app.component.ts @@ -3,6 +3,7 @@ import { IgxBulletGraphComponent } from "igniteui-angular-gauges"; import { IgxLinearGraphRangeComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/background/src/app.component.ts b/samples/gauges/bullet-graph/background/src/app.component.ts index a757616f5..7b6f9c867 100644 --- a/samples/gauges/bullet-graph/background/src/app.component.ts +++ b/samples/gauges/bullet-graph/background/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, ViewChild } from "@angular/core"; import { IgxBulletGraphComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/highlight-needle/src/app.component.ts b/samples/gauges/bullet-graph/highlight-needle/src/app.component.ts index b96c4429b..203ce8cf4 100644 --- a/samples/gauges/bullet-graph/highlight-needle/src/app.component.ts +++ b/samples/gauges/bullet-graph/highlight-needle/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, OnInit, ViewChild } from "@angular/core"; import { IgxBulletGraphComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/labels/src/app.component.ts b/samples/gauges/bullet-graph/labels/src/app.component.ts index a757616f5..7b6f9c867 100644 --- a/samples/gauges/bullet-graph/labels/src/app.component.ts +++ b/samples/gauges/bullet-graph/labels/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, ViewChild } from "@angular/core"; import { IgxBulletGraphComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/measures/src/app.component.ts b/samples/gauges/bullet-graph/measures/src/app.component.ts index a757616f5..7b6f9c867 100644 --- a/samples/gauges/bullet-graph/measures/src/app.component.ts +++ b/samples/gauges/bullet-graph/measures/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, ViewChild } from "@angular/core"; import { IgxBulletGraphComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/ranges/src/app.component.ts b/samples/gauges/bullet-graph/ranges/src/app.component.ts index 148614eba..1de1833de 100644 --- a/samples/gauges/bullet-graph/ranges/src/app.component.ts +++ b/samples/gauges/bullet-graph/ranges/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, ViewChild } from "@angular/core"; import { IgxBulletGraphComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/scale/src/app.component.ts b/samples/gauges/bullet-graph/scale/src/app.component.ts index 148614eba..1de1833de 100644 --- a/samples/gauges/bullet-graph/scale/src/app.component.ts +++ b/samples/gauges/bullet-graph/scale/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, ViewChild } from "@angular/core"; import { IgxBulletGraphComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/tickmarks/src/app.component.ts b/samples/gauges/bullet-graph/tickmarks/src/app.component.ts index a757616f5..7b6f9c867 100644 --- a/samples/gauges/bullet-graph/tickmarks/src/app.component.ts +++ b/samples/gauges/bullet-graph/tickmarks/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, ViewChild } from "@angular/core"; import { IgxBulletGraphComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 72382053b..99032bdf1 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "18.1.7", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular": "19.0.2", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/animation/src/app.component.ts b/samples/gauges/linear-gauge/animation/src/app.component.ts index 79def8868..b07f4a436 100644 --- a/samples/gauges/linear-gauge/animation/src/app.component.ts +++ b/samples/gauges/linear-gauge/animation/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxLinearGraphRangeComponent } from "igniteui-angular-gauges"; import { LinearGraphNeedleShape } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/backing/src/app.component.ts b/samples/gauges/linear-gauge/backing/src/app.component.ts index 8a89c9cb6..8cd4adfe8 100644 --- a/samples/gauges/linear-gauge/backing/src/app.component.ts +++ b/samples/gauges/linear-gauge/backing/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, ViewChild } from "@angular/core"; import { IgxLinearGaugeComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/highlight-needle/src/app.component.ts b/samples/gauges/linear-gauge/highlight-needle/src/app.component.ts index 8a89c9cb6..8cd4adfe8 100644 --- a/samples/gauges/linear-gauge/highlight-needle/src/app.component.ts +++ b/samples/gauges/linear-gauge/highlight-needle/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, ViewChild } from "@angular/core"; import { IgxLinearGaugeComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/labels/src/app.component.ts b/samples/gauges/linear-gauge/labels/src/app.component.ts index 8a89c9cb6..8cd4adfe8 100644 --- a/samples/gauges/linear-gauge/labels/src/app.component.ts +++ b/samples/gauges/linear-gauge/labels/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, ViewChild } from "@angular/core"; import { IgxLinearGaugeComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/needle/src/app.component.ts b/samples/gauges/linear-gauge/needle/src/app.component.ts index 8a89c9cb6..8cd4adfe8 100644 --- a/samples/gauges/linear-gauge/needle/src/app.component.ts +++ b/samples/gauges/linear-gauge/needle/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, ViewChild } from "@angular/core"; import { IgxLinearGaugeComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/ranges/src/app.component.ts b/samples/gauges/linear-gauge/ranges/src/app.component.ts index 8a89c9cb6..8cd4adfe8 100644 --- a/samples/gauges/linear-gauge/ranges/src/app.component.ts +++ b/samples/gauges/linear-gauge/ranges/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, ViewChild } from "@angular/core"; import { IgxLinearGaugeComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/scale/src/app.component.ts b/samples/gauges/linear-gauge/scale/src/app.component.ts index 12189cda9..f4a63dd71 100644 --- a/samples/gauges/linear-gauge/scale/src/app.component.ts +++ b/samples/gauges/linear-gauge/scale/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, ViewChild } from "@angular/core"; import { IgxLinearGaugeComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/tickmarks/src/app.component.ts b/samples/gauges/linear-gauge/tickmarks/src/app.component.ts index 8a89c9cb6..8cd4adfe8 100644 --- a/samples/gauges/linear-gauge/tickmarks/src/app.component.ts +++ b/samples/gauges/linear-gauge/tickmarks/src/app.component.ts @@ -2,6 +2,7 @@ import { Component, ViewChild } from "@angular/core"; import { IgxLinearGaugeComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 72382053b..99032bdf1 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "18.1.7", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular": "19.0.2", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/animation/src/app.component.ts b/samples/gauges/radial-gauge/animation/src/app.component.ts index c8a64d182..15392ae05 100644 --- a/samples/gauges/radial-gauge/animation/src/app.component.ts +++ b/samples/gauges/radial-gauge/animation/src/app.component.ts @@ -9,6 +9,7 @@ import { RadialGaugePivotShape } from "igniteui-angular-gauges"; import { RadialGaugeScaleOversweepShape } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/backing/src/app.component.ts b/samples/gauges/radial-gauge/backing/src/app.component.ts index 5b237307e..1e1b458c2 100644 --- a/samples/gauges/radial-gauge/backing/src/app.component.ts +++ b/samples/gauges/radial-gauge/backing/src/app.component.ts @@ -3,6 +3,7 @@ import { Component, OnInit, ViewChild } from "@angular/core"; import { IgxRadialGaugeComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/highlight-needle/src/app.component.ts b/samples/gauges/radial-gauge/highlight-needle/src/app.component.ts index 437784cc1..ed2e6bf7b 100644 --- a/samples/gauges/radial-gauge/highlight-needle/src/app.component.ts +++ b/samples/gauges/radial-gauge/highlight-needle/src/app.component.ts @@ -4,6 +4,7 @@ import { HighlightedValueDisplayMode } from "igniteui-angular-core"; import { IgxRadialGaugeComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/labels/src/app.component.ts b/samples/gauges/radial-gauge/labels/src/app.component.ts index 5b237307e..1e1b458c2 100644 --- a/samples/gauges/radial-gauge/labels/src/app.component.ts +++ b/samples/gauges/radial-gauge/labels/src/app.component.ts @@ -3,6 +3,7 @@ import { Component, OnInit, ViewChild } from "@angular/core"; import { IgxRadialGaugeComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/needle/src/app.component.ts b/samples/gauges/radial-gauge/needle/src/app.component.ts index 5b237307e..1e1b458c2 100644 --- a/samples/gauges/radial-gauge/needle/src/app.component.ts +++ b/samples/gauges/radial-gauge/needle/src/app.component.ts @@ -3,6 +3,7 @@ import { Component, OnInit, ViewChild } from "@angular/core"; import { IgxRadialGaugeComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/optical-scaling/src/app.component.ts b/samples/gauges/radial-gauge/optical-scaling/src/app.component.ts index 0bf6e36a3..ac6dcb302 100644 --- a/samples/gauges/radial-gauge/optical-scaling/src/app.component.ts +++ b/samples/gauges/radial-gauge/optical-scaling/src/app.component.ts @@ -3,6 +3,7 @@ import { Component, OnInit, ViewChild } from "@angular/core"; import { IgxRadialGaugeComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/radial-gauge/optical-scaling/src/app/app.component.ts b/samples/gauges/radial-gauge/optical-scaling/src/app/app.component.ts index 0bf6e36a3..ac6dcb302 100644 --- a/samples/gauges/radial-gauge/optical-scaling/src/app/app.component.ts +++ b/samples/gauges/radial-gauge/optical-scaling/src/app/app.component.ts @@ -3,6 +3,7 @@ import { Component, OnInit, ViewChild } from "@angular/core"; import { IgxRadialGaugeComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/ranges/src/app.component.ts b/samples/gauges/radial-gauge/ranges/src/app.component.ts index 5b237307e..1e1b458c2 100644 --- a/samples/gauges/radial-gauge/ranges/src/app.component.ts +++ b/samples/gauges/radial-gauge/ranges/src/app.component.ts @@ -3,6 +3,7 @@ import { Component, OnInit, ViewChild } from "@angular/core"; import { IgxRadialGaugeComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/scale/src/app.component.ts b/samples/gauges/radial-gauge/scale/src/app.component.ts index cfd630f6c..2b2d88048 100644 --- a/samples/gauges/radial-gauge/scale/src/app.component.ts +++ b/samples/gauges/radial-gauge/scale/src/app.component.ts @@ -3,6 +3,7 @@ import { Component, OnInit, ViewChild } from "@angular/core"; import { IgxRadialGaugeComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index b05cd9e87..56df17a5c 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-gauges": "18.1.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/tickmarks/src/app.component.ts b/samples/gauges/radial-gauge/tickmarks/src/app.component.ts index 5b237307e..1e1b458c2 100644 --- a/samples/gauges/radial-gauge/tickmarks/src/app.component.ts +++ b/samples/gauges/radial-gauge/tickmarks/src/app.component.ts @@ -3,6 +3,7 @@ import { Component, OnInit, ViewChild } from "@angular/core"; import { IgxRadialGaugeComponent } from "igniteui-angular-gauges"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/inputs/color-editor/overview/ReadMe.md b/samples/inputs/color-editor/overview/ReadMe.md new file mode 100644 index 000000000..1007fbb99 --- /dev/null +++ b/samples/inputs/color-editor/overview/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Overview feature using [ColorEditor](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/inputs/color-editor/overview +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json index 3cc8ac428..0fc94a5d2 100644 --- a/samples/inputs/color-editor/overview/package.json +++ b/samples/inputs/color-editor/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.0", - "igniteui-angular-inputs": "18.2.0-beta.0", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/inputs/color-editor/overview/src/app.component.ts b/samples/inputs/color-editor/overview/src/app.component.ts index 20ce15216..3e45385ad 100644 --- a/samples/inputs/color-editor/overview/src/app.component.ts +++ b/samples/inputs/color-editor/overview/src/app.component.ts @@ -1,7 +1,8 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; -import { IgxColorEditorComponent } from 'igniteui-angular-dashboards'; +import { IgxColorEditorComponent } from 'igniteui-angular-inputs'; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-csv/src/app.component.ts b/samples/maps/geo-map/binding-data-csv/src/app.component.ts index 4f93af439..edc58542c 100644 --- a/samples/maps/geo-map/binding-data-csv/src/app.component.ts +++ b/samples/maps/geo-map/binding-data-csv/src/app.component.ts @@ -3,6 +3,7 @@ import { IgxGeographicHighDensityScatterSeriesComponent } from "igniteui-angular import { IgxGeographicMapComponent } from "igniteui-angular-maps"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-json-points/src/app.component.ts b/samples/maps/geo-map/binding-data-json-points/src/app.component.ts index 40ea11147..9a7a288fd 100644 --- a/samples/maps/geo-map/binding-data-json-points/src/app.component.ts +++ b/samples/maps/geo-map/binding-data-json-points/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxGeographicMapComponent } from "igniteui-angular-maps"; import { IgxGeographicSymbolSeriesComponent } from "igniteui-angular-maps"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-model/src/app.component.ts b/samples/maps/geo-map/binding-data-model/src/app.component.ts index 67aa6f6a7..762ffa3f1 100644 --- a/samples/maps/geo-map/binding-data-model/src/app.component.ts +++ b/samples/maps/geo-map/binding-data-model/src/app.component.ts @@ -6,6 +6,7 @@ import { IgxGeographicSymbolSeriesComponent } from "igniteui-angular-maps"; import { WorldUtility } from "./WorldUtility"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-multiple-shapes/src/app.component.ts b/samples/maps/geo-map/binding-multiple-shapes/src/app.component.ts index 19fa9a068..d0b1257a4 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/src/app.component.ts +++ b/samples/maps/geo-map/binding-multiple-shapes/src/app.component.ts @@ -6,6 +6,7 @@ import { IgxGeographicShapeSeriesComponent } from "igniteui-angular-maps"; import { IgxGeographicSymbolSeriesComponent } from "igniteui-angular-maps"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-multiple-sources/src/app.component.ts b/samples/maps/geo-map/binding-multiple-sources/src/app.component.ts index 0b4f98aeb..7d6818ba6 100644 --- a/samples/maps/geo-map/binding-multiple-sources/src/app.component.ts +++ b/samples/maps/geo-map/binding-multiple-sources/src/app.component.ts @@ -6,6 +6,7 @@ import { IgxGeographicSymbolSeriesComponent } from "igniteui-angular-maps"; import { WorldConnections } from "./WorldConnections"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-points/src/app.component.ts b/samples/maps/geo-map/binding-shp-points/src/app.component.ts index b476aea90..d57af1f2c 100644 --- a/samples/maps/geo-map/binding-shp-points/src/app.component.ts +++ b/samples/maps/geo-map/binding-shp-points/src/app.component.ts @@ -5,6 +5,7 @@ import { IgxGeographicMapComponent } from "igniteui-angular-maps"; import { IgxGeographicSymbolSeriesComponent } from "igniteui-angular-maps"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-polygons/src/app.component.ts b/samples/maps/geo-map/binding-shp-polygons/src/app.component.ts index 998814443..c715cdfbc 100644 --- a/samples/maps/geo-map/binding-shp-polygons/src/app.component.ts +++ b/samples/maps/geo-map/binding-shp-polygons/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxGeographicMapComponent } from "igniteui-angular-maps"; import { IgxGeographicShapeSeriesComponent } from "igniteui-angular-maps"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-polylines/src/app.component.ts b/samples/maps/geo-map/binding-shp-polylines/src/app.component.ts index c868d67e5..f5483e118 100644 --- a/samples/maps/geo-map/binding-shp-polylines/src/app.component.ts +++ b/samples/maps/geo-map/binding-shp-polylines/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxGeographicMapComponent } from "igniteui-angular-maps"; import { IgxGeographicPolylineSeriesComponent } from "igniteui-angular-maps"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/custom-tooltips/src/app.component.ts b/samples/maps/geo-map/custom-tooltips/src/app.component.ts index 3443af7a6..1dcd947a6 100644 --- a/samples/maps/geo-map/custom-tooltips/src/app.component.ts +++ b/samples/maps/geo-map/custom-tooltips/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxGeographicMapComponent } from "igniteui-angular-maps"; import { IgxGeographicSymbolSeriesComponent } from "igniteui-angular-maps"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-bing-imagery/src/app.component.ts b/samples/maps/geo-map/display-bing-imagery/src/app.component.ts index 868caf9c7..3c92488f2 100644 --- a/samples/maps/geo-map/display-bing-imagery/src/app.component.ts +++ b/samples/maps/geo-map/display-bing-imagery/src/app.component.ts @@ -5,6 +5,7 @@ import { IgxGeographicMapComponent } from "igniteui-angular-maps"; import { MapUtility } from "./MapUtility"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-esri-imagery/src/app.component.ts b/samples/maps/geo-map/display-esri-imagery/src/app.component.ts index acb200f3e..cd6223c63 100644 --- a/samples/maps/geo-map/display-esri-imagery/src/app.component.ts +++ b/samples/maps/geo-map/display-esri-imagery/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxGeographicMapComponent } from "igniteui-angular-maps"; import { EsriStyle, EsriUtility } from "./EsriUtility"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-heat-imagery/src/app.component.ts b/samples/maps/geo-map/display-heat-imagery/src/app.component.ts index 613603db3..044b78eb6 100644 --- a/samples/maps/geo-map/display-heat-imagery/src/app.component.ts +++ b/samples/maps/geo-map/display-heat-imagery/src/app.component.ts @@ -6,6 +6,7 @@ import { IgxGeographicTileSeriesComponent } from "igniteui-angular-maps"; import { IgxTileGeneratorMapImagery } from "igniteui-angular-maps"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-osm-imagery/src/app.component.ts b/samples/maps/geo-map/display-osm-imagery/src/app.component.ts index 1b1b0dbdc..d569c7c0c 100644 --- a/samples/maps/geo-map/display-osm-imagery/src/app.component.ts +++ b/samples/maps/geo-map/display-osm-imagery/src/app.component.ts @@ -3,6 +3,7 @@ import { IgxGeographicMapComponent } from "igniteui-angular-maps"; import { IgxOpenStreetMapImagery } from "igniteui-angular-maps"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-layouts/src/app.component.ts b/samples/maps/geo-map/marker-layouts/src/app.component.ts index 79cc83576..ea4f933a4 100644 --- a/samples/maps/geo-map/marker-layouts/src/app.component.ts +++ b/samples/maps/geo-map/marker-layouts/src/app.component.ts @@ -5,6 +5,7 @@ import { DataTemplateMeasureInfo, DataTemplateRenderInfo } from "igniteui-angula import { WorldLocations } from "./WorldLocations"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-template/src/app.component.ts b/samples/maps/geo-map/marker-template/src/app.component.ts index 5a2978c60..7c60eda25 100644 --- a/samples/maps/geo-map/marker-template/src/app.component.ts +++ b/samples/maps/geo-map/marker-template/src/app.component.ts @@ -5,6 +5,7 @@ import { WorldLocations } from "./WorldLocations"; import { DataTemplateMeasureInfo, DataTemplateRenderInfo } from "igniteui-angular-core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-type/src/app.component.ts b/samples/maps/geo-map/marker-type/src/app.component.ts index adb2860dc..68baaf2ca 100644 --- a/samples/maps/geo-map/marker-type/src/app.component.ts +++ b/samples/maps/geo-map/marker-type/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxGeographicMapComponent, IgxGeographicSymbolSeriesComponent } from "i import { WorldLocations } from "./WorldLocations"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/navigation/src/app.component.ts b/samples/maps/geo-map/navigation/src/app.component.ts index 5f63f5c0c..8288abf38 100644 --- a/samples/maps/geo-map/navigation/src/app.component.ts +++ b/samples/maps/geo-map/navigation/src/app.component.ts @@ -6,6 +6,7 @@ import { MapUtility, MapRegion } from "./MapUtility"; import { IgxRectChangedEventArgs } from "igniteui-angular-core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/overview/src/app.component.ts b/samples/maps/geo-map/overview/src/app.component.ts index 6508758d9..d185b35e9 100644 --- a/samples/maps/geo-map/overview/src/app.component.ts +++ b/samples/maps/geo-map/overview/src/app.component.ts @@ -3,6 +3,7 @@ import { IgxGeographicMapComponent } from "igniteui-angular-maps"; import { IgRect } from "igniteui-angular-core"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/shape-styling/src/app.component.ts b/samples/maps/geo-map/shape-styling/src/app.component.ts index 176d5c712..5917e4176 100644 --- a/samples/maps/geo-map/shape-styling/src/app.component.ts +++ b/samples/maps/geo-map/shape-styling/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxGeographicMapComponent } from "igniteui-angular-maps"; import { IgxGeographicShapeSeriesComponent } from "igniteui-angular-maps"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/triangulating-data/src/app.component.ts b/samples/maps/geo-map/triangulating-data/src/app.component.ts index d28282f39..38c39da2a 100644 --- a/samples/maps/geo-map/triangulating-data/src/app.component.ts +++ b/samples/maps/geo-map/triangulating-data/src/app.component.ts @@ -5,6 +5,7 @@ import { IgxGeographicMapComponent } from "igniteui-angular-maps"; import { IgxGeographicScatterAreaSeriesComponent } from "igniteui-angular-maps"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-area-series/src/app.component.ts b/samples/maps/geo-map/type-scatter-area-series/src/app.component.ts index 5ca7719e3..ba0646a48 100644 --- a/samples/maps/geo-map/type-scatter-area-series/src/app.component.ts +++ b/samples/maps/geo-map/type-scatter-area-series/src/app.component.ts @@ -5,6 +5,7 @@ import { IgxGeographicMapComponent } from "igniteui-angular-maps"; import { IgxGeographicScatterAreaSeriesComponent } from "igniteui-angular-maps"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/app.component.ts b/samples/maps/geo-map/type-scatter-bubble-series/src/app.component.ts index 49e555310..cac09abcd 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/src/app.component.ts +++ b/samples/maps/geo-map/type-scatter-bubble-series/src/app.component.ts @@ -9,6 +9,7 @@ import { IgxGeographicProportionalSymbolSeriesComponent } from "igniteui-angular import { WorldLocations } from "./WorldLocations"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-contour-series/src/app.component.ts b/samples/maps/geo-map/type-scatter-contour-series/src/app.component.ts index e10cee5ac..ed145d064 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/src/app.component.ts +++ b/samples/maps/geo-map/type-scatter-contour-series/src/app.component.ts @@ -5,6 +5,7 @@ import { IgxGeographicContourLineSeriesComponent } from "igniteui-angular-maps"; import { IgxGeographicMapComponent } from "igniteui-angular-maps"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-density-series/src/app.component.ts b/samples/maps/geo-map/type-scatter-density-series/src/app.component.ts index fc41c585b..829afd5c8 100644 --- a/samples/maps/geo-map/type-scatter-density-series/src/app.component.ts +++ b/samples/maps/geo-map/type-scatter-density-series/src/app.component.ts @@ -5,6 +5,7 @@ import { IgxGeographicMapComponent } from "igniteui-angular-maps"; import { WorldUtility } from "./WorldUtility"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/app.component.ts b/samples/maps/geo-map/type-scatter-symbol-series/src/app.component.ts index 6ca86cc90..a8bcbe1e5 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/src/app.component.ts +++ b/samples/maps/geo-map/type-scatter-symbol-series/src/app.component.ts @@ -5,6 +5,7 @@ import { IgxGeographicSymbolSeriesComponent } from "igniteui-angular-maps"; import { WorldLocations } from "./WorldLocations"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-shape-polygon-series/src/app.component.ts b/samples/maps/geo-map/type-shape-polygon-series/src/app.component.ts index 0b97e7b89..8d1bf08b2 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/src/app.component.ts +++ b/samples/maps/geo-map/type-shape-polygon-series/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxGeographicMapComponent } from "igniteui-angular-maps"; import { IgxGeographicShapeSeriesComponent } from "igniteui-angular-maps"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 477773406..26166b12d 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.1.0", - "igniteui-angular-core": "18.1.0", - "igniteui-angular-maps": "18.1.0", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-shape-polyline-series/src/app.component.ts b/samples/maps/geo-map/type-shape-polyline-series/src/app.component.ts index 70a5d7515..ef5b0c7e3 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/src/app.component.ts +++ b/samples/maps/geo-map/type-shape-polyline-series/src/app.component.ts @@ -4,6 +4,7 @@ import { IgxGeographicMapComponent } from "igniteui-angular-maps"; import { IgxGeographicPolylineSeriesComponent } from "igniteui-angular-maps"; @Component({ + standalone: false, selector: "app-root", styleUrls: ["./app.component.scss"], templateUrl: "./app.component.html" From a53aefd6df969ef70cbe856ed5b29dd55e9b43d3 Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Mon, 16 Dec 2024 23:19:24 +0200 Subject: [PATCH 110/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.12.16.3 --- samples/charts/dashboard-tile/chart-dashboard/package.json | 6 ++++++ .../charts/dashboard-tile/chart-dashboard/src/app.module.ts | 1 - samples/charts/dashboard-tile/gauge-dashboard/package.json | 6 ++++++ .../dashboard-tile/gauge-dashboard/src/app.component.ts | 2 +- samples/charts/dashboard-tile/map-dashboard/package.json | 6 ++++++ samples/charts/dashboard-tile/pie-dashboard/package.json | 6 ++++++ samples/inputs/color-editor/overview/src/app.component.ts | 2 +- 7 files changed, 26 insertions(+), 3 deletions(-) diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index 6f177a7d3..1f5231456 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -17,8 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", + "igniteui-angular-charts": "18.2.0-beta.1", "igniteui-angular-core": "18.2.0-beta.1", "igniteui-angular-dashboards": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-grids": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/app.module.ts b/samples/charts/dashboard-tile/chart-dashboard/src/app.module.ts index 935cb2999..fc20a0109 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/src/app.module.ts +++ b/samples/charts/dashboard-tile/chart-dashboard/src/app.module.ts @@ -17,7 +17,6 @@ import { IgxDashboardTileModule, IgxDataChartDashboardTileModule, IgxGeographicM BrowserAnimationsModule, CommonModule, FormsModule, - IgxGridModule, IgxDashboardTileModule, IgxDataChartDashboardTileModule, IgxGeographicMapDashboardTileModule, diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index 6f177a7d3..1f5231456 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -17,8 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", + "igniteui-angular-charts": "18.2.0-beta.1", "igniteui-angular-core": "18.2.0-beta.1", "igniteui-angular-dashboards": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-grids": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.ts b/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.ts index 1d54fe3d0..eedc40593 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.ts +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.ts @@ -17,11 +17,11 @@ export class AppComponent implements AfterViewInit public constructor(private _detector: ChangeDetectorRef) { - this.dashboardTileGaugeOnInit(); } public ngAfterViewInit(): void { + this.dashboardTileGaugeOnInit(); } public dashboardTileGaugeOnInit(): void { diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index 6f177a7d3..1f5231456 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -17,8 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", + "igniteui-angular-charts": "18.2.0-beta.1", "igniteui-angular-core": "18.2.0-beta.1", "igniteui-angular-dashboards": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-grids": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index 6f177a7d3..1f5231456 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -17,8 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", + "igniteui-angular-charts": "18.2.0-beta.1", "igniteui-angular-core": "18.2.0-beta.1", "igniteui-angular-dashboards": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-grids": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/inputs/color-editor/overview/src/app.component.ts b/samples/inputs/color-editor/overview/src/app.component.ts index 3e45385ad..a3d227c4f 100644 --- a/samples/inputs/color-editor/overview/src/app.component.ts +++ b/samples/inputs/color-editor/overview/src/app.component.ts @@ -1,5 +1,5 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; -import { IgxColorEditorComponent } from 'igniteui-angular-inputs'; +import { IgxColorEditorComponent } from 'igniteui-angular-dashboards'; @Component({ standalone: false, From 24be6544b795e11efca015f0ffbbe47d0900e00c Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Mon, 16 Dec 2024 22:53:56 -0500 Subject: [PATCH 111/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.12.17.2 --- samples/charts/toolbar/color-editor-support/src/app.module.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/samples/charts/toolbar/color-editor-support/src/app.module.ts b/samples/charts/toolbar/color-editor-support/src/app.module.ts index 4b6c7b284..6f059abdc 100644 --- a/samples/charts/toolbar/color-editor-support/src/app.module.ts +++ b/samples/charts/toolbar/color-editor-support/src/app.module.ts @@ -5,7 +5,6 @@ import { BrowserModule } from "@angular/platform-browser"; import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; import { AppComponent } from "./app.component"; -import { IgxXIconModule } from 'igniteui-angular-inputs'; import { IgxToolbarModule, IgxToolActionComboModule, IgxToolActionColorEditorModule } from 'igniteui-angular-layouts'; import { IgxDataChartToolbarModule, IgxDataLegendModule, IgxNumberAbbreviatorModule, IgxDataChartCategoryModule, IgxDataChartCoreModule, IgxDataChartAnnotationModule, IgxDataChartInteractivityModule } from 'igniteui-angular-charts'; @@ -19,7 +18,6 @@ import { IgxDataChartToolbarModule, IgxDataLegendModule, IgxNumberAbbreviatorMod BrowserAnimationsModule, CommonModule, FormsModule, - IgxXIconModule, IgxToolbarModule, IgxToolActionComboModule, IgxToolActionColorEditorModule, From bb5a045f8b2436f0640805dc9d5c8d88fb090419 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Tue, 17 Dec 2024 08:36:03 -0500 Subject: [PATCH 112/154] Update package.json (#255) --- browser/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/package.json b/browser/package.json index 17c63c98b..2fc7d4d28 100644 --- a/browser/package.json +++ b/browser/package.json @@ -6,7 +6,7 @@ "scripts": { "ng": "ng", "update": "ng update", - "build": "gulp updateBrowser --max_old_space_size=12192 && gulp overwrite-package-json && node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production --progress=true", + "build": "gulp updateBrowser && gulp overwrite-package-json && ng build --configuration production --progress=true", "start": "gulp updateBrowser --max_old_space_size=12192 && node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve --configuration es5 -o", "startProd": "gulp updateBrowser --max_old_space_size=12192 && node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve --configuration production --configuration es5 -o --progress=true", "start:es5": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", From 8f5aa5cddcbf2e2f461245ca254c3c8adf9cd083 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 09:06:55 -0500 Subject: [PATCH 113/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.12.17.3 (#261) Co-authored-by: tfsbuild --- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../financial-dashboard/.stackblitzrc | 1 + .../financial-dashboard/angular.json | 120 ++++++++++++++++++ .../financial-dashboard/package.json | 49 +++++++ .../financial-dashboard/src/MultipleStocks.ts | 107 ++++++++++++++++ .../src/app.component.html | 9 ++ .../src/app.component.scss | 3 + .../financial-dashboard/src/app.component.ts | 38 ++++++ .../financial-dashboard/src/app.module.ts | 30 +++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../financial-dashboard/src/index.html | 23 ++++ .../financial-dashboard/src/main.ts | 15 +++ .../financial-dashboard/src/polyfills.ts | 61 +++++++++ .../financial-dashboard/src/styles.scss | 9 ++ .../financial-dashboard/src/typings.d.ts | 5 + .../financial-dashboard/tsconfig.app.json | 10 ++ .../financial-dashboard/tsconfig.json | 27 ++++ .../financial-dashboard/tslint.json | 31 +++++ 20 files changed, 575 insertions(+) create mode 100644 samples/charts/dashboard-tile/financial-dashboard/.codesandbox/Dockerfile create mode 100644 samples/charts/dashboard-tile/financial-dashboard/.codesandbox/tasks.json create mode 100644 samples/charts/dashboard-tile/financial-dashboard/.stackblitzrc create mode 100644 samples/charts/dashboard-tile/financial-dashboard/angular.json create mode 100644 samples/charts/dashboard-tile/financial-dashboard/package.json create mode 100644 samples/charts/dashboard-tile/financial-dashboard/src/MultipleStocks.ts create mode 100644 samples/charts/dashboard-tile/financial-dashboard/src/app.component.html create mode 100644 samples/charts/dashboard-tile/financial-dashboard/src/app.component.scss create mode 100644 samples/charts/dashboard-tile/financial-dashboard/src/app.component.ts create mode 100644 samples/charts/dashboard-tile/financial-dashboard/src/app.module.ts create mode 100644 samples/charts/dashboard-tile/financial-dashboard/src/environments/environment.prod.ts create mode 100644 samples/charts/dashboard-tile/financial-dashboard/src/environments/environment.ts create mode 100644 samples/charts/dashboard-tile/financial-dashboard/src/index.html create mode 100644 samples/charts/dashboard-tile/financial-dashboard/src/main.ts create mode 100644 samples/charts/dashboard-tile/financial-dashboard/src/polyfills.ts create mode 100644 samples/charts/dashboard-tile/financial-dashboard/src/styles.scss create mode 100644 samples/charts/dashboard-tile/financial-dashboard/src/typings.d.ts create mode 100644 samples/charts/dashboard-tile/financial-dashboard/tsconfig.app.json create mode 100644 samples/charts/dashboard-tile/financial-dashboard/tsconfig.json create mode 100644 samples/charts/dashboard-tile/financial-dashboard/tslint.json diff --git a/samples/charts/dashboard-tile/financial-dashboard/.codesandbox/Dockerfile b/samples/charts/dashboard-tile/financial-dashboard/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/dashboard-tile/financial-dashboard/.codesandbox/tasks.json b/samples/charts/dashboard-tile/financial-dashboard/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/financial-dashboard/.stackblitzrc b/samples/charts/dashboard-tile/financial-dashboard/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/financial-dashboard/angular.json b/samples/charts/dashboard-tile/financial-dashboard/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json new file mode 100644 index 000000000..1f5231456 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -0,0 +1,49 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "18.2.1", + "@angular/common": "18.2.1", + "@angular/compiler": "18.2.1", + "@angular/core": "18.2.1", + "@angular/forms": "18.2.1", + "@angular/platform-browser": "18.2.1", + "@angular/platform-browser-dynamic": "18.2.1", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-dashboards": "18.2.0-beta.1", + "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-grids": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-maps": "18.2.0-beta.1", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.14.4" + }, + "devDependencies": { + "@angular/cli": "18.2.1", + "@angular/compiler-cli": "18.2.1", + "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "18.2.1", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.5.4" + } +} diff --git a/samples/charts/dashboard-tile/financial-dashboard/src/MultipleStocks.ts b/samples/charts/dashboard-tile/financial-dashboard/src/MultipleStocks.ts new file mode 100644 index 000000000..3688676b4 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/src/MultipleStocks.ts @@ -0,0 +1,107 @@ +//begin async data +export class MultipleStocks extends Array> { + public static async fetch(): Promise { + const dataSources: any[] = [ + //await this.getAmazonStock(), + await this.getGoogleStock(), + await this.getAmazonStock(), + //await this.getTeslaStock() + ]; + return new Promise((resolve, reject) => { + resolve(dataSources); + }); + } + + /** gets Amazon stock OHLC prices from a .JSON file */ + public static async getAmazonStock(): Promise { + let url = "https://static.infragistics.com/xplatform/data/stocks/stockAmazon.json"; + let response = await fetch(url); + let jsonData = await response.json(); + let stockData = this.convertData(jsonData); + // setting data intent for Series Title, e.g. FinancialChart usage + (stockData as any).__dataIntents = { + close: ["SeriesTitle/Amazon"] + }; + // console.log("fetchAmazonStock: ", stockData.length); + + return new Promise((resolve, reject) => { + resolve(stockData); + }); + } + + /** gets Tesla stock OHLC prices from a .JSON file */ + public static async getTeslaStock(): Promise { + let url = "https://static.infragistics.com/xplatform/data/stocks/stockTesla.json"; + let response = await fetch(url); + let jsonData = await response.json(); + let stockData = this.convertData(jsonData); + // setting data intent for Series Title, e.g. FinancialChart usage + (stockData as any).__dataIntents = { + close: ["SeriesTitle/Tesla"] + }; + return new Promise((resolve, reject) => { + resolve(stockData); + }); + } + + /** gets Microsoft stock OHLC prices from a .JSON file */ + public static async getMicrosoftStock(): Promise { + let url = "https://static.infragistics.com/xplatform/data/stocks/stockMicrosoft.json"; + let response = await fetch(url); + let jsonData = await response.json(); + let stockData = this.convertData(jsonData); + // setting data intent for Series Title, e.g. FinancialChart usage + (stockData as any).__dataIntents = { + close: ["SeriesTitle/Microsoft"] + }; + return new Promise((resolve, reject) => { + resolve(stockData); + }); + } + + /** gets Google stock OHLC prices from a .JSON file */ + public static async getGoogleStock(): Promise { + let url = "https://static.infragistics.com/xplatform/data/stocks/stockGoogle.json"; + let response = await fetch(url); + let jsonData = await response.json(); + let stockData = this.convertData(jsonData); + // setting data intent for Series Title, e.g. FinancialChart usage + (stockData as any).__dataIntents = { + close: ["SeriesTitle/Google"] + }; + return new Promise((resolve, reject) => { + resolve(stockData); + }); + } + + public static convertData(jsonData: any[]): StockItem[] { + let stockItems: StockItem[] = []; + + for (let json of jsonData) { + let parts = json.date.split("-"); // "2020-01-01" + let item = new StockItem(); + item.date = new Date(parts[0], parts[1], parts[2]); + item.open = json.open; + item.high = json.high; + item.low = json.low; + item.close = json.close; + item.volume = json.volume; + stockItems.push(item); + + } + + return stockItems; + } + } + + export class StockItem { + public open?: number; + public close?: number; + public high?: number; + public low?: number; + public volume?: number; + + public date?: Date; + + } +//end async data \ No newline at end of file diff --git a/samples/charts/dashboard-tile/financial-dashboard/src/app.component.html b/samples/charts/dashboard-tile/financial-dashboard/src/app.component.html new file mode 100644 index 000000000..8c97972aa --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/src/app.component.html @@ -0,0 +1,9 @@ +
+
+ + +
+
diff --git a/samples/charts/dashboard-tile/financial-dashboard/src/app.component.scss b/samples/charts/dashboard-tile/financial-dashboard/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/dashboard-tile/financial-dashboard/src/app.component.ts b/samples/charts/dashboard-tile/financial-dashboard/src/app.component.ts new file mode 100644 index 000000000..bde5f68a3 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/src/app.component.ts @@ -0,0 +1,38 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { MultipleStocks } from './MultipleStocks'; +import { IgxDashboardTileComponent } from 'igniteui-angular-dashboards'; + +@Component({ + standalone: false, + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("dashboard", { static: true } ) + private dashboard: IgxDashboardTileComponent + private _multipleStocks: MultipleStocks = null; + private _isFetching: boolean = false; + public get multipleStocks(): MultipleStocks { + if (this._multipleStocks == null && !this._isFetching) + { + this._isFetching = true; + ( async () => { this._multipleStocks = await (await MultipleStocks.fetch()); this._detector.markForCheck(); })(); + } + return this._multipleStocks; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/dashboard-tile/financial-dashboard/src/app.module.ts b/samples/charts/dashboard-tile/financial-dashboard/src/app.module.ts new file mode 100644 index 000000000..fc20a0109 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/src/app.module.ts @@ -0,0 +1,30 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDashboardTileModule, IgxDataChartDashboardTileModule, IgxGeographicMapDashboardTileModule, IgxLinearGaugeDashboardTileModule, IgxPieChartDashboardTileModule, IgxRadialGaugeDashboardTileModule } from 'igniteui-angular-dashboards'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDashboardTileModule, + IgxDataChartDashboardTileModule, + IgxGeographicMapDashboardTileModule, + IgxLinearGaugeDashboardTileModule, + IgxPieChartDashboardTileModule, + IgxRadialGaugeDashboardTileModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/dashboard-tile/financial-dashboard/src/environments/environment.prod.ts b/samples/charts/dashboard-tile/financial-dashboard/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/dashboard-tile/financial-dashboard/src/environments/environment.ts b/samples/charts/dashboard-tile/financial-dashboard/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/dashboard-tile/financial-dashboard/src/index.html b/samples/charts/dashboard-tile/financial-dashboard/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/dashboard-tile/financial-dashboard/src/main.ts b/samples/charts/dashboard-tile/financial-dashboard/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/dashboard-tile/financial-dashboard/src/polyfills.ts b/samples/charts/dashboard-tile/financial-dashboard/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/dashboard-tile/financial-dashboard/src/styles.scss b/samples/charts/dashboard-tile/financial-dashboard/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/dashboard-tile/financial-dashboard/src/typings.d.ts b/samples/charts/dashboard-tile/financial-dashboard/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/dashboard-tile/financial-dashboard/tsconfig.app.json b/samples/charts/dashboard-tile/financial-dashboard/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/dashboard-tile/financial-dashboard/tsconfig.json b/samples/charts/dashboard-tile/financial-dashboard/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/financial-dashboard/tslint.json b/samples/charts/dashboard-tile/financial-dashboard/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} From 8bd80b6f98802761ec49311591021ae1f5d0ef5c Mon Sep 17 00:00:00 2001 From: mtrela Date: Tue, 17 Dec 2024 11:11:54 -0500 Subject: [PATCH 114/154] fix inputs sample --- samples/inputs/color-editor/overview/src/app.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/inputs/color-editor/overview/src/app.component.ts b/samples/inputs/color-editor/overview/src/app.component.ts index a3d227c4f..3e45385ad 100644 --- a/samples/inputs/color-editor/overview/src/app.component.ts +++ b/samples/inputs/color-editor/overview/src/app.component.ts @@ -1,5 +1,5 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; -import { IgxColorEditorComponent } from 'igniteui-angular-dashboards'; +import { IgxColorEditorComponent } from 'igniteui-angular-inputs'; @Component({ standalone: false, From bb5cc27248a4241288c6ceb9378e7126190beb0a Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Tue, 17 Dec 2024 15:30:15 -0500 Subject: [PATCH 115/154] mdd-update-angular-19 (#262) * mdd-update-angular-19 mdd-update-angular-19 * Update package.json * Update package.json * Update package.json --- browser/package.json | 32 +++++----- browser/src/browser-info.json | 4 +- .../financial-dashboard/ReadMe.md | 58 +++++++++++++++++++ 3 files changed, 76 insertions(+), 18 deletions(-) create mode 100644 samples/charts/dashboard-tile/financial-dashboard/ReadMe.md diff --git a/browser/package.json b/browser/package.json index 2fc7d4d28..bed9e81a0 100644 --- a/browser/package.json +++ b/browser/package.json @@ -21,14 +21,14 @@ "url": "git://github.com/IgniteUI/@infragistics/igniteui-angular-examples/repository.git" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", - "@angular/router": "19.1.0-next.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", + "@angular/router": "19.0.4", "@ionic/angular": "5.6.3", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", @@ -38,7 +38,7 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.2", + "igniteui-angular": "19.0.3", "igniteui-angular-charts": "18.2.0-beta.1", "igniteui-angular-core": "18.2.0-beta.1", "igniteui-angular-dashboards": "18.2.0-beta.1", @@ -50,7 +50,7 @@ "igniteui-angular-maps": "18.2.0-beta.1", "igniteui-angular-spreadsheet": "18.2.0-beta.1", "igniteui-angular-spreadsheet-chart-adapter": "18.2.0-beta.1", - "igniteui-theming": "11.0.0", + "igniteui-theming": "14.3.0", "igniteui-webcomponents": "5.1.2", "immediate": "3.2.3", "intl": "1.2.5", @@ -61,13 +61,13 @@ "tslib": "2.6.1", "uzip": "0.20200128.0", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/jasmine": "3.10.2", "@types/jasminewd2": "2.0.9", "@types/node": "18.17.0", @@ -92,6 +92,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index a7a942637..775f7c8e4 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,5 +1,5 @@ [ -{"ver":"19.0.2","name":"igniteui-angular"}, +{"ver":"19.0.3","name":"igniteui-angular"}, {"ver":"18.2.0-beta.1","name":"igniteui-angular-charts"}, {"ver":"18.2.0-beta.1","name":"igniteui-angular-core"}, {"ver":"18.2.0-beta.1","name":"igniteui-angular-dashboards"}, @@ -11,6 +11,6 @@ {"ver":"18.2.0-beta.1","name":"igniteui-angular-maps"}, {"ver":"18.2.0-beta.1","name":"igniteui-angular-spreadsheet"}, {"ver":"18.2.0-beta.1","name":"igniteui-angular-spreadsheet-chart-adapter"}, -{"ver":"11.0.0","name":"igniteui-theming"}, +{"ver":"14.3.0","name":"igniteui-theming"}, {"ver":"5.1.2","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/samples/charts/dashboard-tile/financial-dashboard/ReadMe.md b/samples/charts/dashboard-tile/financial-dashboard/ReadMe.md new file mode 100644 index 000000000..62a129859 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Financial Dashboard feature using [DashboardTile](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/dashboard-tile/financial-dashboard +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). From f81f7ea79577158a967e83c0c699d407474f56e7 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 02:57:40 -0500 Subject: [PATCH 116/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.12.17.7 (#263) Co-authored-by: tfsbuild --- .../src/WorldStats.ts | 25 +------------------ .../src/WorldStats.ts | 25 +------------------ 2 files changed, 2 insertions(+), 48 deletions(-) diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts index a0b3fbe3f..2c09f68a2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts @@ -4160,7 +4160,7 @@ export class WorldStats extends Array { status: `Dependency`, longitude: -53.13, latitude: 3.893, - gdpPerPerson: 4386128, + gdpPerPerson: 4386, rank: 180, unemployment: 3, oilProduction: 0, @@ -5322,29 +5322,6 @@ export class WorldStats extends Array { internet: 4009 }), new WorldStatsItem( - { - code: `ATA`, - name: `Antarctica`, - continent: `Antarctica`, - population: 4050, - gdpTotal: 810, - economy: `Developing`, - region: `Antarctica`, - status: `Indeterminate`, - longitude: 54.592, - latitude: -70.81, - gdpPerPerson: 200000, - rank: 231, - unemployment: 9, - oilProduction: 2, - birthRate: 18, - medianAge: 42, - electricity: 63975, - televisions: 2439, - publicDebt: 45, - internet: 2190 - }), - new WorldStatsItem( { code: `IOT`, name: `British Indian Territory`, diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts index a0b3fbe3f..2c09f68a2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts @@ -4160,7 +4160,7 @@ export class WorldStats extends Array { status: `Dependency`, longitude: -53.13, latitude: 3.893, - gdpPerPerson: 4386128, + gdpPerPerson: 4386, rank: 180, unemployment: 3, oilProduction: 0, @@ -5322,29 +5322,6 @@ export class WorldStats extends Array { internet: 4009 }), new WorldStatsItem( - { - code: `ATA`, - name: `Antarctica`, - continent: `Antarctica`, - population: 4050, - gdpTotal: 810, - economy: `Developing`, - region: `Antarctica`, - status: `Indeterminate`, - longitude: 54.592, - latitude: -70.81, - gdpPerPerson: 200000, - rank: 231, - unemployment: 9, - oilProduction: 2, - birthRate: 18, - medianAge: 42, - electricity: 63975, - televisions: 2439, - publicDebt: 45, - internet: 2190 - }), - new WorldStatsItem( { code: `IOT`, name: `British Indian Territory`, From 5e6716ee7bd11d76bb01101be240f1f269981578 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 04:53:49 -0500 Subject: [PATCH 117/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.12.18.1 (#264) Co-authored-by: tfsbuild --- .../src/app.component.html | 7 ++-- .../src/app.component.ts | 4 +- .../src/app.component.html | 21 ++++++---- .../src/app.component.html | 7 +++- .../src/app.component.html | 38 ++++++++++++++----- 5 files changed, 54 insertions(+), 23 deletions(-) diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html index 2f44a0e95..b76fbf584 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html @@ -19,9 +19,10 @@ + title="Public Debt per GDP (%)" + titleLeftMargin="5" + isLogarithmic="false" + maximumValue="120"> + title="Public Debt per GDP (%)" + titleLeftMargin="5" + isLogarithmic="false" + maximumValue="120"> @@ -36,13 +37,16 @@ [yAxis]="yAxis" xMemberPath="population" yMemberPath="gDP" - radiusMemberPath="population" + radiusMemberPath="workedHours" + xMemberAsLegendLabel="Population" + yMemberAsLegendLabel="GDP" + radiusMemberAsLegendLabel="Worked Hours" [dataSource]="countryStatsAfrica" markerType="Circle" - markerOutline="rgba(62, 202, 62, 1)" - markerBrush="rgba(69, 179, 224, 1)" + markerOutline="rgba(2, 158, 30, 1)" + markerBrush="rgba(2, 158, 30, 1)" markerFillOpacity="0.5" - markerThickness="2" + markerThickness="1" showDefaultTooltip="true" [radiusScale]="sizeScale1"> @@ -54,19 +58,35 @@ [yAxis]="yAxis" xMemberPath="population" yMemberPath="gDP" - radiusMemberPath="population" + radiusMemberPath="workedHours" + xMemberAsLegendLabel="Population" + yMemberAsLegendLabel="GDP" + radiusMemberAsLegendLabel="Worked Hours" [dataSource]="countryStatsEurope" markerType="Circle" - markerOutline="rgba(171, 6, 221, 1)" - markerBrush="rgba(135, 156, 235, 1)" + markerOutline="rgba(95, 2, 171, 1)" + markerBrush="rgba(95, 2, 171, 1)" markerFillOpacity="0.5" - markerThickness="2" + markerThickness="1" showDefaultTooltip="true" [radiusScale]="sizeScale2"> + #dataToolTipLayer + valueRowMarginTop="1" + labelTextMarginTop="1" + titleTextMarginTop="1" + unitsTextMarginTop="1" + valueRowMarginBottom="1" + labelTextMarginBottom="1" + titleTextMarginBottom="1" + unitsTextMarginBottom="1" + unitsTextMarginRight="5" + valueTextMarginLeft="10" + labelTextMarginLeft="5" + groupingMode="Grouped" + layoutMode="Vertical">
From cfa4f42d8119c7df70f4a5e11231ba68d3e98653 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 13:24:13 -0500 Subject: [PATCH 118/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.12.18.2 (#265) Co-authored-by: tfsbuild --- .../src/app.component.html | 44 +- .../src/app.component.ts | 4 +- .../src/app.component.html | 42 +- .../src/app.component.ts | 4 +- .../src/app.component.html | 39 +- .../src/WorldStats.ts | 5420 +++++++++++++++++ .../src/app.component.html | 68 +- .../src/app.component.ts | 43 +- 8 files changed, 5552 insertions(+), 112 deletions(-) create mode 100644 samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html index b76fbf584..37a936b2c 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html @@ -5,24 +5,26 @@ #chart isHorizontalZoomEnabled="true" isVerticalZoomEnabled="true" - chartTitle="Public Debt vs. Population" - subtitle="GDP per Capita"> + chartTitle="Population vs. Public Debt vs. GDP" + titleTopMargin="10" + titleBottomMargin="0"> + abbreviateLargeNumbers="true"> + titleLeftMargin="10" + isLogarithmic="true" + abbreviateLargeNumbers="true" + maximumValue="1000"> + +
diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts index b9e860ac7..1ab2ab0f4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts @@ -1,7 +1,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, NumberAbbreviatorDescriptionModule, DataChartCoreDescriptionModule, DataChartScatterDescriptionModule, DataChartScatterCoreDescriptionModule, DataChartInteractivityDescriptionModule, DataChartAnnotationDescriptionModule } from 'igniteui-angular-core'; import { WorldStatsItem, WorldStats } from './WorldStats'; -import { IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent, IgxSizeScaleComponent, IgxValueBrushScaleComponent } from 'igniteui-angular-charts'; +import { IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent, IgxSizeScaleComponent, IgxValueBrushScaleComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ standalone: false, @@ -49,6 +49,8 @@ export class AppComponent implements AfterViewInit } return this._valueBrushScale1; } + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _worldStats: WorldStats = null; public get worldStats(): WorldStats { if (this._worldStats == null) diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html index 7e81731fb..4c7a85efe 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html @@ -24,10 +24,11 @@ + title="GDP per Capita" + maximumValue="1000000" + titleLeftMargin="10" + isLogarithmic="true" + abbreviateLargeNumbers="true"> + +
diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.ts index 3da7d8aab..b4b21503c 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.ts @@ -1,7 +1,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { CountryStatsAfricaItem, CountryStatsAfrica } from './CountryStatsAfrica'; import { CountryStatsEuropeItem, CountryStatsEurope } from './CountryStatsEurope'; -import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent, IgxSizeScaleComponent } from 'igniteui-angular-charts'; +import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent, IgxSizeScaleComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ standalone: false, @@ -52,6 +52,8 @@ export class AppComponent implements AfterViewInit } return this._sizeScale2; } + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent private _countryStatsAfrica: CountryStatsAfrica = null; public get countryStatsAfrica(): CountryStatsAfrica { if (this._countryStatsAfrica == null) diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html index 52d98728b..7987c97d6 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html @@ -1,15 +1,17 @@
-
- Total Population of Selected Countries -
+ #chart + chartTitle="Population vs. Public Debt vs. GDP" + titleTopMargin="10" + titleBottomMargin="0"> @@ -17,9 +19,10 @@ name="yAxis" #yAxis title="Public Debt per GDP (%)" - titleLeftMargin="5" - isLogarithmic="false" - maximumValue="120"> + titleLeftMargin="10" + isLogarithmic="true" + abbreviateLargeNumbers="true" + maximumValue="1000"> + #dataToolTipLayer + valueRowMarginTop="1" + labelTextMarginTop="1" + titleTextMarginTop="1" + unitsTextMarginTop="1" + valueRowMarginBottom="1" + labelTextMarginBottom="1" + titleTextMarginBottom="1" + unitsTextMarginBottom="1" + unitsTextMarginRight="5" + valueTextMarginLeft="10" + labelTextMarginLeft="1" + groupingMode="Grouped" + layoutMode="Vertical" + badgeShape="Hidden" + headerRowVisible="false">
diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts new file mode 100644 index 000000000..2c09f68a2 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts @@ -0,0 +1,5420 @@ +export class WorldStatsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public code: string; + public name: string; + public continent: string; + public population: number; + public gdpTotal: number; + public economy: string; + public region: string; + public status: string; + public longitude: number; + public latitude: number; + public gdpPerPerson: number; + public rank: number; + public unemployment: number; + public oilProduction: number; + public birthRate: number; + public medianAge: number; + public electricity: number; + public televisions: number; + public publicDebt: number; + public internet: number; + +} +export class WorldStats extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new WorldStatsItem( + { + code: `CHN`, + name: `China`, + continent: `Asia`, + population: 1379302771, + gdpTotal: 21140000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 104.18, + latitude: 35.887, + gdpPerPerson: 15327, + rank: 1, + unemployment: 4, + oilProduction: 3725000, + birthRate: 14, + medianAge: 34, + electricity: 3256000, + televisions: 400000000, + publicDebt: 18, + internet: 253000000 + }), + new WorldStatsItem( + { + code: `IND`, + name: `India`, + continent: `Asia`, + population: 1281935911, + gdpTotal: 8721000, + economy: `Emerging`, + region: `Southern Asia`, + status: `Country`, + longitude: 78.022, + latitude: 22.665, + gdpPerPerson: 6803, + rank: 2, + unemployment: 7, + oilProduction: 810000, + birthRate: 22, + medianAge: 25, + electricity: 661600, + televisions: 63000000, + publicDebt: 58, + internet: 80000000 + }), + new WorldStatsItem( + { + code: `USA`, + name: `United States`, + continent: `North America`, + population: 326625791, + gdpTotal: 18560000, + economy: `Developed`, + region: `Northern America`, + status: `Country`, + longitude: -101.8, + latitude: 39.818, + gdpPerPerson: 56823, + rank: 3, + unemployment: 5, + oilProduction: 7460000, + birthRate: 14, + medianAge: 37, + electricity: 4062000, + televisions: 219000000, + publicDebt: 61, + internet: 223000000 + }), + new WorldStatsItem( + { + code: `IDN`, + name: `Indonesia`, + continent: `Asia`, + population: 260580739, + gdpTotal: 3028000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 102.72, + latitude: -2.698, + gdpPerPerson: 11620, + rank: 4, + unemployment: 9, + oilProduction: 837500, + birthRate: 19, + medianAge: 27, + electricity: 125900, + televisions: 13750000, + publicDebt: 34, + internet: 13000000 + }), + new WorldStatsItem( + { + code: `BRA`, + name: `Brazil`, + continent: `South America`, + population: 207353391, + gdpTotal: 3081000, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -48.88, + latitude: -12.89, + gdpPerPerson: 14859, + rank: 5, + unemployment: 9, + oilProduction: 1797000, + birthRate: 19, + medianAge: 28, + electricity: 396400, + televisions: 36500000, + publicDebt: 45, + internet: 50000000 + }), + new WorldStatsItem( + { + code: `PAK`, + name: `Pakistan`, + continent: `Asia`, + population: 204924861, + gdpTotal: 988200, + economy: `Emerging`, + region: `Southern Asia`, + status: `Country`, + longitude: 67.624, + latitude: 28.421, + gdpPerPerson: 4822, + rank: 6, + unemployment: 6, + oilProduction: 62000, + birthRate: 28, + medianAge: 21, + electricity: 89820, + televisions: 3100000, + publicDebt: 51, + internet: 17500000 + }), + new WorldStatsItem( + { + code: `NGA`, + name: `Nigeria`, + continent: `Africa`, + population: 190632261, + gdpTotal: 1089000, + economy: `Emerging`, + region: `Western Africa`, + status: `Country`, + longitude: 8.657, + latitude: 9.075, + gdpPerPerson: 5713, + rank: 7, + unemployment: 5, + oilProduction: 2166000, + birthRate: 37, + medianAge: 19, + electricity: 22530, + televisions: 6900000, + publicDebt: 14, + internet: 10000000 + }), + new WorldStatsItem( + { + code: `BGD`, + name: `Bangladesh`, + continent: `Asia`, + population: 157826578, + gdpTotal: 628400, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 89.935, + latitude: 24.474, + gdpPerPerson: 3982, + rank: 8, + unemployment: 3, + oilProduction: 6746, + birthRate: 29, + medianAge: 23, + electricity: 21350, + televisions: 770000, + publicDebt: 37, + internet: 500000 + }), + new WorldStatsItem( + { + code: `RUS`, + name: `Russia`, + continent: `Europe`, + population: 142257519, + gdpTotal: 3745000, + economy: `Emerging`, + region: `Eastern Europe`, + status: `Country`, + longitude: 42.379, + latitude: 56.974, + gdpPerPerson: 26325, + rank: 9, + unemployment: 6, + oilProduction: 9870000, + birthRate: 11, + medianAge: 38, + electricity: 1000000, + televisions: 60500000, + publicDebt: 6, + internet: 30000000 + }), + new WorldStatsItem( + { + code: `JPN`, + name: `Japan`, + continent: `Asia`, + population: 126451398, + gdpTotal: 4932000, + economy: `Developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 138.48, + latitude: 36.519, + gdpPerPerson: 39003, + rank: 10, + unemployment: 4, + oilProduction: 125000, + birthRate: 8, + medianAge: 44, + electricity: 1025000, + televisions: 86500000, + publicDebt: 170, + internet: 88110000 + }), + new WorldStatsItem( + { + code: `MEX`, + name: `Mexico`, + continent: `North America`, + population: 124574795, + gdpTotal: 2307000, + economy: `Emerging`, + region: `Central America`, + status: `Country`, + longitude: -102.5, + latitude: 23.63, + gdpPerPerson: 18519, + rank: 11, + unemployment: 4, + oilProduction: 3083000, + birthRate: 20, + medianAge: 26, + electricity: 222400, + televisions: 25600000, + publicDebt: 23, + internet: 22812000 + }), + new WorldStatsItem( + { + code: `ETH`, + name: `Ethiopia`, + continent: `Africa`, + population: 105350020, + gdpTotal: 174700, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 40.489, + latitude: 9.154, + gdpPerPerson: 1658, + rank: 12, + unemployment: 5, + oilProduction: 1, + birthRate: 25, + medianAge: 52, + electricity: 60942, + televisions: 66893500, + publicDebt: 45, + internet: 291000 + }), + new WorldStatsItem( + { + code: `PHL`, + name: `Philippines`, + continent: `Asia`, + population: 104256076, + gdpTotal: 801900, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 121.4, + latitude: 16.78, + gdpPerPerson: 7692, + rank: 13, + unemployment: 7, + oilProduction: 0, + birthRate: 26, + medianAge: 22, + electricity: 53670, + televisions: 3700000, + publicDebt: 56, + internet: 5300000 + }), + new WorldStatsItem( + { + code: `EGY`, + name: `Egypt`, + continent: `Africa`, + population: 97041072, + gdpTotal: 1105000, + economy: `Emerging`, + region: `Middle East`, + status: `Country`, + longitude: 30.787, + latitude: 26.825, + gdpPerPerson: 11387, + rank: 14, + unemployment: 9, + oilProduction: 665000, + birthRate: 22, + medianAge: 25, + electricity: 102500, + televisions: 7700000, + publicDebt: 106, + internet: 8620000 + }), + new WorldStatsItem( + { + code: `VNM`, + name: `Vietnam`, + continent: `Asia`, + population: 96160163, + gdpTotal: 594900, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 108.46, + latitude: 13.711, + gdpPerPerson: 6187, + rank: 15, + unemployment: 4, + oilProduction: 324000, + birthRate: 16, + medianAge: 27, + electricity: 59010, + televisions: 3570000, + publicDebt: 42, + internet: 17870000 + }), + new WorldStatsItem( + { + code: `COD`, + name: `Dem. Rep. Congo`, + continent: `Africa`, + population: 83301151, + gdpTotal: 66010, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 21.738, + latitude: -4.071, + gdpPerPerson: 792, + rank: 16, + unemployment: 3, + oilProduction: 4, + birthRate: 13, + medianAge: 41, + electricity: 48913, + televisions: 55942436, + publicDebt: 16, + internet: 8903936 + }), + new WorldStatsItem( + { + code: `IRN`, + name: `Iran`, + continent: `Asia`, + population: 82021564, + gdpTotal: 1459000, + economy: `Emerging`, + region: `Middle East`, + status: `Country`, + longitude: 53.664, + latitude: 32.435, + gdpPerPerson: 17788, + rank: 17, + unemployment: 12, + oilProduction: 3956000, + birthRate: 17, + medianAge: 26, + electricity: 170400, + televisions: 4610000, + publicDebt: 17, + internet: 23000000 + }), + new WorldStatsItem( + { + code: `TUR`, + name: `Turkey`, + continent: `Asia`, + population: 80845215, + gdpTotal: 1670000, + economy: `Emerging`, + region: `Middle East`, + status: `Country`, + longitude: 35.243, + latitude: 38.962, + gdpPerPerson: 20657, + rank: 18, + unemployment: 10, + oilProduction: 45460, + birthRate: 16, + medianAge: 29, + electricity: 154200, + televisions: 20900000, + publicDebt: 39, + internet: 13150000 + }), + new WorldStatsItem( + { + code: `DEU`, + name: `Germany`, + continent: `Europe`, + population: 80594017, + gdpTotal: 3979000, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 11.43, + latitude: 52.237, + gdpPerPerson: 49371, + rank: 19, + unemployment: 9, + oilProduction: 141700, + birthRate: 8, + medianAge: 43, + electricity: 579400, + televisions: 51400000, + publicDebt: 65, + internet: 42500000 + }), + new WorldStatsItem( + { + code: `THA`, + name: `Thailand`, + continent: `Asia`, + population: 68414135, + gdpTotal: 1161000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 100.65, + latitude: 15.345, + gdpPerPerson: 16970, + rank: 20, + unemployment: 1, + oilProduction: 310000, + birthRate: 14, + medianAge: 33, + electricity: 124600, + televisions: 15190000, + publicDebt: 38, + internet: 13416000 + }), + new WorldStatsItem( + { + code: `FRA`, + name: `France`, + continent: `Europe`, + population: 67106161, + gdpTotal: 2699000, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 2.267, + latitude: 46.645, + gdpPerPerson: 40220, + rank: 21, + unemployment: 12, + oilProduction: 1, + birthRate: 24, + medianAge: 48, + electricity: 63711, + televisions: 43156970, + publicDebt: 11, + internet: 7012454 + }), + new WorldStatsItem( + { + code: `GBR`, + name: `United Kingdom`, + continent: `Europe`, + population: 64769452, + gdpTotal: 2788000, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: -1.233, + latitude: 52.242, + gdpPerPerson: 43045, + rank: 22, + unemployment: 5, + oilProduction: 1636000, + birthRate: 11, + medianAge: 40, + electricity: 372600, + televisions: 30500000, + publicDebt: 44, + internet: 40200000 + }), + new WorldStatsItem( + { + code: `ITA`, + name: `Italy`, + continent: `Europe`, + population: 62137802, + gdpTotal: 2221000, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 15.701, + latitude: 40.885, + gdpPerPerson: 35743, + rank: 23, + unemployment: 6, + oilProduction: 164800, + birthRate: 8, + medianAge: 43, + electricity: 278500, + televisions: 30300000, + publicDebt: 104, + internet: 32000000 + }), + new WorldStatsItem( + { + code: `MMR`, + name: `Myanmar`, + continent: `Asia`, + population: 55123814, + gdpTotal: 311100, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 96.028, + latitude: 21.509, + gdpPerPerson: 5644, + rank: 24, + unemployment: 13, + oilProduction: 4, + birthRate: 24, + medianAge: 37, + electricity: 26955, + televisions: 39322205, + publicDebt: 18, + internet: 30207772 + }), + new WorldStatsItem( + { + code: `ZAF`, + name: `South Africa`, + continent: `Africa`, + population: 54841552, + gdpTotal: 739100, + economy: `Emerging`, + region: `Southern Africa`, + status: `Country`, + longitude: 22.489, + latitude: -32.4, + gdpPerPerson: 13477, + rank: 25, + unemployment: 24, + oilProduction: 200000, + birthRate: 20, + medianAge: 24, + electricity: 264000, + televisions: 6000000, + publicDebt: 31, + internet: 5100000 + }), + new WorldStatsItem( + { + code: `TZA`, + name: `Tanzania`, + continent: `Africa`, + population: 53950935, + gdpTotal: 150600, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 34.894, + latitude: -6.356, + gdpPerPerson: 2791, + rank: 26, + unemployment: 6, + oilProduction: 3, + birthRate: 9, + medianAge: 34, + electricity: 10186, + televisions: 35987980, + publicDebt: 20, + internet: 400000 + }), + new WorldStatsItem( + { + code: `KOR`, + name: `South Korea`, + continent: `Asia`, + population: 51181299, + gdpTotal: 1929000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 128.29, + latitude: 36.399, + gdpPerPerson: 37690, + rank: 27, + unemployment: 3, + oilProduction: 17050, + birthRate: 9, + medianAge: 37, + electricity: 403200, + televisions: 15900000, + publicDebt: 28, + internet: 35590000 + }), + new WorldStatsItem( + { + code: `ESP`, + name: `Spain`, + continent: `Europe`, + population: 48958159, + gdpTotal: 1690000, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: -2.892, + latitude: 40.569, + gdpPerPerson: 34519, + rank: 28, + unemployment: 8, + oilProduction: 29350, + birthRate: 10, + medianAge: 41, + electricity: 270300, + televisions: 16200000, + publicDebt: 36, + internet: 19690000 + }), + new WorldStatsItem( + { + code: `COL`, + name: `Colombia`, + continent: `South America`, + population: 47698524, + gdpTotal: 688000, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -72.95, + latitude: 4.099, + gdpPerPerson: 14424, + rank: 29, + unemployment: 11, + oilProduction: 531300, + birthRate: 20, + medianAge: 27, + electricity: 50470, + televisions: 4590000, + publicDebt: 53, + internet: 12100000 + }), + new WorldStatsItem( + { + code: `KEN`, + name: `Kenya`, + continent: `Africa`, + population: 47615739, + gdpTotal: 152700, + economy: `Emerging`, + region: `Eastern Africa`, + status: `Country`, + longitude: 37.929, + latitude: 0.4, + gdpPerPerson: 3207, + rank: 30, + unemployment: 40, + oilProduction: 0, + birthRate: 38, + medianAge: 19, + electricity: 5502, + televisions: 730000, + publicDebt: 49, + internet: 3000000 + }), + new WorldStatsItem( + { + code: `ARG`, + name: `Argentina`, + continent: `South America`, + population: 44293293, + gdpTotal: 879400, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -64.84, + latitude: -33.07, + gdpPerPerson: 19854, + rank: 31, + unemployment: 9, + oilProduction: 730000, + birthRate: 18, + medianAge: 30, + electricity: 101100, + televisions: 7950000, + publicDebt: 56, + internet: 9309000 + }), + new WorldStatsItem( + { + code: `UKR`, + name: `Ukraine`, + continent: `Europe`, + population: 44033874, + gdpTotal: 352600, + economy: `Developing`, + region: `Eastern Europe`, + status: `Country`, + longitude: 30.86, + latitude: 49.723, + gdpPerPerson: 8007, + rank: 32, + unemployment: 2, + oilProduction: 90400, + birthRate: 10, + medianAge: 39, + electricity: 192100, + televisions: 18050000, + publicDebt: 12, + internet: 10000000 + }), + new WorldStatsItem( + { + code: `DZA`, + name: `Algeria`, + continent: `Africa`, + population: 40969443, + gdpTotal: 609400, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 1.642, + latitude: 28.04, + gdpPerPerson: 14875, + rank: 33, + unemployment: 12, + oilProduction: 1358000, + birthRate: 17, + medianAge: 26, + electricity: 31910, + televisions: 3100000, + publicDebt: 18, + internet: 3500000 + }), + new WorldStatsItem( + { + code: `UGA`, + name: `Uganda`, + continent: `Africa`, + population: 39570125, + gdpTotal: 84930, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 32.27, + latitude: 1.375, + gdpPerPerson: 2146, + rank: 34, + unemployment: 10, + oilProduction: 1, + birthRate: 10, + medianAge: 32, + electricity: 35388, + televisions: 27867123, + publicDebt: 21, + internet: 2000000 + }), + new WorldStatsItem( + { + code: `IRQ`, + name: `Iraq`, + continent: `Asia`, + population: 39192111, + gdpTotal: 596700, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 43.66, + latitude: 33.218, + gdpPerPerson: 15225, + rank: 35, + unemployment: 6, + oilProduction: 0, + birthRate: 20, + medianAge: 44, + electricity: 48545, + televisions: 13178804, + publicDebt: 40, + internet: 9538092 + }), + new WorldStatsItem( + { + code: `POL`, + name: `Poland`, + continent: `Europe`, + population: 38476269, + gdpTotal: 1052000, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 20.073, + latitude: 52.374, + gdpPerPerson: 27342, + rank: 36, + unemployment: 13, + oilProduction: 0, + birthRate: 10, + medianAge: 38, + electricity: 146200, + televisions: 13050000, + publicDebt: 43, + internet: 16000000 + }), + new WorldStatsItem( + { + code: `SDN`, + name: `Sudan`, + continent: `Africa`, + population: 37345935, + gdpTotal: 176300, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 30.217, + latitude: 15.434, + gdpPerPerson: 4721, + rank: 37, + unemployment: 19, + oilProduction: 484500, + birthRate: 34, + medianAge: 19, + electricity: 3944, + televisions: 2380000, + publicDebt: 106, + internet: 1500000 + }), + new WorldStatsItem( + { + code: `CAN`, + name: `Canada`, + continent: `North America`, + population: 35623680, + gdpTotal: 1674000, + economy: `Developed`, + region: `Northern America`, + status: `Country`, + longitude: -108, + latitude: 55.855, + gdpPerPerson: 46991, + rank: 38, + unemployment: 6, + oilProduction: 3310000, + birthRate: 10, + medianAge: 40, + electricity: 609600, + televisions: 21500000, + publicDebt: 64, + internet: 28000000 + }), + new WorldStatsItem( + { + code: `AFG`, + name: `Afghanistan`, + continent: `Asia`, + population: 34124811, + gdpTotal: 64080, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 66.041, + latitude: 33.977, + gdpPerPerson: 1878, + rank: 39, + unemployment: 9, + oilProduction: 2, + birthRate: 15, + medianAge: 39, + electricity: 64532, + televisions: 15374294, + publicDebt: 25, + internet: 18662148 + }), + new WorldStatsItem( + { + code: `MAR`, + name: `Morocco`, + continent: `Africa`, + population: 33986655, + gdpTotal: 282800, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: -5.707, + latitude: 32.104, + gdpPerPerson: 8321, + rank: 40, + unemployment: 10, + oilProduction: 300, + birthRate: 21, + medianAge: 25, + electricity: 21370, + televisions: 3100000, + publicDebt: 67, + internet: 7300000 + }), + new WorldStatsItem( + { + code: `MYS`, + name: `Malaysia`, + continent: `Asia`, + population: 31381992, + gdpTotal: 863000, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 101.72, + latitude: 4.89, + gdpPerPerson: 27500, + rank: 41, + unemployment: 3, + oilProduction: 757500, + birthRate: 22, + medianAge: 25, + electricity: 82360, + televisions: 10800000, + publicDebt: 42, + internet: 15868000 + }), + new WorldStatsItem( + { + code: `VEN`, + name: `Venezuela`, + continent: `South America`, + population: 31304016, + gdpTotal: 468600, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -64.78, + latitude: 6.695, + gdpPerPerson: 14969, + rank: 42, + unemployment: 9, + oilProduction: 2398000, + birthRate: 21, + medianAge: 25, + electricity: 99200, + televisions: 4100000, + publicDebt: 19, + internet: 5720000 + }), + new WorldStatsItem( + { + code: `PER`, + name: `Peru`, + continent: `South America`, + population: 31036656, + gdpTotal: 410400, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -73.82, + latitude: -12.89, + gdpPerPerson: 13223, + rank: 43, + unemployment: 7, + oilProduction: 119000, + birthRate: 20, + medianAge: 26, + electricity: 24970, + televisions: 3060000, + publicDebt: 29, + internet: 7636000 + }), + new WorldStatsItem( + { + code: `UZB`, + name: `Uzbekistan`, + continent: `Asia`, + population: 29748859, + gdpTotal: 202300, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 63.288, + latitude: 42.338, + gdpPerPerson: 6800, + rank: 44, + unemployment: 1, + oilProduction: 109400, + birthRate: 18, + medianAge: 24, + electricity: 49000, + televisions: 6400000, + publicDebt: 19, + internet: 1200000 + }), + new WorldStatsItem( + { + code: `NPL`, + name: `Nepal`, + continent: `Asia`, + population: 29384297, + gdpTotal: 71520, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 82.328, + latitude: 28.843, + gdpPerPerson: 2434, + rank: 45, + unemployment: 5, + oilProduction: 3, + birthRate: 18, + medianAge: 34, + electricity: 68842, + televisions: 21075997, + publicDebt: 16, + internet: 7780693 + }), + new WorldStatsItem( + { + code: `AGO`, + name: `Angola`, + continent: `Africa`, + population: 29310273, + gdpTotal: 189000, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 18.097, + latitude: -12.37, + gdpPerPerson: 6448, + rank: 46, + unemployment: 14, + oilProduction: 0, + birthRate: 15, + medianAge: 38, + electricity: 25890, + televisions: 21283158, + publicDebt: 12, + internet: 100000 + }), + new WorldStatsItem( + { + code: `SAU`, + name: `Saudi Arabia`, + continent: `Asia`, + population: 28571770, + gdpTotal: 1731000, + economy: `Developed`, + region: `Middle East`, + status: `Country`, + longitude: 45.129, + latitude: 24.248, + gdpPerPerson: 60584, + rank: 47, + unemployment: 13, + oilProduction: 11000000, + birthRate: 29, + medianAge: 22, + electricity: 165600, + televisions: 5100000, + publicDebt: 24, + internet: 6200000 + }), + new WorldStatsItem( + { + code: `YEM`, + name: `Yemen`, + continent: `Asia`, + population: 28036829, + gdpTotal: 73450, + economy: `Least developed`, + region: `Middle East`, + status: `Country`, + longitude: 48.53, + latitude: 15.658, + gdpPerPerson: 2620, + rank: 48, + unemployment: 35, + oilProduction: 339200, + birthRate: 42, + medianAge: 17, + electricity: 4456, + televisions: 470000, + publicDebt: 34, + internet: 320000 + }), + new WorldStatsItem( + { + code: `GHA`, + name: `Ghana`, + continent: `Africa`, + population: 27499924, + gdpTotal: 120800, + economy: `Developing`, + region: `Western Africa`, + status: `Country`, + longitude: -0.893, + latitude: 8.607, + gdpPerPerson: 4393, + rank: 49, + unemployment: 11, + oilProduction: 700, + birthRate: 29, + medianAge: 20, + electricity: 7042, + televisions: 1900000, + publicDebt: 59, + internet: 650000 + }), + new WorldStatsItem( + { + code: `MOZ`, + name: `Mozambique`, + continent: `Africa`, + population: 26573706, + gdpTotal: 35010, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 38.075, + latitude: -15.41, + gdpPerPerson: 1317, + rank: 50, + unemployment: 21, + oilProduction: 0, + birthRate: 38, + medianAge: 17, + electricity: 13170, + televisions: 67600, + publicDebt: 22, + internet: 200000 + }), + new WorldStatsItem( + { + code: `PRK`, + name: `North Korea`, + continent: `Asia`, + population: 25248140, + gdpTotal: 40000, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 127.01, + latitude: 40.333, + gdpPerPerson: 1584, + rank: 51, + unemployment: 13, + oilProduction: 0, + birthRate: 23, + medianAge: 55, + electricity: 35619, + televisions: 16501842, + publicDebt: 30, + internet: 2340760 + }), + new WorldStatsItem( + { + code: `MDG`, + name: `Madagascar`, + continent: `Africa`, + population: 25054161, + gdpTotal: 36860, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 46.87, + latitude: -18.82, + gdpPerPerson: 1471, + rank: 52, + unemployment: 15, + oilProduction: 0, + birthRate: 20, + medianAge: 36, + electricity: 86068, + televisions: 9470858, + publicDebt: 31, + internet: 1407981 + }), + new WorldStatsItem( + { + code: `CMR`, + name: `Cameroon`, + continent: `Africa`, + population: 24994885, + gdpTotal: 77240, + economy: `Developing`, + region: `Middle Africa`, + status: `Country`, + longitude: 12.451, + latitude: 4.365, + gdpPerPerson: 3090, + rank: 53, + unemployment: 30, + oilProduction: 85300, + birthRate: 35, + medianAge: 19, + electricity: 4090, + televisions: 450000, + publicDebt: 16, + internet: 370000 + }), + new WorldStatsItem( + { + code: `CIV`, + name: `Ivory Coast`, + continent: `Africa`, + population: 24184810, + gdpTotal: 87120, + economy: `Developing`, + region: `Western Africa`, + status: `Country`, + longitude: -5.555, + latitude: 7.538, + gdpPerPerson: 3602, + rank: 54, + unemployment: 3, + oilProduction: 1, + birthRate: 17, + medianAge: 55, + electricity: 49302, + televisions: 9034402, + publicDebt: 75, + internet: 300000 + }), + new WorldStatsItem( + { + code: `TWN`, + name: `Taiwan`, + continent: `Asia`, + population: 23508428, + gdpTotal: 1127000, + economy: `Developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 120.96, + latitude: 23.636, + gdpPerPerson: 47940, + rank: 55, + unemployment: 4, + oilProduction: 600, + birthRate: 9, + medianAge: 36, + electricity: 235000, + televisions: 8800000, + publicDebt: 28, + internet: 14760000 + }), + new WorldStatsItem( + { + code: `AUS`, + name: `Australia`, + continent: `Oceania`, + population: 23232413, + gdpTotal: 1189000, + economy: `Developed`, + region: `Australia`, + status: `Country`, + longitude: 135.87, + latitude: -25.63, + gdpPerPerson: 51178, + rank: 56, + unemployment: 4, + oilProduction: 540000, + birthRate: 13, + medianAge: 37, + electricity: 236700, + televisions: 10150000, + publicDebt: 16, + internet: 11240000 + }), + new WorldStatsItem( + { + code: `LKA`, + name: `Sri Lanka`, + continent: `Asia`, + population: 22409381, + gdpTotal: 236700, + economy: `Developing`, + region: `Southern Asia`, + status: `Country`, + longitude: 80.792, + latitude: 7.881, + gdpPerPerson: 10563, + rank: 57, + unemployment: 6, + oilProduction: 0, + birthRate: 17, + medianAge: 30, + electricity: 8411, + televisions: 1530000, + publicDebt: 86, + internet: 771700 + }), + new WorldStatsItem( + { + code: `ROU`, + name: `Romania`, + continent: `Europe`, + population: 21529967, + gdpTotal: 441000, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 24.974, + latitude: 45.967, + gdpPerPerson: 20483, + rank: 58, + unemployment: 4, + oilProduction: 115000, + birthRate: 11, + medianAge: 37, + electricity: 60520, + televisions: 5250000, + publicDebt: 13, + internet: 12000000 + }), + new WorldStatsItem( + { + code: `BFA`, + name: `Burkina Faso`, + continent: `Africa`, + population: 20107509, + gdpTotal: 32990, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -1.567, + latitude: 12.251, + gdpPerPerson: 1641, + rank: 59, + unemployment: 4, + oilProduction: 5, + birthRate: 21, + medianAge: 30, + electricity: 82658, + televisions: 7478745, + publicDebt: 14, + internet: 5896530 + }), + new WorldStatsItem( + { + code: `NER`, + name: `Niger`, + continent: `Africa`, + population: 19245344, + gdpTotal: 20150, + economy: `Least developed`, + region: `Northern Africa`, + status: `Country`, + longitude: 10.845, + latitude: 17.92, + gdpPerPerson: 1047, + rank: 60, + unemployment: 9, + oilProduction: 5, + birthRate: 18, + medianAge: 53, + electricity: 10652, + televisions: 8203307, + publicDebt: 17, + internet: 157021 + }), + new WorldStatsItem( + { + code: `MWI`, + name: `Malawi`, + continent: `Africa`, + population: 19196246, + gdpTotal: 21200, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 34.282, + latitude: -13.26, + gdpPerPerson: 1104, + rank: 61, + unemployment: 12, + oilProduction: 3, + birthRate: 12, + medianAge: 51, + electricity: 20676, + televisions: 4938675, + publicDebt: 51, + internet: 139500 + }), + new WorldStatsItem( + { + code: `KAZ`, + name: `Kazakhstan`, + continent: `Asia`, + population: 18556698, + gdpTotal: 460700, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 66.966, + latitude: 47.999, + gdpPerPerson: 24827, + rank: 62, + unemployment: 7, + oilProduction: 1355000, + birthRate: 16, + medianAge: 29, + electricity: 76340, + televisions: 3880000, + publicDebt: 8, + internet: 1901000 + }), + new WorldStatsItem( + { + code: `SYR`, + name: `Syria`, + continent: `Asia`, + population: 18028549, + gdpTotal: 50280, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 39.062, + latitude: 34.807, + gdpPerPerson: 2789, + rank: 63, + unemployment: 9, + oilProduction: 379000, + birthRate: 27, + medianAge: 21, + electricity: 153200, + televisions: 1050000, + publicDebt: 38, + internet: 3470000 + }), + new WorldStatsItem( + { + code: `MLI`, + name: `Mali`, + continent: `Africa`, + population: 17885245, + gdpTotal: 38090, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -1.496, + latitude: 17.867, + gdpPerPerson: 2130, + rank: 64, + unemployment: 4, + oilProduction: 4, + birthRate: 21, + medianAge: 46, + electricity: 72483, + televisions: 4783188, + publicDebt: 38, + internet: 8619386 + }), + new WorldStatsItem( + { + code: `CHL`, + name: `Chile`, + continent: `South America`, + population: 17789267, + gdpTotal: 436100, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -69.11, + latitude: -23.36, + gdpPerPerson: 24515, + rank: 65, + unemployment: 7, + oilProduction: 15100, + birthRate: 15, + medianAge: 31, + electricity: 47600, + televisions: 3150000, + publicDebt: 4, + internet: 557000 + }), + new WorldStatsItem( + { + code: `NLD`, + name: `Netherlands`, + continent: `Europe`, + population: 17084719, + gdpTotal: 870800, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 6.272, + latitude: 52.971, + gdpPerPerson: 50970, + rank: 66, + unemployment: 5, + oilProduction: 76000, + birthRate: 11, + medianAge: 40, + electricity: 94340, + televisions: 8100000, + publicDebt: 46, + internet: 15000000 + }), + new WorldStatsItem( + { + code: `ECU`, + name: `Ecuador`, + continent: `South America`, + population: 16290913, + gdpTotal: 182400, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -77.98, + latitude: -1.291, + gdpPerPerson: 11196, + rank: 67, + unemployment: 9, + oilProduction: 511100, + birthRate: 22, + medianAge: 24, + electricity: 12940, + televisions: 2500000, + publicDebt: 33, + internet: 1549000 + }), + new WorldStatsItem( + { + code: `KHM`, + name: `Cambodia`, + continent: `Asia`, + population: 16204486, + gdpTotal: 58940, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 104.96, + latitude: 12.558, + gdpPerPerson: 3637, + rank: 68, + unemployment: 15, + oilProduction: 1, + birthRate: 17, + medianAge: 50, + electricity: 45509, + televisions: 2489832, + publicDebt: 22, + internet: 11512560 + }), + new WorldStatsItem( + { + code: `ZMB`, + name: `Zambia`, + continent: `Africa`, + population: 15972000, + gdpTotal: 65170, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 26.301, + latitude: -14.3, + gdpPerPerson: 4080, + rank: 69, + unemployment: 50, + oilProduction: 150, + birthRate: 41, + medianAge: 17, + electricity: 8850, + televisions: 277000, + publicDebt: 28, + internet: 500000 + }), + new WorldStatsItem( + { + code: `GTM`, + name: `Guatemala`, + continent: `North America`, + population: 15460732, + gdpTotal: 131800, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -90.4, + latitude: 15.225, + gdpPerPerson: 8525, + rank: 70, + unemployment: 3, + oilProduction: 13000, + birthRate: 29, + medianAge: 19, + electricity: 7281, + televisions: 1323000, + publicDebt: 21, + internet: 1320000 + }), + new WorldStatsItem( + { + code: `SEN`, + name: `Senegal`, + continent: `Africa`, + population: 14668522, + gdpTotal: 39720, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -14.76, + latitude: 15.47, + gdpPerPerson: 2708, + rank: 71, + unemployment: 48, + oilProduction: 0, + birthRate: 37, + medianAge: 19, + electricity: 2159, + televisions: 361000, + publicDebt: 23, + internet: 820000 + }), + new WorldStatsItem( + { + code: `ZWE`, + name: `Zimbabwe`, + continent: `Africa`, + population: 13805084, + gdpTotal: 28330, + economy: `Emerging`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.115, + latitude: -19.02, + gdpPerPerson: 2052, + rank: 72, + unemployment: 80, + oilProduction: 0, + birthRate: 32, + medianAge: 18, + electricity: 9950, + televisions: 370000, + publicDebt: 218, + internet: 1351000 + }), + new WorldStatsItem( + { + code: `SSD`, + name: `South Sudan`, + continent: `Africa`, + population: 13026129, + gdpTotal: 20880, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.708, + latitude: 7.857, + gdpPerPerson: 1603, + rank: 73, + unemployment: 11, + oilProduction: 5, + birthRate: 8, + medianAge: 43, + electricity: 41476, + televisions: 7716253, + publicDebt: 41, + internet: 4569804 + }), + new WorldStatsItem( + { + code: `GIN`, + name: `Guinea`, + continent: `Africa`, + population: 12413867, + gdpTotal: 16080, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -9.522, + latitude: 10.478, + gdpPerPerson: 1295, + rank: 74, + unemployment: 15, + oilProduction: 4, + birthRate: 5, + medianAge: 49, + electricity: 15826, + televisions: 6262180, + publicDebt: 32, + internet: 6439493 + }), + new WorldStatsItem( + { + code: `TCD`, + name: `Chad`, + continent: `Africa`, + population: 12075985, + gdpTotal: 30590, + economy: `Least developed`, + region: `Northern Africa`, + status: `Country`, + longitude: 18.716, + latitude: 15.46, + gdpPerPerson: 2533, + rank: 75, + unemployment: 15, + oilProduction: 2, + birthRate: 25, + medianAge: 46, + electricity: 57747, + televisions: 8629897, + publicDebt: 33, + internet: 6531943 + }), + new WorldStatsItem( + { + code: `RWA`, + name: `Rwanda`, + continent: `Africa`, + population: 11901484, + gdpTotal: 21970, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.867, + latitude: -1.936, + gdpPerPerson: 1846, + rank: 76, + unemployment: 14, + oilProduction: 0, + birthRate: 23, + medianAge: 51, + electricity: 51710, + televisions: 1363647, + publicDebt: 36, + internet: 2425128 + }), + new WorldStatsItem( + { + code: `BEL`, + name: `Belgium`, + continent: `Europe`, + population: 11491346, + gdpTotal: 508600, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 4.605, + latitude: 50.911, + gdpPerPerson: 44259, + rank: 77, + unemployment: 8, + oilProduction: 9000, + birthRate: 10, + medianAge: 41, + electricity: 80840, + televisions: 4720000, + publicDebt: 85, + internet: 5220000 + }), + new WorldStatsItem( + { + code: `BDI`, + name: `Burundi`, + continent: `Africa`, + population: 11466756, + gdpTotal: 7892, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.913, + latitude: -3.384, + gdpPerPerson: 688, + rank: 78, + unemployment: 12, + oilProduction: 3, + birthRate: 16, + medianAge: 35, + electricity: 43850, + televisions: 2920735, + publicDebt: 20, + internet: 3908915 + }), + new WorldStatsItem( + { + code: `TUN`, + name: `Tunisia`, + continent: `Africa`, + population: 11403800, + gdpTotal: 130800, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 9.516, + latitude: 33.785, + gdpPerPerson: 11470, + rank: 79, + unemployment: 14, + oilProduction: 76900, + birthRate: 16, + medianAge: 29, + electricity: 12850, + televisions: 920000, + publicDebt: 55, + internet: 1722000 + }), + new WorldStatsItem( + { + code: `CUB`, + name: `Cuba`, + continent: `North America`, + population: 11147407, + gdpTotal: 132900, + economy: `Emerging`, + region: `Central America`, + status: `Country`, + longitude: -80.54, + latitude: 22.567, + gdpPerPerson: 11922, + rank: 80, + unemployment: 2, + oilProduction: 58300, + birthRate: 11, + medianAge: 37, + electricity: 16450, + televisions: 2640000, + publicDebt: 37, + internet: 1310000 + }), + new WorldStatsItem( + { + code: `BOL`, + name: `Bolivia`, + continent: `South America`, + population: 11138234, + gdpTotal: 78350, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -63.57, + latitude: -16.3, + gdpPerPerson: 7034, + rank: 81, + unemployment: 8, + oilProduction: 46470, + birthRate: 22, + medianAge: 23, + electricity: 5293, + televisions: 900000, + publicDebt: 46, + internet: 1000000 + }), + new WorldStatsItem( + { + code: `BEN`, + name: `Benin`, + continent: `Africa`, + population: 11038805, + gdpTotal: 24310, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: 2.704, + latitude: 10.535, + gdpPerPerson: 2202, + rank: 82, + unemployment: 2, + oilProduction: 0, + birthRate: 25, + medianAge: 40, + electricity: 13145, + televisions: 7167916, + publicDebt: 34, + internet: 8520122 + }), + new WorldStatsItem( + { + code: `PRT`, + name: `Portugal`, + continent: `Europe`, + population: 10839514, + gdpTotal: 297100, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: -7.757, + latitude: 40.815, + gdpPerPerson: 27409, + rank: 83, + unemployment: 8, + oilProduction: 9500, + birthRate: 10, + medianAge: 39, + electricity: 49040, + televisions: 3310000, + publicDebt: 64, + internet: 3549000 + }), + new WorldStatsItem( + { + code: `GRC`, + name: `Greece`, + continent: `Europe`, + population: 10768477, + gdpTotal: 290500, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 21.871, + latitude: 39.558, + gdpPerPerson: 26977, + rank: 84, + unemployment: 8, + oilProduction: 5687, + birthRate: 10, + medianAge: 42, + electricity: 56130, + televisions: 2540000, + publicDebt: 90, + internet: 2540000 + }), + new WorldStatsItem( + { + code: `DOM`, + name: `Dominican Republic`, + continent: `North America`, + population: 10734247, + gdpTotal: 161900, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -70.17, + latitude: 18.775, + gdpPerPerson: 15083, + rank: 85, + unemployment: 16, + oilProduction: 12, + birthRate: 23, + medianAge: 25, + electricity: 12220, + televisions: 770000, + publicDebt: 41, + internet: 1677000 + }), + new WorldStatsItem( + { + code: `CZE`, + name: `Czechia`, + continent: `Europe`, + population: 10674723, + gdpTotal: 350900, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 15.461, + latitude: 49.807, + gdpPerPerson: 32872, + rank: 86, + unemployment: 7, + oilProduction: 18030, + birthRate: 9, + medianAge: 40, + electricity: 77380, + televisions: 3405834, + publicDebt: 26, + internet: 4400000 + }), + new WorldStatsItem( + { + code: `HTI`, + name: `Haiti`, + continent: `North America`, + population: 10646714, + gdpTotal: 19340, + economy: `Least developed`, + region: `Central America`, + status: `Country`, + longitude: -72.23, + latitude: 19.342, + gdpPerPerson: 1817, + rank: 87, + unemployment: 15, + oilProduction: 2, + birthRate: 9, + medianAge: 52, + electricity: 12871, + televisions: 4329511, + publicDebt: 25, + internet: 4777792 + }), + new WorldStatsItem( + { + code: `JOR`, + name: `Jordan`, + continent: `Asia`, + population: 10248069, + gdpTotal: 86190, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 38.125, + latitude: 32.309, + gdpPerPerson: 8410, + rank: 88, + unemployment: 14, + oilProduction: 0, + birthRate: 20, + medianAge: 24, + electricity: 9074, + televisions: 500000, + publicDebt: 72, + internet: 1127000 + }), + new WorldStatsItem( + { + code: `AZE`, + name: `Azerbaijan`, + continent: `Asia`, + population: 9961396, + gdpTotal: 167900, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 48.401, + latitude: 40.344, + gdpPerPerson: 16855, + rank: 89, + unemployment: 1, + oilProduction: 934700, + birthRate: 18, + medianAge: 28, + electricity: 23800, + televisions: 170000, + publicDebt: 7, + internet: 1036000 + }), + new WorldStatsItem( + { + code: `SWE`, + name: `Sweden`, + continent: `Europe`, + population: 9960487, + gdpTotal: 498100, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 17.594, + latitude: 64.621, + gdpPerPerson: 50008, + rank: 90, + unemployment: 6, + oilProduction: 2350, + birthRate: 10, + medianAge: 41, + electricity: 153200, + televisions: 4600000, + publicDebt: 42, + internet: 7000000 + }), + new WorldStatsItem( + { + code: `HUN`, + name: `Hungary`, + continent: `Europe`, + population: 9850845, + gdpTotal: 267600, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 19.485, + latitude: 47.153, + gdpPerPerson: 27165, + rank: 91, + unemployment: 7, + oilProduction: 42180, + birthRate: 10, + medianAge: 39, + electricity: 33690, + televisions: 4420000, + publicDebt: 67, + internet: 4200000 + }), + new WorldStatsItem( + { + code: `BLR`, + name: `Belarus`, + continent: `Europe`, + population: 9549747, + gdpTotal: 165400, + economy: `Developing`, + region: `Eastern Europe`, + status: `Country`, + longitude: 27.943, + latitude: 53.705, + gdpPerPerson: 17320, + rank: 92, + unemployment: 15, + oilProduction: 5, + birthRate: 7, + medianAge: 33, + electricity: 84070, + televisions: 3348094, + publicDebt: 6, + internet: 3754027 + }), + new WorldStatsItem( + { + code: `HND`, + name: `Honduras`, + continent: `North America`, + population: 9038741, + gdpTotal: 43190, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -86.74, + latitude: 14.889, + gdpPerPerson: 4778, + rank: 93, + unemployment: 28, + oilProduction: 0, + birthRate: 27, + medianAge: 20, + electricity: 5339, + televisions: 570000, + publicDebt: 24, + internet: 344100 + }), + new WorldStatsItem( + { + code: `AUT`, + name: `Austria`, + continent: `Europe`, + population: 8754413, + gdpTotal: 416600, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 14.987, + latitude: 47.624, + gdpPerPerson: 47587, + rank: 94, + unemployment: 4, + oilProduction: 23320, + birthRate: 9, + medianAge: 42, + electricity: 61020, + televisions: 10150000, + publicDebt: 59, + internet: 4277000 + }), + new WorldStatsItem( + { + code: `TJK`, + name: `Tajikistan`, + continent: `Asia`, + population: 8468555, + gdpTotal: 25810, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 71.234, + latitude: 38.86, + gdpPerPerson: 3048, + rank: 95, + unemployment: 11, + oilProduction: 5, + birthRate: 8, + medianAge: 44, + electricity: 56534, + televisions: 6542566, + publicDebt: 44, + internet: 4521889 + }), + new WorldStatsItem( + { + code: `ISR`, + name: `Israel`, + continent: `Asia`, + population: 8299706, + gdpTotal: 297000, + economy: `Developed`, + region: `Middle East`, + status: `Country`, + longitude: 34.977, + latitude: 30.748, + gdpPerPerson: 35784, + rank: 96, + unemployment: 7, + oilProduction: 100, + birthRate: 20, + medianAge: 29, + electricity: 46850, + televisions: 1690000, + publicDebt: 81, + internet: 2000000 + }), + new WorldStatsItem( + { + code: `CHE`, + name: `Switzerland`, + continent: `Europe`, + population: 8236303, + gdpTotal: 496300, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 7.865, + latitude: 46.729, + gdpPerPerson: 60258, + rank: 97, + unemployment: 3, + oilProduction: 3202, + birthRate: 10, + medianAge: 41, + electricity: 56100, + televisions: 3310000, + publicDebt: 44, + internet: 4610000 + }), + new WorldStatsItem( + { + code: `TGO`, + name: `Togo`, + continent: `Africa`, + population: 7965055, + gdpTotal: 11610, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: 1.146, + latitude: 6.799, + gdpPerPerson: 1458, + rank: 98, + unemployment: 3, + oilProduction: 4, + birthRate: 9, + medianAge: 37, + electricity: 28181, + televisions: 2309082, + publicDebt: 41, + internet: 789456 + }), + new WorldStatsItem( + { + code: `SOM`, + name: `Somalia`, + continent: `Africa`, + population: 7531386, + gdpTotal: 4719, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 44.134, + latitude: 3.077, + gdpPerPerson: 627, + rank: 99, + unemployment: 2, + oilProduction: 4, + birthRate: 12, + medianAge: 50, + electricity: 29272, + televisions: 1648650, + publicDebt: 22, + internet: 3227211 + }), + new WorldStatsItem( + { + code: `HKG`, + name: `Hong Kong`, + continent: `Asia`, + population: 7191503, + gdpTotal: 427400, + economy: `Developing`, + region: `Eastern Asia`, + status: `Dependency`, + longitude: 114.08, + latitude: 22.38, + gdpPerPerson: 59431, + rank: 100, + unemployment: 3, + oilProduction: 0, + birthRate: 8, + medianAge: 55, + electricity: 86792, + televisions: 4084025, + publicDebt: 35, + internet: 3907543 + }), + new WorldStatsItem( + { + code: `LAO`, + name: `Laos`, + continent: `Asia`, + population: 7126706, + gdpTotal: 40960, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 102.36, + latitude: 20.171, + gdpPerPerson: 5747, + rank: 101, + unemployment: 8, + oilProduction: 0, + birthRate: 6, + medianAge: 34, + electricity: 7093, + televisions: 4503172, + publicDebt: 19, + internet: 5426041 + }), + new WorldStatsItem( + { + code: `SRB`, + name: `Serbia`, + continent: `Europe`, + population: 7111024, + gdpTotal: 101800, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 20.908, + latitude: 44.206, + gdpPerPerson: 14316, + rank: 102, + unemployment: 5, + oilProduction: 4, + birthRate: 13, + medianAge: 48, + electricity: 30150, + televisions: 1316607, + publicDebt: 17, + internet: 4104775 + }), + new WorldStatsItem( + { + code: `BGR`, + name: `Bulgaria`, + continent: `Europe`, + population: 7101510, + gdpTotal: 143100, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 25.465, + latitude: 42.741, + gdpPerPerson: 20151, + rank: 103, + unemployment: 8, + oilProduction: 3661, + birthRate: 10, + medianAge: 41, + electricity: 45700, + televisions: 3310000, + publicDebt: 11, + internet: 1899000 + }), + new WorldStatsItem( + { + code: `PRY`, + name: `Paraguay`, + continent: `South America`, + population: 6943739, + gdpTotal: 64670, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -58.44, + latitude: -23.42, + gdpPerPerson: 9313, + rank: 104, + unemployment: 6, + oilProduction: 0, + birthRate: 28, + medianAge: 22, + electricity: 70000, + televisions: 990000, + publicDebt: 27, + internet: 280000 + }), + new WorldStatsItem( + { + code: `PNG`, + name: `Papua New Guinea`, + continent: `Oceania`, + population: 6909701, + gdpTotal: 28020, + economy: `Developing`, + region: `Melanesia`, + status: `Country`, + longitude: 143.62, + latitude: -5.836, + gdpPerPerson: 4055, + rank: 105, + unemployment: 2, + oilProduction: 47800, + birthRate: 28, + medianAge: 22, + electricity: 3698, + televisions: 59841, + publicDebt: 40, + internet: 110000 + }), + new WorldStatsItem( + { + code: `LBY`, + name: `Libya`, + continent: `Africa`, + population: 6653210, + gdpTotal: 90890, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 17.23, + latitude: 26.339, + gdpPerPerson: 13661, + rank: 106, + unemployment: 30, + oilProduction: 1712000, + birthRate: 26, + medianAge: 24, + electricity: 21150, + televisions: 730000, + publicDebt: 5, + internet: 260000 + }), + new WorldStatsItem( + { + code: `LBN`, + name: `Lebanon`, + continent: `Asia`, + population: 6229794, + gdpTotal: 85160, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 36.042, + latitude: 34.168, + gdpPerPerson: 13670, + rank: 107, + unemployment: 20, + oilProduction: 0, + birthRate: 18, + medianAge: 29, + electricity: 9183, + televisions: 1180000, + publicDebt: 187, + internet: 950000 + }), + new WorldStatsItem( + { + code: `SLV`, + name: `El Salvador`, + continent: `North America`, + population: 6172011, + gdpTotal: 54790, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -88.91, + latitude: 13.798, + gdpPerPerson: 8877, + rank: 108, + unemployment: 6, + oilProduction: 0, + birthRate: 26, + medianAge: 22, + electricity: 5316, + televisions: 600000, + publicDebt: 37, + internet: 700000 + }), + new WorldStatsItem( + { + code: `SLE`, + name: `Sierra Leone`, + continent: `Africa`, + population: 6163195, + gdpTotal: 10640, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -11.78, + latitude: 8.452, + gdpPerPerson: 1726, + rank: 109, + unemployment: 14, + oilProduction: 4, + birthRate: 6, + medianAge: 37, + electricity: 37412, + televisions: 2727270, + publicDebt: 6, + internet: 223239 + }), + new WorldStatsItem( + { + code: `ARE`, + name: `United Arab Emirates`, + continent: `Asia`, + population: 6072475, + gdpTotal: 667200, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 54.192, + latitude: 23.795, + gdpPerPerson: 109873, + rank: 110, + unemployment: 2, + oilProduction: 2510000, + birthRate: 16, + medianAge: 30, + electricity: 57060, + televisions: 310000, + publicDebt: 21, + internet: 2300000 + }), + new WorldStatsItem( + { + code: `NIC`, + name: `Nicaragua`, + continent: `North America`, + population: 6025951, + gdpTotal: 33550, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -85.09, + latitude: 12.523, + gdpPerPerson: 5568, + rank: 111, + unemployment: 5, + oilProduction: 0, + birthRate: 24, + medianAge: 22, + electricity: 2778, + televisions: 320000, + publicDebt: 63, + internet: 155000 + }), + new WorldStatsItem( + { + code: `ERI`, + name: `Eritrea`, + continent: `Africa`, + population: 5918919, + gdpTotal: 9169, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 39.772, + latitude: 15.191, + gdpPerPerson: 1549, + rank: 112, + unemployment: 9, + oilProduction: 5, + birthRate: 17, + medianAge: 54, + electricity: 67474, + televisions: 2078077, + publicDebt: 41, + internet: 1067843 + }), + new WorldStatsItem( + { + code: `SGP`, + name: `Singapore`, + continent: `Asia`, + population: 5888926, + gdpTotal: 487900, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 103.82, + latitude: 1.356, + gdpPerPerson: 82850, + rank: 113, + unemployment: 2, + oilProduction: 9836, + birthRate: 9, + medianAge: 38, + electricity: 39440, + televisions: 1330000, + publicDebt: 96, + internet: 3105000 + }), + new WorldStatsItem( + { + code: `KGZ`, + name: `Kyrgyzstan`, + continent: `Asia`, + population: 5789122, + gdpTotal: 21010, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 74.738, + latitude: 41.224, + gdpPerPerson: 3629, + rank: 114, + unemployment: 12, + oilProduction: 1, + birthRate: 21, + medianAge: 42, + electricity: 16640, + televisions: 2101152, + publicDebt: 15, + internet: 738896 + }), + new WorldStatsItem( + { + code: `CAF`, + name: `Central African Republic`, + continent: `Africa`, + population: 5625118, + gdpTotal: 3206, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 20.917, + latitude: 6.633, + gdpPerPerson: 570, + rank: 115, + unemployment: 8, + oilProduction: 5, + birthRate: 13, + medianAge: 32, + electricity: 71424, + televisions: 635931, + publicDebt: 29, + internet: 1933873 + }), + new WorldStatsItem( + { + code: `DNK`, + name: `Denmark`, + continent: `Europe`, + population: 5605948, + gdpTotal: 264800, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 9.348, + latitude: 56.13, + gdpPerPerson: 47236, + rank: 116, + unemployment: 3, + oilProduction: 342000, + birthRate: 11, + medianAge: 40, + electricity: 43350, + televisions: 3121000, + publicDebt: 26, + internet: 3500000 + }), + new WorldStatsItem( + { + code: `FIN`, + name: `Finland`, + continent: `Europe`, + population: 5491218, + gdpTotal: 224137, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 25.988, + latitude: 61.841, + gdpPerPerson: 40817, + rank: 117, + unemployment: 7, + oilProduction: 8951, + birthRate: 10, + medianAge: 42, + electricity: 73470, + televisions: 3200000, + publicDebt: 36, + internet: 3600000 + }), + new WorldStatsItem( + { + code: `SVK`, + name: `Slovakia`, + continent: `Europe`, + population: 5445829, + gdpTotal: 168800, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 18.877, + latitude: 48.702, + gdpPerPerson: 30996, + rank: 118, + unemployment: 8, + oilProduction: 12840, + birthRate: 11, + medianAge: 37, + electricity: 29890, + televisions: 2620000, + publicDebt: 36, + internet: 2350000 + }), + new WorldStatsItem( + { + code: `TKM`, + name: `Turkmenistan`, + continent: `Asia`, + population: 5351277, + gdpTotal: 94720, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 59.562, + latitude: 38.975, + gdpPerPerson: 17700, + rank: 119, + unemployment: 11, + oilProduction: 4, + birthRate: 11, + medianAge: 43, + electricity: 91281, + televisions: 2935468, + publicDebt: 17, + internet: 3203210 + }), + new WorldStatsItem( + { + code: `NOR`, + name: `Norway`, + continent: `Europe`, + population: 5320045, + gdpTotal: 364700, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 9.66, + latitude: 60.712, + gdpPerPerson: 68552, + rank: 120, + unemployment: 3, + oilProduction: 2560000, + birthRate: 11, + medianAge: 39, + electricity: 135800, + televisions: 2030000, + publicDebt: 83, + internet: 3800000 + }), + new WorldStatsItem( + { + code: `IRL`, + name: `Ireland`, + continent: `Europe`, + population: 5011102, + gdpTotal: 322000, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: -8.209, + latitude: 53.42, + gdpPerPerson: 64257, + rank: 121, + unemployment: 5, + oilProduction: 0, + birthRate: 14, + medianAge: 35, + electricity: 24130, + televisions: 1820000, + publicDebt: 25, + internet: 1708000 + }), + new WorldStatsItem( + { + code: `COG`, + name: `Congo`, + continent: `Africa`, + population: 4954674, + gdpTotal: 30270, + economy: `Developing`, + region: `Middle Africa`, + status: `Country`, + longitude: 16.264, + latitude: -0.07, + gdpPerPerson: 6109, + rank: 122, + unemployment: 13, + oilProduction: 4, + birthRate: 11, + medianAge: 52, + electricity: 83556, + televisions: 1560800, + publicDebt: 6, + internet: 2650237 + }), + new WorldStatsItem( + { + code: `CRI`, + name: `Costa Rica`, + continent: `North America`, + population: 4930258, + gdpTotal: 79260, + economy: `Emerging`, + region: `Central America`, + status: `Country`, + longitude: -83.91, + latitude: 9.92, + gdpPerPerson: 16076, + rank: 123, + unemployment: 5, + oilProduction: 0, + birthRate: 18, + medianAge: 27, + electricity: 8349, + televisions: 525000, + publicDebt: 47, + internet: 1500000 + }), + new WorldStatsItem( + { + code: `GEO`, + name: `Georgia`, + continent: `Asia`, + population: 4926330, + gdpTotal: 37270, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 43.257, + latitude: 42.162, + gdpPerPerson: 7565, + rank: 124, + unemployment: 15, + oilProduction: 5, + birthRate: 10, + medianAge: 43, + electricity: 44936, + televisions: 2728128, + publicDebt: 29, + internet: 3844448 + }), + new WorldStatsItem( + { + code: `LBR`, + name: `Liberia`, + continent: `Africa`, + population: 4689021, + gdpTotal: 3881, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -9.454, + latitude: 6.445, + gdpPerPerson: 828, + rank: 125, + unemployment: 4, + oilProduction: 0, + birthRate: 8, + medianAge: 35, + electricity: 89626, + televisions: 3065112, + publicDebt: 38, + internet: 1475304 + }), + new WorldStatsItem( + { + code: `PSE`, + name: `Palestine`, + continent: `Asia`, + population: 4543126, + gdpTotal: 21221, + economy: `Developing`, + region: `Middle East`, + status: `Disputed`, + longitude: 35.347, + latitude: 32.031, + gdpPerPerson: 4671, + rank: 126, + unemployment: 9, + oilProduction: 1, + birthRate: 10, + medianAge: 48, + electricity: 45973, + televisions: 2774033, + publicDebt: 16, + internet: 1718915 + }), + new WorldStatsItem( + { + code: `NZL`, + name: `New Zealand`, + continent: `Oceania`, + population: 4510327, + gdpTotal: 174800, + economy: `Developed`, + region: `Australia`, + status: `Country`, + longitude: 169.42, + latitude: -44.86, + gdpPerPerson: 38756, + rank: 127, + unemployment: 4, + oilProduction: 25880, + birthRate: 14, + medianAge: 36, + electricity: 42060, + televisions: 1926000, + publicDebt: 21, + internet: 3360000 + }), + new WorldStatsItem( + { + code: `HRV`, + name: `Croatia`, + continent: `Europe`, + population: 4292095, + gdpTotal: 94240, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 16.847, + latitude: 45.674, + gdpPerPerson: 21957, + rank: 128, + unemployment: 12, + oilProduction: 17100, + birthRate: 10, + medianAge: 41, + electricity: 11990, + televisions: 1220000, + publicDebt: 48, + internet: 1995000 + }), + new WorldStatsItem( + { + code: `BIH`, + name: `Bosnia`, + continent: `Europe`, + population: 3856181, + gdpTotal: 42530, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 17.66, + latitude: 43.918, + gdpPerPerson: 11029, + rank: 129, + unemployment: 46, + oilProduction: 0, + birthRate: 9, + medianAge: 39, + electricity: 12220, + televisions: 0, + publicDebt: 34, + internet: 1055000 + }), + new WorldStatsItem( + { + code: `MRT`, + name: `Mauritania`, + continent: `Africa`, + population: 3758571, + gdpTotal: 16710, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -8.89, + latitude: 20.387, + gdpPerPerson: 4446, + rank: 130, + unemployment: 9, + oilProduction: 5, + birthRate: 25, + medianAge: 50, + electricity: 15176, + televisions: 2558125, + publicDebt: 29, + internet: 2098221 + }), + new WorldStatsItem( + { + code: `PAN`, + name: `Panama`, + continent: `North America`, + population: 3753142, + gdpTotal: 93120, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -81.17, + latitude: 8.457, + gdpPerPerson: 24811, + rank: 131, + unemployment: 6, + oilProduction: 0, + birthRate: 21, + medianAge: 27, + electricity: 5661, + televisions: 510000, + publicDebt: 53, + internet: 525200 + }), + new WorldStatsItem( + { + code: `SOL`, + name: `Somaliland`, + continent: `Africa`, + population: 3500000, + gdpTotal: 12250, + economy: `Developing`, + region: `Eastern Africa`, + status: `Indeterminate`, + longitude: 45.798, + latitude: 9.748, + gdpPerPerson: 3500, + rank: 132, + unemployment: 1, + oilProduction: 4, + birthRate: 13, + medianAge: 43, + electricity: 73247, + televisions: 2235408, + publicDebt: 21, + internet: 1300238 + }), + new WorldStatsItem( + { + code: `MDA`, + name: `Moldova`, + continent: `Europe`, + population: 3474121, + gdpTotal: 18540, + economy: `Developing`, + region: `Eastern Europe`, + status: `Country`, + longitude: 28.552, + latitude: 47.515, + gdpPerPerson: 5337, + rank: 133, + unemployment: 2, + oilProduction: 0, + birthRate: 11, + medianAge: 34, + electricity: 3881, + televisions: 1260000, + publicDebt: 23, + internet: 700000 + }), + new WorldStatsItem( + { + code: `OMN`, + name: `Oman`, + continent: `Asia`, + population: 3424386, + gdpTotal: 173100, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 57.563, + latitude: 22.014, + gdpPerPerson: 50549, + rank: 134, + unemployment: 15, + oilProduction: 710800, + birthRate: 35, + medianAge: 19, + electricity: 11890, + televisions: 1600000, + publicDebt: 4, + internet: 340000 + }), + new WorldStatsItem( + { + code: `URY`, + name: `Uruguay`, + continent: `South America`, + population: 3360148, + gdpTotal: 73250, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -55.78, + latitude: -32.51, + gdpPerPerson: 21800, + rank: 135, + unemployment: 9, + oilProduction: 27830, + birthRate: 14, + medianAge: 33, + electricity: 9200, + televisions: 782000, + publicDebt: 65, + internet: 968000 + }), + new WorldStatsItem( + { + code: `PRI`, + name: `Puerto Rico`, + continent: `North America`, + population: 3351827, + gdpTotal: 131000, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -66.61, + latitude: 18.235, + gdpPerPerson: 39083, + rank: 136, + unemployment: 5, + oilProduction: 3, + birthRate: 11, + medianAge: 32, + electricity: 19677, + televisions: 1917997, + publicDebt: 25, + internet: 608062 + }), + new WorldStatsItem( + { + code: `MNG`, + name: `Mongolia`, + continent: `Asia`, + population: 3068243, + gdpTotal: 37000, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 103.82, + latitude: 46.856, + gdpPerPerson: 12059, + rank: 137, + unemployment: 4, + oilProduction: 1, + birthRate: 7, + medianAge: 35, + electricity: 3875, + televisions: 1726758, + publicDebt: 17, + internet: 562546 + }), + new WorldStatsItem( + { + code: `ALB`, + name: `Albania`, + continent: `Europe`, + population: 3047987, + gdpTotal: 33900, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 19.964, + latitude: 40.759, + gdpPerPerson: 11122, + rank: 138, + unemployment: 13, + oilProduction: 7006, + birthRate: 15, + medianAge: 30, + electricity: 5385, + televisions: 700000, + publicDebt: 51, + internet: 471200 + }), + new WorldStatsItem( + { + code: `ARM`, + name: `Armenia`, + continent: `Asia`, + population: 3045191, + gdpTotal: 26300, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 44.646, + latitude: 40.618, + gdpPerPerson: 8637, + rank: 139, + unemployment: 4, + oilProduction: 4, + birthRate: 14, + medianAge: 39, + electricity: 71042, + televisions: 2390201, + publicDebt: 9, + internet: 488333 + }), + new WorldStatsItem( + { + code: `JAM`, + name: `Jamaica`, + continent: `North America`, + population: 2990561, + gdpTotal: 25390, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -77.27, + latitude: 18.119, + gdpPerPerson: 8490, + rank: 140, + unemployment: 10, + oilProduction: 0, + birthRate: 20, + medianAge: 23, + electricity: 6985, + televisions: 460000, + publicDebt: 127, + internet: 1500000 + }), + new WorldStatsItem( + { + code: `KWT`, + name: `Kuwait`, + continent: `Asia`, + population: 2875422, + gdpTotal: 301100, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 47.487, + latitude: 29.315, + gdpPerPerson: 104715, + rank: 141, + unemployment: 2, + oilProduction: 2440000, + birthRate: 22, + medianAge: 26, + electricity: 41110, + televisions: 875000, + publicDebt: 10, + internet: 900000 + }), + new WorldStatsItem( + { + code: `LTU`, + name: `Lithuania`, + continent: `Europe`, + population: 2823859, + gdpTotal: 85620, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 23.838, + latitude: 55.152, + gdpPerPerson: 30320, + rank: 142, + unemployment: 4, + oilProduction: 13160, + birthRate: 9, + medianAge: 39, + electricity: 13480, + televisions: 1700000, + publicDebt: 17, + internet: 1330000 + }), + new WorldStatsItem( + { + code: `NAM`, + name: `Namibia`, + continent: `Africa`, + population: 2484780, + gdpTotal: 25990, + economy: `Developing`, + region: `Southern Africa`, + status: `Country`, + longitude: 16.944, + latitude: -20.52, + gdpPerPerson: 10460, + rank: 143, + unemployment: 5, + oilProduction: 0, + birthRate: 23, + medianAge: 21, + electricity: 1688, + televisions: 60000, + publicDebt: 22, + internet: 101000 + }), + new WorldStatsItem( + { + code: `QAT`, + name: `Qatar`, + continent: `Asia`, + population: 2314307, + gdpTotal: 334500, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 51.182, + latitude: 25.359, + gdpPerPerson: 144536, + rank: 144, + unemployment: 1, + oilProduction: 797500, + birthRate: 16, + medianAge: 31, + electricity: 13540, + televisions: 230000, + publicDebt: 11, + internet: 351000 + }), + new WorldStatsItem( + { + code: `BWA`, + name: `Botswana`, + continent: `Africa`, + population: 2214858, + gdpTotal: 35900, + economy: `Developing`, + region: `Southern Africa`, + status: `Country`, + longitude: 24.671, + latitude: -22.32, + gdpPerPerson: 16209, + rank: 145, + unemployment: 8, + oilProduction: 0, + birthRate: 23, + medianAge: 21, + electricity: 912, + televisions: 31000, + publicDebt: 5, + internet: 80000 + }), + new WorldStatsItem( + { + code: `MKD`, + name: `North Macedonia`, + continent: `Europe`, + population: 2103721, + gdpTotal: 29520, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 21.727, + latitude: 41.604, + gdpPerPerson: 14032, + rank: 146, + unemployment: 35, + oilProduction: 0, + birthRate: 12, + medianAge: 35, + electricity: 6051, + televisions: 510000, + publicDebt: 31, + internet: 685000 + }), + new WorldStatsItem( + { + code: `GMB`, + name: `Gambia`, + continent: `Africa`, + population: 2051363, + gdpTotal: 3387, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -15.32, + latitude: 13.438, + gdpPerPerson: 1651, + rank: 147, + unemployment: 7, + oilProduction: 1, + birthRate: 11, + medianAge: 37, + electricity: 9769, + televisions: 1486289, + publicDebt: 30, + internet: 187890 + }), + new WorldStatsItem( + { + code: `SVN`, + name: `Slovenia`, + continent: `Europe`, + population: 1972126, + gdpTotal: 68350, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 14.947, + latitude: 46.146, + gdpPerPerson: 34658, + rank: 148, + unemployment: 8, + oilProduction: 5, + birthRate: 9, + medianAge: 41, + electricity: 14900, + televisions: 710000, + publicDebt: 24, + internet: 1300000 + }), + new WorldStatsItem( + { + code: `LSO`, + name: `Lesotho`, + continent: `Africa`, + population: 1958042, + gdpTotal: 6019, + economy: `Least developed`, + region: `Southern Africa`, + status: `Country`, + longitude: 28.221, + latitude: -29.61, + gdpPerPerson: 3074, + rank: 149, + unemployment: 12, + oilProduction: 2, + birthRate: 8, + medianAge: 32, + electricity: 20229, + televisions: 1457517, + publicDebt: 14, + internet: 1375222 + }), + new WorldStatsItem( + { + code: `LVA`, + name: `Latvia`, + continent: `Europe`, + population: 1944643, + gdpTotal: 50650, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 26.505, + latitude: 56.755, + gdpPerPerson: 26046, + rank: 150, + unemployment: 6, + oilProduction: 0, + birthRate: 10, + medianAge: 40, + electricity: 4778, + televisions: 1220000, + publicDebt: 7, + internet: 1770000 + }), + new WorldStatsItem( + { + code: `RKS`, + name: `Kosovo`, + continent: `Europe`, + population: 1895250, + gdpTotal: 18490, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 20.891, + latitude: 42.557, + gdpPerPerson: 9756, + rank: 151, + unemployment: 12, + oilProduction: 0, + birthRate: 8, + medianAge: 55, + electricity: 14878, + televisions: 1287863, + publicDebt: 20, + internet: 1422193 + }), + new WorldStatsItem( + { + code: `GNB`, + name: `Guinea-Bissau`, + continent: `Africa`, + population: 1792338, + gdpTotal: 2851, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -14.59, + latitude: 11.942, + gdpPerPerson: 1591, + rank: 152, + unemployment: 5, + oilProduction: 5, + birthRate: 5, + medianAge: 55, + electricity: 74684, + televisions: 1427462, + publicDebt: 8, + internet: 365000 + }), + new WorldStatsItem( + { + code: `GAB`, + name: `Gabon`, + continent: `Africa`, + population: 1772255, + gdpTotal: 35980, + economy: `Developing`, + region: `Middle Africa`, + status: `Country`, + longitude: 11.592, + latitude: -0.807, + gdpPerPerson: 20302, + rank: 153, + unemployment: 21, + oilProduction: 240000, + birthRate: 36, + medianAge: 19, + electricity: 1520, + televisions: 63000, + publicDebt: 53, + internet: 145000 + }), + new WorldStatsItem( + { + code: `SWZ`, + name: `Eswatini`, + continent: `Africa`, + population: 1467152, + gdpTotal: 11060, + economy: `Developing`, + region: `Southern Africa`, + status: `Country`, + longitude: 31.45, + latitude: -26.52, + gdpPerPerson: 7538, + rank: 154, + unemployment: 6, + oilProduction: 3, + birthRate: 17, + medianAge: 39, + electricity: 72804, + televisions: 229393, + publicDebt: 5, + internet: 427760 + }), + new WorldStatsItem( + { + code: `BHR`, + name: `Bahrain`, + continent: `Asia`, + population: 1410942, + gdpTotal: 66370, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 50.535, + latitude: 26.027, + gdpPerPerson: 47039, + rank: 155, + unemployment: 15, + oilProduction: 184300, + birthRate: 17, + medianAge: 30, + electricity: 8187, + televisions: 275000, + publicDebt: 31, + internet: 250000 + }), + new WorldStatsItem( + { + code: `MUS`, + name: `Mauritius`, + continent: `Africa`, + population: 1356388, + gdpTotal: 25850, + economy: `Developing`, + region: `Eastern Africa`, + status: `Country`, + longitude: 57.555, + latitude: -20.25, + gdpPerPerson: 19058, + rank: 156, + unemployment: 9, + oilProduction: 0, + birthRate: 15, + medianAge: 32, + electricity: 2350, + televisions: 258000, + publicDebt: 63, + internet: 340000 + }), + new WorldStatsItem( + { + code: `TLS`, + name: `Timor-Leste`, + continent: `Asia`, + population: 1291358, + gdpTotal: 4975, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 125.66, + latitude: -8.826, + gdpPerPerson: 3853, + rank: 157, + unemployment: 8, + oilProduction: 5, + birthRate: 18, + medianAge: 48, + electricity: 84061, + televisions: 416260, + publicDebt: 25, + internet: 267437 + }), + new WorldStatsItem( + { + code: `EST`, + name: `Estonia`, + continent: `Europe`, + population: 1251581, + gdpTotal: 38700, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 25.441, + latitude: 58.845, + gdpPerPerson: 30921, + rank: 158, + unemployment: 5, + oilProduction: 6930, + birthRate: 10, + medianAge: 40, + electricity: 9599, + televisions: 605000, + publicDebt: 3, + internet: 780000 + }), + new WorldStatsItem( + { + code: `CYP`, + name: `Cyprus`, + continent: `Asia`, + population: 1221549, + gdpTotal: 29260, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 33.176, + latitude: 34.876, + gdpPerPerson: 23953, + rank: 159, + unemployment: 4, + oilProduction: 0, + birthRate: 13, + medianAge: 35, + electricity: 4618, + televisions: 0, + publicDebt: 60, + internet: 380000 + }), + new WorldStatsItem( + { + code: `TTO`, + name: `Trinidad and Tobago`, + continent: `North America`, + population: 1218208, + gdpTotal: 43570, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.21, + latitude: 10.352, + gdpPerPerson: 35766, + rank: 160, + unemployment: 4, + oilProduction: 5, + birthRate: 15, + medianAge: 47, + electricity: 58959, + televisions: 359389, + publicDebt: 29, + internet: 152416 + }), + new WorldStatsItem( + { + code: `FJI`, + name: `Fiji`, + continent: `Oceania`, + population: 920938, + gdpTotal: 8374, + economy: `Developing`, + region: `Melanesia`, + status: `Country`, + longitude: 177.85, + latitude: -17.75, + gdpPerPerson: 9093, + rank: 161, + unemployment: 11, + oilProduction: 5, + birthRate: 5, + medianAge: 41, + electricity: 88931, + televisions: 517580, + publicDebt: 17, + internet: 539400 + }), + new WorldStatsItem( + { + code: `DJI`, + name: `Djibouti`, + continent: `Africa`, + population: 865267, + gdpTotal: 3345, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 42.587, + latitude: 11.825, + gdpPerPerson: 3866, + rank: 162, + unemployment: 5, + oilProduction: 3, + birthRate: 17, + medianAge: 44, + electricity: 91593, + televisions: 209004, + publicDebt: 43, + internet: 476114 + }), + new WorldStatsItem( + { + code: `COM`, + name: `Comoros`, + continent: `Africa`, + population: 808080, + gdpTotal: 1259, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 43.877, + latitude: -11.86, + gdpPerPerson: 1558, + rank: 163, + unemployment: 11, + oilProduction: 3, + birthRate: 14, + medianAge: 46, + electricity: 6146, + televisions: 495921, + publicDebt: 10, + internet: 459977 + }), + new WorldStatsItem( + { + code: `GNQ`, + name: `Equatorial Guinea`, + continent: `Africa`, + population: 778358, + gdpTotal: 31770, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 10.521, + latitude: 1.763, + gdpPerPerson: 40817, + rank: 164, + unemployment: 30, + oilProduction: 385500, + birthRate: 37, + medianAge: 19, + electricity: 28, + televisions: 4000, + publicDebt: 2, + internet: 8000 + }), + new WorldStatsItem( + { + code: `BTN`, + name: `Bhutan`, + continent: `Asia`, + population: 758288, + gdpTotal: 6432, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 90.411, + latitude: 27.506, + gdpPerPerson: 8482, + rank: 165, + unemployment: 3, + oilProduction: 0, + birthRate: 21, + medianAge: 24, + electricity: 2000, + televisions: 11000, + publicDebt: 81, + internet: 40000 + }), + new WorldStatsItem( + { + code: `GUY`, + name: `Guyana`, + continent: `South America`, + population: 737718, + gdpTotal: 6093, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -58.96, + latitude: 5.607, + gdpPerPerson: 8259, + rank: 166, + unemployment: 2, + oilProduction: 3, + birthRate: 9, + medianAge: 37, + electricity: 84988, + televisions: 149848, + publicDebt: 12, + internet: 134377 + }), + new WorldStatsItem( + { + code: `SLB`, + name: `Solomon Islands`, + continent: `Oceania`, + population: 647581, + gdpTotal: 1198, + economy: `Least developed`, + region: `Melanesia`, + status: `Country`, + longitude: 161.3, + latitude: -9.221, + gdpPerPerson: 1850, + rank: 167, + unemployment: 4, + oilProduction: 3, + birthRate: 18, + medianAge: 30, + electricity: 3432, + televisions: 177555, + publicDebt: 43, + internet: 478635 + }), + new WorldStatsItem( + { + code: `MNE`, + name: `Montenegro`, + continent: `Europe`, + population: 642550, + gdpTotal: 10610, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 19.191, + latitude: 42.814, + gdpPerPerson: 16512, + rank: 168, + unemployment: 10, + oilProduction: 2, + birthRate: 24, + medianAge: 46, + electricity: 24709, + televisions: 126756, + publicDebt: 29, + internet: 336628 + }), + new WorldStatsItem( + { + code: `ESH`, + name: `Western Sahara`, + continent: `Africa`, + population: 603253, + gdpTotal: 907, + economy: `Least developed`, + region: `Northern Africa`, + status: `Dependency`, + longitude: -12.89, + latitude: 24.231, + gdpPerPerson: 1504, + rank: 169, + unemployment: 6, + oilProduction: 1, + birthRate: 23, + medianAge: 30, + electricity: 11081, + televisions: 237857, + publicDebt: 30, + internet: 306624 + }), + new WorldStatsItem( + { + code: `MAC`, + name: `Macao`, + continent: `Asia`, + population: 601969, + gdpTotal: 63220, + economy: `Developing`, + region: `Eastern Asia`, + status: `Dependency`, + longitude: 113.51, + latitude: 22.221, + gdpPerPerson: 105022, + rank: 170, + unemployment: 10, + oilProduction: 2, + birthRate: 10, + medianAge: 47, + electricity: 77896, + televisions: 163859, + publicDebt: 18, + internet: 62728 + }), + new WorldStatsItem( + { + code: `LUX`, + name: `Luxembourg`, + continent: `Europe`, + population: 594130, + gdpTotal: 58740, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 6.109, + latitude: 49.806, + gdpPerPerson: 98867, + rank: 171, + unemployment: 4, + oilProduction: 0, + birthRate: 12, + medianAge: 39, + electricity: 3156, + televisions: 285000, + publicDebt: 6, + internet: 345000 + }), + new WorldStatsItem( + { + code: `SUR`, + name: `Suriname`, + continent: `South America`, + population: 591919, + gdpTotal: 8547, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -56.02, + latitude: 4.506, + gdpPerPerson: 14439, + rank: 172, + unemployment: 5, + oilProduction: 1, + birthRate: 16, + medianAge: 44, + electricity: 82658, + televisions: 69068, + publicDebt: 31, + internet: 367104 + }), + new WorldStatsItem( + { + code: `CPV`, + name: `Cabo Verde`, + continent: `Africa`, + population: 560899, + gdpTotal: 3583, + economy: `Developing`, + region: `Western Africa`, + status: `Country`, + longitude: -25.16, + latitude: 17.102, + gdpPerPerson: 6388, + rank: 173, + unemployment: 12, + oilProduction: 1, + birthRate: 12, + medianAge: 54, + electricity: 60647, + televisions: 101289, + publicDebt: 34, + internet: 40105 + }), + new WorldStatsItem( + { + code: `BRN`, + name: `Brunei`, + continent: `Asia`, + population: 443593, + gdpTotal: 33730, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 114.69, + latitude: 4.523, + gdpPerPerson: 76038, + rank: 174, + unemployment: 4, + oilProduction: 0, + birthRate: 17, + medianAge: 32, + electricity: 50701, + televisions: 235042, + publicDebt: 16, + internet: 188751 + }), + new WorldStatsItem( + { + code: `MLT`, + name: `Malta`, + continent: `Europe`, + population: 416338, + gdpTotal: 16320, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 14.373, + latitude: 35.948, + gdpPerPerson: 39199, + rank: 175, + unemployment: 7, + oilProduction: 4, + birthRate: 6, + medianAge: 52, + electricity: 77444, + televisions: 282390, + publicDebt: 41, + internet: 317612 + }), + new WorldStatsItem( + { + code: `MDV`, + name: `Maldives`, + continent: `Asia`, + population: 392709, + gdpTotal: 5407, + economy: `Developing`, + region: `Southern Asia`, + status: `Country`, + longitude: 73.455, + latitude: 3.739, + gdpPerPerson: 13768, + rank: 176, + unemployment: 13, + oilProduction: 4, + birthRate: 10, + medianAge: 43, + electricity: 26004, + televisions: 156412, + publicDebt: 28, + internet: 45331 + }), + new WorldStatsItem( + { + code: `BLZ`, + name: `Belize`, + continent: `North America`, + population: 360346, + gdpTotal: 3088, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -88.51, + latitude: 17.185, + gdpPerPerson: 8570, + rank: 177, + unemployment: 4, + oilProduction: 2, + birthRate: 7, + medianAge: 36, + electricity: 57433, + televisions: 127478, + publicDebt: 36, + internet: 223855 + }), + new WorldStatsItem( + { + code: `ISL`, + name: `Iceland`, + continent: `Europe`, + population: 339747, + gdpTotal: 16150, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: -19.01, + latitude: 64.966, + gdpPerPerson: 47535, + rank: 178, + unemployment: 1, + oilProduction: 0, + birthRate: 14, + medianAge: 35, + electricity: 8533, + televisions: 98000, + publicDebt: 28, + internet: 202300 + }), + new WorldStatsItem( + { + code: `BHS`, + name: `Bahamas`, + continent: `North America`, + population: 329988, + gdpTotal: 9066, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -78.01, + latitude: 24.761, + gdpPerPerson: 27474, + rank: 179, + unemployment: 5, + oilProduction: 2, + birthRate: 17, + medianAge: 47, + electricity: 38395, + televisions: 203588, + publicDebt: 6, + internet: 91807 + }), + new WorldStatsItem( + { + code: `FRG`, + name: `French Guiana`, + continent: `South America`, + population: 296161, + gdpTotal: 1299000, + economy: `Developed`, + region: `South America`, + status: `Dependency`, + longitude: -53.13, + latitude: 3.893, + gdpPerPerson: 4386, + rank: 180, + unemployment: 3, + oilProduction: 0, + birthRate: 15, + medianAge: 55, + electricity: 73845, + televisions: 147489, + publicDebt: 35, + internet: 209593 + }), + new WorldStatsItem( + { + code: `BRB`, + name: `Barbados`, + continent: `North America`, + population: 292336, + gdpTotal: 4804, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -59.53, + latitude: 13.19, + gdpPerPerson: 16433, + rank: 181, + unemployment: 8, + oilProduction: 3, + birthRate: 21, + medianAge: 51, + electricity: 28728, + televisions: 173392, + publicDebt: 12, + internet: 73593 + }), + new WorldStatsItem( + { + code: `PYF`, + name: `Fr. Polynesia`, + continent: `Oceania`, + population: 287881, + gdpTotal: 5490, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -143.9, + latitude: -14.82, + gdpPerPerson: 19070, + rank: 182, + unemployment: 1, + oilProduction: 4, + birthRate: 6, + medianAge: 45, + electricity: 46206, + televisions: 43757, + publicDebt: 12, + internet: 172560 + }), + new WorldStatsItem( + { + code: `VUT`, + name: `Vanuatu`, + continent: `Oceania`, + population: 282814, + gdpTotal: 723, + economy: `Least developed`, + region: `Melanesia`, + status: `Country`, + longitude: 168.21, + latitude: -16.97, + gdpPerPerson: 2556, + rank: 183, + unemployment: 11, + oilProduction: 4, + birthRate: 17, + medianAge: 39, + electricity: 50581, + televisions: 187584, + publicDebt: 42, + internet: 223352 + }), + new WorldStatsItem( + { + code: `NCL`, + name: `New Caledonia`, + continent: `Oceania`, + population: 279070, + gdpTotal: 10770, + economy: `Developing`, + region: `Melanesia`, + status: `Dependency`, + longitude: 165.26, + latitude: -21.09, + gdpPerPerson: 38592, + rank: 184, + unemployment: 10, + oilProduction: 3, + birthRate: 6, + medianAge: 49, + electricity: 18361, + televisions: 79923, + publicDebt: 45, + internet: 149003 + }), + new WorldStatsItem( + { + code: `NCP`, + name: `Northern Cyprus`, + continent: `Asia`, + population: 265100, + gdpTotal: 3600, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 33.714, + latitude: 35.257, + gdpPerPerson: 13580, + rank: 185, + unemployment: 4, + oilProduction: 5, + birthRate: 25, + medianAge: 51, + electricity: 84000, + televisions: 135551, + publicDebt: 30, + internet: 167480 + }), + new WorldStatsItem( + { + code: `STP`, + name: `Sao Tome and Principe`, + continent: `Africa`, + population: 201025, + gdpTotal: 694, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 6.598, + latitude: 0.248, + gdpPerPerson: 3452, + rank: 186, + unemployment: 1, + oilProduction: 3, + birthRate: 24, + medianAge: 30, + electricity: 6691, + televisions: 65480, + publicDebt: 12, + internet: 121162 + }), + new WorldStatsItem( + { + code: `WSM`, + name: `Samoa`, + continent: `Oceania`, + population: 200108, + gdpTotal: 1046, + economy: `Least developed`, + region: `Polynesia`, + status: `Country`, + longitude: -172.1, + latitude: -13.75, + gdpPerPerson: 5227, + rank: 187, + unemployment: 3, + oilProduction: 2, + birthRate: 7, + medianAge: 46, + electricity: 50118, + televisions: 54930, + publicDebt: 42, + internet: 84739 + }), + new WorldStatsItem( + { + code: `GUM`, + name: `Guam`, + continent: `Oceania`, + population: 167358, + gdpTotal: 4882, + economy: `Developing`, + region: `Micronesia`, + status: `Dependency`, + longitude: 144.79, + latitude: 13.44, + gdpPerPerson: 29171, + rank: 188, + unemployment: 15, + oilProduction: 2, + birthRate: 24, + medianAge: 42, + electricity: 64229, + televisions: 43567, + publicDebt: 37, + internet: 121131 + }), + new WorldStatsItem( + { + code: `LCA`, + name: `Saint Lucia`, + continent: `North America`, + population: 164994, + gdpTotal: 2083, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -60.98, + latitude: 13.905, + gdpPerPerson: 12625, + rank: 189, + unemployment: 3, + oilProduction: 2, + birthRate: 14, + medianAge: 32, + electricity: 75473, + televisions: 87743, + publicDebt: 7, + internet: 64498 + }), + new WorldStatsItem( + { + code: `CUW`, + name: `Curacao`, + continent: `North America`, + population: 149648, + gdpTotal: 3128, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -68.95, + latitude: 12.213, + gdpPerPerson: 20902, + rank: 190, + unemployment: 6, + oilProduction: 1, + birthRate: 7, + medianAge: 35, + electricity: 74665, + televisions: 89830, + publicDebt: 36, + internet: 55905 + }), + new WorldStatsItem( + { + code: `ABW`, + name: `Aruba`, + continent: `North America`, + population: 115120, + gdpTotal: 2516, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -69.98, + latitude: 12.519, + gdpPerPerson: 21855, + rank: 191, + unemployment: 7, + oilProduction: 2356, + birthRate: 13, + medianAge: 38, + electricity: 770, + televisions: 20000, + publicDebt: 46, + internet: 24000 + }), + new WorldStatsItem( + { + code: `GRD`, + name: `Grenada`, + continent: `North America`, + population: 111724, + gdpTotal: 1511, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.69, + latitude: 12.123, + gdpPerPerson: 13524, + rank: 192, + unemployment: 10, + oilProduction: 0, + birthRate: 10, + medianAge: 50, + electricity: 4992, + televisions: 58674, + publicDebt: 42, + internet: 33132 + }), + new WorldStatsItem( + { + code: `KIR`, + name: `Kiribati`, + continent: `Oceania`, + population: 108145, + gdpTotal: 211, + economy: `Least developed`, + region: `Micronesia`, + status: `Country`, + longitude: -157.333, + latitude: 1.884, + gdpPerPerson: 1951, + rank: 193, + unemployment: 13, + oilProduction: 4, + birthRate: 9, + medianAge: 52, + electricity: 37081, + televisions: 52395, + publicDebt: 40, + internet: 36620 + }), + new WorldStatsItem( + { + code: `VIR`, + name: `U.S. Virgin Island`, + continent: `North America`, + population: 107268, + gdpTotal: 3792, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -64.77, + latitude: 17.77, + gdpPerPerson: 35351, + rank: 194, + unemployment: 11, + oilProduction: 2, + birthRate: 12, + medianAge: 38, + electricity: 13387, + televisions: 77187, + publicDebt: 43, + internet: 40836 + }), + new WorldStatsItem( + { + code: `TON`, + name: `Tonga`, + continent: `Oceania`, + population: 106479, + gdpTotal: 557, + economy: `Developing`, + region: `Polynesia`, + status: `Country`, + longitude: -173.9, + latitude: -18.62, + gdpPerPerson: 5231, + rank: 195, + unemployment: 4, + oilProduction: 4, + birthRate: 5, + medianAge: 33, + electricity: 88735, + televisions: 30257, + publicDebt: 25, + internet: 71756 + }), + new WorldStatsItem( + { + code: `FSM`, + name: `Micronesia`, + continent: `Oceania`, + population: 104196, + gdpTotal: 314, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 150.52, + latitude: 7.435, + gdpPerPerson: 3014, + rank: 196, + unemployment: 9, + oilProduction: 5, + birthRate: 5, + medianAge: 38, + electricity: 39068, + televisions: 45396, + publicDebt: 40, + internet: 29169 + }), + new WorldStatsItem( + { + code: `VCT`, + name: `St. Vin. and Gren.`, + continent: `North America`, + population: 102089, + gdpTotal: 1241, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.17, + latitude: 13.239, + gdpPerPerson: 12156, + rank: 197, + unemployment: 10, + oilProduction: 5, + birthRate: 7, + medianAge: 30, + electricity: 39467, + televisions: 42804, + publicDebt: 9, + internet: 66754 + }), + new WorldStatsItem( + { + code: `JEY`, + name: `Jersey`, + continent: `Europe`, + population: 98840, + gdpTotal: 5080, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: -2.123, + latitude: 49.218, + gdpPerPerson: 51396, + rank: 198, + unemployment: 4, + oilProduction: 1, + birthRate: 18, + medianAge: 30, + electricity: 64261, + televisions: 52453, + publicDebt: 34, + internet: 3026 + }), + new WorldStatsItem( + { + code: `ATG`, + name: `Antigua and Barbuda`, + continent: `North America`, + population: 94731, + gdpTotal: 2171, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.79, + latitude: 17.096, + gdpPerPerson: 22918, + rank: 199, + unemployment: 3, + oilProduction: 1, + birthRate: 5, + medianAge: 36, + electricity: 35849, + televisions: 75384, + publicDebt: 32, + internet: 6170 + }), + new WorldStatsItem( + { + code: `SYC`, + name: `Seychelles`, + continent: `Africa`, + population: 93920, + gdpTotal: 2608, + economy: `Developing`, + region: `Eastern Africa`, + status: `Country`, + longitude: 55.463, + latitude: -4.672, + gdpPerPerson: 27768, + rank: 200, + unemployment: 2, + oilProduction: 0, + birthRate: 16, + medianAge: 29, + electricity: 252, + televisions: 11000, + publicDebt: 92, + internet: 32000 + }), + new WorldStatsItem( + { + code: `IMN`, + name: `Isle of Man`, + continent: `Europe`, + population: 88815, + gdpTotal: 7428, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: -4.562, + latitude: 54.233, + gdpPerPerson: 83635, + rank: 201, + unemployment: 4, + oilProduction: 4, + birthRate: 14, + medianAge: 36, + electricity: 15745, + televisions: 25734, + publicDebt: 13, + internet: 2650 + }), + new WorldStatsItem( + { + code: `AND`, + name: `Andorra`, + continent: `Europe`, + population: 85702, + gdpTotal: 3327, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 1.578, + latitude: 42.539, + gdpPerPerson: 38821, + rank: 202, + unemployment: 11, + oilProduction: 3, + birthRate: 20, + medianAge: 50, + electricity: 56209, + televisions: 42797, + publicDebt: 33, + internet: 42006 + }), + new WorldStatsItem( + { + code: `MHL`, + name: `Marshall Islands`, + continent: `Oceania`, + population: 74539, + gdpTotal: 180, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 169.3, + latitude: 8.484, + gdpPerPerson: 2415, + rank: 203, + unemployment: 3, + oilProduction: 3, + birthRate: 23, + medianAge: 42, + electricity: 78832, + televisions: 15193, + publicDebt: 44, + internet: 8536 + }), + new WorldStatsItem( + { + code: `DMA`, + name: `Dominica`, + continent: `North America`, + population: 73897, + gdpTotal: 812, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.36, + latitude: 15.43, + gdpPerPerson: 10988, + rank: 204, + unemployment: 6, + oilProduction: 1, + birthRate: 13, + medianAge: 35, + electricity: 49809, + televisions: 17676, + publicDebt: 37, + internet: 2616 + }), + new WorldStatsItem( + { + code: `BMU`, + name: `Bermuda`, + continent: `North America`, + population: 70864, + gdpTotal: 5198, + economy: `Developed`, + region: `Northern America`, + status: `Dependency`, + longitude: -64.76, + latitude: 32.323, + gdpPerPerson: 73352, + rank: 205, + unemployment: 15, + oilProduction: 1, + birthRate: 21, + medianAge: 43, + electricity: 54728, + televisions: 16336, + publicDebt: 27, + internet: 41606 + }), + new WorldStatsItem( + { + code: `GGY`, + name: `Guernsey`, + continent: `Europe`, + population: 66502, + gdpTotal: 3465, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: -2.579, + latitude: 49.468, + gdpPerPerson: 52104, + rank: 206, + unemployment: 2, + oilProduction: 1, + birthRate: 25, + medianAge: 33, + electricity: 9806, + televisions: 24638, + publicDebt: 34, + internet: 29222 + }), + new WorldStatsItem( + { + code: `CYM`, + name: `Cayman Island`, + continent: `North America`, + population: 58441, + gdpTotal: 2507, + economy: `Emerging`, + region: `Central America`, + status: `Dependency`, + longitude: -81.25, + latitude: 19.343, + gdpPerPerson: 42898, + rank: 207, + unemployment: 12, + oilProduction: 3, + birthRate: 7, + medianAge: 35, + electricity: 70206, + televisions: 28885, + publicDebt: 21, + internet: 9332 + }), + new WorldStatsItem( + { + code: `GRL`, + name: `Greenland`, + continent: `North America`, + population: 57713, + gdpTotal: 2173, + economy: `Developed`, + region: `Northern America`, + status: `Dependency`, + longitude: -42.12, + latitude: 69.547, + gdpPerPerson: 37652, + rank: 208, + unemployment: 7, + oilProduction: 5, + birthRate: 19, + medianAge: 42, + electricity: 86090, + televisions: 43741, + publicDebt: 42, + internet: 11423 + }), + new WorldStatsItem( + { + code: `KNA`, + name: `St. Kitts and Nevis`, + continent: `North America`, + population: 52715, + gdpTotal: 1427, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -62.77, + latitude: 17.351, + gdpPerPerson: 27070, + rank: 209, + unemployment: 5, + oilProduction: 2, + birthRate: 18, + medianAge: 40, + electricity: 65438, + televisions: 17719, + publicDebt: 11, + internet: 8543 + }), + new WorldStatsItem( + { + code: `TCA`, + name: `Turks and Caicos Is.`, + continent: `North America`, + population: 52570, + gdpTotal: 632, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -71.96, + latitude: 21.913, + gdpPerPerson: 12022, + rank: 210, + unemployment: 6, + oilProduction: 0, + birthRate: 13, + medianAge: 42, + electricity: 51325, + televisions: 13109, + publicDebt: 13, + internet: 24564 + }), + new WorldStatsItem( + { + code: `MNP`, + name: `N. Mariana Island`, + continent: `Oceania`, + population: 52263, + gdpTotal: 682, + economy: `Developing`, + region: `Micronesia`, + status: `Dependency`, + longitude: 145.49, + latitude: 16.459, + gdpPerPerson: 13049, + rank: 211, + unemployment: 10, + oilProduction: 1, + birthRate: 9, + medianAge: 46, + electricity: 87386, + televisions: 13049, + publicDebt: 20, + internet: 5484 + }), + new WorldStatsItem( + { + code: `ASM`, + name: `American Samoa`, + continent: `Oceania`, + population: 51504, + gdpTotal: 711, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -170.6, + latitude: -14.3, + gdpPerPerson: 13805, + rank: 212, + unemployment: 3, + oilProduction: 4, + birthRate: 13, + medianAge: 42, + electricity: 65918, + televisions: 18802, + publicDebt: 23, + internet: 14691 + }), + new WorldStatsItem( + { + code: `FRO`, + name: `Faeroe Island`, + continent: `Europe`, + population: 50730, + gdpTotal: 2001, + economy: `Developed`, + region: `Northern Europe`, + status: `Dependency`, + longitude: -6.857, + latitude: 62.178, + gdpPerPerson: 39444, + rank: 213, + unemployment: 15, + oilProduction: 2, + birthRate: 11, + medianAge: 46, + electricity: 55029, + televisions: 11762, + publicDebt: 13, + internet: 2412 + }), + new WorldStatsItem( + { + code: `SXM`, + name: `Sint Maarten`, + continent: `North America`, + population: 42083, + gdpTotal: 366, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -63.06, + latitude: 18.044, + gdpPerPerson: 8697, + rank: 214, + unemployment: 14, + oilProduction: 4, + birthRate: 19, + medianAge: 50, + electricity: 17166, + televisions: 8474, + publicDebt: 33, + internet: 14309 + }), + new WorldStatsItem( + { + code: `LIE`, + name: `Liechtenstein`, + continent: `Europe`, + population: 38244, + gdpTotal: 4978, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 9.545, + latitude: 47.164, + gdpPerPerson: 130164, + rank: 215, + unemployment: 11, + oilProduction: 3, + birthRate: 10, + medianAge: 55, + electricity: 80781, + televisions: 23104, + publicDebt: 21, + internet: 8159 + }), + new WorldStatsItem( + { + code: `VGB`, + name: `British Virgin Island`, + continent: `North America`, + population: 35015, + gdpTotal: 500, + economy: `Developed`, + region: `Central America`, + status: `Dependency`, + longitude: -64.6, + latitude: 18.44, + gdpPerPerson: 14280, + rank: 216, + unemployment: 13, + oilProduction: 2, + birthRate: 6, + medianAge: 51, + electricity: 47732, + televisions: 17777, + publicDebt: 7, + internet: 6238 + }), + new WorldStatsItem( + { + code: `SMR`, + name: `San Marino`, + continent: `Europe`, + population: 33537, + gdpTotal: 2023, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 12.456, + latitude: 43.942, + gdpPerPerson: 60321, + rank: 217, + unemployment: 10, + oilProduction: 0, + birthRate: 15, + medianAge: 48, + electricity: 21943, + televisions: 22355, + publicDebt: 34, + internet: 23505 + }), + new WorldStatsItem( + { + code: `MAF`, + name: `St. Martin`, + continent: `North America`, + population: 32125, + gdpTotal: 562, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -63.06, + latitude: 18.092, + gdpPerPerson: 17494, + rank: 218, + unemployment: 15, + oilProduction: 5, + birthRate: 10, + medianAge: 34, + electricity: 76791, + televisions: 17592, + publicDebt: 43, + internet: 25032 + }), + new WorldStatsItem( + { + code: `MCO`, + name: `Monaco`, + continent: `Europe`, + population: 30645, + gdpTotal: 7672, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 7.408, + latitude: 43.751, + gdpPerPerson: 250351, + rank: 219, + unemployment: 15, + oilProduction: 5, + birthRate: 18, + medianAge: 31, + electricity: 73517, + televisions: 10057, + publicDebt: 10, + internet: 18394 + }), + new WorldStatsItem( + { + code: `ALA`, + name: `Aland Islands`, + continent: `Europe`, + population: 27153, + gdpTotal: 1563, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: 20.065, + latitude: 60.209, + gdpPerPerson: 57563, + rank: 220, + unemployment: 14, + oilProduction: 3, + birthRate: 15, + medianAge: 54, + electricity: 69394, + televisions: 14696, + publicDebt: 19, + internet: 2736 + }), + new WorldStatsItem( + { + code: `PLW`, + name: `Palau`, + continent: `Oceania`, + population: 21431, + gdpTotal: 276, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 134.63, + latitude: 7.532, + gdpPerPerson: 12879, + rank: 221, + unemployment: 8, + oilProduction: 1, + birthRate: 7, + medianAge: 39, + electricity: 88599, + televisions: 3019, + publicDebt: 8, + internet: 17075 + }), + new WorldStatsItem( + { + code: `AIA`, + name: `Anguilla`, + continent: `North America`, + population: 17087, + gdpTotal: 175, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -63.07, + latitude: 18.221, + gdpPerPerson: 10242, + rank: 222, + unemployment: 9, + oilProduction: 1, + birthRate: 10, + medianAge: 49, + electricity: 68590, + televisions: 10632, + publicDebt: 40, + internet: 8703 + }), + new WorldStatsItem( + { + code: `WLF`, + name: `Wallis Island`, + continent: `Oceania`, + population: 15714, + gdpTotal: 60, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -177.1, + latitude: -13.77, + gdpPerPerson: 3818, + rank: 223, + unemployment: 15, + oilProduction: 0, + birthRate: 0, + medianAge: 0, + electricity: 0, + televisions: 0, + publicDebt: 6, + internet: 900 + }), + new WorldStatsItem( + { + code: `NRU`, + name: `Nauru`, + continent: `Oceania`, + population: 9642, + gdpTotal: 151, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 166.93, + latitude: -0.52, + gdpPerPerson: 15661, + rank: 224, + unemployment: 5, + oilProduction: 3, + birthRate: 17, + medianAge: 32, + electricity: 84092, + televisions: 1777, + publicDebt: 34, + internet: 4585 + }), + new WorldStatsItem( + { + code: `COK`, + name: `Cook Island`, + continent: `Oceania`, + population: 9290, + gdpTotal: 244, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -159.7, + latitude: -21.21, + gdpPerPerson: 26265, + rank: 225, + unemployment: 15, + oilProduction: 1, + birthRate: 6, + medianAge: 45, + electricity: 41320, + televisions: 3712, + publicDebt: 24, + internet: 3555 + }), + new WorldStatsItem( + { + code: `SHN`, + name: `Saint Helena`, + continent: `Africa`, + population: 7828, + gdpTotal: 31, + economy: `Developing`, + region: `Western Africa`, + status: `Dependency`, + longitude: -10.03, + latitude: -11.94, + gdpPerPerson: 3960, + rank: 226, + unemployment: 13, + oilProduction: 1, + birthRate: 17, + medianAge: 48, + electricity: 84435, + televisions: 3812, + publicDebt: 15, + internet: 5530 + }), + new WorldStatsItem( + { + code: `BLM`, + name: `St. Barthalemy`, + continent: `North America`, + population: 7184, + gdpTotal: 255, + economy: `Developed`, + region: `Central America`, + status: `Dependency`, + longitude: -62.83, + latitude: 17.899, + gdpPerPerson: 35496, + rank: 227, + unemployment: 14, + oilProduction: 0, + birthRate: 23, + medianAge: 46, + electricity: 36112, + televisions: 4072, + publicDebt: 27, + internet: 5097 + }), + new WorldStatsItem( + { + code: `KAS`, + name: `Siachen Glacier`, + continent: `Asia`, + population: 6000, + gdpTotal: 15, + economy: `Developing`, + region: `Southern Asia`, + status: `Territory`, + longitude: 77.283, + latitude: 35.386, + gdpPerPerson: 2500, + rank: 228, + unemployment: 7, + oilProduction: 0, + birthRate: 9, + medianAge: 55, + electricity: 62932, + televisions: 936, + publicDebt: 14, + internet: 1303 + }), + new WorldStatsItem( + { + code: `SPM`, + name: `St. Pierre and Miquelon`, + continent: `North America`, + population: 5533, + gdpTotal: 215, + economy: `Developed`, + region: `Northern America`, + status: `Territory`, + longitude: -56.26, + latitude: 46.926, + gdpPerPerson: 38858, + rank: 229, + unemployment: 13, + oilProduction: 0, + birthRate: 13, + medianAge: 42, + electricity: 61277, + televisions: 2067, + publicDebt: 18, + internet: 2924 + }), + new WorldStatsItem( + { + code: `MSR`, + name: `Montserrat`, + continent: `North America`, + population: 5292, + gdpTotal: 44, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -62.18, + latitude: 16.745, + gdpPerPerson: 8314, + rank: 230, + unemployment: 13, + oilProduction: 1, + birthRate: 12, + medianAge: 50, + electricity: 19088, + televisions: 1964, + publicDebt: 44, + internet: 4009 + }), + new WorldStatsItem( + { + code: `IOT`, + name: `British Indian Territory`, + continent: `Asia`, + population: 4000, + gdpTotal: 160, + economy: `Developed`, + region: `Southern Asia`, + status: `Dependency`, + longitude: 72.424, + latitude: -7.328, + gdpPerPerson: 40000, + rank: 232, + unemployment: 13, + oilProduction: 0, + birthRate: 6, + medianAge: 47, + electricity: 91829, + televisions: 1510, + publicDebt: 14, + internet: 1656 + }), + new WorldStatsItem( + { + code: `FLK`, + name: `Falkland Island`, + continent: `South America`, + population: 2931, + gdpTotal: 282, + economy: `Developed`, + region: `South America`, + status: `Dependency`, + longitude: -59.46, + latitude: -51.78, + gdpPerPerson: 96213, + rank: 233, + unemployment: 3, + oilProduction: 5, + birthRate: 9, + medianAge: 36, + electricity: 68007, + televisions: 1489, + publicDebt: 22, + internet: 1335 + }), + new WorldStatsItem( + { + code: `NFK`, + name: `Norfolk Island`, + continent: `Oceania`, + population: 2210, + gdpTotal: 33, + economy: `Developing`, + region: `Australia`, + status: `Dependency`, + longitude: 167.94, + latitude: -29.05, + gdpPerPerson: 14932, + rank: 234, + unemployment: 1, + oilProduction: 0, + birthRate: 15, + medianAge: 46, + electricity: 91943, + televisions: 583, + publicDebt: 41, + internet: 1183 + }), + new WorldStatsItem( + { + code: `NIU`, + name: `Niue`, + continent: `Oceania`, + population: 1626, + gdpTotal: 10, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -169.8, + latitude: -19.05, + gdpPerPerson: 6150, + rank: 235, + unemployment: 15, + oilProduction: 4, + birthRate: 17, + medianAge: 51, + electricity: 16785, + televisions: 585, + publicDebt: 31, + internet: 1247 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html index 1f275bd78..d2dee2971 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html @@ -1,76 +1,51 @@
-
- Total Population of Selected Countries -
-
- - -
+ chartTitle="Population vs. Public Debt vs. GDP" + titleTopMargin="10" + titleBottomMargin="0"> + abbreviateLargeNumbers="true" + maximumValue="1000"> - - + layoutMode="Vertical" + badgeShape="Hidden" + includedColumns="X, Y, Radius" + headerRowVisible="false">
diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.ts index b4b21503c..05633ed2a 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.ts @@ -1,7 +1,6 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; -import { CountryStatsAfricaItem, CountryStatsAfrica } from './CountryStatsAfrica'; -import { CountryStatsEuropeItem, CountryStatsEurope } from './CountryStatsEurope'; -import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent, IgxSizeScaleComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; +import { WorldStatsItem, WorldStats } from './WorldStats'; +import { IgxDataChartComponent, IgxNumericXAxisComponent, IgxNumericYAxisComponent, IgxBubbleSeriesComponent, IgxSizeScaleComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; @Component({ standalone: false, @@ -14,8 +13,6 @@ import { IgxLegendComponent, IgxDataChartComponent, IgxNumericXAxisComponent, Ig export class AppComponent implements AfterViewInit { - @ViewChild("legend", { static: true } ) - private legend: IgxLegendComponent @ViewChild("chart", { static: true } ) private chart: IgxDataChartComponent @ViewChild("xAxis", { static: true } ) @@ -31,45 +28,21 @@ export class AppComponent implements AfterViewInit var sizeScale1 = new IgxSizeScaleComponent(); sizeScale1.isLogarithmic = false; sizeScale1.minimumValue = 10; - sizeScale1.maximumValue = 50; + sizeScale1.maximumValue = 80; this._sizeScale1 = sizeScale1; } return this._sizeScale1; } - @ViewChild("bubbleSeries2", { static: true } ) - private bubbleSeries2: IgxBubbleSeriesComponent - private _sizeScale2: IgxSizeScaleComponent | null = null; - public get sizeScale2(): IgxSizeScaleComponent { - if (this._sizeScale2 == null) - { - var sizeScale2 = new IgxSizeScaleComponent(); - sizeScale2.isLogarithmic = false; - sizeScale2.minimumValue = 10; - sizeScale2.maximumValue = 50; - - this._sizeScale2 = sizeScale2; - } - return this._sizeScale2; - } @ViewChild("dataToolTipLayer", { static: true } ) private dataToolTipLayer: IgxDataToolTipLayerComponent - private _countryStatsAfrica: CountryStatsAfrica = null; - public get countryStatsAfrica(): CountryStatsAfrica { - if (this._countryStatsAfrica == null) - { - this._countryStatsAfrica = new CountryStatsAfrica(); - } - return this._countryStatsAfrica; - } - - private _countryStatsEurope: CountryStatsEurope = null; - public get countryStatsEurope(): CountryStatsEurope { - if (this._countryStatsEurope == null) + private _worldStats: WorldStats = null; + public get worldStats(): WorldStats { + if (this._worldStats == null) { - this._countryStatsEurope = new CountryStatsEurope(); + this._worldStats = new WorldStats(); } - return this._countryStatsEurope; + return this._worldStats; } public constructor(private _detector: ChangeDetectorRef) From 9b056e99010457b996bf99f7e10663f31b002ff6 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 13:41:34 -0500 Subject: [PATCH 119/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.12.18.3 (#266) Co-authored-by: tfsbuild --- .../src/CountryStatsAfrica.ts | 431 ------------------ .../src/CountryStatsEurope.ts | 351 -------------- 2 files changed, 782 deletions(-) delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts delete mode 100644 samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts deleted file mode 100644 index 34e0a73da..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts +++ /dev/null @@ -1,431 +0,0 @@ -export class CountryStatsAfricaItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public code: string; - public population: number; - public workedHours: number; - public gDP: number; - public name: string; - -} -export class CountryStatsAfrica extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new CountryStatsAfricaItem( - { - code: `DZA`, - population: 39728000, - workedHours: 47.5, - gDP: 13725, - name: `Algeria` - }), - new CountryStatsAfricaItem( - { - code: `AGO`, - population: 27884000, - workedHours: 39.8, - gDP: 6228, - name: `Angola` - }), - new CountryStatsAfricaItem( - { - code: `BEN`, - population: 10576000, - workedHours: 43.7, - gDP: 1987, - name: `Benin` - }), - new CountryStatsAfricaItem( - { - code: `BWA`, - population: 2121000, - workedHours: 41.2, - gDP: 15357, - name: `Botswana` - }), - new CountryStatsAfricaItem( - { - code: `BFA`, - population: 18111000, - workedHours: 39.3, - gDP: 1596, - name: `Burkina Faso` - }), - new CountryStatsAfricaItem( - { - code: `BDI`, - population: 10160000, - workedHours: 36.4, - gDP: 748, - name: `Burundi` - }), - new CountryStatsAfricaItem( - { - code: `CMR`, - population: 23298000, - workedHours: 42, - gDP: 3289, - name: `Cameroon` - }), - new CountryStatsAfricaItem( - { - code: `CPV`, - population: 525000, - workedHours: 45, - gDP: 5915, - name: `Cape Verde` - }), - new CountryStatsAfricaItem( - { - code: `CAF`, - population: 4493000, - workedHours: 38, - gDP: 622, - name: `Central African Republic` - }), - new CountryStatsAfricaItem( - { - code: `TCD`, - population: 14111000, - workedHours: 40.4, - gDP: 2067, - name: `Chad` - }), - new CountryStatsAfricaItem( - { - code: `COM`, - population: 777000, - workedHours: 40.1, - gDP: 1413, - name: `Comoros` - }), - new CountryStatsAfricaItem( - { - code: `COG`, - population: 4856000, - workedHours: 38.1, - gDP: 5543, - name: `Congo` - }), - new CountryStatsAfricaItem( - { - code: `CIV`, - population: 23226000, - workedHours: 39.7, - gDP: 3242, - name: `Cote Ivoire` - }), - new CountryStatsAfricaItem( - { - code: `COD`, - population: 76245000, - workedHours: 44, - gDP: 812, - name: `Democratic Republic of Congo` - }), - new CountryStatsAfricaItem( - { - code: `EGY`, - population: 92443000, - workedHours: 39.7, - gDP: 10096, - name: `Egypt` - }), - new CountryStatsAfricaItem( - { - code: `GNQ`, - population: 1169000, - workedHours: 38.8, - gDP: 27554, - name: `Equatorial Guinea` - }), - new CountryStatsAfricaItem( - { - code: `SWZ`, - population: 1104000, - workedHours: 45.7, - gDP: 7759, - name: `Eswatini` - }), - new CountryStatsAfricaItem( - { - code: `ETH`, - population: 101000000, - workedHours: 40.1, - gDP: 1533, - name: `Ethiopia` - }), - new CountryStatsAfricaItem( - { - code: `GAB`, - population: 1948000, - workedHours: 40.5, - gDP: 16837, - name: `Gabon` - }), - new CountryStatsAfricaItem( - { - code: `GMB`, - population: 2086000, - workedHours: 40.3, - gDP: 1568, - name: `Gambia` - }), - new CountryStatsAfricaItem( - { - code: `GHA`, - population: 27849000, - workedHours: 47.6, - gDP: 3927, - name: `Ghana` - }), - new CountryStatsAfricaItem( - { - code: `GIN`, - population: 11432000, - workedHours: 43.4, - gDP: 1758, - name: `Guinea` - }), - new CountryStatsAfricaItem( - { - code: `GNB`, - population: 1737000, - workedHours: 35.1, - gDP: 1446, - name: `Guinea-Bissau` - }), - new CountryStatsAfricaItem( - { - code: `KEN`, - population: 47878000, - workedHours: 43.9, - gDP: 2836, - name: `Kenya` - }), - new CountryStatsAfricaItem( - { - code: `LSO`, - population: 2059000, - workedHours: 47.6, - gDP: 2708, - name: `Lesotho` - }), - new CountryStatsAfricaItem( - { - code: `LBR`, - population: 4472000, - workedHours: 40.3, - gDP: 785, - name: `Liberia` - }), - new CountryStatsAfricaItem( - { - code: `LBY`, - population: 6418000, - workedHours: 42.5, - gDP: 14847, - name: `Libya` - }), - new CountryStatsAfricaItem( - { - code: `MDG`, - population: 24234000, - workedHours: 40.8, - gDP: 1377, - name: `Madagascar` - }), - new CountryStatsAfricaItem( - { - code: `MWI`, - population: 16745000, - workedHours: 44.5, - gDP: 1089, - name: `Malawi` - }), - new CountryStatsAfricaItem( - { - code: `MLI`, - population: 17439000, - workedHours: 40.6, - gDP: 1919, - name: `Mali` - }), - new CountryStatsAfricaItem( - { - code: `MRT`, - population: 4046000, - workedHours: 45.9, - gDP: 3602, - name: `Mauritania` - }), - new CountryStatsAfricaItem( - { - code: `MUS`, - population: 1259000, - workedHours: 44.4, - gDP: 18864, - name: `Mauritius` - }), - new CountryStatsAfricaItem( - { - code: `MAR`, - population: 34664000, - workedHours: 39.6, - gDP: 7297, - name: `Morocco` - }), - new CountryStatsAfricaItem( - { - code: `MOZ`, - population: 27042000, - workedHours: 46.7, - gDP: 1118, - name: `Mozambique` - }), - new CountryStatsAfricaItem( - { - code: `NAM`, - population: 2315000, - workedHours: 43.1, - gDP: 9975, - name: `Namibia` - }), - new CountryStatsAfricaItem( - { - code: `NER`, - population: 20002000, - workedHours: 45, - gDP: 908, - name: `Niger` - }), - new CountryStatsAfricaItem( - { - code: `NGA`, - population: 181000000, - workedHours: 32.76, - gDP: 5671, - name: `Nigeria` - }), - new CountryStatsAfricaItem( - { - code: `RWA`, - population: 11369000, - workedHours: 46.3, - gDP: 1731, - name: `Rwanda` - }), - new CountryStatsAfricaItem( - { - code: `STP`, - population: 199000, - workedHours: 38.2, - gDP: 2948, - name: `Sao Tome` - }), - new CountryStatsAfricaItem( - { - code: `SEN`, - population: 14578000, - workedHours: 46.8, - gDP: 2294, - name: `Senegal` - }), - new CountryStatsAfricaItem( - { - code: `SYC`, - population: 95000, - workedHours: 39.8, - gDP: 24857, - name: `Seychelles` - }), - new CountryStatsAfricaItem( - { - code: `SLE`, - population: 7172000, - workedHours: 35.4, - gDP: 1314, - name: `Sierra Leone` - }), - new CountryStatsAfricaItem( - { - code: `ZAF`, - population: 55386000, - workedHours: 42.48, - gDP: 12378, - name: `South Africa` - }), - new CountryStatsAfricaItem( - { - code: `SSD`, - population: 10716000, - workedHours: 39.3, - gDP: 1875, - name: `South Sudan` - }), - new CountryStatsAfricaItem( - { - code: `SDN`, - population: 38903000, - workedHours: 36.3, - gDP: 4290, - name: `Sudan` - }), - new CountryStatsAfricaItem( - { - code: `TZA`, - population: 51483000, - workedHours: 38, - gDP: 2491, - name: `Tanzania` - }), - new CountryStatsAfricaItem( - { - code: `TGO`, - population: 7323000, - workedHours: 38.8, - gDP: 1351, - name: `Togo` - }), - new CountryStatsAfricaItem( - { - code: `TUN`, - population: 11180000, - workedHours: 35.2, - gDP: 10766, - name: `Tunisia` - }), - new CountryStatsAfricaItem( - { - code: `UGA`, - population: 38225000, - workedHours: 38.6, - gDP: 1666, - name: `Uganda` - }), - new CountryStatsAfricaItem( - { - code: `ZMB`, - population: 15879000, - workedHours: 46.6, - gDP: 3627, - name: `Zambia` - }), - new CountryStatsAfricaItem( - { - code: `ZWE`, - population: 13815000, - workedHours: 41.4, - gDP: 1912, - name: `Zimbabwe` - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts deleted file mode 100644 index d0b93024d..000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts +++ /dev/null @@ -1,351 +0,0 @@ -export class CountryStatsEuropeItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public code: string; - public population: number; - public workedHours: number; - public gDP: number; - public name: string; - -} -export class CountryStatsEurope extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new CountryStatsEuropeItem( - { - code: `ALB`, - population: 2891000, - workedHours: 41, - gDP: 10970, - name: `Albania` - }), - new CountryStatsEuropeItem( - { - code: `AUT`, - population: 8679000, - workedHours: 30.75, - gDP: 44305, - name: `Austria` - }), - new CountryStatsEuropeItem( - { - code: `BLR`, - population: 9439000, - workedHours: 43.5, - gDP: 17230, - name: `Belarus` - }), - new CountryStatsEuropeItem( - { - code: `BEL`, - population: 11288000, - workedHours: 29.7, - gDP: 41708, - name: `Belgium` - }), - new CountryStatsEuropeItem( - { - code: `BIH`, - population: 3429000, - workedHours: 46.5, - gDP: 10932, - name: `Bosnia` - }), - new CountryStatsEuropeItem( - { - code: `BGR`, - population: 7200000, - workedHours: 31.62, - gDP: 17000, - name: `Bulgaria` - }), - new CountryStatsEuropeItem( - { - code: `HRV`, - population: 4233000, - workedHours: 35.15, - gDP: 20984, - name: `Croatia` - }), - new CountryStatsEuropeItem( - { - code: `CYP`, - population: 1161000, - workedHours: 34.42, - gDP: 30549, - name: `Cyprus` - }), - new CountryStatsEuropeItem( - { - code: `CZE`, - population: 10601000, - workedHours: 33.77, - gDP: 30605, - name: `Czechia` - }), - new CountryStatsEuropeItem( - { - code: `DNK`, - population: 5689000, - workedHours: 27.16, - gDP: 45459, - name: `Denmark` - }), - new CountryStatsEuropeItem( - { - code: `EST`, - population: 1315000, - workedHours: 35.61, - gDP: 27550, - name: `Estonia` - }), - new CountryStatsEuropeItem( - { - code: `FIN`, - population: 5481000, - workedHours: 31.48, - gDP: 38942, - name: `Finland` - }), - new CountryStatsEuropeItem( - { - code: `FRA`, - population: 64453000, - workedHours: 29.03, - gDP: 37766, - name: `France` - }), - new CountryStatsEuropeItem( - { - code: `DEU`, - population: 81787000, - workedHours: 26.31, - gDP: 43938, - name: `Germany` - }), - new CountryStatsEuropeItem( - { - code: `GRC`, - population: 10660000, - workedHours: 39.06, - gDP: 24170, - name: `Greece` - }), - new CountryStatsEuropeItem( - { - code: `HUN`, - population: 9778000, - workedHours: 36.99, - gDP: 25034, - name: `Hungary` - }), - new CountryStatsEuropeItem( - { - code: `ISL`, - population: 330000, - workedHours: 29.02, - gDP: 43048, - name: `Iceland` - }), - new CountryStatsEuropeItem( - { - code: `IRL`, - population: 4652000, - workedHours: 33.47, - gDP: 60818, - name: `Ireland` - }), - new CountryStatsEuropeItem( - { - code: `ITA`, - population: 60578000, - workedHours: 33.04, - gDP: 34302, - name: `Italy` - }), - new CountryStatsEuropeItem( - { - code: `LVA`, - population: 1998000, - workedHours: 36.57, - gDP: 23019, - name: `Latvia` - }), - new CountryStatsEuropeItem( - { - code: `LTU`, - population: 2932000, - workedHours: 35.76, - gDP: 27046, - name: `Lithuania` - }), - new CountryStatsEuropeItem( - { - code: `LUX`, - population: 567000, - workedHours: 29.25, - gDP: 94089, - name: `Luxembourg` - }), - new CountryStatsEuropeItem( - { - code: `MLT`, - population: 434000, - workedHours: 37.78, - gDP: 34087, - name: `Malta` - }), - new CountryStatsEuropeItem( - { - code: `MDA`, - population: 4071000, - workedHours: 41, - gDP: 4747, - name: `Moldova` - }), - new CountryStatsEuropeItem( - { - code: `MNE`, - population: 627000, - workedHours: 47.2, - gDP: 15290, - name: `Montenegro` - }), - new CountryStatsEuropeItem( - { - code: `NLD`, - population: 16938000, - workedHours: 27.38, - gDP: 46494, - name: `Netherlands` - }), - new CountryStatsEuropeItem( - { - code: `MKD`, - population: 2079000, - workedHours: 36.6, - gDP: 12760, - name: `North Macedonia` - }), - new CountryStatsEuropeItem( - { - code: `NOR`, - population: 5200000, - workedHours: 27.36, - gDP: 64008, - name: `Norway` - }), - new CountryStatsEuropeItem( - { - code: `POL`, - population: 38034000, - workedHours: 39.4, - gDP: 25300, - name: `Poland` - }), - new CountryStatsEuropeItem( - { - code: `PRT`, - population: 10368000, - workedHours: 36.06, - gDP: 26608, - name: `Portugal` - }), - new CountryStatsEuropeItem( - { - code: `ROU`, - population: 19925000, - workedHours: 34.34, - gDP: 20556, - name: `Romania` - }), - new CountryStatsEuropeItem( - { - code: `RUS`, - population: 145000000, - workedHours: 38.04, - gDP: 24517, - name: `Russia` - }), - new CountryStatsEuropeItem( - { - code: `SMR`, - population: 33000, - workedHours: 40.1, - gDP: 56372, - name: `San Marino` - }), - new CountryStatsEuropeItem( - { - code: `SRB`, - population: 8877000, - workedHours: 46.5, - gDP: 13278, - name: `Serbia` - }), - new CountryStatsEuropeItem( - { - code: `SVK`, - population: 5436000, - workedHours: 33.73, - gDP: 28309, - name: `Slovakia` - }), - new CountryStatsEuropeItem( - { - code: `SVN`, - population: 2071000, - workedHours: 32.46, - gDP: 29038, - name: `Slovenia` - }), - new CountryStatsEuropeItem( - { - code: `ESP`, - population: 46672000, - workedHours: 32.68, - gDP: 32291, - name: `Spain` - }), - new CountryStatsEuropeItem( - { - code: `SWE`, - population: 9765000, - workedHours: 30.96, - gDP: 45679, - name: `Sweden` - }), - new CountryStatsEuropeItem( - { - code: `CHE`, - population: 8297000, - workedHours: 30.57, - gDP: 57264, - name: `Switzerland` - }), - new CountryStatsEuropeItem( - { - code: `UKR`, - population: 44922000, - workedHours: 38.6, - gDP: 7465, - name: `Ukraine` - }), - new CountryStatsEuropeItem( - { - code: `GBR`, - population: 65860000, - workedHours: 32.1, - gDP: 38839, - name: `United Kingdom` - }), - ]; - super(...newItems.slice(0)); - } - } -} From 7b4b312af24669cf3cf04bc7294610bcb7ca495d Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:38:46 -0500 Subject: [PATCH 120/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.12.18.4 (#267) Co-authored-by: tfsbuild --- .../scatter-bubble-chart-fill-scale/src/app.component.ts | 6 +++--- .../src/app.component.ts | 4 ++-- .../scatter-bubble-chart-single-source/src/app.component.ts | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts index 1ab2ab0f4..3f5b74a35 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.ts @@ -29,7 +29,7 @@ export class AppComponent implements AfterViewInit var sizeScale1 = new IgxSizeScaleComponent(); sizeScale1.isLogarithmic = false; sizeScale1.minimumValue = 10; - sizeScale1.maximumValue = 120; + sizeScale1.maximumValue = 80; this._sizeScale1 = sizeScale1; } @@ -41,9 +41,9 @@ export class AppComponent implements AfterViewInit { var valueBrushScale1 = new IgxValueBrushScaleComponent(); valueBrushScale1.isLogarithmic = false; - valueBrushScale1.minimumValue = 0; + valueBrushScale1.minimumValue = 500; valueBrushScale1.maximumValue = 260000; - valueBrushScale1.brushes = ["rgba(137, 181, 250, 1)", "rgba(20, 108, 247, 1)", "rgba(82, 144, 242, 1)"]; + valueBrushScale1.brushes = ["rgba(150, 189, 250, 1)", "rgba(111, 164, 247, 1)", "rgba(82, 144, 242, 1)", "rgba(19, 94, 212, 1)"]; this._valueBrushScale1 = valueBrushScale1; } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.ts index b4b21503c..a00200d26 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.ts @@ -31,7 +31,7 @@ export class AppComponent implements AfterViewInit var sizeScale1 = new IgxSizeScaleComponent(); sizeScale1.isLogarithmic = false; sizeScale1.minimumValue = 10; - sizeScale1.maximumValue = 50; + sizeScale1.maximumValue = 80; this._sizeScale1 = sizeScale1; } @@ -46,7 +46,7 @@ export class AppComponent implements AfterViewInit var sizeScale2 = new IgxSizeScaleComponent(); sizeScale2.isLogarithmic = false; sizeScale2.minimumValue = 10; - sizeScale2.maximumValue = 50; + sizeScale2.maximumValue = 80; this._sizeScale2 = sizeScale2; } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.ts index 1bbaec20b..05633ed2a 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.ts @@ -28,7 +28,7 @@ export class AppComponent implements AfterViewInit var sizeScale1 = new IgxSizeScaleComponent(); sizeScale1.isLogarithmic = false; sizeScale1.minimumValue = 10; - sizeScale1.maximumValue = 50; + sizeScale1.maximumValue = 80; this._sizeScale1 = sizeScale1; } From c0f7ab592198df7aec629d236a2da9b2cf814e04 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Wed, 18 Dec 2024 16:59:10 -0500 Subject: [PATCH 121/154] mdd-fix-angular-from-running (#268) * mdd-fix-angular-from-running mdd-fix-angular-from-running * Update other tasks --------- Co-authored-by: Andrew Goldenbaum --- browser/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/browser/package.json b/browser/package.json index bed9e81a0..68b86a1f9 100644 --- a/browser/package.json +++ b/browser/package.json @@ -7,10 +7,10 @@ "ng": "ng", "update": "ng update", "build": "gulp updateBrowser && gulp overwrite-package-json && ng build --configuration production --progress=true", - "start": "gulp updateBrowser --max_old_space_size=12192 && node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve --configuration es5 -o", - "startProd": "gulp updateBrowser --max_old_space_size=12192 && node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve --configuration production --configuration es5 -o --progress=true", - "start:es5": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", - "startHost": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve --configuration es5 -o", + "start": "gulp updateBrowser && ng serve --configuration es5 -o", + "startProd": "gulp updateBrowser && ng serve --configuration production --configuration es5 -o --progress=true", + "start:es5": "ng serve -o", + "startHost": "ng serve --configuration es5 -o", "sass-js-compile-check": "gulp sass-js-compile-check", "test": "ng test", "lint": "ng lint", From d480c8f9956708d6d00759435784a4591f15f863 Mon Sep 17 00:00:00 2001 From: mtrela Date: Thu, 19 Dec 2024 10:28:44 -0500 Subject: [PATCH 122/154] IG v18.2.0 --- browser/package.json | 20 +++---- browser/scripts/browser.js | 52 +++++++++---------- .../annotations-all/package.json | 34 ++++++------ .../annotations-callouts/package.json | 34 ++++++------ .../annotations-crosshairs/package.json | 34 ++++++------ .../annotations-custom/package.json | 34 ++++++------ .../annotations-final-value/package.json | 34 ++++++------ .../annotations-highlighting/package.json | 34 ++++++------ .../category-chart/annotations/package.json | 30 +++++------ .../area-chart-multiple-sources/package.json | 30 +++++------ .../area-chart-single-source/package.json | 30 +++++------ .../area-chart-styling/package.json | 30 +++++------ .../category-chart/axis-gap/package.json | 34 ++++++------ .../axis-gridlines/package.json | 34 ++++++------ .../category-chart/axis-inverted/package.json | 34 ++++++------ .../category-chart/axis-labels/package.json | 34 ++++++------ .../axis-locations/package.json | 34 ++++++------ .../category-chart/axis-options/package.json | 30 +++++------ .../category-chart/axis-overlap/package.json | 34 ++++++------ .../category-chart/axis-range/package.json | 34 ++++++------ .../axis-tickmarks/package.json | 34 ++++++------ .../category-chart/axis-titles/package.json | 30 +++++------ .../chart-highlight-filter/package.json | 34 ++++++------ .../package.json | 30 +++++------ .../column-chart-single-source/package.json | 30 +++++------ .../column-chart-styling/package.json | 30 +++++------ .../package.json | 30 +++++------ .../column-chart-with-tooltips/package.json | 34 ++++++------ .../custom-selection/package.json | 30 +++++------ .../data-aggregations/package.json | 34 ++++++------ .../category-chart/data-filter/package.json | 34 ++++++------ .../package.json | 30 +++++------ .../category-chart/data-legend/package.json | 30 +++++------ .../package.json | 30 +++++------ .../data-tooltip-positioning/package.json | 34 ++++++------ .../category-chart/data-tooltip/package.json | 30 +++++------ .../format-specifiers/package.json | 34 ++++++------ .../high-frequency/package.json | 32 ++++++------ .../category-chart/high-volume/package.json | 32 ++++++------ .../highlighting-behavior/package.json | 34 ++++++------ .../highlighting-mode/package.json | 34 ++++++------ .../category-chart/highlighting/package.json | 30 +++++------ .../legend-highlighting/package.json | 30 +++++------ .../line-chart-multiple-sources/package.json | 30 +++++------ .../line-chart-single-source/package.json | 30 +++++------ .../line-chart-styling/package.json | 30 +++++------ .../line-chart-with-animations/package.json | 30 +++++------ .../line-chart-with-annotations/package.json | 30 +++++------ .../line-chart-with-legend/package.json | 30 +++++------ .../marker-options/package.json | 34 ++++++------ .../marker-templates/package.json | 30 +++++------ .../category-chart/overview/package.json | 30 +++++------ .../point-chart-multiple-sources/package.json | 30 +++++------ .../point-chart-single-source/package.json | 30 +++++------ .../point-chart-styling/package.json | 30 +++++------ .../selection-modes/package.json | 30 +++++------ .../selection-multiple-modes/package.json | 34 ++++++------ .../spline-area-multiple-sources/package.json | 30 +++++------ .../spline-area-single-source/package.json | 30 +++++------ .../spline-area-styling/package.json | 30 +++++------ .../spline-multiple-sources/package.json | 30 +++++------ .../spline-single-source/package.json | 30 +++++------ .../spline-styling/package.json | 30 +++++------ .../category-chart/stack-columns/package.json | 30 +++++------ .../step-area-multiple-sources/package.json | 30 +++++------ .../step-area-single-source/package.json | 30 +++++------ .../step-area-styling/package.json | 30 +++++------ .../step-line-multiple-sources/package.json | 30 +++++------ .../step-line-single-source/package.json | 30 +++++------ .../step-line-styling/package.json | 30 +++++------ .../tooltip-template/package.json | 30 +++++------ .../category-chart/tooltip-types/package.json | 30 +++++------ .../category-chart/trendline/package.json | 30 +++++------ .../category-chart/value-lines/package.json | 34 ++++++------ .../chart-dashboard/package.json | 40 +++++++------- .../financial-dashboard/package.json | 40 +++++++------- .../gauge-dashboard/package.json | 40 +++++++------- .../dashboard-tile/map-dashboard/package.json | 40 +++++++------- .../dashboard-tile/pie-dashboard/package.json | 40 +++++++------- .../annotations-custom/package.json | 30 +++++------ .../package.json | 30 +++++------ .../data-chart/axis-annotations/package.json | 30 +++++------ .../data-chart/axis-crossing/package.json | 30 +++++------ .../axis-label-rotation/package.json | 34 ++++++------ .../data-chart/axis-locations/package.json | 30 +++++------ .../data-chart/axis-min-max-gap/package.json | 30 +++++------ .../data-chart/axis-settings/package.json | 30 +++++------ .../data-chart/axis-sharing/package.json | 30 +++++------ .../charts/data-chart/axis-types/package.json | 30 +++++------ .../bar-chart-multiple-sources/package.json | 30 +++++------ .../bar-chart-overlapping/package.json | 30 +++++------ .../bar-chart-single-source/package.json | 30 +++++------ .../data-chart/bar-chart-styling/package.json | 30 +++++------ .../callout-layer-styling/package.json | 30 +++++------ .../package.json | 34 ++++++------ .../package.json | 34 ++++++------ .../chart-highlight-filter/package.json | 34 ++++++------ .../data-chart/chart-navigation/package.json | 30 +++++------ .../data-chart/chart-overview/package.json | 30 +++++------ .../data-chart/chart-performance/package.json | 30 +++++------ .../chart-synchronization/package.json | 30 +++++------ .../data-chart/chart-titles/package.json | 30 +++++------ .../column-chart-styling/package.json | 30 +++++------ .../data-chart/composite-chart/package.json | 30 +++++------ .../crosshair-layer-styling/package.json | 30 +++++------ .../custom-drawing-annotations/package.json | 34 ++++++------ .../custom-editing-data/package.json | 30 +++++------ .../data-chart/dash-array-axes/package.json | 30 +++++------ .../data-chart/dash-array-series/package.json | 30 +++++------ .../dash-array-tickmarks/package.json | 30 +++++------ .../dash-array-trendline/package.json | 30 +++++------ .../package.json | 30 +++++------ .../data-legend-grouping/package.json | 30 +++++------ .../data-legend-styling/package.json | 30 +++++------ .../data-chart/data-legend/package.json | 30 +++++------ .../package.json | 34 ++++++------ .../data-tooltip-grouping/package.json | 34 ++++++------ .../data-tooltip-styling/package.json | 34 ++++++------ .../data-chart/data-tooltip/package.json | 30 +++++------ .../final-value-layer-styling/package.json | 30 +++++------ .../financial-price-series/package.json | 30 +++++------ .../data-chart/format-specifiers/package.json | 30 +++++------ .../charts/data-chart/legends/package.json | 30 +++++------ .../polar-area-chart-styling/package.json | 30 +++++------ .../data-chart/polar-area-chart/package.json | 30 +++++------ .../data-chart/polar-chart-types/package.json | 30 +++++------ .../data-chart/polar-line-chart/package.json | 30 +++++------ .../polar-scatter-chart/package.json | 30 +++++------ .../polar-spline-area-chart/package.json | 30 +++++------ .../polar-spline-chart/package.json | 30 +++++------ .../radial-area-chart-styling/package.json | 30 +++++------ .../data-chart/radial-area-chart/package.json | 30 +++++------ .../radial-chart-types/package.json | 30 +++++------ .../package.json | 30 +++++------ .../radial-column-chart/package.json | 30 +++++------ .../data-chart/radial-label-mode/package.json | 34 ++++++------ .../data-chart/radial-line-chart/package.json | 30 +++++------ .../data-chart/radial-pie-chart/package.json | 30 +++++------ .../package.json | 30 +++++------ .../package.json | 30 +++++------ .../data-chart/range-area-chart/package.json | 30 +++++------ .../range-column-chart/package.json | 30 +++++------ .../package.json | 30 +++++------ .../package.json | 30 +++++------ .../package.json | 30 +++++------ .../scatter-bubble-chart-styling/package.json | 30 +++++------ .../scatter-line-chart/package.json | 30 +++++------ .../scatter-point-chart/package.json | 30 +++++------ .../scatter-spline-chart/package.json | 30 +++++------ .../data-chart/series-animations/package.json | 30 +++++------ .../series-annotations/package.json | 30 +++++------ .../series-highlighting/package.json | 30 +++++------ .../series-marker-template/package.json | 30 +++++------ .../data-chart/series-markers/package.json | 30 +++++------ .../data-chart/series-tooltips/package.json | 30 +++++------ .../data-chart/series-trendlines/package.json | 30 +++++------ .../series-value-overlay/package.json | 30 +++++------ .../stacked-100-area-chart/package.json | 30 +++++------ .../stacked-100-bar-chart/package.json | 30 +++++------ .../stacked-100-column-chart/package.json | 30 +++++------ .../stacked-100-line-chart/package.json | 30 +++++------ .../package.json | 30 +++++------ .../stacked-100-spline-chart/package.json | 30 +++++------ .../stacked-area-chart/package.json | 30 +++++------ .../data-chart/stacked-bar-chart/package.json | 30 +++++------ .../stacked-chart-types/package.json | 30 +++++------ .../stacked-column-chart/package.json | 30 +++++------ .../stacked-line-chart/package.json | 30 +++++------ .../stacked-spline-area-chart/package.json | 30 +++++------ .../stacked-spline-chart/package.json | 30 +++++------ .../data-chart/tooltip-template/package.json | 30 +++++------ .../data-chart/transition-event/package.json | 34 ++++++------ .../type-category-area-series/package.json | 30 +++++------ .../type-category-bar-series/package.json | 30 +++++------ .../type-category-column-series/package.json | 30 +++++------ .../type-category-line-series/package.json | 30 +++++------ .../type-category-point-series/package.json | 30 +++++------ .../type-category-series/package.json | 30 +++++------ .../package.json | 30 +++++------ .../type-category-spline-series/package.json | 30 +++++------ .../package.json | 30 +++++------ .../package.json | 30 +++++------ .../package.json | 30 +++++------ .../package.json | 30 +++++------ .../package.json | 30 +++++------ .../package.json | 30 +++++------ .../package.json | 30 +++++------ .../type-financial-ohlc-series/package.json | 30 +++++------ .../type-financial-overlays/package.json | 30 +++++------ .../type-financial-series/package.json | 30 +++++------ .../type-radial-area-series/package.json | 30 +++++------ .../type-radial-column-series/package.json | 30 +++++------ .../type-radial-line-series/package.json | 30 +++++------ .../type-radial-pie-series/package.json | 30 +++++------ .../type-range-area-series/package.json | 30 +++++------ .../type-range-column-series/package.json | 30 +++++------ .../data-chart/type-range-series/package.json | 30 +++++------ .../type-scatter-area-series/package.json | 30 +++++------ .../type-scatter-bubble-series/package.json | 30 +++++------ .../type-scatter-contour-series/package.json | 30 +++++------ .../type-scatter-hd-series/package.json | 30 +++++------ .../type-scatter-line-series/package.json | 30 +++++------ .../type-scatter-point-series/package.json | 30 +++++------ .../type-scatter-polygon-series/package.json | 30 +++++------ .../type-scatter-polyline-series/package.json | 30 +++++------ .../type-scatter-series/package.json | 30 +++++------ .../type-scatter-spline-series/package.json | 30 +++++------ .../data-chart/type-shape-series/package.json | 30 +++++------ .../type-stacked-100-area-series/package.json | 30 +++++------ .../type-stacked-100-bar-series/package.json | 30 +++++------ .../package.json | 30 +++++------ .../type-stacked-100-line-series/package.json | 30 +++++------ .../package.json | 30 +++++------ .../package.json | 30 +++++------ .../type-stacked-area-series/package.json | 30 +++++------ .../type-stacked-bar-series/package.json | 30 +++++------ .../type-stacked-column-series/package.json | 30 +++++------ .../type-stacked-line-series/package.json | 30 +++++------ .../package.json | 30 +++++------ .../type-stacked-spline-series/package.json | 30 +++++------ .../data-chart/waterfall-chart/package.json | 30 +++++------ .../data-pie-chart/animation/package.json | 34 ++++++------ .../highlight-filter/package.json | 30 +++++------ .../data-pie-chart/highlighting/package.json | 34 ++++++------ .../charts/data-pie-chart/legend/package.json | 34 ++++++------ .../charts/data-pie-chart/others/package.json | 34 ++++++------ .../data-pie-chart/overview/package.json | 30 +++++------ .../data-pie-chart/selection/package.json | 34 ++++++------ .../doughnut-chart/animation/package.json | 30 +++++------ .../doughnut-chart/explosion/package.json | 30 +++++------ .../charts/doughnut-chart/legend/package.json | 30 +++++------ .../doughnut-chart/overview/package.json | 30 +++++------ .../charts/doughnut-chart/rings/package.json | 30 +++++------ .../doughnut-chart/selection/package.json | 30 +++++------ .../financial-chart/annotations/package.json | 30 +++++------ .../financial-chart/axis-types/package.json | 30 +++++------ .../package.json | 30 +++++------ .../data-legend-styling-props/package.json | 30 +++++------ .../financial-chart/data-legend/package.json | 30 +++++------ .../package.json | 30 +++++------ .../data-tooltip-styling-props/package.json | 30 +++++------ .../financial-chart/data-tooltip/package.json | 30 +++++------ .../format-specifiers/package.json | 30 +++++------ .../high-frequency/package.json | 30 +++++------ .../financial-chart/high-volume/package.json | 30 +++++------ .../indicator-customization/package.json | 30 +++++------ .../indicator-types/package.json | 30 +++++------ .../multiple-data/package.json | 30 +++++------ .../multiple-feeds/package.json | 30 +++++------ .../financial-chart/overview/package.json | 30 +++++------ .../charts/financial-chart/panes/package.json | 30 +++++------ .../financial-chart/performance/package.json | 30 +++++------ .../financial-chart/scrollbars/package.json | 30 +++++------ .../stock-index-chart/package.json | 30 +++++------ .../financial-chart/styling/package.json | 30 +++++------ .../financial-chart/theming/package.json | 30 +++++------ .../time-based-data/package.json | 30 +++++------ .../financial-chart/titles/package.json | 30 +++++------ .../tooltip-template/package.json | 30 +++++------ .../tooltip-types/package.json | 30 +++++------ .../financial-chart/trendlines/package.json | 30 +++++------ .../financial-chart/volume-types/package.json | 30 +++++------ .../charts/pie-chart/animation/package.json | 30 +++++------ .../charts/pie-chart/explosion/package.json | 30 +++++------ samples/charts/pie-chart/legend/package.json | 30 +++++------ samples/charts/pie-chart/others/package.json | 30 +++++------ .../charts/pie-chart/overview/package.json | 30 +++++------ .../charts/pie-chart/selection/package.json | 30 +++++------ samples/charts/pie-chart/styling/package.json | 30 +++++------ .../sparkline/display-area/package.json | 30 +++++------ .../sparkline/display-column/package.json | 30 +++++------ .../sparkline/display-lines/package.json | 34 ++++++------ .../sparkline/display-types/package.json | 30 +++++------ .../sparkline/display-winloss/package.json | 30 +++++------ samples/charts/sparkline/grid/package.json | 34 ++++++------ samples/charts/sparkline/markers/package.json | 34 ++++++------ .../sparkline/normal-range/package.json | 34 ++++++------ .../charts/sparkline/trendlines/package.json | 34 ++++++------ .../sparkline/unknown-values/package.json | 34 ++++++------ .../package.json | 34 ++++++------ .../actions-built-in-data-chart/package.json | 34 ++++++------ .../toolbar/color-editor-support/package.json | 34 ++++++------ .../charts/toolbar/custom-tool/package.json | 34 ++++++------ .../package.json | 34 ++++++------ .../package.json | 34 ++++++------ samples/charts/toolbar/theming/package.json | 34 ++++++------ samples/charts/tree-map/events/package.json | 32 ++++++------ .../highlighting-percent-based/package.json | 30 +++++------ .../charts/tree-map/highlighting/package.json | 34 ++++++------ samples/charts/tree-map/layout/package.json | 34 ++++++------ samples/charts/tree-map/overview/package.json | 30 +++++------ samples/charts/tree-map/styling/package.json | 30 +++++------ .../charts/zoomslider/overview/package.json | 30 +++++------ .../operations-on-workbooks/package.json | 32 ++++++------ .../operations-on-worksheets/package.json | 30 +++++------ .../excel/excel-library/overview/package.json | 30 +++++------ .../working-with-cells/package.json | 30 +++++------ .../working-with-charts/package.json | 34 ++++++------ .../working-with-sparklines/package.json | 34 ++++++------ .../working-with-tables/package.json | 34 ++++++------ .../excel/spreadsheet/activation/package.json | 32 ++++++------ .../spreadsheet/adapter-chart/package.json | 36 ++++++------- .../spreadsheet/adapter-combo/package.json | 36 ++++++------- .../excel/spreadsheet/clipboard/package.json | 32 ++++++------ .../excel/spreadsheet/commands/package.json | 32 ++++++------ .../conditional-formatting/package.json | 32 ++++++------ .../spreadsheet/config-options/package.json | 32 ++++++------ .../spreadsheet/data-validation/package.json | 32 ++++++------ .../excel/spreadsheet/hyperlinks/package.json | 32 ++++++------ .../excel/spreadsheet/overview/package.json | 32 ++++++------ .../bullet-graph/animation/package.json | 32 ++++++------ .../bullet-graph/background/package.json | 30 +++++------ .../highlight-needle/package.json | 30 +++++------ .../gauges/bullet-graph/labels/package.json | 30 +++++------ .../gauges/bullet-graph/measures/package.json | 30 +++++------ .../gauges/bullet-graph/ranges/package.json | 30 +++++------ .../gauges/bullet-graph/scale/package.json | 30 +++++------ .../bullet-graph/tickmarks/package.json | 30 +++++------ .../linear-gauge/animation/package.json | 32 ++++++------ .../gauges/linear-gauge/backing/package.json | 30 +++++------ .../highlight-needle/package.json | 30 +++++------ .../gauges/linear-gauge/labels/package.json | 30 +++++------ .../gauges/linear-gauge/needle/package.json | 30 +++++------ .../gauges/linear-gauge/ranges/package.json | 30 +++++------ .../gauges/linear-gauge/scale/package.json | 30 +++++------ .../linear-gauge/tickmarks/package.json | 30 +++++------ .../radial-gauge/animation/package.json | 32 ++++++------ .../gauges/radial-gauge/backing/package.json | 30 +++++------ .../highlight-needle/package.json | 30 +++++------ .../gauges/radial-gauge/labels/package.json | 30 +++++------ .../gauges/radial-gauge/needle/package.json | 30 +++++------ .../radial-gauge/optical-scaling/package.json | 30 +++++------ .../gauges/radial-gauge/ranges/package.json | 30 +++++------ .../gauges/radial-gauge/scale/package.json | 30 +++++------ .../radial-gauge/tickmarks/package.json | 30 +++++------ .../inputs/color-editor/overview/package.json | 30 +++++------ .../geo-map/binding-data-csv/package.json | 32 ++++++------ .../binding-data-json-points/package.json | 32 ++++++------ .../geo-map/binding-data-model/package.json | 32 ++++++------ .../binding-multiple-shapes/package.json | 32 ++++++------ .../binding-multiple-sources/package.json | 32 ++++++------ .../geo-map/binding-shp-points/package.json | 32 ++++++------ .../geo-map/binding-shp-polygons/package.json | 32 ++++++------ .../binding-shp-polylines/package.json | 32 ++++++------ .../maps/geo-map/custom-tooltips/package.json | 32 ++++++------ .../geo-map/display-bing-imagery/package.json | 32 ++++++------ .../geo-map/display-esri-imagery/package.json | 32 ++++++------ .../geo-map/display-heat-imagery/package.json | 32 ++++++------ .../geo-map/display-osm-imagery/package.json | 32 ++++++------ .../maps/geo-map/marker-layouts/package.json | 32 ++++++------ .../maps/geo-map/marker-template/package.json | 32 ++++++------ samples/maps/geo-map/marker-type/package.json | 32 ++++++------ samples/maps/geo-map/navigation/package.json | 32 ++++++------ samples/maps/geo-map/overview/package.json | 32 ++++++------ .../maps/geo-map/shape-styling/package.json | 32 ++++++------ .../geo-map/triangulating-data/package.json | 32 ++++++------ .../type-scatter-area-series/package.json | 32 ++++++------ .../type-scatter-bubble-series/package.json | 32 ++++++------ .../type-scatter-contour-series/package.json | 32 ++++++------ .../type-scatter-density-series/package.json | 32 ++++++------ .../type-scatter-symbol-series/package.json | 32 ++++++------ .../type-shape-polygon-series/package.json | 32 ++++++------ .../type-shape-polyline-series/package.json | 32 ++++++------ 363 files changed, 5640 insertions(+), 5640 deletions(-) diff --git a/browser/package.json b/browser/package.json index 68b86a1f9..7e9dbeef6 100644 --- a/browser/package.json +++ b/browser/package.json @@ -39,17 +39,17 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "19.0.3", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-dashboards": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-dashboards": "18.2.0", + "igniteui-angular-excel": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "igniteui-angular-grids": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", - "igniteui-angular-spreadsheet": "18.2.0-beta.1", - "igniteui-angular-spreadsheet-chart-adapter": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-maps": "18.2.0", + "igniteui-angular-spreadsheet": "18.2.0", + "igniteui-angular-spreadsheet-chart-adapter": "18.2.0", "igniteui-theming": "14.3.0", "igniteui-webcomponents": "5.1.2", "immediate": "3.2.3", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 1d6b2ef3c..8cc851dbe 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1073,28 +1073,28 @@ function updateIG(cb) { // { version: "14.1.0", name: "igniteui-angular-charts" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { version: "18.2.0-beta.1", name: "igniteui-angular-core" }, - { version: "18.2.0-beta.1", name: "igniteui-angular-charts" }, - { version: "18.2.0-beta.1", name: "igniteui-angular-excel" }, - { version: "18.2.0-beta.1", name: "igniteui-angular-gauges" }, - { version: "18.2.0-beta.1", name: "igniteui-angular-inputs" }, - { version: "18.2.0-beta.1", name: "igniteui-angular-layouts" }, - { version: "18.2.0-beta.1", name: "igniteui-angular-maps" }, - { version: "18.2.0-beta.1", name: "igniteui-angular-spreadsheet-chart-adapter" }, - { version: "18.2.0-beta.1", name: "igniteui-angular-spreadsheet" }, - { version: "18.2.0-beta.1", name: "igniteui-angular-datasources" }, - { version: "18.2.0-beta.1", name: "igniteui-angular-dashboards" }, + { version: "18.2.0", name: "igniteui-angular-core" }, + { version: "18.2.0", name: "igniteui-angular-charts" }, + { version: "18.2.0", name: "igniteui-angular-excel" }, + { version: "18.2.0", name: "igniteui-angular-gauges" }, + { version: "18.2.0", name: "igniteui-angular-inputs" }, + { version: "18.2.0", name: "igniteui-angular-layouts" }, + { version: "18.2.0", name: "igniteui-angular-maps" }, + { version: "18.2.0", name: "igniteui-angular-spreadsheet-chart-adapter" }, + { version: "18.2.0", name: "igniteui-angular-spreadsheet" }, + { version: "18.2.0", name: "igniteui-angular-datasources" }, + { version: "18.2.0", name: "igniteui-angular-dashboards" }, // these IG packages are sometimes updated: { version: "5.1.2" , name: "igniteui-webcomponents" }, - { version: "11.0.0", name: "igniteui-theming" }, - { version: "19.0.2", name: "igniteui-angular" }, - { version: "18.2.1", name: "@angular/animations" }, - { version: "18.2.1", name: "@angular/common" }, - { version: "18.2.1", name: "@angular/compiler" }, - { version: "18.2.1", name: "@angular/core" }, - { version: "18.2.1", name: "@angular/forms" }, - { version: "18.2.1", name: "@angular/platform-browser" }, - { version: "18.2.1", name: "@angular/platform-browser-dynamic" }, + { version: "14.3.0", name: "igniteui-theming" }, + { version: "19.0.3", name: "igniteui-angular" }, + { version: "19.0.4", name: "@angular/animations" }, + { version: "19.0.4", name: "@angular/common" }, + { version: "19.0.4", name: "@angular/compiler" }, + { version: "19.0.4", name: "@angular/core" }, + { version: "19.0.4", name: "@angular/forms" }, + { version: "19.0.4", name: "@angular/platform-browser" }, + { version: "19.0.4", name: "@angular/platform-browser-dynamic" }, { version: "2.0.40", name: "@types/hammerjs" }, { version: "1.1.20150312", name: "classlist-js" }, { version: "3.21.0" , name: "core-js" }, @@ -1104,12 +1104,12 @@ function updateIG(cb) { { version: "7.8.1" , name: "rxjs" }, { version: "2.6.1" , name: "tslib" }, { version: "2.3.2" , name: "web-animations-js", }, - { version: "~0.14.4", name: "zone.js" }, + { version: "~0.15.0", name: "zone.js" }, // dev packages: - { version: "18.2.1" , name: "@angular/cli" }, - { version: "18.2.1" , name: "@angular/compiler-cli" }, - { version: "18.2.1" , name: "@angular/language-service" }, - { version: "18.2.1" , name: "@angular-devkit/build-angular" }, + { version: "19.0.4" , name: "@angular/cli" }, + { version: "19.0.4" , name: "@angular/compiler-cli" }, + { version: "19.0.4" , name: "@angular/language-service" }, + { version: "19.0.4" , name: "@angular-devkit/build-angular" }, { version: "18.17.0", name: "@types/node" }, { version: "6.0.2" , name: "codelyzer" }, { version: "5.1.1" , name: "jasmine-core" }, @@ -1117,7 +1117,7 @@ function updateIG(cb) { { version: "0.11.1" , name: "sass.js" }, { version: "~6.1.3" , name: "tslint" }, { version: "10.9.1" , name: "ts-node" }, - { version: "5.5.4" , name: "typescript" }, + { version: "5.6.3" , name: "typescript" }, ]; // NOTE you can comment out strings in this array to run these function only on a subset of samples diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 0b236f859..162ba70b2 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index d551358b9..988ef699e 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.2", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular": "19.0.3", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index d551358b9..988ef699e 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.2", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular": "19.0.3", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index 1f5231456..14eb49983 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -7,36 +7,36 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-dashboards": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-dashboards": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "igniteui-angular-grids": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index 1f5231456..14eb49983 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -7,36 +7,36 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-dashboards": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-dashboards": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "igniteui-angular-grids": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index 1f5231456..14eb49983 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -7,36 +7,36 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-dashboards": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-dashboards": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "igniteui-angular-grids": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index 1f5231456..14eb49983 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -7,36 +7,36 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-dashboards": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-dashboards": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "igniteui-angular-grids": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index 1f5231456..14eb49983 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -7,36 +7,36 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-dashboards": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-dashboards": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "igniteui-angular-grids": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 6dd878d34..7b8a694fe 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index 0b236f859..162ba70b2 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index 0b236f859..162ba70b2 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index 0b236f859..162ba70b2 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index 0b236f859..162ba70b2 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 0b236f859..162ba70b2 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 0048a171e..4646d5728 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.2", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-theming": "11.0.0", + "igniteui-angular": "19.0.3", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-theming": "14.3.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 0b236f859..162ba70b2 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 0b236f859..162ba70b2 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json index 0b236f859..162ba70b2 100644 --- a/samples/charts/toolbar/color-editor-support/package.json +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 0b236f859..162ba70b2 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 0b236f859..162ba70b2 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 0b236f859..162ba70b2 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index d551358b9..988ef699e 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.2", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular": "19.0.3", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 402d837a7..94cc4a90f 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", - "igniteui-angular-layouts": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-layouts": "18.2.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 150f8abd4..70f510a25 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 389a46e3a..058f07c19 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 00350e25d..6abd38962 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.2", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular": "19.0.3", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-excel": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 2fa07fa50..e623cda77 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-excel": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 2fa07fa50..e623cda77 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-excel": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 2fa07fa50..e623cda77 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -7,33 +7,33 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-excel": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 5a035471c..7af8cd6d9 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -7,35 +7,35 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.2", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular": "19.0.3", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-excel": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -43,6 +43,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 5a035471c..7af8cd6d9 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -7,35 +7,35 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.2", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", + "igniteui-angular": "19.0.3", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-excel": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -43,6 +43,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index e64575926..017c6c8ef 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -7,35 +7,35 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", - "igniteui-angular-spreadsheet": "18.2.0-beta.1", - "igniteui-angular-spreadsheet-chart-adapter": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-excel": "18.2.0", + "igniteui-angular-spreadsheet": "18.2.0", + "igniteui-angular-spreadsheet-chart-adapter": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -43,6 +43,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 7e8e821c3..23e0b0c37 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", - "igniteui-angular-spreadsheet": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-excel": "18.2.0", + "igniteui-angular-spreadsheet": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index f39e19828..d1f1d8a54 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -7,36 +7,36 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", - "igniteui-angular-spreadsheet": "18.2.0-beta.1", - "igniteui-angular-spreadsheet-chart-adapter": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-excel": "18.2.0", + "igniteui-angular-spreadsheet": "18.2.0", + "igniteui-angular-spreadsheet-chart-adapter": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index f39e19828..d1f1d8a54 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -7,36 +7,36 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", - "igniteui-angular-spreadsheet": "18.2.0-beta.1", - "igniteui-angular-spreadsheet-chart-adapter": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-excel": "18.2.0", + "igniteui-angular-spreadsheet": "18.2.0", + "igniteui-angular-spreadsheet-chart-adapter": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index 7e8e821c3..23e0b0c37 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", - "igniteui-angular-spreadsheet": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-excel": "18.2.0", + "igniteui-angular-spreadsheet": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 7e8e821c3..23e0b0c37 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", - "igniteui-angular-spreadsheet": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-excel": "18.2.0", + "igniteui-angular-spreadsheet": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index 7e8e821c3..23e0b0c37 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", - "igniteui-angular-spreadsheet": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-excel": "18.2.0", + "igniteui-angular-spreadsheet": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 7e8e821c3..23e0b0c37 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", - "igniteui-angular-spreadsheet": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-excel": "18.2.0", + "igniteui-angular-spreadsheet": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 7e8e821c3..23e0b0c37 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", - "igniteui-angular-spreadsheet": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-excel": "18.2.0", + "igniteui-angular-spreadsheet": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 7e8e821c3..23e0b0c37 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", - "igniteui-angular-spreadsheet": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-excel": "18.2.0", + "igniteui-angular-spreadsheet": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index 7e8e821c3..23e0b0c37 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -7,34 +7,34 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-excel": "18.2.0-beta.1", - "igniteui-angular-spreadsheet": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-excel": "18.2.0", + "igniteui-angular-spreadsheet": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 99032bdf1..92aa9e1ba 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.2", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular": "19.0.3", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 99032bdf1..92aa9e1ba 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.2", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular": "19.0.3", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 99032bdf1..92aa9e1ba 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.2", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular": "19.0.3", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 56df17a5c..67168ff47 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -7,31 +7,31 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-gauges": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-gauges": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json index 0fc94a5d2..498b1526f 100644 --- a/samples/inputs/color-editor/overview/package.json +++ b/samples/inputs/color-editor/overview/package.json @@ -7,30 +7,30 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-inputs": "18.2.0-beta.1", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-inputs": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", - "@angular-devkit/build-angular": "18.2.1", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 26166b12d..66c8f6a5e 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -7,32 +7,32 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "18.2.1", - "@angular/common": "18.2.1", - "@angular/compiler": "18.2.1", - "@angular/core": "18.2.1", - "@angular/forms": "18.2.1", - "@angular/platform-browser": "18.2.1", - "@angular/platform-browser-dynamic": "18.2.1", + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0-beta.1", - "igniteui-angular-core": "18.2.0-beta.1", - "igniteui-angular-maps": "18.2.0-beta.1", + "igniteui-angular-charts": "18.2.0", + "igniteui-angular-core": "18.2.0", + "igniteui-angular-maps": "18.2.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", "tslib": "2.6.1", "web-animations-js": "2.3.2", - "zone.js": "~0.14.4" + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "18.2.1", - "@angular/cli": "18.2.1", - "@angular/compiler-cli": "18.2.1", - "@angular/language-service": "18.2.1", + "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.5.4" + "typescript": "5.6.3" } } From f7c02a2bbdb46d0b7a4518d245994ef64d066155 Mon Sep 17 00:00:00 2001 From: mtrela Date: Thu, 19 Dec 2024 11:11:04 -0500 Subject: [PATCH 123/154] IG grids v18.2.0 --- browser/package.json | 2 +- browser/scripts/browser.js | 1 + samples/charts/dashboard-tile/chart-dashboard/package.json | 2 +- samples/charts/dashboard-tile/financial-dashboard/package.json | 2 +- samples/charts/dashboard-tile/gauge-dashboard/package.json | 2 +- samples/charts/dashboard-tile/map-dashboard/package.json | 2 +- samples/charts/dashboard-tile/pie-dashboard/package.json | 2 +- 7 files changed, 7 insertions(+), 6 deletions(-) diff --git a/browser/package.json b/browser/package.json index 7e9dbeef6..6a5e5fff4 100644 --- a/browser/package.json +++ b/browser/package.json @@ -44,7 +44,7 @@ "igniteui-angular-dashboards": "18.2.0", "igniteui-angular-excel": "18.2.0", "igniteui-angular-gauges": "18.2.0", - "igniteui-angular-grids": "18.2.0-beta.1", + "igniteui-angular-grids": "18.2.0", "igniteui-angular-inputs": "18.2.0", "igniteui-angular-layouts": "18.2.0", "igniteui-angular-maps": "18.2.0", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 8cc851dbe..995fecd4e 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1077,6 +1077,7 @@ function updateIG(cb) { { version: "18.2.0", name: "igniteui-angular-charts" }, { version: "18.2.0", name: "igniteui-angular-excel" }, { version: "18.2.0", name: "igniteui-angular-gauges" }, + { version: "18.2.0", name: "igniteui-angular-grids" }, { version: "18.2.0", name: "igniteui-angular-inputs" }, { version: "18.2.0", name: "igniteui-angular-layouts" }, { version: "18.2.0", name: "igniteui-angular-maps" }, diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index 14eb49983..ce1b44132 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.2.0", "igniteui-angular-dashboards": "18.2.0", "igniteui-angular-gauges": "18.2.0", - "igniteui-angular-grids": "18.2.0-beta.1", + "igniteui-angular-grids": "18.2.0", "igniteui-angular-inputs": "18.2.0", "igniteui-angular-layouts": "18.2.0", "igniteui-angular-maps": "18.2.0", diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index 14eb49983..ce1b44132 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.2.0", "igniteui-angular-dashboards": "18.2.0", "igniteui-angular-gauges": "18.2.0", - "igniteui-angular-grids": "18.2.0-beta.1", + "igniteui-angular-grids": "18.2.0", "igniteui-angular-inputs": "18.2.0", "igniteui-angular-layouts": "18.2.0", "igniteui-angular-maps": "18.2.0", diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index 14eb49983..ce1b44132 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.2.0", "igniteui-angular-dashboards": "18.2.0", "igniteui-angular-gauges": "18.2.0", - "igniteui-angular-grids": "18.2.0-beta.1", + "igniteui-angular-grids": "18.2.0", "igniteui-angular-inputs": "18.2.0", "igniteui-angular-layouts": "18.2.0", "igniteui-angular-maps": "18.2.0", diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index 14eb49983..ce1b44132 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.2.0", "igniteui-angular-dashboards": "18.2.0", "igniteui-angular-gauges": "18.2.0", - "igniteui-angular-grids": "18.2.0-beta.1", + "igniteui-angular-grids": "18.2.0", "igniteui-angular-inputs": "18.2.0", "igniteui-angular-layouts": "18.2.0", "igniteui-angular-maps": "18.2.0", diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index 14eb49983..ce1b44132 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "18.2.0", "igniteui-angular-dashboards": "18.2.0", "igniteui-angular-gauges": "18.2.0", - "igniteui-angular-grids": "18.2.0-beta.1", + "igniteui-angular-grids": "18.2.0", "igniteui-angular-inputs": "18.2.0", "igniteui-angular-layouts": "18.2.0", "igniteui-angular-maps": "18.2.0", From 98f472acba94dab095d9fd37e6f85219629644be Mon Sep 17 00:00:00 2001 From: Borislav Traykov Date: Tue, 7 Jan 2025 10:32:04 +0200 Subject: [PATCH 124/154] Update output dir as per Angular 19 changes (#272) --- azure-pipelines/build-pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines/build-pipeline.yml b/azure-pipelines/build-pipeline.yml index 50ced6c96..5bfb47bf0 100644 --- a/azure-pipelines/build-pipeline.yml +++ b/azure-pipelines/build-pipeline.yml @@ -65,12 +65,12 @@ jobs: inputs: SourceFolder: '$(Build.SourcesDirectory)\browser' Contents: 'web.config' - TargetFolder: '$(Build.SourcesDirectory)\browser\dist' + TargetFolder: '$(Build.SourcesDirectory)\dist\browser' OverWrite: true - task: PublishPipelineArtifact@1 inputs: - targetPath: '$(Build.SourcesDirectory)\browser\dist' + targetPath: '$(Build.SourcesDirectory)\dist\browser' artifact: 'dist' publishLocation: 'pipeline' From 9293477cec792096e75ba034f526df64d3b6b6b0 Mon Sep 17 00:00:00 2001 From: Borislav Traykov Date: Tue, 7 Jan 2025 18:50:26 +0200 Subject: [PATCH 125/154] Fix output dir again (#273) * Fix output dir again * Update build-pipeline.yml for Azure Pipelines --- azure-pipelines/build-pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines/build-pipeline.yml b/azure-pipelines/build-pipeline.yml index 5bfb47bf0..b88100012 100644 --- a/azure-pipelines/build-pipeline.yml +++ b/azure-pipelines/build-pipeline.yml @@ -65,12 +65,12 @@ jobs: inputs: SourceFolder: '$(Build.SourcesDirectory)\browser' Contents: 'web.config' - TargetFolder: '$(Build.SourcesDirectory)\dist\browser' + TargetFolder: '$(Build.SourcesDirectory)\browser\dist\browser' OverWrite: true - task: PublishPipelineArtifact@1 inputs: - targetPath: '$(Build.SourcesDirectory)\dist\browser' + targetPath: '$(Build.SourcesDirectory)\browser\dist\browser' artifact: 'dist' publishLocation: 'pipeline' From cae4ef7f5899261210ed6db913a9a48a6c4ae60a Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Thu, 9 Jan 2025 14:38:53 -0500 Subject: [PATCH 126/154] Adding changes from build igniteui-xplat-examples-output+PRs_2024.12.19.3 (#271) Co-authored-by: tfsbuild --- .../scatter-bubble-chart-fill-scale/src/app.component.html | 1 - .../scatter-bubble-chart-multiple-sources/src/app.component.html | 1 - .../scatter-bubble-chart-single-source/src/app.component.html | 1 - .../scatter-bubble-chart-styling/src/app.component.html | 1 - 4 files changed, 4 deletions(-) diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html index 37a936b2c..8f7ee8b18 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html @@ -62,7 +62,6 @@ unitsTextMarginRight="5" valueTextMarginLeft="10" labelTextMarginLeft="1" - groupingMode="Grouped" layoutMode="Vertical" badgeShape="Hidden" includedColumns="X, Y, Radius" diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html index 4c7a85efe..5d0fe86a2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/app.component.html @@ -78,7 +78,6 @@ unitsTextMarginRight="5" valueTextMarginLeft="10" labelTextMarginLeft="1" - groupingMode="Grouped" layoutMode="Vertical"> diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html index 7987c97d6..ade52afb6 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/app.component.html @@ -56,7 +56,6 @@ unitsTextMarginRight="5" valueTextMarginLeft="10" labelTextMarginLeft="1" - groupingMode="Grouped" layoutMode="Vertical" badgeShape="Hidden" headerRowVisible="false"> diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html index d2dee2971..0fdc9400f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/app.component.html @@ -60,7 +60,6 @@ unitsTextMarginRight="5" valueTextMarginLeft="10" labelTextMarginLeft="1" - groupingMode="Grouped" layoutMode="Vertical" badgeShape="Hidden" includedColumns="X, Y, Radius" From 1f0d30a9b9fb1b9d3b3491b95442c948ed28ef95 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Thu, 23 Jan 2025 14:55:27 -0500 Subject: [PATCH 127/154] mdd-update-19.0.0 (#274) mdd-update-19.0.0 --- browser/package.json | 22 ++++++++--------- browser/scripts/browser.js | 24 +++++++++---------- browser/src/browser-info.json | 22 ++++++++--------- .../annotations-all/package.json | 8 +++---- .../annotations-callouts/package.json | 8 +++---- .../annotations-crosshairs/package.json | 8 +++---- .../annotations-custom/package.json | 8 +++---- .../annotations-final-value/package.json | 8 +++---- .../annotations-highlighting/package.json | 8 +++---- .../category-chart/annotations/package.json | 4 ++-- .../area-chart-multiple-sources/package.json | 4 ++-- .../area-chart-single-source/package.json | 4 ++-- .../area-chart-styling/package.json | 4 ++-- .../category-chart/axis-gap/package.json | 8 +++---- .../axis-gridlines/package.json | 8 +++---- .../category-chart/axis-inverted/package.json | 8 +++---- .../category-chart/axis-labels/package.json | 8 +++---- .../axis-locations/package.json | 8 +++---- .../category-chart/axis-options/package.json | 4 ++-- .../category-chart/axis-overlap/package.json | 8 +++---- .../category-chart/axis-range/package.json | 8 +++---- .../axis-tickmarks/package.json | 8 +++---- .../category-chart/axis-titles/package.json | 4 ++-- .../chart-highlight-filter/package.json | 8 +++---- .../package.json | 4 ++-- .../column-chart-single-source/package.json | 4 ++-- .../column-chart-styling/package.json | 4 ++-- .../package.json | 4 ++-- .../column-chart-with-tooltips/package.json | 8 +++---- .../custom-selection/package.json | 4 ++-- .../data-aggregations/package.json | 8 +++---- .../category-chart/data-filter/package.json | 8 +++---- .../package.json | 4 ++-- .../category-chart/data-legend/package.json | 4 ++-- .../package.json | 4 ++-- .../data-tooltip-positioning/package.json | 8 +++---- .../category-chart/data-tooltip/package.json | 4 ++-- .../format-specifiers/package.json | 8 +++---- .../high-frequency/package.json | 4 ++-- .../category-chart/high-volume/package.json | 4 ++-- .../highlighting-behavior/package.json | 8 +++---- .../highlighting-mode/package.json | 8 +++---- .../category-chart/highlighting/package.json | 4 ++-- .../legend-highlighting/package.json | 4 ++-- .../line-chart-multiple-sources/package.json | 4 ++-- .../line-chart-single-source/package.json | 4 ++-- .../line-chart-styling/package.json | 4 ++-- .../line-chart-with-animations/package.json | 4 ++-- .../line-chart-with-annotations/package.json | 4 ++-- .../line-chart-with-legend/package.json | 4 ++-- .../marker-options/package.json | 8 +++---- .../marker-templates/package.json | 4 ++-- .../category-chart/overview/package.json | 4 ++-- .../point-chart-multiple-sources/package.json | 4 ++-- .../point-chart-single-source/package.json | 4 ++-- .../point-chart-styling/package.json | 4 ++-- .../selection-modes/package.json | 4 ++-- .../selection-multiple-modes/package.json | 8 +++---- .../spline-area-multiple-sources/package.json | 4 ++-- .../spline-area-single-source/package.json | 4 ++-- .../spline-area-styling/package.json | 4 ++-- .../spline-multiple-sources/package.json | 4 ++-- .../spline-single-source/package.json | 4 ++-- .../spline-styling/package.json | 4 ++-- .../category-chart/stack-columns/package.json | 4 ++-- .../step-area-multiple-sources/package.json | 4 ++-- .../step-area-single-source/package.json | 4 ++-- .../step-area-styling/package.json | 4 ++-- .../step-line-multiple-sources/package.json | 4 ++-- .../step-line-single-source/package.json | 4 ++-- .../step-line-styling/package.json | 4 ++-- .../tooltip-template/package.json | 4 ++-- .../category-chart/tooltip-types/package.json | 4 ++-- .../category-chart/trendline/package.json | 4 ++-- .../category-chart/value-lines/package.json | 8 +++---- .../chart-dashboard/package.json | 16 ++++++------- .../financial-dashboard/package.json | 16 ++++++------- .../gauge-dashboard/package.json | 16 ++++++------- .../dashboard-tile/map-dashboard/package.json | 16 ++++++------- .../dashboard-tile/pie-dashboard/package.json | 16 ++++++------- .../annotations-custom/package.json | 4 ++-- .../package.json | 4 ++-- .../data-chart/axis-annotations/package.json | 4 ++-- .../data-chart/axis-crossing/package.json | 4 ++-- .../axis-label-rotation/package.json | 8 +++---- .../data-chart/axis-locations/package.json | 4 ++-- .../data-chart/axis-min-max-gap/package.json | 4 ++-- .../data-chart/axis-settings/package.json | 4 ++-- .../data-chart/axis-sharing/package.json | 4 ++-- .../charts/data-chart/axis-types/package.json | 4 ++-- .../bar-chart-multiple-sources/package.json | 4 ++-- .../bar-chart-overlapping/package.json | 4 ++-- .../bar-chart-single-source/package.json | 4 ++-- .../data-chart/bar-chart-styling/package.json | 4 ++-- .../callout-layer-styling/package.json | 4 ++-- .../package.json | 8 +++---- .../package.json | 8 +++---- .../chart-highlight-filter/package.json | 8 +++---- .../data-chart/chart-navigation/package.json | 4 ++-- .../data-chart/chart-overview/package.json | 4 ++-- .../data-chart/chart-performance/package.json | 4 ++-- .../chart-synchronization/package.json | 4 ++-- .../data-chart/chart-titles/package.json | 4 ++-- .../column-chart-styling/package.json | 4 ++-- .../data-chart/composite-chart/package.json | 4 ++-- .../crosshair-layer-styling/package.json | 4 ++-- .../custom-drawing-annotations/package.json | 8 +++---- .../custom-editing-data/package.json | 4 ++-- .../data-chart/dash-array-axes/package.json | 4 ++-- .../data-chart/dash-array-series/package.json | 4 ++-- .../dash-array-tickmarks/package.json | 4 ++-- .../dash-array-trendline/package.json | 4 ++-- .../package.json | 4 ++-- .../data-legend-grouping/package.json | 4 ++-- .../data-legend-styling/package.json | 4 ++-- .../data-chart/data-legend/package.json | 4 ++-- .../package.json | 8 +++---- .../data-tooltip-grouping/package.json | 8 +++---- .../data-tooltip-styling/package.json | 8 +++---- .../data-chart/data-tooltip/package.json | 4 ++-- .../final-value-layer-styling/package.json | 4 ++-- .../financial-price-series/package.json | 4 ++-- .../data-chart/format-specifiers/package.json | 4 ++-- .../charts/data-chart/legends/package.json | 4 ++-- .../polar-area-chart-styling/package.json | 4 ++-- .../data-chart/polar-area-chart/package.json | 4 ++-- .../data-chart/polar-chart-types/package.json | 4 ++-- .../data-chart/polar-line-chart/package.json | 4 ++-- .../polar-scatter-chart/package.json | 4 ++-- .../polar-spline-area-chart/package.json | 4 ++-- .../polar-spline-chart/package.json | 4 ++-- .../radial-area-chart-styling/package.json | 4 ++-- .../data-chart/radial-area-chart/package.json | 4 ++-- .../radial-chart-types/package.json | 4 ++-- .../package.json | 4 ++-- .../radial-column-chart/package.json | 4 ++-- .../data-chart/radial-label-mode/package.json | 8 +++---- .../data-chart/radial-line-chart/package.json | 4 ++-- .../data-chart/radial-pie-chart/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../data-chart/range-area-chart/package.json | 4 ++-- .../range-column-chart/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../scatter-bubble-chart-styling/package.json | 4 ++-- .../scatter-line-chart/package.json | 4 ++-- .../scatter-point-chart/package.json | 4 ++-- .../scatter-spline-chart/package.json | 4 ++-- .../data-chart/series-animations/package.json | 4 ++-- .../series-annotations/package.json | 4 ++-- .../series-highlighting/package.json | 4 ++-- .../series-marker-template/package.json | 4 ++-- .../data-chart/series-markers/package.json | 4 ++-- .../data-chart/series-tooltips/package.json | 4 ++-- .../data-chart/series-trendlines/package.json | 4 ++-- .../series-value-overlay/package.json | 4 ++-- .../stacked-100-area-chart/package.json | 4 ++-- .../stacked-100-bar-chart/package.json | 4 ++-- .../stacked-100-column-chart/package.json | 4 ++-- .../stacked-100-line-chart/package.json | 4 ++-- .../package.json | 4 ++-- .../stacked-100-spline-chart/package.json | 4 ++-- .../stacked-area-chart/package.json | 4 ++-- .../data-chart/stacked-bar-chart/package.json | 4 ++-- .../stacked-chart-types/package.json | 4 ++-- .../stacked-column-chart/package.json | 4 ++-- .../stacked-line-chart/package.json | 4 ++-- .../stacked-spline-area-chart/package.json | 4 ++-- .../stacked-spline-chart/package.json | 4 ++-- .../data-chart/tooltip-template/package.json | 4 ++-- .../data-chart/transition-event/package.json | 8 +++---- .../type-category-area-series/package.json | 4 ++-- .../type-category-bar-series/package.json | 4 ++-- .../type-category-column-series/package.json | 4 ++-- .../type-category-line-series/package.json | 4 ++-- .../type-category-point-series/package.json | 4 ++-- .../type-category-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-category-spline-series/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../type-financial-ohlc-series/package.json | 4 ++-- .../type-financial-overlays/package.json | 4 ++-- .../type-financial-series/package.json | 4 ++-- .../type-radial-area-series/package.json | 4 ++-- .../type-radial-column-series/package.json | 4 ++-- .../type-radial-line-series/package.json | 4 ++-- .../type-radial-pie-series/package.json | 4 ++-- .../type-range-area-series/package.json | 4 ++-- .../type-range-column-series/package.json | 4 ++-- .../data-chart/type-range-series/package.json | 4 ++-- .../type-scatter-area-series/package.json | 4 ++-- .../type-scatter-bubble-series/package.json | 4 ++-- .../type-scatter-contour-series/package.json | 4 ++-- .../type-scatter-hd-series/package.json | 4 ++-- .../type-scatter-line-series/package.json | 4 ++-- .../type-scatter-point-series/package.json | 4 ++-- .../type-scatter-polygon-series/package.json | 4 ++-- .../type-scatter-polyline-series/package.json | 4 ++-- .../type-scatter-series/package.json | 4 ++-- .../type-scatter-spline-series/package.json | 4 ++-- .../data-chart/type-shape-series/package.json | 4 ++-- .../type-stacked-100-area-series/package.json | 4 ++-- .../type-stacked-100-bar-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-100-line-series/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-area-series/package.json | 4 ++-- .../type-stacked-bar-series/package.json | 4 ++-- .../type-stacked-column-series/package.json | 4 ++-- .../type-stacked-line-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-spline-series/package.json | 4 ++-- .../data-chart/waterfall-chart/package.json | 4 ++-- .../data-pie-chart/animation/package.json | 8 +++---- .../highlight-filter/package.json | 4 ++-- .../data-pie-chart/highlighting/package.json | 8 +++---- .../charts/data-pie-chart/legend/package.json | 8 +++---- .../charts/data-pie-chart/others/package.json | 8 +++---- .../data-pie-chart/overview/package.json | 4 ++-- .../data-pie-chart/selection/package.json | 8 +++---- .../doughnut-chart/animation/package.json | 4 ++-- .../doughnut-chart/explosion/package.json | 4 ++-- .../charts/doughnut-chart/legend/package.json | 4 ++-- .../doughnut-chart/overview/package.json | 4 ++-- .../charts/doughnut-chart/rings/package.json | 4 ++-- .../doughnut-chart/selection/package.json | 4 ++-- .../financial-chart/annotations/package.json | 4 ++-- .../financial-chart/axis-types/package.json | 4 ++-- .../package.json | 4 ++-- .../data-legend-styling-props/package.json | 4 ++-- .../financial-chart/data-legend/package.json | 4 ++-- .../package.json | 4 ++-- .../data-tooltip-styling-props/package.json | 4 ++-- .../financial-chart/data-tooltip/package.json | 4 ++-- .../format-specifiers/package.json | 4 ++-- .../high-frequency/package.json | 4 ++-- .../financial-chart/high-volume/package.json | 4 ++-- .../indicator-customization/package.json | 4 ++-- .../indicator-types/package.json | 4 ++-- .../multiple-data/package.json | 4 ++-- .../multiple-feeds/package.json | 4 ++-- .../financial-chart/overview/package.json | 4 ++-- .../charts/financial-chart/panes/package.json | 4 ++-- .../financial-chart/performance/package.json | 4 ++-- .../financial-chart/scrollbars/package.json | 4 ++-- .../stock-index-chart/package.json | 4 ++-- .../financial-chart/styling/package.json | 4 ++-- .../financial-chart/theming/package.json | 4 ++-- .../time-based-data/package.json | 4 ++-- .../financial-chart/titles/package.json | 4 ++-- .../tooltip-template/package.json | 4 ++-- .../tooltip-types/package.json | 4 ++-- .../financial-chart/trendlines/package.json | 4 ++-- .../financial-chart/volume-types/package.json | 4 ++-- .../charts/pie-chart/animation/package.json | 4 ++-- .../charts/pie-chart/explosion/package.json | 4 ++-- samples/charts/pie-chart/legend/package.json | 4 ++-- samples/charts/pie-chart/others/package.json | 4 ++-- .../charts/pie-chart/overview/package.json | 4 ++-- .../charts/pie-chart/selection/package.json | 4 ++-- samples/charts/pie-chart/styling/package.json | 4 ++-- .../sparkline/display-area/package.json | 4 ++-- .../sparkline/display-column/package.json | 4 ++-- .../sparkline/display-lines/package.json | 8 +++---- .../sparkline/display-types/package.json | 4 ++-- .../sparkline/display-winloss/package.json | 4 ++-- samples/charts/sparkline/grid/package.json | 4 ++-- samples/charts/sparkline/markers/package.json | 8 +++---- .../sparkline/normal-range/package.json | 8 +++---- .../charts/sparkline/trendlines/package.json | 8 +++---- .../sparkline/unknown-values/package.json | 8 +++---- .../package.json | 8 +++---- .../actions-built-in-data-chart/package.json | 8 +++---- .../toolbar/color-editor-support/package.json | 8 +++---- .../charts/toolbar/custom-tool/package.json | 8 +++---- .../package.json | 8 +++---- .../package.json | 8 +++---- samples/charts/toolbar/theming/package.json | 8 +++---- samples/charts/tree-map/events/package.json | 4 ++-- .../highlighting-percent-based/package.json | 4 ++-- .../charts/tree-map/highlighting/package.json | 8 +++---- samples/charts/tree-map/layout/package.json | 8 +++---- samples/charts/tree-map/overview/package.json | 4 ++-- samples/charts/tree-map/styling/package.json | 4 ++-- .../charts/zoomslider/overview/package.json | 4 ++-- .../operations-on-workbooks/package.json | 4 ++-- .../operations-on-worksheets/package.json | 4 ++-- .../excel/excel-library/overview/package.json | 4 ++-- .../working-with-cells/package.json | 4 ++-- .../working-with-charts/package.json | 6 ++--- .../working-with-sparklines/package.json | 6 ++--- .../working-with-tables/package.json | 8 +++---- .../excel/spreadsheet/activation/package.json | 6 ++--- .../spreadsheet/adapter-chart/package.json | 10 ++++---- .../spreadsheet/adapter-combo/package.json | 10 ++++---- .../excel/spreadsheet/clipboard/package.json | 6 ++--- .../excel/spreadsheet/commands/package.json | 6 ++--- .../conditional-formatting/package.json | 6 ++--- .../spreadsheet/config-options/package.json | 6 ++--- .../spreadsheet/data-validation/package.json | 6 ++--- .../excel/spreadsheet/hyperlinks/package.json | 6 ++--- .../excel/spreadsheet/overview/package.json | 6 ++--- .../bullet-graph/animation/package.json | 4 ++-- .../bullet-graph/background/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/bullet-graph/labels/package.json | 4 ++-- .../gauges/bullet-graph/measures/package.json | 4 ++-- .../gauges/bullet-graph/ranges/package.json | 4 ++-- .../gauges/bullet-graph/scale/package.json | 4 ++-- .../bullet-graph/tickmarks/package.json | 4 ++-- .../linear-gauge/animation/package.json | 4 ++-- .../gauges/linear-gauge/backing/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/linear-gauge/labels/package.json | 4 ++-- .../gauges/linear-gauge/needle/package.json | 4 ++-- .../gauges/linear-gauge/ranges/package.json | 4 ++-- .../gauges/linear-gauge/scale/package.json | 4 ++-- .../linear-gauge/tickmarks/package.json | 4 ++-- .../radial-gauge/animation/package.json | 4 ++-- .../gauges/radial-gauge/backing/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/radial-gauge/labels/package.json | 4 ++-- .../gauges/radial-gauge/needle/package.json | 4 ++-- .../radial-gauge/optical-scaling/package.json | 4 ++-- .../gauges/radial-gauge/ranges/package.json | 4 ++-- .../gauges/radial-gauge/scale/package.json | 4 ++-- .../radial-gauge/tickmarks/package.json | 4 ++-- .../inputs/color-editor/overview/package.json | 4 ++-- .../geo-map/binding-data-csv/package.json | 6 ++--- .../binding-data-json-points/package.json | 6 ++--- .../geo-map/binding-data-model/package.json | 6 ++--- .../binding-multiple-shapes/package.json | 6 ++--- .../binding-multiple-sources/package.json | 6 ++--- .../geo-map/binding-shp-points/package.json | 6 ++--- .../geo-map/binding-shp-polygons/package.json | 6 ++--- .../binding-shp-polylines/package.json | 6 ++--- .../maps/geo-map/custom-tooltips/package.json | 6 ++--- .../geo-map/display-bing-imagery/package.json | 6 ++--- .../geo-map/display-esri-imagery/package.json | 6 ++--- .../geo-map/display-heat-imagery/package.json | 6 ++--- .../geo-map/display-osm-imagery/package.json | 6 ++--- .../maps/geo-map/marker-layouts/package.json | 6 ++--- .../maps/geo-map/marker-template/package.json | 6 ++--- samples/maps/geo-map/marker-type/package.json | 6 ++--- samples/maps/geo-map/navigation/package.json | 6 ++--- samples/maps/geo-map/overview/package.json | 6 ++--- .../maps/geo-map/shape-styling/package.json | 6 ++--- .../geo-map/triangulating-data/package.json | 6 ++--- .../type-scatter-area-series/package.json | 6 ++--- .../type-scatter-bubble-series/package.json | 6 ++--- .../type-scatter-contour-series/package.json | 6 ++--- .../type-scatter-density-series/package.json | 6 ++--- .../type-scatter-symbol-series/package.json | 6 ++--- .../type-shape-polygon-series/package.json | 6 ++--- .../type-shape-polyline-series/package.json | 6 ++--- 364 files changed, 939 insertions(+), 939 deletions(-) diff --git a/browser/package.json b/browser/package.json index 6a5e5fff4..634ccc290 100644 --- a/browser/package.json +++ b/browser/package.json @@ -39,17 +39,17 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "19.0.3", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-dashboards": "18.2.0", - "igniteui-angular-excel": "18.2.0", - "igniteui-angular-gauges": "18.2.0", - "igniteui-angular-grids": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", - "igniteui-angular-maps": "18.2.0", - "igniteui-angular-spreadsheet": "18.2.0", - "igniteui-angular-spreadsheet-chart-adapter": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-dashboards": "19.0.0", + "igniteui-angular-excel": "19.0.0", + "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-grids": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-maps": "19.0.0", + "igniteui-angular-spreadsheet": "19.0.0", + "igniteui-angular-spreadsheet-chart-adapter": "19.0.0", "igniteui-theming": "14.3.0", "igniteui-webcomponents": "5.1.2", "immediate": "3.2.3", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 995fecd4e..76af2d8ea 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1073,18 +1073,18 @@ function updateIG(cb) { // { version: "14.1.0", name: "igniteui-angular-charts" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { version: "18.2.0", name: "igniteui-angular-core" }, - { version: "18.2.0", name: "igniteui-angular-charts" }, - { version: "18.2.0", name: "igniteui-angular-excel" }, - { version: "18.2.0", name: "igniteui-angular-gauges" }, - { version: "18.2.0", name: "igniteui-angular-grids" }, - { version: "18.2.0", name: "igniteui-angular-inputs" }, - { version: "18.2.0", name: "igniteui-angular-layouts" }, - { version: "18.2.0", name: "igniteui-angular-maps" }, - { version: "18.2.0", name: "igniteui-angular-spreadsheet-chart-adapter" }, - { version: "18.2.0", name: "igniteui-angular-spreadsheet" }, - { version: "18.2.0", name: "igniteui-angular-datasources" }, - { version: "18.2.0", name: "igniteui-angular-dashboards" }, + { version: "19.0.0", name: "igniteui-angular-core" }, + { version: "19.0.0", name: "igniteui-angular-charts" }, + { version: "19.0.0", name: "igniteui-angular-excel" }, + { version: "19.0.0", name: "igniteui-angular-gauges" }, + { version: "19.0.0", name: "igniteui-angular-grids" }, + { version: "19.0.0", name: "igniteui-angular-inputs" }, + { version: "19.0.0", name: "igniteui-angular-layouts" }, + { version: "19.0.0", name: "igniteui-angular-maps" }, + { version: "19.0.0", name: "igniteui-angular-spreadsheet-chart-adapter" }, + { version: "19.0.0", name: "igniteui-angular-spreadsheet" }, + { version: "19.0.0", name: "igniteui-angular-datasources" }, + { version: "19.0.0", name: "igniteui-angular-dashboards" }, // these IG packages are sometimes updated: { version: "5.1.2" , name: "igniteui-webcomponents" }, { version: "14.3.0", name: "igniteui-theming" }, diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index 775f7c8e4..b5177da0e 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,16 +1,16 @@ [ {"ver":"19.0.3","name":"igniteui-angular"}, -{"ver":"18.2.0-beta.1","name":"igniteui-angular-charts"}, -{"ver":"18.2.0-beta.1","name":"igniteui-angular-core"}, -{"ver":"18.2.0-beta.1","name":"igniteui-angular-dashboards"}, -{"ver":"18.2.0-beta.1","name":"igniteui-angular-excel"}, -{"ver":"18.2.0-beta.1","name":"igniteui-angular-gauges"}, -{"ver":"18.2.0-beta.1","name":"igniteui-angular-grids"}, -{"ver":"18.2.0-beta.1","name":"igniteui-angular-inputs"}, -{"ver":"18.2.0-beta.1","name":"igniteui-angular-layouts"}, -{"ver":"18.2.0-beta.1","name":"igniteui-angular-maps"}, -{"ver":"18.2.0-beta.1","name":"igniteui-angular-spreadsheet"}, -{"ver":"18.2.0-beta.1","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"19.0.0","name":"igniteui-angular-charts"}, +{"ver":"19.0.0","name":"igniteui-angular-core"}, +{"ver":"19.0.0","name":"igniteui-angular-dashboards"}, +{"ver":"19.0.0","name":"igniteui-angular-excel"}, +{"ver":"19.0.0","name":"igniteui-angular-gauges"}, +{"ver":"19.0.0","name":"igniteui-angular-grids"}, +{"ver":"19.0.0","name":"igniteui-angular-inputs"}, +{"ver":"19.0.0","name":"igniteui-angular-layouts"}, +{"ver":"19.0.0","name":"igniteui-angular-maps"}, +{"ver":"19.0.0","name":"igniteui-angular-spreadsheet"}, +{"ver":"19.0.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, {"ver":"14.3.0","name":"igniteui-theming"}, {"ver":"5.1.2","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 162ba70b2..c80231a07 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 988ef699e..04e9abf68 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.0.3", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 988ef699e..04e9abf68 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.0.3", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index ce1b44132..1c331cad7 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-dashboards": "18.2.0", - "igniteui-angular-gauges": "18.2.0", - "igniteui-angular-grids": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-dashboards": "19.0.0", + "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-grids": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index ce1b44132..1c331cad7 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-dashboards": "18.2.0", - "igniteui-angular-gauges": "18.2.0", - "igniteui-angular-grids": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-dashboards": "19.0.0", + "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-grids": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index ce1b44132..1c331cad7 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-dashboards": "18.2.0", - "igniteui-angular-gauges": "18.2.0", - "igniteui-angular-grids": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-dashboards": "19.0.0", + "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-grids": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index ce1b44132..1c331cad7 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-dashboards": "18.2.0", - "igniteui-angular-gauges": "18.2.0", - "igniteui-angular-grids": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-dashboards": "19.0.0", + "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-grids": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index ce1b44132..1c331cad7 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-dashboards": "18.2.0", - "igniteui-angular-gauges": "18.2.0", - "igniteui-angular-grids": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-dashboards": "19.0.0", + "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-grids": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 7b8a694fe..6a87297ac 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index 162ba70b2..c80231a07 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index 162ba70b2..c80231a07 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index 162ba70b2..c80231a07 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index 162ba70b2..c80231a07 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 162ba70b2..c80231a07 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 4646d5728..2b552d3b4 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.0.3", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "igniteui-theming": "14.3.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 162ba70b2..c80231a07 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 162ba70b2..c80231a07 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json index 162ba70b2..c80231a07 100644 --- a/samples/charts/toolbar/color-editor-support/package.json +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 162ba70b2..c80231a07 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 162ba70b2..c80231a07 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 162ba70b2..c80231a07 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 988ef699e..04e9abf68 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.0.3", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 94cc4a90f..6296f0d14 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", - "igniteui-angular-layouts": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", "igniteui-webcomponents": "5.1.2", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 70f510a25..f9c28ba2b 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 058f07c19..1520c5b60 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 6abd38962..957dd0a5f 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -21,8 +21,8 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "19.0.3", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-excel": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-excel": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index e623cda77..25f40016d 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-excel": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-excel": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index e623cda77..25f40016d 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-excel": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-excel": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index e623cda77..25f40016d 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-excel": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-excel": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 7af8cd6d9..acc1a4eb1 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "19.0.3", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-excel": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-excel": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 7af8cd6d9..acc1a4eb1 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "19.0.3", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-excel": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-excel": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index 017c6c8ef..bcd2d7199 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -20,10 +20,10 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-excel": "18.2.0", - "igniteui-angular-spreadsheet": "18.2.0", - "igniteui-angular-spreadsheet-chart-adapter": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-excel": "19.0.0", + "igniteui-angular-spreadsheet": "19.0.0", + "igniteui-angular-spreadsheet-chart-adapter": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 23e0b0c37..e793c1470 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-excel": "18.2.0", - "igniteui-angular-spreadsheet": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-excel": "19.0.0", + "igniteui-angular-spreadsheet": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index d1f1d8a54..f812214a1 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-excel": "18.2.0", - "igniteui-angular-spreadsheet": "18.2.0", - "igniteui-angular-spreadsheet-chart-adapter": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-excel": "19.0.0", + "igniteui-angular-spreadsheet": "19.0.0", + "igniteui-angular-spreadsheet-chart-adapter": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index d1f1d8a54..f812214a1 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-excel": "18.2.0", - "igniteui-angular-spreadsheet": "18.2.0", - "igniteui-angular-spreadsheet-chart-adapter": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-excel": "19.0.0", + "igniteui-angular-spreadsheet": "19.0.0", + "igniteui-angular-spreadsheet-chart-adapter": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index 23e0b0c37..e793c1470 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-excel": "18.2.0", - "igniteui-angular-spreadsheet": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-excel": "19.0.0", + "igniteui-angular-spreadsheet": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 23e0b0c37..e793c1470 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-excel": "18.2.0", - "igniteui-angular-spreadsheet": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-excel": "19.0.0", + "igniteui-angular-spreadsheet": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index 23e0b0c37..e793c1470 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-excel": "18.2.0", - "igniteui-angular-spreadsheet": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-excel": "19.0.0", + "igniteui-angular-spreadsheet": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 23e0b0c37..e793c1470 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-excel": "18.2.0", - "igniteui-angular-spreadsheet": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-excel": "19.0.0", + "igniteui-angular-spreadsheet": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 23e0b0c37..e793c1470 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-excel": "18.2.0", - "igniteui-angular-spreadsheet": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-excel": "19.0.0", + "igniteui-angular-spreadsheet": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 23e0b0c37..e793c1470 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-excel": "18.2.0", - "igniteui-angular-spreadsheet": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-excel": "19.0.0", + "igniteui-angular-spreadsheet": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index 23e0b0c37..e793c1470 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-excel": "18.2.0", - "igniteui-angular-spreadsheet": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-excel": "19.0.0", + "igniteui-angular-spreadsheet": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 92aa9e1ba..6b2c67970 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.0.3", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 92aa9e1ba..6b2c67970 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.0.3", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 92aa9e1ba..6b2c67970 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.0.3", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 67168ff47..b3bc14b62 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-gauges": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-gauges": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json index 498b1526f..a310d4473 100644 --- a/samples/inputs/color-editor/overview/package.json +++ b/samples/inputs/color-editor/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-inputs": "18.2.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 66c8f6a5e..e4f50c3f6 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "18.2.0", - "igniteui-angular-core": "18.2.0", - "igniteui-angular-maps": "18.2.0", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-maps": "19.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", From 82116373a41afa9376821809d0ab932de6e92022 Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Sat, 8 Feb 2025 05:02:19 +0200 Subject: [PATCH 128/154] Adding changes from build igniteui-xplat-examples-output+PRs_2025.2.8.1 --- .../src/DashboardGaugeDataSource.ts | 23 ++++ .../gauge-dashboard/src/app.component.html | 3 +- .../gauge-dashboard/src/app.component.ts | 17 +-- .../radial-label-mode/src/app.component.html | 8 +- .../selection-matcher/.codesandbox/Dockerfile | 1 + .../selection-matcher/.codesandbox/tasks.json | 17 +++ .../selection-matcher/.stackblitzrc | 1 + .../data-chart/selection-matcher/angular.json | 120 ++++++++++++++++++ .../data-chart/selection-matcher/package.json | 43 +++++++ .../src/EnergyRenewableConsumption.ts | 69 ++++++++++ .../selection-matcher/src/app.component.html | 74 +++++++++++ .../selection-matcher/src/app.component.scss | 3 + .../selection-matcher/src/app.component.ts | 84 ++++++++++++ .../selection-matcher/src/app.module.ts | 32 +++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../selection-matcher/src/index.html | 23 ++++ .../data-chart/selection-matcher/src/main.ts | 15 +++ .../selection-matcher/src/polyfills.ts | 61 +++++++++ .../selection-matcher/src/styles.scss | 9 ++ .../selection-matcher/src/typings.d.ts | 5 + .../selection-matcher/tsconfig.app.json | 10 ++ .../selection-matcher/tsconfig.json | 27 ++++ .../data-chart/selection-matcher/tslint.json | 31 +++++ .../animation-replay/.codesandbox/Dockerfile | 1 + .../animation-replay/.codesandbox/tasks.json | 17 +++ .../animation-replay/.stackblitzrc | 1 + .../animation-replay/angular.json | 120 ++++++++++++++++++ .../animation-replay/package.json | 46 +++++++ .../src/EnergyGlobalDemand.ts | 0 .../animation-replay/src/app.component.html | 36 ++++++ .../animation-replay/src/app.component.scss | 3 + .../animation-replay/src/app.component.ts | 65 ++++++++++ .../animation-replay/src/app.module.ts | 28 ++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../animation-replay/src/index.html | 23 ++++ .../animation-replay/src/main.ts | 15 +++ .../animation-replay/src/polyfills.ts | 61 +++++++++ .../animation-replay/src/styles.scss | 9 ++ .../animation-replay/src/typings.d.ts | 5 + .../animation-replay/tsconfig.app.json | 10 ++ .../animation-replay/tsconfig.json | 27 ++++ .../animation-replay/tslint.json | 31 +++++ .../data-pie-chart/others/src/DataPieData.ts | 60 +++++++++ .../others/src/app.component.html | 15 ++- .../others/src/app.component.ts | 12 +- .../selection/src/app.component.html | 8 +- .../selection/src/app.component.ts | 4 +- 49 files changed, 1283 insertions(+), 28 deletions(-) create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/src/DashboardGaugeDataSource.ts create mode 100644 samples/charts/data-chart/selection-matcher/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/selection-matcher/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/selection-matcher/.stackblitzrc create mode 100644 samples/charts/data-chart/selection-matcher/angular.json create mode 100644 samples/charts/data-chart/selection-matcher/package.json create mode 100644 samples/charts/data-chart/selection-matcher/src/EnergyRenewableConsumption.ts create mode 100644 samples/charts/data-chart/selection-matcher/src/app.component.html create mode 100644 samples/charts/data-chart/selection-matcher/src/app.component.scss create mode 100644 samples/charts/data-chart/selection-matcher/src/app.component.ts create mode 100644 samples/charts/data-chart/selection-matcher/src/app.module.ts create mode 100644 samples/charts/data-chart/selection-matcher/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/selection-matcher/src/environments/environment.ts create mode 100644 samples/charts/data-chart/selection-matcher/src/index.html create mode 100644 samples/charts/data-chart/selection-matcher/src/main.ts create mode 100644 samples/charts/data-chart/selection-matcher/src/polyfills.ts create mode 100644 samples/charts/data-chart/selection-matcher/src/styles.scss create mode 100644 samples/charts/data-chart/selection-matcher/src/typings.d.ts create mode 100644 samples/charts/data-chart/selection-matcher/tsconfig.app.json create mode 100644 samples/charts/data-chart/selection-matcher/tsconfig.json create mode 100644 samples/charts/data-chart/selection-matcher/tslint.json create mode 100644 samples/charts/data-pie-chart/animation-replay/.codesandbox/Dockerfile create mode 100644 samples/charts/data-pie-chart/animation-replay/.codesandbox/tasks.json create mode 100644 samples/charts/data-pie-chart/animation-replay/.stackblitzrc create mode 100644 samples/charts/data-pie-chart/animation-replay/angular.json create mode 100644 samples/charts/data-pie-chart/animation-replay/package.json rename samples/charts/data-pie-chart/{others => animation-replay}/src/EnergyGlobalDemand.ts (100%) create mode 100644 samples/charts/data-pie-chart/animation-replay/src/app.component.html create mode 100644 samples/charts/data-pie-chart/animation-replay/src/app.component.scss create mode 100644 samples/charts/data-pie-chart/animation-replay/src/app.component.ts create mode 100644 samples/charts/data-pie-chart/animation-replay/src/app.module.ts create mode 100644 samples/charts/data-pie-chart/animation-replay/src/environments/environment.prod.ts create mode 100644 samples/charts/data-pie-chart/animation-replay/src/environments/environment.ts create mode 100644 samples/charts/data-pie-chart/animation-replay/src/index.html create mode 100644 samples/charts/data-pie-chart/animation-replay/src/main.ts create mode 100644 samples/charts/data-pie-chart/animation-replay/src/polyfills.ts create mode 100644 samples/charts/data-pie-chart/animation-replay/src/styles.scss create mode 100644 samples/charts/data-pie-chart/animation-replay/src/typings.d.ts create mode 100644 samples/charts/data-pie-chart/animation-replay/tsconfig.app.json create mode 100644 samples/charts/data-pie-chart/animation-replay/tsconfig.json create mode 100644 samples/charts/data-pie-chart/animation-replay/tslint.json create mode 100644 samples/charts/data-pie-chart/others/src/DataPieData.ts diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/DashboardGaugeDataSource.ts b/samples/charts/dashboard-tile/gauge-dashboard/src/DashboardGaugeDataSource.ts new file mode 100644 index 000000000..b739114e0 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/DashboardGaugeDataSource.ts @@ -0,0 +1,23 @@ +export class DashboardGaugeDataSourceItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + +} +export class DashboardGaugeDataSource extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new DashboardGaugeDataSourceItem( + { + value: 40 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.html b/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.html index b593a3a04..4a179ec96 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.html +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.html @@ -3,7 +3,8 @@ + #dashboard + [dataSource]="dashboardGaugeDataSource">
diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.ts b/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.ts index eedc40593..9a839259e 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.ts +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/app.component.ts @@ -1,4 +1,5 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { DashboardGaugeDataSourceItem, DashboardGaugeDataSource } from './DashboardGaugeDataSource'; import { IgxDashboardTileComponent } from 'igniteui-angular-dashboards'; @Component({ @@ -14,6 +15,14 @@ export class AppComponent implements AfterViewInit @ViewChild("dashboard", { static: true } ) private dashboard: IgxDashboardTileComponent + private _dashboardGaugeDataSource: DashboardGaugeDataSource = null; + public get dashboardGaugeDataSource(): DashboardGaugeDataSource { + if (this._dashboardGaugeDataSource == null) + { + this._dashboardGaugeDataSource = new DashboardGaugeDataSource(); + } + return this._dashboardGaugeDataSource; + } public constructor(private _detector: ChangeDetectorRef) { @@ -21,14 +30,6 @@ export class AppComponent implements AfterViewInit public ngAfterViewInit(): void { - this.dashboardTileGaugeOnInit(); - } - - public dashboardTileGaugeOnInit(): void { - - var target = this.dashboard; - - target.dataSource = 40; } } diff --git a/samples/charts/data-chart/radial-label-mode/src/app.component.html b/samples/charts/data-chart/radial-label-mode/src/app.component.html index a56fd3c6a..38cef761c 100644 --- a/samples/charts/data-chart/radial-label-mode/src/app.component.html +++ b/samples/charts/data-chart/radial-label-mode/src/app.component.html @@ -2,14 +2,14 @@
) { + Object.assign(this, init); + } + + public location: string; + public year: number; + public hydro: number; + public solar: number; + public wind: number; + public other: number; + +} +export class EnergyRenewableConsumption extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyRenewableConsumptionItem( + { + location: `China`, + year: 2019, + hydro: 1269.5, + solar: 223, + wind: 405.2, + other: 102.8 + }), + new EnergyRenewableConsumptionItem( + { + location: `Europe`, + year: 2019, + hydro: 632.54, + solar: 154, + wind: 461.3, + other: 220.3 + }), + new EnergyRenewableConsumptionItem( + { + location: `USA`, + year: 2019, + hydro: 271.16, + solar: 108, + wind: 303.4, + other: 78.34 + }), + new EnergyRenewableConsumptionItem( + { + location: `Brazil`, + year: 2019, + hydro: 399.3, + solar: 5.5, + wind: 55.83, + other: 56.25 + }), + new EnergyRenewableConsumptionItem( + { + location: `Canada`, + year: 2019, + hydro: 381.98, + solar: 4.3, + wind: 34.17, + other: 10.81 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/selection-matcher/src/app.component.html b/samples/charts/data-chart/selection-matcher/src/app.component.html new file mode 100644 index 000000000..6d3ecfb18 --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/src/app.component.html @@ -0,0 +1,74 @@ +
+
+ Renewable Energy Consumption +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/selection-matcher/src/app.component.scss b/samples/charts/data-chart/selection-matcher/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/selection-matcher/src/app.component.ts b/samples/charts/data-chart/selection-matcher/src/app.component.ts new file mode 100644 index 000000000..fc712cbef --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/src/app.component.ts @@ -0,0 +1,84 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { EnergyRenewableConsumptionItem, EnergyRenewableConsumption } from './EnergyRenewableConsumption'; +import { IgxCategoryChartComponent, IgxChartSelection, IgxSeriesMatcher } from 'igniteui-angular-charts'; +import { IgxLegendComponent, IgxDataChartComponent, IgxCategoryYAxisComponent, IgxNumericXAxisComponent, IgxStacked100BarSeriesComponent, IgxStackedFragmentSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; + +@Component({ + standalone: false, + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxCategoryYAxisComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxNumericXAxisComponent + @ViewChild("stacked100BarSeries", { static: true } ) + private stacked100BarSeries: IgxStacked100BarSeriesComponent + @ViewChild("s1", { static: true } ) + private s1: IgxStackedFragmentSeriesComponent + @ViewChild("s2", { static: true } ) + private s2: IgxStackedFragmentSeriesComponent + @ViewChild("s3", { static: true } ) + private s3: IgxStackedFragmentSeriesComponent + @ViewChild("s4", { static: true } ) + private s4: IgxStackedFragmentSeriesComponent + @ViewChild("dataToolTipLayer", { static: true } ) + private dataToolTipLayer: IgxDataToolTipLayerComponent + private _energyRenewableConsumption: EnergyRenewableConsumption = null; + public get energyRenewableConsumption(): EnergyRenewableConsumption { + if (this._energyRenewableConsumption == null) + { + this._energyRenewableConsumption = new EnergyRenewableConsumption(); + } + return this._energyRenewableConsumption; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + this.selectionMatcherOnViewInit(); + } + + private _timer: ReturnType; + + public selectionMatcherOnViewInit(): void { + + var chart = this.chart; + + this._timer = setInterval(() => { + var data = this.energyRenewableConsumption; + let matcher: IgxSeriesMatcher = new IgxSeriesMatcher(); + + let selection: IgxChartSelection = new IgxChartSelection(); + selection.item = data[1]; + matcher.memberPath = "hydro"; + matcher.memberPathType = "ValueMemberPath"; + selection.matcher = matcher; + chart.selectedSeriesItems.add(selection); + + let selection2: IgxChartSelection = new IgxChartSelection(); + selection2.item = data[2]; + matcher.memberPath = "wind"; + matcher.memberPathType = "ValueMemberPath"; + selection2.matcher = matcher; + + chart.selectedSeriesItems.add(selection2); + + }, 100); + } + +} + diff --git a/samples/charts/data-chart/selection-matcher/src/app.module.ts b/samples/charts/data-chart/selection-matcher/src/app.module.ts new file mode 100644 index 000000000..c3c0c7c96 --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/src/app.module.ts @@ -0,0 +1,32 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxLegendModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartCategoryCoreModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule, IgxDataChartStackedModule, IgxStackedFragmentSeriesModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxLegendModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartCategoryCoreModule, + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule, + IgxDataChartStackedModule, + IgxStackedFragmentSeriesModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/selection-matcher/src/environments/environment.prod.ts b/samples/charts/data-chart/selection-matcher/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/selection-matcher/src/environments/environment.ts b/samples/charts/data-chart/selection-matcher/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/selection-matcher/src/index.html b/samples/charts/data-chart/selection-matcher/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/selection-matcher/src/main.ts b/samples/charts/data-chart/selection-matcher/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/selection-matcher/src/polyfills.ts b/samples/charts/data-chart/selection-matcher/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/selection-matcher/src/styles.scss b/samples/charts/data-chart/selection-matcher/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/selection-matcher/src/typings.d.ts b/samples/charts/data-chart/selection-matcher/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/selection-matcher/tsconfig.app.json b/samples/charts/data-chart/selection-matcher/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/selection-matcher/tsconfig.json b/samples/charts/data-chart/selection-matcher/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/selection-matcher/tslint.json b/samples/charts/data-chart/selection-matcher/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-pie-chart/animation-replay/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/animation-replay/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation-replay/.codesandbox/tasks.json b/samples/charts/data-pie-chart/animation-replay/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation-replay/.stackblitzrc b/samples/charts/data-pie-chart/animation-replay/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation-replay/angular.json b/samples/charts/data-pie-chart/animation-replay/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-pie-chart/animation-replay/package.json b/samples/charts/data-pie-chart/animation-replay/package.json new file mode 100644 index 000000000..6296f0d14 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/package.json @@ -0,0 +1,46 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-layouts": "19.0.0", + "igniteui-webcomponents": "5.1.2", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.15.0" + }, + "devDependencies": { + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.6.3" + } +} diff --git a/samples/charts/data-pie-chart/others/src/EnergyGlobalDemand.ts b/samples/charts/data-pie-chart/animation-replay/src/EnergyGlobalDemand.ts similarity index 100% rename from samples/charts/data-pie-chart/others/src/EnergyGlobalDemand.ts rename to samples/charts/data-pie-chart/animation-replay/src/EnergyGlobalDemand.ts diff --git a/samples/charts/data-pie-chart/animation-replay/src/app.component.html b/samples/charts/data-pie-chart/animation-replay/src/app.component.html new file mode 100644 index 000000000..82df72c80 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/src/app.component.html @@ -0,0 +1,36 @@ +
+
+ + + + +
+
+ Global Electricity Demand by Energy Use +
+
+ + +
+
diff --git a/samples/charts/data-pie-chart/animation-replay/src/app.component.scss b/samples/charts/data-pie-chart/animation-replay/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-pie-chart/animation-replay/src/app.component.ts b/samples/charts/data-pie-chart/animation-replay/src/app.component.ts new file mode 100644 index 000000000..617bfbc01 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/src/app.component.ts @@ -0,0 +1,65 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-angular-core'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { IgxPropertyEditorPropertyDescriptionButtonClickEventArgs } from 'igniteui-angular-layouts'; +import { IgxDomainChart } from 'igniteui-angular-charts'; +import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; +import { IgxDataPieChartComponent } from 'igniteui-angular-charts'; + +import { defineAllComponents } from 'igniteui-webcomponents'; + +defineAllComponents(); + +@Component({ + standalone: false, + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("propertyEditorPanel1", { static: true } ) + private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("propertyEditorPropertyDescription1", { static: true } ) + private propertyEditorPropertyDescription1: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("chart", { static: true } ) + private chart: IgxDataPieChartComponent + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + DataPieChartDescriptionModule.register(context); + ItemLegendDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + + public editorButtonReplayTransitionInDomain({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionButtonClickEventArgs }): void { + var chart = this.chart; + chart.replayTransitionIn(); + } + +} + diff --git a/samples/charts/data-pie-chart/animation-replay/src/app.module.ts b/samples/charts/data-pie-chart/animation-replay/src/app.module.ts new file mode 100644 index 000000000..a66f493d9 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/src/app.module.ts @@ -0,0 +1,28 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxPropertyEditorPanelModule } from 'igniteui-angular-layouts'; +import { IgxDataPieChartModule, IgxItemLegendModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxPropertyEditorPanelModule, + IgxDataPieChartModule, + IgxItemLegendModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-pie-chart/animation-replay/src/environments/environment.prod.ts b/samples/charts/data-pie-chart/animation-replay/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-pie-chart/animation-replay/src/environments/environment.ts b/samples/charts/data-pie-chart/animation-replay/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-pie-chart/animation-replay/src/index.html b/samples/charts/data-pie-chart/animation-replay/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-pie-chart/animation-replay/src/main.ts b/samples/charts/data-pie-chart/animation-replay/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-pie-chart/animation-replay/src/polyfills.ts b/samples/charts/data-pie-chart/animation-replay/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-pie-chart/animation-replay/src/styles.scss b/samples/charts/data-pie-chart/animation-replay/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-pie-chart/animation-replay/src/typings.d.ts b/samples/charts/data-pie-chart/animation-replay/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-pie-chart/animation-replay/tsconfig.app.json b/samples/charts/data-pie-chart/animation-replay/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-pie-chart/animation-replay/tsconfig.json b/samples/charts/data-pie-chart/animation-replay/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation-replay/tslint.json b/samples/charts/data-pie-chart/animation-replay/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-pie-chart/others/src/DataPieData.ts b/samples/charts/data-pie-chart/others/src/DataPieData.ts new file mode 100644 index 000000000..4bc30e59e --- /dev/null +++ b/samples/charts/data-pie-chart/others/src/DataPieData.ts @@ -0,0 +1,60 @@ +export class DataPieDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public v1: number; + public category: string; + +} +export class DataPieData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new DataPieDataItem( + { + v1: 100, + category: `Maintenance` + }), + new DataPieDataItem( + { + v1: 40, + category: `Cooling` + }), + new DataPieDataItem( + { + v1: 20, + category: `Residential` + }), + new DataPieDataItem( + { + v1: 15, + category: `Utilities` + }), + new DataPieDataItem( + { + v1: 10, + category: `Heating` + }), + new DataPieDataItem( + { + v1: 5, + category: `Lighting` + }), + new DataPieDataItem( + { + v1: 4, + category: `Electric` + }), + new DataPieDataItem( + { + v1: 3, + category: `Misc` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-pie-chart/others/src/app.component.html b/samples/charts/data-pie-chart/others/src/app.component.html index d70f4e9c5..6e36278e5 100644 --- a/samples/charts/data-pie-chart/others/src/app.component.html +++ b/samples/charts/data-pie-chart/others/src/app.component.html @@ -11,19 +11,21 @@ + primitiveValue="Number" + valueType="EnumValue"> + max="50" + primitiveValue="15"> + label="Others Text: " + valueType="StringValue">
@@ -34,10 +36,9 @@ + othersCategoryThreshold="15">
diff --git a/samples/charts/data-pie-chart/others/src/app.component.ts b/samples/charts/data-pie-chart/others/src/app.component.ts index 7227e8072..45cb6a1a7 100644 --- a/samples/charts/data-pie-chart/others/src/app.component.ts +++ b/samples/charts/data-pie-chart/others/src/app.component.ts @@ -1,6 +1,6 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-angular-core'; -import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { DataPieDataItem, DataPieData } from './DataPieData'; import { IgxPropertyEditorPanelComponent } from 'igniteui-angular-layouts'; import { IgxDataPieChartComponent } from 'igniteui-angular-charts'; @@ -23,13 +23,13 @@ export class AppComponent implements AfterViewInit private propertyEditorPanel1: IgxPropertyEditorPanelComponent @ViewChild("chart", { static: true } ) private chart: IgxDataPieChartComponent - private _energyGlobalDemand: EnergyGlobalDemand = null; - public get energyGlobalDemand(): EnergyGlobalDemand { - if (this._energyGlobalDemand == null) + private _dataPieData: DataPieData = null; + public get dataPieData(): DataPieData { + if (this._dataPieData == null) { - this._energyGlobalDemand = new EnergyGlobalDemand(); + this._dataPieData = new DataPieData(); } - return this._energyGlobalDemand; + return this._dataPieData; } private _componentRenderer: ComponentRenderer = null; diff --git a/samples/charts/data-pie-chart/selection/src/app.component.html b/samples/charts/data-pie-chart/selection/src/app.component.html index 244408a4e..5a8771a99 100644 --- a/samples/charts/data-pie-chart/selection/src/app.component.html +++ b/samples/charts/data-pie-chart/selection/src/app.component.html @@ -9,8 +9,14 @@ name="propertyEditorPanel1" #propertyEditorPanel1> Date: Sat, 8 Feb 2025 08:04:33 +0200 Subject: [PATCH 129/154] Adding changes from build igniteui-xplat-examples-output+PRs_2025.2.8.2 --- .../charts/data-pie-chart/animation-replay/src/app.component.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/samples/charts/data-pie-chart/animation-replay/src/app.component.ts b/samples/charts/data-pie-chart/animation-replay/src/app.component.ts index 617bfbc01..bd40e70df 100644 --- a/samples/charts/data-pie-chart/animation-replay/src/app.component.ts +++ b/samples/charts/data-pie-chart/animation-replay/src/app.component.ts @@ -2,7 +2,6 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDet import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-angular-core'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; import { IgxPropertyEditorPropertyDescriptionButtonClickEventArgs } from 'igniteui-angular-layouts'; -import { IgxDomainChart } from 'igniteui-angular-charts'; import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; import { IgxDataPieChartComponent } from 'igniteui-angular-charts'; From d78c71a2240de13206e79c4c1da92da5a5c17adb Mon Sep 17 00:00:00 2001 From: IGvaleries Date: Wed, 19 Feb 2025 15:18:38 -0500 Subject: [PATCH 130/154] remove use of EsrUtility in map navigation sample as URLs appear to be no longer valid --- .../geo-map/navigation/src/EsriUtility.ts | 70 ------------------- .../geo-map/navigation/src/app.component.ts | 9 +-- 2 files changed, 2 insertions(+), 77 deletions(-) delete mode 100644 samples/maps/geo-map/navigation/src/EsriUtility.ts diff --git a/samples/maps/geo-map/navigation/src/EsriUtility.ts b/samples/maps/geo-map/navigation/src/EsriUtility.ts deleted file mode 100644 index 59d62142a..000000000 --- a/samples/maps/geo-map/navigation/src/EsriUtility.ts +++ /dev/null @@ -1,70 +0,0 @@ -/* tslint:disable:object-literal-sort-keys */ -// tslint:disable:object-literal-shorthand -// tslint:disable:max-line-length -// tslint:disable:member-ordering - -/** - * Describes available links to imagery tile sources on public ArcGIS/Esri servers. - * You can find up-to-date list on https://services.arcgisonline.com/arcgis/rest/services - */ -export enum EsriStyle { - - // these Esri maps show geographic tiles for the whole of world - WorldStreetMap = "https://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer", - WorldTopographicMap = "https://services.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer", - WorldImageryMap = "https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer", - WorldOceansMap = "https://services.arcgisonline.com/ArcGIS/rest/services/Ocean_Basemap/MapServer", - WorldNationalGeoMap = "https://services.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer", - WorldTerrainMap = "https://services.arcgisonline.com/ArcGIS/rest/services/World_Terrain_Base/MapServer", - WorldDeLormesMap = "https://services.arcgisonline.com/ArcGIS/rest/services/Specialty/DeLorme_World_Base_Map/MapServer", - WorldLightGrayMap = "https://services.arcgisonline.com/ArcGIS/rest/services/Canvas/World_Light_Gray_Base/MapServer", - WorldShadedReliefMap = "https://services.arcgisonline.com/ArcGIS/rest/services/World_Shaded_Relief/MapServer", - WorldPhysicalMap = "https://services.arcgisonline.com/ArcGIS/rest/services/World_Physical_Map/MapServer", - - // these Esri maps show geographic tiles for the whole of world without contours of continents - // therefore the Map should also load a shapefile of continents when using them - WorldAdminOverlay = "https://services.arcgisonline.com/ArcGIS/rest/services/Reference/World_Reference_Overlay/MapServer", - WorldTransportationOverlay = "https://services.arcgisonline.com/ArcGIS/rest/services/Reference/World_Transportation/MapServer", - WorldBoundariesDarkOverlay = "https://services.arcgisonline.com/ArcGIS/rest/services/Reference/World_Boundaries_and_Places/MapServer", - WorldBoundariesLightOverlay = "https://services.arcgisonline.com/ArcGIS/rest/services/Reference/World_Boundaries_and_Places_Alternate/MapServer", - WorldLabelsLightGrayOverlay = "https://services.arcgisonline.com/ArcGIS/rest/services/Canvas/World_Light_Gray_Reference/MapServer", - - // these Esri maps show only geographic tiles for the USA - // therefore the Map should be zoomed in to geographic bounds of USA when using them - UsaOwnerOccupiedHousing = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Owner_Occupied_Housing/MapServer", - UsaSoilSurvey = "https://services.arcgisonline.com/ArcGIS/rest/services/Specialty/Soil_Survey_Map/MapServer", - UsaPopulationOlderThanAge64 = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Percent_Over_64/MapServer", - UsaPopulationYoungerThan18 = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Percent_Under_18/MapServer", - UsaPopulationGrowth2015 = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Projected_Population_Change/MapServer", - UsaUnemploymentRate = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Unemployment_Rate/MapServer", - UsaSocialVulnerability = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Social_Vulnerability_Index/MapServer", - UsaRetailSpendingPotential = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Retail_Spending_Potential/MapServer", - UsaPopulationChange2010 = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Recent_Population_Change/MapServer", - UsaPopulationChange2000 = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_1990-2000_Population_Change/MapServer", - UsaPopulationDensity = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Population_Density/MapServer", - UsaPopulationByGender = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Population_by_Sex/MapServer", - UsaMedianHouseholdIncome = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Median_Household_Income/MapServer", - UsaMedianNetWorth = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Median_Net_Worth/MapServer", - UsaMedianHomeValue = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Median_Home_Value/MapServer", - UsaMedianAge = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Median_Age/MapServer", - UsaLaborForceParticipation = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Labor_Force_Participation_Rate/MapServer", - UsaAverageHouseholdSize = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Average_Household_Size/MapServer", - UsaDiversityIndex = "https://services.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Diversity_Index/MapServer", - UsaRailNetwork = "https://services.arcgisonline.com/ArcGIS/rest/services/Reference/World_Reference_Overlay/MapServer" - -} - -export class EsriUtility { - - public static getUri(style: EsriStyle): string { - - const isHttpSecured = window.location.toString().startsWith("https:"); - - // resolving Esri Server uri based on hosting website - let uri: string = style; - if (!isHttpSecured) { - uri = uri.replace("https:", "http:"); - } - return uri; - } -} diff --git a/samples/maps/geo-map/navigation/src/app.component.ts b/samples/maps/geo-map/navigation/src/app.component.ts index 8288abf38..d3bb8cf9c 100644 --- a/samples/maps/geo-map/navigation/src/app.component.ts +++ b/samples/maps/geo-map/navigation/src/app.component.ts @@ -1,7 +1,6 @@ import { AfterViewInit, Component, TemplateRef, ViewChild, ChangeDetectorRef } from "@angular/core"; import { IgxArcGISOnlineMapImagery } from "igniteui-angular-maps"; import { IgxGeographicMapComponent } from "igniteui-angular-maps"; -import { EsriUtility, EsriStyle } from "./EsriUtility"; import { MapUtility, MapRegion } from "./MapUtility"; import { IgxRectChangedEventArgs } from "igniteui-angular-core"; @@ -67,12 +66,7 @@ export class AppComponent implements AfterViewInit { this.geoMap.zoomToGeographic({ left: -134.5, top: 16.5, width: 70.0, height: 37.0 }); - const tileSource = new IgxArcGISOnlineMapImagery(); - tileSource.mapServerUri = EsriUtility.getUri(EsriStyle.WorldOceansMap); - this.geoMap.backgroundContent = tileSource; - this.geoMap.windowPositionHorizontal = 0.1; - this.geoMap.windowPositionVertical = 0.1; - this.geoMap.windowScale = 0.1; + } } @@ -109,6 +103,7 @@ export class AppComponent implements AfterViewInit { } public onMapMouseMove = (e: any) => { + const bounds = e.target.getBoundingClientRect(); const relativeCoordinate = { x: e.clientX - bounds.left, From 58cc40a5b2ba05558424c923d93c95fd40800323 Mon Sep 17 00:00:00 2001 From: IGvaleries Date: Wed, 19 Feb 2025 16:33:18 -0500 Subject: [PATCH 131/154] fix treemap events sample --- .../tree-map/events/src/app.component.html | 18 +++++++++--------- .../tree-map/events/src/app.component.ts | 15 +++++++++++---- 2 files changed, 20 insertions(+), 13 deletions(-) diff --git a/samples/charts/tree-map/events/src/app.component.html b/samples/charts/tree-map/events/src/app.component.html index 875955992..8956a53ec 100644 --- a/samples/charts/tree-map/events/src/app.component.html +++ b/samples/charts/tree-map/events/src/app.component.html @@ -4,21 +4,21 @@ - + - + - +
- + - + - +
@@ -33,10 +33,10 @@ parentIdMemberPath="Parent" idMemberPath="Name" labelMemberPath="Name" - valueMemberPath="Pop" + valueMemberPath="Pop" (nodePointerEnter)="onNodePointerEnter($event.args)" - (nodePointerEnter)="onNodePointerLeave($event.args)" - (nodePointerEnter)="onNodePointerPressed($event.args)" + (nodePointerLeave)="onNodePointerLeave($event.args)" + (nodePointerPressed)="onNodePointerPressed($event.args)" headerDisplayMode="Overlay" fillBrushes="#299e41, #4e62cf, #5e359c" isFillScaleLogarithmic="true" diff --git a/samples/charts/tree-map/events/src/app.component.ts b/samples/charts/tree-map/events/src/app.component.ts index b7adddcd4..37a4457c4 100644 --- a/samples/charts/tree-map/events/src/app.component.ts +++ b/samples/charts/tree-map/events/src/app.component.ts @@ -1,4 +1,4 @@ -import { Component, OnInit } from "@angular/core"; +import { Component, OnInit , ChangeDetectorRef} from "@angular/core"; import { TreemapNodePointerEventArgs } from "igniteui-angular-charts"; @Component({ @@ -19,7 +19,7 @@ export class AppComponent implements OnInit { public HoveredNodeParent : string; public HoveredNodeValue : string; - constructor() { + constructor(private cdr: ChangeDetectorRef) { } public onNodePointerEnter(args: TreemapNodePointerEventArgs) { @@ -29,20 +29,24 @@ export class AppComponent implements OnInit { if (item.Parent == null) { this.HoveredNodeParent = "Countries"; this.HoveredNodeName = item.Name; - this.HoveredNodeValue = "None"; + this.HoveredNodeValue = "None"; } else { const population = (item.Pop / 1000000).toString(); this.HoveredNodeParent = item.Parent; this.HoveredNodeName = item.Name; - this.HoveredNodeValue = population; + this.HoveredNodeValue = population; } + this.cdr.detectChanges(); + } public onNodePointerLeave(args: TreemapNodePointerEventArgs) { + this.HoveredNodeParent = "None"; this.HoveredNodeName = "None"; this.HoveredNodeValue = "None"; + this.cdr.detectChanges(); } public onNodePointerPressed(args: TreemapNodePointerEventArgs) { @@ -54,6 +58,7 @@ export class AppComponent implements OnInit { this.SelectedNodeName = item.Name; this.SelectedNodeParent = "Countries"; this.SelectedNodeValue = "None"; + } else { @@ -61,7 +66,9 @@ export class AppComponent implements OnInit { this.SelectedNodeValue = population; this.SelectedNodeName = item.Name; this.SelectedNodeParent = item.Parent; + } + this.cdr.detectChanges(); } ngOnInit(): void { From 8f29f8c75cbf05d6742a0e72d3e5b0e34a4a916f Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Fri, 21 Feb 2025 09:54:18 -0500 Subject: [PATCH 132/154] Adding changes from build igniteui-xplat-examples-output+PRs_2025.2.21.1 --- .../financial-dashboard/src/MultipleStocks.ts | 2 +- .../selection-matcher/src/app.component.ts | 2 +- .../src/ContinentsBirthRate.ts | 126 +- .../src/app.component.html | 12 +- .../src/ContinentsBirthRate.ts | 126 +- .../src/app.component.html | 12 +- .../src/ContinentsBirthRate.ts | 126 +- .../src/app.component.html | 12 +- .../src/ContinentsBirthRate.ts | 126 +- .../src/app.component.html | 12 +- .../src/ContinentsBirthRate.ts | 126 +- .../stacked-area-chart/src/app.component.html | 12 +- .../src/ContinentsBirthRate.ts | 126 +- .../src/app.component.html | 12 +- .../src/ContinentsBirthRate.ts | 126 +- .../stacked-line-chart/src/app.component.html | 12 +- .../src/ContinentsBirthRate.ts | 126 +- .../src/app.component.html | 12 +- .../src/ContinentsBirthRate.ts | 126 +- .../src/app.component.html | 12 +- .../animation/src/app.component.html | 8 +- .../animation/src/app.component.ts | 6 +- .../highlighting/src/app.component.html | 4 + .../highlighting/src/app.component.ts | 6 +- .../others/src/app.component.html | 6 + .../others/src/app.component.ts | 8 +- .../selection/src/app.component.html | 6 +- .../selection/src/app.component.ts | 6 +- .../src/MultipleStocks.ts | 2 +- .../src/StockGoogle.ts | 9721 ++--------------- .../src/app.component.ts | 2 +- .../data-legend/src/MultipleStocks.ts | 2 +- .../src/MultipleStocks.ts | 2 +- .../src/StockGoogle.ts | 9721 ++--------------- .../src/app.component.ts | 2 +- .../data-tooltip/src/MultipleStocks.ts | 2 +- .../format-specifiers/src/MultipleStocks.ts | 2 +- .../scrollbars/src/MultipleStocks.ts | 2 +- .../src/app.module.ts | 4 +- .../custom-tool/src/app.component.html | 7 + .../toolbar/custom-tool/src/app.component.ts | 4 + .../toolbar/theming/src/app.component.html | 2 + .../toolbar/theming/src/app.component.ts | 4 +- 43 files changed, 2685 insertions(+), 18090 deletions(-) diff --git a/samples/charts/dashboard-tile/financial-dashboard/src/MultipleStocks.ts b/samples/charts/dashboard-tile/financial-dashboard/src/MultipleStocks.ts index 3688676b4..ca994ac34 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/src/MultipleStocks.ts +++ b/samples/charts/dashboard-tile/financial-dashboard/src/MultipleStocks.ts @@ -80,7 +80,7 @@ export class MultipleStocks extends Array> { for (let json of jsonData) { let parts = json.date.split("-"); // "2020-01-01" let item = new StockItem(); - item.date = new Date(parts[0], parts[1], parts[2]); + item.date = new Date(parts[0], parts[1], parts[2],13,0,0); item.open = json.open; item.high = json.high; item.low = json.low; diff --git a/samples/charts/data-chart/selection-matcher/src/app.component.ts b/samples/charts/data-chart/selection-matcher/src/app.component.ts index fc712cbef..e161bc447 100644 --- a/samples/charts/data-chart/selection-matcher/src/app.component.ts +++ b/samples/charts/data-chart/selection-matcher/src/app.component.ts @@ -58,7 +58,7 @@ export class AppComponent implements AfterViewInit var chart = this.chart; - this._timer = setInterval(() => { + this._timer = setTimeout(() => { var data = this.energyRenewableConsumption; let matcher: IgxSeriesMatcher = new IgxSeriesMatcher(); diff --git a/samples/charts/data-chart/stacked-100-area-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-100-area-chart/src/ContinentsBirthRate.ts index df127b125..2e1860ade 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-100-area-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-chart/stacked-100-area-chart/src/app.component.html b/samples/charts/data-chart/stacked-100-area-chart/src/app.component.html index 7dd2d0c11..eb3906958 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-100-area-chart/src/app.component.html @@ -20,7 +20,7 @@ name="xAxis" #xAxis [dataSource]="continentsBirthRate" - label="year"> + label="Year"> diff --git a/samples/charts/data-chart/stacked-100-line-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-100-line-chart/src/ContinentsBirthRate.ts index df127b125..2e1860ade 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-100-line-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-chart/stacked-100-line-chart/src/app.component.html b/samples/charts/data-chart/stacked-100-line-chart/src/app.component.html index da688b1bb..0fa369eeb 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-100-line-chart/src/app.component.html @@ -20,7 +20,7 @@ name="xAxis" #xAxis [dataSource]="continentsBirthRate" - label="year"> + label="Year"> diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-100-spline-area-chart/src/ContinentsBirthRate.ts index df127b125..2e1860ade 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.component.html b/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.component.html index 0591352de..53d57d732 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/src/app.component.html @@ -20,7 +20,7 @@ name="xAxis" #xAxis [dataSource]="continentsBirthRate" - label="year"> + label="Year"> diff --git a/samples/charts/data-chart/stacked-100-spline-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-100-spline-chart/src/ContinentsBirthRate.ts index df127b125..2e1860ade 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-100-spline-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-chart/stacked-100-spline-chart/src/app.component.html b/samples/charts/data-chart/stacked-100-spline-chart/src/app.component.html index aadbdc0e8..82befaa1d 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-100-spline-chart/src/app.component.html @@ -20,7 +20,7 @@ name="xAxis" #xAxis [dataSource]="continentsBirthRate" - label="year"> + label="Year"> diff --git a/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts index df127b125..2e1860ade 100644 --- a/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-chart/stacked-area-chart/src/app.component.html b/samples/charts/data-chart/stacked-area-chart/src/app.component.html index bc6847608..2c46031c1 100644 --- a/samples/charts/data-chart/stacked-area-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-area-chart/src/app.component.html @@ -20,7 +20,7 @@ name="xAxis" #xAxis [dataSource]="continentsBirthRate" - label="year" + label="Year" gap="0.75"> diff --git a/samples/charts/data-chart/stacked-column-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-column-chart/src/ContinentsBirthRate.ts index df127b125..2e1860ade 100644 --- a/samples/charts/data-chart/stacked-column-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-column-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-chart/stacked-column-chart/src/app.component.html b/samples/charts/data-chart/stacked-column-chart/src/app.component.html index 1d4a9358b..a3a8ac9bf 100644 --- a/samples/charts/data-chart/stacked-column-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-column-chart/src/app.component.html @@ -20,7 +20,7 @@ name="xAxis" #xAxis [dataSource]="continentsBirthRate" - label="year" + label="Year" gap="0.75"> diff --git a/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts index df127b125..2e1860ade 100644 --- a/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-chart/stacked-line-chart/src/app.component.html b/samples/charts/data-chart/stacked-line-chart/src/app.component.html index 0b703fb48..fdae910c6 100644 --- a/samples/charts/data-chart/stacked-line-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-line-chart/src/app.component.html @@ -20,7 +20,7 @@ name="xAxis" #xAxis [dataSource]="continentsBirthRate" - label="year" + label="Year" gap="0.75"> diff --git a/samples/charts/data-chart/stacked-spline-area-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-spline-area-chart/src/ContinentsBirthRate.ts index df127b125..2e1860ade 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-spline-area-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-chart/stacked-spline-area-chart/src/app.component.html b/samples/charts/data-chart/stacked-spline-area-chart/src/app.component.html index 25d41205b..61dde07c5 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-spline-area-chart/src/app.component.html @@ -20,7 +20,7 @@ name="xAxis" #xAxis [dataSource]="continentsBirthRate" - label="year" + label="Year" gap="0.75"> diff --git a/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts index df127b125..2e1860ade 100644 --- a/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-chart/stacked-spline-chart/src/app.component.html b/samples/charts/data-chart/stacked-spline-chart/src/app.component.html index b90e954cd..3185b55c6 100644 --- a/samples/charts/data-chart/stacked-spline-chart/src/app.component.html +++ b/samples/charts/data-chart/stacked-spline-chart/src/app.component.html @@ -20,7 +20,7 @@ name="xAxis" #xAxis [dataSource]="continentsBirthRate" - label="year" + label="Year" gap="0.75"> diff --git a/samples/charts/data-pie-chart/animation/src/app.component.html b/samples/charts/data-pie-chart/animation/src/app.component.html index bf0565a09..b621d9ad6 100644 --- a/samples/charts/data-pie-chart/animation/src/app.component.html +++ b/samples/charts/data-pie-chart/animation/src/app.component.html @@ -10,11 +10,15 @@ #propertyEditorPanel1> @@ -28,9 +32,9 @@ name="chart" #chart [dataSource]="energyGlobalDemand" - transitionInMode="Auto" + transitionInMode="FromZero" transitionInDuration="1000" - transitionInSpeedType="Random"> + transitionInSpeedType="IndexScaled">
diff --git a/samples/charts/data-pie-chart/animation/src/app.component.ts b/samples/charts/data-pie-chart/animation/src/app.component.ts index 7227e8072..2611ed808 100644 --- a/samples/charts/data-pie-chart/animation/src/app.component.ts +++ b/samples/charts/data-pie-chart/animation/src/app.component.ts @@ -1,7 +1,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-angular-core'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; -import { IgxPropertyEditorPanelComponent } from 'igniteui-angular-layouts'; +import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; import { IgxDataPieChartComponent } from 'igniteui-angular-charts'; import { defineAllComponents } from 'igniteui-webcomponents'; @@ -21,6 +21,10 @@ export class AppComponent implements AfterViewInit @ViewChild("propertyEditorPanel1", { static: true } ) private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("transitionInModeEditor", { static: true } ) + private transitionInModeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("transitionInSpeedTypeEditor", { static: true } ) + private transitionInSpeedTypeEditor: IgxPropertyEditorPropertyDescriptionComponent @ViewChild("chart", { static: true } ) private chart: IgxDataPieChartComponent private _energyGlobalDemand: EnergyGlobalDemand = null; diff --git a/samples/charts/data-pie-chart/highlighting/src/app.component.html b/samples/charts/data-pie-chart/highlighting/src/app.component.html index 07aa0c0e3..0de316734 100644 --- a/samples/charts/data-pie-chart/highlighting/src/app.component.html +++ b/samples/charts/data-pie-chart/highlighting/src/app.component.html @@ -10,11 +10,15 @@ #propertyEditorPanel1> diff --git a/samples/charts/data-pie-chart/highlighting/src/app.component.ts b/samples/charts/data-pie-chart/highlighting/src/app.component.ts index 7227e8072..107f814de 100644 --- a/samples/charts/data-pie-chart/highlighting/src/app.component.ts +++ b/samples/charts/data-pie-chart/highlighting/src/app.component.ts @@ -1,7 +1,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-angular-core'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; -import { IgxPropertyEditorPanelComponent } from 'igniteui-angular-layouts'; +import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; import { IgxDataPieChartComponent } from 'igniteui-angular-charts'; import { defineAllComponents } from 'igniteui-webcomponents'; @@ -21,6 +21,10 @@ export class AppComponent implements AfterViewInit @ViewChild("propertyEditorPanel1", { static: true } ) private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("highlightingModeEditor", { static: true } ) + private highlightingModeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("highlightingBehaviorEditor", { static: true } ) + private highlightingBehaviorEditor: IgxPropertyEditorPropertyDescriptionComponent @ViewChild("chart", { static: true } ) private chart: IgxDataPieChartComponent private _energyGlobalDemand: EnergyGlobalDemand = null; diff --git a/samples/charts/data-pie-chart/others/src/app.component.html b/samples/charts/data-pie-chart/others/src/app.component.html index 6e36278e5..60e145795 100644 --- a/samples/charts/data-pie-chart/others/src/app.component.html +++ b/samples/charts/data-pie-chart/others/src/app.component.html @@ -10,12 +10,16 @@ #propertyEditorPanel1> diff --git a/samples/charts/data-pie-chart/others/src/app.component.ts b/samples/charts/data-pie-chart/others/src/app.component.ts index 45cb6a1a7..42536bbb6 100644 --- a/samples/charts/data-pie-chart/others/src/app.component.ts +++ b/samples/charts/data-pie-chart/others/src/app.component.ts @@ -1,7 +1,7 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-angular-core'; import { DataPieDataItem, DataPieData } from './DataPieData'; -import { IgxPropertyEditorPanelComponent } from 'igniteui-angular-layouts'; +import { IgxPropertyEditorPanelComponent, IgxPropertyEditorPropertyDescriptionComponent } from 'igniteui-angular-layouts'; import { IgxDataPieChartComponent } from 'igniteui-angular-charts'; import { defineAllComponents } from 'igniteui-webcomponents'; @@ -21,6 +21,12 @@ export class AppComponent implements AfterViewInit @ViewChild("propertyEditorPanel1", { static: true } ) private propertyEditorPanel1: IgxPropertyEditorPanelComponent + @ViewChild("othersCategoryTypeEditor", { static: true } ) + private othersCategoryTypeEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("othersCategoryThresholdEditor", { static: true } ) + private othersCategoryThresholdEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("othersCategoryTextEditor", { static: true } ) + private othersCategoryTextEditor: IgxPropertyEditorPropertyDescriptionComponent @ViewChild("chart", { static: true } ) private chart: IgxDataPieChartComponent private _dataPieData: DataPieData = null; diff --git a/samples/charts/data-pie-chart/selection/src/app.component.html b/samples/charts/data-pie-chart/selection/src/app.component.html index 5a8771a99..da6604b1f 100644 --- a/samples/charts/data-pie-chart/selection/src/app.component.html +++ b/samples/charts/data-pie-chart/selection/src/app.component.html @@ -12,8 +12,8 @@ label="Selection Behavior: " valueType="EnumValue" propertyPath="SelectionBehavior" - name="SelectionBehavior" - #selectionBehavior + name="SelectionBehaviorEditor" + #selectionBehaviorEditor shouldOverrideDefaultEditor="true" dropDownNames="PerDataItemSingleSelect, PerDataItemMultiSelect" dropDownValues="PerDataItemSingleSelect, PerDataItemMultiSelect" @@ -21,6 +21,8 @@ diff --git a/samples/charts/data-pie-chart/selection/src/app.component.ts b/samples/charts/data-pie-chart/selection/src/app.component.ts index 7a1b195b8..49a402c98 100644 --- a/samples/charts/data-pie-chart/selection/src/app.component.ts +++ b/samples/charts/data-pie-chart/selection/src/app.component.ts @@ -21,8 +21,10 @@ export class AppComponent implements AfterViewInit @ViewChild("propertyEditorPanel1", { static: true } ) private propertyEditorPanel1: IgxPropertyEditorPanelComponent - @ViewChild("selectionBehavior", { static: true } ) - private selectionBehavior: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("selectionBehaviorEditor", { static: true } ) + private selectionBehaviorEditor: IgxPropertyEditorPropertyDescriptionComponent + @ViewChild("selectionModeEditor", { static: true } ) + private selectionModeEditor: IgxPropertyEditorPropertyDescriptionComponent @ViewChild("chart", { static: true } ) private chart: IgxDataPieChartComponent private _energyGlobalDemand: EnergyGlobalDemand = null; diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/src/MultipleStocks.ts b/samples/charts/financial-chart/data-legend-formatting-currency/src/MultipleStocks.ts index 3688676b4..ca994ac34 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/src/MultipleStocks.ts +++ b/samples/charts/financial-chart/data-legend-formatting-currency/src/MultipleStocks.ts @@ -80,7 +80,7 @@ export class MultipleStocks extends Array> { for (let json of jsonData) { let parts = json.date.split("-"); // "2020-01-01" let item = new StockItem(); - item.date = new Date(parts[0], parts[1], parts[2]); + item.date = new Date(parts[0], parts[1], parts[2],13,0,0); item.open = json.open; item.high = json.high; item.low = json.low; diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/StockGoogle.ts b/samples/charts/financial-chart/data-legend-styling-props/src/StockGoogle.ts index efd806727..f482695fe 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/src/StockGoogle.ts +++ b/samples/charts/financial-chart/data-legend-styling-props/src/StockGoogle.ts @@ -1,8727 +1,1000 @@ -export class StockGoogleItem { - public constructor(init: Partial) { - Object.assign(this, init); - } +//begin data +export class StockGoogle extends Array { - public date: string; - public open: number; - public high: number; - public low: number; - public close: number; - public volume: number; + constructor(){ + super(); + let jsonData = [ + { "Date": "2014-03-01", "Open": 559.6, "High": 568.2, "Low": 558.4, "Close": 566.9, "Volume": 2182626 }, + { "Date": "2014-03-02", "Open": 562.4, "High": 571.8, "Low": 561.4, "Close": 567.0, "Volume": 2088804 }, + { "Date": "2014-03-03", "Open": 569.9, "High": 587.3, "Low": 564.1, "Close": 569.7, "Volume": 5087530 }, + { "Date": "2014-03-04", "Open": 574.6, "High": 577.8, "Low": 543.0, "Close": 543.1, "Volume": 6377658 }, + { "Date": "2014-03-07", "Open": 540.7, "High": 548.5, "Low": 527.1, "Close": 538.1, "Volume": 4389569 }, + { "Date": "2014-03-08", "Open": 542.6, "High": 555.0, "Low": 541.6, "Close": 554.9, "Volume": 3152406 }, + { "Date": "2014-03-09", "Open": 559.6, "High": 565.4, "Low": 553.0, "Close": 564.1, "Volume": 3324742 }, + { "Date": "2014-03-10", "Open": 565.0, "High": 565.0, "Low": 539.9, "Close": 541.0, "Volume": 4027743 }, + { "Date": "2014-03-11", "Open": 532.5, "High": 540.0, "Low": 526.5, "Close": 530.6, "Volume": 3916171 }, + { "Date": "2014-03-14", "Open": 538.3, "High": 544.1, "Low": 529.6, "Close": 532.5, "Volume": 2568020 }, + { "Date": "2014-03-15", "Open": 536.8, "High": 538.5, "Low": 518.5, "Close": 536.4, "Volume": 3847453 }, + { "Date": "2014-03-16", "Open": 543.0, "High": 557.0, "Low": 540.0, "Close": 556.5, "Volume": 4879889 }, + { "Date": "2014-03-17", "Open": 548.8, "High": 549.5, "Low": 531.1, "Close": 536.1, "Volume": 6795393 }, + { "Date": "2014-03-21", "Open": 536.1, "High": 536.7, "Low": 525.6, "Close": 528.6, "Volume": 2561214 }, + { "Date": "2014-03-22", "Open": 528.6, "High": 537.2, "Low": 527.5, "Close": 534.8, "Volume": 2359421 }, + { "Date": "2014-03-23", "Open": 533.8, "High": 533.9, "Low": 526.3, "Close": 526.9, "Volume": 2051066 }, + { "Date": "2014-03-24", "Open": 530.1, "High": 531.6, "Low": 522.1, "Close": 525.2, "Volume": 1881965 }, + { "Date": "2014-03-25", "Open": 522.5, "High": 524.7, "Low": 515.4, "Close": 516.2, "Volume": 2097264 }, + { "Date": "2014-03-28", "Open": 517.2, "High": 518.6, "Low": 502.8, "Close": 517.1, "Volume": 3326429 }, + { "Date": "2014-03-29", "Open": 516.9, "High": 529.5, "Low": 516.3, "Close": 527.7, "Volume": 2692489 }, + { "Date": "2014-03-30", "Open": 527.6, "High": 528.0, "Low": 522.5, "Close": 526.7, "Volume": 1746904 }, + { "Date": "2014-04-01", "Open": 527.1, "High": 532.9, "Low": 523.9, "Close": 531.4, "Volume": 1900432 }, + { "Date": "2014-04-02", "Open": 533.8, "High": 534.0, "Low": 525.6, "Close": 527.9, "Volume": 1685042 }, + { "Date": "2014-04-05", "Open": 524.8, "High": 528.9, "Low": 521.3, "Close": 527.8, "Volume": 1021408 }, + { "Date": "2014-04-06", "Open": 525.2, "High": 526.8, "Low": 515.1, "Close": 515.1, "Volume": 1684381 }, + { "Date": "2014-04-07", "Open": 515.8, "High": 516.7, "Low": 503.3, "Close": 510.0, "Volume": 3216077 }, + { "Date": "2014-04-08", "Open": 508.5, "High": 517.2, "Low": 506.4, "Close": 511.0, "Volume": 2016131 }, + { "Date": "2014-04-09", "Open": 510.8, "High": 519.9, "Low": 504.2, "Close": 518.7, "Volume": 2432783 }, + { "Date": "2014-04-12", "Open": 523.5, "High": 530.2, "Low": 519.0, "Close": 529.9, "Volume": 1908392 }, + { "Date": "2014-04-13", "Open": 530.9, "High": 536.1, "Low": 529.5, "Close": 533.1, "Volume": 1648907 }, + { "Date": "2014-04-14", "Open": 533.0, "High": 533.0, "Low": 525.3, "Close": 526.6, "Volume": 1191863 }, + { "Date": "2014-04-15", "Open": 525.7, "High": 525.9, "Low": 517.4, "Close": 520.0, "Volume": 1703758 }, + { "Date": "2014-04-16", "Open": 521.4, "High": 521.8, "Low": 515.4, "Close": 520.6, "Volume": 1481688 }, + { "Date": "2014-04-19", "Open": 519.7, "High": 529.8, "Low": 517.6, "Close": 528.9, "Volume": 1276362 }, + { "Date": "2014-04-20", "Open": 529.7, "High": 536.2, "Low": 526.3, "Close": 529.8, "Volume": 1780113 }, + { "Date": "2014-04-21", "Open": 532.9, "High": 539.2, "Low": 531.9, "Close": 538.9, "Volume": 1193389 }, + { "Date": "2014-04-22", "Open": 541.1, "High": 547.6, "Low": 540.8, "Close": 545.1, "Volume": 1611837 }, + { "Date": "2014-04-23", "Open": 547.3, "High": 553.6, "Low": 543.7, "Close": 552.7, "Volume": 1929632 }, + { "Date": "2014-04-27", "Open": 556.0, "High": 566.0, "Low": 554.4, "Close": 566.0, "Volume": 2100298 }, + { "Date": "2014-04-28", "Open": 564.6, "High": 567.8, "Low": 561.0, "Close": 561.7, "Volume": 1647717 }, + { "Date": "2014-04-29", "Open": 563.4, "High": 564.0, "Low": 558.7, "Close": 560.1, "Volume": 1350657 }, + { "Date": "2014-04-30", "Open": 560.8, "High": 561.4, "Low": 555.9, "Close": 559.9, "Volume": 1766794 }, + { "Date": "2014-05-02", "Open": 560.7, "High": 560.9, "Low": 545.7, "Close": 553.9, "Volume": 1434989 }, + { "Date": "2014-05-03", "Open": 551.0, "High": 552.3, "Low": 542.5, "Close": 544.9, "Volume": 1861921 }, + { "Date": "2014-05-04", "Open": 541.5, "High": 548.6, "Low": 538.8, "Close": 544.7, "Volume": 1812084 }, + { "Date": "2014-05-05", "Open": 546.4, "High": 555.0, "Low": 544.5, "Close": 553.9, "Volume": 1684886 }, + { "Date": "2014-05-06", "Open": 558.1, "High": 558.1, "Low": 548.9, "Close": 556.3, "Volume": 1732592 }, + { "Date": "2014-05-09", "Open": 557.1, "High": 562.9, "Low": 556.0, "Close": 562.1, "Volume": 1463676 }, + { "Date": "2014-05-10", "Open": 560.5, "High": 563.6, "Low": 557.9, "Close": 560.5, "Volume": 1349444 }, + { "Date": "2014-05-11", "Open": 558.0, "High": 559.9, "Low": 555.0, "Close": 558.8, "Volume": 1097380 }, + { "Date": "2014-05-12", "Open": 557.3, "High": 558.0, "Low": 548.5, "Close": 551.4, "Volume": 1457104 }, + { "Date": "2014-05-13", "Open": 552.3, "High": 552.3, "Low": 545.6, "Close": 551.8, "Volume": 1217176 }, + { "Date": "2014-05-16", "Open": 549.3, "High": 549.6, "Low": 541.5, "Close": 544.3, "Volume": 1704027 }, + { "Date": "2014-05-17", "Open": 544.2, "High": 545.3, "Low": 539.3, "Close": 543.0, "Volume": 1445878 }, + { "Date": "2014-05-18", "Open": 544.9, "High": 553.6, "Low": 544.0, "Close": 553.4, "Volume": 1737343 }, + { "Date": "2014-05-19", "Open": 554.2, "High": 555.0, "Low": 548.5, "Close": 554.9, "Volume": 2451341 }, + { "Date": "2014-05-20", "Open": 556.9, "High": 557.6, "Low": 550.4, "Close": 556.4, "Volume": 4496962 }, + { "Date": "2014-05-23", "Open": 555.1, "High": 565.0, "Low": 554.3, "Close": 565.0, "Volume": 1534659 }, + { "Date": "2014-05-24", "Open": 565.2, "High": 572.6, "Low": 561.0, "Close": 564.6, "Volume": 2201789 }, + { "Date": "2014-05-25", "Open": 565.3, "High": 580.0, "Low": 565.2, "Close": 578.6, "Volume": 1964447 }, + { "Date": "2014-05-26", "Open": 581.0, "High": 582.5, "Low": 571.9, "Close": 576.0, "Volume": 1737210 }, + { "Date": "2014-05-27", "Open": 577.2, "High": 579.9, "Low": 573.8, "Close": 577.2, "Volume": 2231174 }, + { "Date": "2014-05-30", "Open": 578.7, "High": 579.6, "Low": 574.8, "Close": 575.3, "Volume": 1310909 }, + { "Date": "2014-06-01", "Open": 578.3, "High": 584.4, "Low": 576.6, "Close": 582.7, "Volume": 1446309 }, + { "Date": "2014-06-02", "Open": 583.4, "High": 585.4, "Low": 580.4, "Close": 582.3, "Volume": 1054936 }, + { "Date": "2014-06-03", "Open": 583.4, "High": 585.0, "Low": 580.9, "Close": 584.7, "Volume": 712210 }, + { "Date": "2014-06-07", "Open": 583.8, "High": 586.4, "Low": 579.6, "Close": 582.3, "Volume": 1061833 }, + { "Date": "2014-06-08", "Open": 577.7, "High": 579.5, "Low": 566.1, "Close": 571.1, "Volume": 1908647 }, + { "Date": "2014-06-09", "Open": 571.6, "High": 576.7, "Low": 569.4, "Close": 576.1, "Volume": 1113907 }, + { "Date": "2014-06-10", "Open": 565.9, "High": 576.6, "Low": 565.0, "Close": 571.1, "Volume": 1353317 }, + { "Date": "2014-06-11", "Open": 571.9, "High": 580.9, "Low": 571.4, "Close": 579.2, "Volume": 1617569 }, + { "Date": "2014-06-14", "Open": 582.6, "High": 585.2, "Low": 578.0, "Close": 584.9, "Volume": 1852290 }, + { "Date": "2014-06-15", "Open": 585.7, "High": 585.8, "Low": 576.6, "Close": 584.8, "Volume": 1618815 }, + { "Date": "2014-06-16", "Open": 588.0, "High": 588.4, "Low": 582.2, "Close": 582.7, "Volume": 1394560 }, + { "Date": "2014-06-17", "Open": 579.5, "High": 581.0, "Low": 568.6, "Close": 573.7, "Volume": 3015475 }, + { "Date": "2014-06-18", "Open": 593.0, "High": 596.8, "Low": 582.0, "Close": 595.1, "Volume": 4006389 }, + { "Date": "2014-06-21", "Open": 591.8, "High": 594.4, "Low": 585.2, "Close": 589.5, "Volume": 2060334 }, + { "Date": "2014-06-22", "Open": 590.7, "High": 599.6, "Low": 590.6, "Close": 594.7, "Volume": 1694787 }, + { "Date": "2014-06-23", "Open": 593.2, "High": 597.9, "Low": 592.5, "Close": 596.0, "Volume": 1229846 }, + { "Date": "2014-06-24", "Open": 596.5, "High": 599.5, "Low": 591.8, "Close": 593.4, "Volume": 1033341 }, + { "Date": "2014-06-25", "Open": 590.4, "High": 591.9, "Low": 587.0, "Close": 589.0, "Volume": 932724 }, + { "Date": "2014-06-28", "Open": 588.1, "High": 592.5, "Low": 584.8, "Close": 590.6, "Volume": 984161 }, + { "Date": "2014-06-29", "Open": 588.8, "High": 589.7, "Low": 583.5, "Close": 585.6, "Volume": 1346647 }, + { "Date": "2014-06-30", "Open": 586.5, "High": 589.5, "Low": 584.0, "Close": 587.4, "Volume": 1013932 }, + { "Date": "2014-06-31", "Open": 580.6, "High": 583.6, "Low": 570.0, "Close": 571.6, "Volume": 2099516 }, + { "Date": "2014-07-01", "Open": 570.4, "High": 576.0, "Low": 562.9, "Close": 566.1, "Volume": 1950171 }, + { "Date": "2014-07-04", "Open": 569.0, "High": 575.4, "Low": 564.1, "Close": 573.1, "Volume": 1427169 }, + { "Date": "2014-07-05", "Open": 570.0, "High": 572.0, "Low": 562.6, "Close": 565.1, "Volume": 1556685 }, + { "Date": "2014-07-06", "Open": 561.8, "High": 570.7, "Low": 560.0, "Close": 566.4, "Volume": 1330877 }, + { "Date": "2014-07-07", "Open": 568.0, "High": 569.9, "Low": 561.1, "Close": 563.4, "Volume": 1108900 }, + { "Date": "2014-07-08", "Open": 563.6, "High": 570.3, "Low": 560.4, "Close": 568.8, "Volume": 1492491 }, + { "Date": "2014-07-11", "Open": 570.0, "High": 570.5, "Low": 566.0, "Close": 567.9, "Volume": 1215968 }, + { "Date": "2014-07-12", "Open": 564.5, "High": 565.9, "Low": 560.9, "Close": 562.7, "Volume": 1537758 }, + { "Date": "2014-07-13", "Open": 567.3, "High": 575.0, "Low": 565.8, "Close": 574.8, "Volume": 1437922 }, + { "Date": "2014-07-14", "Open": 576.2, "High": 577.9, "Low": 570.9, "Close": 574.6, "Volume": 982926 }, + { "Date": "2014-07-15", "Open": 577.9, "High": 579.4, "Low": 570.5, "Close": 573.5, "Volume": 1517056 }, + { "Date": "2014-07-18", "Open": 576.1, "High": 584.5, "Low": 576.0, "Close": 582.2, "Volume": 1282531 }, + { "Date": "2014-07-19", "Open": 585.0, "High": 587.3, "Low": 584.0, "Close": 586.9, "Volume": 979298 }, + { "Date": "2014-07-20", "Open": 585.9, "High": 586.7, "Low": 582.6, "Close": 584.5, "Volume": 1034779 }, + { "Date": "2014-07-21", "Open": 583.8, "High": 584.5, "Low": 581.1, "Close": 583.4, "Volume": 912854 }, + { "Date": "2014-07-22", "Open": 583.6, "High": 585.2, "Low": 580.6, "Close": 582.6, "Volume": 789484 }, + { "Date": "2014-07-25", "Open": 584.7, "High": 585.0, "Low": 579.0, "Close": 580.2, "Volume": 1358810 }, + { "Date": "2014-07-26", "Open": 581.3, "High": 581.8, "Low": 576.6, "Close": 577.9, "Volume": 1635465 }, + { "Date": "2014-07-27", "Open": 577.3, "High": 578.5, "Low": 570.1, "Close": 571.0, "Volume": 1700161 }, + { "Date": "2014-07-28", "Open": 569.6, "High": 573.3, "Low": 567.1, "Close": 569.2, "Volume": 1295963 }, + { "Date": "2014-07-29", "Open": 571.3, "High": 572.0, "Low": 567.1, "Close": 571.6, "Volume": 1081231 }, + { "Date": "2014-08-02", "Open": 571.9, "High": 577.8, "Low": 571.2, "Close": 577.3, "Volume": 1576830 }, + { "Date": "2014-08-03", "Open": 580.0, "High": 583.0, "Low": 575.0, "Close": 577.9, "Volume": 1214586 }, + { "Date": "2014-08-04", "Open": 580.0, "High": 586.0, "Low": 579.2, "Close": 582.0, "Volume": 1459956 }, + { "Date": "2014-08-05", "Open": 584.0, "High": 586.5, "Low": 582.0, "Close": 586.1, "Volume": 1629477 }, + { "Date": "2014-08-08", "Open": 586.6, "High": 591.8, "Low": 586.3, "Close": 589.7, "Volume": 1429101 }, + { "Date": "2014-08-09", "Open": 588.9, "High": 589.0, "Low": 580.0, "Close": 581.0, "Volume": 1286722 }, + { "Date": "2014-08-10", "Open": 581.5, "High": 583.5, "Low": 576.9, "Close": 583.1, "Volume": 975145 }, + { "Date": "2014-08-11", "Open": 580.4, "High": 581.8, "Low": 576.3, "Close": 581.4, "Volume": 1217721 }, + { "Date": "2014-08-12", "Open": 581.0, "High": 581.6, "Low": 574.5, "Close": 575.6, "Volume": 1597677 }, + { "Date": "2014-08-15", "Open": 572.9, "High": 575.0, "Low": 568.2, "Close": 573.1, "Volume": 1596224 }, + { "Date": "2014-08-16", "Open": 572.8, "High": 581.5, "Low": 572.7, "Close": 580.0, "Volume": 1478306 }, + { "Date": "2014-08-17", "Open": 580.0, "High": 587.5, "Low": 578.8, "Close": 584.8, "Volume": 1690994 }, + { "Date": "2014-08-18", "Open": 587.0, "High": 589.5, "Low": 585.0, "Close": 589.3, "Volume": 1442012 }, + { "Date": "2014-08-19", "Open": 591.5, "High": 596.5, "Low": 589.5, "Close": 596.1, "Volume": 3727045 }, + { "Date": "2014-08-22", "Open": 593.8, "High": 594.0, "Low": 583.5, "Close": 587.4, "Volume": 1687710 }, + { "Date": "2014-08-23", "Open": 586.9, "High": 586.9, "Low": 581.0, "Close": 581.1, "Volume": 1467703 }, + { "Date": "2014-08-24", "Open": 581.5, "High": 589.6, "Low": 580.5, "Close": 588.0, "Volume": 1724537 }, + { "Date": "2014-08-25", "Open": 587.5, "High": 588.0, "Low": 574.2, "Close": 575.1, "Volume": 1925350 }, + { "Date": "2014-08-26", "Open": 576.1, "High": 579.3, "Low": 574.7, "Close": 577.1, "Volume": 1439807 }, + { "Date": "2014-08-29", "Open": 571.8, "High": 578.2, "Low": 571.2, "Close": 576.4, "Volume": 1281204 }, + { "Date": "2014-08-30", "Open": 576.9, "High": 579.9, "Low": 572.9, "Close": 577.4, "Volume": 1618437 }, + { "Date": "2014-09-01", "Open": 576.0, "High": 577.6, "Low": 567.0, "Close": 568.3, "Volume": 1445027 }, + { "Date": "2014-09-02", "Open": 567.3, "High": 571.9, "Low": 563.3, "Close": 570.1, "Volume": 1175307 }, + { "Date": "2014-09-03", "Open": 573.0, "High": 577.2, "Low": 572.5, "Close": 575.3, "Volume": 1138636 }, + { "Date": "2014-09-06", "Open": 578.8, "High": 581.0, "Low": 574.4, "Close": 577.4, "Volume": 1211320 }, + { "Date": "2014-09-07", "Open": 574.4, "High": 575.3, "Low": 563.7, "Close": 563.7, "Volume": 1906427 }, + { "Date": "2014-09-08", "Open": 565.6, "High": 573.9, "Low": 557.5, "Close": 572.5, "Volume": 1987888 }, + { "Date": "2014-09-09", "Open": 571.2, "High": 571.5, "Low": 559.1, "Close": 560.9, "Volume": 2519693 }, + { "Date": "2014-09-10", "Open": 557.7, "High": 565.1, "Low": 544.0, "Close": 544.5, "Volume": 3078634 }, + { "Date": "2014-09-13", "Open": 545.0, "High": 549.5, "Low": 533.1, "Close": 533.2, "Volume": 2578676 }, + { "Date": "2014-09-14", "Open": 538.9, "High": 547.2, "Low": 533.2, "Close": 537.9, "Volume": 2217230 }, + { "Date": "2014-09-15", "Open": 531.0, "High": 532.8, "Low": 518.3, "Close": 530.0, "Volume": 3712536 }, + { "Date": "2014-09-16", "Open": 519.0, "High": 529.4, "Low": 515.0, "Close": 524.5, "Volume": 3698423 }, + { "Date": "2014-09-17", "Open": 527.3, "High": 531.0, "Low": 508.5, "Close": 511.2, "Volume": 5530674 }, + { "Date": "2014-09-20", "Open": 509.4, "High": 521.8, "Low": 508.1, "Close": 520.8, "Volume": 2605505 }, + { "Date": "2014-09-21", "Open": 525.2, "High": 526.8, "Low": 519.1, "Close": 526.5, "Volume": 2332531 }, + { "Date": "2014-09-22", "Open": 529.9, "High": 539.8, "Low": 528.8, "Close": 532.7, "Volume": 2917183 }, + { "Date": "2014-09-23", "Open": 539.3, "High": 547.2, "Low": 535.9, "Close": 544.0, "Volume": 2345296 }, + { "Date": "2014-09-24", "Open": 544.4, "High": 544.9, "Low": 535.8, "Close": 539.8, "Volume": 1972047 }, + { "Date": "2014-09-27", "Open": 537.0, "High": 544.4, "Low": 537.0, "Close": 540.8, "Volume": 1184973 }, + { "Date": "2014-09-28", "Open": 543.0, "High": 549.0, "Low": 541.6, "Close": 548.9, "Volume": 1273372 }, + { "Date": "2014-09-29", "Open": 550.0, "High": 554.2, "Low": 547.0, "Close": 549.3, "Volume": 1767107 }, + { "Date": "2014-09-30", "Open": 549.0, "High": 552.8, "Low": 543.5, "Close": 550.3, "Volume": 1451667 }, + { "Date": "2014-09-31", "Open": 559.4, "High": 559.6, "Low": 554.8, "Close": 559.1, "Volume": 2032887 }, + { "Date": "2014-10-03", "Open": 555.5, "High": 557.9, "Low": 553.2, "Close": 555.2, "Volume": 1378511 }, + { "Date": "2014-10-04", "Open": 553.0, "High": 555.5, "Low": 549.3, "Close": 554.1, "Volume": 1240761 }, + { "Date": "2014-10-05", "Open": 556.8, "High": 556.8, "Low": 544.0, "Close": 545.9, "Volume": 2026740 }, + { "Date": "2014-10-06", "Open": 545.5, "High": 546.9, "Low": 541.0, "Close": 542.0, "Volume": 1329604 }, + { "Date": "2014-10-07", "Open": 546.2, "High": 546.2, "Low": 538.7, "Close": 541.0, "Volume": 1629259 }, + { "Date": "2014-10-10", "Open": 541.5, "High": 549.6, "Low": 541.0, "Close": 547.5, "Volume": 1131546 }, + { "Date": "2014-10-11", "Open": 548.5, "High": 551.9, "Low": 546.3, "Close": 550.3, "Volume": 964866 }, + { "Date": "2014-10-12", "Open": 550.4, "High": 550.5, "Low": 545.2, "Close": 547.3, "Volume": 1126594 }, + { "Date": "2014-10-13", "Open": 549.8, "High": 549.8, "Low": 543.5, "Close": 545.4, "Volume": 1335719 }, + { "Date": "2014-10-14", "Open": 546.7, "High": 546.7, "Low": 542.1, "Close": 544.4, "Volume": 1285991 }, + { "Date": "2014-10-17", "Open": 543.6, "High": 543.8, "Low": 534.1, "Close": 536.5, "Volume": 1721282 }, + { "Date": "2014-10-18", "Open": 537.5, "High": 541.9, "Low": 534.2, "Close": 535.0, "Volume": 1957664 }, + { "Date": "2014-10-19", "Open": 535.0, "High": 538.2, "Low": 530.1, "Close": 537.0, "Volume": 1388440 }, + { "Date": "2014-10-20", "Open": 531.3, "High": 535.1, "Low": 531.1, "Close": 534.8, "Volume": 1559131 }, + { "Date": "2014-10-21", "Open": 541.6, "High": 542.1, "Low": 536.6, "Close": 537.5, "Volume": 2218249 }, + { "Date": "2014-10-24", "Open": 537.6, "High": 542.7, "Low": 535.6, "Close": 539.3, "Volume": 1701682 }, + { "Date": "2014-10-25", "Open": 539.0, "High": 544.0, "Low": 538.6, "Close": 541.1, "Volume": 1784967 }, + { "Date": "2014-10-26", "Open": 540.9, "High": 541.5, "Low": 537.0, "Close": 540.4, "Volume": 1519503 }, + { "Date": "2014-10-28", "Open": 540.6, "High": 542.0, "Low": 536.6, "Close": 541.8, "Volume": 1145231 }, + { "Date": "2014-11-01", "Open": 538.9, "High": 541.4, "Low": 531.9, "Close": 533.8, "Volume": 2109599 }, + { "Date": "2014-11-02", "Open": 533.5, "High": 535.5, "Low": 529.8, "Close": 533.8, "Volume": 1522481 }, + { "Date": "2014-11-03", "Open": 531.4, "High": 536.0, "Low": 529.3, "Close": 531.3, "Volume": 1279288 }, + { "Date": "2014-11-04", "Open": 531.2, "High": 537.3, "Low": 528.6, "Close": 537.3, "Volume": 1392208 }, + { "Date": "2014-11-05", "Open": 531.0, "High": 532.9, "Low": 524.3, "Close": 525.3, "Volume": 2558649 }, + { "Date": "2014-11-08", "Open": 527.1, "High": 531.0, "Low": 523.8, "Close": 527.0, "Volume": 2327127 }, + { "Date": "2014-11-09", "Open": 522.1, "High": 534.2, "Low": 520.5, "Close": 533.4, "Volume": 1871268 }, + { "Date": "2014-11-10", "Open": 533.1, "High": 536.3, "Low": 525.6, "Close": 526.1, "Volume": 1716835 }, + { "Date": "2014-11-11", "Open": 527.8, "High": 533.9, "Low": 527.1, "Close": 528.3, "Volume": 1610964 }, + { "Date": "2014-11-12", "Open": 523.5, "High": 528.5, "Low": 518.7, "Close": 518.7, "Volume": 1989117 }, + { "Date": "2014-11-15", "Open": 522.7, "High": 523.1, "Low": 513.3, "Close": 513.8, "Volume": 2812786 }, + { "Date": "2014-11-16", "Open": 511.6, "High": 513.0, "Low": 489.0, "Close": 495.4, "Volume": 3953371 }, + { "Date": "2014-11-17", "Open": 497.0, "High": 507.0, "Low": 496.8, "Close": 504.9, "Volume": 2875281 }, + { "Date": "2014-11-18", "Open": 513.0, "High": 513.9, "Low": 504.7, "Close": 511.1, "Volume": 2918730 }, + { "Date": "2014-11-19", "Open": 511.5, "High": 517.7, "Low": 506.9, "Close": 516.4, "Volume": 3680148 }, + { "Date": "2014-11-22", "Open": 516.1, "High": 526.5, "Low": 516.1, "Close": 524.9, "Volume": 2723599 }, + { "Date": "2014-11-23", "Open": 527.0, "High": 534.6, "Low": 526.3, "Close": 530.6, "Volume": 2191567 }, + { "Date": "2014-11-24", "Open": 530.5, "High": 531.8, "Low": 527.0, "Close": 528.8, "Volume": 704035 }, + { "Date": "2014-11-26", "Open": 528.8, "High": 534.3, "Low": 527.3, "Close": 534.0, "Volume": 1037727 }, + { "Date": "2014-11-29", "Open": 532.2, "High": 535.5, "Low": 530.0, "Close": 530.3, "Volume": 2276104 }, + { "Date": "2014-11-30", "Open": 528.1, "High": 531.1, "Low": 527.1, "Close": 530.4, "Volume": 873923 }, + { "Date": "2014-11-31", "Open": 531.3, "High": 532.6, "Low": 525.8, "Close": 526.4, "Volume": 1371819 }, + { "Date": "2015-00-02", "Open": 529.0, "High": 531.3, "Low": 524.1, "Close": 524.8, "Volume": 1446662 }, + { "Date": "2015-00-05", "Open": 523.3, "High": 524.3, "Low": 513.1, "Close": 513.9, "Volume": 2054238 }, + { "Date": "2015-00-06", "Open": 515.0, "High": 516.2, "Low": 501.1, "Close": 502.0, "Volume": 2891950 }, + { "Date": "2015-00-07", "Open": 507.0, "High": 507.2, "Low": 499.6, "Close": 501.1, "Volume": 2059366 }, + { "Date": "2015-00-08", "Open": 498.0, "High": 503.5, "Low": 491.0, "Close": 502.7, "Volume": 3344395 }, + { "Date": "2015-00-09", "Open": 504.8, "High": 504.9, "Low": 494.8, "Close": 496.2, "Volume": 2065715 }, + { "Date": "2015-00-12", "Open": 494.9, "High": 496.0, "Low": 487.6, "Close": 492.6, "Volume": 2320446 }, + { "Date": "2015-00-13", "Open": 498.8, "High": 503.0, "Low": 492.4, "Close": 496.2, "Volume": 2365687 }, + { "Date": "2015-00-14", "Open": 494.6, "High": 503.2, "Low": 493.0, "Close": 500.9, "Volume": 2229638 }, + { "Date": "2015-00-15", "Open": 505.6, "High": 505.7, "Low": 497.8, "Close": 501.8, "Volume": 2711355 }, + { "Date": "2015-00-16", "Open": 500.0, "High": 508.2, "Low": 500.0, "Close": 508.1, "Volume": 2292043 }, + { "Date": "2015-00-20", "Open": 511.0, "High": 512.5, "Low": 506.0, "Close": 506.9, "Volume": 2225922 }, + { "Date": "2015-00-21", "Open": 507.3, "High": 519.3, "Low": 506.2, "Close": 518.0, "Volume": 2262455 }, + { "Date": "2015-00-22", "Open": 521.5, "High": 536.3, "Low": 519.7, "Close": 534.4, "Volume": 2669558 }, + { "Date": "2015-00-23", "Open": 535.6, "High": 542.2, "Low": 533.0, "Close": 540.0, "Volume": 2275485 }, + { "Date": "2015-00-26", "Open": 538.5, "High": 539.0, "Low": 529.7, "Close": 535.2, "Volume": 1539524 }, + { "Date": "2015-00-27", "Open": 530.0, "High": 530.7, "Low": 518.2, "Close": 518.6, "Volume": 1898844 }, + { "Date": "2015-00-28", "Open": 522.8, "High": 523.0, "Low": 510.0, "Close": 510.0, "Volume": 1679230 }, + { "Date": "2015-00-29", "Open": 511.0, "High": 511.1, "Low": 501.2, "Close": 510.7, "Volume": 4174924 }, + { "Date": "2015-00-30", "Open": 515.9, "High": 539.9, "Low": 515.5, "Close": 534.5, "Volume": 5590977 }, + { "Date": "2015-01-02", "Open": 531.7, "High": 533.0, "Low": 518.5, "Close": 528.5, "Volume": 2841976 }, + { "Date": "2015-01-03", "Open": 528.0, "High": 533.4, "Low": 523.3, "Close": 529.2, "Volume": 2033085 }, + { "Date": "2015-01-04", "Open": 529.2, "High": 532.7, "Low": 521.3, "Close": 522.8, "Volume": 1659125 }, + { "Date": "2015-01-05", "Open": 523.8, "High": 528.5, "Low": 522.1, "Close": 527.6, "Volume": 1844687 }, + { "Date": "2015-01-06", "Open": 527.6, "High": 537.2, "Low": 526.4, "Close": 531.0, "Volume": 1758650 }, + { "Date": "2015-01-09", "Open": 528.0, "High": 532.0, "Low": 526.0, "Close": 527.8, "Volume": 1264276 }, + { "Date": "2015-01-10", "Open": 529.3, "High": 537.7, "Low": 526.9, "Close": 536.9, "Volume": 1745076 }, + { "Date": "2015-01-11", "Open": 535.3, "High": 538.5, "Low": 533.4, "Close": 536.0, "Volume": 1373970 }, + { "Date": "2015-01-12", "Open": 537.3, "High": 544.8, "Low": 534.7, "Close": 542.9, "Volume": 1615824 }, + { "Date": "2015-01-13", "Open": 543.4, "High": 549.9, "Low": 543.1, "Close": 549.0, "Volume": 1895126 }, + { "Date": "2015-01-17", "Open": 546.8, "High": 550.0, "Low": 541.1, "Close": 542.8, "Volume": 1612439 }, + { "Date": "2015-01-18", "Open": 541.4, "High": 545.5, "Low": 537.5, "Close": 539.7, "Volume": 1449089 }, + { "Date": "2015-01-19", "Open": 538.0, "High": 543.1, "Low": 538.0, "Close": 542.9, "Volume": 987478 }, + { "Date": "2015-01-20", "Open": 543.1, "High": 543.8, "Low": 535.8, "Close": 539.0, "Volume": 1441212 }, + { "Date": "2015-01-23", "Open": 536.0, "High": 536.4, "Low": 529.4, "Close": 531.9, "Volume": 1453907 }, + { "Date": "2015-01-24", "Open": 530.0, "High": 536.8, "Low": 528.3, "Close": 536.1, "Volume": 1002393 }, + { "Date": "2015-01-25", "Open": 535.9, "High": 546.2, "Low": 535.4, "Close": 543.9, "Volume": 1821041 }, + { "Date": "2015-01-26", "Open": 543.2, "High": 556.1, "Low": 541.5, "Close": 555.5, "Volume": 2305219 }, + { "Date": "2015-01-27", "Open": 554.2, "High": 564.7, "Low": 552.9, "Close": 558.4, "Volume": 2403553 }, + { "Date": "2015-02-02", "Open": 560.5, "High": 572.1, "Low": 558.8, "Close": 571.3, "Volume": 2123796 }, + { "Date": "2015-02-03", "Open": 570.5, "High": 575.4, "Low": 566.5, "Close": 573.6, "Volume": 1700084 }, + { "Date": "2015-02-04", "Open": 571.9, "High": 577.1, "Low": 568.0, "Close": 573.4, "Volume": 1871694 }, + { "Date": "2015-02-05", "Open": 575.0, "High": 577.9, "Low": 573.4, "Close": 575.3, "Volume": 1385818 }, + { "Date": "2015-02-06", "Open": 574.9, "High": 576.7, "Low": 566.8, "Close": 567.7, "Volume": 1654561 }, + { "Date": "2015-02-09", "Open": 566.9, "High": 570.3, "Low": 563.5, "Close": 568.9, "Volume": 1059336 }, + { "Date": "2015-02-10", "Open": 564.3, "High": 564.9, "Low": 554.7, "Close": 555.0, "Volume": 1787357 }, + { "Date": "2015-02-11", "Open": 555.1, "High": 558.1, "Low": 550.7, "Close": 551.2, "Volume": 1815763 }, + { "Date": "2015-02-12", "Open": 553.5, "High": 556.4, "Low": 550.5, "Close": 555.5, "Volume": 1385772 }, + { "Date": "2015-02-13", "Open": 553.5, "High": 558.4, "Low": 544.2, "Close": 547.3, "Volume": 1698872 }, + { "Date": "2015-02-16", "Open": 551.0, "High": 556.9, "Low": 546.0, "Close": 554.5, "Volume": 1636493 }, + { "Date": "2015-02-17", "Open": 551.7, "High": 553.8, "Low": 548.0, "Close": 550.8, "Volume": 1800570 }, + { "Date": "2015-02-18", "Open": 552.5, "High": 559.8, "Low": 547.0, "Close": 559.5, "Volume": 2128714 }, + { "Date": "2015-02-19", "Open": 559.4, "High": 560.8, "Low": 556.1, "Close": 558.0, "Volume": 1194049 }, + { "Date": "2015-02-20", "Open": 561.6, "High": 561.7, "Low": 559.0, "Close": 560.4, "Volume": 2609690 }, + { "Date": "2015-02-23", "Open": 560.4, "High": 562.4, "Low": 555.8, "Close": 558.8, "Volume": 1639306 }, + { "Date": "2015-02-24", "Open": 562.6, "High": 574.6, "Low": 561.2, "Close": 570.2, "Volume": 2576234 }, + { "Date": "2015-02-25", "Open": 570.5, "High": 572.3, "Low": 558.7, "Close": 558.8, "Volume": 2146384 }, + { "Date": "2015-02-26", "Open": 557.6, "High": 558.9, "Low": 550.6, "Close": 555.2, "Volume": 1568331 }, + { "Date": "2015-02-27", "Open": 553.0, "High": 555.3, "Low": 548.1, "Close": 548.3, "Volume": 1892323 }, + { "Date": "2015-02-30", "Open": 551.6, "High": 553.5, "Low": 548.2, "Close": 552.0, "Volume": 1283958 }, + { "Date": "2015-02-31", "Open": 550.0, "High": 554.7, "Low": 546.7, "Close": 548.0, "Volume": 1583677 }, + { "Date": "2015-03-01", "Open": 548.6, "High": 551.1, "Low": 539.5, "Close": 542.6, "Volume": 1957718 }, + { "Date": "2015-03-02", "Open": 540.9, "High": 540.9, "Low": 533.9, "Close": 535.5, "Volume": 1711737 }, + { "Date": "2015-03-06", "Open": 532.2, "High": 538.4, "Low": 529.6, "Close": 536.8, "Volume": 1320767 }, + { "Date": "2015-03-07", "Open": 538.1, "High": 542.7, "Low": 536.0, "Close": 537.0, "Volume": 1299298 }, + { "Date": "2015-03-08", "Open": 538.4, "High": 543.9, "Low": 538.4, "Close": 541.6, "Volume": 1175332 }, + { "Date": "2015-03-09", "Open": 541.0, "High": 542.0, "Low": 535.5, "Close": 540.8, "Volume": 1553586 }, + { "Date": "2015-03-10", "Open": 542.3, "High": 542.3, "Low": 537.3, "Close": 540.0, "Volume": 1405574 }, + { "Date": "2015-03-13", "Open": 538.4, "High": 544.1, "Low": 537.3, "Close": 539.2, "Volume": 1640809 }, + { "Date": "2015-03-14", "Open": 536.3, "High": 537.6, "Low": 528.1, "Close": 530.4, "Volume": 2597043 }, + { "Date": "2015-03-15", "Open": 528.7, "High": 534.7, "Low": 523.2, "Close": 532.5, "Volume": 2312512 }, + { "Date": "2015-03-16", "Open": 529.9, "High": 535.6, "Low": 529.6, "Close": 533.8, "Volume": 1296304 }, + { "Date": "2015-03-17", "Open": 528.7, "High": 529.8, "Low": 521.0, "Close": 524.0, "Volume": 2145955 }, + { "Date": "2015-03-20", "Open": 525.6, "High": 536.1, "Low": 524.5, "Close": 535.4, "Volume": 1675487 }, + { "Date": "2015-03-21", "Open": 537.5, "High": 539.4, "Low": 533.7, "Close": 534.0, "Volume": 1839668 }, + { "Date": "2015-03-22", "Open": 534.4, "High": 541.1, "Low": 531.8, "Close": 539.4, "Volume": 1589248 }, + { "Date": "2015-03-23", "Open": 541.0, "High": 551.0, "Low": 540.2, "Close": 547.0, "Volume": 4173376 }, + { "Date": "2015-03-24", "Open": 566.1, "High": 571.1, "Low": 557.3, "Close": 565.1, "Volume": 4919031 }, + { "Date": "2015-03-27", "Open": 563.4, "High": 566.0, "Low": 553.2, "Close": 555.4, "Volume": 2398039 }, + { "Date": "2015-03-28", "Open": 554.6, "High": 556.0, "Low": 550.4, "Close": 553.7, "Volume": 1490983 }, + { "Date": "2015-03-29", "Open": 550.5, "High": 553.7, "Low": 546.9, "Close": 549.1, "Volume": 1698761 }, + { "Date": "2015-03-30", "Open": 547.9, "High": 548.6, "Low": 535.0, "Close": 537.3, "Volume": 2082214 }, + { "Date": "2015-04-01", "Open": 538.4, "High": 539.5, "Low": 532.1, "Close": 537.9, "Volume": 1768181 }, + { "Date": "2015-04-04", "Open": 538.5, "High": 544.1, "Low": 535.1, "Close": 540.8, "Volume": 1307960 }, + { "Date": "2015-04-05", "Open": 538.2, "High": 539.7, "Low": 530.4, "Close": 530.8, "Volume": 1383068 }, + { "Date": "2015-04-06", "Open": 531.2, "High": 532.4, "Low": 521.1, "Close": 524.2, "Volume": 1566987 }, + { "Date": "2015-04-07", "Open": 524.0, "High": 533.5, "Low": 521.8, "Close": 530.7, "Volume": 1546278 }, + { "Date": "2015-04-08", "Open": 536.6, "High": 541.1, "Low": 536.0, "Close": 538.2, "Volume": 1527615 }, + { "Date": "2015-04-11", "Open": 538.4, "High": 542.0, "Low": 535.4, "Close": 535.7, "Volume": 905285 }, + { "Date": "2015-04-12", "Open": 531.6, "High": 533.2, "Low": 525.3, "Close": 529.0, "Volume": 1634174 }, + { "Date": "2015-04-13", "Open": 530.6, "High": 534.3, "Low": 528.7, "Close": 529.6, "Volume": 1253063 }, + { "Date": "2015-04-14", "Open": 533.8, "High": 539.0, "Low": 532.4, "Close": 538.4, "Volume": 1403935 }, + { "Date": "2015-04-15", "Open": 539.2, "High": 539.3, "Low": 530.4, "Close": 533.9, "Volume": 1971343 }, + { "Date": "2015-04-18", "Open": 532.0, "High": 534.8, "Low": 528.9, "Close": 532.3, "Volume": 2003421 }, + { "Date": "2015-04-19", "Open": 534.0, "High": 540.7, "Low": 533.0, "Close": 537.4, "Volume": 1966947 }, + { "Date": "2015-04-20", "Open": 538.5, "High": 542.9, "Low": 533.0, "Close": 539.3, "Volume": 1430826 }, + { "Date": "2015-04-21", "Open": 538.0, "High": 543.8, "Low": 536.0, "Close": 542.5, "Volume": 1462695 }, + { "Date": "2015-04-22", "Open": 540.1, "High": 544.2, "Low": 539.5, "Close": 540.1, "Volume": 1176214 }, + { "Date": "2015-04-26", "Open": 538.1, "High": 539.0, "Low": 529.9, "Close": 532.3, "Volume": 2406512 }, + { "Date": "2015-04-27", "Open": 532.8, "High": 540.5, "Low": 531.7, "Close": 539.8, "Volume": 1525019 }, + { "Date": "2015-04-28", "Open": 538.0, "High": 540.6, "Low": 536.3, "Close": 539.8, "Volume": 1029849 }, + { "Date": "2015-04-29", "Open": 537.4, "High": 538.6, "Low": 531.5, "Close": 532.1, "Volume": 2597407 }, + { "Date": "2015-05-01", "Open": 536.8, "High": 536.8, "Low": 529.8, "Close": 534.0, "Volume": 1904332 }, + { "Date": "2015-05-02", "Open": 532.9, "High": 543.0, "Low": 531.3, "Close": 539.2, "Volume": 1938989 }, + { "Date": "2015-05-03", "Open": 539.9, "High": 543.5, "Low": 537.1, "Close": 540.3, "Volume": 1717036 }, + { "Date": "2015-05-04", "Open": 537.8, "High": 540.6, "Low": 534.3, "Close": 536.7, "Volume": 1348337 }, + { "Date": "2015-05-05", "Open": 536.4, "High": 537.2, "Low": 532.5, "Close": 533.3, "Volume": 1388220 }, + { "Date": "2015-05-08", "Open": 533.3, "High": 534.1, "Low": 526.2, "Close": 526.8, "Volume": 1524139 }, + { "Date": "2015-05-09", "Open": 527.6, "High": 529.2, "Low": 523.0, "Close": 526.7, "Volume": 1455266 }, + { "Date": "2015-05-10", "Open": 529.4, "High": 538.4, "Low": 529.4, "Close": 536.7, "Volume": 1814958 }, + { "Date": "2015-05-11", "Open": 538.4, "High": 539.0, "Low": 533.0, "Close": 534.6, "Volume": 1217536 }, + { "Date": "2015-05-12", "Open": 531.6, "High": 533.1, "Low": 530.2, "Close": 532.3, "Volume": 955789 }, + { "Date": "2015-05-15", "Open": 528.0, "High": 528.3, "Low": 524.0, "Close": 527.2, "Volume": 1632702 }, + { "Date": "2015-05-16", "Open": 528.4, "High": 529.6, "Low": 525.6, "Close": 528.1, "Volume": 1071814 }, + { "Date": "2015-05-17", "Open": 529.4, "High": 531.0, "Low": 525.1, "Close": 529.3, "Volume": 1294216 }, + { "Date": "2015-05-18", "Open": 531.0, "High": 538.1, "Low": 530.8, "Close": 536.7, "Volume": 1833109 }, + { "Date": "2015-05-19", "Open": 537.2, "High": 538.3, "Low": 533.0, "Close": 536.7, "Volume": 1893497 }, + { "Date": "2015-05-22", "Open": 539.6, "High": 543.7, "Low": 537.5, "Close": 538.2, "Volume": 1250282 }, + { "Date": "2015-05-23", "Open": 539.6, "High": 541.5, "Low": 535.3, "Close": 540.5, "Volume": 1197450 }, + { "Date": "2015-05-24", "Open": 540.0, "High": 540.0, "Low": 535.7, "Close": 537.8, "Volume": 1286608 }, + { "Date": "2015-05-25", "Open": 538.9, "High": 540.9, "Low": 535.2, "Close": 535.2, "Volume": 1335697 }, + { "Date": "2015-05-26", "Open": 537.3, "High": 537.8, "Low": 531.4, "Close": 531.7, "Volume": 2109130 }, + { "Date": "2015-05-29", "Open": 525.0, "High": 528.6, "Low": 520.5, "Close": 521.5, "Volume": 1937821 }, + { "Date": "2015-05-30", "Open": 526.0, "High": 526.3, "Low": 520.5, "Close": 520.5, "Volume": 2235595 }, + { "Date": "2015-06-01", "Open": 524.7, "High": 525.7, "Low": 518.2, "Close": 521.8, "Volume": 1961354 }, + { "Date": "2015-06-02", "Open": 521.1, "High": 524.6, "Low": 521.1, "Close": 523.4, "Volume": 1235903 }, + { "Date": "2015-06-06", "Open": 519.5, "High": 525.3, "Low": 519.0, "Close": 522.9, "Volume": 1280525 }, + { "Date": "2015-06-07", "Open": 523.1, "High": 526.2, "Low": 515.2, "Close": 525.0, "Volume": 1597229 }, + { "Date": "2015-06-08", "Open": 521.0, "High": 522.7, "Low": 516.1, "Close": 516.8, "Volume": 1296699 }, + { "Date": "2015-06-09", "Open": 523.1, "High": 523.8, "Low": 520.4, "Close": 520.7, "Volume": 1842347 }, + { "Date": "2015-06-10", "Open": 526.3, "High": 532.6, "Low": 525.5, "Close": 530.1, "Volume": 1956682 }, + { "Date": "2015-06-13", "Open": 532.9, "High": 547.1, "Low": 532.4, "Close": 546.5, "Volume": 2206475 }, + { "Date": "2015-06-14", "Open": 546.8, "High": 565.9, "Low": 546.7, "Close": 561.1, "Volume": 3244066 }, + { "Date": "2015-06-15", "Open": 560.1, "High": 566.5, "Low": 556.8, "Close": 560.2, "Volume": 1784554 }, + { "Date": "2015-06-16", "Open": 565.1, "High": 580.7, "Low": 565.0, "Close": 579.9, "Volume": 4768318 }, + { "Date": "2015-06-17", "Open": 649.0, "High": 674.5, "Low": 645.0, "Close": 672.9, "Volume": 11164943 }, + { "Date": "2015-06-20", "Open": 659.2, "High": 668.9, "Low": 653.0, "Close": 663.0, "Volume": 5860872 }, + { "Date": "2015-06-21", "Open": 655.2, "High": 673.0, "Low": 654.3, "Close": 662.3, "Volume": 3377196 }, + { "Date": "2015-06-22", "Open": 660.9, "High": 678.6, "Low": 659.0, "Close": 662.1, "Volume": 3929309 }, + { "Date": "2015-06-23", "Open": 661.3, "High": 663.6, "Low": 641.0, "Close": 644.3, "Volume": 3029109 }, + { "Date": "2015-06-24", "Open": 647.0, "High": 648.2, "Low": 622.5, "Close": 623.6, "Volume": 3625747 }, + { "Date": "2015-06-27", "Open": 621.0, "High": 634.3, "Low": 620.5, "Close": 627.3, "Volume": 2675381 }, + { "Date": "2015-06-28", "Open": 632.8, "High": 632.8, "Low": 623.3, "Close": 628.0, "Volume": 1727327 }, + { "Date": "2015-06-29", "Open": 628.8, "High": 633.4, "Low": 622.6, "Close": 631.9, "Volume": 1575069 }, + { "Date": "2015-06-30", "Open": 630.0, "High": 635.2, "Low": 622.0, "Close": 632.6, "Volume": 1474203 }, + { "Date": "2015-06-31", "Open": 631.4, "High": 632.9, "Low": 625.5, "Close": 625.6, "Volume": 1706149 }, + { "Date": "2015-07-03", "Open": 625.3, "High": 633.1, "Low": 625.3, "Close": 631.2, "Volume": 1304511 }, + { "Date": "2015-07-04", "Open": 628.4, "High": 634.8, "Low": 627.2, "Close": 629.3, "Volume": 1490881 }, + { "Date": "2015-07-05", "Open": 634.3, "High": 647.9, "Low": 633.2, "Close": 643.8, "Volume": 2334266 }, + { "Date": "2015-07-06", "Open": 645.0, "High": 645.4, "Low": 632.3, "Close": 642.7, "Volume": 1572600 }, + { "Date": "2015-07-07", "Open": 640.2, "High": 642.7, "Low": 629.7, "Close": 635.3, "Volume": 1403865 }, + { "Date": "2015-07-10", "Open": 639.5, "High": 643.4, "Low": 631.3, "Close": 633.7, "Volume": 1809205 }, + { "Date": "2015-07-11", "Open": 669.2, "High": 674.9, "Low": 654.3, "Close": 660.8, "Volume": 5029203 }, + { "Date": "2015-07-12", "Open": 663.1, "High": 665.0, "Low": 652.3, "Close": 659.6, "Volume": 2940803 }, + { "Date": "2015-07-13", "Open": 659.3, "High": 664.5, "Low": 651.7, "Close": 656.5, "Volume": 1810749 }, + { "Date": "2015-07-14", "Open": 655.0, "High": 659.9, "Low": 652.7, "Close": 657.1, "Volume": 1072061 }, + { "Date": "2015-07-17", "Open": 656.8, "High": 661.4, "Low": 651.2, "Close": 660.9, "Volume": 1051699 }, + { "Date": "2015-07-18", "Open": 661.9, "High": 664.0, "Low": 653.5, "Close": 656.1, "Volume": 1456059 }, + { "Date": "2015-07-19", "Open": 656.6, "High": 667.0, "Low": 654.2, "Close": 660.9, "Volume": 2134098 }, + { "Date": "2015-07-20", "Open": 655.5, "High": 663.0, "Low": 642.9, "Close": 646.8, "Volume": 2855299 }, + { "Date": "2015-07-21", "Open": 639.8, "High": 640.0, "Low": 612.3, "Close": 612.5, "Volume": 4265183 }, + { "Date": "2015-07-24", "Open": 573.0, "High": 614.0, "Low": 565.0, "Close": 589.6, "Volume": 5770302 }, + { "Date": "2015-07-25", "Open": 614.9, "High": 617.5, "Low": 581.1, "Close": 582.1, "Volume": 3537966 }, + { "Date": "2015-07-26", "Open": 610.4, "High": 631.7, "Low": 599.0, "Close": 628.6, "Volume": 4235891 }, + { "Date": "2015-07-27", "Open": 639.4, "High": 643.6, "Low": 622.0, "Close": 637.6, "Volume": 3491336 }, + { "Date": "2015-07-28", "Open": 632.8, "High": 636.9, "Low": 624.6, "Close": 630.4, "Volume": 1978733 }, + { "Date": "2015-07-31", "Open": 627.5, "High": 635.8, "Low": 617.7, "Close": 618.3, "Volume": 2176737 }, + { "Date": "2015-08-01", "Open": 602.4, "High": 612.9, "Low": 594.1, "Close": 597.8, "Volume": 3702105 }, + { "Date": "2015-08-02", "Open": 605.6, "High": 614.3, "Low": 599.7, "Close": 614.3, "Volume": 2575620 }, + { "Date": "2015-08-03", "Open": 617.0, "High": 619.7, "Low": 602.8, "Close": 606.3, "Volume": 1759572 }, + { "Date": "2015-08-04", "Open": 600.0, "High": 603.5, "Low": 595.3, "Close": 600.7, "Volume": 2089453 }, + { "Date": "2015-08-08", "Open": 612.5, "High": 616.3, "Low": 604.1, "Close": 614.7, "Volume": 2279538 }, + { "Date": "2015-08-09", "Open": 621.2, "High": 626.5, "Low": 609.6, "Close": 612.7, "Volume": 1702094 }, + { "Date": "2015-08-10", "Open": 613.1, "High": 624.2, "Low": 611.4, "Close": 621.4, "Volume": 1900526 }, + { "Date": "2015-08-11", "Open": 619.8, "High": 625.8, "Low": 617.4, "Close": 625.8, "Volume": 1373545 }, + { "Date": "2015-08-14", "Open": 625.7, "High": 625.9, "Low": 619.4, "Close": 623.2, "Volume": 1702271 }, + { "Date": "2015-08-15", "Open": 626.7, "High": 638.7, "Low": 623.8, "Close": 635.1, "Volume": 2084397 }, + { "Date": "2015-08-16", "Open": 635.5, "High": 638.0, "Low": 632.3, "Close": 636.0, "Volume": 1286454 }, + { "Date": "2015-08-17", "Open": 637.8, "High": 650.9, "Low": 635.0, "Close": 642.9, "Volume": 2274690 }, + { "Date": "2015-08-18", "Open": 636.8, "High": 640.0, "Low": 627.0, "Close": 629.3, "Volume": 5133386 }, + { "Date": "2015-08-21", "Open": 634.4, "High": 636.5, "Low": 625.9, "Close": 635.4, "Volume": 1788506 }, + { "Date": "2015-08-22", "Open": 627.0, "High": 627.5, "Low": 615.4, "Close": 622.7, "Volume": 2562869 }, + { "Date": "2015-08-23", "Open": 622.0, "High": 628.9, "Low": 620.0, "Close": 622.4, "Volume": 1470949 }, + { "Date": "2015-08-24", "Open": 616.6, "High": 627.3, "Low": 612.4, "Close": 625.8, "Volume": 2240098 }, + { "Date": "2015-08-25", "Open": 629.8, "High": 629.8, "Low": 611.0, "Close": 612.0, "Volume": 2174009 }, + { "Date": "2015-08-28", "Open": 610.3, "High": 614.6, "Low": 589.4, "Close": 594.9, "Volume": 3127667 }, + { "Date": "2015-08-29", "Open": 597.3, "High": 605.0, "Low": 590.2, "Close": 595.0, "Volume": 2310284 }, + { "Date": "2015-08-30", "Open": 603.3, "High": 608.8, "Low": 600.7, "Close": 608.4, "Volume": 2413441 }, + { "Date": "2015-09-01", "Open": 608.4, "High": 612.1, "Low": 599.9, "Close": 611.3, "Volume": 1867601 }, + { "Date": "2015-09-02", "Open": 607.2, "High": 627.3, "Low": 603.1, "Close": 626.9, "Volume": 2684805 }, + { "Date": "2015-09-05", "Open": 632.0, "High": 643.0, "Low": 627.0, "Close": 641.5, "Volume": 1787880 }, + { "Date": "2015-09-06", "Open": 638.8, "High": 649.3, "Low": 636.5, "Close": 645.4, "Volume": 2166264 }, + { "Date": "2015-09-07", "Open": 649.2, "High": 650.6, "Low": 632.1, "Close": 642.4, "Volume": 2089776 }, + { "Date": "2015-09-08", "Open": 641.4, "High": 644.5, "Low": 625.6, "Close": 639.2, "Volume": 2180441 }, + { "Date": "2015-09-09", "Open": 640.0, "High": 646.0, "Low": 635.3, "Close": 643.6, "Volume": 1645844 }, + { "Date": "2015-09-12", "Open": 642.1, "High": 648.5, "Low": 639.0, "Close": 646.7, "Volume": 1275206 }, + { "Date": "2015-09-13", "Open": 643.1, "High": 657.8, "Low": 643.1, "Close": 652.3, "Volume": 1790704 }, + { "Date": "2015-09-14", "Open": 653.2, "High": 659.4, "Low": 648.9, "Close": 651.2, "Volume": 1412040 }, + { "Date": "2015-09-15", "Open": 654.7, "High": 663.1, "Low": 654.5, "Close": 661.7, "Volume": 1830524 }, + { "Date": "2015-09-16", "Open": 664.1, "High": 665.0, "Low": 657.2, "Close": 662.2, "Volume": 1606138 }, + { "Date": "2015-09-19", "Open": 661.2, "High": 666.8, "Low": 659.6, "Close": 666.1, "Volume": 1465339 }, + { "Date": "2015-09-20", "Open": 664.0, "High": 664.7, "Low": 644.2, "Close": 650.3, "Volume": 2490016 }, + { "Date": "2015-09-21", "Open": 654.1, "High": 655.9, "Low": 641.7, "Close": 642.6, "Volume": 1791099 }, + { "Date": "2015-09-22", "Open": 646.7, "High": 657.8, "Low": 644.0, "Close": 651.8, "Volume": 3782103 }, + { "Date": "2015-09-23", "Open": 727.5, "High": 730.0, "Low": 701.5, "Close": 702.0, "Volume": 6642504 }, + { "Date": "2015-09-26", "Open": 701.5, "High": 719.1, "Low": 701.3, "Close": 712.8, "Volume": 2701629 }, + { "Date": "2015-09-27", "Open": 707.4, "High": 713.6, "Low": 704.5, "Close": 708.5, "Volume": 2224309 }, + { "Date": "2015-09-28", "Open": 707.3, "High": 713.0, "Low": 703.1, "Close": 713.0, "Volume": 2176623 }, + { "Date": "2015-09-29", "Open": 710.5, "High": 718.3, "Low": 710.0, "Close": 716.9, "Volume": 1454128 }, + { "Date": "2015-09-30", "Open": 715.7, "High": 718.0, "Low": 710.0, "Close": 710.8, "Volume": 1903980 }, + { "Date": "2015-10-02", "Open": 711.1, "High": 721.6, "Low": 705.9, "Close": 721.1, "Volume": 1871073 }, + { "Date": "2015-10-03", "Open": 718.9, "High": 724.6, "Low": 714.7, "Close": 722.2, "Volume": 1560770 }, + { "Date": "2015-10-04", "Open": 722.0, "High": 733.1, "Low": 721.9, "Close": 728.1, "Volume": 1704575 }, + { "Date": "2015-10-05", "Open": 729.5, "High": 739.5, "Low": 729.5, "Close": 731.3, "Volume": 1860367 }, + { "Date": "2015-10-06", "Open": 731.5, "High": 735.4, "Low": 727.0, "Close": 733.8, "Volume": 1509656 }, + { "Date": "2015-10-09", "Open": 730.2, "High": 734.7, "Low": 719.4, "Close": 724.9, "Volume": 2065619 }, + { "Date": "2015-10-10", "Open": 724.4, "High": 730.6, "Low": 718.5, "Close": 728.3, "Volume": 1603937 }, + { "Date": "2015-10-11", "Open": 732.5, "High": 741.0, "Low": 730.2, "Close": 735.4, "Volume": 1366375 }, + { "Date": "2015-10-12", "Open": 731.0, "High": 737.8, "Low": 728.6, "Close": 731.2, "Volume": 1668048 }, + { "Date": "2015-10-13", "Open": 729.2, "High": 731.1, "Low": 716.7, "Close": 717.0, "Volume": 2062982 }, + { "Date": "2015-10-16", "Open": 715.6, "High": 729.5, "Low": 711.3, "Close": 729.0, "Volume": 1891074 }, + { "Date": "2015-10-17", "Open": 729.3, "High": 731.8, "Low": 723.0, "Close": 725.3, "Volume": 1491709 }, + { "Date": "2015-10-18", "Open": 727.6, "High": 741.4, "Low": 727.0, "Close": 740.0, "Volume": 1671588 }, + { "Date": "2015-10-19", "Open": 738.7, "High": 742.0, "Low": 737.4, "Close": 738.4, "Volume": 1327109 }, + { "Date": "2015-10-20", "Open": 746.5, "High": 757.9, "Low": 743.0, "Close": 756.6, "Volume": 2212302 }, + { "Date": "2015-10-23", "Open": 757.5, "High": 762.7, "Low": 751.8, "Close": 756.0, "Volume": 1414487 }, + { "Date": "2015-10-24", "Open": 752.0, "High": 755.3, "Low": 737.6, "Close": 748.3, "Volume": 2333130 }, + { "Date": "2015-10-25", "Open": 748.1, "High": 752.0, "Low": 746.1, "Close": 748.1, "Volume": 1122224 }, + { "Date": "2015-10-27", "Open": 748.5, "High": 753.4, "Low": 747.5, "Close": 750.3, "Volume": 838518 }, + { "Date": "2015-10-30", "Open": 748.8, "High": 754.9, "Low": 741.3, "Close": 742.6, "Volume": 2035261 }, + { "Date": "2015-11-01", "Open": 747.1, "High": 769.0, "Low": 746.7, "Close": 767.0, "Volume": 2129940 }, + { "Date": "2015-11-02", "Open": 768.9, "High": 776.0, "Low": 759.0, "Close": 762.4, "Volume": 2195686 }, + { "Date": "2015-11-03", "Open": 766.0, "High": 769.0, "Low": 745.6, "Close": 752.5, "Volume": 2590641 }, + { "Date": "2015-11-04", "Open": 753.1, "High": 768.5, "Low": 750.0, "Close": 766.8, "Volume": 2757283 }, + { "Date": "2015-11-07", "Open": 767.8, "High": 768.7, "Low": 755.1, "Close": 763.3, "Volume": 1812314 }, + { "Date": "2015-11-08", "Open": 757.9, "High": 764.8, "Low": 754.2, "Close": 762.4, "Volume": 1829475 }, + { "Date": "2015-11-09", "Open": 759.2, "High": 764.2, "Low": 737.0, "Close": 751.6, "Volume": 2699990 }, + { "Date": "2015-11-10", "Open": 752.9, "High": 755.9, "Low": 743.8, "Close": 749.5, "Volume": 1988380 }, + { "Date": "2015-11-11", "Open": 741.2, "High": 745.7, "Low": 736.8, "Close": 738.9, "Volume": 2224410 }, + { "Date": "2015-11-14", "Open": 741.8, "High": 748.7, "Low": 724.2, "Close": 747.8, "Volume": 2412497 }, + { "Date": "2015-11-15", "Open": 753.0, "High": 758.1, "Low": 743.0, "Close": 743.4, "Volume": 2666229 }, + { "Date": "2015-11-16", "Open": 750.0, "High": 760.6, "Low": 739.4, "Close": 758.1, "Volume": 1993251 }, + { "Date": "2015-11-17", "Open": 762.4, "High": 762.7, "Low": 749.0, "Close": 749.4, "Volume": 1553418 }, + { "Date": "2015-11-18", "Open": 746.5, "High": 754.1, "Low": 738.1, "Close": 739.3, "Volume": 3148743 }, + { "Date": "2015-11-21", "Open": 746.1, "High": 750.0, "Low": 740.0, "Close": 747.8, "Volume": 1525703 }, + { "Date": "2015-11-22", "Open": 751.6, "High": 754.9, "Low": 745.5, "Close": 750.0, "Volume": 1365520 }, + { "Date": "2015-11-23", "Open": 753.5, "High": 754.2, "Low": 744.0, "Close": 750.3, "Volume": 1566726 }, + { "Date": "2015-11-24", "Open": 749.5, "High": 751.4, "Low": 746.6, "Close": 748.4, "Volume": 527223 }, + { "Date": "2015-11-28", "Open": 752.9, "High": 763.0, "Low": 749.5, "Close": 762.5, "Volume": 1515716 }, + { "Date": "2015-11-29", "Open": 766.7, "High": 780.0, "Low": 766.4, "Close": 776.6, "Volume": 1765012 }, + { "Date": "2015-11-30", "Open": 776.6, "High": 777.6, "Low": 766.9, "Close": 771.0, "Volume": 1293521 }, + { "Date": "2015-11-31", "Open": 769.5, "High": 769.5, "Low": 758.3, "Close": 758.9, "Volume": 1500923 }, + { "Date": "2016-00-04", "Open": 743.0, "High": 744.1, "Low": 731.3, "Close": 741.8, "Volume": 3258199 }, + { "Date": "2016-00-05", "Open": 746.5, "High": 752.0, "Low": 738.6, "Close": 742.6, "Volume": 1950691 }, + { "Date": "2016-00-06", "Open": 730.0, "High": 747.2, "Low": 728.9, "Close": 743.6, "Volume": 1947034 }, + { "Date": "2016-00-07", "Open": 730.3, "High": 738.5, "Low": 719.1, "Close": 726.4, "Volume": 2963741 }, + { "Date": "2016-00-08", "Open": 731.5, "High": 733.2, "Low": 713.0, "Close": 714.5, "Volume": 2450857 }, + { "Date": "2016-00-11", "Open": 716.6, "High": 718.9, "Low": 703.5, "Close": 716.0, "Volume": 2090621 }, + { "Date": "2016-00-12", "Open": 721.7, "High": 728.8, "Low": 717.3, "Close": 726.1, "Volume": 2024509 }, + { "Date": "2016-00-13", "Open": 730.9, "High": 734.7, "Low": 698.6, "Close": 700.6, "Volume": 2468295 }, + { "Date": "2016-00-14", "Open": 705.4, "High": 721.9, "Low": 689.1, "Close": 714.7, "Volume": 2211853 }, + { "Date": "2016-00-15", "Open": 692.3, "High": 706.7, "Low": 685.4, "Close": 694.5, "Volume": 3592449 }, + { "Date": "2016-00-19", "Open": 703.3, "High": 710.0, "Low": 693.4, "Close": 701.8, "Volume": 2258479 }, + { "Date": "2016-00-20", "Open": 688.6, "High": 706.9, "Low": 673.3, "Close": 698.5, "Volume": 3439386 }, + { "Date": "2016-00-21", "Open": 702.2, "High": 719.2, "Low": 694.5, "Close": 706.6, "Volume": 2410263 }, + { "Date": "2016-00-22", "Open": 723.6, "High": 728.1, "Low": 720.1, "Close": 725.3, "Volume": 2006528 }, + { "Date": "2016-00-25", "Open": 723.6, "High": 729.7, "Low": 710.0, "Close": 711.7, "Volume": 1704641 }, + { "Date": "2016-00-26", "Open": 713.9, "High": 718.3, "Low": 706.5, "Close": 713.0, "Volume": 1324300 }, + { "Date": "2016-00-27", "Open": 713.7, "High": 718.2, "Low": 694.4, "Close": 700.0, "Volume": 2139970 }, + { "Date": "2016-00-28", "Open": 722.2, "High": 733.7, "Low": 712.4, "Close": 731.0, "Volume": 2658016 }, + { "Date": "2016-00-29", "Open": 731.5, "High": 745.0, "Low": 726.8, "Close": 743.0, "Volume": 3394935 }, + { "Date": "2016-01-01", "Open": 750.5, "High": 757.9, "Low": 743.3, "Close": 752.0, "Volume": 4801816 }, + { "Date": "2016-01-02", "Open": 784.5, "High": 789.9, "Low": 764.6, "Close": 764.6, "Volume": 6332431 }, + { "Date": "2016-01-03", "Open": 770.2, "High": 774.5, "Low": 720.5, "Close": 727.0, "Volume": 6162333 }, + { "Date": "2016-01-04", "Open": 722.8, "High": 727.0, "Low": 701.9, "Close": 708.0, "Volume": 5145855 }, + { "Date": "2016-01-05", "Open": 703.9, "High": 704.0, "Low": 680.1, "Close": 683.6, "Volume": 5069985 }, + { "Date": "2016-01-08", "Open": 667.9, "High": 684.0, "Low": 663.1, "Close": 682.7, "Volume": 4212541 }, + { "Date": "2016-01-09", "Open": 672.3, "High": 699.9, "Low": 668.8, "Close": 678.1, "Volume": 3604335 }, + { "Date": "2016-01-10", "Open": 686.9, "High": 701.3, "Low": 682.1, "Close": 684.1, "Volume": 2627379 }, + { "Date": "2016-01-11", "Open": 675.0, "High": 689.4, "Low": 668.9, "Close": 683.1, "Volume": 3007223 }, + { "Date": "2016-01-12", "Open": 690.3, "High": 693.8, "Low": 678.6, "Close": 682.4, "Volume": 2129831 }, + { "Date": "2016-01-16", "Open": 693.0, "High": 698.0, "Low": 685.0, "Close": 691.0, "Volume": 2497024 }, + { "Date": "2016-01-17", "Open": 699.0, "High": 709.8, "Low": 691.4, "Close": 708.4, "Volume": 2466808 }, + { "Date": "2016-01-18", "Open": 710.0, "High": 712.4, "Low": 696.0, "Close": 697.4, "Volume": 1859130 }, + { "Date": "2016-01-19", "Open": 695.0, "High": 703.1, "Low": 694.0, "Close": 700.9, "Volume": 1582260 }, + { "Date": "2016-01-22", "Open": 707.5, "High": 713.2, "Low": 702.5, "Close": 706.5, "Volume": 1946067 }, + { "Date": "2016-01-23", "Open": 701.5, "High": 708.4, "Low": 693.6, "Close": 695.9, "Volume": 1999699 }, + { "Date": "2016-01-24", "Open": 688.9, "High": 700.0, "Low": 680.8, "Close": 699.6, "Volume": 1958611 }, + { "Date": "2016-01-25", "Open": 700.0, "High": 706.0, "Low": 690.6, "Close": 705.8, "Volume": 1631855 }, + { "Date": "2016-01-26", "Open": 708.6, "High": 713.4, "Low": 700.9, "Close": 705.1, "Volume": 2239978 }, + { "Date": "2016-01-29", "Open": 700.3, "High": 710.9, "Low": 697.7, "Close": 697.8, "Volume": 2280280 }, + { "Date": "2016-02-01", "Open": 703.6, "High": 718.8, "Low": 699.8, "Close": 718.8, "Volume": 2147442 }, + { "Date": "2016-02-02", "Open": 719.0, "High": 720.0, "Low": 712.0, "Close": 718.9, "Volume": 1627753 }, + { "Date": "2016-02-03", "Open": 718.7, "High": 719.5, "Low": 706.0, "Close": 712.4, "Volume": 1956761 }, + { "Date": "2016-02-04", "Open": 715.0, "High": 716.5, "Low": 706.0, "Close": 710.9, "Volume": 1967873 }, + { "Date": "2016-02-07", "Open": 706.9, "High": 708.1, "Low": 686.9, "Close": 695.2, "Volume": 2985094 }, + { "Date": "2016-02-08", "Open": 688.6, "High": 703.8, "Low": 685.3, "Close": 694.0, "Volume": 2063357 }, + { "Date": "2016-02-09", "Open": 698.5, "High": 705.7, "Low": 694.0, "Close": 705.2, "Volume": 1418704 }, + { "Date": "2016-02-10", "Open": 708.1, "High": 716.4, "Low": 703.4, "Close": 712.8, "Volume": 2829412 }, + { "Date": "2016-02-11", "Open": 720.0, "High": 726.9, "Low": 717.1, "Close": 726.8, "Volume": 1963907 }, + { "Date": "2016-02-14", "Open": 726.8, "High": 735.5, "Low": 725.1, "Close": 730.5, "Volume": 1716910 }, + { "Date": "2016-02-15", "Open": 726.9, "High": 732.3, "Low": 724.8, "Close": 728.3, "Volume": 1720965 }, + { "Date": "2016-02-16", "Open": 726.4, "High": 737.5, "Low": 724.5, "Close": 736.1, "Volume": 1572329 }, + { "Date": "2016-02-17", "Open": 736.5, "High": 743.1, "Low": 736.0, "Close": 737.8, "Volume": 1856800 }, + { "Date": "2016-02-18", "Open": 741.9, "High": 742.0, "Low": 731.8, "Close": 737.6, "Volume": 2796376 }, + { "Date": "2016-02-21", "Open": 736.5, "High": 742.5, "Low": 733.5, "Close": 742.1, "Volume": 1831839 }, + { "Date": "2016-02-22", "Open": 737.5, "High": 745.0, "Low": 737.5, "Close": 740.8, "Volume": 1264396 }, + { "Date": "2016-02-23", "Open": 742.4, "High": 745.7, "Low": 736.1, "Close": 738.1, "Volume": 1421861 }, + { "Date": "2016-02-24", "Open": 732.0, "High": 737.8, "Low": 731.0, "Close": 735.3, "Volume": 1564782 }, + { "Date": "2016-02-28", "Open": 736.8, "High": 739.0, "Low": 732.5, "Close": 733.5, "Volume": 1299812 }, + { "Date": "2016-02-29", "Open": 734.6, "High": 747.3, "Low": 728.8, "Close": 744.8, "Volume": 1902128 }, + { "Date": "2016-02-30", "Open": 750.1, "High": 757.9, "Low": 748.7, "Close": 750.5, "Volume": 1780998 }, + { "Date": "2016-02-31", "Open": 749.3, "High": 750.9, "Low": 740.9, "Close": 745.0, "Volume": 1712375 }, + { "Date": "2016-03-01", "Open": 738.6, "High": 750.3, "Low": 737.0, "Close": 749.9, "Volume": 1574870 }, + { "Date": "2016-03-04", "Open": 750.1, "High": 752.8, "Low": 742.4, "Close": 745.3, "Volume": 1131843 }, + { "Date": "2016-03-05", "Open": 738.0, "High": 742.8, "Low": 735.4, "Close": 737.8, "Volume": 1129829 }, + { "Date": "2016-03-06", "Open": 735.8, "High": 746.2, "Low": 735.6, "Close": 745.7, "Volume": 1050193 }, + { "Date": "2016-03-07", "Open": 745.4, "High": 747.0, "Low": 736.3, "Close": 740.3, "Volume": 1429504 }, + { "Date": "2016-03-08", "Open": 744.0, "High": 745.5, "Low": 735.5, "Close": 739.1, "Volume": 1285755 }, + { "Date": "2016-03-11", "Open": 743.0, "High": 745.0, "Low": 736.0, "Close": 736.1, "Volume": 1211762 }, + { "Date": "2016-03-12", "Open": 738.0, "High": 743.8, "Low": 731.0, "Close": 743.1, "Volume": 1349734 }, + { "Date": "2016-03-13", "Open": 749.2, "High": 754.4, "Low": 744.3, "Close": 751.7, "Volume": 1707095 }, + { "Date": "2016-03-14", "Open": 754.0, "High": 757.3, "Low": 752.7, "Close": 753.2, "Volume": 1130971 }, + { "Date": "2016-03-15", "Open": 754.0, "High": 761.0, "Low": 752.7, "Close": 759.0, "Volume": 1800413 }, + { "Date": "2016-03-18", "Open": 760.5, "High": 768.0, "Low": 757.3, "Close": 766.6, "Volume": 1555953 }, + { "Date": "2016-03-19", "Open": 769.5, "High": 769.9, "Low": 749.3, "Close": 753.9, "Volume": 2027642 }, + { "Date": "2016-03-20", "Open": 758.0, "High": 758.1, "Low": 750.0, "Close": 752.7, "Volume": 1525591 }, + { "Date": "2016-03-21", "Open": 755.4, "High": 760.5, "Low": 749.5, "Close": 759.1, "Volume": 2743620 }, + { "Date": "2016-03-22", "Open": 726.3, "High": 736.1, "Low": 713.6, "Close": 718.8, "Volume": 5939199 }, + { "Date": "2016-03-25", "Open": 716.1, "High": 723.9, "Low": 715.6, "Close": 723.1, "Volume": 1955567 }, + { "Date": "2016-03-26", "Open": 725.4, "High": 725.8, "Low": 703.0, "Close": 708.1, "Volume": 2727185 }, + { "Date": "2016-03-27", "Open": 707.3, "High": 709.0, "Low": 692.4, "Close": 705.8, "Volume": 3086722 }, + { "Date": "2016-03-28", "Open": 708.3, "High": 714.2, "Low": 689.5, "Close": 691.0, "Volume": 2851108 }, + { "Date": "2016-03-29", "Open": 690.7, "High": 697.6, "Low": 689.0, "Close": 693.0, "Volume": 2484273 }, + { "Date": "2016-04-02", "Open": 697.6, "High": 700.6, "Low": 691.0, "Close": 698.2, "Volume": 1644126 }, + { "Date": "2016-04-03", "Open": 696.9, "High": 697.8, "Low": 692.0, "Close": 692.4, "Volume": 1530993 }, + { "Date": "2016-04-04", "Open": 690.5, "High": 699.8, "Low": 689.0, "Close": 695.7, "Volume": 1688569 }, + { "Date": "2016-04-05", "Open": 697.7, "High": 702.3, "Low": 695.7, "Close": 701.4, "Volume": 1677405 }, + { "Date": "2016-04-06", "Open": 698.4, "High": 711.9, "Low": 698.1, "Close": 711.1, "Volume": 1826146 }, + { "Date": "2016-04-09", "Open": 712.0, "High": 718.7, "Low": 710.0, "Close": 712.9, "Volume": 1508423 }, + { "Date": "2016-04-10", "Open": 716.8, "High": 723.5, "Low": 715.7, "Close": 723.2, "Volume": 1563105 }, + { "Date": "2016-04-11", "Open": 723.4, "High": 724.5, "Low": 712.8, "Close": 715.3, "Volume": 1686823 }, + { "Date": "2016-04-12", "Open": 717.1, "High": 719.3, "Low": 709.0, "Close": 713.3, "Volume": 1360732 }, + { "Date": "2016-04-13", "Open": 711.9, "High": 716.7, "Low": 709.3, "Close": 710.8, "Volume": 1307338 }, + { "Date": "2016-04-16", "Open": 709.1, "High": 718.5, "Low": 705.6, "Close": 716.5, "Volume": 1316177 }, + { "Date": "2016-04-17", "Open": 716.0, "High": 721.5, "Low": 704.1, "Close": 706.2, "Volume": 1999456 }, + { "Date": "2016-04-18", "Open": 703.7, "High": 711.6, "Low": 700.6, "Close": 706.6, "Volume": 1763394 }, + { "Date": "2016-04-19", "Open": 702.4, "High": 706.0, "Low": 696.8, "Close": 700.3, "Volume": 1656321 }, + { "Date": "2016-04-20", "Open": 701.6, "High": 714.6, "Low": 700.5, "Close": 709.7, "Volume": 1816027 }, + { "Date": "2016-04-23", "Open": 706.5, "High": 711.5, "Low": 704.2, "Close": 704.2, "Volume": 1320927 }, + { "Date": "2016-04-24", "Open": 706.9, "High": 721.0, "Low": 706.9, "Close": 720.1, "Volume": 1920411 }, + { "Date": "2016-04-25", "Open": 720.8, "High": 727.5, "Low": 719.7, "Close": 725.3, "Volume": 1629198 }, + { "Date": "2016-04-26", "Open": 722.9, "High": 728.3, "Low": 720.3, "Close": 724.1, "Volume": 1542866 }, + { "Date": "2016-04-27", "Open": 724.0, "High": 733.9, "Low": 724.0, "Close": 732.7, "Volume": 1974026 }, + { "Date": "2016-04-31", "Open": 731.7, "High": 739.7, "Low": 731.3, "Close": 735.7, "Volume": 2129545 }, + { "Date": "2016-05-01", "Open": 734.5, "High": 737.2, "Low": 730.7, "Close": 734.1, "Volume": 1253593 }, + { "Date": "2016-05-02", "Open": 732.5, "High": 733.0, "Low": 724.2, "Close": 730.4, "Volume": 1341807 }, + { "Date": "2016-05-03", "Open": 729.3, "High": 729.5, "Low": 720.6, "Close": 722.3, "Volume": 1226253 }, + { "Date": "2016-05-06", "Open": 724.9, "High": 724.9, "Low": 714.6, "Close": 716.5, "Volume": 1566059 }, + { "Date": "2016-05-07", "Open": 719.8, "High": 722.0, "Low": 716.5, "Close": 716.6, "Volume": 1336754 }, + { "Date": "2016-05-08", "Open": 724.0, "High": 728.6, "Low": 720.6, "Close": 728.3, "Volume": 1583701 }, + { "Date": "2016-05-09", "Open": 722.9, "High": 729.5, "Low": 722.3, "Close": 728.6, "Volume": 988914 }, + { "Date": "2016-05-10", "Open": 719.5, "High": 725.9, "Low": 716.4, "Close": 719.4, "Volume": 1216443 }, + { "Date": "2016-05-13", "Open": 716.5, "High": 725.4, "Low": 716.5, "Close": 718.4, "Volume": 1258930 }, + { "Date": "2016-05-14", "Open": 716.5, "High": 722.5, "Low": 713.1, "Close": 718.3, "Volume": 1306065 }, + { "Date": "2016-05-15", "Open": 719.0, "High": 723.0, "Low": 717.3, "Close": 718.9, "Volume": 1214517 }, + { "Date": "2016-05-16", "Open": 714.9, "High": 716.6, "Low": 703.3, "Close": 710.4, "Volume": 1982471 }, + { "Date": "2016-05-17", "Open": 708.6, "High": 708.8, "Low": 688.5, "Close": 691.7, "Volume": 3402357 }, + { "Date": "2016-05-20", "Open": 698.8, "High": 702.5, "Low": 693.4, "Close": 693.7, "Volume": 2082538 }, + { "Date": "2016-05-21", "Open": 698.4, "High": 702.8, "Low": 692.0, "Close": 695.9, "Volume": 1465634 }, + { "Date": "2016-05-22", "Open": 699.1, "High": 700.9, "Low": 693.1, "Close": 697.5, "Volume": 1184318 }, + { "Date": "2016-05-23", "Open": 697.5, "High": 702.0, "Low": 687.0, "Close": 701.9, "Volume": 2171415 }, + { "Date": "2016-05-24", "Open": 675.2, "High": 689.4, "Low": 673.5, "Close": 675.2, "Volume": 4449022 }, + { "Date": "2016-05-27", "Open": 671.0, "High": 672.3, "Low": 663.3, "Close": 668.3, "Volume": 2641085 }, + { "Date": "2016-05-28", "Open": 679.0, "High": 680.3, "Low": 673.0, "Close": 680.0, "Volume": 2173762 }, + { "Date": "2016-05-29", "Open": 683.0, "High": 687.4, "Low": 681.4, "Close": 684.1, "Volume": 1932561 }, + { "Date": "2016-05-30", "Open": 685.5, "High": 692.3, "Low": 683.6, "Close": 692.1, "Volume": 1597714 }, + { "Date": "2016-06-01", "Open": 692.2, "High": 700.6, "Low": 692.1, "Close": 699.2, "Volume": 1344710 }, + { "Date": "2016-06-05", "Open": 696.1, "High": 696.9, "Low": 688.9, "Close": 694.5, "Volume": 1462616 }, + { "Date": "2016-06-06", "Open": 690.0, "High": 701.7, "Low": 689.1, "Close": 697.8, "Volume": 1411925 }, + { "Date": "2016-06-07", "Open": 698.1, "High": 698.2, "Low": 688.2, "Close": 695.4, "Volume": 1304200 }, + { "Date": "2016-06-08", "Open": 699.5, "High": 705.7, "Low": 696.4, "Close": 705.6, "Volume": 1575166 }, + { "Date": "2016-06-11", "Open": 708.0, "High": 716.5, "Low": 707.2, "Close": 715.1, "Volume": 1111762 }, + { "Date": "2016-06-12", "Open": 719.1, "High": 722.9, "Low": 715.9, "Close": 720.6, "Volume": 1336921 }, + { "Date": "2016-06-13", "Open": 723.6, "High": 724.0, "Low": 716.9, "Close": 717.0, "Volume": 935876 }, + { "Date": "2016-06-14", "Open": 721.6, "High": 722.2, "Low": 718.0, "Close": 721.0, "Volume": 950193 }, + { "Date": "2016-06-15", "Open": 725.7, "High": 725.7, "Low": 719.1, "Close": 719.9, "Volume": 1279339 }, + { "Date": "2016-06-18", "Open": 722.7, "High": 736.1, "Low": 721.2, "Close": 733.8, "Volume": 1295476 }, + { "Date": "2016-06-19", "Open": 729.9, "High": 737.0, "Low": 729.0, "Close": 737.0, "Volume": 1227486 }, + { "Date": "2016-06-20", "Open": 737.3, "High": 742.1, "Low": 737.1, "Close": 741.2, "Volume": 1289671 }, + { "Date": "2016-06-21", "Open": 740.4, "High": 741.7, "Low": 735.8, "Close": 738.6, "Volume": 1026306 }, + { "Date": "2016-06-22", "Open": 741.9, "High": 743.2, "Low": 736.6, "Close": 742.7, "Volume": 1259823 }, + { "Date": "2016-06-25", "Open": 740.7, "High": 742.6, "Low": 737.5, "Close": 739.8, "Volume": 1032432 }, + { "Date": "2016-06-26", "Open": 739.0, "High": 741.7, "Low": 734.3, "Close": 738.4, "Volume": 1186738 }, + { "Date": "2016-06-27", "Open": 738.3, "High": 744.5, "Low": 737.0, "Close": 741.8, "Volume": 1512517 }, + { "Date": "2016-06-28", "Open": 747.0, "High": 748.6, "Low": 739.3, "Close": 745.9, "Volume": 3530169 }, + { "Date": "2016-06-29", "Open": 772.7, "High": 778.5, "Low": 766.8, "Close": 768.8, "Volume": 3841482 }, + { "Date": "2016-07-01", "Open": 761.1, "High": 780.4, "Low": 761.1, "Close": 772.9, "Volume": 2700470 }, + { "Date": "2016-07-02", "Open": 768.7, "High": 775.8, "Low": 767.9, "Close": 771.1, "Volume": 1784525 }, + { "Date": "2016-07-03", "Open": 767.2, "High": 773.2, "Low": 766.8, "Close": 773.2, "Volume": 1287421 }, + { "Date": "2016-07-04", "Open": 772.2, "High": 774.1, "Low": 768.8, "Close": 771.6, "Volume": 1140254 }, + { "Date": "2016-07-05", "Open": 773.8, "High": 783.0, "Low": 772.3, "Close": 782.2, "Volume": 1801205 }, + { "Date": "2016-07-08", "Open": 782.0, "High": 782.6, "Low": 778.1, "Close": 781.8, "Volume": 1107857 }, + { "Date": "2016-07-09", "Open": 781.1, "High": 788.9, "Low": 780.6, "Close": 784.3, "Volume": 1318894 }, + { "Date": "2016-07-10", "Open": 783.8, "High": 786.8, "Low": 782.8, "Close": 784.7, "Volume": 786363 }, + { "Date": "2016-07-11", "Open": 785.0, "High": 789.8, "Low": 783.0, "Close": 784.9, "Volume": 975113 }, + { "Date": "2016-07-12", "Open": 781.5, "High": 783.4, "Low": 780.4, "Close": 783.2, "Volume": 740498 }, + { "Date": "2016-07-15", "Open": 783.8, "High": 787.5, "Low": 780.1, "Close": 782.4, "Volume": 938186 }, + { "Date": "2016-07-16", "Open": 780.3, "High": 781.0, "Low": 773.4, "Close": 777.1, "Volume": 1028047 }, + { "Date": "2016-07-17", "Open": 777.3, "High": 780.8, "Low": 773.5, "Close": 779.9, "Volume": 924226 }, + { "Date": "2016-07-18", "Open": 780.0, "High": 782.9, "Low": 777.0, "Close": 777.5, "Volume": 719429 }, + { "Date": "2016-07-19", "Open": 775.0, "High": 777.1, "Low": 773.1, "Close": 775.4, "Volume": 861546 }, + { "Date": "2016-07-22", "Open": 773.3, "High": 774.5, "Low": 770.0, "Close": 772.1, "Volume": 951362 }, + { "Date": "2016-07-23", "Open": 775.5, "High": 776.4, "Low": 771.8, "Close": 772.1, "Volume": 928232 }, + { "Date": "2016-07-24", "Open": 770.6, "High": 774.5, "Low": 767.1, "Close": 769.6, "Volume": 1071999 }, + { "Date": "2016-07-25", "Open": 767.0, "High": 771.9, "Low": 763.2, "Close": 769.4, "Volume": 926883 }, + { "Date": "2016-07-26", "Open": 769.0, "High": 776.1, "Low": 765.9, "Close": 769.5, "Volume": 1166681 }, + { "Date": "2016-07-29", "Open": 768.7, "High": 775.0, "Low": 766.6, "Close": 772.1, "Volume": 847565 }, + { "Date": "2016-07-30", "Open": 769.3, "High": 774.5, "Low": 766.8, "Close": 769.1, "Volume": 1130029 }, + { "Date": "2016-07-31", "Open": 767.0, "High": 769.1, "Low": 765.4, "Close": 767.0, "Volume": 1248556 }, + { "Date": "2016-08-01", "Open": 769.3, "High": 771.0, "Low": 764.3, "Close": 768.8, "Volume": 925131 }, + { "Date": "2016-08-02", "Open": 773.0, "High": 773.9, "Low": 768.4, "Close": 771.5, "Volume": 1072658 }, + { "Date": "2016-08-06", "Open": 773.5, "High": 782.0, "Low": 771.0, "Close": 780.1, "Volume": 1442822 }, + { "Date": "2016-08-07", "Open": 780.0, "High": 782.7, "Low": 776.2, "Close": 780.4, "Volume": 894021 }, + { "Date": "2016-08-08", "Open": 778.6, "High": 780.4, "Low": 773.6, "Close": 775.3, "Volume": 1270264 }, + { "Date": "2016-08-09", "Open": 770.1, "High": 773.2, "Low": 759.7, "Close": 759.7, "Volume": 1885496 }, + { "Date": "2016-08-12", "Open": 755.1, "High": 770.3, "Low": 754.0, "Close": 769.0, "Volume": 1310986 }, + { "Date": "2016-08-13", "Open": 764.5, "High": 766.2, "Low": 755.8, "Close": 759.7, "Volume": 1395046 }, + { "Date": "2016-08-14", "Open": 759.6, "High": 767.7, "Low": 759.1, "Close": 762.5, "Volume": 1094490 }, + { "Date": "2016-08-15", "Open": 762.9, "High": 773.8, "Low": 760.0, "Close": 771.8, "Volume": 1346751 }, + { "Date": "2016-08-16", "Open": 769.8, "High": 769.8, "Low": 764.7, "Close": 768.9, "Volume": 2049338 }, + { "Date": "2016-08-19", "Open": 772.4, "High": 774.0, "Low": 764.4, "Close": 765.7, "Volume": 1172824 }, + { "Date": "2016-08-20", "Open": 769.0, "High": 773.3, "Low": 768.5, "Close": 771.4, "Volume": 978631 }, + { "Date": "2016-08-21", "Open": 772.7, "High": 777.2, "Low": 768.3, "Close": 776.2, "Volume": 1167810 }, + { "Date": "2016-08-22", "Open": 780.0, "High": 789.9, "Low": 778.4, "Close": 787.2, "Volume": 1486223 }, + { "Date": "2016-08-23", "Open": 786.6, "High": 788.9, "Low": 784.1, "Close": 786.9, "Volume": 1411937 }, + { "Date": "2016-08-26", "Open": 782.7, "High": 782.7, "Low": 773.1, "Close": 774.2, "Volume": 1533206 }, + { "Date": "2016-08-27", "Open": 775.5, "High": 786.0, "Low": 774.3, "Close": 783.0, "Volume": 1153247 }, + { "Date": "2016-08-28", "Open": 777.9, "High": 781.8, "Low": 775.0, "Close": 781.6, "Volume": 1109834 }, + { "Date": "2016-08-29", "Open": 781.4, "High": 785.8, "Low": 774.2, "Close": 775.0, "Volume": 1314746 }, + { "Date": "2016-08-30", "Open": 776.3, "High": 780.9, "Low": 774.1, "Close": 777.3, "Volume": 1585333 }, + { "Date": "2016-09-03", "Open": 774.3, "High": 776.1, "Low": 769.5, "Close": 772.6, "Volume": 1278821 }, + { "Date": "2016-09-04", "Open": 776.0, "High": 778.7, "Low": 772.9, "Close": 776.4, "Volume": 1201350 }, + { "Date": "2016-09-05", "Open": 779.3, "High": 782.1, "Low": 775.6, "Close": 776.5, "Volume": 1461151 }, + { "Date": "2016-09-06", "Open": 779.0, "High": 780.5, "Low": 775.5, "Close": 776.9, "Volume": 1070692 }, + { "Date": "2016-09-07", "Open": 779.7, "High": 779.7, "Low": 770.8, "Close": 775.1, "Volume": 933158 }, + { "Date": "2016-09-10", "Open": 777.7, "High": 789.4, "Low": 775.9, "Close": 785.9, "Volume": 1174923 }, + { "Date": "2016-09-11", "Open": 786.7, "High": 792.3, "Low": 780.6, "Close": 783.1, "Volume": 1372461 }, + { "Date": "2016-09-12", "Open": 783.8, "High": 788.1, "Low": 782.1, "Close": 786.1, "Volume": 937435 }, + { "Date": "2016-09-13", "Open": 781.2, "High": 781.2, "Low": 773.0, "Close": 778.2, "Volume": 1365277 }, + { "Date": "2016-09-14", "Open": 781.6, "High": 784.0, "Low": 776.0, "Close": 778.5, "Volume": 852487 }, + { "Date": "2016-09-17", "Open": 779.8, "High": 785.9, "Low": 777.5, "Close": 780.0, "Volume": 1092973 }, + { "Date": "2016-09-18", "Open": 787.9, "High": 801.6, "Low": 785.6, "Close": 795.3, "Volume": 2056903 }, + { "Date": "2016-09-19", "Open": 798.9, "High": 804.6, "Low": 797.6, "Close": 801.6, "Volume": 1766798 }, + { "Date": "2016-09-20", "Open": 803.3, "High": 804.0, "Low": 796.0, "Close": 797.0, "Volume": 1757528 }, + { "Date": "2016-09-21", "Open": 795.0, "High": 799.5, "Low": 794.0, "Close": 799.4, "Volume": 1266181 }, + { "Date": "2016-09-24", "Open": 804.9, "High": 815.2, "Low": 804.8, "Close": 813.1, "Volume": 1697514 }, + { "Date": "2016-09-25", "Open": 816.7, "High": 816.7, "Low": 805.1, "Close": 807.7, "Volume": 1576404 }, + { "Date": "2016-09-26", "Open": 806.3, "High": 807.0, "Low": 796.3, "Close": 799.1, "Volume": 1647733 }, + { "Date": "2016-09-27", "Open": 801.0, "High": 803.5, "Low": 791.5, "Close": 795.4, "Volume": 2749221 }, + { "Date": "2016-09-28", "Open": 808.4, "High": 815.5, "Low": 793.6, "Close": 795.4, "Volume": 4269902 }, + { "Date": "2016-09-31", "Open": 795.5, "High": 796.9, "Low": 784.0, "Close": 784.5, "Volume": 2427284 }, + { "Date": "2016-10-01", "Open": 782.9, "High": 789.5, "Low": 775.5, "Close": 783.6, "Volume": 2406356 }, + { "Date": "2016-10-02", "Open": 778.2, "High": 781.6, "Low": 763.5, "Close": 768.7, "Volume": 1918414 }, + { "Date": "2016-10-03", "Open": 767.3, "High": 770.0, "Low": 759.0, "Close": 762.1, "Volume": 1943175 }, + { "Date": "2016-10-04", "Open": 750.7, "High": 770.4, "Low": 750.6, "Close": 762.0, "Volume": 2134812 }, + { "Date": "2016-10-07", "Open": 774.5, "High": 785.2, "Low": 772.5, "Close": 782.5, "Volume": 1585070 }, + { "Date": "2016-10-08", "Open": 783.4, "High": 795.6, "Low": 780.2, "Close": 790.5, "Volume": 1366873 }, + { "Date": "2016-10-09", "Open": 779.9, "High": 791.2, "Low": 771.7, "Close": 785.3, "Volume": 2607121 }, + { "Date": "2016-10-10", "Open": 791.2, "High": 791.2, "Low": 752.2, "Close": 762.6, "Volume": 4745183 }, + { "Date": "2016-10-11", "Open": 756.5, "High": 760.8, "Low": 750.4, "Close": 754.0, "Volume": 2431815 }, + { "Date": "2016-10-14", "Open": 755.6, "High": 757.9, "Low": 727.5, "Close": 736.1, "Volume": 3654385 }, + { "Date": "2016-10-15", "Open": 747.0, "High": 764.4, "Low": 747.0, "Close": 758.5, "Volume": 2384001 }, + { "Date": "2016-10-16", "Open": 755.2, "High": 766.4, "Low": 750.5, "Close": 764.5, "Volume": 1472594 }, + { "Date": "2016-10-17", "Open": 766.9, "High": 772.7, "Low": 764.2, "Close": 771.2, "Volume": 1286961 }, + { "Date": "2016-10-18", "Open": 771.4, "High": 775.0, "Low": 760.0, "Close": 760.5, "Volume": 1547145 }, + { "Date": "2016-10-21", "Open": 762.6, "High": 769.7, "Low": 760.6, "Close": 769.2, "Volume": 1330639 }, + { "Date": "2016-10-22", "Open": 772.6, "High": 777.0, "Low": 767.0, "Close": 768.3, "Volume": 1593108 }, + { "Date": "2016-10-23", "Open": 767.7, "High": 768.3, "Low": 755.3, "Close": 761.0, "Volume": 1478417 }, + { "Date": "2016-10-25", "Open": 764.3, "High": 765.0, "Low": 760.5, "Close": 761.7, "Volume": 587421 }, + { "Date": "2016-10-28", "Open": 760.0, "High": 779.5, "Low": 759.8, "Close": 768.2, "Volume": 2188151 }, + { "Date": "2016-10-29", "Open": 771.5, "High": 778.5, "Low": 768.2, "Close": 770.8, "Volume": 1616618 }, + { "Date": "2016-10-30", "Open": 770.1, "High": 773.0, "Low": 754.8, "Close": 758.0, "Volume": 2392890 }, + { "Date": "2016-11-01", "Open": 757.4, "High": 759.9, "Low": 737.0, "Close": 747.9, "Volume": 3017947 }, + { "Date": "2016-11-02", "Open": 744.6, "High": 754.0, "Low": 743.1, "Close": 750.5, "Volume": 1452484 }, + { "Date": "2016-11-05", "Open": 757.7, "High": 763.9, "Low": 752.9, "Close": 762.5, "Volume": 1394223 }, + { "Date": "2016-11-06", "Open": 764.7, "High": 768.8, "Low": 757.3, "Close": 759.1, "Volume": 1690689 }, + { "Date": "2016-11-07", "Open": 761.0, "High": 771.4, "Low": 755.8, "Close": 771.2, "Volume": 1760966 }, + { "Date": "2016-11-08", "Open": 772.5, "High": 778.2, "Low": 767.2, "Close": 776.4, "Volume": 1488059 }, + { "Date": "2016-11-09", "Open": 780.0, "High": 789.4, "Low": 779.0, "Close": 789.3, "Volume": 1821914 }, + { "Date": "2016-11-12", "Open": 785.0, "High": 791.3, "Low": 784.4, "Close": 789.3, "Volume": 2104117 }, + { "Date": "2016-11-13", "Open": 793.9, "High": 804.4, "Low": 793.3, "Close": 796.1, "Volume": 2145209 }, + { "Date": "2016-11-14", "Open": 797.4, "High": 804.0, "Low": 794.0, "Close": 797.1, "Volume": 1704150 }, + { "Date": "2016-11-15", "Open": 797.3, "High": 803.0, "Low": 792.9, "Close": 797.9, "Volume": 1626499 }, + { "Date": "2016-11-16", "Open": 800.4, "High": 800.9, "Low": 790.3, "Close": 790.8, "Volume": 2443796 }, + { "Date": "2016-11-19", "Open": 790.2, "High": 797.7, "Low": 786.3, "Close": 794.2, "Volume": 1232087 }, + { "Date": "2016-11-20", "Open": 796.8, "High": 798.6, "Low": 793.3, "Close": 796.4, "Volume": 951014 }, + { "Date": "2016-11-21", "Open": 795.8, "High": 796.7, "Low": 787.1, "Close": 794.6, "Volume": 1211346 }, + { "Date": "2016-11-22", "Open": 792.4, "High": 793.3, "Low": 788.6, "Close": 791.3, "Volume": 972169 }, + { "Date": "2016-11-23", "Open": 790.9, "High": 792.7, "Low": 787.3, "Close": 789.9, "Volume": 623944 }, + { "Date": "2016-11-27", "Open": 790.7, "High": 797.9, "Low": 787.7, "Close": 791.5, "Volume": 789321 }, + { "Date": "2016-11-28", "Open": 793.7, "High": 794.2, "Low": 783.2, "Close": 785.0, "Volume": 1153824 }, + { "Date": "2016-11-29", "Open": 783.3, "High": 785.9, "Low": 778.9, "Close": 782.8, "Volume": 744272 }, + { "Date": "2016-11-30", "Open": 782.8, "High": 782.8, "Low": 770.4, "Close": 771.8, "Volume": 1769950 }, + { "Date": "2017-00-03", "Open": 778.8, "High": 789.6, "Low": 775.8, "Close": 786.1, "Volume": 1657268 }, + { "Date": "2017-00-04", "Open": 788.4, "High": 791.3, "Low": 783.2, "Close": 786.9, "Volume": 1072958 }, + { "Date": "2017-00-05", "Open": 786.1, "High": 794.5, "Low": 785.0, "Close": 794.0, "Volume": 1335167 }, + { "Date": "2017-00-06", "Open": 795.3, "High": 807.9, "Low": 792.2, "Close": 806.1, "Volume": 1640170 }, + { "Date": "2017-00-09", "Open": 806.4, "High": 810.0, "Low": 802.8, "Close": 806.6, "Volume": 1274645 }, + { "Date": "2017-00-10", "Open": 807.9, "High": 809.1, "Low": 803.5, "Close": 804.8, "Volume": 1176780 }, + { "Date": "2017-00-11", "Open": 805.0, "High": 808.1, "Low": 801.4, "Close": 807.9, "Volume": 1065936 }, + { "Date": "2017-00-12", "Open": 807.1, "High": 807.4, "Low": 799.2, "Close": 806.4, "Volume": 1353057 }, + { "Date": "2017-00-13", "Open": 807.5, "High": 811.2, "Low": 806.7, "Close": 807.9, "Volume": 1099215 }, + { "Date": "2017-00-17", "Open": 807.1, "High": 807.1, "Low": 800.4, "Close": 804.6, "Volume": 1362115 }, + { "Date": "2017-00-18", "Open": 805.8, "High": 806.2, "Low": 801.0, "Close": 806.1, "Volume": 1294407 }, + { "Date": "2017-00-19", "Open": 805.1, "High": 809.5, "Low": 801.8, "Close": 802.2, "Volume": 919325 }, + { "Date": "2017-00-20", "Open": 806.9, "High": 806.9, "Low": 801.7, "Close": 805.0, "Volume": 1670045 }, + { "Date": "2017-00-23", "Open": 807.3, "High": 820.9, "Low": 803.7, "Close": 819.3, "Volume": 1963628 }, + { "Date": "2017-00-24", "Open": 822.3, "High": 825.9, "Low": 817.8, "Close": 823.9, "Volume": 1474010 }, + { "Date": "2017-00-25", "Open": 829.6, "High": 835.8, "Low": 825.1, "Close": 835.7, "Volume": 1627304 }, + { "Date": "2017-00-26", "Open": 837.8, "High": 838.0, "Low": 827.0, "Close": 832.1, "Volume": 2973891 }, + { "Date": "2017-00-27", "Open": 834.7, "High": 842.0, "Low": 820.4, "Close": 823.3, "Volume": 2965771 }, + { "Date": "2017-00-30", "Open": 814.7, "High": 815.8, "Low": 799.8, "Close": 802.3, "Volume": 3246573 }, + { "Date": "2017-00-31", "Open": 796.9, "High": 801.3, "Low": 790.5, "Close": 796.8, "Volume": 2160556 }, + { "Date": "2017-01-01", "Open": 799.7, "High": 801.2, "Low": 791.2, "Close": 795.7, "Volume": 2029744 }, + { "Date": "2017-01-02", "Open": 793.8, "High": 802.7, "Low": 792.0, "Close": 798.5, "Volume": 1532138 }, + { "Date": "2017-01-03", "Open": 803.0, "High": 806.0, "Low": 800.4, "Close": 801.5, "Volume": 1463448 }, + { "Date": "2017-01-06", "Open": 799.7, "High": 801.7, "Low": 795.3, "Close": 801.3, "Volume": 1184483 }, + { "Date": "2017-01-07", "Open": 804.0, "High": 810.5, "Low": 801.8, "Close": 807.0, "Volume": 1241221 }, + { "Date": "2017-01-08", "Open": 807.0, "High": 811.8, "Low": 803.2, "Close": 808.4, "Volume": 1155990 }, + { "Date": "2017-01-09", "Open": 809.5, "High": 810.7, "Low": 804.5, "Close": 809.6, "Volume": 990391 }, + { "Date": "2017-01-10", "Open": 811.7, "High": 815.3, "Low": 809.8, "Close": 813.7, "Volume": 1134976 }, + { "Date": "2017-01-13", "Open": 816.0, "High": 821.0, "Low": 815.5, "Close": 819.2, "Volume": 1213324 }, + { "Date": "2017-01-14", "Open": 819.0, "High": 823.0, "Low": 816.0, "Close": 820.5, "Volume": 1054732 }, + { "Date": "2017-01-15", "Open": 819.4, "High": 823.0, "Low": 818.5, "Close": 819.0, "Volume": 1313617 }, + { "Date": "2017-01-16", "Open": 819.9, "High": 824.4, "Low": 819.0, "Close": 824.2, "Volume": 1287626 }, + { "Date": "2017-01-17", "Open": 823.0, "High": 828.1, "Low": 821.7, "Close": 828.1, "Volume": 1611039 }, + { "Date": "2017-01-21", "Open": 828.7, "High": 833.5, "Low": 828.4, "Close": 831.7, "Volume": 1262337 }, + { "Date": "2017-01-22", "Open": 828.7, "High": 833.3, "Low": 828.6, "Close": 830.8, "Volume": 987248 }, + { "Date": "2017-01-23", "Open": 830.1, "High": 832.5, "Low": 822.9, "Close": 831.3, "Volume": 1472771 }, + { "Date": "2017-01-24", "Open": 827.7, "High": 829.0, "Low": 824.2, "Close": 828.6, "Volume": 1392202 }, + { "Date": "2017-01-27", "Open": 824.5, "High": 830.5, "Low": 824.0, "Close": 829.3, "Volume": 1101466 }, + { "Date": "2017-01-28", "Open": 825.6, "High": 828.5, "Low": 820.2, "Close": 823.2, "Volume": 2260769 }, + { "Date": "2017-02-01", "Open": 828.9, "High": 836.3, "Low": 827.3, "Close": 835.2, "Volume": 1496540 }, + { "Date": "2017-02-02", "Open": 833.9, "High": 834.5, "Low": 829.6, "Close": 830.6, "Volume": 942476 }, + { "Date": "2017-02-03", "Open": 830.6, "High": 831.4, "Low": 825.8, "Close": 829.1, "Volume": 896378 }, + { "Date": "2017-02-06", "Open": 827.0, "High": 828.9, "Low": 822.4, "Close": 827.8, "Volume": 1109037 }, + { "Date": "2017-02-07", "Open": 827.4, "High": 833.4, "Low": 826.5, "Close": 831.9, "Volume": 1037630 }, + { "Date": "2017-02-08", "Open": 833.5, "High": 838.1, "Low": 831.8, "Close": 835.4, "Volume": 989773 }, + { "Date": "2017-02-09", "Open": 836.0, "High": 842.0, "Low": 834.2, "Close": 838.7, "Volume": 1261517 }, + { "Date": "2017-02-10", "Open": 843.3, "High": 844.9, "Low": 839.5, "Close": 843.3, "Volume": 1704024 }, + { "Date": "2017-02-13", "Open": 844.0, "High": 848.7, "Low": 843.3, "Close": 845.5, "Volume": 1223647 }, + { "Date": "2017-02-14", "Open": 843.6, "High": 847.2, "Low": 840.8, "Close": 845.6, "Volume": 780198 }, + { "Date": "2017-02-15", "Open": 847.6, "High": 848.6, "Low": 840.8, "Close": 847.2, "Volume": 1381474 }, + { "Date": "2017-02-16", "Open": 849.0, "High": 850.9, "Low": 846.1, "Close": 848.8, "Volume": 977560 }, + { "Date": "2017-02-17", "Open": 851.6, "High": 853.4, "Low": 847.1, "Close": 852.1, "Volume": 1716471 }, + { "Date": "2017-02-20", "Open": 850.0, "High": 850.2, "Low": 845.1, "Close": 848.4, "Volume": 1231521 }, + { "Date": "2017-02-21", "Open": 851.4, "High": 853.5, "Low": 829.0, "Close": 830.5, "Volume": 2463484 }, + { "Date": "2017-02-22", "Open": 831.9, "High": 835.5, "Low": 827.2, "Close": 829.6, "Volume": 1401465 }, + { "Date": "2017-02-23", "Open": 821.0, "High": 822.6, "Low": 812.3, "Close": 817.6, "Volume": 3487056 }, + { "Date": "2017-02-24", "Open": 820.1, "High": 821.9, "Low": 808.9, "Close": 814.4, "Volume": 1981006 }, + { "Date": "2017-02-27", "Open": 807.0, "High": 821.6, "Low": 803.4, "Close": 819.5, "Volume": 1894990 }, + { "Date": "2017-02-28", "Open": 820.4, "High": 826.0, "Low": 814.0, "Close": 820.9, "Volume": 1620542 }, + { "Date": "2017-02-29", "Open": 825.0, "High": 832.8, "Low": 822.4, "Close": 831.4, "Volume": 1786321 }, + { "Date": "2017-02-30", "Open": 833.5, "High": 833.7, "Low": 829.0, "Close": 831.5, "Volume": 1055339 }, + { "Date": "2017-02-31", "Open": 829.0, "High": 831.6, "Low": 827.4, "Close": 829.6, "Volume": 1401893 }, + { "Date": "2017-03-03", "Open": 829.2, "High": 840.9, "Low": 829.2, "Close": 838.5, "Volume": 1671503 }, + { "Date": "2017-03-04", "Open": 831.4, "High": 835.2, "Low": 829.0, "Close": 834.6, "Volume": 1045363 }, + { "Date": "2017-03-05", "Open": 835.5, "High": 842.5, "Low": 830.7, "Close": 831.4, "Volume": 1555328 }, + { "Date": "2017-03-06", "Open": 832.4, "High": 836.4, "Low": 826.5, "Close": 827.9, "Volume": 1254433 }, + { "Date": "2017-03-07", "Open": 828.0, "High": 828.5, "Low": 820.5, "Close": 824.7, "Volume": 1057253 }, + { "Date": "2017-03-10", "Open": 825.4, "High": 829.4, "Low": 823.8, "Close": 824.7, "Volume": 978905 }, + { "Date": "2017-03-11", "Open": 824.7, "High": 827.4, "Low": 817.0, "Close": 823.4, "Volume": 1079732 }, + { "Date": "2017-03-12", "Open": 821.9, "High": 826.7, "Low": 821.0, "Close": 824.3, "Volume": 900480 }, + { "Date": "2017-03-13", "Open": 822.1, "High": 826.4, "Low": 821.4, "Close": 823.6, "Volume": 1122362 }, + { "Date": "2017-03-17", "Open": 825.0, "High": 837.8, "Low": 824.5, "Close": 837.2, "Volume": 895015 }, + { "Date": "2017-03-18", "Open": 834.2, "High": 838.9, "Low": 832.7, "Close": 836.8, "Volume": 836722 }, + { "Date": "2017-03-19", "Open": 839.8, "High": 842.2, "Low": 836.3, "Close": 838.2, "Volume": 954330 }, + { "Date": "2017-03-20", "Open": 841.4, "High": 845.2, "Low": 839.3, "Close": 841.6, "Volume": 959031 }, + { "Date": "2017-03-21", "Open": 842.9, "High": 843.9, "Low": 840.6, "Close": 843.2, "Volume": 1323583 }, + { "Date": "2017-03-24", "Open": 851.2, "High": 863.5, "Low": 849.9, "Close": 862.8, "Volume": 1372541 }, + { "Date": "2017-03-25", "Open": 865.0, "High": 875.0, "Low": 862.8, "Close": 872.3, "Volume": 1671972 }, + { "Date": "2017-03-26", "Open": 874.2, "High": 876.0, "Low": 867.8, "Close": 871.7, "Volume": 1237167 }, + { "Date": "2017-03-27", "Open": 873.6, "High": 875.4, "Low": 870.4, "Close": 874.3, "Volume": 2026816 }, + { "Date": "2017-03-28", "Open": 910.7, "High": 916.9, "Low": 905.8, "Close": 906.0, "Volume": 3276255 }, + { "Date": "2017-04-01", "Open": 901.9, "High": 915.7, "Low": 901.5, "Close": 912.6, "Volume": 2115993 }, + { "Date": "2017-04-02", "Open": 909.6, "High": 920.8, "Low": 909.5, "Close": 916.4, "Volume": 1587219 }, + { "Date": "2017-04-03", "Open": 914.9, "High": 928.1, "Low": 912.5, "Close": 927.0, "Volume": 1499532 }, + { "Date": "2017-04-04", "Open": 926.1, "High": 935.9, "Low": 924.6, "Close": 931.7, "Volume": 1422144 }, + { "Date": "2017-04-05", "Open": 933.5, "High": 934.9, "Low": 925.2, "Close": 927.1, "Volume": 1911275 }, + { "Date": "2017-04-08", "Open": 926.1, "High": 936.9, "Low": 925.3, "Close": 934.3, "Volume": 1329825 }, + { "Date": "2017-04-09", "Open": 937.0, "High": 937.5, "Low": 929.5, "Close": 932.2, "Volume": 1581809 }, + { "Date": "2017-04-10", "Open": 932.0, "High": 932.0, "Low": 925.2, "Close": 928.8, "Volume": 1173925 }, + { "Date": "2017-04-11", "Open": 925.3, "High": 932.5, "Low": 923.0, "Close": 930.6, "Volume": 835386 }, + { "Date": "2017-04-12", "Open": 931.5, "High": 933.4, "Low": 927.9, "Close": 932.2, "Volume": 1050601 }, + { "Date": "2017-04-15", "Open": 933.0, "High": 938.3, "Low": 929.3, "Close": 937.1, "Volume": 1108496 }, + { "Date": "2017-04-16", "Open": 940.0, "High": 943.1, "Low": 937.6, "Close": 943.0, "Volume": 969479 }, + { "Date": "2017-04-17", "Open": 935.7, "High": 939.3, "Low": 918.1, "Close": 919.6, "Volume": 2362072 }, + { "Date": "2017-04-18", "Open": 921.0, "High": 933.2, "Low": 918.8, "Close": 930.2, "Volume": 1596897 }, + { "Date": "2017-04-19", "Open": 931.5, "High": 937.8, "Low": 931.0, "Close": 934.0, "Volume": 1393024 }, + { "Date": "2017-04-22", "Open": 935.0, "High": 941.9, "Low": 935.0, "Close": 941.9, "Volume": 1120385 }, + { "Date": "2017-04-23", "Open": 947.9, "High": 951.5, "Low": 942.6, "Close": 948.8, "Volume": 1270817 }, + { "Date": "2017-04-24", "Open": 953.0, "High": 955.1, "Low": 949.5, "Close": 955.0, "Volume": 1034199 }, + { "Date": "2017-04-25", "Open": 957.3, "High": 972.6, "Low": 955.5, "Close": 969.5, "Volume": 1660474 }, + { "Date": "2017-04-26", "Open": 969.7, "High": 975.0, "Low": 965.0, "Close": 971.5, "Volume": 1252010 }, + { "Date": "2017-04-30", "Open": 970.3, "High": 976.2, "Low": 969.5, "Close": 975.9, "Volume": 1466654 }, + { "Date": "2017-04-31", "Open": 975.0, "High": 979.3, "Low": 960.2, "Close": 964.9, "Volume": 2448067 }, + { "Date": "2017-05-01", "Open": 969.0, "High": 971.5, "Low": 960.0, "Close": 967.0, "Volume": 1410458 }, + { "Date": "2017-05-02", "Open": 969.5, "High": 975.9, "Low": 966.0, "Close": 975.6, "Volume": 1750955 }, + { "Date": "2017-05-05", "Open": 976.5, "High": 986.9, "Low": 975.1, "Close": 983.7, "Volume": 1252106 }, + { "Date": "2017-05-06", "Open": 983.2, "High": 988.3, "Low": 975.1, "Close": 976.6, "Volume": 1814624 }, + { "Date": "2017-05-07", "Open": 979.6, "High": 984.1, "Low": 975.8, "Close": 981.1, "Volume": 1453874 }, + { "Date": "2017-05-08", "Open": 982.4, "High": 984.6, "Low": 977.2, "Close": 983.4, "Volume": 1481916 }, + { "Date": "2017-05-09", "Open": 984.5, "High": 984.5, "Low": 935.6, "Close": 949.8, "Volume": 3309389 }, + { "Date": "2017-05-12", "Open": 939.6, "High": 949.4, "Low": 915.2, "Close": 942.9, "Volume": 3763529 }, + { "Date": "2017-05-13", "Open": 951.9, "High": 960.0, "Low": 944.1, "Close": 953.4, "Volume": 2013337 }, + { "Date": "2017-05-14", "Open": 959.9, "High": 961.1, "Low": 942.3, "Close": 950.8, "Volume": 1489715 }, + { "Date": "2017-05-15", "Open": 934.0, "High": 943.3, "Low": 924.4, "Close": 942.3, "Volume": 2133050 }, + { "Date": "2017-05-16", "Open": 940.0, "High": 942.0, "Low": 931.6, "Close": 939.8, "Volume": 3094711 }, + { "Date": "2017-05-19", "Open": 950.0, "High": 960.0, "Low": 949.0, "Close": 957.4, "Volume": 1533336 }, + { "Date": "2017-05-20", "Open": 957.5, "High": 961.6, "Low": 950.0, "Close": 950.6, "Volume": 1125990 }, + { "Date": "2017-05-21", "Open": 953.6, "High": 960.1, "Low": 950.8, "Close": 959.5, "Volume": 1202233 }, + { "Date": "2017-05-22", "Open": 958.7, "High": 960.7, "Low": 954.5, "Close": 957.1, "Volume": 941958 }, + { "Date": "2017-05-23", "Open": 956.8, "High": 966.0, "Low": 954.2, "Close": 965.6, "Volume": 1527856 }, + { "Date": "2017-05-26", "Open": 969.9, "High": 973.3, "Low": 950.8, "Close": 952.3, "Volume": 1598355 }, + { "Date": "2017-05-27", "Open": 942.5, "High": 948.3, "Low": 926.9, "Close": 927.3, "Volume": 2579930 }, + { "Date": "2017-05-28", "Open": 929.0, "High": 942.8, "Low": 916.0, "Close": 940.5, "Volume": 2721406 }, + { "Date": "2017-05-29", "Open": 929.9, "High": 931.3, "Low": 910.6, "Close": 917.8, "Volume": 3299176 }, + { "Date": "2017-05-30", "Open": 926.0, "High": 926.0, "Low": 908.3, "Close": 908.7, "Volume": 2090226 }, + { "Date": "2017-06-03", "Open": 912.2, "High": 913.9, "Low": 894.8, "Close": 898.7, "Volume": 1710373 }, + { "Date": "2017-06-05", "Open": 901.8, "High": 914.5, "Low": 898.5, "Close": 911.7, "Volume": 1813884 }, + { "Date": "2017-06-06", "Open": 904.1, "High": 914.9, "Low": 899.7, "Close": 906.7, "Volume": 1424503 }, + { "Date": "2017-06-07", "Open": 908.9, "High": 921.5, "Low": 908.9, "Close": 918.6, "Volume": 1637785 }, + { "Date": "2017-06-10", "Open": 921.8, "High": 930.4, "Low": 919.6, "Close": 928.8, "Volume": 1192825 }, + { "Date": "2017-06-11", "Open": 929.5, "High": 931.4, "Low": 922.0, "Close": 930.1, "Volume": 1113235 }, + { "Date": "2017-06-12", "Open": 938.7, "High": 946.3, "Low": 934.5, "Close": 943.8, "Volume": 1532144 }, + { "Date": "2017-06-13", "Open": 946.3, "High": 954.5, "Low": 943.0, "Close": 947.2, "Volume": 1294687 }, + { "Date": "2017-06-14", "Open": 952.0, "High": 956.9, "Low": 948.0, "Close": 956.0, "Volume": 1053774 }, + { "Date": "2017-06-17", "Open": 957.0, "High": 960.7, "Low": 949.2, "Close": 953.4, "Volume": 1165537 }, + { "Date": "2017-06-18", "Open": 953.0, "High": 968.0, "Low": 950.6, "Close": 965.4, "Volume": 1153964 }, + { "Date": "2017-06-19", "Open": 967.8, "High": 973.0, "Low": 964.0, "Close": 970.9, "Volume": 1224540 }, + { "Date": "2017-06-20", "Open": 975.0, "High": 975.9, "Low": 961.5, "Close": 968.1, "Volume": 1624463 }, + { "Date": "2017-06-21", "Open": 962.3, "High": 973.2, "Low": 960.1, "Close": 972.9, "Volume": 1711000 }, + { "Date": "2017-06-24", "Open": 972.2, "High": 986.2, "Low": 970.8, "Close": 980.3, "Volume": 3248347 }, + { "Date": "2017-06-25", "Open": 953.8, "High": 959.7, "Low": 945.4, "Close": 950.7, "Volume": 4660979 }, + { "Date": "2017-06-26", "Open": 954.7, "High": 955.0, "Low": 942.3, "Close": 947.8, "Volume": 2088256 }, + { "Date": "2017-06-27", "Open": 951.8, "High": 951.8, "Low": 920.0, "Close": 934.1, "Volume": 3212996 }, + { "Date": "2017-06-28", "Open": 929.4, "High": 943.8, "Low": 927.5, "Close": 941.5, "Volume": 1846351 }, + { "Date": "2017-06-31", "Open": 941.9, "High": 943.6, "Low": 926.0, "Close": 930.5, "Volume": 1970095 }, + { "Date": "2017-07-01", "Open": 932.4, "High": 937.5, "Low": 929.3, "Close": 930.8, "Volume": 1277734 }, + { "Date": "2017-07-02", "Open": 928.6, "High": 932.6, "Low": 916.7, "Close": 930.4, "Volume": 1824448 }, + { "Date": "2017-07-03", "Open": 930.3, "High": 932.2, "Low": 922.2, "Close": 923.6, "Volume": 1202512 }, + { "Date": "2017-07-04", "Open": 926.8, "High": 930.3, "Low": 923.0, "Close": 928.0, "Volume": 1082267 }, + { "Date": "2017-07-07", "Open": 929.1, "High": 931.7, "Low": 926.5, "Close": 929.4, "Volume": 1032239 }, + { "Date": "2017-07-08", "Open": 927.1, "High": 935.8, "Low": 925.6, "Close": 926.8, "Volume": 1061579 }, + { "Date": "2017-07-09", "Open": 920.6, "High": 926.0, "Low": 917.3, "Close": 922.9, "Volume": 1192081 }, + { "Date": "2017-07-10", "Open": 917.5, "High": 919.3, "Low": 906.1, "Close": 907.2, "Volume": 1823967 }, + { "Date": "2017-07-11", "Open": 908.0, "High": 917.8, "Low": 905.6, "Close": 914.4, "Volume": 1206782 }, + { "Date": "2017-07-14", "Open": 922.5, "High": 924.7, "Low": 918.2, "Close": 922.7, "Volume": 1064530 }, + { "Date": "2017-07-15", "Open": 924.2, "High": 926.5, "Low": 919.8, "Close": 922.2, "Volume": 883369 }, + { "Date": "2017-07-16", "Open": 925.3, "High": 932.7, "Low": 923.4, "Close": 927.0, "Volume": 1006711 }, + { "Date": "2017-07-17", "Open": 925.8, "High": 926.9, "Low": 911.0, "Close": 911.0, "Volume": 1277238 }, + { "Date": "2017-07-18", "Open": 910.3, "High": 915.3, "Low": 907.1, "Close": 910.7, "Volume": 1342689 }, + { "Date": "2017-07-21", "Open": 910.0, "High": 913.0, "Low": 903.4, "Close": 906.7, "Volume": 943441 }, + { "Date": "2017-07-22", "Open": 912.7, "High": 925.9, "Low": 911.5, "Close": 924.7, "Volume": 1166737 }, + { "Date": "2017-07-23", "Open": 921.9, "High": 929.9, "Low": 919.4, "Close": 927.0, "Volume": 1090248 }, + { "Date": "2017-07-24", "Open": 928.7, "High": 930.8, "Low": 915.5, "Close": 921.3, "Volume": 1270306 }, + { "Date": "2017-07-25", "Open": 923.5, "High": 925.6, "Low": 915.5, "Close": 915.9, "Volume": 1053376 }, + { "Date": "2017-07-28", "Open": 916.0, "High": 919.2, "Low": 911.9, "Close": 913.8, "Volume": 1086484 }, + { "Date": "2017-07-29", "Open": 905.1, "High": 923.3, "Low": 905.0, "Close": 921.3, "Volume": 1185564 }, + { "Date": "2017-07-30", "Open": 920.0, "High": 930.8, "Low": 919.6, "Close": 929.6, "Volume": 1301225 }, + { "Date": "2017-07-31", "Open": 931.8, "High": 942.0, "Low": 931.8, "Close": 939.3, "Volume": 1582579 }, + { "Date": "2017-08-01", "Open": 941.1, "High": 942.5, "Low": 935.1, "Close": 937.3, "Volume": 947374 }, + { "Date": "2017-08-05", "Open": 933.1, "High": 937.0, "Low": 922.0, "Close": 928.5, "Volume": 1348292 }, + { "Date": "2017-08-06", "Open": 930.1, "High": 930.9, "Low": 919.3, "Close": 927.8, "Volume": 1527650 }, + { "Date": "2017-08-07", "Open": 931.7, "High": 936.4, "Low": 923.6, "Close": 936.0, "Volume": 1212743 }, + { "Date": "2017-08-08", "Open": 936.5, "High": 937.0, "Low": 924.9, "Close": 926.5, "Volume": 1011538 }, + { "Date": "2017-08-11", "Open": 934.3, "High": 938.4, "Low": 926.9, "Close": 929.1, "Volume": 1266991 }, + { "Date": "2017-08-12", "Open": 932.6, "High": 933.5, "Low": 923.9, "Close": 932.1, "Volume": 1134397 }, + { "Date": "2017-08-13", "Open": 930.7, "High": 937.3, "Low": 929.9, "Close": 935.1, "Volume": 1102631 }, + { "Date": "2017-08-14", "Open": 931.3, "High": 932.8, "Low": 924.0, "Close": 925.1, "Volume": 1397644 }, + { "Date": "2017-08-15", "Open": 924.7, "High": 926.5, "Low": 916.4, "Close": 920.3, "Volume": 2505430 }, + { "Date": "2017-08-18", "Open": 920.0, "High": 922.1, "Low": 910.6, "Close": 915.0, "Volume": 1306922 }, + { "Date": "2017-08-19", "Open": 917.4, "High": 922.4, "Low": 912.5, "Close": 921.8, "Volume": 936654 }, + { "Date": "2017-08-20", "Open": 923.0, "High": 933.9, "Low": 922.0, "Close": 931.6, "Volume": 1669763 }, + { "Date": "2017-08-21", "Open": 933.0, "High": 936.5, "Low": 923.8, "Close": 932.5, "Volume": 1290607 }, + { "Date": "2017-08-22", "Open": 927.8, "High": 934.7, "Low": 926.5, "Close": 928.5, "Volume": 1052704 }, + { "Date": "2017-08-25", "Open": 925.5, "High": 926.4, "Low": 909.7, "Close": 921.0, "Volume": 1856822 }, + { "Date": "2017-08-26", "Open": 923.7, "High": 930.8, "Low": 921.1, "Close": 924.9, "Volume": 1666861 }, + { "Date": "2017-08-27", "Open": 927.7, "High": 949.9, "Low": 927.7, "Close": 944.5, "Volume": 2212600 }, + { "Date": "2017-08-28", "Open": 941.4, "High": 950.7, "Low": 940.5, "Close": 949.5, "Volume": 1020312 }, + { "Date": "2017-08-29", "Open": 952.0, "High": 959.8, "Low": 951.5, "Close": 959.1, "Volume": 1580994 }, + { "Date": "2017-09-02", "Open": 960.0, "High": 962.5, "Low": 947.8, "Close": 953.3, "Volume": 1283444 }, + { "Date": "2017-09-03", "Open": 954.0, "High": 958.0, "Low": 949.1, "Close": 957.8, "Volume": 888346 }, + { "Date": "2017-09-04", "Open": 957.0, "High": 960.4, "Low": 950.7, "Close": 951.7, "Volume": 952391 }, + { "Date": "2017-09-05", "Open": 955.5, "High": 970.9, "Low": 955.2, "Close": 970.0, "Volume": 1213816 }, + { "Date": "2017-09-06", "Open": 966.7, "High": 979.5, "Low": 963.4, "Close": 978.9, "Volume": 1173882 }, + { "Date": "2017-09-09", "Open": 980.0, "High": 985.4, "Low": 976.1, "Close": 977.0, "Volume": 891355 }, + { "Date": "2017-09-10", "Open": 980.0, "High": 981.6, "Low": 966.1, "Close": 972.6, "Volume": 968362 }, + { "Date": "2017-09-11", "Open": 973.7, "High": 990.7, "Low": 972.3, "Close": 989.3, "Volume": 1693274 }, + { "Date": "2017-09-12", "Open": 987.5, "High": 994.1, "Low": 985.0, "Close": 987.8, "Volume": 1262793 }, + { "Date": "2017-09-13", "Open": 992.0, "High": 997.2, "Low": 989.0, "Close": 989.7, "Volume": 1169777 }, + { "Date": "2017-09-16", "Open": 992.1, "High": 993.9, "Low": 984.0, "Close": 992.0, "Volume": 910543 }, + { "Date": "2017-09-17", "Open": 990.3, "High": 996.4, "Low": 988.6, "Close": 992.2, "Volume": 1290186 }, + { "Date": "2017-09-18", "Open": 991.8, "High": 996.7, "Low": 987.0, "Close": 992.8, "Volume": 1057581 }, + { "Date": "2017-09-19", "Open": 986.0, "High": 988.9, "Low": 978.4, "Close": 984.5, "Volume": 1313575 }, + { "Date": "2017-09-20", "Open": 989.4, "High": 991.0, "Low": 984.6, "Close": 988.2, "Volume": 1183186 }, + { "Date": "2017-09-23", "Open": 989.5, "High": 989.5, "Low": 966.1, "Close": 968.5, "Volume": 1478448 }, + { "Date": "2017-09-24", "Open": 970.0, "High": 972.2, "Low": 961.0, "Close": 970.5, "Volume": 1212153 }, + { "Date": "2017-09-25", "Open": 968.4, "High": 976.1, "Low": 960.5, "Close": 973.3, "Volume": 1211262 }, + { "Date": "2017-09-26", "Open": 980.0, "High": 987.6, "Low": 972.2, "Close": 972.6, "Volume": 2042149 }, + { "Date": "2017-09-27", "Open": 1009.2, "High": 1048.4, "Low": 1008.2, "Close": 1019.3, "Volume": 5167689 }, + { "Date": "2017-09-30", "Open": 1014.0, "High": 1025.0, "Low": 1007.5, "Close": 1017.1, "Volume": 2085062 }, + { "Date": "2017-09-31", "Open": 1015.2, "High": 1024.0, "Low": 1010.4, "Close": 1016.6, "Volume": 1331391 }, + { "Date": "2017-10-01", "Open": 1017.2, "High": 1029.7, "Low": 1017.0, "Close": 1025.5, "Volume": 1373444 }, + { "Date": "2017-10-02", "Open": 1021.8, "High": 1028.1, "Low": 1013.0, "Close": 1025.6, "Volume": 1048970 }, + { "Date": "2017-10-03", "Open": 1022.1, "High": 1032.7, "Low": 1020.3, "Close": 1032.5, "Volume": 1076350 }, + { "Date": "2017-10-06", "Open": 1029.0, "High": 1034.9, "Low": 1025.0, "Close": 1025.9, "Volume": 1125185 }, + { "Date": "2017-10-07", "Open": 1027.3, "High": 1034.0, "Low": 1025.1, "Close": 1033.3, "Volume": 1112331 }, + { "Date": "2017-10-08", "Open": 1030.5, "High": 1043.5, "Low": 1028.5, "Close": 1039.8, "Volume": 1088716 }, + { "Date": "2017-10-09", "Open": 1034.0, "High": 1034.0, "Low": 1019.7, "Close": 1031.3, "Volume": 1245246 }, + { "Date": "2017-10-10", "Open": 1026.5, "High": 1030.8, "Low": 1025.3, "Close": 1028.1, "Volume": 720676 }, + { "Date": "2017-10-13", "Open": 1023.4, "High": 1031.6, "Low": 1022.6, "Close": 1025.8, "Volume": 885779 }, + { "Date": "2017-10-14", "Open": 1022.6, "High": 1026.8, "Low": 1014.1, "Close": 1026.0, "Volume": 959222 }, + { "Date": "2017-10-15", "Open": 1019.2, "High": 1024.1, "Low": 1015.4, "Close": 1020.9, "Volume": 853992 }, + { "Date": "2017-10-16", "Open": 1022.5, "High": 1035.9, "Low": 1022.5, "Close": 1032.5, "Volume": 1129688 }, + { "Date": "2017-10-17", "Open": 1034.0, "High": 1034.4, "Low": 1017.8, "Close": 1019.1, "Volume": 1397064 }, + { "Date": "2017-10-20", "Open": 1020.3, "High": 1022.6, "Low": 1017.5, "Close": 1018.4, "Volume": 953470 }, + { "Date": "2017-10-21", "Open": 1023.3, "High": 1035.1, "Low": 1022.7, "Close": 1034.5, "Volume": 1096999 }, + { "Date": "2017-10-22", "Open": 1035.0, "High": 1039.7, "Low": 1031.4, "Close": 1036.0, "Volume": 746878 }, + { "Date": "2017-10-24", "Open": 1035.9, "High": 1043.2, "Low": 1035.0, "Close": 1040.6, "Volume": 536996 }, + { "Date": "2017-10-27", "Open": 1040.0, "High": 1055.5, "Low": 1038.4, "Close": 1054.2, "Volume": 1307881 }, + { "Date": "2017-10-28", "Open": 1055.1, "High": 1062.4, "Low": 1040.0, "Close": 1047.4, "Volume": 1424394 }, + { "Date": "2017-10-29", "Open": 1042.7, "High": 1044.1, "Low": 1015.6, "Close": 1021.7, "Volume": 2459426 }, + { "Date": "2017-10-30", "Open": 1022.4, "High": 1028.5, "Low": 1015.0, "Close": 1021.4, "Volume": 1724031 }, + { "Date": "2017-11-01", "Open": 1015.8, "High": 1022.5, "Low": 1002.0, "Close": 1010.2, "Volume": 1909566 }, + { "Date": "2017-11-04", "Open": 1012.7, "High": 1016.1, "Low": 995.6, "Close": 998.7, "Volume": 1906439 }, + { "Date": "2017-11-05", "Open": 995.9, "High": 1020.6, "Low": 988.3, "Close": 1005.1, "Volume": 2067318 }, + { "Date": "2017-11-06", "Open": 1001.5, "High": 1025.0, "Low": 1001.1, "Close": 1018.4, "Volume": 1271964 }, + { "Date": "2017-11-07", "Open": 1020.4, "High": 1034.2, "Low": 1018.1, "Close": 1030.9, "Volume": 1458242 }, + { "Date": "2017-11-08", "Open": 1037.5, "High": 1042.0, "Low": 1032.5, "Close": 1037.0, "Volume": 1290774 }, + { "Date": "2017-11-11", "Open": 1035.5, "High": 1043.8, "Low": 1032.0, "Close": 1041.1, "Volume": 1192838 }, + { "Date": "2017-11-12", "Open": 1039.6, "High": 1050.3, "Low": 1033.7, "Close": 1040.5, "Volume": 1279659 }, + { "Date": "2017-11-13", "Open": 1046.1, "High": 1046.7, "Low": 1038.4, "Close": 1040.6, "Volume": 1282677 }, + { "Date": "2017-11-14", "Open": 1045.0, "High": 1058.5, "Low": 1043.1, "Close": 1049.2, "Volume": 1558835 }, + { "Date": "2017-11-15", "Open": 1054.6, "High": 1067.6, "Low": 1049.5, "Close": 1064.2, "Volume": 3275931 }, + { "Date": "2017-11-18", "Open": 1066.1, "High": 1078.5, "Low": 1062.0, "Close": 1077.1, "Volume": 1554552 }, + { "Date": "2017-11-19", "Open": 1075.2, "High": 1076.8, "Low": 1063.5, "Close": 1070.7, "Volume": 1338725 }, + { "Date": "2017-11-20", "Open": 1071.8, "High": 1073.4, "Low": 1061.5, "Close": 1065.0, "Volume": 1268582 }, + { "Date": "2017-11-21", "Open": 1065.0, "High": 1069.3, "Low": 1061.8, "Close": 1063.6, "Volume": 995703 }, + { "Date": "2017-11-22", "Open": 1061.1, "High": 1064.2, "Low": 1059.4, "Close": 1060.1, "Volume": 755095 }, + { "Date": "2017-11-26", "Open": 1058.1, "High": 1060.1, "Low": 1050.2, "Close": 1056.7, "Volume": 761237 }, + { "Date": "2017-11-27", "Open": 1057.4, "High": 1058.4, "Low": 1048.0, "Close": 1049.4, "Volume": 1271911 }, + { "Date": "2017-11-28", "Open": 1051.6, "High": 1054.8, "Low": 1044.8, "Close": 1048.1, "Volume": 837121 }, + { "Date": "2017-11-29", "Open": 1046.7, "High": 1049.7, "Low": 1044.9, "Close": 1046.4, "Volume": 887511 }, + { "Date": "2018-00-02", "Open": 1048.3, "High": 1066.9, "Low": 1045.2, "Close": 1065.0, "Volume": 1237564 }, + { "Date": "2018-00-03", "Open": 1064.3, "High": 1086.3, "Low": 1063.2, "Close": 1082.5, "Volume": 1430170 }, + { "Date": "2018-00-04", "Open": 1088.0, "High": 1093.6, "Low": 1084.0, "Close": 1086.4, "Volume": 1004605 }, + { "Date": "2018-00-05", "Open": 1094.0, "High": 1104.3, "Low": 1092.0, "Close": 1102.2, "Volume": 1279123 }, + { "Date": "2018-00-08", "Open": 1102.2, "High": 1111.3, "Low": 1101.6, "Close": 1106.9, "Volume": 1047603 }, + { "Date": "2018-00-09", "Open": 1109.4, "High": 1110.6, "Low": 1101.2, "Close": 1106.3, "Volume": 902541 }, + { "Date": "2018-00-10", "Open": 1097.1, "High": 1104.6, "Low": 1096.1, "Close": 1102.6, "Volume": 1042793 }, + { "Date": "2018-00-11", "Open": 1106.3, "High": 1106.5, "Low": 1099.6, "Close": 1105.5, "Volume": 978292 }, + { "Date": "2018-00-12", "Open": 1102.4, "High": 1124.3, "Low": 1101.2, "Close": 1122.3, "Volume": 1720533 }, + { "Date": "2018-00-16", "Open": 1132.5, "High": 1139.9, "Low": 1117.8, "Close": 1121.8, "Volume": 1575261 }, + { "Date": "2018-00-17", "Open": 1126.2, "High": 1132.6, "Low": 1117.0, "Close": 1132.0, "Volume": 1202639 }, + { "Date": "2018-00-18", "Open": 1131.4, "High": 1132.5, "Low": 1117.5, "Close": 1129.8, "Volume": 1198234 }, + { "Date": "2018-00-19", "Open": 1131.8, "High": 1137.9, "Low": 1128.3, "Close": 1137.5, "Volume": 1778229 }, + { "Date": "2018-00-22", "Open": 1137.5, "High": 1159.9, "Low": 1135.1, "Close": 1155.8, "Volume": 1617975 }, + { "Date": "2018-00-23", "Open": 1159.8, "High": 1171.6, "Low": 1158.8, "Close": 1170.0, "Volume": 1333056 }, + { "Date": "2018-00-24", "Open": 1177.3, "High": 1179.9, "Low": 1161.0, "Close": 1164.2, "Volume": 1416625 }, + { "Date": "2018-00-25", "Open": 1172.5, "High": 1175.9, "Low": 1162.8, "Close": 1170.4, "Volume": 1480540 }, + { "Date": "2018-00-26", "Open": 1175.1, "High": 1175.8, "Low": 1158.1, "Close": 1175.8, "Volume": 2018755 }, + { "Date": "2018-00-29", "Open": 1176.5, "High": 1186.9, "Low": 1172.0, "Close": 1175.6, "Volume": 1378913 }, + { "Date": "2018-00-30", "Open": 1167.8, "High": 1176.5, "Low": 1163.5, "Close": 1163.7, "Volume": 1556346 }, + { "Date": "2018-00-31", "Open": 1170.6, "High": 1173.0, "Low": 1159.1, "Close": 1169.9, "Volume": 1538688 }]; + let stockItems: StockItem[] = []; + for (let json of jsonData) { + let parts = json.Date.split("-"); + let item = new StockItem(); + item.date = new Date(parseInt(parts[0]), parseInt(parts[1]) - 1, parseInt(parts[2]), 13, 0, 0); + item.open = json.Open; + item.high = json.High; + item.low = json.Low; + item.close = json.Close; + item.volume = json.Volume; + stockItems.push(item); + } + this.push(...stockItems); + } } -export class StockGoogle extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new StockGoogleItem( - { - date: `2014-03-01`, - open: 559.6, - high: 568.2, - low: 558.4, - close: 566.9, - volume: 2182626 - }), - new StockGoogleItem( - { - date: `2014-03-02`, - open: 562.4, - high: 571.8, - low: 561.4, - close: 567, - volume: 2088804 - }), - new StockGoogleItem( - { - date: `2014-03-03`, - open: 569.9, - high: 587.3, - low: 564.1, - close: 569.7, - volume: 5087530 - }), - new StockGoogleItem( - { - date: `2014-03-04`, - open: 574.6, - high: 577.8, - low: 543, - close: 543.1, - volume: 6377658 - }), - new StockGoogleItem( - { - date: `2014-03-07`, - open: 540.7, - high: 548.5, - low: 527.1, - close: 538.1, - volume: 4389569 - }), - new StockGoogleItem( - { - date: `2014-03-08`, - open: 542.6, - high: 555, - low: 541.6, - close: 554.9, - volume: 3152406 - }), - new StockGoogleItem( - { - date: `2014-03-09`, - open: 559.6, - high: 565.4, - low: 553, - close: 564.1, - volume: 3324742 - }), - new StockGoogleItem( - { - date: `2014-03-10`, - open: 565, - high: 565, - low: 539.9, - close: 541, - volume: 4027743 - }), - new StockGoogleItem( - { - date: `2014-03-11`, - open: 532.5, - high: 540, - low: 526.5, - close: 530.6, - volume: 3916171 - }), - new StockGoogleItem( - { - date: `2014-03-14`, - open: 538.3, - high: 544.1, - low: 529.6, - close: 532.5, - volume: 2568020 - }), - new StockGoogleItem( - { - date: `2014-03-15`, - open: 536.8, - high: 538.5, - low: 518.5, - close: 536.4, - volume: 3847453 - }), - new StockGoogleItem( - { - date: `2014-03-16`, - open: 543, - high: 557, - low: 540, - close: 556.5, - volume: 4879889 - }), - new StockGoogleItem( - { - date: `2014-03-17`, - open: 548.8, - high: 549.5, - low: 531.1, - close: 536.1, - volume: 6795393 - }), - new StockGoogleItem( - { - date: `2014-03-21`, - open: 536.1, - high: 536.7, - low: 525.6, - close: 528.6, - volume: 2561214 - }), - new StockGoogleItem( - { - date: `2014-03-22`, - open: 528.6, - high: 537.2, - low: 527.5, - close: 534.8, - volume: 2359421 - }), - new StockGoogleItem( - { - date: `2014-03-23`, - open: 533.8, - high: 533.9, - low: 526.3, - close: 526.9, - volume: 2051066 - }), - new StockGoogleItem( - { - date: `2014-03-24`, - open: 530.1, - high: 531.6, - low: 522.1, - close: 525.2, - volume: 1881965 - }), - new StockGoogleItem( - { - date: `2014-03-25`, - open: 522.5, - high: 524.7, - low: 515.4, - close: 516.2, - volume: 2097264 - }), - new StockGoogleItem( - { - date: `2014-03-28`, - open: 517.2, - high: 518.6, - low: 502.8, - close: 517.1, - volume: 3326429 - }), - new StockGoogleItem( - { - date: `2014-03-29`, - open: 516.9, - high: 529.5, - low: 516.3, - close: 527.7, - volume: 2692489 - }), - new StockGoogleItem( - { - date: `2014-03-30`, - open: 527.6, - high: 528, - low: 522.5, - close: 526.7, - volume: 1746904 - }), - new StockGoogleItem( - { - date: `2014-04-01`, - open: 527.1, - high: 532.9, - low: 523.9, - close: 531.4, - volume: 1900432 - }), - new StockGoogleItem( - { - date: `2014-04-02`, - open: 533.8, - high: 534, - low: 525.6, - close: 527.9, - volume: 1685042 - }), - new StockGoogleItem( - { - date: `2014-04-05`, - open: 524.8, - high: 528.9, - low: 521.3, - close: 527.8, - volume: 1021408 - }), - new StockGoogleItem( - { - date: `2014-04-06`, - open: 525.2, - high: 526.8, - low: 515.1, - close: 515.1, - volume: 1684381 - }), - new StockGoogleItem( - { - date: `2014-04-07`, - open: 515.8, - high: 516.7, - low: 503.3, - close: 510, - volume: 3216077 - }), - new StockGoogleItem( - { - date: `2014-04-08`, - open: 508.5, - high: 517.2, - low: 506.4, - close: 511, - volume: 2016131 - }), - new StockGoogleItem( - { - date: `2014-04-09`, - open: 510.8, - high: 519.9, - low: 504.2, - close: 518.7, - volume: 2432783 - }), - new StockGoogleItem( - { - date: `2014-04-12`, - open: 523.5, - high: 530.2, - low: 519, - close: 529.9, - volume: 1908392 - }), - new StockGoogleItem( - { - date: `2014-04-13`, - open: 530.9, - high: 536.1, - low: 529.5, - close: 533.1, - volume: 1648907 - }), - new StockGoogleItem( - { - date: `2014-04-14`, - open: 533, - high: 533, - low: 525.3, - close: 526.6, - volume: 1191863 - }), - new StockGoogleItem( - { - date: `2014-04-15`, - open: 525.7, - high: 525.9, - low: 517.4, - close: 520, - volume: 1703758 - }), - new StockGoogleItem( - { - date: `2014-04-16`, - open: 521.4, - high: 521.8, - low: 515.4, - close: 520.6, - volume: 1481688 - }), - new StockGoogleItem( - { - date: `2014-04-19`, - open: 519.7, - high: 529.8, - low: 517.6, - close: 528.9, - volume: 1276362 - }), - new StockGoogleItem( - { - date: `2014-04-20`, - open: 529.7, - high: 536.2, - low: 526.3, - close: 529.8, - volume: 1780113 - }), - new StockGoogleItem( - { - date: `2014-04-21`, - open: 532.9, - high: 539.2, - low: 531.9, - close: 538.9, - volume: 1193389 - }), - new StockGoogleItem( - { - date: `2014-04-22`, - open: 541.1, - high: 547.6, - low: 540.8, - close: 545.1, - volume: 1611837 - }), - new StockGoogleItem( - { - date: `2014-04-23`, - open: 547.3, - high: 553.6, - low: 543.7, - close: 552.7, - volume: 1929632 - }), - new StockGoogleItem( - { - date: `2014-04-27`, - open: 556, - high: 566, - low: 554.4, - close: 566, - volume: 2100298 - }), - new StockGoogleItem( - { - date: `2014-04-28`, - open: 564.6, - high: 567.8, - low: 561, - close: 561.7, - volume: 1647717 - }), - new StockGoogleItem( - { - date: `2014-04-29`, - open: 563.4, - high: 564, - low: 558.7, - close: 560.1, - volume: 1350657 - }), - new StockGoogleItem( - { - date: `2014-04-30`, - open: 560.8, - high: 561.4, - low: 555.9, - close: 559.9, - volume: 1766794 - }), - new StockGoogleItem( - { - date: `2014-05-02`, - open: 560.7, - high: 560.9, - low: 545.7, - close: 553.9, - volume: 1434989 - }), - new StockGoogleItem( - { - date: `2014-05-03`, - open: 551, - high: 552.3, - low: 542.5, - close: 544.9, - volume: 1861921 - }), - new StockGoogleItem( - { - date: `2014-05-04`, - open: 541.5, - high: 548.6, - low: 538.8, - close: 544.7, - volume: 1812084 - }), - new StockGoogleItem( - { - date: `2014-05-05`, - open: 546.4, - high: 555, - low: 544.5, - close: 553.9, - volume: 1684886 - }), - new StockGoogleItem( - { - date: `2014-05-06`, - open: 558.1, - high: 558.1, - low: 548.9, - close: 556.3, - volume: 1732592 - }), - new StockGoogleItem( - { - date: `2014-05-09`, - open: 557.1, - high: 562.9, - low: 556, - close: 562.1, - volume: 1463676 - }), - new StockGoogleItem( - { - date: `2014-05-10`, - open: 560.5, - high: 563.6, - low: 557.9, - close: 560.5, - volume: 1349444 - }), - new StockGoogleItem( - { - date: `2014-05-11`, - open: 558, - high: 559.9, - low: 555, - close: 558.8, - volume: 1097380 - }), - new StockGoogleItem( - { - date: `2014-05-12`, - open: 557.3, - high: 558, - low: 548.5, - close: 551.4, - volume: 1457104 - }), - new StockGoogleItem( - { - date: `2014-05-13`, - open: 552.3, - high: 552.3, - low: 545.6, - close: 551.8, - volume: 1217176 - }), - new StockGoogleItem( - { - date: `2014-05-16`, - open: 549.3, - high: 549.6, - low: 541.5, - close: 544.3, - volume: 1704027 - }), - new StockGoogleItem( - { - date: `2014-05-17`, - open: 544.2, - high: 545.3, - low: 539.3, - close: 543, - volume: 1445878 - }), - new StockGoogleItem( - { - date: `2014-05-18`, - open: 544.9, - high: 553.6, - low: 544, - close: 553.4, - volume: 1737343 - }), - new StockGoogleItem( - { - date: `2014-05-19`, - open: 554.2, - high: 555, - low: 548.5, - close: 554.9, - volume: 2451341 - }), - new StockGoogleItem( - { - date: `2014-05-20`, - open: 556.9, - high: 557.6, - low: 550.4, - close: 556.4, - volume: 4496962 - }), - new StockGoogleItem( - { - date: `2014-05-23`, - open: 555.1, - high: 565, - low: 554.3, - close: 565, - volume: 1534659 - }), - new StockGoogleItem( - { - date: `2014-05-24`, - open: 565.2, - high: 572.6, - low: 561, - close: 564.6, - volume: 2201789 - }), - new StockGoogleItem( - { - date: `2014-05-25`, - open: 565.3, - high: 580, - low: 565.2, - close: 578.6, - volume: 1964447 - }), - new StockGoogleItem( - { - date: `2014-05-26`, - open: 581, - high: 582.5, - low: 571.9, - close: 576, - volume: 1737210 - }), - new StockGoogleItem( - { - date: `2014-05-27`, - open: 577.2, - high: 579.9, - low: 573.8, - close: 577.2, - volume: 2231174 - }), - new StockGoogleItem( - { - date: `2014-05-30`, - open: 578.7, - high: 579.6, - low: 574.8, - close: 575.3, - volume: 1310909 - }), - new StockGoogleItem( - { - date: `2014-06-01`, - open: 578.3, - high: 584.4, - low: 576.6, - close: 582.7, - volume: 1446309 - }), - new StockGoogleItem( - { - date: `2014-06-02`, - open: 583.4, - high: 585.4, - low: 580.4, - close: 582.3, - volume: 1054936 - }), - new StockGoogleItem( - { - date: `2014-06-03`, - open: 583.4, - high: 585, - low: 580.9, - close: 584.7, - volume: 712210 - }), - new StockGoogleItem( - { - date: `2014-06-07`, - open: 583.8, - high: 586.4, - low: 579.6, - close: 582.3, - volume: 1061833 - }), - new StockGoogleItem( - { - date: `2014-06-08`, - open: 577.7, - high: 579.5, - low: 566.1, - close: 571.1, - volume: 1908647 - }), - new StockGoogleItem( - { - date: `2014-06-09`, - open: 571.6, - high: 576.7, - low: 569.4, - close: 576.1, - volume: 1113907 - }), - new StockGoogleItem( - { - date: `2014-06-10`, - open: 565.9, - high: 576.6, - low: 565, - close: 571.1, - volume: 1353317 - }), - new StockGoogleItem( - { - date: `2014-06-11`, - open: 571.9, - high: 580.9, - low: 571.4, - close: 579.2, - volume: 1617569 - }), - new StockGoogleItem( - { - date: `2014-06-14`, - open: 582.6, - high: 585.2, - low: 578, - close: 584.9, - volume: 1852290 - }), - new StockGoogleItem( - { - date: `2014-06-15`, - open: 585.7, - high: 585.8, - low: 576.6, - close: 584.8, - volume: 1618815 - }), - new StockGoogleItem( - { - date: `2014-06-16`, - open: 588, - high: 588.4, - low: 582.2, - close: 582.7, - volume: 1394560 - }), - new StockGoogleItem( - { - date: `2014-06-17`, - open: 579.5, - high: 581, - low: 568.6, - close: 573.7, - volume: 3015475 - }), - new StockGoogleItem( - { - date: `2014-06-18`, - open: 593, - high: 596.8, - low: 582, - close: 595.1, - volume: 4006389 - }), - new StockGoogleItem( - { - date: `2014-06-21`, - open: 591.8, - high: 594.4, - low: 585.2, - close: 589.5, - volume: 2060334 - }), - new StockGoogleItem( - { - date: `2014-06-22`, - open: 590.7, - high: 599.6, - low: 590.6, - close: 594.7, - volume: 1694787 - }), - new StockGoogleItem( - { - date: `2014-06-23`, - open: 593.2, - high: 597.9, - low: 592.5, - close: 596, - volume: 1229846 - }), - new StockGoogleItem( - { - date: `2014-06-24`, - open: 596.5, - high: 599.5, - low: 591.8, - close: 593.4, - volume: 1033341 - }), - new StockGoogleItem( - { - date: `2014-06-25`, - open: 590.4, - high: 591.9, - low: 587, - close: 589, - volume: 932724 - }), - new StockGoogleItem( - { - date: `2014-06-28`, - open: 588.1, - high: 592.5, - low: 584.8, - close: 590.6, - volume: 984161 - }), - new StockGoogleItem( - { - date: `2014-06-29`, - open: 588.8, - high: 589.7, - low: 583.5, - close: 585.6, - volume: 1346647 - }), - new StockGoogleItem( - { - date: `2014-06-30`, - open: 586.5, - high: 589.5, - low: 584, - close: 587.4, - volume: 1013932 - }), - new StockGoogleItem( - { - date: `2014-06-31`, - open: 580.6, - high: 583.6, - low: 570, - close: 571.6, - volume: 2099516 - }), - new StockGoogleItem( - { - date: `2014-07-01`, - open: 570.4, - high: 576, - low: 562.9, - close: 566.1, - volume: 1950171 - }), - new StockGoogleItem( - { - date: `2014-07-04`, - open: 569, - high: 575.4, - low: 564.1, - close: 573.1, - volume: 1427169 - }), - new StockGoogleItem( - { - date: `2014-07-05`, - open: 570, - high: 572, - low: 562.6, - close: 565.1, - volume: 1556685 - }), - new StockGoogleItem( - { - date: `2014-07-06`, - open: 561.8, - high: 570.7, - low: 560, - close: 566.4, - volume: 1330877 - }), - new StockGoogleItem( - { - date: `2014-07-07`, - open: 568, - high: 569.9, - low: 561.1, - close: 563.4, - volume: 1108900 - }), - new StockGoogleItem( - { - date: `2014-07-08`, - open: 563.6, - high: 570.3, - low: 560.4, - close: 568.8, - volume: 1492491 - }), - new StockGoogleItem( - { - date: `2014-07-11`, - open: 570, - high: 570.5, - low: 566, - close: 567.9, - volume: 1215968 - }), - new StockGoogleItem( - { - date: `2014-07-12`, - open: 564.5, - high: 565.9, - low: 560.9, - close: 562.7, - volume: 1537758 - }), - new StockGoogleItem( - { - date: `2014-07-13`, - open: 567.3, - high: 575, - low: 565.8, - close: 574.8, - volume: 1437922 - }), - new StockGoogleItem( - { - date: `2014-07-14`, - open: 576.2, - high: 577.9, - low: 570.9, - close: 574.6, - volume: 982926 - }), - new StockGoogleItem( - { - date: `2014-07-15`, - open: 577.9, - high: 579.4, - low: 570.5, - close: 573.5, - volume: 1517056 - }), - new StockGoogleItem( - { - date: `2014-07-18`, - open: 576.1, - high: 584.5, - low: 576, - close: 582.2, - volume: 1282531 - }), - new StockGoogleItem( - { - date: `2014-07-19`, - open: 585, - high: 587.3, - low: 584, - close: 586.9, - volume: 979298 - }), - new StockGoogleItem( - { - date: `2014-07-20`, - open: 585.9, - high: 586.7, - low: 582.6, - close: 584.5, - volume: 1034779 - }), - new StockGoogleItem( - { - date: `2014-07-21`, - open: 583.8, - high: 584.5, - low: 581.1, - close: 583.4, - volume: 912854 - }), - new StockGoogleItem( - { - date: `2014-07-22`, - open: 583.6, - high: 585.2, - low: 580.6, - close: 582.6, - volume: 789484 - }), - new StockGoogleItem( - { - date: `2014-07-25`, - open: 584.7, - high: 585, - low: 579, - close: 580.2, - volume: 1358810 - }), - new StockGoogleItem( - { - date: `2014-07-26`, - open: 581.3, - high: 581.8, - low: 576.6, - close: 577.9, - volume: 1635465 - }), - new StockGoogleItem( - { - date: `2014-07-27`, - open: 577.3, - high: 578.5, - low: 570.1, - close: 571, - volume: 1700161 - }), - new StockGoogleItem( - { - date: `2014-07-28`, - open: 569.6, - high: 573.3, - low: 567.1, - close: 569.2, - volume: 1295963 - }), - new StockGoogleItem( - { - date: `2014-07-29`, - open: 571.3, - high: 572, - low: 567.1, - close: 571.6, - volume: 1081231 - }), - new StockGoogleItem( - { - date: `2014-08-02`, - open: 571.9, - high: 577.8, - low: 571.2, - close: 577.3, - volume: 1576830 - }), - new StockGoogleItem( - { - date: `2014-08-03`, - open: 580, - high: 583, - low: 575, - close: 577.9, - volume: 1214586 - }), - new StockGoogleItem( - { - date: `2014-08-04`, - open: 580, - high: 586, - low: 579.2, - close: 582, - volume: 1459956 - }), - new StockGoogleItem( - { - date: `2014-08-05`, - open: 584, - high: 586.5, - low: 582, - close: 586.1, - volume: 1629477 - }), - new StockGoogleItem( - { - date: `2014-08-08`, - open: 586.6, - high: 591.8, - low: 586.3, - close: 589.7, - volume: 1429101 - }), - new StockGoogleItem( - { - date: `2014-08-09`, - open: 588.9, - high: 589, - low: 580, - close: 581, - volume: 1286722 - }), - new StockGoogleItem( - { - date: `2014-08-10`, - open: 581.5, - high: 583.5, - low: 576.9, - close: 583.1, - volume: 975145 - }), - new StockGoogleItem( - { - date: `2014-08-11`, - open: 580.4, - high: 581.8, - low: 576.3, - close: 581.4, - volume: 1217721 - }), - new StockGoogleItem( - { - date: `2014-08-12`, - open: 581, - high: 581.6, - low: 574.5, - close: 575.6, - volume: 1597677 - }), - new StockGoogleItem( - { - date: `2014-08-15`, - open: 572.9, - high: 575, - low: 568.2, - close: 573.1, - volume: 1596224 - }), - new StockGoogleItem( - { - date: `2014-08-16`, - open: 572.8, - high: 581.5, - low: 572.7, - close: 580, - volume: 1478306 - }), - new StockGoogleItem( - { - date: `2014-08-17`, - open: 580, - high: 587.5, - low: 578.8, - close: 584.8, - volume: 1690994 - }), - new StockGoogleItem( - { - date: `2014-08-18`, - open: 587, - high: 589.5, - low: 585, - close: 589.3, - volume: 1442012 - }), - new StockGoogleItem( - { - date: `2014-08-19`, - open: 591.5, - high: 596.5, - low: 589.5, - close: 596.1, - volume: 3727045 - }), - new StockGoogleItem( - { - date: `2014-08-22`, - open: 593.8, - high: 594, - low: 583.5, - close: 587.4, - volume: 1687710 - }), - new StockGoogleItem( - { - date: `2014-08-23`, - open: 586.9, - high: 586.9, - low: 581, - close: 581.1, - volume: 1467703 - }), - new StockGoogleItem( - { - date: `2014-08-24`, - open: 581.5, - high: 589.6, - low: 580.5, - close: 588, - volume: 1724537 - }), - new StockGoogleItem( - { - date: `2014-08-25`, - open: 587.5, - high: 588, - low: 574.2, - close: 575.1, - volume: 1925350 - }), - new StockGoogleItem( - { - date: `2014-08-26`, - open: 576.1, - high: 579.3, - low: 574.7, - close: 577.1, - volume: 1439807 - }), - new StockGoogleItem( - { - date: `2014-08-29`, - open: 571.8, - high: 578.2, - low: 571.2, - close: 576.4, - volume: 1281204 - }), - new StockGoogleItem( - { - date: `2014-08-30`, - open: 576.9, - high: 579.9, - low: 572.9, - close: 577.4, - volume: 1618437 - }), - new StockGoogleItem( - { - date: `2014-09-01`, - open: 576, - high: 577.6, - low: 567, - close: 568.3, - volume: 1445027 - }), - new StockGoogleItem( - { - date: `2014-09-02`, - open: 567.3, - high: 571.9, - low: 563.3, - close: 570.1, - volume: 1175307 - }), - new StockGoogleItem( - { - date: `2014-09-03`, - open: 573, - high: 577.2, - low: 572.5, - close: 575.3, - volume: 1138636 - }), - new StockGoogleItem( - { - date: `2014-09-06`, - open: 578.8, - high: 581, - low: 574.4, - close: 577.4, - volume: 1211320 - }), - new StockGoogleItem( - { - date: `2014-09-07`, - open: 574.4, - high: 575.3, - low: 563.7, - close: 563.7, - volume: 1906427 - }), - new StockGoogleItem( - { - date: `2014-09-08`, - open: 565.6, - high: 573.9, - low: 557.5, - close: 572.5, - volume: 1987888 - }), - new StockGoogleItem( - { - date: `2014-09-09`, - open: 571.2, - high: 571.5, - low: 559.1, - close: 560.9, - volume: 2519693 - }), - new StockGoogleItem( - { - date: `2014-09-10`, - open: 557.7, - high: 565.1, - low: 544, - close: 544.5, - volume: 3078634 - }), - new StockGoogleItem( - { - date: `2014-09-13`, - open: 545, - high: 549.5, - low: 533.1, - close: 533.2, - volume: 2578676 - }), - new StockGoogleItem( - { - date: `2014-09-14`, - open: 538.9, - high: 547.2, - low: 533.2, - close: 537.9, - volume: 2217230 - }), - new StockGoogleItem( - { - date: `2014-09-15`, - open: 531, - high: 532.8, - low: 518.3, - close: 530, - volume: 3712536 - }), - new StockGoogleItem( - { - date: `2014-09-16`, - open: 519, - high: 529.4, - low: 515, - close: 524.5, - volume: 3698423 - }), - new StockGoogleItem( - { - date: `2014-09-17`, - open: 527.3, - high: 531, - low: 508.5, - close: 511.2, - volume: 5530674 - }), - new StockGoogleItem( - { - date: `2014-09-20`, - open: 509.4, - high: 521.8, - low: 508.1, - close: 520.8, - volume: 2605505 - }), - new StockGoogleItem( - { - date: `2014-09-21`, - open: 525.2, - high: 526.8, - low: 519.1, - close: 526.5, - volume: 2332531 - }), - new StockGoogleItem( - { - date: `2014-09-22`, - open: 529.9, - high: 539.8, - low: 528.8, - close: 532.7, - volume: 2917183 - }), - new StockGoogleItem( - { - date: `2014-09-23`, - open: 539.3, - high: 547.2, - low: 535.9, - close: 544, - volume: 2345296 - }), - new StockGoogleItem( - { - date: `2014-09-24`, - open: 544.4, - high: 544.9, - low: 535.8, - close: 539.8, - volume: 1972047 - }), - new StockGoogleItem( - { - date: `2014-09-27`, - open: 537, - high: 544.4, - low: 537, - close: 540.8, - volume: 1184973 - }), - new StockGoogleItem( - { - date: `2014-09-28`, - open: 543, - high: 549, - low: 541.6, - close: 548.9, - volume: 1273372 - }), - new StockGoogleItem( - { - date: `2014-09-29`, - open: 550, - high: 554.2, - low: 547, - close: 549.3, - volume: 1767107 - }), - new StockGoogleItem( - { - date: `2014-09-30`, - open: 549, - high: 552.8, - low: 543.5, - close: 550.3, - volume: 1451667 - }), - new StockGoogleItem( - { - date: `2014-09-31`, - open: 559.4, - high: 559.6, - low: 554.8, - close: 559.1, - volume: 2032887 - }), - new StockGoogleItem( - { - date: `2014-10-03`, - open: 555.5, - high: 557.9, - low: 553.2, - close: 555.2, - volume: 1378511 - }), - new StockGoogleItem( - { - date: `2014-10-04`, - open: 553, - high: 555.5, - low: 549.3, - close: 554.1, - volume: 1240761 - }), - new StockGoogleItem( - { - date: `2014-10-05`, - open: 556.8, - high: 556.8, - low: 544, - close: 545.9, - volume: 2026740 - }), - new StockGoogleItem( - { - date: `2014-10-06`, - open: 545.5, - high: 546.9, - low: 541, - close: 542, - volume: 1329604 - }), - new StockGoogleItem( - { - date: `2014-10-07`, - open: 546.2, - high: 546.2, - low: 538.7, - close: 541, - volume: 1629259 - }), - new StockGoogleItem( - { - date: `2014-10-10`, - open: 541.5, - high: 549.6, - low: 541, - close: 547.5, - volume: 1131546 - }), - new StockGoogleItem( - { - date: `2014-10-11`, - open: 548.5, - high: 551.9, - low: 546.3, - close: 550.3, - volume: 964866 - }), - new StockGoogleItem( - { - date: `2014-10-12`, - open: 550.4, - high: 550.5, - low: 545.2, - close: 547.3, - volume: 1126594 - }), - new StockGoogleItem( - { - date: `2014-10-13`, - open: 549.8, - high: 549.8, - low: 543.5, - close: 545.4, - volume: 1335719 - }), - new StockGoogleItem( - { - date: `2014-10-14`, - open: 546.7, - high: 546.7, - low: 542.1, - close: 544.4, - volume: 1285991 - }), - new StockGoogleItem( - { - date: `2014-10-17`, - open: 543.6, - high: 543.8, - low: 534.1, - close: 536.5, - volume: 1721282 - }), - new StockGoogleItem( - { - date: `2014-10-18`, - open: 537.5, - high: 541.9, - low: 534.2, - close: 535, - volume: 1957664 - }), - new StockGoogleItem( - { - date: `2014-10-19`, - open: 535, - high: 538.2, - low: 530.1, - close: 537, - volume: 1388440 - }), - new StockGoogleItem( - { - date: `2014-10-20`, - open: 531.3, - high: 535.1, - low: 531.1, - close: 534.8, - volume: 1559131 - }), - new StockGoogleItem( - { - date: `2014-10-21`, - open: 541.6, - high: 542.1, - low: 536.6, - close: 537.5, - volume: 2218249 - }), - new StockGoogleItem( - { - date: `2014-10-24`, - open: 537.6, - high: 542.7, - low: 535.6, - close: 539.3, - volume: 1701682 - }), - new StockGoogleItem( - { - date: `2014-10-25`, - open: 539, - high: 544, - low: 538.6, - close: 541.1, - volume: 1784967 - }), - new StockGoogleItem( - { - date: `2014-10-26`, - open: 540.9, - high: 541.5, - low: 537, - close: 540.4, - volume: 1519503 - }), - new StockGoogleItem( - { - date: `2014-10-28`, - open: 540.6, - high: 542, - low: 536.6, - close: 541.8, - volume: 1145231 - }), - new StockGoogleItem( - { - date: `2014-11-01`, - open: 538.9, - high: 541.4, - low: 531.9, - close: 533.8, - volume: 2109599 - }), - new StockGoogleItem( - { - date: `2014-11-02`, - open: 533.5, - high: 535.5, - low: 529.8, - close: 533.8, - volume: 1522481 - }), - new StockGoogleItem( - { - date: `2014-11-03`, - open: 531.4, - high: 536, - low: 529.3, - close: 531.3, - volume: 1279288 - }), - new StockGoogleItem( - { - date: `2014-11-04`, - open: 531.2, - high: 537.3, - low: 528.6, - close: 537.3, - volume: 1392208 - }), - new StockGoogleItem( - { - date: `2014-11-05`, - open: 531, - high: 532.9, - low: 524.3, - close: 525.3, - volume: 2558649 - }), - new StockGoogleItem( - { - date: `2014-11-08`, - open: 527.1, - high: 531, - low: 523.8, - close: 527, - volume: 2327127 - }), - new StockGoogleItem( - { - date: `2014-11-09`, - open: 522.1, - high: 534.2, - low: 520.5, - close: 533.4, - volume: 1871268 - }), - new StockGoogleItem( - { - date: `2014-11-10`, - open: 533.1, - high: 536.3, - low: 525.6, - close: 526.1, - volume: 1716835 - }), - new StockGoogleItem( - { - date: `2014-11-11`, - open: 527.8, - high: 533.9, - low: 527.1, - close: 528.3, - volume: 1610964 - }), - new StockGoogleItem( - { - date: `2014-11-12`, - open: 523.5, - high: 528.5, - low: 518.7, - close: 518.7, - volume: 1989117 - }), - new StockGoogleItem( - { - date: `2014-11-15`, - open: 522.7, - high: 523.1, - low: 513.3, - close: 513.8, - volume: 2812786 - }), - new StockGoogleItem( - { - date: `2014-11-16`, - open: 511.6, - high: 513, - low: 489, - close: 495.4, - volume: 3953371 - }), - new StockGoogleItem( - { - date: `2014-11-17`, - open: 497, - high: 507, - low: 496.8, - close: 504.9, - volume: 2875281 - }), - new StockGoogleItem( - { - date: `2014-11-18`, - open: 513, - high: 513.9, - low: 504.7, - close: 511.1, - volume: 2918730 - }), - new StockGoogleItem( - { - date: `2014-11-19`, - open: 511.5, - high: 517.7, - low: 506.9, - close: 516.4, - volume: 3680148 - }), - new StockGoogleItem( - { - date: `2014-11-22`, - open: 516.1, - high: 526.5, - low: 516.1, - close: 524.9, - volume: 2723599 - }), - new StockGoogleItem( - { - date: `2014-11-23`, - open: 527, - high: 534.6, - low: 526.3, - close: 530.6, - volume: 2191567 - }), - new StockGoogleItem( - { - date: `2014-11-24`, - open: 530.5, - high: 531.8, - low: 527, - close: 528.8, - volume: 704035 - }), - new StockGoogleItem( - { - date: `2014-11-26`, - open: 528.8, - high: 534.3, - low: 527.3, - close: 534, - volume: 1037727 - }), - new StockGoogleItem( - { - date: `2014-11-29`, - open: 532.2, - high: 535.5, - low: 530, - close: 530.3, - volume: 2276104 - }), - new StockGoogleItem( - { - date: `2014-11-30`, - open: 528.1, - high: 531.1, - low: 527.1, - close: 530.4, - volume: 873923 - }), - new StockGoogleItem( - { - date: `2014-11-31`, - open: 531.3, - high: 532.6, - low: 525.8, - close: 526.4, - volume: 1371819 - }), - new StockGoogleItem( - { - date: `2015-00-02`, - open: 529, - high: 531.3, - low: 524.1, - close: 524.8, - volume: 1446662 - }), - new StockGoogleItem( - { - date: `2015-00-05`, - open: 523.3, - high: 524.3, - low: 513.1, - close: 513.9, - volume: 2054238 - }), - new StockGoogleItem( - { - date: `2015-00-06`, - open: 515, - high: 516.2, - low: 501.1, - close: 502, - volume: 2891950 - }), - new StockGoogleItem( - { - date: `2015-00-07`, - open: 507, - high: 507.2, - low: 499.6, - close: 501.1, - volume: 2059366 - }), - new StockGoogleItem( - { - date: `2015-00-08`, - open: 498, - high: 503.5, - low: 491, - close: 502.7, - volume: 3344395 - }), - new StockGoogleItem( - { - date: `2015-00-09`, - open: 504.8, - high: 504.9, - low: 494.8, - close: 496.2, - volume: 2065715 - }), - new StockGoogleItem( - { - date: `2015-00-12`, - open: 494.9, - high: 496, - low: 487.6, - close: 492.6, - volume: 2320446 - }), - new StockGoogleItem( - { - date: `2015-00-13`, - open: 498.8, - high: 503, - low: 492.4, - close: 496.2, - volume: 2365687 - }), - new StockGoogleItem( - { - date: `2015-00-14`, - open: 494.6, - high: 503.2, - low: 493, - close: 500.9, - volume: 2229638 - }), - new StockGoogleItem( - { - date: `2015-00-15`, - open: 505.6, - high: 505.7, - low: 497.8, - close: 501.8, - volume: 2711355 - }), - new StockGoogleItem( - { - date: `2015-00-16`, - open: 500, - high: 508.2, - low: 500, - close: 508.1, - volume: 2292043 - }), - new StockGoogleItem( - { - date: `2015-00-20`, - open: 511, - high: 512.5, - low: 506, - close: 506.9, - volume: 2225922 - }), - new StockGoogleItem( - { - date: `2015-00-21`, - open: 507.3, - high: 519.3, - low: 506.2, - close: 518, - volume: 2262455 - }), - new StockGoogleItem( - { - date: `2015-00-22`, - open: 521.5, - high: 536.3, - low: 519.7, - close: 534.4, - volume: 2669558 - }), - new StockGoogleItem( - { - date: `2015-00-23`, - open: 535.6, - high: 542.2, - low: 533, - close: 540, - volume: 2275485 - }), - new StockGoogleItem( - { - date: `2015-00-26`, - open: 538.5, - high: 539, - low: 529.7, - close: 535.2, - volume: 1539524 - }), - new StockGoogleItem( - { - date: `2015-00-27`, - open: 530, - high: 530.7, - low: 518.2, - close: 518.6, - volume: 1898844 - }), - new StockGoogleItem( - { - date: `2015-00-28`, - open: 522.8, - high: 523, - low: 510, - close: 510, - volume: 1679230 - }), - new StockGoogleItem( - { - date: `2015-00-29`, - open: 511, - high: 511.1, - low: 501.2, - close: 510.7, - volume: 4174924 - }), - new StockGoogleItem( - { - date: `2015-00-30`, - open: 515.9, - high: 539.9, - low: 515.5, - close: 534.5, - volume: 5590977 - }), - new StockGoogleItem( - { - date: `2015-01-02`, - open: 531.7, - high: 533, - low: 518.5, - close: 528.5, - volume: 2841976 - }), - new StockGoogleItem( - { - date: `2015-01-03`, - open: 528, - high: 533.4, - low: 523.3, - close: 529.2, - volume: 2033085 - }), - new StockGoogleItem( - { - date: `2015-01-04`, - open: 529.2, - high: 532.7, - low: 521.3, - close: 522.8, - volume: 1659125 - }), - new StockGoogleItem( - { - date: `2015-01-05`, - open: 523.8, - high: 528.5, - low: 522.1, - close: 527.6, - volume: 1844687 - }), - new StockGoogleItem( - { - date: `2015-01-06`, - open: 527.6, - high: 537.2, - low: 526.4, - close: 531, - volume: 1758650 - }), - new StockGoogleItem( - { - date: `2015-01-09`, - open: 528, - high: 532, - low: 526, - close: 527.8, - volume: 1264276 - }), - new StockGoogleItem( - { - date: `2015-01-10`, - open: 529.3, - high: 537.7, - low: 526.9, - close: 536.9, - volume: 1745076 - }), - new StockGoogleItem( - { - date: `2015-01-11`, - open: 535.3, - high: 538.5, - low: 533.4, - close: 536, - volume: 1373970 - }), - new StockGoogleItem( - { - date: `2015-01-12`, - open: 537.3, - high: 544.8, - low: 534.7, - close: 542.9, - volume: 1615824 - }), - new StockGoogleItem( - { - date: `2015-01-13`, - open: 543.4, - high: 549.9, - low: 543.1, - close: 549, - volume: 1895126 - }), - new StockGoogleItem( - { - date: `2015-01-17`, - open: 546.8, - high: 550, - low: 541.1, - close: 542.8, - volume: 1612439 - }), - new StockGoogleItem( - { - date: `2015-01-18`, - open: 541.4, - high: 545.5, - low: 537.5, - close: 539.7, - volume: 1449089 - }), - new StockGoogleItem( - { - date: `2015-01-19`, - open: 538, - high: 543.1, - low: 538, - close: 542.9, - volume: 987478 - }), - new StockGoogleItem( - { - date: `2015-01-20`, - open: 543.1, - high: 543.8, - low: 535.8, - close: 539, - volume: 1441212 - }), - new StockGoogleItem( - { - date: `2015-01-23`, - open: 536, - high: 536.4, - low: 529.4, - close: 531.9, - volume: 1453907 - }), - new StockGoogleItem( - { - date: `2015-01-24`, - open: 530, - high: 536.8, - low: 528.3, - close: 536.1, - volume: 1002393 - }), - new StockGoogleItem( - { - date: `2015-01-25`, - open: 535.9, - high: 546.2, - low: 535.4, - close: 543.9, - volume: 1821041 - }), - new StockGoogleItem( - { - date: `2015-01-26`, - open: 543.2, - high: 556.1, - low: 541.5, - close: 555.5, - volume: 2305219 - }), - new StockGoogleItem( - { - date: `2015-01-27`, - open: 554.2, - high: 564.7, - low: 552.9, - close: 558.4, - volume: 2403553 - }), - new StockGoogleItem( - { - date: `2015-02-02`, - open: 560.5, - high: 572.1, - low: 558.8, - close: 571.3, - volume: 2123796 - }), - new StockGoogleItem( - { - date: `2015-02-03`, - open: 570.5, - high: 575.4, - low: 566.5, - close: 573.6, - volume: 1700084 - }), - new StockGoogleItem( - { - date: `2015-02-04`, - open: 571.9, - high: 577.1, - low: 568, - close: 573.4, - volume: 1871694 - }), - new StockGoogleItem( - { - date: `2015-02-05`, - open: 575, - high: 577.9, - low: 573.4, - close: 575.3, - volume: 1385818 - }), - new StockGoogleItem( - { - date: `2015-02-06`, - open: 574.9, - high: 576.7, - low: 566.8, - close: 567.7, - volume: 1654561 - }), - new StockGoogleItem( - { - date: `2015-02-09`, - open: 566.9, - high: 570.3, - low: 563.5, - close: 568.9, - volume: 1059336 - }), - new StockGoogleItem( - { - date: `2015-02-10`, - open: 564.3, - high: 564.9, - low: 554.7, - close: 555, - volume: 1787357 - }), - new StockGoogleItem( - { - date: `2015-02-11`, - open: 555.1, - high: 558.1, - low: 550.7, - close: 551.2, - volume: 1815763 - }), - new StockGoogleItem( - { - date: `2015-02-12`, - open: 553.5, - high: 556.4, - low: 550.5, - close: 555.5, - volume: 1385772 - }), - new StockGoogleItem( - { - date: `2015-02-13`, - open: 553.5, - high: 558.4, - low: 544.2, - close: 547.3, - volume: 1698872 - }), - new StockGoogleItem( - { - date: `2015-02-16`, - open: 551, - high: 556.9, - low: 546, - close: 554.5, - volume: 1636493 - }), - new StockGoogleItem( - { - date: `2015-02-17`, - open: 551.7, - high: 553.8, - low: 548, - close: 550.8, - volume: 1800570 - }), - new StockGoogleItem( - { - date: `2015-02-18`, - open: 552.5, - high: 559.8, - low: 547, - close: 559.5, - volume: 2128714 - }), - new StockGoogleItem( - { - date: `2015-02-19`, - open: 559.4, - high: 560.8, - low: 556.1, - close: 558, - volume: 1194049 - }), - new StockGoogleItem( - { - date: `2015-02-20`, - open: 561.6, - high: 561.7, - low: 559, - close: 560.4, - volume: 2609690 - }), - new StockGoogleItem( - { - date: `2015-02-23`, - open: 560.4, - high: 562.4, - low: 555.8, - close: 558.8, - volume: 1639306 - }), - new StockGoogleItem( - { - date: `2015-02-24`, - open: 562.6, - high: 574.6, - low: 561.2, - close: 570.2, - volume: 2576234 - }), - new StockGoogleItem( - { - date: `2015-02-25`, - open: 570.5, - high: 572.3, - low: 558.7, - close: 558.8, - volume: 2146384 - }), - new StockGoogleItem( - { - date: `2015-02-26`, - open: 557.6, - high: 558.9, - low: 550.6, - close: 555.2, - volume: 1568331 - }), - new StockGoogleItem( - { - date: `2015-02-27`, - open: 553, - high: 555.3, - low: 548.1, - close: 548.3, - volume: 1892323 - }), - new StockGoogleItem( - { - date: `2015-02-30`, - open: 551.6, - high: 553.5, - low: 548.2, - close: 552, - volume: 1283958 - }), - new StockGoogleItem( - { - date: `2015-02-31`, - open: 550, - high: 554.7, - low: 546.7, - close: 548, - volume: 1583677 - }), - new StockGoogleItem( - { - date: `2015-03-01`, - open: 548.6, - high: 551.1, - low: 539.5, - close: 542.6, - volume: 1957718 - }), - new StockGoogleItem( - { - date: `2015-03-02`, - open: 540.9, - high: 540.9, - low: 533.9, - close: 535.5, - volume: 1711737 - }), - new StockGoogleItem( - { - date: `2015-03-06`, - open: 532.2, - high: 538.4, - low: 529.6, - close: 536.8, - volume: 1320767 - }), - new StockGoogleItem( - { - date: `2015-03-07`, - open: 538.1, - high: 542.7, - low: 536, - close: 537, - volume: 1299298 - }), - new StockGoogleItem( - { - date: `2015-03-08`, - open: 538.4, - high: 543.9, - low: 538.4, - close: 541.6, - volume: 1175332 - }), - new StockGoogleItem( - { - date: `2015-03-09`, - open: 541, - high: 542, - low: 535.5, - close: 540.8, - volume: 1553586 - }), - new StockGoogleItem( - { - date: `2015-03-10`, - open: 542.3, - high: 542.3, - low: 537.3, - close: 540, - volume: 1405574 - }), - new StockGoogleItem( - { - date: `2015-03-13`, - open: 538.4, - high: 544.1, - low: 537.3, - close: 539.2, - volume: 1640809 - }), - new StockGoogleItem( - { - date: `2015-03-14`, - open: 536.3, - high: 537.6, - low: 528.1, - close: 530.4, - volume: 2597043 - }), - new StockGoogleItem( - { - date: `2015-03-15`, - open: 528.7, - high: 534.7, - low: 523.2, - close: 532.5, - volume: 2312512 - }), - new StockGoogleItem( - { - date: `2015-03-16`, - open: 529.9, - high: 535.6, - low: 529.6, - close: 533.8, - volume: 1296304 - }), - new StockGoogleItem( - { - date: `2015-03-17`, - open: 528.7, - high: 529.8, - low: 521, - close: 524, - volume: 2145955 - }), - new StockGoogleItem( - { - date: `2015-03-20`, - open: 525.6, - high: 536.1, - low: 524.5, - close: 535.4, - volume: 1675487 - }), - new StockGoogleItem( - { - date: `2015-03-21`, - open: 537.5, - high: 539.4, - low: 533.7, - close: 534, - volume: 1839668 - }), - new StockGoogleItem( - { - date: `2015-03-22`, - open: 534.4, - high: 541.1, - low: 531.8, - close: 539.4, - volume: 1589248 - }), - new StockGoogleItem( - { - date: `2015-03-23`, - open: 541, - high: 551, - low: 540.2, - close: 547, - volume: 4173376 - }), - new StockGoogleItem( - { - date: `2015-03-24`, - open: 566.1, - high: 571.1, - low: 557.3, - close: 565.1, - volume: 4919031 - }), - new StockGoogleItem( - { - date: `2015-03-27`, - open: 563.4, - high: 566, - low: 553.2, - close: 555.4, - volume: 2398039 - }), - new StockGoogleItem( - { - date: `2015-03-28`, - open: 554.6, - high: 556, - low: 550.4, - close: 553.7, - volume: 1490983 - }), - new StockGoogleItem( - { - date: `2015-03-29`, - open: 550.5, - high: 553.7, - low: 546.9, - close: 549.1, - volume: 1698761 - }), - new StockGoogleItem( - { - date: `2015-03-30`, - open: 547.9, - high: 548.6, - low: 535, - close: 537.3, - volume: 2082214 - }), - new StockGoogleItem( - { - date: `2015-04-01`, - open: 538.4, - high: 539.5, - low: 532.1, - close: 537.9, - volume: 1768181 - }), - new StockGoogleItem( - { - date: `2015-04-04`, - open: 538.5, - high: 544.1, - low: 535.1, - close: 540.8, - volume: 1307960 - }), - new StockGoogleItem( - { - date: `2015-04-05`, - open: 538.2, - high: 539.7, - low: 530.4, - close: 530.8, - volume: 1383068 - }), - new StockGoogleItem( - { - date: `2015-04-06`, - open: 531.2, - high: 532.4, - low: 521.1, - close: 524.2, - volume: 1566987 - }), - new StockGoogleItem( - { - date: `2015-04-07`, - open: 524, - high: 533.5, - low: 521.8, - close: 530.7, - volume: 1546278 - }), - new StockGoogleItem( - { - date: `2015-04-08`, - open: 536.6, - high: 541.1, - low: 536, - close: 538.2, - volume: 1527615 - }), - new StockGoogleItem( - { - date: `2015-04-11`, - open: 538.4, - high: 542, - low: 535.4, - close: 535.7, - volume: 905285 - }), - new StockGoogleItem( - { - date: `2015-04-12`, - open: 531.6, - high: 533.2, - low: 525.3, - close: 529, - volume: 1634174 - }), - new StockGoogleItem( - { - date: `2015-04-13`, - open: 530.6, - high: 534.3, - low: 528.7, - close: 529.6, - volume: 1253063 - }), - new StockGoogleItem( - { - date: `2015-04-14`, - open: 533.8, - high: 539, - low: 532.4, - close: 538.4, - volume: 1403935 - }), - new StockGoogleItem( - { - date: `2015-04-15`, - open: 539.2, - high: 539.3, - low: 530.4, - close: 533.9, - volume: 1971343 - }), - new StockGoogleItem( - { - date: `2015-04-18`, - open: 532, - high: 534.8, - low: 528.9, - close: 532.3, - volume: 2003421 - }), - new StockGoogleItem( - { - date: `2015-04-19`, - open: 534, - high: 540.7, - low: 533, - close: 537.4, - volume: 1966947 - }), - new StockGoogleItem( - { - date: `2015-04-20`, - open: 538.5, - high: 542.9, - low: 533, - close: 539.3, - volume: 1430826 - }), - new StockGoogleItem( - { - date: `2015-04-21`, - open: 538, - high: 543.8, - low: 536, - close: 542.5, - volume: 1462695 - }), - new StockGoogleItem( - { - date: `2015-04-22`, - open: 540.1, - high: 544.2, - low: 539.5, - close: 540.1, - volume: 1176214 - }), - new StockGoogleItem( - { - date: `2015-04-26`, - open: 538.1, - high: 539, - low: 529.9, - close: 532.3, - volume: 2406512 - }), - new StockGoogleItem( - { - date: `2015-04-27`, - open: 532.8, - high: 540.5, - low: 531.7, - close: 539.8, - volume: 1525019 - }), - new StockGoogleItem( - { - date: `2015-04-28`, - open: 538, - high: 540.6, - low: 536.3, - close: 539.8, - volume: 1029849 - }), - new StockGoogleItem( - { - date: `2015-04-29`, - open: 537.4, - high: 538.6, - low: 531.5, - close: 532.1, - volume: 2597407 - }), - new StockGoogleItem( - { - date: `2015-05-01`, - open: 536.8, - high: 536.8, - low: 529.8, - close: 534, - volume: 1904332 - }), - new StockGoogleItem( - { - date: `2015-05-02`, - open: 532.9, - high: 543, - low: 531.3, - close: 539.2, - volume: 1938989 - }), - new StockGoogleItem( - { - date: `2015-05-03`, - open: 539.9, - high: 543.5, - low: 537.1, - close: 540.3, - volume: 1717036 - }), - new StockGoogleItem( - { - date: `2015-05-04`, - open: 537.8, - high: 540.6, - low: 534.3, - close: 536.7, - volume: 1348337 - }), - new StockGoogleItem( - { - date: `2015-05-05`, - open: 536.4, - high: 537.2, - low: 532.5, - close: 533.3, - volume: 1388220 - }), - new StockGoogleItem( - { - date: `2015-05-08`, - open: 533.3, - high: 534.1, - low: 526.2, - close: 526.8, - volume: 1524139 - }), - new StockGoogleItem( - { - date: `2015-05-09`, - open: 527.6, - high: 529.2, - low: 523, - close: 526.7, - volume: 1455266 - }), - new StockGoogleItem( - { - date: `2015-05-10`, - open: 529.4, - high: 538.4, - low: 529.4, - close: 536.7, - volume: 1814958 - }), - new StockGoogleItem( - { - date: `2015-05-11`, - open: 538.4, - high: 539, - low: 533, - close: 534.6, - volume: 1217536 - }), - new StockGoogleItem( - { - date: `2015-05-12`, - open: 531.6, - high: 533.1, - low: 530.2, - close: 532.3, - volume: 955789 - }), - new StockGoogleItem( - { - date: `2015-05-15`, - open: 528, - high: 528.3, - low: 524, - close: 527.2, - volume: 1632702 - }), - new StockGoogleItem( - { - date: `2015-05-16`, - open: 528.4, - high: 529.6, - low: 525.6, - close: 528.1, - volume: 1071814 - }), - new StockGoogleItem( - { - date: `2015-05-17`, - open: 529.4, - high: 531, - low: 525.1, - close: 529.3, - volume: 1294216 - }), - new StockGoogleItem( - { - date: `2015-05-18`, - open: 531, - high: 538.1, - low: 530.8, - close: 536.7, - volume: 1833109 - }), - new StockGoogleItem( - { - date: `2015-05-19`, - open: 537.2, - high: 538.3, - low: 533, - close: 536.7, - volume: 1893497 - }), - new StockGoogleItem( - { - date: `2015-05-22`, - open: 539.6, - high: 543.7, - low: 537.5, - close: 538.2, - volume: 1250282 - }), - new StockGoogleItem( - { - date: `2015-05-23`, - open: 539.6, - high: 541.5, - low: 535.3, - close: 540.5, - volume: 1197450 - }), - new StockGoogleItem( - { - date: `2015-05-24`, - open: 540, - high: 540, - low: 535.7, - close: 537.8, - volume: 1286608 - }), - new StockGoogleItem( - { - date: `2015-05-25`, - open: 538.9, - high: 540.9, - low: 535.2, - close: 535.2, - volume: 1335697 - }), - new StockGoogleItem( - { - date: `2015-05-26`, - open: 537.3, - high: 537.8, - low: 531.4, - close: 531.7, - volume: 2109130 - }), - new StockGoogleItem( - { - date: `2015-05-29`, - open: 525, - high: 528.6, - low: 520.5, - close: 521.5, - volume: 1937821 - }), - new StockGoogleItem( - { - date: `2015-05-30`, - open: 526, - high: 526.3, - low: 520.5, - close: 520.5, - volume: 2235595 - }), - new StockGoogleItem( - { - date: `2015-06-01`, - open: 524.7, - high: 525.7, - low: 518.2, - close: 521.8, - volume: 1961354 - }), - new StockGoogleItem( - { - date: `2015-06-02`, - open: 521.1, - high: 524.6, - low: 521.1, - close: 523.4, - volume: 1235903 - }), - new StockGoogleItem( - { - date: `2015-06-06`, - open: 519.5, - high: 525.3, - low: 519, - close: 522.9, - volume: 1280525 - }), - new StockGoogleItem( - { - date: `2015-06-07`, - open: 523.1, - high: 526.2, - low: 515.2, - close: 525, - volume: 1597229 - }), - new StockGoogleItem( - { - date: `2015-06-08`, - open: 521, - high: 522.7, - low: 516.1, - close: 516.8, - volume: 1296699 - }), - new StockGoogleItem( - { - date: `2015-06-09`, - open: 523.1, - high: 523.8, - low: 520.4, - close: 520.7, - volume: 1842347 - }), - new StockGoogleItem( - { - date: `2015-06-10`, - open: 526.3, - high: 532.6, - low: 525.5, - close: 530.1, - volume: 1956682 - }), - new StockGoogleItem( - { - date: `2015-06-13`, - open: 532.9, - high: 547.1, - low: 532.4, - close: 546.5, - volume: 2206475 - }), - new StockGoogleItem( - { - date: `2015-06-14`, - open: 546.8, - high: 565.9, - low: 546.7, - close: 561.1, - volume: 3244066 - }), - new StockGoogleItem( - { - date: `2015-06-15`, - open: 560.1, - high: 566.5, - low: 556.8, - close: 560.2, - volume: 1784554 - }), - new StockGoogleItem( - { - date: `2015-06-16`, - open: 565.1, - high: 580.7, - low: 565, - close: 579.9, - volume: 4768318 - }), - new StockGoogleItem( - { - date: `2015-06-17`, - open: 649, - high: 674.5, - low: 645, - close: 672.9, - volume: 11164943 - }), - new StockGoogleItem( - { - date: `2015-06-20`, - open: 659.2, - high: 668.9, - low: 653, - close: 663, - volume: 5860872 - }), - new StockGoogleItem( - { - date: `2015-06-21`, - open: 655.2, - high: 673, - low: 654.3, - close: 662.3, - volume: 3377196 - }), - new StockGoogleItem( - { - date: `2015-06-22`, - open: 660.9, - high: 678.6, - low: 659, - close: 662.1, - volume: 3929309 - }), - new StockGoogleItem( - { - date: `2015-06-23`, - open: 661.3, - high: 663.6, - low: 641, - close: 644.3, - volume: 3029109 - }), - new StockGoogleItem( - { - date: `2015-06-24`, - open: 647, - high: 648.2, - low: 622.5, - close: 623.6, - volume: 3625747 - }), - new StockGoogleItem( - { - date: `2015-06-27`, - open: 621, - high: 634.3, - low: 620.5, - close: 627.3, - volume: 2675381 - }), - new StockGoogleItem( - { - date: `2015-06-28`, - open: 632.8, - high: 632.8, - low: 623.3, - close: 628, - volume: 1727327 - }), - new StockGoogleItem( - { - date: `2015-06-29`, - open: 628.8, - high: 633.4, - low: 622.6, - close: 631.9, - volume: 1575069 - }), - new StockGoogleItem( - { - date: `2015-06-30`, - open: 630, - high: 635.2, - low: 622, - close: 632.6, - volume: 1474203 - }), - new StockGoogleItem( - { - date: `2015-06-31`, - open: 631.4, - high: 632.9, - low: 625.5, - close: 625.6, - volume: 1706149 - }), - new StockGoogleItem( - { - date: `2015-07-03`, - open: 625.3, - high: 633.1, - low: 625.3, - close: 631.2, - volume: 1304511 - }), - new StockGoogleItem( - { - date: `2015-07-04`, - open: 628.4, - high: 634.8, - low: 627.2, - close: 629.3, - volume: 1490881 - }), - new StockGoogleItem( - { - date: `2015-07-05`, - open: 634.3, - high: 647.9, - low: 633.2, - close: 643.8, - volume: 2334266 - }), - new StockGoogleItem( - { - date: `2015-07-06`, - open: 645, - high: 645.4, - low: 632.3, - close: 642.7, - volume: 1572600 - }), - new StockGoogleItem( - { - date: `2015-07-07`, - open: 640.2, - high: 642.7, - low: 629.7, - close: 635.3, - volume: 1403865 - }), - new StockGoogleItem( - { - date: `2015-07-10`, - open: 639.5, - high: 643.4, - low: 631.3, - close: 633.7, - volume: 1809205 - }), - new StockGoogleItem( - { - date: `2015-07-11`, - open: 669.2, - high: 674.9, - low: 654.3, - close: 660.8, - volume: 5029203 - }), - new StockGoogleItem( - { - date: `2015-07-12`, - open: 663.1, - high: 665, - low: 652.3, - close: 659.6, - volume: 2940803 - }), - new StockGoogleItem( - { - date: `2015-07-13`, - open: 659.3, - high: 664.5, - low: 651.7, - close: 656.5, - volume: 1810749 - }), - new StockGoogleItem( - { - date: `2015-07-14`, - open: 655, - high: 659.9, - low: 652.7, - close: 657.1, - volume: 1072061 - }), - new StockGoogleItem( - { - date: `2015-07-17`, - open: 656.8, - high: 661.4, - low: 651.2, - close: 660.9, - volume: 1051699 - }), - new StockGoogleItem( - { - date: `2015-07-18`, - open: 661.9, - high: 664, - low: 653.5, - close: 656.1, - volume: 1456059 - }), - new StockGoogleItem( - { - date: `2015-07-19`, - open: 656.6, - high: 667, - low: 654.2, - close: 660.9, - volume: 2134098 - }), - new StockGoogleItem( - { - date: `2015-07-20`, - open: 655.5, - high: 663, - low: 642.9, - close: 646.8, - volume: 2855299 - }), - new StockGoogleItem( - { - date: `2015-07-21`, - open: 639.8, - high: 640, - low: 612.3, - close: 612.5, - volume: 4265183 - }), - new StockGoogleItem( - { - date: `2015-07-24`, - open: 573, - high: 614, - low: 565, - close: 589.6, - volume: 5770302 - }), - new StockGoogleItem( - { - date: `2015-07-25`, - open: 614.9, - high: 617.5, - low: 581.1, - close: 582.1, - volume: 3537966 - }), - new StockGoogleItem( - { - date: `2015-07-26`, - open: 610.4, - high: 631.7, - low: 599, - close: 628.6, - volume: 4235891 - }), - new StockGoogleItem( - { - date: `2015-07-27`, - open: 639.4, - high: 643.6, - low: 622, - close: 637.6, - volume: 3491336 - }), - new StockGoogleItem( - { - date: `2015-07-28`, - open: 632.8, - high: 636.9, - low: 624.6, - close: 630.4, - volume: 1978733 - }), - new StockGoogleItem( - { - date: `2015-07-31`, - open: 627.5, - high: 635.8, - low: 617.7, - close: 618.3, - volume: 2176737 - }), - new StockGoogleItem( - { - date: `2015-08-01`, - open: 602.4, - high: 612.9, - low: 594.1, - close: 597.8, - volume: 3702105 - }), - new StockGoogleItem( - { - date: `2015-08-02`, - open: 605.6, - high: 614.3, - low: 599.7, - close: 614.3, - volume: 2575620 - }), - new StockGoogleItem( - { - date: `2015-08-03`, - open: 617, - high: 619.7, - low: 602.8, - close: 606.3, - volume: 1759572 - }), - new StockGoogleItem( - { - date: `2015-08-04`, - open: 600, - high: 603.5, - low: 595.3, - close: 600.7, - volume: 2089453 - }), - new StockGoogleItem( - { - date: `2015-08-08`, - open: 612.5, - high: 616.3, - low: 604.1, - close: 614.7, - volume: 2279538 - }), - new StockGoogleItem( - { - date: `2015-08-09`, - open: 621.2, - high: 626.5, - low: 609.6, - close: 612.7, - volume: 1702094 - }), - new StockGoogleItem( - { - date: `2015-08-10`, - open: 613.1, - high: 624.2, - low: 611.4, - close: 621.4, - volume: 1900526 - }), - new StockGoogleItem( - { - date: `2015-08-11`, - open: 619.8, - high: 625.8, - low: 617.4, - close: 625.8, - volume: 1373545 - }), - new StockGoogleItem( - { - date: `2015-08-14`, - open: 625.7, - high: 625.9, - low: 619.4, - close: 623.2, - volume: 1702271 - }), - new StockGoogleItem( - { - date: `2015-08-15`, - open: 626.7, - high: 638.7, - low: 623.8, - close: 635.1, - volume: 2084397 - }), - new StockGoogleItem( - { - date: `2015-08-16`, - open: 635.5, - high: 638, - low: 632.3, - close: 636, - volume: 1286454 - }), - new StockGoogleItem( - { - date: `2015-08-17`, - open: 637.8, - high: 650.9, - low: 635, - close: 642.9, - volume: 2274690 - }), - new StockGoogleItem( - { - date: `2015-08-18`, - open: 636.8, - high: 640, - low: 627, - close: 629.3, - volume: 5133386 - }), - new StockGoogleItem( - { - date: `2015-08-21`, - open: 634.4, - high: 636.5, - low: 625.9, - close: 635.4, - volume: 1788506 - }), - new StockGoogleItem( - { - date: `2015-08-22`, - open: 627, - high: 627.5, - low: 615.4, - close: 622.7, - volume: 2562869 - }), - new StockGoogleItem( - { - date: `2015-08-23`, - open: 622, - high: 628.9, - low: 620, - close: 622.4, - volume: 1470949 - }), - new StockGoogleItem( - { - date: `2015-08-24`, - open: 616.6, - high: 627.3, - low: 612.4, - close: 625.8, - volume: 2240098 - }), - new StockGoogleItem( - { - date: `2015-08-25`, - open: 629.8, - high: 629.8, - low: 611, - close: 612, - volume: 2174009 - }), - new StockGoogleItem( - { - date: `2015-08-28`, - open: 610.3, - high: 614.6, - low: 589.4, - close: 594.9, - volume: 3127667 - }), - new StockGoogleItem( - { - date: `2015-08-29`, - open: 597.3, - high: 605, - low: 590.2, - close: 595, - volume: 2310284 - }), - new StockGoogleItem( - { - date: `2015-08-30`, - open: 603.3, - high: 608.8, - low: 600.7, - close: 608.4, - volume: 2413441 - }), - new StockGoogleItem( - { - date: `2015-09-01`, - open: 608.4, - high: 612.1, - low: 599.9, - close: 611.3, - volume: 1867601 - }), - new StockGoogleItem( - { - date: `2015-09-02`, - open: 607.2, - high: 627.3, - low: 603.1, - close: 626.9, - volume: 2684805 - }), - new StockGoogleItem( - { - date: `2015-09-05`, - open: 632, - high: 643, - low: 627, - close: 641.5, - volume: 1787880 - }), - new StockGoogleItem( - { - date: `2015-09-06`, - open: 638.8, - high: 649.3, - low: 636.5, - close: 645.4, - volume: 2166264 - }), - new StockGoogleItem( - { - date: `2015-09-07`, - open: 649.2, - high: 650.6, - low: 632.1, - close: 642.4, - volume: 2089776 - }), - new StockGoogleItem( - { - date: `2015-09-08`, - open: 641.4, - high: 644.5, - low: 625.6, - close: 639.2, - volume: 2180441 - }), - new StockGoogleItem( - { - date: `2015-09-09`, - open: 640, - high: 646, - low: 635.3, - close: 643.6, - volume: 1645844 - }), - new StockGoogleItem( - { - date: `2015-09-12`, - open: 642.1, - high: 648.5, - low: 639, - close: 646.7, - volume: 1275206 - }), - new StockGoogleItem( - { - date: `2015-09-13`, - open: 643.1, - high: 657.8, - low: 643.1, - close: 652.3, - volume: 1790704 - }), - new StockGoogleItem( - { - date: `2015-09-14`, - open: 653.2, - high: 659.4, - low: 648.9, - close: 651.2, - volume: 1412040 - }), - new StockGoogleItem( - { - date: `2015-09-15`, - open: 654.7, - high: 663.1, - low: 654.5, - close: 661.7, - volume: 1830524 - }), - new StockGoogleItem( - { - date: `2015-09-16`, - open: 664.1, - high: 665, - low: 657.2, - close: 662.2, - volume: 1606138 - }), - new StockGoogleItem( - { - date: `2015-09-19`, - open: 661.2, - high: 666.8, - low: 659.6, - close: 666.1, - volume: 1465339 - }), - new StockGoogleItem( - { - date: `2015-09-20`, - open: 664, - high: 664.7, - low: 644.2, - close: 650.3, - volume: 2490016 - }), - new StockGoogleItem( - { - date: `2015-09-21`, - open: 654.1, - high: 655.9, - low: 641.7, - close: 642.6, - volume: 1791099 - }), - new StockGoogleItem( - { - date: `2015-09-22`, - open: 646.7, - high: 657.8, - low: 644, - close: 651.8, - volume: 3782103 - }), - new StockGoogleItem( - { - date: `2015-09-23`, - open: 727.5, - high: 730, - low: 701.5, - close: 702, - volume: 6642504 - }), - new StockGoogleItem( - { - date: `2015-09-26`, - open: 701.5, - high: 719.1, - low: 701.3, - close: 712.8, - volume: 2701629 - }), - new StockGoogleItem( - { - date: `2015-09-27`, - open: 707.4, - high: 713.6, - low: 704.5, - close: 708.5, - volume: 2224309 - }), - new StockGoogleItem( - { - date: `2015-09-28`, - open: 707.3, - high: 713, - low: 703.1, - close: 713, - volume: 2176623 - }), - new StockGoogleItem( - { - date: `2015-09-29`, - open: 710.5, - high: 718.3, - low: 710, - close: 716.9, - volume: 1454128 - }), - new StockGoogleItem( - { - date: `2015-09-30`, - open: 715.7, - high: 718, - low: 710, - close: 710.8, - volume: 1903980 - }), - new StockGoogleItem( - { - date: `2015-10-02`, - open: 711.1, - high: 721.6, - low: 705.9, - close: 721.1, - volume: 1871073 - }), - new StockGoogleItem( - { - date: `2015-10-03`, - open: 718.9, - high: 724.6, - low: 714.7, - close: 722.2, - volume: 1560770 - }), - new StockGoogleItem( - { - date: `2015-10-04`, - open: 722, - high: 733.1, - low: 721.9, - close: 728.1, - volume: 1704575 - }), - new StockGoogleItem( - { - date: `2015-10-05`, - open: 729.5, - high: 739.5, - low: 729.5, - close: 731.3, - volume: 1860367 - }), - new StockGoogleItem( - { - date: `2015-10-06`, - open: 731.5, - high: 735.4, - low: 727, - close: 733.8, - volume: 1509656 - }), - new StockGoogleItem( - { - date: `2015-10-09`, - open: 730.2, - high: 734.7, - low: 719.4, - close: 724.9, - volume: 2065619 - }), - new StockGoogleItem( - { - date: `2015-10-10`, - open: 724.4, - high: 730.6, - low: 718.5, - close: 728.3, - volume: 1603937 - }), - new StockGoogleItem( - { - date: `2015-10-11`, - open: 732.5, - high: 741, - low: 730.2, - close: 735.4, - volume: 1366375 - }), - new StockGoogleItem( - { - date: `2015-10-12`, - open: 731, - high: 737.8, - low: 728.6, - close: 731.2, - volume: 1668048 - }), - new StockGoogleItem( - { - date: `2015-10-13`, - open: 729.2, - high: 731.1, - low: 716.7, - close: 717, - volume: 2062982 - }), - new StockGoogleItem( - { - date: `2015-10-16`, - open: 715.6, - high: 729.5, - low: 711.3, - close: 729, - volume: 1891074 - }), - new StockGoogleItem( - { - date: `2015-10-17`, - open: 729.3, - high: 731.8, - low: 723, - close: 725.3, - volume: 1491709 - }), - new StockGoogleItem( - { - date: `2015-10-18`, - open: 727.6, - high: 741.4, - low: 727, - close: 740, - volume: 1671588 - }), - new StockGoogleItem( - { - date: `2015-10-19`, - open: 738.7, - high: 742, - low: 737.4, - close: 738.4, - volume: 1327109 - }), - new StockGoogleItem( - { - date: `2015-10-20`, - open: 746.5, - high: 757.9, - low: 743, - close: 756.6, - volume: 2212302 - }), - new StockGoogleItem( - { - date: `2015-10-23`, - open: 757.5, - high: 762.7, - low: 751.8, - close: 756, - volume: 1414487 - }), - new StockGoogleItem( - { - date: `2015-10-24`, - open: 752, - high: 755.3, - low: 737.6, - close: 748.3, - volume: 2333130 - }), - new StockGoogleItem( - { - date: `2015-10-25`, - open: 748.1, - high: 752, - low: 746.1, - close: 748.1, - volume: 1122224 - }), - new StockGoogleItem( - { - date: `2015-10-27`, - open: 748.5, - high: 753.4, - low: 747.5, - close: 750.3, - volume: 838518 - }), - new StockGoogleItem( - { - date: `2015-10-30`, - open: 748.8, - high: 754.9, - low: 741.3, - close: 742.6, - volume: 2035261 - }), - new StockGoogleItem( - { - date: `2015-11-01`, - open: 747.1, - high: 769, - low: 746.7, - close: 767, - volume: 2129940 - }), - new StockGoogleItem( - { - date: `2015-11-02`, - open: 768.9, - high: 776, - low: 759, - close: 762.4, - volume: 2195686 - }), - new StockGoogleItem( - { - date: `2015-11-03`, - open: 766, - high: 769, - low: 745.6, - close: 752.5, - volume: 2590641 - }), - new StockGoogleItem( - { - date: `2015-11-04`, - open: 753.1, - high: 768.5, - low: 750, - close: 766.8, - volume: 2757283 - }), - new StockGoogleItem( - { - date: `2015-11-07`, - open: 767.8, - high: 768.7, - low: 755.1, - close: 763.3, - volume: 1812314 - }), - new StockGoogleItem( - { - date: `2015-11-08`, - open: 757.9, - high: 764.8, - low: 754.2, - close: 762.4, - volume: 1829475 - }), - new StockGoogleItem( - { - date: `2015-11-09`, - open: 759.2, - high: 764.2, - low: 737, - close: 751.6, - volume: 2699990 - }), - new StockGoogleItem( - { - date: `2015-11-10`, - open: 752.9, - high: 755.9, - low: 743.8, - close: 749.5, - volume: 1988380 - }), - new StockGoogleItem( - { - date: `2015-11-11`, - open: 741.2, - high: 745.7, - low: 736.8, - close: 738.9, - volume: 2224410 - }), - new StockGoogleItem( - { - date: `2015-11-14`, - open: 741.8, - high: 748.7, - low: 724.2, - close: 747.8, - volume: 2412497 - }), - new StockGoogleItem( - { - date: `2015-11-15`, - open: 753, - high: 758.1, - low: 743, - close: 743.4, - volume: 2666229 - }), - new StockGoogleItem( - { - date: `2015-11-16`, - open: 750, - high: 760.6, - low: 739.4, - close: 758.1, - volume: 1993251 - }), - new StockGoogleItem( - { - date: `2015-11-17`, - open: 762.4, - high: 762.7, - low: 749, - close: 749.4, - volume: 1553418 - }), - new StockGoogleItem( - { - date: `2015-11-18`, - open: 746.5, - high: 754.1, - low: 738.1, - close: 739.3, - volume: 3148743 - }), - new StockGoogleItem( - { - date: `2015-11-21`, - open: 746.1, - high: 750, - low: 740, - close: 747.8, - volume: 1525703 - }), - new StockGoogleItem( - { - date: `2015-11-22`, - open: 751.6, - high: 754.9, - low: 745.5, - close: 750, - volume: 1365520 - }), - new StockGoogleItem( - { - date: `2015-11-23`, - open: 753.5, - high: 754.2, - low: 744, - close: 750.3, - volume: 1566726 - }), - new StockGoogleItem( - { - date: `2015-11-24`, - open: 749.5, - high: 751.4, - low: 746.6, - close: 748.4, - volume: 527223 - }), - new StockGoogleItem( - { - date: `2015-11-28`, - open: 752.9, - high: 763, - low: 749.5, - close: 762.5, - volume: 1515716 - }), - new StockGoogleItem( - { - date: `2015-11-29`, - open: 766.7, - high: 780, - low: 766.4, - close: 776.6, - volume: 1765012 - }), - new StockGoogleItem( - { - date: `2015-11-30`, - open: 776.6, - high: 777.6, - low: 766.9, - close: 771, - volume: 1293521 - }), - new StockGoogleItem( - { - date: `2015-11-31`, - open: 769.5, - high: 769.5, - low: 758.3, - close: 758.9, - volume: 1500923 - }), - new StockGoogleItem( - { - date: `2016-00-04`, - open: 743, - high: 744.1, - low: 731.3, - close: 741.8, - volume: 3258199 - }), - new StockGoogleItem( - { - date: `2016-00-05`, - open: 746.5, - high: 752, - low: 738.6, - close: 742.6, - volume: 1950691 - }), - new StockGoogleItem( - { - date: `2016-00-06`, - open: 730, - high: 747.2, - low: 728.9, - close: 743.6, - volume: 1947034 - }), - new StockGoogleItem( - { - date: `2016-00-07`, - open: 730.3, - high: 738.5, - low: 719.1, - close: 726.4, - volume: 2963741 - }), - new StockGoogleItem( - { - date: `2016-00-08`, - open: 731.5, - high: 733.2, - low: 713, - close: 714.5, - volume: 2450857 - }), - new StockGoogleItem( - { - date: `2016-00-11`, - open: 716.6, - high: 718.9, - low: 703.5, - close: 716, - volume: 2090621 - }), - new StockGoogleItem( - { - date: `2016-00-12`, - open: 721.7, - high: 728.8, - low: 717.3, - close: 726.1, - volume: 2024509 - }), - new StockGoogleItem( - { - date: `2016-00-13`, - open: 730.9, - high: 734.7, - low: 698.6, - close: 700.6, - volume: 2468295 - }), - new StockGoogleItem( - { - date: `2016-00-14`, - open: 705.4, - high: 721.9, - low: 689.1, - close: 714.7, - volume: 2211853 - }), - new StockGoogleItem( - { - date: `2016-00-15`, - open: 692.3, - high: 706.7, - low: 685.4, - close: 694.5, - volume: 3592449 - }), - new StockGoogleItem( - { - date: `2016-00-19`, - open: 703.3, - high: 710, - low: 693.4, - close: 701.8, - volume: 2258479 - }), - new StockGoogleItem( - { - date: `2016-00-20`, - open: 688.6, - high: 706.9, - low: 673.3, - close: 698.5, - volume: 3439386 - }), - new StockGoogleItem( - { - date: `2016-00-21`, - open: 702.2, - high: 719.2, - low: 694.5, - close: 706.6, - volume: 2410263 - }), - new StockGoogleItem( - { - date: `2016-00-22`, - open: 723.6, - high: 728.1, - low: 720.1, - close: 725.3, - volume: 2006528 - }), - new StockGoogleItem( - { - date: `2016-00-25`, - open: 723.6, - high: 729.7, - low: 710, - close: 711.7, - volume: 1704641 - }), - new StockGoogleItem( - { - date: `2016-00-26`, - open: 713.9, - high: 718.3, - low: 706.5, - close: 713, - volume: 1324300 - }), - new StockGoogleItem( - { - date: `2016-00-27`, - open: 713.7, - high: 718.2, - low: 694.4, - close: 700, - volume: 2139970 - }), - new StockGoogleItem( - { - date: `2016-00-28`, - open: 722.2, - high: 733.7, - low: 712.4, - close: 731, - volume: 2658016 - }), - new StockGoogleItem( - { - date: `2016-00-29`, - open: 731.5, - high: 745, - low: 726.8, - close: 743, - volume: 3394935 - }), - new StockGoogleItem( - { - date: `2016-01-01`, - open: 750.5, - high: 757.9, - low: 743.3, - close: 752, - volume: 4801816 - }), - new StockGoogleItem( - { - date: `2016-01-02`, - open: 784.5, - high: 789.9, - low: 764.6, - close: 764.6, - volume: 6332431 - }), - new StockGoogleItem( - { - date: `2016-01-03`, - open: 770.2, - high: 774.5, - low: 720.5, - close: 727, - volume: 6162333 - }), - new StockGoogleItem( - { - date: `2016-01-04`, - open: 722.8, - high: 727, - low: 701.9, - close: 708, - volume: 5145855 - }), - new StockGoogleItem( - { - date: `2016-01-05`, - open: 703.9, - high: 704, - low: 680.1, - close: 683.6, - volume: 5069985 - }), - new StockGoogleItem( - { - date: `2016-01-08`, - open: 667.9, - high: 684, - low: 663.1, - close: 682.7, - volume: 4212541 - }), - new StockGoogleItem( - { - date: `2016-01-09`, - open: 672.3, - high: 699.9, - low: 668.8, - close: 678.1, - volume: 3604335 - }), - new StockGoogleItem( - { - date: `2016-01-10`, - open: 686.9, - high: 701.3, - low: 682.1, - close: 684.1, - volume: 2627379 - }), - new StockGoogleItem( - { - date: `2016-01-11`, - open: 675, - high: 689.4, - low: 668.9, - close: 683.1, - volume: 3007223 - }), - new StockGoogleItem( - { - date: `2016-01-12`, - open: 690.3, - high: 693.8, - low: 678.6, - close: 682.4, - volume: 2129831 - }), - new StockGoogleItem( - { - date: `2016-01-16`, - open: 693, - high: 698, - low: 685, - close: 691, - volume: 2497024 - }), - new StockGoogleItem( - { - date: `2016-01-17`, - open: 699, - high: 709.8, - low: 691.4, - close: 708.4, - volume: 2466808 - }), - new StockGoogleItem( - { - date: `2016-01-18`, - open: 710, - high: 712.4, - low: 696, - close: 697.4, - volume: 1859130 - }), - new StockGoogleItem( - { - date: `2016-01-19`, - open: 695, - high: 703.1, - low: 694, - close: 700.9, - volume: 1582260 - }), - new StockGoogleItem( - { - date: `2016-01-22`, - open: 707.5, - high: 713.2, - low: 702.5, - close: 706.5, - volume: 1946067 - }), - new StockGoogleItem( - { - date: `2016-01-23`, - open: 701.5, - high: 708.4, - low: 693.6, - close: 695.9, - volume: 1999699 - }), - new StockGoogleItem( - { - date: `2016-01-24`, - open: 688.9, - high: 700, - low: 680.8, - close: 699.6, - volume: 1958611 - }), - new StockGoogleItem( - { - date: `2016-01-25`, - open: 700, - high: 706, - low: 690.6, - close: 705.8, - volume: 1631855 - }), - new StockGoogleItem( - { - date: `2016-01-26`, - open: 708.6, - high: 713.4, - low: 700.9, - close: 705.1, - volume: 2239978 - }), - new StockGoogleItem( - { - date: `2016-01-29`, - open: 700.3, - high: 710.9, - low: 697.7, - close: 697.8, - volume: 2280280 - }), - new StockGoogleItem( - { - date: `2016-02-01`, - open: 703.6, - high: 718.8, - low: 699.8, - close: 718.8, - volume: 2147442 - }), - new StockGoogleItem( - { - date: `2016-02-02`, - open: 719, - high: 720, - low: 712, - close: 718.9, - volume: 1627753 - }), - new StockGoogleItem( - { - date: `2016-02-03`, - open: 718.7, - high: 719.5, - low: 706, - close: 712.4, - volume: 1956761 - }), - new StockGoogleItem( - { - date: `2016-02-04`, - open: 715, - high: 716.5, - low: 706, - close: 710.9, - volume: 1967873 - }), - new StockGoogleItem( - { - date: `2016-02-07`, - open: 706.9, - high: 708.1, - low: 686.9, - close: 695.2, - volume: 2985094 - }), - new StockGoogleItem( - { - date: `2016-02-08`, - open: 688.6, - high: 703.8, - low: 685.3, - close: 694, - volume: 2063357 - }), - new StockGoogleItem( - { - date: `2016-02-09`, - open: 698.5, - high: 705.7, - low: 694, - close: 705.2, - volume: 1418704 - }), - new StockGoogleItem( - { - date: `2016-02-10`, - open: 708.1, - high: 716.4, - low: 703.4, - close: 712.8, - volume: 2829412 - }), - new StockGoogleItem( - { - date: `2016-02-11`, - open: 720, - high: 726.9, - low: 717.1, - close: 726.8, - volume: 1963907 - }), - new StockGoogleItem( - { - date: `2016-02-14`, - open: 726.8, - high: 735.5, - low: 725.1, - close: 730.5, - volume: 1716910 - }), - new StockGoogleItem( - { - date: `2016-02-15`, - open: 726.9, - high: 732.3, - low: 724.8, - close: 728.3, - volume: 1720965 - }), - new StockGoogleItem( - { - date: `2016-02-16`, - open: 726.4, - high: 737.5, - low: 724.5, - close: 736.1, - volume: 1572329 - }), - new StockGoogleItem( - { - date: `2016-02-17`, - open: 736.5, - high: 743.1, - low: 736, - close: 737.8, - volume: 1856800 - }), - new StockGoogleItem( - { - date: `2016-02-18`, - open: 741.9, - high: 742, - low: 731.8, - close: 737.6, - volume: 2796376 - }), - new StockGoogleItem( - { - date: `2016-02-21`, - open: 736.5, - high: 742.5, - low: 733.5, - close: 742.1, - volume: 1831839 - }), - new StockGoogleItem( - { - date: `2016-02-22`, - open: 737.5, - high: 745, - low: 737.5, - close: 740.8, - volume: 1264396 - }), - new StockGoogleItem( - { - date: `2016-02-23`, - open: 742.4, - high: 745.7, - low: 736.1, - close: 738.1, - volume: 1421861 - }), - new StockGoogleItem( - { - date: `2016-02-24`, - open: 732, - high: 737.8, - low: 731, - close: 735.3, - volume: 1564782 - }), - new StockGoogleItem( - { - date: `2016-02-28`, - open: 736.8, - high: 739, - low: 732.5, - close: 733.5, - volume: 1299812 - }), - new StockGoogleItem( - { - date: `2016-02-29`, - open: 734.6, - high: 747.3, - low: 728.8, - close: 744.8, - volume: 1902128 - }), - new StockGoogleItem( - { - date: `2016-02-30`, - open: 750.1, - high: 757.9, - low: 748.7, - close: 750.5, - volume: 1780998 - }), - new StockGoogleItem( - { - date: `2016-02-31`, - open: 749.3, - high: 750.9, - low: 740.9, - close: 745, - volume: 1712375 - }), - new StockGoogleItem( - { - date: `2016-03-01`, - open: 738.6, - high: 750.3, - low: 737, - close: 749.9, - volume: 1574870 - }), - new StockGoogleItem( - { - date: `2016-03-04`, - open: 750.1, - high: 752.8, - low: 742.4, - close: 745.3, - volume: 1131843 - }), - new StockGoogleItem( - { - date: `2016-03-05`, - open: 738, - high: 742.8, - low: 735.4, - close: 737.8, - volume: 1129829 - }), - new StockGoogleItem( - { - date: `2016-03-06`, - open: 735.8, - high: 746.2, - low: 735.6, - close: 745.7, - volume: 1050193 - }), - new StockGoogleItem( - { - date: `2016-03-07`, - open: 745.4, - high: 747, - low: 736.3, - close: 740.3, - volume: 1429504 - }), - new StockGoogleItem( - { - date: `2016-03-08`, - open: 744, - high: 745.5, - low: 735.5, - close: 739.1, - volume: 1285755 - }), - new StockGoogleItem( - { - date: `2016-03-11`, - open: 743, - high: 745, - low: 736, - close: 736.1, - volume: 1211762 - }), - new StockGoogleItem( - { - date: `2016-03-12`, - open: 738, - high: 743.8, - low: 731, - close: 743.1, - volume: 1349734 - }), - new StockGoogleItem( - { - date: `2016-03-13`, - open: 749.2, - high: 754.4, - low: 744.3, - close: 751.7, - volume: 1707095 - }), - new StockGoogleItem( - { - date: `2016-03-14`, - open: 754, - high: 757.3, - low: 752.7, - close: 753.2, - volume: 1130971 - }), - new StockGoogleItem( - { - date: `2016-03-15`, - open: 754, - high: 761, - low: 752.7, - close: 759, - volume: 1800413 - }), - new StockGoogleItem( - { - date: `2016-03-18`, - open: 760.5, - high: 768, - low: 757.3, - close: 766.6, - volume: 1555953 - }), - new StockGoogleItem( - { - date: `2016-03-19`, - open: 769.5, - high: 769.9, - low: 749.3, - close: 753.9, - volume: 2027642 - }), - new StockGoogleItem( - { - date: `2016-03-20`, - open: 758, - high: 758.1, - low: 750, - close: 752.7, - volume: 1525591 - }), - new StockGoogleItem( - { - date: `2016-03-21`, - open: 755.4, - high: 760.5, - low: 749.5, - close: 759.1, - volume: 2743620 - }), - new StockGoogleItem( - { - date: `2016-03-22`, - open: 726.3, - high: 736.1, - low: 713.6, - close: 718.8, - volume: 5939199 - }), - new StockGoogleItem( - { - date: `2016-03-25`, - open: 716.1, - high: 723.9, - low: 715.6, - close: 723.1, - volume: 1955567 - }), - new StockGoogleItem( - { - date: `2016-03-26`, - open: 725.4, - high: 725.8, - low: 703, - close: 708.1, - volume: 2727185 - }), - new StockGoogleItem( - { - date: `2016-03-27`, - open: 707.3, - high: 709, - low: 692.4, - close: 705.8, - volume: 3086722 - }), - new StockGoogleItem( - { - date: `2016-03-28`, - open: 708.3, - high: 714.2, - low: 689.5, - close: 691, - volume: 2851108 - }), - new StockGoogleItem( - { - date: `2016-03-29`, - open: 690.7, - high: 697.6, - low: 689, - close: 693, - volume: 2484273 - }), - new StockGoogleItem( - { - date: `2016-04-02`, - open: 697.6, - high: 700.6, - low: 691, - close: 698.2, - volume: 1644126 - }), - new StockGoogleItem( - { - date: `2016-04-03`, - open: 696.9, - high: 697.8, - low: 692, - close: 692.4, - volume: 1530993 - }), - new StockGoogleItem( - { - date: `2016-04-04`, - open: 690.5, - high: 699.8, - low: 689, - close: 695.7, - volume: 1688569 - }), - new StockGoogleItem( - { - date: `2016-04-05`, - open: 697.7, - high: 702.3, - low: 695.7, - close: 701.4, - volume: 1677405 - }), - new StockGoogleItem( - { - date: `2016-04-06`, - open: 698.4, - high: 711.9, - low: 698.1, - close: 711.1, - volume: 1826146 - }), - new StockGoogleItem( - { - date: `2016-04-09`, - open: 712, - high: 718.7, - low: 710, - close: 712.9, - volume: 1508423 - }), - new StockGoogleItem( - { - date: `2016-04-10`, - open: 716.8, - high: 723.5, - low: 715.7, - close: 723.2, - volume: 1563105 - }), - new StockGoogleItem( - { - date: `2016-04-11`, - open: 723.4, - high: 724.5, - low: 712.8, - close: 715.3, - volume: 1686823 - }), - new StockGoogleItem( - { - date: `2016-04-12`, - open: 717.1, - high: 719.3, - low: 709, - close: 713.3, - volume: 1360732 - }), - new StockGoogleItem( - { - date: `2016-04-13`, - open: 711.9, - high: 716.7, - low: 709.3, - close: 710.8, - volume: 1307338 - }), - new StockGoogleItem( - { - date: `2016-04-16`, - open: 709.1, - high: 718.5, - low: 705.6, - close: 716.5, - volume: 1316177 - }), - new StockGoogleItem( - { - date: `2016-04-17`, - open: 716, - high: 721.5, - low: 704.1, - close: 706.2, - volume: 1999456 - }), - new StockGoogleItem( - { - date: `2016-04-18`, - open: 703.7, - high: 711.6, - low: 700.6, - close: 706.6, - volume: 1763394 - }), - new StockGoogleItem( - { - date: `2016-04-19`, - open: 702.4, - high: 706, - low: 696.8, - close: 700.3, - volume: 1656321 - }), - new StockGoogleItem( - { - date: `2016-04-20`, - open: 701.6, - high: 714.6, - low: 700.5, - close: 709.7, - volume: 1816027 - }), - new StockGoogleItem( - { - date: `2016-04-23`, - open: 706.5, - high: 711.5, - low: 704.2, - close: 704.2, - volume: 1320927 - }), - new StockGoogleItem( - { - date: `2016-04-24`, - open: 706.9, - high: 721, - low: 706.9, - close: 720.1, - volume: 1920411 - }), - new StockGoogleItem( - { - date: `2016-04-25`, - open: 720.8, - high: 727.5, - low: 719.7, - close: 725.3, - volume: 1629198 - }), - new StockGoogleItem( - { - date: `2016-04-26`, - open: 722.9, - high: 728.3, - low: 720.3, - close: 724.1, - volume: 1542866 - }), - new StockGoogleItem( - { - date: `2016-04-27`, - open: 724, - high: 733.9, - low: 724, - close: 732.7, - volume: 1974026 - }), - new StockGoogleItem( - { - date: `2016-04-31`, - open: 731.7, - high: 739.7, - low: 731.3, - close: 735.7, - volume: 2129545 - }), - new StockGoogleItem( - { - date: `2016-05-01`, - open: 734.5, - high: 737.2, - low: 730.7, - close: 734.1, - volume: 1253593 - }), - new StockGoogleItem( - { - date: `2016-05-02`, - open: 732.5, - high: 733, - low: 724.2, - close: 730.4, - volume: 1341807 - }), - new StockGoogleItem( - { - date: `2016-05-03`, - open: 729.3, - high: 729.5, - low: 720.6, - close: 722.3, - volume: 1226253 - }), - new StockGoogleItem( - { - date: `2016-05-06`, - open: 724.9, - high: 724.9, - low: 714.6, - close: 716.5, - volume: 1566059 - }), - new StockGoogleItem( - { - date: `2016-05-07`, - open: 719.8, - high: 722, - low: 716.5, - close: 716.6, - volume: 1336754 - }), - new StockGoogleItem( - { - date: `2016-05-08`, - open: 724, - high: 728.6, - low: 720.6, - close: 728.3, - volume: 1583701 - }), - new StockGoogleItem( - { - date: `2016-05-09`, - open: 722.9, - high: 729.5, - low: 722.3, - close: 728.6, - volume: 988914 - }), - new StockGoogleItem( - { - date: `2016-05-10`, - open: 719.5, - high: 725.9, - low: 716.4, - close: 719.4, - volume: 1216443 - }), - new StockGoogleItem( - { - date: `2016-05-13`, - open: 716.5, - high: 725.4, - low: 716.5, - close: 718.4, - volume: 1258930 - }), - new StockGoogleItem( - { - date: `2016-05-14`, - open: 716.5, - high: 722.5, - low: 713.1, - close: 718.3, - volume: 1306065 - }), - new StockGoogleItem( - { - date: `2016-05-15`, - open: 719, - high: 723, - low: 717.3, - close: 718.9, - volume: 1214517 - }), - new StockGoogleItem( - { - date: `2016-05-16`, - open: 714.9, - high: 716.6, - low: 703.3, - close: 710.4, - volume: 1982471 - }), - new StockGoogleItem( - { - date: `2016-05-17`, - open: 708.6, - high: 708.8, - low: 688.5, - close: 691.7, - volume: 3402357 - }), - new StockGoogleItem( - { - date: `2016-05-20`, - open: 698.8, - high: 702.5, - low: 693.4, - close: 693.7, - volume: 2082538 - }), - new StockGoogleItem( - { - date: `2016-05-21`, - open: 698.4, - high: 702.8, - low: 692, - close: 695.9, - volume: 1465634 - }), - new StockGoogleItem( - { - date: `2016-05-22`, - open: 699.1, - high: 700.9, - low: 693.1, - close: 697.5, - volume: 1184318 - }), - new StockGoogleItem( - { - date: `2016-05-23`, - open: 697.5, - high: 702, - low: 687, - close: 701.9, - volume: 2171415 - }), - new StockGoogleItem( - { - date: `2016-05-24`, - open: 675.2, - high: 689.4, - low: 673.5, - close: 675.2, - volume: 4449022 - }), - new StockGoogleItem( - { - date: `2016-05-27`, - open: 671, - high: 672.3, - low: 663.3, - close: 668.3, - volume: 2641085 - }), - new StockGoogleItem( - { - date: `2016-05-28`, - open: 679, - high: 680.3, - low: 673, - close: 680, - volume: 2173762 - }), - new StockGoogleItem( - { - date: `2016-05-29`, - open: 683, - high: 687.4, - low: 681.4, - close: 684.1, - volume: 1932561 - }), - new StockGoogleItem( - { - date: `2016-05-30`, - open: 685.5, - high: 692.3, - low: 683.6, - close: 692.1, - volume: 1597714 - }), - new StockGoogleItem( - { - date: `2016-06-01`, - open: 692.2, - high: 700.6, - low: 692.1, - close: 699.2, - volume: 1344710 - }), - new StockGoogleItem( - { - date: `2016-06-05`, - open: 696.1, - high: 696.9, - low: 688.9, - close: 694.5, - volume: 1462616 - }), - new StockGoogleItem( - { - date: `2016-06-06`, - open: 690, - high: 701.7, - low: 689.1, - close: 697.8, - volume: 1411925 - }), - new StockGoogleItem( - { - date: `2016-06-07`, - open: 698.1, - high: 698.2, - low: 688.2, - close: 695.4, - volume: 1304200 - }), - new StockGoogleItem( - { - date: `2016-06-08`, - open: 699.5, - high: 705.7, - low: 696.4, - close: 705.6, - volume: 1575166 - }), - new StockGoogleItem( - { - date: `2016-06-11`, - open: 708, - high: 716.5, - low: 707.2, - close: 715.1, - volume: 1111762 - }), - new StockGoogleItem( - { - date: `2016-06-12`, - open: 719.1, - high: 722.9, - low: 715.9, - close: 720.6, - volume: 1336921 - }), - new StockGoogleItem( - { - date: `2016-06-13`, - open: 723.6, - high: 724, - low: 716.9, - close: 717, - volume: 935876 - }), - new StockGoogleItem( - { - date: `2016-06-14`, - open: 721.6, - high: 722.2, - low: 718, - close: 721, - volume: 950193 - }), - new StockGoogleItem( - { - date: `2016-06-15`, - open: 725.7, - high: 725.7, - low: 719.1, - close: 719.9, - volume: 1279339 - }), - new StockGoogleItem( - { - date: `2016-06-18`, - open: 722.7, - high: 736.1, - low: 721.2, - close: 733.8, - volume: 1295476 - }), - new StockGoogleItem( - { - date: `2016-06-19`, - open: 729.9, - high: 737, - low: 729, - close: 737, - volume: 1227486 - }), - new StockGoogleItem( - { - date: `2016-06-20`, - open: 737.3, - high: 742.1, - low: 737.1, - close: 741.2, - volume: 1289671 - }), - new StockGoogleItem( - { - date: `2016-06-21`, - open: 740.4, - high: 741.7, - low: 735.8, - close: 738.6, - volume: 1026306 - }), - new StockGoogleItem( - { - date: `2016-06-22`, - open: 741.9, - high: 743.2, - low: 736.6, - close: 742.7, - volume: 1259823 - }), - new StockGoogleItem( - { - date: `2016-06-25`, - open: 740.7, - high: 742.6, - low: 737.5, - close: 739.8, - volume: 1032432 - }), - new StockGoogleItem( - { - date: `2016-06-26`, - open: 739, - high: 741.7, - low: 734.3, - close: 738.4, - volume: 1186738 - }), - new StockGoogleItem( - { - date: `2016-06-27`, - open: 738.3, - high: 744.5, - low: 737, - close: 741.8, - volume: 1512517 - }), - new StockGoogleItem( - { - date: `2016-06-28`, - open: 747, - high: 748.6, - low: 739.3, - close: 745.9, - volume: 3530169 - }), - new StockGoogleItem( - { - date: `2016-06-29`, - open: 772.7, - high: 778.5, - low: 766.8, - close: 768.8, - volume: 3841482 - }), - new StockGoogleItem( - { - date: `2016-07-01`, - open: 761.1, - high: 780.4, - low: 761.1, - close: 772.9, - volume: 2700470 - }), - new StockGoogleItem( - { - date: `2016-07-02`, - open: 768.7, - high: 775.8, - low: 767.9, - close: 771.1, - volume: 1784525 - }), - new StockGoogleItem( - { - date: `2016-07-03`, - open: 767.2, - high: 773.2, - low: 766.8, - close: 773.2, - volume: 1287421 - }), - new StockGoogleItem( - { - date: `2016-07-04`, - open: 772.2, - high: 774.1, - low: 768.8, - close: 771.6, - volume: 1140254 - }), - new StockGoogleItem( - { - date: `2016-07-05`, - open: 773.8, - high: 783, - low: 772.3, - close: 782.2, - volume: 1801205 - }), - new StockGoogleItem( - { - date: `2016-07-08`, - open: 782, - high: 782.6, - low: 778.1, - close: 781.8, - volume: 1107857 - }), - new StockGoogleItem( - { - date: `2016-07-09`, - open: 781.1, - high: 788.9, - low: 780.6, - close: 784.3, - volume: 1318894 - }), - new StockGoogleItem( - { - date: `2016-07-10`, - open: 783.8, - high: 786.8, - low: 782.8, - close: 784.7, - volume: 786363 - }), - new StockGoogleItem( - { - date: `2016-07-11`, - open: 785, - high: 789.8, - low: 783, - close: 784.9, - volume: 975113 - }), - new StockGoogleItem( - { - date: `2016-07-12`, - open: 781.5, - high: 783.4, - low: 780.4, - close: 783.2, - volume: 740498 - }), - new StockGoogleItem( - { - date: `2016-07-15`, - open: 783.8, - high: 787.5, - low: 780.1, - close: 782.4, - volume: 938186 - }), - new StockGoogleItem( - { - date: `2016-07-16`, - open: 780.3, - high: 781, - low: 773.4, - close: 777.1, - volume: 1028047 - }), - new StockGoogleItem( - { - date: `2016-07-17`, - open: 777.3, - high: 780.8, - low: 773.5, - close: 779.9, - volume: 924226 - }), - new StockGoogleItem( - { - date: `2016-07-18`, - open: 780, - high: 782.9, - low: 777, - close: 777.5, - volume: 719429 - }), - new StockGoogleItem( - { - date: `2016-07-19`, - open: 775, - high: 777.1, - low: 773.1, - close: 775.4, - volume: 861546 - }), - new StockGoogleItem( - { - date: `2016-07-22`, - open: 773.3, - high: 774.5, - low: 770, - close: 772.1, - volume: 951362 - }), - new StockGoogleItem( - { - date: `2016-07-23`, - open: 775.5, - high: 776.4, - low: 771.8, - close: 772.1, - volume: 928232 - }), - new StockGoogleItem( - { - date: `2016-07-24`, - open: 770.6, - high: 774.5, - low: 767.1, - close: 769.6, - volume: 1071999 - }), - new StockGoogleItem( - { - date: `2016-07-25`, - open: 767, - high: 771.9, - low: 763.2, - close: 769.4, - volume: 926883 - }), - new StockGoogleItem( - { - date: `2016-07-26`, - open: 769, - high: 776.1, - low: 765.9, - close: 769.5, - volume: 1166681 - }), - new StockGoogleItem( - { - date: `2016-07-29`, - open: 768.7, - high: 775, - low: 766.6, - close: 772.1, - volume: 847565 - }), - new StockGoogleItem( - { - date: `2016-07-30`, - open: 769.3, - high: 774.5, - low: 766.8, - close: 769.1, - volume: 1130029 - }), - new StockGoogleItem( - { - date: `2016-07-31`, - open: 767, - high: 769.1, - low: 765.4, - close: 767, - volume: 1248556 - }), - new StockGoogleItem( - { - date: `2016-08-01`, - open: 769.3, - high: 771, - low: 764.3, - close: 768.8, - volume: 925131 - }), - new StockGoogleItem( - { - date: `2016-08-02`, - open: 773, - high: 773.9, - low: 768.4, - close: 771.5, - volume: 1072658 - }), - new StockGoogleItem( - { - date: `2016-08-06`, - open: 773.5, - high: 782, - low: 771, - close: 780.1, - volume: 1442822 - }), - new StockGoogleItem( - { - date: `2016-08-07`, - open: 780, - high: 782.7, - low: 776.2, - close: 780.4, - volume: 894021 - }), - new StockGoogleItem( - { - date: `2016-08-08`, - open: 778.6, - high: 780.4, - low: 773.6, - close: 775.3, - volume: 1270264 - }), - new StockGoogleItem( - { - date: `2016-08-09`, - open: 770.1, - high: 773.2, - low: 759.7, - close: 759.7, - volume: 1885496 - }), - new StockGoogleItem( - { - date: `2016-08-12`, - open: 755.1, - high: 770.3, - low: 754, - close: 769, - volume: 1310986 - }), - new StockGoogleItem( - { - date: `2016-08-13`, - open: 764.5, - high: 766.2, - low: 755.8, - close: 759.7, - volume: 1395046 - }), - new StockGoogleItem( - { - date: `2016-08-14`, - open: 759.6, - high: 767.7, - low: 759.1, - close: 762.5, - volume: 1094490 - }), - new StockGoogleItem( - { - date: `2016-08-15`, - open: 762.9, - high: 773.8, - low: 760, - close: 771.8, - volume: 1346751 - }), - new StockGoogleItem( - { - date: `2016-08-16`, - open: 769.8, - high: 769.8, - low: 764.7, - close: 768.9, - volume: 2049338 - }), - new StockGoogleItem( - { - date: `2016-08-19`, - open: 772.4, - high: 774, - low: 764.4, - close: 765.7, - volume: 1172824 - }), - new StockGoogleItem( - { - date: `2016-08-20`, - open: 769, - high: 773.3, - low: 768.5, - close: 771.4, - volume: 978631 - }), - new StockGoogleItem( - { - date: `2016-08-21`, - open: 772.7, - high: 777.2, - low: 768.3, - close: 776.2, - volume: 1167810 - }), - new StockGoogleItem( - { - date: `2016-08-22`, - open: 780, - high: 789.9, - low: 778.4, - close: 787.2, - volume: 1486223 - }), - new StockGoogleItem( - { - date: `2016-08-23`, - open: 786.6, - high: 788.9, - low: 784.1, - close: 786.9, - volume: 1411937 - }), - new StockGoogleItem( - { - date: `2016-08-26`, - open: 782.7, - high: 782.7, - low: 773.1, - close: 774.2, - volume: 1533206 - }), - new StockGoogleItem( - { - date: `2016-08-27`, - open: 775.5, - high: 786, - low: 774.3, - close: 783, - volume: 1153247 - }), - new StockGoogleItem( - { - date: `2016-08-28`, - open: 777.9, - high: 781.8, - low: 775, - close: 781.6, - volume: 1109834 - }), - new StockGoogleItem( - { - date: `2016-08-29`, - open: 781.4, - high: 785.8, - low: 774.2, - close: 775, - volume: 1314746 - }), - new StockGoogleItem( - { - date: `2016-08-30`, - open: 776.3, - high: 780.9, - low: 774.1, - close: 777.3, - volume: 1585333 - }), - new StockGoogleItem( - { - date: `2016-09-03`, - open: 774.3, - high: 776.1, - low: 769.5, - close: 772.6, - volume: 1278821 - }), - new StockGoogleItem( - { - date: `2016-09-04`, - open: 776, - high: 778.7, - low: 772.9, - close: 776.4, - volume: 1201350 - }), - new StockGoogleItem( - { - date: `2016-09-05`, - open: 779.3, - high: 782.1, - low: 775.6, - close: 776.5, - volume: 1461151 - }), - new StockGoogleItem( - { - date: `2016-09-06`, - open: 779, - high: 780.5, - low: 775.5, - close: 776.9, - volume: 1070692 - }), - new StockGoogleItem( - { - date: `2016-09-07`, - open: 779.7, - high: 779.7, - low: 770.8, - close: 775.1, - volume: 933158 - }), - new StockGoogleItem( - { - date: `2016-09-10`, - open: 777.7, - high: 789.4, - low: 775.9, - close: 785.9, - volume: 1174923 - }), - new StockGoogleItem( - { - date: `2016-09-11`, - open: 786.7, - high: 792.3, - low: 780.6, - close: 783.1, - volume: 1372461 - }), - new StockGoogleItem( - { - date: `2016-09-12`, - open: 783.8, - high: 788.1, - low: 782.1, - close: 786.1, - volume: 937435 - }), - new StockGoogleItem( - { - date: `2016-09-13`, - open: 781.2, - high: 781.2, - low: 773, - close: 778.2, - volume: 1365277 - }), - new StockGoogleItem( - { - date: `2016-09-14`, - open: 781.6, - high: 784, - low: 776, - close: 778.5, - volume: 852487 - }), - new StockGoogleItem( - { - date: `2016-09-17`, - open: 779.8, - high: 785.9, - low: 777.5, - close: 780, - volume: 1092973 - }), - new StockGoogleItem( - { - date: `2016-09-18`, - open: 787.9, - high: 801.6, - low: 785.6, - close: 795.3, - volume: 2056903 - }), - new StockGoogleItem( - { - date: `2016-09-19`, - open: 798.9, - high: 804.6, - low: 797.6, - close: 801.6, - volume: 1766798 - }), - new StockGoogleItem( - { - date: `2016-09-20`, - open: 803.3, - high: 804, - low: 796, - close: 797, - volume: 1757528 - }), - new StockGoogleItem( - { - date: `2016-09-21`, - open: 795, - high: 799.5, - low: 794, - close: 799.4, - volume: 1266181 - }), - new StockGoogleItem( - { - date: `2016-09-24`, - open: 804.9, - high: 815.2, - low: 804.8, - close: 813.1, - volume: 1697514 - }), - new StockGoogleItem( - { - date: `2016-09-25`, - open: 816.7, - high: 816.7, - low: 805.1, - close: 807.7, - volume: 1576404 - }), - new StockGoogleItem( - { - date: `2016-09-26`, - open: 806.3, - high: 807, - low: 796.3, - close: 799.1, - volume: 1647733 - }), - new StockGoogleItem( - { - date: `2016-09-27`, - open: 801, - high: 803.5, - low: 791.5, - close: 795.4, - volume: 2749221 - }), - new StockGoogleItem( - { - date: `2016-09-28`, - open: 808.4, - high: 815.5, - low: 793.6, - close: 795.4, - volume: 4269902 - }), - new StockGoogleItem( - { - date: `2016-09-31`, - open: 795.5, - high: 796.9, - low: 784, - close: 784.5, - volume: 2427284 - }), - new StockGoogleItem( - { - date: `2016-10-01`, - open: 782.9, - high: 789.5, - low: 775.5, - close: 783.6, - volume: 2406356 - }), - new StockGoogleItem( - { - date: `2016-10-02`, - open: 778.2, - high: 781.6, - low: 763.5, - close: 768.7, - volume: 1918414 - }), - new StockGoogleItem( - { - date: `2016-10-03`, - open: 767.3, - high: 770, - low: 759, - close: 762.1, - volume: 1943175 - }), - new StockGoogleItem( - { - date: `2016-10-04`, - open: 750.7, - high: 770.4, - low: 750.6, - close: 762, - volume: 2134812 - }), - new StockGoogleItem( - { - date: `2016-10-07`, - open: 774.5, - high: 785.2, - low: 772.5, - close: 782.5, - volume: 1585070 - }), - new StockGoogleItem( - { - date: `2016-10-08`, - open: 783.4, - high: 795.6, - low: 780.2, - close: 790.5, - volume: 1366873 - }), - new StockGoogleItem( - { - date: `2016-10-09`, - open: 779.9, - high: 791.2, - low: 771.7, - close: 785.3, - volume: 2607121 - }), - new StockGoogleItem( - { - date: `2016-10-10`, - open: 791.2, - high: 791.2, - low: 752.2, - close: 762.6, - volume: 4745183 - }), - new StockGoogleItem( - { - date: `2016-10-11`, - open: 756.5, - high: 760.8, - low: 750.4, - close: 754, - volume: 2431815 - }), - new StockGoogleItem( - { - date: `2016-10-14`, - open: 755.6, - high: 757.9, - low: 727.5, - close: 736.1, - volume: 3654385 - }), - new StockGoogleItem( - { - date: `2016-10-15`, - open: 747, - high: 764.4, - low: 747, - close: 758.5, - volume: 2384001 - }), - new StockGoogleItem( - { - date: `2016-10-16`, - open: 755.2, - high: 766.4, - low: 750.5, - close: 764.5, - volume: 1472594 - }), - new StockGoogleItem( - { - date: `2016-10-17`, - open: 766.9, - high: 772.7, - low: 764.2, - close: 771.2, - volume: 1286961 - }), - new StockGoogleItem( - { - date: `2016-10-18`, - open: 771.4, - high: 775, - low: 760, - close: 760.5, - volume: 1547145 - }), - new StockGoogleItem( - { - date: `2016-10-21`, - open: 762.6, - high: 769.7, - low: 760.6, - close: 769.2, - volume: 1330639 - }), - new StockGoogleItem( - { - date: `2016-10-22`, - open: 772.6, - high: 777, - low: 767, - close: 768.3, - volume: 1593108 - }), - new StockGoogleItem( - { - date: `2016-10-23`, - open: 767.7, - high: 768.3, - low: 755.3, - close: 761, - volume: 1478417 - }), - new StockGoogleItem( - { - date: `2016-10-25`, - open: 764.3, - high: 765, - low: 760.5, - close: 761.7, - volume: 587421 - }), - new StockGoogleItem( - { - date: `2016-10-28`, - open: 760, - high: 779.5, - low: 759.8, - close: 768.2, - volume: 2188151 - }), - new StockGoogleItem( - { - date: `2016-10-29`, - open: 771.5, - high: 778.5, - low: 768.2, - close: 770.8, - volume: 1616618 - }), - new StockGoogleItem( - { - date: `2016-10-30`, - open: 770.1, - high: 773, - low: 754.8, - close: 758, - volume: 2392890 - }), - new StockGoogleItem( - { - date: `2016-11-01`, - open: 757.4, - high: 759.9, - low: 737, - close: 747.9, - volume: 3017947 - }), - new StockGoogleItem( - { - date: `2016-11-02`, - open: 744.6, - high: 754, - low: 743.1, - close: 750.5, - volume: 1452484 - }), - new StockGoogleItem( - { - date: `2016-11-05`, - open: 757.7, - high: 763.9, - low: 752.9, - close: 762.5, - volume: 1394223 - }), - new StockGoogleItem( - { - date: `2016-11-06`, - open: 764.7, - high: 768.8, - low: 757.3, - close: 759.1, - volume: 1690689 - }), - new StockGoogleItem( - { - date: `2016-11-07`, - open: 761, - high: 771.4, - low: 755.8, - close: 771.2, - volume: 1760966 - }), - new StockGoogleItem( - { - date: `2016-11-08`, - open: 772.5, - high: 778.2, - low: 767.2, - close: 776.4, - volume: 1488059 - }), - new StockGoogleItem( - { - date: `2016-11-09`, - open: 780, - high: 789.4, - low: 779, - close: 789.3, - volume: 1821914 - }), - new StockGoogleItem( - { - date: `2016-11-12`, - open: 785, - high: 791.3, - low: 784.4, - close: 789.3, - volume: 2104117 - }), - new StockGoogleItem( - { - date: `2016-11-13`, - open: 793.9, - high: 804.4, - low: 793.3, - close: 796.1, - volume: 2145209 - }), - new StockGoogleItem( - { - date: `2016-11-14`, - open: 797.4, - high: 804, - low: 794, - close: 797.1, - volume: 1704150 - }), - new StockGoogleItem( - { - date: `2016-11-15`, - open: 797.3, - high: 803, - low: 792.9, - close: 797.9, - volume: 1626499 - }), - new StockGoogleItem( - { - date: `2016-11-16`, - open: 800.4, - high: 800.9, - low: 790.3, - close: 790.8, - volume: 2443796 - }), - new StockGoogleItem( - { - date: `2016-11-19`, - open: 790.2, - high: 797.7, - low: 786.3, - close: 794.2, - volume: 1232087 - }), - new StockGoogleItem( - { - date: `2016-11-20`, - open: 796.8, - high: 798.6, - low: 793.3, - close: 796.4, - volume: 951014 - }), - new StockGoogleItem( - { - date: `2016-11-21`, - open: 795.8, - high: 796.7, - low: 787.1, - close: 794.6, - volume: 1211346 - }), - new StockGoogleItem( - { - date: `2016-11-22`, - open: 792.4, - high: 793.3, - low: 788.6, - close: 791.3, - volume: 972169 - }), - new StockGoogleItem( - { - date: `2016-11-23`, - open: 790.9, - high: 792.7, - low: 787.3, - close: 789.9, - volume: 623944 - }), - new StockGoogleItem( - { - date: `2016-11-27`, - open: 790.7, - high: 797.9, - low: 787.7, - close: 791.5, - volume: 789321 - }), - new StockGoogleItem( - { - date: `2016-11-28`, - open: 793.7, - high: 794.2, - low: 783.2, - close: 785, - volume: 1153824 - }), - new StockGoogleItem( - { - date: `2016-11-29`, - open: 783.3, - high: 785.9, - low: 778.9, - close: 782.8, - volume: 744272 - }), - new StockGoogleItem( - { - date: `2016-11-30`, - open: 782.8, - high: 782.8, - low: 770.4, - close: 771.8, - volume: 1769950 - }), - new StockGoogleItem( - { - date: `2017-00-03`, - open: 778.8, - high: 789.6, - low: 775.8, - close: 786.1, - volume: 1657268 - }), - new StockGoogleItem( - { - date: `2017-00-04`, - open: 788.4, - high: 791.3, - low: 783.2, - close: 786.9, - volume: 1072958 - }), - new StockGoogleItem( - { - date: `2017-00-05`, - open: 786.1, - high: 794.5, - low: 785, - close: 794, - volume: 1335167 - }), - new StockGoogleItem( - { - date: `2017-00-06`, - open: 795.3, - high: 807.9, - low: 792.2, - close: 806.1, - volume: 1640170 - }), - new StockGoogleItem( - { - date: `2017-00-09`, - open: 806.4, - high: 810, - low: 802.8, - close: 806.6, - volume: 1274645 - }), - new StockGoogleItem( - { - date: `2017-00-10`, - open: 807.9, - high: 809.1, - low: 803.5, - close: 804.8, - volume: 1176780 - }), - new StockGoogleItem( - { - date: `2017-00-11`, - open: 805, - high: 808.1, - low: 801.4, - close: 807.9, - volume: 1065936 - }), - new StockGoogleItem( - { - date: `2017-00-12`, - open: 807.1, - high: 807.4, - low: 799.2, - close: 806.4, - volume: 1353057 - }), - new StockGoogleItem( - { - date: `2017-00-13`, - open: 807.5, - high: 811.2, - low: 806.7, - close: 807.9, - volume: 1099215 - }), - new StockGoogleItem( - { - date: `2017-00-17`, - open: 807.1, - high: 807.1, - low: 800.4, - close: 804.6, - volume: 1362115 - }), - new StockGoogleItem( - { - date: `2017-00-18`, - open: 805.8, - high: 806.2, - low: 801, - close: 806.1, - volume: 1294407 - }), - new StockGoogleItem( - { - date: `2017-00-19`, - open: 805.1, - high: 809.5, - low: 801.8, - close: 802.2, - volume: 919325 - }), - new StockGoogleItem( - { - date: `2017-00-20`, - open: 806.9, - high: 806.9, - low: 801.7, - close: 805, - volume: 1670045 - }), - new StockGoogleItem( - { - date: `2017-00-23`, - open: 807.3, - high: 820.9, - low: 803.7, - close: 819.3, - volume: 1963628 - }), - new StockGoogleItem( - { - date: `2017-00-24`, - open: 822.3, - high: 825.9, - low: 817.8, - close: 823.9, - volume: 1474010 - }), - new StockGoogleItem( - { - date: `2017-00-25`, - open: 829.6, - high: 835.8, - low: 825.1, - close: 835.7, - volume: 1627304 - }), - new StockGoogleItem( - { - date: `2017-00-26`, - open: 837.8, - high: 838, - low: 827, - close: 832.1, - volume: 2973891 - }), - new StockGoogleItem( - { - date: `2017-00-27`, - open: 834.7, - high: 842, - low: 820.4, - close: 823.3, - volume: 2965771 - }), - new StockGoogleItem( - { - date: `2017-00-30`, - open: 814.7, - high: 815.8, - low: 799.8, - close: 802.3, - volume: 3246573 - }), - new StockGoogleItem( - { - date: `2017-00-31`, - open: 796.9, - high: 801.3, - low: 790.5, - close: 796.8, - volume: 2160556 - }), - new StockGoogleItem( - { - date: `2017-01-01`, - open: 799.7, - high: 801.2, - low: 791.2, - close: 795.7, - volume: 2029744 - }), - new StockGoogleItem( - { - date: `2017-01-02`, - open: 793.8, - high: 802.7, - low: 792, - close: 798.5, - volume: 1532138 - }), - new StockGoogleItem( - { - date: `2017-01-03`, - open: 803, - high: 806, - low: 800.4, - close: 801.5, - volume: 1463448 - }), - new StockGoogleItem( - { - date: `2017-01-06`, - open: 799.7, - high: 801.7, - low: 795.3, - close: 801.3, - volume: 1184483 - }), - new StockGoogleItem( - { - date: `2017-01-07`, - open: 804, - high: 810.5, - low: 801.8, - close: 807, - volume: 1241221 - }), - new StockGoogleItem( - { - date: `2017-01-08`, - open: 807, - high: 811.8, - low: 803.2, - close: 808.4, - volume: 1155990 - }), - new StockGoogleItem( - { - date: `2017-01-09`, - open: 809.5, - high: 810.7, - low: 804.5, - close: 809.6, - volume: 990391 - }), - new StockGoogleItem( - { - date: `2017-01-10`, - open: 811.7, - high: 815.3, - low: 809.8, - close: 813.7, - volume: 1134976 - }), - new StockGoogleItem( - { - date: `2017-01-13`, - open: 816, - high: 821, - low: 815.5, - close: 819.2, - volume: 1213324 - }), - new StockGoogleItem( - { - date: `2017-01-14`, - open: 819, - high: 823, - low: 816, - close: 820.5, - volume: 1054732 - }), - new StockGoogleItem( - { - date: `2017-01-15`, - open: 819.4, - high: 823, - low: 818.5, - close: 819, - volume: 1313617 - }), - new StockGoogleItem( - { - date: `2017-01-16`, - open: 819.9, - high: 824.4, - low: 819, - close: 824.2, - volume: 1287626 - }), - new StockGoogleItem( - { - date: `2017-01-17`, - open: 823, - high: 828.1, - low: 821.7, - close: 828.1, - volume: 1611039 - }), - new StockGoogleItem( - { - date: `2017-01-21`, - open: 828.7, - high: 833.5, - low: 828.4, - close: 831.7, - volume: 1262337 - }), - new StockGoogleItem( - { - date: `2017-01-22`, - open: 828.7, - high: 833.3, - low: 828.6, - close: 830.8, - volume: 987248 - }), - new StockGoogleItem( - { - date: `2017-01-23`, - open: 830.1, - high: 832.5, - low: 822.9, - close: 831.3, - volume: 1472771 - }), - new StockGoogleItem( - { - date: `2017-01-24`, - open: 827.7, - high: 829, - low: 824.2, - close: 828.6, - volume: 1392202 - }), - new StockGoogleItem( - { - date: `2017-01-27`, - open: 824.5, - high: 830.5, - low: 824, - close: 829.3, - volume: 1101466 - }), - new StockGoogleItem( - { - date: `2017-01-28`, - open: 825.6, - high: 828.5, - low: 820.2, - close: 823.2, - volume: 2260769 - }), - new StockGoogleItem( - { - date: `2017-02-01`, - open: 828.9, - high: 836.3, - low: 827.3, - close: 835.2, - volume: 1496540 - }), - new StockGoogleItem( - { - date: `2017-02-02`, - open: 833.9, - high: 834.5, - low: 829.6, - close: 830.6, - volume: 942476 - }), - new StockGoogleItem( - { - date: `2017-02-03`, - open: 830.6, - high: 831.4, - low: 825.8, - close: 829.1, - volume: 896378 - }), - new StockGoogleItem( - { - date: `2017-02-06`, - open: 827, - high: 828.9, - low: 822.4, - close: 827.8, - volume: 1109037 - }), - new StockGoogleItem( - { - date: `2017-02-07`, - open: 827.4, - high: 833.4, - low: 826.5, - close: 831.9, - volume: 1037630 - }), - new StockGoogleItem( - { - date: `2017-02-08`, - open: 833.5, - high: 838.1, - low: 831.8, - close: 835.4, - volume: 989773 - }), - new StockGoogleItem( - { - date: `2017-02-09`, - open: 836, - high: 842, - low: 834.2, - close: 838.7, - volume: 1261517 - }), - new StockGoogleItem( - { - date: `2017-02-10`, - open: 843.3, - high: 844.9, - low: 839.5, - close: 843.3, - volume: 1704024 - }), - new StockGoogleItem( - { - date: `2017-02-13`, - open: 844, - high: 848.7, - low: 843.3, - close: 845.5, - volume: 1223647 - }), - new StockGoogleItem( - { - date: `2017-02-14`, - open: 843.6, - high: 847.2, - low: 840.8, - close: 845.6, - volume: 780198 - }), - new StockGoogleItem( - { - date: `2017-02-15`, - open: 847.6, - high: 848.6, - low: 840.8, - close: 847.2, - volume: 1381474 - }), - new StockGoogleItem( - { - date: `2017-02-16`, - open: 849, - high: 850.9, - low: 846.1, - close: 848.8, - volume: 977560 - }), - new StockGoogleItem( - { - date: `2017-02-17`, - open: 851.6, - high: 853.4, - low: 847.1, - close: 852.1, - volume: 1716471 - }), - new StockGoogleItem( - { - date: `2017-02-20`, - open: 850, - high: 850.2, - low: 845.1, - close: 848.4, - volume: 1231521 - }), - new StockGoogleItem( - { - date: `2017-02-21`, - open: 851.4, - high: 853.5, - low: 829, - close: 830.5, - volume: 2463484 - }), - new StockGoogleItem( - { - date: `2017-02-22`, - open: 831.9, - high: 835.5, - low: 827.2, - close: 829.6, - volume: 1401465 - }), - new StockGoogleItem( - { - date: `2017-02-23`, - open: 821, - high: 822.6, - low: 812.3, - close: 817.6, - volume: 3487056 - }), - new StockGoogleItem( - { - date: `2017-02-24`, - open: 820.1, - high: 821.9, - low: 808.9, - close: 814.4, - volume: 1981006 - }), - new StockGoogleItem( - { - date: `2017-02-27`, - open: 807, - high: 821.6, - low: 803.4, - close: 819.5, - volume: 1894990 - }), - new StockGoogleItem( - { - date: `2017-02-28`, - open: 820.4, - high: 826, - low: 814, - close: 820.9, - volume: 1620542 - }), - new StockGoogleItem( - { - date: `2017-02-29`, - open: 825, - high: 832.8, - low: 822.4, - close: 831.4, - volume: 1786321 - }), - new StockGoogleItem( - { - date: `2017-02-30`, - open: 833.5, - high: 833.7, - low: 829, - close: 831.5, - volume: 1055339 - }), - new StockGoogleItem( - { - date: `2017-02-31`, - open: 829, - high: 831.6, - low: 827.4, - close: 829.6, - volume: 1401893 - }), - new StockGoogleItem( - { - date: `2017-03-03`, - open: 829.2, - high: 840.9, - low: 829.2, - close: 838.5, - volume: 1671503 - }), - new StockGoogleItem( - { - date: `2017-03-04`, - open: 831.4, - high: 835.2, - low: 829, - close: 834.6, - volume: 1045363 - }), - new StockGoogleItem( - { - date: `2017-03-05`, - open: 835.5, - high: 842.5, - low: 830.7, - close: 831.4, - volume: 1555328 - }), - new StockGoogleItem( - { - date: `2017-03-06`, - open: 832.4, - high: 836.4, - low: 826.5, - close: 827.9, - volume: 1254433 - }), - new StockGoogleItem( - { - date: `2017-03-07`, - open: 828, - high: 828.5, - low: 820.5, - close: 824.7, - volume: 1057253 - }), - new StockGoogleItem( - { - date: `2017-03-10`, - open: 825.4, - high: 829.4, - low: 823.8, - close: 824.7, - volume: 978905 - }), - new StockGoogleItem( - { - date: `2017-03-11`, - open: 824.7, - high: 827.4, - low: 817, - close: 823.4, - volume: 1079732 - }), - new StockGoogleItem( - { - date: `2017-03-12`, - open: 821.9, - high: 826.7, - low: 821, - close: 824.3, - volume: 900480 - }), - new StockGoogleItem( - { - date: `2017-03-13`, - open: 822.1, - high: 826.4, - low: 821.4, - close: 823.6, - volume: 1122362 - }), - new StockGoogleItem( - { - date: `2017-03-17`, - open: 825, - high: 837.8, - low: 824.5, - close: 837.2, - volume: 895015 - }), - new StockGoogleItem( - { - date: `2017-03-18`, - open: 834.2, - high: 838.9, - low: 832.7, - close: 836.8, - volume: 836722 - }), - new StockGoogleItem( - { - date: `2017-03-19`, - open: 839.8, - high: 842.2, - low: 836.3, - close: 838.2, - volume: 954330 - }), - new StockGoogleItem( - { - date: `2017-03-20`, - open: 841.4, - high: 845.2, - low: 839.3, - close: 841.6, - volume: 959031 - }), - new StockGoogleItem( - { - date: `2017-03-21`, - open: 842.9, - high: 843.9, - low: 840.6, - close: 843.2, - volume: 1323583 - }), - new StockGoogleItem( - { - date: `2017-03-24`, - open: 851.2, - high: 863.5, - low: 849.9, - close: 862.8, - volume: 1372541 - }), - new StockGoogleItem( - { - date: `2017-03-25`, - open: 865, - high: 875, - low: 862.8, - close: 872.3, - volume: 1671972 - }), - new StockGoogleItem( - { - date: `2017-03-26`, - open: 874.2, - high: 876, - low: 867.8, - close: 871.7, - volume: 1237167 - }), - new StockGoogleItem( - { - date: `2017-03-27`, - open: 873.6, - high: 875.4, - low: 870.4, - close: 874.3, - volume: 2026816 - }), - new StockGoogleItem( - { - date: `2017-03-28`, - open: 910.7, - high: 916.9, - low: 905.8, - close: 906, - volume: 3276255 - }), - new StockGoogleItem( - { - date: `2017-04-01`, - open: 901.9, - high: 915.7, - low: 901.5, - close: 912.6, - volume: 2115993 - }), - new StockGoogleItem( - { - date: `2017-04-02`, - open: 909.6, - high: 920.8, - low: 909.5, - close: 916.4, - volume: 1587219 - }), - new StockGoogleItem( - { - date: `2017-04-03`, - open: 914.9, - high: 928.1, - low: 912.5, - close: 927, - volume: 1499532 - }), - new StockGoogleItem( - { - date: `2017-04-04`, - open: 926.1, - high: 935.9, - low: 924.6, - close: 931.7, - volume: 1422144 - }), - new StockGoogleItem( - { - date: `2017-04-05`, - open: 933.5, - high: 934.9, - low: 925.2, - close: 927.1, - volume: 1911275 - }), - new StockGoogleItem( - { - date: `2017-04-08`, - open: 926.1, - high: 936.9, - low: 925.3, - close: 934.3, - volume: 1329825 - }), - new StockGoogleItem( - { - date: `2017-04-09`, - open: 937, - high: 937.5, - low: 929.5, - close: 932.2, - volume: 1581809 - }), - new StockGoogleItem( - { - date: `2017-04-10`, - open: 932, - high: 932, - low: 925.2, - close: 928.8, - volume: 1173925 - }), - new StockGoogleItem( - { - date: `2017-04-11`, - open: 925.3, - high: 932.5, - low: 923, - close: 930.6, - volume: 835386 - }), - new StockGoogleItem( - { - date: `2017-04-12`, - open: 931.5, - high: 933.4, - low: 927.9, - close: 932.2, - volume: 1050601 - }), - new StockGoogleItem( - { - date: `2017-04-15`, - open: 933, - high: 938.3, - low: 929.3, - close: 937.1, - volume: 1108496 - }), - new StockGoogleItem( - { - date: `2017-04-16`, - open: 940, - high: 943.1, - low: 937.6, - close: 943, - volume: 969479 - }), - new StockGoogleItem( - { - date: `2017-04-17`, - open: 935.7, - high: 939.3, - low: 918.1, - close: 919.6, - volume: 2362072 - }), - new StockGoogleItem( - { - date: `2017-04-18`, - open: 921, - high: 933.2, - low: 918.8, - close: 930.2, - volume: 1596897 - }), - new StockGoogleItem( - { - date: `2017-04-19`, - open: 931.5, - high: 937.8, - low: 931, - close: 934, - volume: 1393024 - }), - new StockGoogleItem( - { - date: `2017-04-22`, - open: 935, - high: 941.9, - low: 935, - close: 941.9, - volume: 1120385 - }), - new StockGoogleItem( - { - date: `2017-04-23`, - open: 947.9, - high: 951.5, - low: 942.6, - close: 948.8, - volume: 1270817 - }), - new StockGoogleItem( - { - date: `2017-04-24`, - open: 953, - high: 955.1, - low: 949.5, - close: 955, - volume: 1034199 - }), - new StockGoogleItem( - { - date: `2017-04-25`, - open: 957.3, - high: 972.6, - low: 955.5, - close: 969.5, - volume: 1660474 - }), - new StockGoogleItem( - { - date: `2017-04-26`, - open: 969.7, - high: 975, - low: 965, - close: 971.5, - volume: 1252010 - }), - new StockGoogleItem( - { - date: `2017-04-30`, - open: 970.3, - high: 976.2, - low: 969.5, - close: 975.9, - volume: 1466654 - }), - new StockGoogleItem( - { - date: `2017-04-31`, - open: 975, - high: 979.3, - low: 960.2, - close: 964.9, - volume: 2448067 - }), - new StockGoogleItem( - { - date: `2017-05-01`, - open: 969, - high: 971.5, - low: 960, - close: 967, - volume: 1410458 - }), - new StockGoogleItem( - { - date: `2017-05-02`, - open: 969.5, - high: 975.9, - low: 966, - close: 975.6, - volume: 1750955 - }), - new StockGoogleItem( - { - date: `2017-05-05`, - open: 976.5, - high: 986.9, - low: 975.1, - close: 983.7, - volume: 1252106 - }), - new StockGoogleItem( - { - date: `2017-05-06`, - open: 983.2, - high: 988.3, - low: 975.1, - close: 976.6, - volume: 1814624 - }), - new StockGoogleItem( - { - date: `2017-05-07`, - open: 979.6, - high: 984.1, - low: 975.8, - close: 981.1, - volume: 1453874 - }), - new StockGoogleItem( - { - date: `2017-05-08`, - open: 982.4, - high: 984.6, - low: 977.2, - close: 983.4, - volume: 1481916 - }), - new StockGoogleItem( - { - date: `2017-05-09`, - open: 984.5, - high: 984.5, - low: 935.6, - close: 949.8, - volume: 3309389 - }), - new StockGoogleItem( - { - date: `2017-05-12`, - open: 939.6, - high: 949.4, - low: 915.2, - close: 942.9, - volume: 3763529 - }), - new StockGoogleItem( - { - date: `2017-05-13`, - open: 951.9, - high: 960, - low: 944.1, - close: 953.4, - volume: 2013337 - }), - new StockGoogleItem( - { - date: `2017-05-14`, - open: 959.9, - high: 961.1, - low: 942.3, - close: 950.8, - volume: 1489715 - }), - new StockGoogleItem( - { - date: `2017-05-15`, - open: 934, - high: 943.3, - low: 924.4, - close: 942.3, - volume: 2133050 - }), - new StockGoogleItem( - { - date: `2017-05-16`, - open: 940, - high: 942, - low: 931.6, - close: 939.8, - volume: 3094711 - }), - new StockGoogleItem( - { - date: `2017-05-19`, - open: 950, - high: 960, - low: 949, - close: 957.4, - volume: 1533336 - }), - new StockGoogleItem( - { - date: `2017-05-20`, - open: 957.5, - high: 961.6, - low: 950, - close: 950.6, - volume: 1125990 - }), - new StockGoogleItem( - { - date: `2017-05-21`, - open: 953.6, - high: 960.1, - low: 950.8, - close: 959.5, - volume: 1202233 - }), - new StockGoogleItem( - { - date: `2017-05-22`, - open: 958.7, - high: 960.7, - low: 954.5, - close: 957.1, - volume: 941958 - }), - new StockGoogleItem( - { - date: `2017-05-23`, - open: 956.8, - high: 966, - low: 954.2, - close: 965.6, - volume: 1527856 - }), - new StockGoogleItem( - { - date: `2017-05-26`, - open: 969.9, - high: 973.3, - low: 950.8, - close: 952.3, - volume: 1598355 - }), - new StockGoogleItem( - { - date: `2017-05-27`, - open: 942.5, - high: 948.3, - low: 926.9, - close: 927.3, - volume: 2579930 - }), - new StockGoogleItem( - { - date: `2017-05-28`, - open: 929, - high: 942.8, - low: 916, - close: 940.5, - volume: 2721406 - }), - new StockGoogleItem( - { - date: `2017-05-29`, - open: 929.9, - high: 931.3, - low: 910.6, - close: 917.8, - volume: 3299176 - }), - new StockGoogleItem( - { - date: `2017-05-30`, - open: 926, - high: 926, - low: 908.3, - close: 908.7, - volume: 2090226 - }), - new StockGoogleItem( - { - date: `2017-06-03`, - open: 912.2, - high: 913.9, - low: 894.8, - close: 898.7, - volume: 1710373 - }), - new StockGoogleItem( - { - date: `2017-06-05`, - open: 901.8, - high: 914.5, - low: 898.5, - close: 911.7, - volume: 1813884 - }), - new StockGoogleItem( - { - date: `2017-06-06`, - open: 904.1, - high: 914.9, - low: 899.7, - close: 906.7, - volume: 1424503 - }), - new StockGoogleItem( - { - date: `2017-06-07`, - open: 908.9, - high: 921.5, - low: 908.9, - close: 918.6, - volume: 1637785 - }), - new StockGoogleItem( - { - date: `2017-06-10`, - open: 921.8, - high: 930.4, - low: 919.6, - close: 928.8, - volume: 1192825 - }), - new StockGoogleItem( - { - date: `2017-06-11`, - open: 929.5, - high: 931.4, - low: 922, - close: 930.1, - volume: 1113235 - }), - new StockGoogleItem( - { - date: `2017-06-12`, - open: 938.7, - high: 946.3, - low: 934.5, - close: 943.8, - volume: 1532144 - }), - new StockGoogleItem( - { - date: `2017-06-13`, - open: 946.3, - high: 954.5, - low: 943, - close: 947.2, - volume: 1294687 - }), - new StockGoogleItem( - { - date: `2017-06-14`, - open: 952, - high: 956.9, - low: 948, - close: 956, - volume: 1053774 - }), - new StockGoogleItem( - { - date: `2017-06-17`, - open: 957, - high: 960.7, - low: 949.2, - close: 953.4, - volume: 1165537 - }), - new StockGoogleItem( - { - date: `2017-06-18`, - open: 953, - high: 968, - low: 950.6, - close: 965.4, - volume: 1153964 - }), - new StockGoogleItem( - { - date: `2017-06-19`, - open: 967.8, - high: 973, - low: 964, - close: 970.9, - volume: 1224540 - }), - new StockGoogleItem( - { - date: `2017-06-20`, - open: 975, - high: 975.9, - low: 961.5, - close: 968.1, - volume: 1624463 - }), - new StockGoogleItem( - { - date: `2017-06-21`, - open: 962.3, - high: 973.2, - low: 960.1, - close: 972.9, - volume: 1711000 - }), - new StockGoogleItem( - { - date: `2017-06-24`, - open: 972.2, - high: 986.2, - low: 970.8, - close: 980.3, - volume: 3248347 - }), - new StockGoogleItem( - { - date: `2017-06-25`, - open: 953.8, - high: 959.7, - low: 945.4, - close: 950.7, - volume: 4660979 - }), - new StockGoogleItem( - { - date: `2017-06-26`, - open: 954.7, - high: 955, - low: 942.3, - close: 947.8, - volume: 2088256 - }), - new StockGoogleItem( - { - date: `2017-06-27`, - open: 951.8, - high: 951.8, - low: 920, - close: 934.1, - volume: 3212996 - }), - new StockGoogleItem( - { - date: `2017-06-28`, - open: 929.4, - high: 943.8, - low: 927.5, - close: 941.5, - volume: 1846351 - }), - new StockGoogleItem( - { - date: `2017-06-31`, - open: 941.9, - high: 943.6, - low: 926, - close: 930.5, - volume: 1970095 - }), - new StockGoogleItem( - { - date: `2017-07-01`, - open: 932.4, - high: 937.5, - low: 929.3, - close: 930.8, - volume: 1277734 - }), - new StockGoogleItem( - { - date: `2017-07-02`, - open: 928.6, - high: 932.6, - low: 916.7, - close: 930.4, - volume: 1824448 - }), - new StockGoogleItem( - { - date: `2017-07-03`, - open: 930.3, - high: 932.2, - low: 922.2, - close: 923.6, - volume: 1202512 - }), - new StockGoogleItem( - { - date: `2017-07-04`, - open: 926.8, - high: 930.3, - low: 923, - close: 928, - volume: 1082267 - }), - new StockGoogleItem( - { - date: `2017-07-07`, - open: 929.1, - high: 931.7, - low: 926.5, - close: 929.4, - volume: 1032239 - }), - new StockGoogleItem( - { - date: `2017-07-08`, - open: 927.1, - high: 935.8, - low: 925.6, - close: 926.8, - volume: 1061579 - }), - new StockGoogleItem( - { - date: `2017-07-09`, - open: 920.6, - high: 926, - low: 917.3, - close: 922.9, - volume: 1192081 - }), - new StockGoogleItem( - { - date: `2017-07-10`, - open: 917.5, - high: 919.3, - low: 906.1, - close: 907.2, - volume: 1823967 - }), - new StockGoogleItem( - { - date: `2017-07-11`, - open: 908, - high: 917.8, - low: 905.6, - close: 914.4, - volume: 1206782 - }), - new StockGoogleItem( - { - date: `2017-07-14`, - open: 922.5, - high: 924.7, - low: 918.2, - close: 922.7, - volume: 1064530 - }), - new StockGoogleItem( - { - date: `2017-07-15`, - open: 924.2, - high: 926.5, - low: 919.8, - close: 922.2, - volume: 883369 - }), - new StockGoogleItem( - { - date: `2017-07-16`, - open: 925.3, - high: 932.7, - low: 923.4, - close: 927, - volume: 1006711 - }), - new StockGoogleItem( - { - date: `2017-07-17`, - open: 925.8, - high: 926.9, - low: 911, - close: 911, - volume: 1277238 - }), - new StockGoogleItem( - { - date: `2017-07-18`, - open: 910.3, - high: 915.3, - low: 907.1, - close: 910.7, - volume: 1342689 - }), - new StockGoogleItem( - { - date: `2017-07-21`, - open: 910, - high: 913, - low: 903.4, - close: 906.7, - volume: 943441 - }), - new StockGoogleItem( - { - date: `2017-07-22`, - open: 912.7, - high: 925.9, - low: 911.5, - close: 924.7, - volume: 1166737 - }), - new StockGoogleItem( - { - date: `2017-07-23`, - open: 921.9, - high: 929.9, - low: 919.4, - close: 927, - volume: 1090248 - }), - new StockGoogleItem( - { - date: `2017-07-24`, - open: 928.7, - high: 930.8, - low: 915.5, - close: 921.3, - volume: 1270306 - }), - new StockGoogleItem( - { - date: `2017-07-25`, - open: 923.5, - high: 925.6, - low: 915.5, - close: 915.9, - volume: 1053376 - }), - new StockGoogleItem( - { - date: `2017-07-28`, - open: 916, - high: 919.2, - low: 911.9, - close: 913.8, - volume: 1086484 - }), - new StockGoogleItem( - { - date: `2017-07-29`, - open: 905.1, - high: 923.3, - low: 905, - close: 921.3, - volume: 1185564 - }), - new StockGoogleItem( - { - date: `2017-07-30`, - open: 920, - high: 930.8, - low: 919.6, - close: 929.6, - volume: 1301225 - }), - new StockGoogleItem( - { - date: `2017-07-31`, - open: 931.8, - high: 942, - low: 931.8, - close: 939.3, - volume: 1582579 - }), - new StockGoogleItem( - { - date: `2017-08-01`, - open: 941.1, - high: 942.5, - low: 935.1, - close: 937.3, - volume: 947374 - }), - new StockGoogleItem( - { - date: `2017-08-05`, - open: 933.1, - high: 937, - low: 922, - close: 928.5, - volume: 1348292 - }), - new StockGoogleItem( - { - date: `2017-08-06`, - open: 930.1, - high: 930.9, - low: 919.3, - close: 927.8, - volume: 1527650 - }), - new StockGoogleItem( - { - date: `2017-08-07`, - open: 931.7, - high: 936.4, - low: 923.6, - close: 936, - volume: 1212743 - }), - new StockGoogleItem( - { - date: `2017-08-08`, - open: 936.5, - high: 937, - low: 924.9, - close: 926.5, - volume: 1011538 - }), - new StockGoogleItem( - { - date: `2017-08-11`, - open: 934.3, - high: 938.4, - low: 926.9, - close: 929.1, - volume: 1266991 - }), - new StockGoogleItem( - { - date: `2017-08-12`, - open: 932.6, - high: 933.5, - low: 923.9, - close: 932.1, - volume: 1134397 - }), - new StockGoogleItem( - { - date: `2017-08-13`, - open: 930.7, - high: 937.3, - low: 929.9, - close: 935.1, - volume: 1102631 - }), - new StockGoogleItem( - { - date: `2017-08-14`, - open: 931.3, - high: 932.8, - low: 924, - close: 925.1, - volume: 1397644 - }), - new StockGoogleItem( - { - date: `2017-08-15`, - open: 924.7, - high: 926.5, - low: 916.4, - close: 920.3, - volume: 2505430 - }), - new StockGoogleItem( - { - date: `2017-08-18`, - open: 920, - high: 922.1, - low: 910.6, - close: 915, - volume: 1306922 - }), - new StockGoogleItem( - { - date: `2017-08-19`, - open: 917.4, - high: 922.4, - low: 912.5, - close: 921.8, - volume: 936654 - }), - new StockGoogleItem( - { - date: `2017-08-20`, - open: 923, - high: 933.9, - low: 922, - close: 931.6, - volume: 1669763 - }), - new StockGoogleItem( - { - date: `2017-08-21`, - open: 933, - high: 936.5, - low: 923.8, - close: 932.5, - volume: 1290607 - }), - new StockGoogleItem( - { - date: `2017-08-22`, - open: 927.8, - high: 934.7, - low: 926.5, - close: 928.5, - volume: 1052704 - }), - new StockGoogleItem( - { - date: `2017-08-25`, - open: 925.5, - high: 926.4, - low: 909.7, - close: 921, - volume: 1856822 - }), - new StockGoogleItem( - { - date: `2017-08-26`, - open: 923.7, - high: 930.8, - low: 921.1, - close: 924.9, - volume: 1666861 - }), - new StockGoogleItem( - { - date: `2017-08-27`, - open: 927.7, - high: 949.9, - low: 927.7, - close: 944.5, - volume: 2212600 - }), - new StockGoogleItem( - { - date: `2017-08-28`, - open: 941.4, - high: 950.7, - low: 940.5, - close: 949.5, - volume: 1020312 - }), - new StockGoogleItem( - { - date: `2017-08-29`, - open: 952, - high: 959.8, - low: 951.5, - close: 959.1, - volume: 1580994 - }), - new StockGoogleItem( - { - date: `2017-09-02`, - open: 960, - high: 962.5, - low: 947.8, - close: 953.3, - volume: 1283444 - }), - new StockGoogleItem( - { - date: `2017-09-03`, - open: 954, - high: 958, - low: 949.1, - close: 957.8, - volume: 888346 - }), - new StockGoogleItem( - { - date: `2017-09-04`, - open: 957, - high: 960.4, - low: 950.7, - close: 951.7, - volume: 952391 - }), - new StockGoogleItem( - { - date: `2017-09-05`, - open: 955.5, - high: 970.9, - low: 955.2, - close: 970, - volume: 1213816 - }), - new StockGoogleItem( - { - date: `2017-09-06`, - open: 966.7, - high: 979.5, - low: 963.4, - close: 978.9, - volume: 1173882 - }), - new StockGoogleItem( - { - date: `2017-09-09`, - open: 980, - high: 985.4, - low: 976.1, - close: 977, - volume: 891355 - }), - new StockGoogleItem( - { - date: `2017-09-10`, - open: 980, - high: 981.6, - low: 966.1, - close: 972.6, - volume: 968362 - }), - new StockGoogleItem( - { - date: `2017-09-11`, - open: 973.7, - high: 990.7, - low: 972.3, - close: 989.3, - volume: 1693274 - }), - new StockGoogleItem( - { - date: `2017-09-12`, - open: 987.5, - high: 994.1, - low: 985, - close: 987.8, - volume: 1262793 - }), - new StockGoogleItem( - { - date: `2017-09-13`, - open: 992, - high: 997.2, - low: 989, - close: 989.7, - volume: 1169777 - }), - new StockGoogleItem( - { - date: `2017-09-16`, - open: 992.1, - high: 993.9, - low: 984, - close: 992, - volume: 910543 - }), - new StockGoogleItem( - { - date: `2017-09-17`, - open: 990.3, - high: 996.4, - low: 988.6, - close: 992.2, - volume: 1290186 - }), - new StockGoogleItem( - { - date: `2017-09-18`, - open: 991.8, - high: 996.7, - low: 987, - close: 992.8, - volume: 1057581 - }), - new StockGoogleItem( - { - date: `2017-09-19`, - open: 986, - high: 988.9, - low: 978.4, - close: 984.5, - volume: 1313575 - }), - new StockGoogleItem( - { - date: `2017-09-20`, - open: 989.4, - high: 991, - low: 984.6, - close: 988.2, - volume: 1183186 - }), - new StockGoogleItem( - { - date: `2017-09-23`, - open: 989.5, - high: 989.5, - low: 966.1, - close: 968.5, - volume: 1478448 - }), - new StockGoogleItem( - { - date: `2017-09-24`, - open: 970, - high: 972.2, - low: 961, - close: 970.5, - volume: 1212153 - }), - new StockGoogleItem( - { - date: `2017-09-25`, - open: 968.4, - high: 976.1, - low: 960.5, - close: 973.3, - volume: 1211262 - }), - new StockGoogleItem( - { - date: `2017-09-26`, - open: 980, - high: 987.6, - low: 972.2, - close: 972.6, - volume: 2042149 - }), - new StockGoogleItem( - { - date: `2017-09-27`, - open: 1009.2, - high: 1048.4, - low: 1008.2, - close: 1019.3, - volume: 5167689 - }), - new StockGoogleItem( - { - date: `2017-09-30`, - open: 1014, - high: 1025, - low: 1007.5, - close: 1017.1, - volume: 2085062 - }), - new StockGoogleItem( - { - date: `2017-09-31`, - open: 1015.2, - high: 1024, - low: 1010.4, - close: 1016.6, - volume: 1331391 - }), - new StockGoogleItem( - { - date: `2017-10-01`, - open: 1017.2, - high: 1029.7, - low: 1017, - close: 1025.5, - volume: 1373444 - }), - new StockGoogleItem( - { - date: `2017-10-02`, - open: 1021.8, - high: 1028.1, - low: 1013, - close: 1025.6, - volume: 1048970 - }), - new StockGoogleItem( - { - date: `2017-10-03`, - open: 1022.1, - high: 1032.7, - low: 1020.3, - close: 1032.5, - volume: 1076350 - }), - new StockGoogleItem( - { - date: `2017-10-06`, - open: 1029, - high: 1034.9, - low: 1025, - close: 1025.9, - volume: 1125185 - }), - new StockGoogleItem( - { - date: `2017-10-07`, - open: 1027.3, - high: 1034, - low: 1025.1, - close: 1033.3, - volume: 1112331 - }), - new StockGoogleItem( - { - date: `2017-10-08`, - open: 1030.5, - high: 1043.5, - low: 1028.5, - close: 1039.8, - volume: 1088716 - }), - new StockGoogleItem( - { - date: `2017-10-09`, - open: 1034, - high: 1034, - low: 1019.7, - close: 1031.3, - volume: 1245246 - }), - new StockGoogleItem( - { - date: `2017-10-10`, - open: 1026.5, - high: 1030.8, - low: 1025.3, - close: 1028.1, - volume: 720676 - }), - new StockGoogleItem( - { - date: `2017-10-13`, - open: 1023.4, - high: 1031.6, - low: 1022.6, - close: 1025.8, - volume: 885779 - }), - new StockGoogleItem( - { - date: `2017-10-14`, - open: 1022.6, - high: 1026.8, - low: 1014.1, - close: 1026, - volume: 959222 - }), - new StockGoogleItem( - { - date: `2017-10-15`, - open: 1019.2, - high: 1024.1, - low: 1015.4, - close: 1020.9, - volume: 853992 - }), - new StockGoogleItem( - { - date: `2017-10-16`, - open: 1022.5, - high: 1035.9, - low: 1022.5, - close: 1032.5, - volume: 1129688 - }), - new StockGoogleItem( - { - date: `2017-10-17`, - open: 1034, - high: 1034.4, - low: 1017.8, - close: 1019.1, - volume: 1397064 - }), - new StockGoogleItem( - { - date: `2017-10-20`, - open: 1020.3, - high: 1022.6, - low: 1017.5, - close: 1018.4, - volume: 953470 - }), - new StockGoogleItem( - { - date: `2017-10-21`, - open: 1023.3, - high: 1035.1, - low: 1022.7, - close: 1034.5, - volume: 1096999 - }), - new StockGoogleItem( - { - date: `2017-10-22`, - open: 1035, - high: 1039.7, - low: 1031.4, - close: 1036, - volume: 746878 - }), - new StockGoogleItem( - { - date: `2017-10-24`, - open: 1035.9, - high: 1043.2, - low: 1035, - close: 1040.6, - volume: 536996 - }), - new StockGoogleItem( - { - date: `2017-10-27`, - open: 1040, - high: 1055.5, - low: 1038.4, - close: 1054.2, - volume: 1307881 - }), - new StockGoogleItem( - { - date: `2017-10-28`, - open: 1055.1, - high: 1062.4, - low: 1040, - close: 1047.4, - volume: 1424394 - }), - new StockGoogleItem( - { - date: `2017-10-29`, - open: 1042.7, - high: 1044.1, - low: 1015.6, - close: 1021.7, - volume: 2459426 - }), - new StockGoogleItem( - { - date: `2017-10-30`, - open: 1022.4, - high: 1028.5, - low: 1015, - close: 1021.4, - volume: 1724031 - }), - new StockGoogleItem( - { - date: `2017-11-01`, - open: 1015.8, - high: 1022.5, - low: 1002, - close: 1010.2, - volume: 1909566 - }), - new StockGoogleItem( - { - date: `2017-11-04`, - open: 1012.7, - high: 1016.1, - low: 995.6, - close: 998.7, - volume: 1906439 - }), - new StockGoogleItem( - { - date: `2017-11-05`, - open: 995.9, - high: 1020.6, - low: 988.3, - close: 1005.1, - volume: 2067318 - }), - new StockGoogleItem( - { - date: `2017-11-06`, - open: 1001.5, - high: 1025, - low: 1001.1, - close: 1018.4, - volume: 1271964 - }), - new StockGoogleItem( - { - date: `2017-11-07`, - open: 1020.4, - high: 1034.2, - low: 1018.1, - close: 1030.9, - volume: 1458242 - }), - new StockGoogleItem( - { - date: `2017-11-08`, - open: 1037.5, - high: 1042, - low: 1032.5, - close: 1037, - volume: 1290774 - }), - new StockGoogleItem( - { - date: `2017-11-11`, - open: 1035.5, - high: 1043.8, - low: 1032, - close: 1041.1, - volume: 1192838 - }), - new StockGoogleItem( - { - date: `2017-11-12`, - open: 1039.6, - high: 1050.3, - low: 1033.7, - close: 1040.5, - volume: 1279659 - }), - new StockGoogleItem( - { - date: `2017-11-13`, - open: 1046.1, - high: 1046.7, - low: 1038.4, - close: 1040.6, - volume: 1282677 - }), - new StockGoogleItem( - { - date: `2017-11-14`, - open: 1045, - high: 1058.5, - low: 1043.1, - close: 1049.2, - volume: 1558835 - }), - new StockGoogleItem( - { - date: `2017-11-15`, - open: 1054.6, - high: 1067.6, - low: 1049.5, - close: 1064.2, - volume: 3275931 - }), - new StockGoogleItem( - { - date: `2017-11-18`, - open: 1066.1, - high: 1078.5, - low: 1062, - close: 1077.1, - volume: 1554552 - }), - new StockGoogleItem( - { - date: `2017-11-19`, - open: 1075.2, - high: 1076.8, - low: 1063.5, - close: 1070.7, - volume: 1338725 - }), - new StockGoogleItem( - { - date: `2017-11-20`, - open: 1071.8, - high: 1073.4, - low: 1061.5, - close: 1065, - volume: 1268582 - }), - new StockGoogleItem( - { - date: `2017-11-21`, - open: 1065, - high: 1069.3, - low: 1061.8, - close: 1063.6, - volume: 995703 - }), - new StockGoogleItem( - { - date: `2017-11-22`, - open: 1061.1, - high: 1064.2, - low: 1059.4, - close: 1060.1, - volume: 755095 - }), - new StockGoogleItem( - { - date: `2017-11-26`, - open: 1058.1, - high: 1060.1, - low: 1050.2, - close: 1056.7, - volume: 761237 - }), - new StockGoogleItem( - { - date: `2017-11-27`, - open: 1057.4, - high: 1058.4, - low: 1048, - close: 1049.4, - volume: 1271911 - }), - new StockGoogleItem( - { - date: `2017-11-28`, - open: 1051.6, - high: 1054.8, - low: 1044.8, - close: 1048.1, - volume: 837121 - }), - new StockGoogleItem( - { - date: `2017-11-29`, - open: 1046.7, - high: 1049.7, - low: 1044.9, - close: 1046.4, - volume: 887511 - }), - new StockGoogleItem( - { - date: `2018-00-02`, - open: 1048.3, - high: 1066.9, - low: 1045.2, - close: 1065, - volume: 1237564 - }), - new StockGoogleItem( - { - date: `2018-00-03`, - open: 1064.3, - high: 1086.3, - low: 1063.2, - close: 1082.5, - volume: 1430170 - }), - new StockGoogleItem( - { - date: `2018-00-04`, - open: 1088, - high: 1093.6, - low: 1084, - close: 1086.4, - volume: 1004605 - }), - new StockGoogleItem( - { - date: `2018-00-05`, - open: 1094, - high: 1104.3, - low: 1092, - close: 1102.2, - volume: 1279123 - }), - new StockGoogleItem( - { - date: `2018-00-08`, - open: 1102.2, - high: 1111.3, - low: 1101.6, - close: 1106.9, - volume: 1047603 - }), - new StockGoogleItem( - { - date: `2018-00-09`, - open: 1109.4, - high: 1110.6, - low: 1101.2, - close: 1106.3, - volume: 902541 - }), - new StockGoogleItem( - { - date: `2018-00-10`, - open: 1097.1, - high: 1104.6, - low: 1096.1, - close: 1102.6, - volume: 1042793 - }), - new StockGoogleItem( - { - date: `2018-00-11`, - open: 1106.3, - high: 1106.5, - low: 1099.6, - close: 1105.5, - volume: 978292 - }), - new StockGoogleItem( - { - date: `2018-00-12`, - open: 1102.4, - high: 1124.3, - low: 1101.2, - close: 1122.3, - volume: 1720533 - }), - new StockGoogleItem( - { - date: `2018-00-16`, - open: 1132.5, - high: 1139.9, - low: 1117.8, - close: 1121.8, - volume: 1575261 - }), - new StockGoogleItem( - { - date: `2018-00-17`, - open: 1126.2, - high: 1132.6, - low: 1117, - close: 1132, - volume: 1202639 - }), - new StockGoogleItem( - { - date: `2018-00-18`, - open: 1131.4, - high: 1132.5, - low: 1117.5, - close: 1129.8, - volume: 1198234 - }), - new StockGoogleItem( - { - date: `2018-00-19`, - open: 1131.8, - high: 1137.9, - low: 1128.3, - close: 1137.5, - volume: 1778229 - }), - new StockGoogleItem( - { - date: `2018-00-22`, - open: 1137.5, - high: 1159.9, - low: 1135.1, - close: 1155.8, - volume: 1617975 - }), - new StockGoogleItem( - { - date: `2018-00-23`, - open: 1159.8, - high: 1171.6, - low: 1158.8, - close: 1170, - volume: 1333056 - }), - new StockGoogleItem( - { - date: `2018-00-24`, - open: 1177.3, - high: 1179.9, - low: 1161, - close: 1164.2, - volume: 1416625 - }), - new StockGoogleItem( - { - date: `2018-00-25`, - open: 1172.5, - high: 1175.9, - low: 1162.8, - close: 1170.4, - volume: 1480540 - }), - new StockGoogleItem( - { - date: `2018-00-26`, - open: 1175.1, - high: 1175.8, - low: 1158.1, - close: 1175.8, - volume: 2018755 - }), - new StockGoogleItem( - { - date: `2018-00-29`, - open: 1176.5, - high: 1186.9, - low: 1172, - close: 1175.6, - volume: 1378913 - }), - new StockGoogleItem( - { - date: `2018-00-30`, - open: 1167.8, - high: 1176.5, - low: 1163.5, - close: 1163.7, - volume: 1556346 - }), - new StockGoogleItem( - { - date: `2018-00-31`, - open: 1170.6, - high: 1173, - low: 1159.1, - close: 1169.9, - volume: 1538688 - }), - ]; - super(...newItems.slice(0)); - } - } -} +export class StockItem { + public open?: number; + public close?: number; + public high?: number; + public low?: number; + public volume?: number; + + public date?: Date; + + } + //end data \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/app.component.ts b/samples/charts/financial-chart/data-legend-styling-props/src/app.component.ts index d472b3bfb..513efe898 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/src/app.component.ts +++ b/samples/charts/financial-chart/data-legend-styling-props/src/app.component.ts @@ -1,5 +1,5 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; -import { StockGoogleItem, StockGoogle } from './StockGoogle'; +import { StockGoogle } from './StockGoogle'; import { IgxDataLegendComponent, IgxFinancialChartComponent } from 'igniteui-angular-charts'; @Component({ diff --git a/samples/charts/financial-chart/data-legend/src/MultipleStocks.ts b/samples/charts/financial-chart/data-legend/src/MultipleStocks.ts index 3688676b4..ca994ac34 100644 --- a/samples/charts/financial-chart/data-legend/src/MultipleStocks.ts +++ b/samples/charts/financial-chart/data-legend/src/MultipleStocks.ts @@ -80,7 +80,7 @@ export class MultipleStocks extends Array> { for (let json of jsonData) { let parts = json.date.split("-"); // "2020-01-01" let item = new StockItem(); - item.date = new Date(parts[0], parts[1], parts[2]); + item.date = new Date(parts[0], parts[1], parts[2],13,0,0); item.open = json.open; item.high = json.high; item.low = json.low; diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/MultipleStocks.ts b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/MultipleStocks.ts index 3688676b4..ca994ac34 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/MultipleStocks.ts +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/MultipleStocks.ts @@ -80,7 +80,7 @@ export class MultipleStocks extends Array> { for (let json of jsonData) { let parts = json.date.split("-"); // "2020-01-01" let item = new StockItem(); - item.date = new Date(parts[0], parts[1], parts[2]); + item.date = new Date(parts[0], parts[1], parts[2],13,0,0); item.open = json.open; item.high = json.high; item.low = json.low; diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/src/StockGoogle.ts b/samples/charts/financial-chart/data-tooltip-styling-props/src/StockGoogle.ts index efd806727..f482695fe 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/src/StockGoogle.ts +++ b/samples/charts/financial-chart/data-tooltip-styling-props/src/StockGoogle.ts @@ -1,8727 +1,1000 @@ -export class StockGoogleItem { - public constructor(init: Partial) { - Object.assign(this, init); - } +//begin data +export class StockGoogle extends Array { - public date: string; - public open: number; - public high: number; - public low: number; - public close: number; - public volume: number; + constructor(){ + super(); + let jsonData = [ + { "Date": "2014-03-01", "Open": 559.6, "High": 568.2, "Low": 558.4, "Close": 566.9, "Volume": 2182626 }, + { "Date": "2014-03-02", "Open": 562.4, "High": 571.8, "Low": 561.4, "Close": 567.0, "Volume": 2088804 }, + { "Date": "2014-03-03", "Open": 569.9, "High": 587.3, "Low": 564.1, "Close": 569.7, "Volume": 5087530 }, + { "Date": "2014-03-04", "Open": 574.6, "High": 577.8, "Low": 543.0, "Close": 543.1, "Volume": 6377658 }, + { "Date": "2014-03-07", "Open": 540.7, "High": 548.5, "Low": 527.1, "Close": 538.1, "Volume": 4389569 }, + { "Date": "2014-03-08", "Open": 542.6, "High": 555.0, "Low": 541.6, "Close": 554.9, "Volume": 3152406 }, + { "Date": "2014-03-09", "Open": 559.6, "High": 565.4, "Low": 553.0, "Close": 564.1, "Volume": 3324742 }, + { "Date": "2014-03-10", "Open": 565.0, "High": 565.0, "Low": 539.9, "Close": 541.0, "Volume": 4027743 }, + { "Date": "2014-03-11", "Open": 532.5, "High": 540.0, "Low": 526.5, "Close": 530.6, "Volume": 3916171 }, + { "Date": "2014-03-14", "Open": 538.3, "High": 544.1, "Low": 529.6, "Close": 532.5, "Volume": 2568020 }, + { "Date": "2014-03-15", "Open": 536.8, "High": 538.5, "Low": 518.5, "Close": 536.4, "Volume": 3847453 }, + { "Date": "2014-03-16", "Open": 543.0, "High": 557.0, "Low": 540.0, "Close": 556.5, "Volume": 4879889 }, + { "Date": "2014-03-17", "Open": 548.8, "High": 549.5, "Low": 531.1, "Close": 536.1, "Volume": 6795393 }, + { "Date": "2014-03-21", "Open": 536.1, "High": 536.7, "Low": 525.6, "Close": 528.6, "Volume": 2561214 }, + { "Date": "2014-03-22", "Open": 528.6, "High": 537.2, "Low": 527.5, "Close": 534.8, "Volume": 2359421 }, + { "Date": "2014-03-23", "Open": 533.8, "High": 533.9, "Low": 526.3, "Close": 526.9, "Volume": 2051066 }, + { "Date": "2014-03-24", "Open": 530.1, "High": 531.6, "Low": 522.1, "Close": 525.2, "Volume": 1881965 }, + { "Date": "2014-03-25", "Open": 522.5, "High": 524.7, "Low": 515.4, "Close": 516.2, "Volume": 2097264 }, + { "Date": "2014-03-28", "Open": 517.2, "High": 518.6, "Low": 502.8, "Close": 517.1, "Volume": 3326429 }, + { "Date": "2014-03-29", "Open": 516.9, "High": 529.5, "Low": 516.3, "Close": 527.7, "Volume": 2692489 }, + { "Date": "2014-03-30", "Open": 527.6, "High": 528.0, "Low": 522.5, "Close": 526.7, "Volume": 1746904 }, + { "Date": "2014-04-01", "Open": 527.1, "High": 532.9, "Low": 523.9, "Close": 531.4, "Volume": 1900432 }, + { "Date": "2014-04-02", "Open": 533.8, "High": 534.0, "Low": 525.6, "Close": 527.9, "Volume": 1685042 }, + { "Date": "2014-04-05", "Open": 524.8, "High": 528.9, "Low": 521.3, "Close": 527.8, "Volume": 1021408 }, + { "Date": "2014-04-06", "Open": 525.2, "High": 526.8, "Low": 515.1, "Close": 515.1, "Volume": 1684381 }, + { "Date": "2014-04-07", "Open": 515.8, "High": 516.7, "Low": 503.3, "Close": 510.0, "Volume": 3216077 }, + { "Date": "2014-04-08", "Open": 508.5, "High": 517.2, "Low": 506.4, "Close": 511.0, "Volume": 2016131 }, + { "Date": "2014-04-09", "Open": 510.8, "High": 519.9, "Low": 504.2, "Close": 518.7, "Volume": 2432783 }, + { "Date": "2014-04-12", "Open": 523.5, "High": 530.2, "Low": 519.0, "Close": 529.9, "Volume": 1908392 }, + { "Date": "2014-04-13", "Open": 530.9, "High": 536.1, "Low": 529.5, "Close": 533.1, "Volume": 1648907 }, + { "Date": "2014-04-14", "Open": 533.0, "High": 533.0, "Low": 525.3, "Close": 526.6, "Volume": 1191863 }, + { "Date": "2014-04-15", "Open": 525.7, "High": 525.9, "Low": 517.4, "Close": 520.0, "Volume": 1703758 }, + { "Date": "2014-04-16", "Open": 521.4, "High": 521.8, "Low": 515.4, "Close": 520.6, "Volume": 1481688 }, + { "Date": "2014-04-19", "Open": 519.7, "High": 529.8, "Low": 517.6, "Close": 528.9, "Volume": 1276362 }, + { "Date": "2014-04-20", "Open": 529.7, "High": 536.2, "Low": 526.3, "Close": 529.8, "Volume": 1780113 }, + { "Date": "2014-04-21", "Open": 532.9, "High": 539.2, "Low": 531.9, "Close": 538.9, "Volume": 1193389 }, + { "Date": "2014-04-22", "Open": 541.1, "High": 547.6, "Low": 540.8, "Close": 545.1, "Volume": 1611837 }, + { "Date": "2014-04-23", "Open": 547.3, "High": 553.6, "Low": 543.7, "Close": 552.7, "Volume": 1929632 }, + { "Date": "2014-04-27", "Open": 556.0, "High": 566.0, "Low": 554.4, "Close": 566.0, "Volume": 2100298 }, + { "Date": "2014-04-28", "Open": 564.6, "High": 567.8, "Low": 561.0, "Close": 561.7, "Volume": 1647717 }, + { "Date": "2014-04-29", "Open": 563.4, "High": 564.0, "Low": 558.7, "Close": 560.1, "Volume": 1350657 }, + { "Date": "2014-04-30", "Open": 560.8, "High": 561.4, "Low": 555.9, "Close": 559.9, "Volume": 1766794 }, + { "Date": "2014-05-02", "Open": 560.7, "High": 560.9, "Low": 545.7, "Close": 553.9, "Volume": 1434989 }, + { "Date": "2014-05-03", "Open": 551.0, "High": 552.3, "Low": 542.5, "Close": 544.9, "Volume": 1861921 }, + { "Date": "2014-05-04", "Open": 541.5, "High": 548.6, "Low": 538.8, "Close": 544.7, "Volume": 1812084 }, + { "Date": "2014-05-05", "Open": 546.4, "High": 555.0, "Low": 544.5, "Close": 553.9, "Volume": 1684886 }, + { "Date": "2014-05-06", "Open": 558.1, "High": 558.1, "Low": 548.9, "Close": 556.3, "Volume": 1732592 }, + { "Date": "2014-05-09", "Open": 557.1, "High": 562.9, "Low": 556.0, "Close": 562.1, "Volume": 1463676 }, + { "Date": "2014-05-10", "Open": 560.5, "High": 563.6, "Low": 557.9, "Close": 560.5, "Volume": 1349444 }, + { "Date": "2014-05-11", "Open": 558.0, "High": 559.9, "Low": 555.0, "Close": 558.8, "Volume": 1097380 }, + { "Date": "2014-05-12", "Open": 557.3, "High": 558.0, "Low": 548.5, "Close": 551.4, "Volume": 1457104 }, + { "Date": "2014-05-13", "Open": 552.3, "High": 552.3, "Low": 545.6, "Close": 551.8, "Volume": 1217176 }, + { "Date": "2014-05-16", "Open": 549.3, "High": 549.6, "Low": 541.5, "Close": 544.3, "Volume": 1704027 }, + { "Date": "2014-05-17", "Open": 544.2, "High": 545.3, "Low": 539.3, "Close": 543.0, "Volume": 1445878 }, + { "Date": "2014-05-18", "Open": 544.9, "High": 553.6, "Low": 544.0, "Close": 553.4, "Volume": 1737343 }, + { "Date": "2014-05-19", "Open": 554.2, "High": 555.0, "Low": 548.5, "Close": 554.9, "Volume": 2451341 }, + { "Date": "2014-05-20", "Open": 556.9, "High": 557.6, "Low": 550.4, "Close": 556.4, "Volume": 4496962 }, + { "Date": "2014-05-23", "Open": 555.1, "High": 565.0, "Low": 554.3, "Close": 565.0, "Volume": 1534659 }, + { "Date": "2014-05-24", "Open": 565.2, "High": 572.6, "Low": 561.0, "Close": 564.6, "Volume": 2201789 }, + { "Date": "2014-05-25", "Open": 565.3, "High": 580.0, "Low": 565.2, "Close": 578.6, "Volume": 1964447 }, + { "Date": "2014-05-26", "Open": 581.0, "High": 582.5, "Low": 571.9, "Close": 576.0, "Volume": 1737210 }, + { "Date": "2014-05-27", "Open": 577.2, "High": 579.9, "Low": 573.8, "Close": 577.2, "Volume": 2231174 }, + { "Date": "2014-05-30", "Open": 578.7, "High": 579.6, "Low": 574.8, "Close": 575.3, "Volume": 1310909 }, + { "Date": "2014-06-01", "Open": 578.3, "High": 584.4, "Low": 576.6, "Close": 582.7, "Volume": 1446309 }, + { "Date": "2014-06-02", "Open": 583.4, "High": 585.4, "Low": 580.4, "Close": 582.3, "Volume": 1054936 }, + { "Date": "2014-06-03", "Open": 583.4, "High": 585.0, "Low": 580.9, "Close": 584.7, "Volume": 712210 }, + { "Date": "2014-06-07", "Open": 583.8, "High": 586.4, "Low": 579.6, "Close": 582.3, "Volume": 1061833 }, + { "Date": "2014-06-08", "Open": 577.7, "High": 579.5, "Low": 566.1, "Close": 571.1, "Volume": 1908647 }, + { "Date": "2014-06-09", "Open": 571.6, "High": 576.7, "Low": 569.4, "Close": 576.1, "Volume": 1113907 }, + { "Date": "2014-06-10", "Open": 565.9, "High": 576.6, "Low": 565.0, "Close": 571.1, "Volume": 1353317 }, + { "Date": "2014-06-11", "Open": 571.9, "High": 580.9, "Low": 571.4, "Close": 579.2, "Volume": 1617569 }, + { "Date": "2014-06-14", "Open": 582.6, "High": 585.2, "Low": 578.0, "Close": 584.9, "Volume": 1852290 }, + { "Date": "2014-06-15", "Open": 585.7, "High": 585.8, "Low": 576.6, "Close": 584.8, "Volume": 1618815 }, + { "Date": "2014-06-16", "Open": 588.0, "High": 588.4, "Low": 582.2, "Close": 582.7, "Volume": 1394560 }, + { "Date": "2014-06-17", "Open": 579.5, "High": 581.0, "Low": 568.6, "Close": 573.7, "Volume": 3015475 }, + { "Date": "2014-06-18", "Open": 593.0, "High": 596.8, "Low": 582.0, "Close": 595.1, "Volume": 4006389 }, + { "Date": "2014-06-21", "Open": 591.8, "High": 594.4, "Low": 585.2, "Close": 589.5, "Volume": 2060334 }, + { "Date": "2014-06-22", "Open": 590.7, "High": 599.6, "Low": 590.6, "Close": 594.7, "Volume": 1694787 }, + { "Date": "2014-06-23", "Open": 593.2, "High": 597.9, "Low": 592.5, "Close": 596.0, "Volume": 1229846 }, + { "Date": "2014-06-24", "Open": 596.5, "High": 599.5, "Low": 591.8, "Close": 593.4, "Volume": 1033341 }, + { "Date": "2014-06-25", "Open": 590.4, "High": 591.9, "Low": 587.0, "Close": 589.0, "Volume": 932724 }, + { "Date": "2014-06-28", "Open": 588.1, "High": 592.5, "Low": 584.8, "Close": 590.6, "Volume": 984161 }, + { "Date": "2014-06-29", "Open": 588.8, "High": 589.7, "Low": 583.5, "Close": 585.6, "Volume": 1346647 }, + { "Date": "2014-06-30", "Open": 586.5, "High": 589.5, "Low": 584.0, "Close": 587.4, "Volume": 1013932 }, + { "Date": "2014-06-31", "Open": 580.6, "High": 583.6, "Low": 570.0, "Close": 571.6, "Volume": 2099516 }, + { "Date": "2014-07-01", "Open": 570.4, "High": 576.0, "Low": 562.9, "Close": 566.1, "Volume": 1950171 }, + { "Date": "2014-07-04", "Open": 569.0, "High": 575.4, "Low": 564.1, "Close": 573.1, "Volume": 1427169 }, + { "Date": "2014-07-05", "Open": 570.0, "High": 572.0, "Low": 562.6, "Close": 565.1, "Volume": 1556685 }, + { "Date": "2014-07-06", "Open": 561.8, "High": 570.7, "Low": 560.0, "Close": 566.4, "Volume": 1330877 }, + { "Date": "2014-07-07", "Open": 568.0, "High": 569.9, "Low": 561.1, "Close": 563.4, "Volume": 1108900 }, + { "Date": "2014-07-08", "Open": 563.6, "High": 570.3, "Low": 560.4, "Close": 568.8, "Volume": 1492491 }, + { "Date": "2014-07-11", "Open": 570.0, "High": 570.5, "Low": 566.0, "Close": 567.9, "Volume": 1215968 }, + { "Date": "2014-07-12", "Open": 564.5, "High": 565.9, "Low": 560.9, "Close": 562.7, "Volume": 1537758 }, + { "Date": "2014-07-13", "Open": 567.3, "High": 575.0, "Low": 565.8, "Close": 574.8, "Volume": 1437922 }, + { "Date": "2014-07-14", "Open": 576.2, "High": 577.9, "Low": 570.9, "Close": 574.6, "Volume": 982926 }, + { "Date": "2014-07-15", "Open": 577.9, "High": 579.4, "Low": 570.5, "Close": 573.5, "Volume": 1517056 }, + { "Date": "2014-07-18", "Open": 576.1, "High": 584.5, "Low": 576.0, "Close": 582.2, "Volume": 1282531 }, + { "Date": "2014-07-19", "Open": 585.0, "High": 587.3, "Low": 584.0, "Close": 586.9, "Volume": 979298 }, + { "Date": "2014-07-20", "Open": 585.9, "High": 586.7, "Low": 582.6, "Close": 584.5, "Volume": 1034779 }, + { "Date": "2014-07-21", "Open": 583.8, "High": 584.5, "Low": 581.1, "Close": 583.4, "Volume": 912854 }, + { "Date": "2014-07-22", "Open": 583.6, "High": 585.2, "Low": 580.6, "Close": 582.6, "Volume": 789484 }, + { "Date": "2014-07-25", "Open": 584.7, "High": 585.0, "Low": 579.0, "Close": 580.2, "Volume": 1358810 }, + { "Date": "2014-07-26", "Open": 581.3, "High": 581.8, "Low": 576.6, "Close": 577.9, "Volume": 1635465 }, + { "Date": "2014-07-27", "Open": 577.3, "High": 578.5, "Low": 570.1, "Close": 571.0, "Volume": 1700161 }, + { "Date": "2014-07-28", "Open": 569.6, "High": 573.3, "Low": 567.1, "Close": 569.2, "Volume": 1295963 }, + { "Date": "2014-07-29", "Open": 571.3, "High": 572.0, "Low": 567.1, "Close": 571.6, "Volume": 1081231 }, + { "Date": "2014-08-02", "Open": 571.9, "High": 577.8, "Low": 571.2, "Close": 577.3, "Volume": 1576830 }, + { "Date": "2014-08-03", "Open": 580.0, "High": 583.0, "Low": 575.0, "Close": 577.9, "Volume": 1214586 }, + { "Date": "2014-08-04", "Open": 580.0, "High": 586.0, "Low": 579.2, "Close": 582.0, "Volume": 1459956 }, + { "Date": "2014-08-05", "Open": 584.0, "High": 586.5, "Low": 582.0, "Close": 586.1, "Volume": 1629477 }, + { "Date": "2014-08-08", "Open": 586.6, "High": 591.8, "Low": 586.3, "Close": 589.7, "Volume": 1429101 }, + { "Date": "2014-08-09", "Open": 588.9, "High": 589.0, "Low": 580.0, "Close": 581.0, "Volume": 1286722 }, + { "Date": "2014-08-10", "Open": 581.5, "High": 583.5, "Low": 576.9, "Close": 583.1, "Volume": 975145 }, + { "Date": "2014-08-11", "Open": 580.4, "High": 581.8, "Low": 576.3, "Close": 581.4, "Volume": 1217721 }, + { "Date": "2014-08-12", "Open": 581.0, "High": 581.6, "Low": 574.5, "Close": 575.6, "Volume": 1597677 }, + { "Date": "2014-08-15", "Open": 572.9, "High": 575.0, "Low": 568.2, "Close": 573.1, "Volume": 1596224 }, + { "Date": "2014-08-16", "Open": 572.8, "High": 581.5, "Low": 572.7, "Close": 580.0, "Volume": 1478306 }, + { "Date": "2014-08-17", "Open": 580.0, "High": 587.5, "Low": 578.8, "Close": 584.8, "Volume": 1690994 }, + { "Date": "2014-08-18", "Open": 587.0, "High": 589.5, "Low": 585.0, "Close": 589.3, "Volume": 1442012 }, + { "Date": "2014-08-19", "Open": 591.5, "High": 596.5, "Low": 589.5, "Close": 596.1, "Volume": 3727045 }, + { "Date": "2014-08-22", "Open": 593.8, "High": 594.0, "Low": 583.5, "Close": 587.4, "Volume": 1687710 }, + { "Date": "2014-08-23", "Open": 586.9, "High": 586.9, "Low": 581.0, "Close": 581.1, "Volume": 1467703 }, + { "Date": "2014-08-24", "Open": 581.5, "High": 589.6, "Low": 580.5, "Close": 588.0, "Volume": 1724537 }, + { "Date": "2014-08-25", "Open": 587.5, "High": 588.0, "Low": 574.2, "Close": 575.1, "Volume": 1925350 }, + { "Date": "2014-08-26", "Open": 576.1, "High": 579.3, "Low": 574.7, "Close": 577.1, "Volume": 1439807 }, + { "Date": "2014-08-29", "Open": 571.8, "High": 578.2, "Low": 571.2, "Close": 576.4, "Volume": 1281204 }, + { "Date": "2014-08-30", "Open": 576.9, "High": 579.9, "Low": 572.9, "Close": 577.4, "Volume": 1618437 }, + { "Date": "2014-09-01", "Open": 576.0, "High": 577.6, "Low": 567.0, "Close": 568.3, "Volume": 1445027 }, + { "Date": "2014-09-02", "Open": 567.3, "High": 571.9, "Low": 563.3, "Close": 570.1, "Volume": 1175307 }, + { "Date": "2014-09-03", "Open": 573.0, "High": 577.2, "Low": 572.5, "Close": 575.3, "Volume": 1138636 }, + { "Date": "2014-09-06", "Open": 578.8, "High": 581.0, "Low": 574.4, "Close": 577.4, "Volume": 1211320 }, + { "Date": "2014-09-07", "Open": 574.4, "High": 575.3, "Low": 563.7, "Close": 563.7, "Volume": 1906427 }, + { "Date": "2014-09-08", "Open": 565.6, "High": 573.9, "Low": 557.5, "Close": 572.5, "Volume": 1987888 }, + { "Date": "2014-09-09", "Open": 571.2, "High": 571.5, "Low": 559.1, "Close": 560.9, "Volume": 2519693 }, + { "Date": "2014-09-10", "Open": 557.7, "High": 565.1, "Low": 544.0, "Close": 544.5, "Volume": 3078634 }, + { "Date": "2014-09-13", "Open": 545.0, "High": 549.5, "Low": 533.1, "Close": 533.2, "Volume": 2578676 }, + { "Date": "2014-09-14", "Open": 538.9, "High": 547.2, "Low": 533.2, "Close": 537.9, "Volume": 2217230 }, + { "Date": "2014-09-15", "Open": 531.0, "High": 532.8, "Low": 518.3, "Close": 530.0, "Volume": 3712536 }, + { "Date": "2014-09-16", "Open": 519.0, "High": 529.4, "Low": 515.0, "Close": 524.5, "Volume": 3698423 }, + { "Date": "2014-09-17", "Open": 527.3, "High": 531.0, "Low": 508.5, "Close": 511.2, "Volume": 5530674 }, + { "Date": "2014-09-20", "Open": 509.4, "High": 521.8, "Low": 508.1, "Close": 520.8, "Volume": 2605505 }, + { "Date": "2014-09-21", "Open": 525.2, "High": 526.8, "Low": 519.1, "Close": 526.5, "Volume": 2332531 }, + { "Date": "2014-09-22", "Open": 529.9, "High": 539.8, "Low": 528.8, "Close": 532.7, "Volume": 2917183 }, + { "Date": "2014-09-23", "Open": 539.3, "High": 547.2, "Low": 535.9, "Close": 544.0, "Volume": 2345296 }, + { "Date": "2014-09-24", "Open": 544.4, "High": 544.9, "Low": 535.8, "Close": 539.8, "Volume": 1972047 }, + { "Date": "2014-09-27", "Open": 537.0, "High": 544.4, "Low": 537.0, "Close": 540.8, "Volume": 1184973 }, + { "Date": "2014-09-28", "Open": 543.0, "High": 549.0, "Low": 541.6, "Close": 548.9, "Volume": 1273372 }, + { "Date": "2014-09-29", "Open": 550.0, "High": 554.2, "Low": 547.0, "Close": 549.3, "Volume": 1767107 }, + { "Date": "2014-09-30", "Open": 549.0, "High": 552.8, "Low": 543.5, "Close": 550.3, "Volume": 1451667 }, + { "Date": "2014-09-31", "Open": 559.4, "High": 559.6, "Low": 554.8, "Close": 559.1, "Volume": 2032887 }, + { "Date": "2014-10-03", "Open": 555.5, "High": 557.9, "Low": 553.2, "Close": 555.2, "Volume": 1378511 }, + { "Date": "2014-10-04", "Open": 553.0, "High": 555.5, "Low": 549.3, "Close": 554.1, "Volume": 1240761 }, + { "Date": "2014-10-05", "Open": 556.8, "High": 556.8, "Low": 544.0, "Close": 545.9, "Volume": 2026740 }, + { "Date": "2014-10-06", "Open": 545.5, "High": 546.9, "Low": 541.0, "Close": 542.0, "Volume": 1329604 }, + { "Date": "2014-10-07", "Open": 546.2, "High": 546.2, "Low": 538.7, "Close": 541.0, "Volume": 1629259 }, + { "Date": "2014-10-10", "Open": 541.5, "High": 549.6, "Low": 541.0, "Close": 547.5, "Volume": 1131546 }, + { "Date": "2014-10-11", "Open": 548.5, "High": 551.9, "Low": 546.3, "Close": 550.3, "Volume": 964866 }, + { "Date": "2014-10-12", "Open": 550.4, "High": 550.5, "Low": 545.2, "Close": 547.3, "Volume": 1126594 }, + { "Date": "2014-10-13", "Open": 549.8, "High": 549.8, "Low": 543.5, "Close": 545.4, "Volume": 1335719 }, + { "Date": "2014-10-14", "Open": 546.7, "High": 546.7, "Low": 542.1, "Close": 544.4, "Volume": 1285991 }, + { "Date": "2014-10-17", "Open": 543.6, "High": 543.8, "Low": 534.1, "Close": 536.5, "Volume": 1721282 }, + { "Date": "2014-10-18", "Open": 537.5, "High": 541.9, "Low": 534.2, "Close": 535.0, "Volume": 1957664 }, + { "Date": "2014-10-19", "Open": 535.0, "High": 538.2, "Low": 530.1, "Close": 537.0, "Volume": 1388440 }, + { "Date": "2014-10-20", "Open": 531.3, "High": 535.1, "Low": 531.1, "Close": 534.8, "Volume": 1559131 }, + { "Date": "2014-10-21", "Open": 541.6, "High": 542.1, "Low": 536.6, "Close": 537.5, "Volume": 2218249 }, + { "Date": "2014-10-24", "Open": 537.6, "High": 542.7, "Low": 535.6, "Close": 539.3, "Volume": 1701682 }, + { "Date": "2014-10-25", "Open": 539.0, "High": 544.0, "Low": 538.6, "Close": 541.1, "Volume": 1784967 }, + { "Date": "2014-10-26", "Open": 540.9, "High": 541.5, "Low": 537.0, "Close": 540.4, "Volume": 1519503 }, + { "Date": "2014-10-28", "Open": 540.6, "High": 542.0, "Low": 536.6, "Close": 541.8, "Volume": 1145231 }, + { "Date": "2014-11-01", "Open": 538.9, "High": 541.4, "Low": 531.9, "Close": 533.8, "Volume": 2109599 }, + { "Date": "2014-11-02", "Open": 533.5, "High": 535.5, "Low": 529.8, "Close": 533.8, "Volume": 1522481 }, + { "Date": "2014-11-03", "Open": 531.4, "High": 536.0, "Low": 529.3, "Close": 531.3, "Volume": 1279288 }, + { "Date": "2014-11-04", "Open": 531.2, "High": 537.3, "Low": 528.6, "Close": 537.3, "Volume": 1392208 }, + { "Date": "2014-11-05", "Open": 531.0, "High": 532.9, "Low": 524.3, "Close": 525.3, "Volume": 2558649 }, + { "Date": "2014-11-08", "Open": 527.1, "High": 531.0, "Low": 523.8, "Close": 527.0, "Volume": 2327127 }, + { "Date": "2014-11-09", "Open": 522.1, "High": 534.2, "Low": 520.5, "Close": 533.4, "Volume": 1871268 }, + { "Date": "2014-11-10", "Open": 533.1, "High": 536.3, "Low": 525.6, "Close": 526.1, "Volume": 1716835 }, + { "Date": "2014-11-11", "Open": 527.8, "High": 533.9, "Low": 527.1, "Close": 528.3, "Volume": 1610964 }, + { "Date": "2014-11-12", "Open": 523.5, "High": 528.5, "Low": 518.7, "Close": 518.7, "Volume": 1989117 }, + { "Date": "2014-11-15", "Open": 522.7, "High": 523.1, "Low": 513.3, "Close": 513.8, "Volume": 2812786 }, + { "Date": "2014-11-16", "Open": 511.6, "High": 513.0, "Low": 489.0, "Close": 495.4, "Volume": 3953371 }, + { "Date": "2014-11-17", "Open": 497.0, "High": 507.0, "Low": 496.8, "Close": 504.9, "Volume": 2875281 }, + { "Date": "2014-11-18", "Open": 513.0, "High": 513.9, "Low": 504.7, "Close": 511.1, "Volume": 2918730 }, + { "Date": "2014-11-19", "Open": 511.5, "High": 517.7, "Low": 506.9, "Close": 516.4, "Volume": 3680148 }, + { "Date": "2014-11-22", "Open": 516.1, "High": 526.5, "Low": 516.1, "Close": 524.9, "Volume": 2723599 }, + { "Date": "2014-11-23", "Open": 527.0, "High": 534.6, "Low": 526.3, "Close": 530.6, "Volume": 2191567 }, + { "Date": "2014-11-24", "Open": 530.5, "High": 531.8, "Low": 527.0, "Close": 528.8, "Volume": 704035 }, + { "Date": "2014-11-26", "Open": 528.8, "High": 534.3, "Low": 527.3, "Close": 534.0, "Volume": 1037727 }, + { "Date": "2014-11-29", "Open": 532.2, "High": 535.5, "Low": 530.0, "Close": 530.3, "Volume": 2276104 }, + { "Date": "2014-11-30", "Open": 528.1, "High": 531.1, "Low": 527.1, "Close": 530.4, "Volume": 873923 }, + { "Date": "2014-11-31", "Open": 531.3, "High": 532.6, "Low": 525.8, "Close": 526.4, "Volume": 1371819 }, + { "Date": "2015-00-02", "Open": 529.0, "High": 531.3, "Low": 524.1, "Close": 524.8, "Volume": 1446662 }, + { "Date": "2015-00-05", "Open": 523.3, "High": 524.3, "Low": 513.1, "Close": 513.9, "Volume": 2054238 }, + { "Date": "2015-00-06", "Open": 515.0, "High": 516.2, "Low": 501.1, "Close": 502.0, "Volume": 2891950 }, + { "Date": "2015-00-07", "Open": 507.0, "High": 507.2, "Low": 499.6, "Close": 501.1, "Volume": 2059366 }, + { "Date": "2015-00-08", "Open": 498.0, "High": 503.5, "Low": 491.0, "Close": 502.7, "Volume": 3344395 }, + { "Date": "2015-00-09", "Open": 504.8, "High": 504.9, "Low": 494.8, "Close": 496.2, "Volume": 2065715 }, + { "Date": "2015-00-12", "Open": 494.9, "High": 496.0, "Low": 487.6, "Close": 492.6, "Volume": 2320446 }, + { "Date": "2015-00-13", "Open": 498.8, "High": 503.0, "Low": 492.4, "Close": 496.2, "Volume": 2365687 }, + { "Date": "2015-00-14", "Open": 494.6, "High": 503.2, "Low": 493.0, "Close": 500.9, "Volume": 2229638 }, + { "Date": "2015-00-15", "Open": 505.6, "High": 505.7, "Low": 497.8, "Close": 501.8, "Volume": 2711355 }, + { "Date": "2015-00-16", "Open": 500.0, "High": 508.2, "Low": 500.0, "Close": 508.1, "Volume": 2292043 }, + { "Date": "2015-00-20", "Open": 511.0, "High": 512.5, "Low": 506.0, "Close": 506.9, "Volume": 2225922 }, + { "Date": "2015-00-21", "Open": 507.3, "High": 519.3, "Low": 506.2, "Close": 518.0, "Volume": 2262455 }, + { "Date": "2015-00-22", "Open": 521.5, "High": 536.3, "Low": 519.7, "Close": 534.4, "Volume": 2669558 }, + { "Date": "2015-00-23", "Open": 535.6, "High": 542.2, "Low": 533.0, "Close": 540.0, "Volume": 2275485 }, + { "Date": "2015-00-26", "Open": 538.5, "High": 539.0, "Low": 529.7, "Close": 535.2, "Volume": 1539524 }, + { "Date": "2015-00-27", "Open": 530.0, "High": 530.7, "Low": 518.2, "Close": 518.6, "Volume": 1898844 }, + { "Date": "2015-00-28", "Open": 522.8, "High": 523.0, "Low": 510.0, "Close": 510.0, "Volume": 1679230 }, + { "Date": "2015-00-29", "Open": 511.0, "High": 511.1, "Low": 501.2, "Close": 510.7, "Volume": 4174924 }, + { "Date": "2015-00-30", "Open": 515.9, "High": 539.9, "Low": 515.5, "Close": 534.5, "Volume": 5590977 }, + { "Date": "2015-01-02", "Open": 531.7, "High": 533.0, "Low": 518.5, "Close": 528.5, "Volume": 2841976 }, + { "Date": "2015-01-03", "Open": 528.0, "High": 533.4, "Low": 523.3, "Close": 529.2, "Volume": 2033085 }, + { "Date": "2015-01-04", "Open": 529.2, "High": 532.7, "Low": 521.3, "Close": 522.8, "Volume": 1659125 }, + { "Date": "2015-01-05", "Open": 523.8, "High": 528.5, "Low": 522.1, "Close": 527.6, "Volume": 1844687 }, + { "Date": "2015-01-06", "Open": 527.6, "High": 537.2, "Low": 526.4, "Close": 531.0, "Volume": 1758650 }, + { "Date": "2015-01-09", "Open": 528.0, "High": 532.0, "Low": 526.0, "Close": 527.8, "Volume": 1264276 }, + { "Date": "2015-01-10", "Open": 529.3, "High": 537.7, "Low": 526.9, "Close": 536.9, "Volume": 1745076 }, + { "Date": "2015-01-11", "Open": 535.3, "High": 538.5, "Low": 533.4, "Close": 536.0, "Volume": 1373970 }, + { "Date": "2015-01-12", "Open": 537.3, "High": 544.8, "Low": 534.7, "Close": 542.9, "Volume": 1615824 }, + { "Date": "2015-01-13", "Open": 543.4, "High": 549.9, "Low": 543.1, "Close": 549.0, "Volume": 1895126 }, + { "Date": "2015-01-17", "Open": 546.8, "High": 550.0, "Low": 541.1, "Close": 542.8, "Volume": 1612439 }, + { "Date": "2015-01-18", "Open": 541.4, "High": 545.5, "Low": 537.5, "Close": 539.7, "Volume": 1449089 }, + { "Date": "2015-01-19", "Open": 538.0, "High": 543.1, "Low": 538.0, "Close": 542.9, "Volume": 987478 }, + { "Date": "2015-01-20", "Open": 543.1, "High": 543.8, "Low": 535.8, "Close": 539.0, "Volume": 1441212 }, + { "Date": "2015-01-23", "Open": 536.0, "High": 536.4, "Low": 529.4, "Close": 531.9, "Volume": 1453907 }, + { "Date": "2015-01-24", "Open": 530.0, "High": 536.8, "Low": 528.3, "Close": 536.1, "Volume": 1002393 }, + { "Date": "2015-01-25", "Open": 535.9, "High": 546.2, "Low": 535.4, "Close": 543.9, "Volume": 1821041 }, + { "Date": "2015-01-26", "Open": 543.2, "High": 556.1, "Low": 541.5, "Close": 555.5, "Volume": 2305219 }, + { "Date": "2015-01-27", "Open": 554.2, "High": 564.7, "Low": 552.9, "Close": 558.4, "Volume": 2403553 }, + { "Date": "2015-02-02", "Open": 560.5, "High": 572.1, "Low": 558.8, "Close": 571.3, "Volume": 2123796 }, + { "Date": "2015-02-03", "Open": 570.5, "High": 575.4, "Low": 566.5, "Close": 573.6, "Volume": 1700084 }, + { "Date": "2015-02-04", "Open": 571.9, "High": 577.1, "Low": 568.0, "Close": 573.4, "Volume": 1871694 }, + { "Date": "2015-02-05", "Open": 575.0, "High": 577.9, "Low": 573.4, "Close": 575.3, "Volume": 1385818 }, + { "Date": "2015-02-06", "Open": 574.9, "High": 576.7, "Low": 566.8, "Close": 567.7, "Volume": 1654561 }, + { "Date": "2015-02-09", "Open": 566.9, "High": 570.3, "Low": 563.5, "Close": 568.9, "Volume": 1059336 }, + { "Date": "2015-02-10", "Open": 564.3, "High": 564.9, "Low": 554.7, "Close": 555.0, "Volume": 1787357 }, + { "Date": "2015-02-11", "Open": 555.1, "High": 558.1, "Low": 550.7, "Close": 551.2, "Volume": 1815763 }, + { "Date": "2015-02-12", "Open": 553.5, "High": 556.4, "Low": 550.5, "Close": 555.5, "Volume": 1385772 }, + { "Date": "2015-02-13", "Open": 553.5, "High": 558.4, "Low": 544.2, "Close": 547.3, "Volume": 1698872 }, + { "Date": "2015-02-16", "Open": 551.0, "High": 556.9, "Low": 546.0, "Close": 554.5, "Volume": 1636493 }, + { "Date": "2015-02-17", "Open": 551.7, "High": 553.8, "Low": 548.0, "Close": 550.8, "Volume": 1800570 }, + { "Date": "2015-02-18", "Open": 552.5, "High": 559.8, "Low": 547.0, "Close": 559.5, "Volume": 2128714 }, + { "Date": "2015-02-19", "Open": 559.4, "High": 560.8, "Low": 556.1, "Close": 558.0, "Volume": 1194049 }, + { "Date": "2015-02-20", "Open": 561.6, "High": 561.7, "Low": 559.0, "Close": 560.4, "Volume": 2609690 }, + { "Date": "2015-02-23", "Open": 560.4, "High": 562.4, "Low": 555.8, "Close": 558.8, "Volume": 1639306 }, + { "Date": "2015-02-24", "Open": 562.6, "High": 574.6, "Low": 561.2, "Close": 570.2, "Volume": 2576234 }, + { "Date": "2015-02-25", "Open": 570.5, "High": 572.3, "Low": 558.7, "Close": 558.8, "Volume": 2146384 }, + { "Date": "2015-02-26", "Open": 557.6, "High": 558.9, "Low": 550.6, "Close": 555.2, "Volume": 1568331 }, + { "Date": "2015-02-27", "Open": 553.0, "High": 555.3, "Low": 548.1, "Close": 548.3, "Volume": 1892323 }, + { "Date": "2015-02-30", "Open": 551.6, "High": 553.5, "Low": 548.2, "Close": 552.0, "Volume": 1283958 }, + { "Date": "2015-02-31", "Open": 550.0, "High": 554.7, "Low": 546.7, "Close": 548.0, "Volume": 1583677 }, + { "Date": "2015-03-01", "Open": 548.6, "High": 551.1, "Low": 539.5, "Close": 542.6, "Volume": 1957718 }, + { "Date": "2015-03-02", "Open": 540.9, "High": 540.9, "Low": 533.9, "Close": 535.5, "Volume": 1711737 }, + { "Date": "2015-03-06", "Open": 532.2, "High": 538.4, "Low": 529.6, "Close": 536.8, "Volume": 1320767 }, + { "Date": "2015-03-07", "Open": 538.1, "High": 542.7, "Low": 536.0, "Close": 537.0, "Volume": 1299298 }, + { "Date": "2015-03-08", "Open": 538.4, "High": 543.9, "Low": 538.4, "Close": 541.6, "Volume": 1175332 }, + { "Date": "2015-03-09", "Open": 541.0, "High": 542.0, "Low": 535.5, "Close": 540.8, "Volume": 1553586 }, + { "Date": "2015-03-10", "Open": 542.3, "High": 542.3, "Low": 537.3, "Close": 540.0, "Volume": 1405574 }, + { "Date": "2015-03-13", "Open": 538.4, "High": 544.1, "Low": 537.3, "Close": 539.2, "Volume": 1640809 }, + { "Date": "2015-03-14", "Open": 536.3, "High": 537.6, "Low": 528.1, "Close": 530.4, "Volume": 2597043 }, + { "Date": "2015-03-15", "Open": 528.7, "High": 534.7, "Low": 523.2, "Close": 532.5, "Volume": 2312512 }, + { "Date": "2015-03-16", "Open": 529.9, "High": 535.6, "Low": 529.6, "Close": 533.8, "Volume": 1296304 }, + { "Date": "2015-03-17", "Open": 528.7, "High": 529.8, "Low": 521.0, "Close": 524.0, "Volume": 2145955 }, + { "Date": "2015-03-20", "Open": 525.6, "High": 536.1, "Low": 524.5, "Close": 535.4, "Volume": 1675487 }, + { "Date": "2015-03-21", "Open": 537.5, "High": 539.4, "Low": 533.7, "Close": 534.0, "Volume": 1839668 }, + { "Date": "2015-03-22", "Open": 534.4, "High": 541.1, "Low": 531.8, "Close": 539.4, "Volume": 1589248 }, + { "Date": "2015-03-23", "Open": 541.0, "High": 551.0, "Low": 540.2, "Close": 547.0, "Volume": 4173376 }, + { "Date": "2015-03-24", "Open": 566.1, "High": 571.1, "Low": 557.3, "Close": 565.1, "Volume": 4919031 }, + { "Date": "2015-03-27", "Open": 563.4, "High": 566.0, "Low": 553.2, "Close": 555.4, "Volume": 2398039 }, + { "Date": "2015-03-28", "Open": 554.6, "High": 556.0, "Low": 550.4, "Close": 553.7, "Volume": 1490983 }, + { "Date": "2015-03-29", "Open": 550.5, "High": 553.7, "Low": 546.9, "Close": 549.1, "Volume": 1698761 }, + { "Date": "2015-03-30", "Open": 547.9, "High": 548.6, "Low": 535.0, "Close": 537.3, "Volume": 2082214 }, + { "Date": "2015-04-01", "Open": 538.4, "High": 539.5, "Low": 532.1, "Close": 537.9, "Volume": 1768181 }, + { "Date": "2015-04-04", "Open": 538.5, "High": 544.1, "Low": 535.1, "Close": 540.8, "Volume": 1307960 }, + { "Date": "2015-04-05", "Open": 538.2, "High": 539.7, "Low": 530.4, "Close": 530.8, "Volume": 1383068 }, + { "Date": "2015-04-06", "Open": 531.2, "High": 532.4, "Low": 521.1, "Close": 524.2, "Volume": 1566987 }, + { "Date": "2015-04-07", "Open": 524.0, "High": 533.5, "Low": 521.8, "Close": 530.7, "Volume": 1546278 }, + { "Date": "2015-04-08", "Open": 536.6, "High": 541.1, "Low": 536.0, "Close": 538.2, "Volume": 1527615 }, + { "Date": "2015-04-11", "Open": 538.4, "High": 542.0, "Low": 535.4, "Close": 535.7, "Volume": 905285 }, + { "Date": "2015-04-12", "Open": 531.6, "High": 533.2, "Low": 525.3, "Close": 529.0, "Volume": 1634174 }, + { "Date": "2015-04-13", "Open": 530.6, "High": 534.3, "Low": 528.7, "Close": 529.6, "Volume": 1253063 }, + { "Date": "2015-04-14", "Open": 533.8, "High": 539.0, "Low": 532.4, "Close": 538.4, "Volume": 1403935 }, + { "Date": "2015-04-15", "Open": 539.2, "High": 539.3, "Low": 530.4, "Close": 533.9, "Volume": 1971343 }, + { "Date": "2015-04-18", "Open": 532.0, "High": 534.8, "Low": 528.9, "Close": 532.3, "Volume": 2003421 }, + { "Date": "2015-04-19", "Open": 534.0, "High": 540.7, "Low": 533.0, "Close": 537.4, "Volume": 1966947 }, + { "Date": "2015-04-20", "Open": 538.5, "High": 542.9, "Low": 533.0, "Close": 539.3, "Volume": 1430826 }, + { "Date": "2015-04-21", "Open": 538.0, "High": 543.8, "Low": 536.0, "Close": 542.5, "Volume": 1462695 }, + { "Date": "2015-04-22", "Open": 540.1, "High": 544.2, "Low": 539.5, "Close": 540.1, "Volume": 1176214 }, + { "Date": "2015-04-26", "Open": 538.1, "High": 539.0, "Low": 529.9, "Close": 532.3, "Volume": 2406512 }, + { "Date": "2015-04-27", "Open": 532.8, "High": 540.5, "Low": 531.7, "Close": 539.8, "Volume": 1525019 }, + { "Date": "2015-04-28", "Open": 538.0, "High": 540.6, "Low": 536.3, "Close": 539.8, "Volume": 1029849 }, + { "Date": "2015-04-29", "Open": 537.4, "High": 538.6, "Low": 531.5, "Close": 532.1, "Volume": 2597407 }, + { "Date": "2015-05-01", "Open": 536.8, "High": 536.8, "Low": 529.8, "Close": 534.0, "Volume": 1904332 }, + { "Date": "2015-05-02", "Open": 532.9, "High": 543.0, "Low": 531.3, "Close": 539.2, "Volume": 1938989 }, + { "Date": "2015-05-03", "Open": 539.9, "High": 543.5, "Low": 537.1, "Close": 540.3, "Volume": 1717036 }, + { "Date": "2015-05-04", "Open": 537.8, "High": 540.6, "Low": 534.3, "Close": 536.7, "Volume": 1348337 }, + { "Date": "2015-05-05", "Open": 536.4, "High": 537.2, "Low": 532.5, "Close": 533.3, "Volume": 1388220 }, + { "Date": "2015-05-08", "Open": 533.3, "High": 534.1, "Low": 526.2, "Close": 526.8, "Volume": 1524139 }, + { "Date": "2015-05-09", "Open": 527.6, "High": 529.2, "Low": 523.0, "Close": 526.7, "Volume": 1455266 }, + { "Date": "2015-05-10", "Open": 529.4, "High": 538.4, "Low": 529.4, "Close": 536.7, "Volume": 1814958 }, + { "Date": "2015-05-11", "Open": 538.4, "High": 539.0, "Low": 533.0, "Close": 534.6, "Volume": 1217536 }, + { "Date": "2015-05-12", "Open": 531.6, "High": 533.1, "Low": 530.2, "Close": 532.3, "Volume": 955789 }, + { "Date": "2015-05-15", "Open": 528.0, "High": 528.3, "Low": 524.0, "Close": 527.2, "Volume": 1632702 }, + { "Date": "2015-05-16", "Open": 528.4, "High": 529.6, "Low": 525.6, "Close": 528.1, "Volume": 1071814 }, + { "Date": "2015-05-17", "Open": 529.4, "High": 531.0, "Low": 525.1, "Close": 529.3, "Volume": 1294216 }, + { "Date": "2015-05-18", "Open": 531.0, "High": 538.1, "Low": 530.8, "Close": 536.7, "Volume": 1833109 }, + { "Date": "2015-05-19", "Open": 537.2, "High": 538.3, "Low": 533.0, "Close": 536.7, "Volume": 1893497 }, + { "Date": "2015-05-22", "Open": 539.6, "High": 543.7, "Low": 537.5, "Close": 538.2, "Volume": 1250282 }, + { "Date": "2015-05-23", "Open": 539.6, "High": 541.5, "Low": 535.3, "Close": 540.5, "Volume": 1197450 }, + { "Date": "2015-05-24", "Open": 540.0, "High": 540.0, "Low": 535.7, "Close": 537.8, "Volume": 1286608 }, + { "Date": "2015-05-25", "Open": 538.9, "High": 540.9, "Low": 535.2, "Close": 535.2, "Volume": 1335697 }, + { "Date": "2015-05-26", "Open": 537.3, "High": 537.8, "Low": 531.4, "Close": 531.7, "Volume": 2109130 }, + { "Date": "2015-05-29", "Open": 525.0, "High": 528.6, "Low": 520.5, "Close": 521.5, "Volume": 1937821 }, + { "Date": "2015-05-30", "Open": 526.0, "High": 526.3, "Low": 520.5, "Close": 520.5, "Volume": 2235595 }, + { "Date": "2015-06-01", "Open": 524.7, "High": 525.7, "Low": 518.2, "Close": 521.8, "Volume": 1961354 }, + { "Date": "2015-06-02", "Open": 521.1, "High": 524.6, "Low": 521.1, "Close": 523.4, "Volume": 1235903 }, + { "Date": "2015-06-06", "Open": 519.5, "High": 525.3, "Low": 519.0, "Close": 522.9, "Volume": 1280525 }, + { "Date": "2015-06-07", "Open": 523.1, "High": 526.2, "Low": 515.2, "Close": 525.0, "Volume": 1597229 }, + { "Date": "2015-06-08", "Open": 521.0, "High": 522.7, "Low": 516.1, "Close": 516.8, "Volume": 1296699 }, + { "Date": "2015-06-09", "Open": 523.1, "High": 523.8, "Low": 520.4, "Close": 520.7, "Volume": 1842347 }, + { "Date": "2015-06-10", "Open": 526.3, "High": 532.6, "Low": 525.5, "Close": 530.1, "Volume": 1956682 }, + { "Date": "2015-06-13", "Open": 532.9, "High": 547.1, "Low": 532.4, "Close": 546.5, "Volume": 2206475 }, + { "Date": "2015-06-14", "Open": 546.8, "High": 565.9, "Low": 546.7, "Close": 561.1, "Volume": 3244066 }, + { "Date": "2015-06-15", "Open": 560.1, "High": 566.5, "Low": 556.8, "Close": 560.2, "Volume": 1784554 }, + { "Date": "2015-06-16", "Open": 565.1, "High": 580.7, "Low": 565.0, "Close": 579.9, "Volume": 4768318 }, + { "Date": "2015-06-17", "Open": 649.0, "High": 674.5, "Low": 645.0, "Close": 672.9, "Volume": 11164943 }, + { "Date": "2015-06-20", "Open": 659.2, "High": 668.9, "Low": 653.0, "Close": 663.0, "Volume": 5860872 }, + { "Date": "2015-06-21", "Open": 655.2, "High": 673.0, "Low": 654.3, "Close": 662.3, "Volume": 3377196 }, + { "Date": "2015-06-22", "Open": 660.9, "High": 678.6, "Low": 659.0, "Close": 662.1, "Volume": 3929309 }, + { "Date": "2015-06-23", "Open": 661.3, "High": 663.6, "Low": 641.0, "Close": 644.3, "Volume": 3029109 }, + { "Date": "2015-06-24", "Open": 647.0, "High": 648.2, "Low": 622.5, "Close": 623.6, "Volume": 3625747 }, + { "Date": "2015-06-27", "Open": 621.0, "High": 634.3, "Low": 620.5, "Close": 627.3, "Volume": 2675381 }, + { "Date": "2015-06-28", "Open": 632.8, "High": 632.8, "Low": 623.3, "Close": 628.0, "Volume": 1727327 }, + { "Date": "2015-06-29", "Open": 628.8, "High": 633.4, "Low": 622.6, "Close": 631.9, "Volume": 1575069 }, + { "Date": "2015-06-30", "Open": 630.0, "High": 635.2, "Low": 622.0, "Close": 632.6, "Volume": 1474203 }, + { "Date": "2015-06-31", "Open": 631.4, "High": 632.9, "Low": 625.5, "Close": 625.6, "Volume": 1706149 }, + { "Date": "2015-07-03", "Open": 625.3, "High": 633.1, "Low": 625.3, "Close": 631.2, "Volume": 1304511 }, + { "Date": "2015-07-04", "Open": 628.4, "High": 634.8, "Low": 627.2, "Close": 629.3, "Volume": 1490881 }, + { "Date": "2015-07-05", "Open": 634.3, "High": 647.9, "Low": 633.2, "Close": 643.8, "Volume": 2334266 }, + { "Date": "2015-07-06", "Open": 645.0, "High": 645.4, "Low": 632.3, "Close": 642.7, "Volume": 1572600 }, + { "Date": "2015-07-07", "Open": 640.2, "High": 642.7, "Low": 629.7, "Close": 635.3, "Volume": 1403865 }, + { "Date": "2015-07-10", "Open": 639.5, "High": 643.4, "Low": 631.3, "Close": 633.7, "Volume": 1809205 }, + { "Date": "2015-07-11", "Open": 669.2, "High": 674.9, "Low": 654.3, "Close": 660.8, "Volume": 5029203 }, + { "Date": "2015-07-12", "Open": 663.1, "High": 665.0, "Low": 652.3, "Close": 659.6, "Volume": 2940803 }, + { "Date": "2015-07-13", "Open": 659.3, "High": 664.5, "Low": 651.7, "Close": 656.5, "Volume": 1810749 }, + { "Date": "2015-07-14", "Open": 655.0, "High": 659.9, "Low": 652.7, "Close": 657.1, "Volume": 1072061 }, + { "Date": "2015-07-17", "Open": 656.8, "High": 661.4, "Low": 651.2, "Close": 660.9, "Volume": 1051699 }, + { "Date": "2015-07-18", "Open": 661.9, "High": 664.0, "Low": 653.5, "Close": 656.1, "Volume": 1456059 }, + { "Date": "2015-07-19", "Open": 656.6, "High": 667.0, "Low": 654.2, "Close": 660.9, "Volume": 2134098 }, + { "Date": "2015-07-20", "Open": 655.5, "High": 663.0, "Low": 642.9, "Close": 646.8, "Volume": 2855299 }, + { "Date": "2015-07-21", "Open": 639.8, "High": 640.0, "Low": 612.3, "Close": 612.5, "Volume": 4265183 }, + { "Date": "2015-07-24", "Open": 573.0, "High": 614.0, "Low": 565.0, "Close": 589.6, "Volume": 5770302 }, + { "Date": "2015-07-25", "Open": 614.9, "High": 617.5, "Low": 581.1, "Close": 582.1, "Volume": 3537966 }, + { "Date": "2015-07-26", "Open": 610.4, "High": 631.7, "Low": 599.0, "Close": 628.6, "Volume": 4235891 }, + { "Date": "2015-07-27", "Open": 639.4, "High": 643.6, "Low": 622.0, "Close": 637.6, "Volume": 3491336 }, + { "Date": "2015-07-28", "Open": 632.8, "High": 636.9, "Low": 624.6, "Close": 630.4, "Volume": 1978733 }, + { "Date": "2015-07-31", "Open": 627.5, "High": 635.8, "Low": 617.7, "Close": 618.3, "Volume": 2176737 }, + { "Date": "2015-08-01", "Open": 602.4, "High": 612.9, "Low": 594.1, "Close": 597.8, "Volume": 3702105 }, + { "Date": "2015-08-02", "Open": 605.6, "High": 614.3, "Low": 599.7, "Close": 614.3, "Volume": 2575620 }, + { "Date": "2015-08-03", "Open": 617.0, "High": 619.7, "Low": 602.8, "Close": 606.3, "Volume": 1759572 }, + { "Date": "2015-08-04", "Open": 600.0, "High": 603.5, "Low": 595.3, "Close": 600.7, "Volume": 2089453 }, + { "Date": "2015-08-08", "Open": 612.5, "High": 616.3, "Low": 604.1, "Close": 614.7, "Volume": 2279538 }, + { "Date": "2015-08-09", "Open": 621.2, "High": 626.5, "Low": 609.6, "Close": 612.7, "Volume": 1702094 }, + { "Date": "2015-08-10", "Open": 613.1, "High": 624.2, "Low": 611.4, "Close": 621.4, "Volume": 1900526 }, + { "Date": "2015-08-11", "Open": 619.8, "High": 625.8, "Low": 617.4, "Close": 625.8, "Volume": 1373545 }, + { "Date": "2015-08-14", "Open": 625.7, "High": 625.9, "Low": 619.4, "Close": 623.2, "Volume": 1702271 }, + { "Date": "2015-08-15", "Open": 626.7, "High": 638.7, "Low": 623.8, "Close": 635.1, "Volume": 2084397 }, + { "Date": "2015-08-16", "Open": 635.5, "High": 638.0, "Low": 632.3, "Close": 636.0, "Volume": 1286454 }, + { "Date": "2015-08-17", "Open": 637.8, "High": 650.9, "Low": 635.0, "Close": 642.9, "Volume": 2274690 }, + { "Date": "2015-08-18", "Open": 636.8, "High": 640.0, "Low": 627.0, "Close": 629.3, "Volume": 5133386 }, + { "Date": "2015-08-21", "Open": 634.4, "High": 636.5, "Low": 625.9, "Close": 635.4, "Volume": 1788506 }, + { "Date": "2015-08-22", "Open": 627.0, "High": 627.5, "Low": 615.4, "Close": 622.7, "Volume": 2562869 }, + { "Date": "2015-08-23", "Open": 622.0, "High": 628.9, "Low": 620.0, "Close": 622.4, "Volume": 1470949 }, + { "Date": "2015-08-24", "Open": 616.6, "High": 627.3, "Low": 612.4, "Close": 625.8, "Volume": 2240098 }, + { "Date": "2015-08-25", "Open": 629.8, "High": 629.8, "Low": 611.0, "Close": 612.0, "Volume": 2174009 }, + { "Date": "2015-08-28", "Open": 610.3, "High": 614.6, "Low": 589.4, "Close": 594.9, "Volume": 3127667 }, + { "Date": "2015-08-29", "Open": 597.3, "High": 605.0, "Low": 590.2, "Close": 595.0, "Volume": 2310284 }, + { "Date": "2015-08-30", "Open": 603.3, "High": 608.8, "Low": 600.7, "Close": 608.4, "Volume": 2413441 }, + { "Date": "2015-09-01", "Open": 608.4, "High": 612.1, "Low": 599.9, "Close": 611.3, "Volume": 1867601 }, + { "Date": "2015-09-02", "Open": 607.2, "High": 627.3, "Low": 603.1, "Close": 626.9, "Volume": 2684805 }, + { "Date": "2015-09-05", "Open": 632.0, "High": 643.0, "Low": 627.0, "Close": 641.5, "Volume": 1787880 }, + { "Date": "2015-09-06", "Open": 638.8, "High": 649.3, "Low": 636.5, "Close": 645.4, "Volume": 2166264 }, + { "Date": "2015-09-07", "Open": 649.2, "High": 650.6, "Low": 632.1, "Close": 642.4, "Volume": 2089776 }, + { "Date": "2015-09-08", "Open": 641.4, "High": 644.5, "Low": 625.6, "Close": 639.2, "Volume": 2180441 }, + { "Date": "2015-09-09", "Open": 640.0, "High": 646.0, "Low": 635.3, "Close": 643.6, "Volume": 1645844 }, + { "Date": "2015-09-12", "Open": 642.1, "High": 648.5, "Low": 639.0, "Close": 646.7, "Volume": 1275206 }, + { "Date": "2015-09-13", "Open": 643.1, "High": 657.8, "Low": 643.1, "Close": 652.3, "Volume": 1790704 }, + { "Date": "2015-09-14", "Open": 653.2, "High": 659.4, "Low": 648.9, "Close": 651.2, "Volume": 1412040 }, + { "Date": "2015-09-15", "Open": 654.7, "High": 663.1, "Low": 654.5, "Close": 661.7, "Volume": 1830524 }, + { "Date": "2015-09-16", "Open": 664.1, "High": 665.0, "Low": 657.2, "Close": 662.2, "Volume": 1606138 }, + { "Date": "2015-09-19", "Open": 661.2, "High": 666.8, "Low": 659.6, "Close": 666.1, "Volume": 1465339 }, + { "Date": "2015-09-20", "Open": 664.0, "High": 664.7, "Low": 644.2, "Close": 650.3, "Volume": 2490016 }, + { "Date": "2015-09-21", "Open": 654.1, "High": 655.9, "Low": 641.7, "Close": 642.6, "Volume": 1791099 }, + { "Date": "2015-09-22", "Open": 646.7, "High": 657.8, "Low": 644.0, "Close": 651.8, "Volume": 3782103 }, + { "Date": "2015-09-23", "Open": 727.5, "High": 730.0, "Low": 701.5, "Close": 702.0, "Volume": 6642504 }, + { "Date": "2015-09-26", "Open": 701.5, "High": 719.1, "Low": 701.3, "Close": 712.8, "Volume": 2701629 }, + { "Date": "2015-09-27", "Open": 707.4, "High": 713.6, "Low": 704.5, "Close": 708.5, "Volume": 2224309 }, + { "Date": "2015-09-28", "Open": 707.3, "High": 713.0, "Low": 703.1, "Close": 713.0, "Volume": 2176623 }, + { "Date": "2015-09-29", "Open": 710.5, "High": 718.3, "Low": 710.0, "Close": 716.9, "Volume": 1454128 }, + { "Date": "2015-09-30", "Open": 715.7, "High": 718.0, "Low": 710.0, "Close": 710.8, "Volume": 1903980 }, + { "Date": "2015-10-02", "Open": 711.1, "High": 721.6, "Low": 705.9, "Close": 721.1, "Volume": 1871073 }, + { "Date": "2015-10-03", "Open": 718.9, "High": 724.6, "Low": 714.7, "Close": 722.2, "Volume": 1560770 }, + { "Date": "2015-10-04", "Open": 722.0, "High": 733.1, "Low": 721.9, "Close": 728.1, "Volume": 1704575 }, + { "Date": "2015-10-05", "Open": 729.5, "High": 739.5, "Low": 729.5, "Close": 731.3, "Volume": 1860367 }, + { "Date": "2015-10-06", "Open": 731.5, "High": 735.4, "Low": 727.0, "Close": 733.8, "Volume": 1509656 }, + { "Date": "2015-10-09", "Open": 730.2, "High": 734.7, "Low": 719.4, "Close": 724.9, "Volume": 2065619 }, + { "Date": "2015-10-10", "Open": 724.4, "High": 730.6, "Low": 718.5, "Close": 728.3, "Volume": 1603937 }, + { "Date": "2015-10-11", "Open": 732.5, "High": 741.0, "Low": 730.2, "Close": 735.4, "Volume": 1366375 }, + { "Date": "2015-10-12", "Open": 731.0, "High": 737.8, "Low": 728.6, "Close": 731.2, "Volume": 1668048 }, + { "Date": "2015-10-13", "Open": 729.2, "High": 731.1, "Low": 716.7, "Close": 717.0, "Volume": 2062982 }, + { "Date": "2015-10-16", "Open": 715.6, "High": 729.5, "Low": 711.3, "Close": 729.0, "Volume": 1891074 }, + { "Date": "2015-10-17", "Open": 729.3, "High": 731.8, "Low": 723.0, "Close": 725.3, "Volume": 1491709 }, + { "Date": "2015-10-18", "Open": 727.6, "High": 741.4, "Low": 727.0, "Close": 740.0, "Volume": 1671588 }, + { "Date": "2015-10-19", "Open": 738.7, "High": 742.0, "Low": 737.4, "Close": 738.4, "Volume": 1327109 }, + { "Date": "2015-10-20", "Open": 746.5, "High": 757.9, "Low": 743.0, "Close": 756.6, "Volume": 2212302 }, + { "Date": "2015-10-23", "Open": 757.5, "High": 762.7, "Low": 751.8, "Close": 756.0, "Volume": 1414487 }, + { "Date": "2015-10-24", "Open": 752.0, "High": 755.3, "Low": 737.6, "Close": 748.3, "Volume": 2333130 }, + { "Date": "2015-10-25", "Open": 748.1, "High": 752.0, "Low": 746.1, "Close": 748.1, "Volume": 1122224 }, + { "Date": "2015-10-27", "Open": 748.5, "High": 753.4, "Low": 747.5, "Close": 750.3, "Volume": 838518 }, + { "Date": "2015-10-30", "Open": 748.8, "High": 754.9, "Low": 741.3, "Close": 742.6, "Volume": 2035261 }, + { "Date": "2015-11-01", "Open": 747.1, "High": 769.0, "Low": 746.7, "Close": 767.0, "Volume": 2129940 }, + { "Date": "2015-11-02", "Open": 768.9, "High": 776.0, "Low": 759.0, "Close": 762.4, "Volume": 2195686 }, + { "Date": "2015-11-03", "Open": 766.0, "High": 769.0, "Low": 745.6, "Close": 752.5, "Volume": 2590641 }, + { "Date": "2015-11-04", "Open": 753.1, "High": 768.5, "Low": 750.0, "Close": 766.8, "Volume": 2757283 }, + { "Date": "2015-11-07", "Open": 767.8, "High": 768.7, "Low": 755.1, "Close": 763.3, "Volume": 1812314 }, + { "Date": "2015-11-08", "Open": 757.9, "High": 764.8, "Low": 754.2, "Close": 762.4, "Volume": 1829475 }, + { "Date": "2015-11-09", "Open": 759.2, "High": 764.2, "Low": 737.0, "Close": 751.6, "Volume": 2699990 }, + { "Date": "2015-11-10", "Open": 752.9, "High": 755.9, "Low": 743.8, "Close": 749.5, "Volume": 1988380 }, + { "Date": "2015-11-11", "Open": 741.2, "High": 745.7, "Low": 736.8, "Close": 738.9, "Volume": 2224410 }, + { "Date": "2015-11-14", "Open": 741.8, "High": 748.7, "Low": 724.2, "Close": 747.8, "Volume": 2412497 }, + { "Date": "2015-11-15", "Open": 753.0, "High": 758.1, "Low": 743.0, "Close": 743.4, "Volume": 2666229 }, + { "Date": "2015-11-16", "Open": 750.0, "High": 760.6, "Low": 739.4, "Close": 758.1, "Volume": 1993251 }, + { "Date": "2015-11-17", "Open": 762.4, "High": 762.7, "Low": 749.0, "Close": 749.4, "Volume": 1553418 }, + { "Date": "2015-11-18", "Open": 746.5, "High": 754.1, "Low": 738.1, "Close": 739.3, "Volume": 3148743 }, + { "Date": "2015-11-21", "Open": 746.1, "High": 750.0, "Low": 740.0, "Close": 747.8, "Volume": 1525703 }, + { "Date": "2015-11-22", "Open": 751.6, "High": 754.9, "Low": 745.5, "Close": 750.0, "Volume": 1365520 }, + { "Date": "2015-11-23", "Open": 753.5, "High": 754.2, "Low": 744.0, "Close": 750.3, "Volume": 1566726 }, + { "Date": "2015-11-24", "Open": 749.5, "High": 751.4, "Low": 746.6, "Close": 748.4, "Volume": 527223 }, + { "Date": "2015-11-28", "Open": 752.9, "High": 763.0, "Low": 749.5, "Close": 762.5, "Volume": 1515716 }, + { "Date": "2015-11-29", "Open": 766.7, "High": 780.0, "Low": 766.4, "Close": 776.6, "Volume": 1765012 }, + { "Date": "2015-11-30", "Open": 776.6, "High": 777.6, "Low": 766.9, "Close": 771.0, "Volume": 1293521 }, + { "Date": "2015-11-31", "Open": 769.5, "High": 769.5, "Low": 758.3, "Close": 758.9, "Volume": 1500923 }, + { "Date": "2016-00-04", "Open": 743.0, "High": 744.1, "Low": 731.3, "Close": 741.8, "Volume": 3258199 }, + { "Date": "2016-00-05", "Open": 746.5, "High": 752.0, "Low": 738.6, "Close": 742.6, "Volume": 1950691 }, + { "Date": "2016-00-06", "Open": 730.0, "High": 747.2, "Low": 728.9, "Close": 743.6, "Volume": 1947034 }, + { "Date": "2016-00-07", "Open": 730.3, "High": 738.5, "Low": 719.1, "Close": 726.4, "Volume": 2963741 }, + { "Date": "2016-00-08", "Open": 731.5, "High": 733.2, "Low": 713.0, "Close": 714.5, "Volume": 2450857 }, + { "Date": "2016-00-11", "Open": 716.6, "High": 718.9, "Low": 703.5, "Close": 716.0, "Volume": 2090621 }, + { "Date": "2016-00-12", "Open": 721.7, "High": 728.8, "Low": 717.3, "Close": 726.1, "Volume": 2024509 }, + { "Date": "2016-00-13", "Open": 730.9, "High": 734.7, "Low": 698.6, "Close": 700.6, "Volume": 2468295 }, + { "Date": "2016-00-14", "Open": 705.4, "High": 721.9, "Low": 689.1, "Close": 714.7, "Volume": 2211853 }, + { "Date": "2016-00-15", "Open": 692.3, "High": 706.7, "Low": 685.4, "Close": 694.5, "Volume": 3592449 }, + { "Date": "2016-00-19", "Open": 703.3, "High": 710.0, "Low": 693.4, "Close": 701.8, "Volume": 2258479 }, + { "Date": "2016-00-20", "Open": 688.6, "High": 706.9, "Low": 673.3, "Close": 698.5, "Volume": 3439386 }, + { "Date": "2016-00-21", "Open": 702.2, "High": 719.2, "Low": 694.5, "Close": 706.6, "Volume": 2410263 }, + { "Date": "2016-00-22", "Open": 723.6, "High": 728.1, "Low": 720.1, "Close": 725.3, "Volume": 2006528 }, + { "Date": "2016-00-25", "Open": 723.6, "High": 729.7, "Low": 710.0, "Close": 711.7, "Volume": 1704641 }, + { "Date": "2016-00-26", "Open": 713.9, "High": 718.3, "Low": 706.5, "Close": 713.0, "Volume": 1324300 }, + { "Date": "2016-00-27", "Open": 713.7, "High": 718.2, "Low": 694.4, "Close": 700.0, "Volume": 2139970 }, + { "Date": "2016-00-28", "Open": 722.2, "High": 733.7, "Low": 712.4, "Close": 731.0, "Volume": 2658016 }, + { "Date": "2016-00-29", "Open": 731.5, "High": 745.0, "Low": 726.8, "Close": 743.0, "Volume": 3394935 }, + { "Date": "2016-01-01", "Open": 750.5, "High": 757.9, "Low": 743.3, "Close": 752.0, "Volume": 4801816 }, + { "Date": "2016-01-02", "Open": 784.5, "High": 789.9, "Low": 764.6, "Close": 764.6, "Volume": 6332431 }, + { "Date": "2016-01-03", "Open": 770.2, "High": 774.5, "Low": 720.5, "Close": 727.0, "Volume": 6162333 }, + { "Date": "2016-01-04", "Open": 722.8, "High": 727.0, "Low": 701.9, "Close": 708.0, "Volume": 5145855 }, + { "Date": "2016-01-05", "Open": 703.9, "High": 704.0, "Low": 680.1, "Close": 683.6, "Volume": 5069985 }, + { "Date": "2016-01-08", "Open": 667.9, "High": 684.0, "Low": 663.1, "Close": 682.7, "Volume": 4212541 }, + { "Date": "2016-01-09", "Open": 672.3, "High": 699.9, "Low": 668.8, "Close": 678.1, "Volume": 3604335 }, + { "Date": "2016-01-10", "Open": 686.9, "High": 701.3, "Low": 682.1, "Close": 684.1, "Volume": 2627379 }, + { "Date": "2016-01-11", "Open": 675.0, "High": 689.4, "Low": 668.9, "Close": 683.1, "Volume": 3007223 }, + { "Date": "2016-01-12", "Open": 690.3, "High": 693.8, "Low": 678.6, "Close": 682.4, "Volume": 2129831 }, + { "Date": "2016-01-16", "Open": 693.0, "High": 698.0, "Low": 685.0, "Close": 691.0, "Volume": 2497024 }, + { "Date": "2016-01-17", "Open": 699.0, "High": 709.8, "Low": 691.4, "Close": 708.4, "Volume": 2466808 }, + { "Date": "2016-01-18", "Open": 710.0, "High": 712.4, "Low": 696.0, "Close": 697.4, "Volume": 1859130 }, + { "Date": "2016-01-19", "Open": 695.0, "High": 703.1, "Low": 694.0, "Close": 700.9, "Volume": 1582260 }, + { "Date": "2016-01-22", "Open": 707.5, "High": 713.2, "Low": 702.5, "Close": 706.5, "Volume": 1946067 }, + { "Date": "2016-01-23", "Open": 701.5, "High": 708.4, "Low": 693.6, "Close": 695.9, "Volume": 1999699 }, + { "Date": "2016-01-24", "Open": 688.9, "High": 700.0, "Low": 680.8, "Close": 699.6, "Volume": 1958611 }, + { "Date": "2016-01-25", "Open": 700.0, "High": 706.0, "Low": 690.6, "Close": 705.8, "Volume": 1631855 }, + { "Date": "2016-01-26", "Open": 708.6, "High": 713.4, "Low": 700.9, "Close": 705.1, "Volume": 2239978 }, + { "Date": "2016-01-29", "Open": 700.3, "High": 710.9, "Low": 697.7, "Close": 697.8, "Volume": 2280280 }, + { "Date": "2016-02-01", "Open": 703.6, "High": 718.8, "Low": 699.8, "Close": 718.8, "Volume": 2147442 }, + { "Date": "2016-02-02", "Open": 719.0, "High": 720.0, "Low": 712.0, "Close": 718.9, "Volume": 1627753 }, + { "Date": "2016-02-03", "Open": 718.7, "High": 719.5, "Low": 706.0, "Close": 712.4, "Volume": 1956761 }, + { "Date": "2016-02-04", "Open": 715.0, "High": 716.5, "Low": 706.0, "Close": 710.9, "Volume": 1967873 }, + { "Date": "2016-02-07", "Open": 706.9, "High": 708.1, "Low": 686.9, "Close": 695.2, "Volume": 2985094 }, + { "Date": "2016-02-08", "Open": 688.6, "High": 703.8, "Low": 685.3, "Close": 694.0, "Volume": 2063357 }, + { "Date": "2016-02-09", "Open": 698.5, "High": 705.7, "Low": 694.0, "Close": 705.2, "Volume": 1418704 }, + { "Date": "2016-02-10", "Open": 708.1, "High": 716.4, "Low": 703.4, "Close": 712.8, "Volume": 2829412 }, + { "Date": "2016-02-11", "Open": 720.0, "High": 726.9, "Low": 717.1, "Close": 726.8, "Volume": 1963907 }, + { "Date": "2016-02-14", "Open": 726.8, "High": 735.5, "Low": 725.1, "Close": 730.5, "Volume": 1716910 }, + { "Date": "2016-02-15", "Open": 726.9, "High": 732.3, "Low": 724.8, "Close": 728.3, "Volume": 1720965 }, + { "Date": "2016-02-16", "Open": 726.4, "High": 737.5, "Low": 724.5, "Close": 736.1, "Volume": 1572329 }, + { "Date": "2016-02-17", "Open": 736.5, "High": 743.1, "Low": 736.0, "Close": 737.8, "Volume": 1856800 }, + { "Date": "2016-02-18", "Open": 741.9, "High": 742.0, "Low": 731.8, "Close": 737.6, "Volume": 2796376 }, + { "Date": "2016-02-21", "Open": 736.5, "High": 742.5, "Low": 733.5, "Close": 742.1, "Volume": 1831839 }, + { "Date": "2016-02-22", "Open": 737.5, "High": 745.0, "Low": 737.5, "Close": 740.8, "Volume": 1264396 }, + { "Date": "2016-02-23", "Open": 742.4, "High": 745.7, "Low": 736.1, "Close": 738.1, "Volume": 1421861 }, + { "Date": "2016-02-24", "Open": 732.0, "High": 737.8, "Low": 731.0, "Close": 735.3, "Volume": 1564782 }, + { "Date": "2016-02-28", "Open": 736.8, "High": 739.0, "Low": 732.5, "Close": 733.5, "Volume": 1299812 }, + { "Date": "2016-02-29", "Open": 734.6, "High": 747.3, "Low": 728.8, "Close": 744.8, "Volume": 1902128 }, + { "Date": "2016-02-30", "Open": 750.1, "High": 757.9, "Low": 748.7, "Close": 750.5, "Volume": 1780998 }, + { "Date": "2016-02-31", "Open": 749.3, "High": 750.9, "Low": 740.9, "Close": 745.0, "Volume": 1712375 }, + { "Date": "2016-03-01", "Open": 738.6, "High": 750.3, "Low": 737.0, "Close": 749.9, "Volume": 1574870 }, + { "Date": "2016-03-04", "Open": 750.1, "High": 752.8, "Low": 742.4, "Close": 745.3, "Volume": 1131843 }, + { "Date": "2016-03-05", "Open": 738.0, "High": 742.8, "Low": 735.4, "Close": 737.8, "Volume": 1129829 }, + { "Date": "2016-03-06", "Open": 735.8, "High": 746.2, "Low": 735.6, "Close": 745.7, "Volume": 1050193 }, + { "Date": "2016-03-07", "Open": 745.4, "High": 747.0, "Low": 736.3, "Close": 740.3, "Volume": 1429504 }, + { "Date": "2016-03-08", "Open": 744.0, "High": 745.5, "Low": 735.5, "Close": 739.1, "Volume": 1285755 }, + { "Date": "2016-03-11", "Open": 743.0, "High": 745.0, "Low": 736.0, "Close": 736.1, "Volume": 1211762 }, + { "Date": "2016-03-12", "Open": 738.0, "High": 743.8, "Low": 731.0, "Close": 743.1, "Volume": 1349734 }, + { "Date": "2016-03-13", "Open": 749.2, "High": 754.4, "Low": 744.3, "Close": 751.7, "Volume": 1707095 }, + { "Date": "2016-03-14", "Open": 754.0, "High": 757.3, "Low": 752.7, "Close": 753.2, "Volume": 1130971 }, + { "Date": "2016-03-15", "Open": 754.0, "High": 761.0, "Low": 752.7, "Close": 759.0, "Volume": 1800413 }, + { "Date": "2016-03-18", "Open": 760.5, "High": 768.0, "Low": 757.3, "Close": 766.6, "Volume": 1555953 }, + { "Date": "2016-03-19", "Open": 769.5, "High": 769.9, "Low": 749.3, "Close": 753.9, "Volume": 2027642 }, + { "Date": "2016-03-20", "Open": 758.0, "High": 758.1, "Low": 750.0, "Close": 752.7, "Volume": 1525591 }, + { "Date": "2016-03-21", "Open": 755.4, "High": 760.5, "Low": 749.5, "Close": 759.1, "Volume": 2743620 }, + { "Date": "2016-03-22", "Open": 726.3, "High": 736.1, "Low": 713.6, "Close": 718.8, "Volume": 5939199 }, + { "Date": "2016-03-25", "Open": 716.1, "High": 723.9, "Low": 715.6, "Close": 723.1, "Volume": 1955567 }, + { "Date": "2016-03-26", "Open": 725.4, "High": 725.8, "Low": 703.0, "Close": 708.1, "Volume": 2727185 }, + { "Date": "2016-03-27", "Open": 707.3, "High": 709.0, "Low": 692.4, "Close": 705.8, "Volume": 3086722 }, + { "Date": "2016-03-28", "Open": 708.3, "High": 714.2, "Low": 689.5, "Close": 691.0, "Volume": 2851108 }, + { "Date": "2016-03-29", "Open": 690.7, "High": 697.6, "Low": 689.0, "Close": 693.0, "Volume": 2484273 }, + { "Date": "2016-04-02", "Open": 697.6, "High": 700.6, "Low": 691.0, "Close": 698.2, "Volume": 1644126 }, + { "Date": "2016-04-03", "Open": 696.9, "High": 697.8, "Low": 692.0, "Close": 692.4, "Volume": 1530993 }, + { "Date": "2016-04-04", "Open": 690.5, "High": 699.8, "Low": 689.0, "Close": 695.7, "Volume": 1688569 }, + { "Date": "2016-04-05", "Open": 697.7, "High": 702.3, "Low": 695.7, "Close": 701.4, "Volume": 1677405 }, + { "Date": "2016-04-06", "Open": 698.4, "High": 711.9, "Low": 698.1, "Close": 711.1, "Volume": 1826146 }, + { "Date": "2016-04-09", "Open": 712.0, "High": 718.7, "Low": 710.0, "Close": 712.9, "Volume": 1508423 }, + { "Date": "2016-04-10", "Open": 716.8, "High": 723.5, "Low": 715.7, "Close": 723.2, "Volume": 1563105 }, + { "Date": "2016-04-11", "Open": 723.4, "High": 724.5, "Low": 712.8, "Close": 715.3, "Volume": 1686823 }, + { "Date": "2016-04-12", "Open": 717.1, "High": 719.3, "Low": 709.0, "Close": 713.3, "Volume": 1360732 }, + { "Date": "2016-04-13", "Open": 711.9, "High": 716.7, "Low": 709.3, "Close": 710.8, "Volume": 1307338 }, + { "Date": "2016-04-16", "Open": 709.1, "High": 718.5, "Low": 705.6, "Close": 716.5, "Volume": 1316177 }, + { "Date": "2016-04-17", "Open": 716.0, "High": 721.5, "Low": 704.1, "Close": 706.2, "Volume": 1999456 }, + { "Date": "2016-04-18", "Open": 703.7, "High": 711.6, "Low": 700.6, "Close": 706.6, "Volume": 1763394 }, + { "Date": "2016-04-19", "Open": 702.4, "High": 706.0, "Low": 696.8, "Close": 700.3, "Volume": 1656321 }, + { "Date": "2016-04-20", "Open": 701.6, "High": 714.6, "Low": 700.5, "Close": 709.7, "Volume": 1816027 }, + { "Date": "2016-04-23", "Open": 706.5, "High": 711.5, "Low": 704.2, "Close": 704.2, "Volume": 1320927 }, + { "Date": "2016-04-24", "Open": 706.9, "High": 721.0, "Low": 706.9, "Close": 720.1, "Volume": 1920411 }, + { "Date": "2016-04-25", "Open": 720.8, "High": 727.5, "Low": 719.7, "Close": 725.3, "Volume": 1629198 }, + { "Date": "2016-04-26", "Open": 722.9, "High": 728.3, "Low": 720.3, "Close": 724.1, "Volume": 1542866 }, + { "Date": "2016-04-27", "Open": 724.0, "High": 733.9, "Low": 724.0, "Close": 732.7, "Volume": 1974026 }, + { "Date": "2016-04-31", "Open": 731.7, "High": 739.7, "Low": 731.3, "Close": 735.7, "Volume": 2129545 }, + { "Date": "2016-05-01", "Open": 734.5, "High": 737.2, "Low": 730.7, "Close": 734.1, "Volume": 1253593 }, + { "Date": "2016-05-02", "Open": 732.5, "High": 733.0, "Low": 724.2, "Close": 730.4, "Volume": 1341807 }, + { "Date": "2016-05-03", "Open": 729.3, "High": 729.5, "Low": 720.6, "Close": 722.3, "Volume": 1226253 }, + { "Date": "2016-05-06", "Open": 724.9, "High": 724.9, "Low": 714.6, "Close": 716.5, "Volume": 1566059 }, + { "Date": "2016-05-07", "Open": 719.8, "High": 722.0, "Low": 716.5, "Close": 716.6, "Volume": 1336754 }, + { "Date": "2016-05-08", "Open": 724.0, "High": 728.6, "Low": 720.6, "Close": 728.3, "Volume": 1583701 }, + { "Date": "2016-05-09", "Open": 722.9, "High": 729.5, "Low": 722.3, "Close": 728.6, "Volume": 988914 }, + { "Date": "2016-05-10", "Open": 719.5, "High": 725.9, "Low": 716.4, "Close": 719.4, "Volume": 1216443 }, + { "Date": "2016-05-13", "Open": 716.5, "High": 725.4, "Low": 716.5, "Close": 718.4, "Volume": 1258930 }, + { "Date": "2016-05-14", "Open": 716.5, "High": 722.5, "Low": 713.1, "Close": 718.3, "Volume": 1306065 }, + { "Date": "2016-05-15", "Open": 719.0, "High": 723.0, "Low": 717.3, "Close": 718.9, "Volume": 1214517 }, + { "Date": "2016-05-16", "Open": 714.9, "High": 716.6, "Low": 703.3, "Close": 710.4, "Volume": 1982471 }, + { "Date": "2016-05-17", "Open": 708.6, "High": 708.8, "Low": 688.5, "Close": 691.7, "Volume": 3402357 }, + { "Date": "2016-05-20", "Open": 698.8, "High": 702.5, "Low": 693.4, "Close": 693.7, "Volume": 2082538 }, + { "Date": "2016-05-21", "Open": 698.4, "High": 702.8, "Low": 692.0, "Close": 695.9, "Volume": 1465634 }, + { "Date": "2016-05-22", "Open": 699.1, "High": 700.9, "Low": 693.1, "Close": 697.5, "Volume": 1184318 }, + { "Date": "2016-05-23", "Open": 697.5, "High": 702.0, "Low": 687.0, "Close": 701.9, "Volume": 2171415 }, + { "Date": "2016-05-24", "Open": 675.2, "High": 689.4, "Low": 673.5, "Close": 675.2, "Volume": 4449022 }, + { "Date": "2016-05-27", "Open": 671.0, "High": 672.3, "Low": 663.3, "Close": 668.3, "Volume": 2641085 }, + { "Date": "2016-05-28", "Open": 679.0, "High": 680.3, "Low": 673.0, "Close": 680.0, "Volume": 2173762 }, + { "Date": "2016-05-29", "Open": 683.0, "High": 687.4, "Low": 681.4, "Close": 684.1, "Volume": 1932561 }, + { "Date": "2016-05-30", "Open": 685.5, "High": 692.3, "Low": 683.6, "Close": 692.1, "Volume": 1597714 }, + { "Date": "2016-06-01", "Open": 692.2, "High": 700.6, "Low": 692.1, "Close": 699.2, "Volume": 1344710 }, + { "Date": "2016-06-05", "Open": 696.1, "High": 696.9, "Low": 688.9, "Close": 694.5, "Volume": 1462616 }, + { "Date": "2016-06-06", "Open": 690.0, "High": 701.7, "Low": 689.1, "Close": 697.8, "Volume": 1411925 }, + { "Date": "2016-06-07", "Open": 698.1, "High": 698.2, "Low": 688.2, "Close": 695.4, "Volume": 1304200 }, + { "Date": "2016-06-08", "Open": 699.5, "High": 705.7, "Low": 696.4, "Close": 705.6, "Volume": 1575166 }, + { "Date": "2016-06-11", "Open": 708.0, "High": 716.5, "Low": 707.2, "Close": 715.1, "Volume": 1111762 }, + { "Date": "2016-06-12", "Open": 719.1, "High": 722.9, "Low": 715.9, "Close": 720.6, "Volume": 1336921 }, + { "Date": "2016-06-13", "Open": 723.6, "High": 724.0, "Low": 716.9, "Close": 717.0, "Volume": 935876 }, + { "Date": "2016-06-14", "Open": 721.6, "High": 722.2, "Low": 718.0, "Close": 721.0, "Volume": 950193 }, + { "Date": "2016-06-15", "Open": 725.7, "High": 725.7, "Low": 719.1, "Close": 719.9, "Volume": 1279339 }, + { "Date": "2016-06-18", "Open": 722.7, "High": 736.1, "Low": 721.2, "Close": 733.8, "Volume": 1295476 }, + { "Date": "2016-06-19", "Open": 729.9, "High": 737.0, "Low": 729.0, "Close": 737.0, "Volume": 1227486 }, + { "Date": "2016-06-20", "Open": 737.3, "High": 742.1, "Low": 737.1, "Close": 741.2, "Volume": 1289671 }, + { "Date": "2016-06-21", "Open": 740.4, "High": 741.7, "Low": 735.8, "Close": 738.6, "Volume": 1026306 }, + { "Date": "2016-06-22", "Open": 741.9, "High": 743.2, "Low": 736.6, "Close": 742.7, "Volume": 1259823 }, + { "Date": "2016-06-25", "Open": 740.7, "High": 742.6, "Low": 737.5, "Close": 739.8, "Volume": 1032432 }, + { "Date": "2016-06-26", "Open": 739.0, "High": 741.7, "Low": 734.3, "Close": 738.4, "Volume": 1186738 }, + { "Date": "2016-06-27", "Open": 738.3, "High": 744.5, "Low": 737.0, "Close": 741.8, "Volume": 1512517 }, + { "Date": "2016-06-28", "Open": 747.0, "High": 748.6, "Low": 739.3, "Close": 745.9, "Volume": 3530169 }, + { "Date": "2016-06-29", "Open": 772.7, "High": 778.5, "Low": 766.8, "Close": 768.8, "Volume": 3841482 }, + { "Date": "2016-07-01", "Open": 761.1, "High": 780.4, "Low": 761.1, "Close": 772.9, "Volume": 2700470 }, + { "Date": "2016-07-02", "Open": 768.7, "High": 775.8, "Low": 767.9, "Close": 771.1, "Volume": 1784525 }, + { "Date": "2016-07-03", "Open": 767.2, "High": 773.2, "Low": 766.8, "Close": 773.2, "Volume": 1287421 }, + { "Date": "2016-07-04", "Open": 772.2, "High": 774.1, "Low": 768.8, "Close": 771.6, "Volume": 1140254 }, + { "Date": "2016-07-05", "Open": 773.8, "High": 783.0, "Low": 772.3, "Close": 782.2, "Volume": 1801205 }, + { "Date": "2016-07-08", "Open": 782.0, "High": 782.6, "Low": 778.1, "Close": 781.8, "Volume": 1107857 }, + { "Date": "2016-07-09", "Open": 781.1, "High": 788.9, "Low": 780.6, "Close": 784.3, "Volume": 1318894 }, + { "Date": "2016-07-10", "Open": 783.8, "High": 786.8, "Low": 782.8, "Close": 784.7, "Volume": 786363 }, + { "Date": "2016-07-11", "Open": 785.0, "High": 789.8, "Low": 783.0, "Close": 784.9, "Volume": 975113 }, + { "Date": "2016-07-12", "Open": 781.5, "High": 783.4, "Low": 780.4, "Close": 783.2, "Volume": 740498 }, + { "Date": "2016-07-15", "Open": 783.8, "High": 787.5, "Low": 780.1, "Close": 782.4, "Volume": 938186 }, + { "Date": "2016-07-16", "Open": 780.3, "High": 781.0, "Low": 773.4, "Close": 777.1, "Volume": 1028047 }, + { "Date": "2016-07-17", "Open": 777.3, "High": 780.8, "Low": 773.5, "Close": 779.9, "Volume": 924226 }, + { "Date": "2016-07-18", "Open": 780.0, "High": 782.9, "Low": 777.0, "Close": 777.5, "Volume": 719429 }, + { "Date": "2016-07-19", "Open": 775.0, "High": 777.1, "Low": 773.1, "Close": 775.4, "Volume": 861546 }, + { "Date": "2016-07-22", "Open": 773.3, "High": 774.5, "Low": 770.0, "Close": 772.1, "Volume": 951362 }, + { "Date": "2016-07-23", "Open": 775.5, "High": 776.4, "Low": 771.8, "Close": 772.1, "Volume": 928232 }, + { "Date": "2016-07-24", "Open": 770.6, "High": 774.5, "Low": 767.1, "Close": 769.6, "Volume": 1071999 }, + { "Date": "2016-07-25", "Open": 767.0, "High": 771.9, "Low": 763.2, "Close": 769.4, "Volume": 926883 }, + { "Date": "2016-07-26", "Open": 769.0, "High": 776.1, "Low": 765.9, "Close": 769.5, "Volume": 1166681 }, + { "Date": "2016-07-29", "Open": 768.7, "High": 775.0, "Low": 766.6, "Close": 772.1, "Volume": 847565 }, + { "Date": "2016-07-30", "Open": 769.3, "High": 774.5, "Low": 766.8, "Close": 769.1, "Volume": 1130029 }, + { "Date": "2016-07-31", "Open": 767.0, "High": 769.1, "Low": 765.4, "Close": 767.0, "Volume": 1248556 }, + { "Date": "2016-08-01", "Open": 769.3, "High": 771.0, "Low": 764.3, "Close": 768.8, "Volume": 925131 }, + { "Date": "2016-08-02", "Open": 773.0, "High": 773.9, "Low": 768.4, "Close": 771.5, "Volume": 1072658 }, + { "Date": "2016-08-06", "Open": 773.5, "High": 782.0, "Low": 771.0, "Close": 780.1, "Volume": 1442822 }, + { "Date": "2016-08-07", "Open": 780.0, "High": 782.7, "Low": 776.2, "Close": 780.4, "Volume": 894021 }, + { "Date": "2016-08-08", "Open": 778.6, "High": 780.4, "Low": 773.6, "Close": 775.3, "Volume": 1270264 }, + { "Date": "2016-08-09", "Open": 770.1, "High": 773.2, "Low": 759.7, "Close": 759.7, "Volume": 1885496 }, + { "Date": "2016-08-12", "Open": 755.1, "High": 770.3, "Low": 754.0, "Close": 769.0, "Volume": 1310986 }, + { "Date": "2016-08-13", "Open": 764.5, "High": 766.2, "Low": 755.8, "Close": 759.7, "Volume": 1395046 }, + { "Date": "2016-08-14", "Open": 759.6, "High": 767.7, "Low": 759.1, "Close": 762.5, "Volume": 1094490 }, + { "Date": "2016-08-15", "Open": 762.9, "High": 773.8, "Low": 760.0, "Close": 771.8, "Volume": 1346751 }, + { "Date": "2016-08-16", "Open": 769.8, "High": 769.8, "Low": 764.7, "Close": 768.9, "Volume": 2049338 }, + { "Date": "2016-08-19", "Open": 772.4, "High": 774.0, "Low": 764.4, "Close": 765.7, "Volume": 1172824 }, + { "Date": "2016-08-20", "Open": 769.0, "High": 773.3, "Low": 768.5, "Close": 771.4, "Volume": 978631 }, + { "Date": "2016-08-21", "Open": 772.7, "High": 777.2, "Low": 768.3, "Close": 776.2, "Volume": 1167810 }, + { "Date": "2016-08-22", "Open": 780.0, "High": 789.9, "Low": 778.4, "Close": 787.2, "Volume": 1486223 }, + { "Date": "2016-08-23", "Open": 786.6, "High": 788.9, "Low": 784.1, "Close": 786.9, "Volume": 1411937 }, + { "Date": "2016-08-26", "Open": 782.7, "High": 782.7, "Low": 773.1, "Close": 774.2, "Volume": 1533206 }, + { "Date": "2016-08-27", "Open": 775.5, "High": 786.0, "Low": 774.3, "Close": 783.0, "Volume": 1153247 }, + { "Date": "2016-08-28", "Open": 777.9, "High": 781.8, "Low": 775.0, "Close": 781.6, "Volume": 1109834 }, + { "Date": "2016-08-29", "Open": 781.4, "High": 785.8, "Low": 774.2, "Close": 775.0, "Volume": 1314746 }, + { "Date": "2016-08-30", "Open": 776.3, "High": 780.9, "Low": 774.1, "Close": 777.3, "Volume": 1585333 }, + { "Date": "2016-09-03", "Open": 774.3, "High": 776.1, "Low": 769.5, "Close": 772.6, "Volume": 1278821 }, + { "Date": "2016-09-04", "Open": 776.0, "High": 778.7, "Low": 772.9, "Close": 776.4, "Volume": 1201350 }, + { "Date": "2016-09-05", "Open": 779.3, "High": 782.1, "Low": 775.6, "Close": 776.5, "Volume": 1461151 }, + { "Date": "2016-09-06", "Open": 779.0, "High": 780.5, "Low": 775.5, "Close": 776.9, "Volume": 1070692 }, + { "Date": "2016-09-07", "Open": 779.7, "High": 779.7, "Low": 770.8, "Close": 775.1, "Volume": 933158 }, + { "Date": "2016-09-10", "Open": 777.7, "High": 789.4, "Low": 775.9, "Close": 785.9, "Volume": 1174923 }, + { "Date": "2016-09-11", "Open": 786.7, "High": 792.3, "Low": 780.6, "Close": 783.1, "Volume": 1372461 }, + { "Date": "2016-09-12", "Open": 783.8, "High": 788.1, "Low": 782.1, "Close": 786.1, "Volume": 937435 }, + { "Date": "2016-09-13", "Open": 781.2, "High": 781.2, "Low": 773.0, "Close": 778.2, "Volume": 1365277 }, + { "Date": "2016-09-14", "Open": 781.6, "High": 784.0, "Low": 776.0, "Close": 778.5, "Volume": 852487 }, + { "Date": "2016-09-17", "Open": 779.8, "High": 785.9, "Low": 777.5, "Close": 780.0, "Volume": 1092973 }, + { "Date": "2016-09-18", "Open": 787.9, "High": 801.6, "Low": 785.6, "Close": 795.3, "Volume": 2056903 }, + { "Date": "2016-09-19", "Open": 798.9, "High": 804.6, "Low": 797.6, "Close": 801.6, "Volume": 1766798 }, + { "Date": "2016-09-20", "Open": 803.3, "High": 804.0, "Low": 796.0, "Close": 797.0, "Volume": 1757528 }, + { "Date": "2016-09-21", "Open": 795.0, "High": 799.5, "Low": 794.0, "Close": 799.4, "Volume": 1266181 }, + { "Date": "2016-09-24", "Open": 804.9, "High": 815.2, "Low": 804.8, "Close": 813.1, "Volume": 1697514 }, + { "Date": "2016-09-25", "Open": 816.7, "High": 816.7, "Low": 805.1, "Close": 807.7, "Volume": 1576404 }, + { "Date": "2016-09-26", "Open": 806.3, "High": 807.0, "Low": 796.3, "Close": 799.1, "Volume": 1647733 }, + { "Date": "2016-09-27", "Open": 801.0, "High": 803.5, "Low": 791.5, "Close": 795.4, "Volume": 2749221 }, + { "Date": "2016-09-28", "Open": 808.4, "High": 815.5, "Low": 793.6, "Close": 795.4, "Volume": 4269902 }, + { "Date": "2016-09-31", "Open": 795.5, "High": 796.9, "Low": 784.0, "Close": 784.5, "Volume": 2427284 }, + { "Date": "2016-10-01", "Open": 782.9, "High": 789.5, "Low": 775.5, "Close": 783.6, "Volume": 2406356 }, + { "Date": "2016-10-02", "Open": 778.2, "High": 781.6, "Low": 763.5, "Close": 768.7, "Volume": 1918414 }, + { "Date": "2016-10-03", "Open": 767.3, "High": 770.0, "Low": 759.0, "Close": 762.1, "Volume": 1943175 }, + { "Date": "2016-10-04", "Open": 750.7, "High": 770.4, "Low": 750.6, "Close": 762.0, "Volume": 2134812 }, + { "Date": "2016-10-07", "Open": 774.5, "High": 785.2, "Low": 772.5, "Close": 782.5, "Volume": 1585070 }, + { "Date": "2016-10-08", "Open": 783.4, "High": 795.6, "Low": 780.2, "Close": 790.5, "Volume": 1366873 }, + { "Date": "2016-10-09", "Open": 779.9, "High": 791.2, "Low": 771.7, "Close": 785.3, "Volume": 2607121 }, + { "Date": "2016-10-10", "Open": 791.2, "High": 791.2, "Low": 752.2, "Close": 762.6, "Volume": 4745183 }, + { "Date": "2016-10-11", "Open": 756.5, "High": 760.8, "Low": 750.4, "Close": 754.0, "Volume": 2431815 }, + { "Date": "2016-10-14", "Open": 755.6, "High": 757.9, "Low": 727.5, "Close": 736.1, "Volume": 3654385 }, + { "Date": "2016-10-15", "Open": 747.0, "High": 764.4, "Low": 747.0, "Close": 758.5, "Volume": 2384001 }, + { "Date": "2016-10-16", "Open": 755.2, "High": 766.4, "Low": 750.5, "Close": 764.5, "Volume": 1472594 }, + { "Date": "2016-10-17", "Open": 766.9, "High": 772.7, "Low": 764.2, "Close": 771.2, "Volume": 1286961 }, + { "Date": "2016-10-18", "Open": 771.4, "High": 775.0, "Low": 760.0, "Close": 760.5, "Volume": 1547145 }, + { "Date": "2016-10-21", "Open": 762.6, "High": 769.7, "Low": 760.6, "Close": 769.2, "Volume": 1330639 }, + { "Date": "2016-10-22", "Open": 772.6, "High": 777.0, "Low": 767.0, "Close": 768.3, "Volume": 1593108 }, + { "Date": "2016-10-23", "Open": 767.7, "High": 768.3, "Low": 755.3, "Close": 761.0, "Volume": 1478417 }, + { "Date": "2016-10-25", "Open": 764.3, "High": 765.0, "Low": 760.5, "Close": 761.7, "Volume": 587421 }, + { "Date": "2016-10-28", "Open": 760.0, "High": 779.5, "Low": 759.8, "Close": 768.2, "Volume": 2188151 }, + { "Date": "2016-10-29", "Open": 771.5, "High": 778.5, "Low": 768.2, "Close": 770.8, "Volume": 1616618 }, + { "Date": "2016-10-30", "Open": 770.1, "High": 773.0, "Low": 754.8, "Close": 758.0, "Volume": 2392890 }, + { "Date": "2016-11-01", "Open": 757.4, "High": 759.9, "Low": 737.0, "Close": 747.9, "Volume": 3017947 }, + { "Date": "2016-11-02", "Open": 744.6, "High": 754.0, "Low": 743.1, "Close": 750.5, "Volume": 1452484 }, + { "Date": "2016-11-05", "Open": 757.7, "High": 763.9, "Low": 752.9, "Close": 762.5, "Volume": 1394223 }, + { "Date": "2016-11-06", "Open": 764.7, "High": 768.8, "Low": 757.3, "Close": 759.1, "Volume": 1690689 }, + { "Date": "2016-11-07", "Open": 761.0, "High": 771.4, "Low": 755.8, "Close": 771.2, "Volume": 1760966 }, + { "Date": "2016-11-08", "Open": 772.5, "High": 778.2, "Low": 767.2, "Close": 776.4, "Volume": 1488059 }, + { "Date": "2016-11-09", "Open": 780.0, "High": 789.4, "Low": 779.0, "Close": 789.3, "Volume": 1821914 }, + { "Date": "2016-11-12", "Open": 785.0, "High": 791.3, "Low": 784.4, "Close": 789.3, "Volume": 2104117 }, + { "Date": "2016-11-13", "Open": 793.9, "High": 804.4, "Low": 793.3, "Close": 796.1, "Volume": 2145209 }, + { "Date": "2016-11-14", "Open": 797.4, "High": 804.0, "Low": 794.0, "Close": 797.1, "Volume": 1704150 }, + { "Date": "2016-11-15", "Open": 797.3, "High": 803.0, "Low": 792.9, "Close": 797.9, "Volume": 1626499 }, + { "Date": "2016-11-16", "Open": 800.4, "High": 800.9, "Low": 790.3, "Close": 790.8, "Volume": 2443796 }, + { "Date": "2016-11-19", "Open": 790.2, "High": 797.7, "Low": 786.3, "Close": 794.2, "Volume": 1232087 }, + { "Date": "2016-11-20", "Open": 796.8, "High": 798.6, "Low": 793.3, "Close": 796.4, "Volume": 951014 }, + { "Date": "2016-11-21", "Open": 795.8, "High": 796.7, "Low": 787.1, "Close": 794.6, "Volume": 1211346 }, + { "Date": "2016-11-22", "Open": 792.4, "High": 793.3, "Low": 788.6, "Close": 791.3, "Volume": 972169 }, + { "Date": "2016-11-23", "Open": 790.9, "High": 792.7, "Low": 787.3, "Close": 789.9, "Volume": 623944 }, + { "Date": "2016-11-27", "Open": 790.7, "High": 797.9, "Low": 787.7, "Close": 791.5, "Volume": 789321 }, + { "Date": "2016-11-28", "Open": 793.7, "High": 794.2, "Low": 783.2, "Close": 785.0, "Volume": 1153824 }, + { "Date": "2016-11-29", "Open": 783.3, "High": 785.9, "Low": 778.9, "Close": 782.8, "Volume": 744272 }, + { "Date": "2016-11-30", "Open": 782.8, "High": 782.8, "Low": 770.4, "Close": 771.8, "Volume": 1769950 }, + { "Date": "2017-00-03", "Open": 778.8, "High": 789.6, "Low": 775.8, "Close": 786.1, "Volume": 1657268 }, + { "Date": "2017-00-04", "Open": 788.4, "High": 791.3, "Low": 783.2, "Close": 786.9, "Volume": 1072958 }, + { "Date": "2017-00-05", "Open": 786.1, "High": 794.5, "Low": 785.0, "Close": 794.0, "Volume": 1335167 }, + { "Date": "2017-00-06", "Open": 795.3, "High": 807.9, "Low": 792.2, "Close": 806.1, "Volume": 1640170 }, + { "Date": "2017-00-09", "Open": 806.4, "High": 810.0, "Low": 802.8, "Close": 806.6, "Volume": 1274645 }, + { "Date": "2017-00-10", "Open": 807.9, "High": 809.1, "Low": 803.5, "Close": 804.8, "Volume": 1176780 }, + { "Date": "2017-00-11", "Open": 805.0, "High": 808.1, "Low": 801.4, "Close": 807.9, "Volume": 1065936 }, + { "Date": "2017-00-12", "Open": 807.1, "High": 807.4, "Low": 799.2, "Close": 806.4, "Volume": 1353057 }, + { "Date": "2017-00-13", "Open": 807.5, "High": 811.2, "Low": 806.7, "Close": 807.9, "Volume": 1099215 }, + { "Date": "2017-00-17", "Open": 807.1, "High": 807.1, "Low": 800.4, "Close": 804.6, "Volume": 1362115 }, + { "Date": "2017-00-18", "Open": 805.8, "High": 806.2, "Low": 801.0, "Close": 806.1, "Volume": 1294407 }, + { "Date": "2017-00-19", "Open": 805.1, "High": 809.5, "Low": 801.8, "Close": 802.2, "Volume": 919325 }, + { "Date": "2017-00-20", "Open": 806.9, "High": 806.9, "Low": 801.7, "Close": 805.0, "Volume": 1670045 }, + { "Date": "2017-00-23", "Open": 807.3, "High": 820.9, "Low": 803.7, "Close": 819.3, "Volume": 1963628 }, + { "Date": "2017-00-24", "Open": 822.3, "High": 825.9, "Low": 817.8, "Close": 823.9, "Volume": 1474010 }, + { "Date": "2017-00-25", "Open": 829.6, "High": 835.8, "Low": 825.1, "Close": 835.7, "Volume": 1627304 }, + { "Date": "2017-00-26", "Open": 837.8, "High": 838.0, "Low": 827.0, "Close": 832.1, "Volume": 2973891 }, + { "Date": "2017-00-27", "Open": 834.7, "High": 842.0, "Low": 820.4, "Close": 823.3, "Volume": 2965771 }, + { "Date": "2017-00-30", "Open": 814.7, "High": 815.8, "Low": 799.8, "Close": 802.3, "Volume": 3246573 }, + { "Date": "2017-00-31", "Open": 796.9, "High": 801.3, "Low": 790.5, "Close": 796.8, "Volume": 2160556 }, + { "Date": "2017-01-01", "Open": 799.7, "High": 801.2, "Low": 791.2, "Close": 795.7, "Volume": 2029744 }, + { "Date": "2017-01-02", "Open": 793.8, "High": 802.7, "Low": 792.0, "Close": 798.5, "Volume": 1532138 }, + { "Date": "2017-01-03", "Open": 803.0, "High": 806.0, "Low": 800.4, "Close": 801.5, "Volume": 1463448 }, + { "Date": "2017-01-06", "Open": 799.7, "High": 801.7, "Low": 795.3, "Close": 801.3, "Volume": 1184483 }, + { "Date": "2017-01-07", "Open": 804.0, "High": 810.5, "Low": 801.8, "Close": 807.0, "Volume": 1241221 }, + { "Date": "2017-01-08", "Open": 807.0, "High": 811.8, "Low": 803.2, "Close": 808.4, "Volume": 1155990 }, + { "Date": "2017-01-09", "Open": 809.5, "High": 810.7, "Low": 804.5, "Close": 809.6, "Volume": 990391 }, + { "Date": "2017-01-10", "Open": 811.7, "High": 815.3, "Low": 809.8, "Close": 813.7, "Volume": 1134976 }, + { "Date": "2017-01-13", "Open": 816.0, "High": 821.0, "Low": 815.5, "Close": 819.2, "Volume": 1213324 }, + { "Date": "2017-01-14", "Open": 819.0, "High": 823.0, "Low": 816.0, "Close": 820.5, "Volume": 1054732 }, + { "Date": "2017-01-15", "Open": 819.4, "High": 823.0, "Low": 818.5, "Close": 819.0, "Volume": 1313617 }, + { "Date": "2017-01-16", "Open": 819.9, "High": 824.4, "Low": 819.0, "Close": 824.2, "Volume": 1287626 }, + { "Date": "2017-01-17", "Open": 823.0, "High": 828.1, "Low": 821.7, "Close": 828.1, "Volume": 1611039 }, + { "Date": "2017-01-21", "Open": 828.7, "High": 833.5, "Low": 828.4, "Close": 831.7, "Volume": 1262337 }, + { "Date": "2017-01-22", "Open": 828.7, "High": 833.3, "Low": 828.6, "Close": 830.8, "Volume": 987248 }, + { "Date": "2017-01-23", "Open": 830.1, "High": 832.5, "Low": 822.9, "Close": 831.3, "Volume": 1472771 }, + { "Date": "2017-01-24", "Open": 827.7, "High": 829.0, "Low": 824.2, "Close": 828.6, "Volume": 1392202 }, + { "Date": "2017-01-27", "Open": 824.5, "High": 830.5, "Low": 824.0, "Close": 829.3, "Volume": 1101466 }, + { "Date": "2017-01-28", "Open": 825.6, "High": 828.5, "Low": 820.2, "Close": 823.2, "Volume": 2260769 }, + { "Date": "2017-02-01", "Open": 828.9, "High": 836.3, "Low": 827.3, "Close": 835.2, "Volume": 1496540 }, + { "Date": "2017-02-02", "Open": 833.9, "High": 834.5, "Low": 829.6, "Close": 830.6, "Volume": 942476 }, + { "Date": "2017-02-03", "Open": 830.6, "High": 831.4, "Low": 825.8, "Close": 829.1, "Volume": 896378 }, + { "Date": "2017-02-06", "Open": 827.0, "High": 828.9, "Low": 822.4, "Close": 827.8, "Volume": 1109037 }, + { "Date": "2017-02-07", "Open": 827.4, "High": 833.4, "Low": 826.5, "Close": 831.9, "Volume": 1037630 }, + { "Date": "2017-02-08", "Open": 833.5, "High": 838.1, "Low": 831.8, "Close": 835.4, "Volume": 989773 }, + { "Date": "2017-02-09", "Open": 836.0, "High": 842.0, "Low": 834.2, "Close": 838.7, "Volume": 1261517 }, + { "Date": "2017-02-10", "Open": 843.3, "High": 844.9, "Low": 839.5, "Close": 843.3, "Volume": 1704024 }, + { "Date": "2017-02-13", "Open": 844.0, "High": 848.7, "Low": 843.3, "Close": 845.5, "Volume": 1223647 }, + { "Date": "2017-02-14", "Open": 843.6, "High": 847.2, "Low": 840.8, "Close": 845.6, "Volume": 780198 }, + { "Date": "2017-02-15", "Open": 847.6, "High": 848.6, "Low": 840.8, "Close": 847.2, "Volume": 1381474 }, + { "Date": "2017-02-16", "Open": 849.0, "High": 850.9, "Low": 846.1, "Close": 848.8, "Volume": 977560 }, + { "Date": "2017-02-17", "Open": 851.6, "High": 853.4, "Low": 847.1, "Close": 852.1, "Volume": 1716471 }, + { "Date": "2017-02-20", "Open": 850.0, "High": 850.2, "Low": 845.1, "Close": 848.4, "Volume": 1231521 }, + { "Date": "2017-02-21", "Open": 851.4, "High": 853.5, "Low": 829.0, "Close": 830.5, "Volume": 2463484 }, + { "Date": "2017-02-22", "Open": 831.9, "High": 835.5, "Low": 827.2, "Close": 829.6, "Volume": 1401465 }, + { "Date": "2017-02-23", "Open": 821.0, "High": 822.6, "Low": 812.3, "Close": 817.6, "Volume": 3487056 }, + { "Date": "2017-02-24", "Open": 820.1, "High": 821.9, "Low": 808.9, "Close": 814.4, "Volume": 1981006 }, + { "Date": "2017-02-27", "Open": 807.0, "High": 821.6, "Low": 803.4, "Close": 819.5, "Volume": 1894990 }, + { "Date": "2017-02-28", "Open": 820.4, "High": 826.0, "Low": 814.0, "Close": 820.9, "Volume": 1620542 }, + { "Date": "2017-02-29", "Open": 825.0, "High": 832.8, "Low": 822.4, "Close": 831.4, "Volume": 1786321 }, + { "Date": "2017-02-30", "Open": 833.5, "High": 833.7, "Low": 829.0, "Close": 831.5, "Volume": 1055339 }, + { "Date": "2017-02-31", "Open": 829.0, "High": 831.6, "Low": 827.4, "Close": 829.6, "Volume": 1401893 }, + { "Date": "2017-03-03", "Open": 829.2, "High": 840.9, "Low": 829.2, "Close": 838.5, "Volume": 1671503 }, + { "Date": "2017-03-04", "Open": 831.4, "High": 835.2, "Low": 829.0, "Close": 834.6, "Volume": 1045363 }, + { "Date": "2017-03-05", "Open": 835.5, "High": 842.5, "Low": 830.7, "Close": 831.4, "Volume": 1555328 }, + { "Date": "2017-03-06", "Open": 832.4, "High": 836.4, "Low": 826.5, "Close": 827.9, "Volume": 1254433 }, + { "Date": "2017-03-07", "Open": 828.0, "High": 828.5, "Low": 820.5, "Close": 824.7, "Volume": 1057253 }, + { "Date": "2017-03-10", "Open": 825.4, "High": 829.4, "Low": 823.8, "Close": 824.7, "Volume": 978905 }, + { "Date": "2017-03-11", "Open": 824.7, "High": 827.4, "Low": 817.0, "Close": 823.4, "Volume": 1079732 }, + { "Date": "2017-03-12", "Open": 821.9, "High": 826.7, "Low": 821.0, "Close": 824.3, "Volume": 900480 }, + { "Date": "2017-03-13", "Open": 822.1, "High": 826.4, "Low": 821.4, "Close": 823.6, "Volume": 1122362 }, + { "Date": "2017-03-17", "Open": 825.0, "High": 837.8, "Low": 824.5, "Close": 837.2, "Volume": 895015 }, + { "Date": "2017-03-18", "Open": 834.2, "High": 838.9, "Low": 832.7, "Close": 836.8, "Volume": 836722 }, + { "Date": "2017-03-19", "Open": 839.8, "High": 842.2, "Low": 836.3, "Close": 838.2, "Volume": 954330 }, + { "Date": "2017-03-20", "Open": 841.4, "High": 845.2, "Low": 839.3, "Close": 841.6, "Volume": 959031 }, + { "Date": "2017-03-21", "Open": 842.9, "High": 843.9, "Low": 840.6, "Close": 843.2, "Volume": 1323583 }, + { "Date": "2017-03-24", "Open": 851.2, "High": 863.5, "Low": 849.9, "Close": 862.8, "Volume": 1372541 }, + { "Date": "2017-03-25", "Open": 865.0, "High": 875.0, "Low": 862.8, "Close": 872.3, "Volume": 1671972 }, + { "Date": "2017-03-26", "Open": 874.2, "High": 876.0, "Low": 867.8, "Close": 871.7, "Volume": 1237167 }, + { "Date": "2017-03-27", "Open": 873.6, "High": 875.4, "Low": 870.4, "Close": 874.3, "Volume": 2026816 }, + { "Date": "2017-03-28", "Open": 910.7, "High": 916.9, "Low": 905.8, "Close": 906.0, "Volume": 3276255 }, + { "Date": "2017-04-01", "Open": 901.9, "High": 915.7, "Low": 901.5, "Close": 912.6, "Volume": 2115993 }, + { "Date": "2017-04-02", "Open": 909.6, "High": 920.8, "Low": 909.5, "Close": 916.4, "Volume": 1587219 }, + { "Date": "2017-04-03", "Open": 914.9, "High": 928.1, "Low": 912.5, "Close": 927.0, "Volume": 1499532 }, + { "Date": "2017-04-04", "Open": 926.1, "High": 935.9, "Low": 924.6, "Close": 931.7, "Volume": 1422144 }, + { "Date": "2017-04-05", "Open": 933.5, "High": 934.9, "Low": 925.2, "Close": 927.1, "Volume": 1911275 }, + { "Date": "2017-04-08", "Open": 926.1, "High": 936.9, "Low": 925.3, "Close": 934.3, "Volume": 1329825 }, + { "Date": "2017-04-09", "Open": 937.0, "High": 937.5, "Low": 929.5, "Close": 932.2, "Volume": 1581809 }, + { "Date": "2017-04-10", "Open": 932.0, "High": 932.0, "Low": 925.2, "Close": 928.8, "Volume": 1173925 }, + { "Date": "2017-04-11", "Open": 925.3, "High": 932.5, "Low": 923.0, "Close": 930.6, "Volume": 835386 }, + { "Date": "2017-04-12", "Open": 931.5, "High": 933.4, "Low": 927.9, "Close": 932.2, "Volume": 1050601 }, + { "Date": "2017-04-15", "Open": 933.0, "High": 938.3, "Low": 929.3, "Close": 937.1, "Volume": 1108496 }, + { "Date": "2017-04-16", "Open": 940.0, "High": 943.1, "Low": 937.6, "Close": 943.0, "Volume": 969479 }, + { "Date": "2017-04-17", "Open": 935.7, "High": 939.3, "Low": 918.1, "Close": 919.6, "Volume": 2362072 }, + { "Date": "2017-04-18", "Open": 921.0, "High": 933.2, "Low": 918.8, "Close": 930.2, "Volume": 1596897 }, + { "Date": "2017-04-19", "Open": 931.5, "High": 937.8, "Low": 931.0, "Close": 934.0, "Volume": 1393024 }, + { "Date": "2017-04-22", "Open": 935.0, "High": 941.9, "Low": 935.0, "Close": 941.9, "Volume": 1120385 }, + { "Date": "2017-04-23", "Open": 947.9, "High": 951.5, "Low": 942.6, "Close": 948.8, "Volume": 1270817 }, + { "Date": "2017-04-24", "Open": 953.0, "High": 955.1, "Low": 949.5, "Close": 955.0, "Volume": 1034199 }, + { "Date": "2017-04-25", "Open": 957.3, "High": 972.6, "Low": 955.5, "Close": 969.5, "Volume": 1660474 }, + { "Date": "2017-04-26", "Open": 969.7, "High": 975.0, "Low": 965.0, "Close": 971.5, "Volume": 1252010 }, + { "Date": "2017-04-30", "Open": 970.3, "High": 976.2, "Low": 969.5, "Close": 975.9, "Volume": 1466654 }, + { "Date": "2017-04-31", "Open": 975.0, "High": 979.3, "Low": 960.2, "Close": 964.9, "Volume": 2448067 }, + { "Date": "2017-05-01", "Open": 969.0, "High": 971.5, "Low": 960.0, "Close": 967.0, "Volume": 1410458 }, + { "Date": "2017-05-02", "Open": 969.5, "High": 975.9, "Low": 966.0, "Close": 975.6, "Volume": 1750955 }, + { "Date": "2017-05-05", "Open": 976.5, "High": 986.9, "Low": 975.1, "Close": 983.7, "Volume": 1252106 }, + { "Date": "2017-05-06", "Open": 983.2, "High": 988.3, "Low": 975.1, "Close": 976.6, "Volume": 1814624 }, + { "Date": "2017-05-07", "Open": 979.6, "High": 984.1, "Low": 975.8, "Close": 981.1, "Volume": 1453874 }, + { "Date": "2017-05-08", "Open": 982.4, "High": 984.6, "Low": 977.2, "Close": 983.4, "Volume": 1481916 }, + { "Date": "2017-05-09", "Open": 984.5, "High": 984.5, "Low": 935.6, "Close": 949.8, "Volume": 3309389 }, + { "Date": "2017-05-12", "Open": 939.6, "High": 949.4, "Low": 915.2, "Close": 942.9, "Volume": 3763529 }, + { "Date": "2017-05-13", "Open": 951.9, "High": 960.0, "Low": 944.1, "Close": 953.4, "Volume": 2013337 }, + { "Date": "2017-05-14", "Open": 959.9, "High": 961.1, "Low": 942.3, "Close": 950.8, "Volume": 1489715 }, + { "Date": "2017-05-15", "Open": 934.0, "High": 943.3, "Low": 924.4, "Close": 942.3, "Volume": 2133050 }, + { "Date": "2017-05-16", "Open": 940.0, "High": 942.0, "Low": 931.6, "Close": 939.8, "Volume": 3094711 }, + { "Date": "2017-05-19", "Open": 950.0, "High": 960.0, "Low": 949.0, "Close": 957.4, "Volume": 1533336 }, + { "Date": "2017-05-20", "Open": 957.5, "High": 961.6, "Low": 950.0, "Close": 950.6, "Volume": 1125990 }, + { "Date": "2017-05-21", "Open": 953.6, "High": 960.1, "Low": 950.8, "Close": 959.5, "Volume": 1202233 }, + { "Date": "2017-05-22", "Open": 958.7, "High": 960.7, "Low": 954.5, "Close": 957.1, "Volume": 941958 }, + { "Date": "2017-05-23", "Open": 956.8, "High": 966.0, "Low": 954.2, "Close": 965.6, "Volume": 1527856 }, + { "Date": "2017-05-26", "Open": 969.9, "High": 973.3, "Low": 950.8, "Close": 952.3, "Volume": 1598355 }, + { "Date": "2017-05-27", "Open": 942.5, "High": 948.3, "Low": 926.9, "Close": 927.3, "Volume": 2579930 }, + { "Date": "2017-05-28", "Open": 929.0, "High": 942.8, "Low": 916.0, "Close": 940.5, "Volume": 2721406 }, + { "Date": "2017-05-29", "Open": 929.9, "High": 931.3, "Low": 910.6, "Close": 917.8, "Volume": 3299176 }, + { "Date": "2017-05-30", "Open": 926.0, "High": 926.0, "Low": 908.3, "Close": 908.7, "Volume": 2090226 }, + { "Date": "2017-06-03", "Open": 912.2, "High": 913.9, "Low": 894.8, "Close": 898.7, "Volume": 1710373 }, + { "Date": "2017-06-05", "Open": 901.8, "High": 914.5, "Low": 898.5, "Close": 911.7, "Volume": 1813884 }, + { "Date": "2017-06-06", "Open": 904.1, "High": 914.9, "Low": 899.7, "Close": 906.7, "Volume": 1424503 }, + { "Date": "2017-06-07", "Open": 908.9, "High": 921.5, "Low": 908.9, "Close": 918.6, "Volume": 1637785 }, + { "Date": "2017-06-10", "Open": 921.8, "High": 930.4, "Low": 919.6, "Close": 928.8, "Volume": 1192825 }, + { "Date": "2017-06-11", "Open": 929.5, "High": 931.4, "Low": 922.0, "Close": 930.1, "Volume": 1113235 }, + { "Date": "2017-06-12", "Open": 938.7, "High": 946.3, "Low": 934.5, "Close": 943.8, "Volume": 1532144 }, + { "Date": "2017-06-13", "Open": 946.3, "High": 954.5, "Low": 943.0, "Close": 947.2, "Volume": 1294687 }, + { "Date": "2017-06-14", "Open": 952.0, "High": 956.9, "Low": 948.0, "Close": 956.0, "Volume": 1053774 }, + { "Date": "2017-06-17", "Open": 957.0, "High": 960.7, "Low": 949.2, "Close": 953.4, "Volume": 1165537 }, + { "Date": "2017-06-18", "Open": 953.0, "High": 968.0, "Low": 950.6, "Close": 965.4, "Volume": 1153964 }, + { "Date": "2017-06-19", "Open": 967.8, "High": 973.0, "Low": 964.0, "Close": 970.9, "Volume": 1224540 }, + { "Date": "2017-06-20", "Open": 975.0, "High": 975.9, "Low": 961.5, "Close": 968.1, "Volume": 1624463 }, + { "Date": "2017-06-21", "Open": 962.3, "High": 973.2, "Low": 960.1, "Close": 972.9, "Volume": 1711000 }, + { "Date": "2017-06-24", "Open": 972.2, "High": 986.2, "Low": 970.8, "Close": 980.3, "Volume": 3248347 }, + { "Date": "2017-06-25", "Open": 953.8, "High": 959.7, "Low": 945.4, "Close": 950.7, "Volume": 4660979 }, + { "Date": "2017-06-26", "Open": 954.7, "High": 955.0, "Low": 942.3, "Close": 947.8, "Volume": 2088256 }, + { "Date": "2017-06-27", "Open": 951.8, "High": 951.8, "Low": 920.0, "Close": 934.1, "Volume": 3212996 }, + { "Date": "2017-06-28", "Open": 929.4, "High": 943.8, "Low": 927.5, "Close": 941.5, "Volume": 1846351 }, + { "Date": "2017-06-31", "Open": 941.9, "High": 943.6, "Low": 926.0, "Close": 930.5, "Volume": 1970095 }, + { "Date": "2017-07-01", "Open": 932.4, "High": 937.5, "Low": 929.3, "Close": 930.8, "Volume": 1277734 }, + { "Date": "2017-07-02", "Open": 928.6, "High": 932.6, "Low": 916.7, "Close": 930.4, "Volume": 1824448 }, + { "Date": "2017-07-03", "Open": 930.3, "High": 932.2, "Low": 922.2, "Close": 923.6, "Volume": 1202512 }, + { "Date": "2017-07-04", "Open": 926.8, "High": 930.3, "Low": 923.0, "Close": 928.0, "Volume": 1082267 }, + { "Date": "2017-07-07", "Open": 929.1, "High": 931.7, "Low": 926.5, "Close": 929.4, "Volume": 1032239 }, + { "Date": "2017-07-08", "Open": 927.1, "High": 935.8, "Low": 925.6, "Close": 926.8, "Volume": 1061579 }, + { "Date": "2017-07-09", "Open": 920.6, "High": 926.0, "Low": 917.3, "Close": 922.9, "Volume": 1192081 }, + { "Date": "2017-07-10", "Open": 917.5, "High": 919.3, "Low": 906.1, "Close": 907.2, "Volume": 1823967 }, + { "Date": "2017-07-11", "Open": 908.0, "High": 917.8, "Low": 905.6, "Close": 914.4, "Volume": 1206782 }, + { "Date": "2017-07-14", "Open": 922.5, "High": 924.7, "Low": 918.2, "Close": 922.7, "Volume": 1064530 }, + { "Date": "2017-07-15", "Open": 924.2, "High": 926.5, "Low": 919.8, "Close": 922.2, "Volume": 883369 }, + { "Date": "2017-07-16", "Open": 925.3, "High": 932.7, "Low": 923.4, "Close": 927.0, "Volume": 1006711 }, + { "Date": "2017-07-17", "Open": 925.8, "High": 926.9, "Low": 911.0, "Close": 911.0, "Volume": 1277238 }, + { "Date": "2017-07-18", "Open": 910.3, "High": 915.3, "Low": 907.1, "Close": 910.7, "Volume": 1342689 }, + { "Date": "2017-07-21", "Open": 910.0, "High": 913.0, "Low": 903.4, "Close": 906.7, "Volume": 943441 }, + { "Date": "2017-07-22", "Open": 912.7, "High": 925.9, "Low": 911.5, "Close": 924.7, "Volume": 1166737 }, + { "Date": "2017-07-23", "Open": 921.9, "High": 929.9, "Low": 919.4, "Close": 927.0, "Volume": 1090248 }, + { "Date": "2017-07-24", "Open": 928.7, "High": 930.8, "Low": 915.5, "Close": 921.3, "Volume": 1270306 }, + { "Date": "2017-07-25", "Open": 923.5, "High": 925.6, "Low": 915.5, "Close": 915.9, "Volume": 1053376 }, + { "Date": "2017-07-28", "Open": 916.0, "High": 919.2, "Low": 911.9, "Close": 913.8, "Volume": 1086484 }, + { "Date": "2017-07-29", "Open": 905.1, "High": 923.3, "Low": 905.0, "Close": 921.3, "Volume": 1185564 }, + { "Date": "2017-07-30", "Open": 920.0, "High": 930.8, "Low": 919.6, "Close": 929.6, "Volume": 1301225 }, + { "Date": "2017-07-31", "Open": 931.8, "High": 942.0, "Low": 931.8, "Close": 939.3, "Volume": 1582579 }, + { "Date": "2017-08-01", "Open": 941.1, "High": 942.5, "Low": 935.1, "Close": 937.3, "Volume": 947374 }, + { "Date": "2017-08-05", "Open": 933.1, "High": 937.0, "Low": 922.0, "Close": 928.5, "Volume": 1348292 }, + { "Date": "2017-08-06", "Open": 930.1, "High": 930.9, "Low": 919.3, "Close": 927.8, "Volume": 1527650 }, + { "Date": "2017-08-07", "Open": 931.7, "High": 936.4, "Low": 923.6, "Close": 936.0, "Volume": 1212743 }, + { "Date": "2017-08-08", "Open": 936.5, "High": 937.0, "Low": 924.9, "Close": 926.5, "Volume": 1011538 }, + { "Date": "2017-08-11", "Open": 934.3, "High": 938.4, "Low": 926.9, "Close": 929.1, "Volume": 1266991 }, + { "Date": "2017-08-12", "Open": 932.6, "High": 933.5, "Low": 923.9, "Close": 932.1, "Volume": 1134397 }, + { "Date": "2017-08-13", "Open": 930.7, "High": 937.3, "Low": 929.9, "Close": 935.1, "Volume": 1102631 }, + { "Date": "2017-08-14", "Open": 931.3, "High": 932.8, "Low": 924.0, "Close": 925.1, "Volume": 1397644 }, + { "Date": "2017-08-15", "Open": 924.7, "High": 926.5, "Low": 916.4, "Close": 920.3, "Volume": 2505430 }, + { "Date": "2017-08-18", "Open": 920.0, "High": 922.1, "Low": 910.6, "Close": 915.0, "Volume": 1306922 }, + { "Date": "2017-08-19", "Open": 917.4, "High": 922.4, "Low": 912.5, "Close": 921.8, "Volume": 936654 }, + { "Date": "2017-08-20", "Open": 923.0, "High": 933.9, "Low": 922.0, "Close": 931.6, "Volume": 1669763 }, + { "Date": "2017-08-21", "Open": 933.0, "High": 936.5, "Low": 923.8, "Close": 932.5, "Volume": 1290607 }, + { "Date": "2017-08-22", "Open": 927.8, "High": 934.7, "Low": 926.5, "Close": 928.5, "Volume": 1052704 }, + { "Date": "2017-08-25", "Open": 925.5, "High": 926.4, "Low": 909.7, "Close": 921.0, "Volume": 1856822 }, + { "Date": "2017-08-26", "Open": 923.7, "High": 930.8, "Low": 921.1, "Close": 924.9, "Volume": 1666861 }, + { "Date": "2017-08-27", "Open": 927.7, "High": 949.9, "Low": 927.7, "Close": 944.5, "Volume": 2212600 }, + { "Date": "2017-08-28", "Open": 941.4, "High": 950.7, "Low": 940.5, "Close": 949.5, "Volume": 1020312 }, + { "Date": "2017-08-29", "Open": 952.0, "High": 959.8, "Low": 951.5, "Close": 959.1, "Volume": 1580994 }, + { "Date": "2017-09-02", "Open": 960.0, "High": 962.5, "Low": 947.8, "Close": 953.3, "Volume": 1283444 }, + { "Date": "2017-09-03", "Open": 954.0, "High": 958.0, "Low": 949.1, "Close": 957.8, "Volume": 888346 }, + { "Date": "2017-09-04", "Open": 957.0, "High": 960.4, "Low": 950.7, "Close": 951.7, "Volume": 952391 }, + { "Date": "2017-09-05", "Open": 955.5, "High": 970.9, "Low": 955.2, "Close": 970.0, "Volume": 1213816 }, + { "Date": "2017-09-06", "Open": 966.7, "High": 979.5, "Low": 963.4, "Close": 978.9, "Volume": 1173882 }, + { "Date": "2017-09-09", "Open": 980.0, "High": 985.4, "Low": 976.1, "Close": 977.0, "Volume": 891355 }, + { "Date": "2017-09-10", "Open": 980.0, "High": 981.6, "Low": 966.1, "Close": 972.6, "Volume": 968362 }, + { "Date": "2017-09-11", "Open": 973.7, "High": 990.7, "Low": 972.3, "Close": 989.3, "Volume": 1693274 }, + { "Date": "2017-09-12", "Open": 987.5, "High": 994.1, "Low": 985.0, "Close": 987.8, "Volume": 1262793 }, + { "Date": "2017-09-13", "Open": 992.0, "High": 997.2, "Low": 989.0, "Close": 989.7, "Volume": 1169777 }, + { "Date": "2017-09-16", "Open": 992.1, "High": 993.9, "Low": 984.0, "Close": 992.0, "Volume": 910543 }, + { "Date": "2017-09-17", "Open": 990.3, "High": 996.4, "Low": 988.6, "Close": 992.2, "Volume": 1290186 }, + { "Date": "2017-09-18", "Open": 991.8, "High": 996.7, "Low": 987.0, "Close": 992.8, "Volume": 1057581 }, + { "Date": "2017-09-19", "Open": 986.0, "High": 988.9, "Low": 978.4, "Close": 984.5, "Volume": 1313575 }, + { "Date": "2017-09-20", "Open": 989.4, "High": 991.0, "Low": 984.6, "Close": 988.2, "Volume": 1183186 }, + { "Date": "2017-09-23", "Open": 989.5, "High": 989.5, "Low": 966.1, "Close": 968.5, "Volume": 1478448 }, + { "Date": "2017-09-24", "Open": 970.0, "High": 972.2, "Low": 961.0, "Close": 970.5, "Volume": 1212153 }, + { "Date": "2017-09-25", "Open": 968.4, "High": 976.1, "Low": 960.5, "Close": 973.3, "Volume": 1211262 }, + { "Date": "2017-09-26", "Open": 980.0, "High": 987.6, "Low": 972.2, "Close": 972.6, "Volume": 2042149 }, + { "Date": "2017-09-27", "Open": 1009.2, "High": 1048.4, "Low": 1008.2, "Close": 1019.3, "Volume": 5167689 }, + { "Date": "2017-09-30", "Open": 1014.0, "High": 1025.0, "Low": 1007.5, "Close": 1017.1, "Volume": 2085062 }, + { "Date": "2017-09-31", "Open": 1015.2, "High": 1024.0, "Low": 1010.4, "Close": 1016.6, "Volume": 1331391 }, + { "Date": "2017-10-01", "Open": 1017.2, "High": 1029.7, "Low": 1017.0, "Close": 1025.5, "Volume": 1373444 }, + { "Date": "2017-10-02", "Open": 1021.8, "High": 1028.1, "Low": 1013.0, "Close": 1025.6, "Volume": 1048970 }, + { "Date": "2017-10-03", "Open": 1022.1, "High": 1032.7, "Low": 1020.3, "Close": 1032.5, "Volume": 1076350 }, + { "Date": "2017-10-06", "Open": 1029.0, "High": 1034.9, "Low": 1025.0, "Close": 1025.9, "Volume": 1125185 }, + { "Date": "2017-10-07", "Open": 1027.3, "High": 1034.0, "Low": 1025.1, "Close": 1033.3, "Volume": 1112331 }, + { "Date": "2017-10-08", "Open": 1030.5, "High": 1043.5, "Low": 1028.5, "Close": 1039.8, "Volume": 1088716 }, + { "Date": "2017-10-09", "Open": 1034.0, "High": 1034.0, "Low": 1019.7, "Close": 1031.3, "Volume": 1245246 }, + { "Date": "2017-10-10", "Open": 1026.5, "High": 1030.8, "Low": 1025.3, "Close": 1028.1, "Volume": 720676 }, + { "Date": "2017-10-13", "Open": 1023.4, "High": 1031.6, "Low": 1022.6, "Close": 1025.8, "Volume": 885779 }, + { "Date": "2017-10-14", "Open": 1022.6, "High": 1026.8, "Low": 1014.1, "Close": 1026.0, "Volume": 959222 }, + { "Date": "2017-10-15", "Open": 1019.2, "High": 1024.1, "Low": 1015.4, "Close": 1020.9, "Volume": 853992 }, + { "Date": "2017-10-16", "Open": 1022.5, "High": 1035.9, "Low": 1022.5, "Close": 1032.5, "Volume": 1129688 }, + { "Date": "2017-10-17", "Open": 1034.0, "High": 1034.4, "Low": 1017.8, "Close": 1019.1, "Volume": 1397064 }, + { "Date": "2017-10-20", "Open": 1020.3, "High": 1022.6, "Low": 1017.5, "Close": 1018.4, "Volume": 953470 }, + { "Date": "2017-10-21", "Open": 1023.3, "High": 1035.1, "Low": 1022.7, "Close": 1034.5, "Volume": 1096999 }, + { "Date": "2017-10-22", "Open": 1035.0, "High": 1039.7, "Low": 1031.4, "Close": 1036.0, "Volume": 746878 }, + { "Date": "2017-10-24", "Open": 1035.9, "High": 1043.2, "Low": 1035.0, "Close": 1040.6, "Volume": 536996 }, + { "Date": "2017-10-27", "Open": 1040.0, "High": 1055.5, "Low": 1038.4, "Close": 1054.2, "Volume": 1307881 }, + { "Date": "2017-10-28", "Open": 1055.1, "High": 1062.4, "Low": 1040.0, "Close": 1047.4, "Volume": 1424394 }, + { "Date": "2017-10-29", "Open": 1042.7, "High": 1044.1, "Low": 1015.6, "Close": 1021.7, "Volume": 2459426 }, + { "Date": "2017-10-30", "Open": 1022.4, "High": 1028.5, "Low": 1015.0, "Close": 1021.4, "Volume": 1724031 }, + { "Date": "2017-11-01", "Open": 1015.8, "High": 1022.5, "Low": 1002.0, "Close": 1010.2, "Volume": 1909566 }, + { "Date": "2017-11-04", "Open": 1012.7, "High": 1016.1, "Low": 995.6, "Close": 998.7, "Volume": 1906439 }, + { "Date": "2017-11-05", "Open": 995.9, "High": 1020.6, "Low": 988.3, "Close": 1005.1, "Volume": 2067318 }, + { "Date": "2017-11-06", "Open": 1001.5, "High": 1025.0, "Low": 1001.1, "Close": 1018.4, "Volume": 1271964 }, + { "Date": "2017-11-07", "Open": 1020.4, "High": 1034.2, "Low": 1018.1, "Close": 1030.9, "Volume": 1458242 }, + { "Date": "2017-11-08", "Open": 1037.5, "High": 1042.0, "Low": 1032.5, "Close": 1037.0, "Volume": 1290774 }, + { "Date": "2017-11-11", "Open": 1035.5, "High": 1043.8, "Low": 1032.0, "Close": 1041.1, "Volume": 1192838 }, + { "Date": "2017-11-12", "Open": 1039.6, "High": 1050.3, "Low": 1033.7, "Close": 1040.5, "Volume": 1279659 }, + { "Date": "2017-11-13", "Open": 1046.1, "High": 1046.7, "Low": 1038.4, "Close": 1040.6, "Volume": 1282677 }, + { "Date": "2017-11-14", "Open": 1045.0, "High": 1058.5, "Low": 1043.1, "Close": 1049.2, "Volume": 1558835 }, + { "Date": "2017-11-15", "Open": 1054.6, "High": 1067.6, "Low": 1049.5, "Close": 1064.2, "Volume": 3275931 }, + { "Date": "2017-11-18", "Open": 1066.1, "High": 1078.5, "Low": 1062.0, "Close": 1077.1, "Volume": 1554552 }, + { "Date": "2017-11-19", "Open": 1075.2, "High": 1076.8, "Low": 1063.5, "Close": 1070.7, "Volume": 1338725 }, + { "Date": "2017-11-20", "Open": 1071.8, "High": 1073.4, "Low": 1061.5, "Close": 1065.0, "Volume": 1268582 }, + { "Date": "2017-11-21", "Open": 1065.0, "High": 1069.3, "Low": 1061.8, "Close": 1063.6, "Volume": 995703 }, + { "Date": "2017-11-22", "Open": 1061.1, "High": 1064.2, "Low": 1059.4, "Close": 1060.1, "Volume": 755095 }, + { "Date": "2017-11-26", "Open": 1058.1, "High": 1060.1, "Low": 1050.2, "Close": 1056.7, "Volume": 761237 }, + { "Date": "2017-11-27", "Open": 1057.4, "High": 1058.4, "Low": 1048.0, "Close": 1049.4, "Volume": 1271911 }, + { "Date": "2017-11-28", "Open": 1051.6, "High": 1054.8, "Low": 1044.8, "Close": 1048.1, "Volume": 837121 }, + { "Date": "2017-11-29", "Open": 1046.7, "High": 1049.7, "Low": 1044.9, "Close": 1046.4, "Volume": 887511 }, + { "Date": "2018-00-02", "Open": 1048.3, "High": 1066.9, "Low": 1045.2, "Close": 1065.0, "Volume": 1237564 }, + { "Date": "2018-00-03", "Open": 1064.3, "High": 1086.3, "Low": 1063.2, "Close": 1082.5, "Volume": 1430170 }, + { "Date": "2018-00-04", "Open": 1088.0, "High": 1093.6, "Low": 1084.0, "Close": 1086.4, "Volume": 1004605 }, + { "Date": "2018-00-05", "Open": 1094.0, "High": 1104.3, "Low": 1092.0, "Close": 1102.2, "Volume": 1279123 }, + { "Date": "2018-00-08", "Open": 1102.2, "High": 1111.3, "Low": 1101.6, "Close": 1106.9, "Volume": 1047603 }, + { "Date": "2018-00-09", "Open": 1109.4, "High": 1110.6, "Low": 1101.2, "Close": 1106.3, "Volume": 902541 }, + { "Date": "2018-00-10", "Open": 1097.1, "High": 1104.6, "Low": 1096.1, "Close": 1102.6, "Volume": 1042793 }, + { "Date": "2018-00-11", "Open": 1106.3, "High": 1106.5, "Low": 1099.6, "Close": 1105.5, "Volume": 978292 }, + { "Date": "2018-00-12", "Open": 1102.4, "High": 1124.3, "Low": 1101.2, "Close": 1122.3, "Volume": 1720533 }, + { "Date": "2018-00-16", "Open": 1132.5, "High": 1139.9, "Low": 1117.8, "Close": 1121.8, "Volume": 1575261 }, + { "Date": "2018-00-17", "Open": 1126.2, "High": 1132.6, "Low": 1117.0, "Close": 1132.0, "Volume": 1202639 }, + { "Date": "2018-00-18", "Open": 1131.4, "High": 1132.5, "Low": 1117.5, "Close": 1129.8, "Volume": 1198234 }, + { "Date": "2018-00-19", "Open": 1131.8, "High": 1137.9, "Low": 1128.3, "Close": 1137.5, "Volume": 1778229 }, + { "Date": "2018-00-22", "Open": 1137.5, "High": 1159.9, "Low": 1135.1, "Close": 1155.8, "Volume": 1617975 }, + { "Date": "2018-00-23", "Open": 1159.8, "High": 1171.6, "Low": 1158.8, "Close": 1170.0, "Volume": 1333056 }, + { "Date": "2018-00-24", "Open": 1177.3, "High": 1179.9, "Low": 1161.0, "Close": 1164.2, "Volume": 1416625 }, + { "Date": "2018-00-25", "Open": 1172.5, "High": 1175.9, "Low": 1162.8, "Close": 1170.4, "Volume": 1480540 }, + { "Date": "2018-00-26", "Open": 1175.1, "High": 1175.8, "Low": 1158.1, "Close": 1175.8, "Volume": 2018755 }, + { "Date": "2018-00-29", "Open": 1176.5, "High": 1186.9, "Low": 1172.0, "Close": 1175.6, "Volume": 1378913 }, + { "Date": "2018-00-30", "Open": 1167.8, "High": 1176.5, "Low": 1163.5, "Close": 1163.7, "Volume": 1556346 }, + { "Date": "2018-00-31", "Open": 1170.6, "High": 1173.0, "Low": 1159.1, "Close": 1169.9, "Volume": 1538688 }]; + let stockItems: StockItem[] = []; + for (let json of jsonData) { + let parts = json.Date.split("-"); + let item = new StockItem(); + item.date = new Date(parseInt(parts[0]), parseInt(parts[1]) - 1, parseInt(parts[2]), 13, 0, 0); + item.open = json.Open; + item.high = json.High; + item.low = json.Low; + item.close = json.Close; + item.volume = json.Volume; + stockItems.push(item); + } + this.push(...stockItems); + } } -export class StockGoogle extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new StockGoogleItem( - { - date: `2014-03-01`, - open: 559.6, - high: 568.2, - low: 558.4, - close: 566.9, - volume: 2182626 - }), - new StockGoogleItem( - { - date: `2014-03-02`, - open: 562.4, - high: 571.8, - low: 561.4, - close: 567, - volume: 2088804 - }), - new StockGoogleItem( - { - date: `2014-03-03`, - open: 569.9, - high: 587.3, - low: 564.1, - close: 569.7, - volume: 5087530 - }), - new StockGoogleItem( - { - date: `2014-03-04`, - open: 574.6, - high: 577.8, - low: 543, - close: 543.1, - volume: 6377658 - }), - new StockGoogleItem( - { - date: `2014-03-07`, - open: 540.7, - high: 548.5, - low: 527.1, - close: 538.1, - volume: 4389569 - }), - new StockGoogleItem( - { - date: `2014-03-08`, - open: 542.6, - high: 555, - low: 541.6, - close: 554.9, - volume: 3152406 - }), - new StockGoogleItem( - { - date: `2014-03-09`, - open: 559.6, - high: 565.4, - low: 553, - close: 564.1, - volume: 3324742 - }), - new StockGoogleItem( - { - date: `2014-03-10`, - open: 565, - high: 565, - low: 539.9, - close: 541, - volume: 4027743 - }), - new StockGoogleItem( - { - date: `2014-03-11`, - open: 532.5, - high: 540, - low: 526.5, - close: 530.6, - volume: 3916171 - }), - new StockGoogleItem( - { - date: `2014-03-14`, - open: 538.3, - high: 544.1, - low: 529.6, - close: 532.5, - volume: 2568020 - }), - new StockGoogleItem( - { - date: `2014-03-15`, - open: 536.8, - high: 538.5, - low: 518.5, - close: 536.4, - volume: 3847453 - }), - new StockGoogleItem( - { - date: `2014-03-16`, - open: 543, - high: 557, - low: 540, - close: 556.5, - volume: 4879889 - }), - new StockGoogleItem( - { - date: `2014-03-17`, - open: 548.8, - high: 549.5, - low: 531.1, - close: 536.1, - volume: 6795393 - }), - new StockGoogleItem( - { - date: `2014-03-21`, - open: 536.1, - high: 536.7, - low: 525.6, - close: 528.6, - volume: 2561214 - }), - new StockGoogleItem( - { - date: `2014-03-22`, - open: 528.6, - high: 537.2, - low: 527.5, - close: 534.8, - volume: 2359421 - }), - new StockGoogleItem( - { - date: `2014-03-23`, - open: 533.8, - high: 533.9, - low: 526.3, - close: 526.9, - volume: 2051066 - }), - new StockGoogleItem( - { - date: `2014-03-24`, - open: 530.1, - high: 531.6, - low: 522.1, - close: 525.2, - volume: 1881965 - }), - new StockGoogleItem( - { - date: `2014-03-25`, - open: 522.5, - high: 524.7, - low: 515.4, - close: 516.2, - volume: 2097264 - }), - new StockGoogleItem( - { - date: `2014-03-28`, - open: 517.2, - high: 518.6, - low: 502.8, - close: 517.1, - volume: 3326429 - }), - new StockGoogleItem( - { - date: `2014-03-29`, - open: 516.9, - high: 529.5, - low: 516.3, - close: 527.7, - volume: 2692489 - }), - new StockGoogleItem( - { - date: `2014-03-30`, - open: 527.6, - high: 528, - low: 522.5, - close: 526.7, - volume: 1746904 - }), - new StockGoogleItem( - { - date: `2014-04-01`, - open: 527.1, - high: 532.9, - low: 523.9, - close: 531.4, - volume: 1900432 - }), - new StockGoogleItem( - { - date: `2014-04-02`, - open: 533.8, - high: 534, - low: 525.6, - close: 527.9, - volume: 1685042 - }), - new StockGoogleItem( - { - date: `2014-04-05`, - open: 524.8, - high: 528.9, - low: 521.3, - close: 527.8, - volume: 1021408 - }), - new StockGoogleItem( - { - date: `2014-04-06`, - open: 525.2, - high: 526.8, - low: 515.1, - close: 515.1, - volume: 1684381 - }), - new StockGoogleItem( - { - date: `2014-04-07`, - open: 515.8, - high: 516.7, - low: 503.3, - close: 510, - volume: 3216077 - }), - new StockGoogleItem( - { - date: `2014-04-08`, - open: 508.5, - high: 517.2, - low: 506.4, - close: 511, - volume: 2016131 - }), - new StockGoogleItem( - { - date: `2014-04-09`, - open: 510.8, - high: 519.9, - low: 504.2, - close: 518.7, - volume: 2432783 - }), - new StockGoogleItem( - { - date: `2014-04-12`, - open: 523.5, - high: 530.2, - low: 519, - close: 529.9, - volume: 1908392 - }), - new StockGoogleItem( - { - date: `2014-04-13`, - open: 530.9, - high: 536.1, - low: 529.5, - close: 533.1, - volume: 1648907 - }), - new StockGoogleItem( - { - date: `2014-04-14`, - open: 533, - high: 533, - low: 525.3, - close: 526.6, - volume: 1191863 - }), - new StockGoogleItem( - { - date: `2014-04-15`, - open: 525.7, - high: 525.9, - low: 517.4, - close: 520, - volume: 1703758 - }), - new StockGoogleItem( - { - date: `2014-04-16`, - open: 521.4, - high: 521.8, - low: 515.4, - close: 520.6, - volume: 1481688 - }), - new StockGoogleItem( - { - date: `2014-04-19`, - open: 519.7, - high: 529.8, - low: 517.6, - close: 528.9, - volume: 1276362 - }), - new StockGoogleItem( - { - date: `2014-04-20`, - open: 529.7, - high: 536.2, - low: 526.3, - close: 529.8, - volume: 1780113 - }), - new StockGoogleItem( - { - date: `2014-04-21`, - open: 532.9, - high: 539.2, - low: 531.9, - close: 538.9, - volume: 1193389 - }), - new StockGoogleItem( - { - date: `2014-04-22`, - open: 541.1, - high: 547.6, - low: 540.8, - close: 545.1, - volume: 1611837 - }), - new StockGoogleItem( - { - date: `2014-04-23`, - open: 547.3, - high: 553.6, - low: 543.7, - close: 552.7, - volume: 1929632 - }), - new StockGoogleItem( - { - date: `2014-04-27`, - open: 556, - high: 566, - low: 554.4, - close: 566, - volume: 2100298 - }), - new StockGoogleItem( - { - date: `2014-04-28`, - open: 564.6, - high: 567.8, - low: 561, - close: 561.7, - volume: 1647717 - }), - new StockGoogleItem( - { - date: `2014-04-29`, - open: 563.4, - high: 564, - low: 558.7, - close: 560.1, - volume: 1350657 - }), - new StockGoogleItem( - { - date: `2014-04-30`, - open: 560.8, - high: 561.4, - low: 555.9, - close: 559.9, - volume: 1766794 - }), - new StockGoogleItem( - { - date: `2014-05-02`, - open: 560.7, - high: 560.9, - low: 545.7, - close: 553.9, - volume: 1434989 - }), - new StockGoogleItem( - { - date: `2014-05-03`, - open: 551, - high: 552.3, - low: 542.5, - close: 544.9, - volume: 1861921 - }), - new StockGoogleItem( - { - date: `2014-05-04`, - open: 541.5, - high: 548.6, - low: 538.8, - close: 544.7, - volume: 1812084 - }), - new StockGoogleItem( - { - date: `2014-05-05`, - open: 546.4, - high: 555, - low: 544.5, - close: 553.9, - volume: 1684886 - }), - new StockGoogleItem( - { - date: `2014-05-06`, - open: 558.1, - high: 558.1, - low: 548.9, - close: 556.3, - volume: 1732592 - }), - new StockGoogleItem( - { - date: `2014-05-09`, - open: 557.1, - high: 562.9, - low: 556, - close: 562.1, - volume: 1463676 - }), - new StockGoogleItem( - { - date: `2014-05-10`, - open: 560.5, - high: 563.6, - low: 557.9, - close: 560.5, - volume: 1349444 - }), - new StockGoogleItem( - { - date: `2014-05-11`, - open: 558, - high: 559.9, - low: 555, - close: 558.8, - volume: 1097380 - }), - new StockGoogleItem( - { - date: `2014-05-12`, - open: 557.3, - high: 558, - low: 548.5, - close: 551.4, - volume: 1457104 - }), - new StockGoogleItem( - { - date: `2014-05-13`, - open: 552.3, - high: 552.3, - low: 545.6, - close: 551.8, - volume: 1217176 - }), - new StockGoogleItem( - { - date: `2014-05-16`, - open: 549.3, - high: 549.6, - low: 541.5, - close: 544.3, - volume: 1704027 - }), - new StockGoogleItem( - { - date: `2014-05-17`, - open: 544.2, - high: 545.3, - low: 539.3, - close: 543, - volume: 1445878 - }), - new StockGoogleItem( - { - date: `2014-05-18`, - open: 544.9, - high: 553.6, - low: 544, - close: 553.4, - volume: 1737343 - }), - new StockGoogleItem( - { - date: `2014-05-19`, - open: 554.2, - high: 555, - low: 548.5, - close: 554.9, - volume: 2451341 - }), - new StockGoogleItem( - { - date: `2014-05-20`, - open: 556.9, - high: 557.6, - low: 550.4, - close: 556.4, - volume: 4496962 - }), - new StockGoogleItem( - { - date: `2014-05-23`, - open: 555.1, - high: 565, - low: 554.3, - close: 565, - volume: 1534659 - }), - new StockGoogleItem( - { - date: `2014-05-24`, - open: 565.2, - high: 572.6, - low: 561, - close: 564.6, - volume: 2201789 - }), - new StockGoogleItem( - { - date: `2014-05-25`, - open: 565.3, - high: 580, - low: 565.2, - close: 578.6, - volume: 1964447 - }), - new StockGoogleItem( - { - date: `2014-05-26`, - open: 581, - high: 582.5, - low: 571.9, - close: 576, - volume: 1737210 - }), - new StockGoogleItem( - { - date: `2014-05-27`, - open: 577.2, - high: 579.9, - low: 573.8, - close: 577.2, - volume: 2231174 - }), - new StockGoogleItem( - { - date: `2014-05-30`, - open: 578.7, - high: 579.6, - low: 574.8, - close: 575.3, - volume: 1310909 - }), - new StockGoogleItem( - { - date: `2014-06-01`, - open: 578.3, - high: 584.4, - low: 576.6, - close: 582.7, - volume: 1446309 - }), - new StockGoogleItem( - { - date: `2014-06-02`, - open: 583.4, - high: 585.4, - low: 580.4, - close: 582.3, - volume: 1054936 - }), - new StockGoogleItem( - { - date: `2014-06-03`, - open: 583.4, - high: 585, - low: 580.9, - close: 584.7, - volume: 712210 - }), - new StockGoogleItem( - { - date: `2014-06-07`, - open: 583.8, - high: 586.4, - low: 579.6, - close: 582.3, - volume: 1061833 - }), - new StockGoogleItem( - { - date: `2014-06-08`, - open: 577.7, - high: 579.5, - low: 566.1, - close: 571.1, - volume: 1908647 - }), - new StockGoogleItem( - { - date: `2014-06-09`, - open: 571.6, - high: 576.7, - low: 569.4, - close: 576.1, - volume: 1113907 - }), - new StockGoogleItem( - { - date: `2014-06-10`, - open: 565.9, - high: 576.6, - low: 565, - close: 571.1, - volume: 1353317 - }), - new StockGoogleItem( - { - date: `2014-06-11`, - open: 571.9, - high: 580.9, - low: 571.4, - close: 579.2, - volume: 1617569 - }), - new StockGoogleItem( - { - date: `2014-06-14`, - open: 582.6, - high: 585.2, - low: 578, - close: 584.9, - volume: 1852290 - }), - new StockGoogleItem( - { - date: `2014-06-15`, - open: 585.7, - high: 585.8, - low: 576.6, - close: 584.8, - volume: 1618815 - }), - new StockGoogleItem( - { - date: `2014-06-16`, - open: 588, - high: 588.4, - low: 582.2, - close: 582.7, - volume: 1394560 - }), - new StockGoogleItem( - { - date: `2014-06-17`, - open: 579.5, - high: 581, - low: 568.6, - close: 573.7, - volume: 3015475 - }), - new StockGoogleItem( - { - date: `2014-06-18`, - open: 593, - high: 596.8, - low: 582, - close: 595.1, - volume: 4006389 - }), - new StockGoogleItem( - { - date: `2014-06-21`, - open: 591.8, - high: 594.4, - low: 585.2, - close: 589.5, - volume: 2060334 - }), - new StockGoogleItem( - { - date: `2014-06-22`, - open: 590.7, - high: 599.6, - low: 590.6, - close: 594.7, - volume: 1694787 - }), - new StockGoogleItem( - { - date: `2014-06-23`, - open: 593.2, - high: 597.9, - low: 592.5, - close: 596, - volume: 1229846 - }), - new StockGoogleItem( - { - date: `2014-06-24`, - open: 596.5, - high: 599.5, - low: 591.8, - close: 593.4, - volume: 1033341 - }), - new StockGoogleItem( - { - date: `2014-06-25`, - open: 590.4, - high: 591.9, - low: 587, - close: 589, - volume: 932724 - }), - new StockGoogleItem( - { - date: `2014-06-28`, - open: 588.1, - high: 592.5, - low: 584.8, - close: 590.6, - volume: 984161 - }), - new StockGoogleItem( - { - date: `2014-06-29`, - open: 588.8, - high: 589.7, - low: 583.5, - close: 585.6, - volume: 1346647 - }), - new StockGoogleItem( - { - date: `2014-06-30`, - open: 586.5, - high: 589.5, - low: 584, - close: 587.4, - volume: 1013932 - }), - new StockGoogleItem( - { - date: `2014-06-31`, - open: 580.6, - high: 583.6, - low: 570, - close: 571.6, - volume: 2099516 - }), - new StockGoogleItem( - { - date: `2014-07-01`, - open: 570.4, - high: 576, - low: 562.9, - close: 566.1, - volume: 1950171 - }), - new StockGoogleItem( - { - date: `2014-07-04`, - open: 569, - high: 575.4, - low: 564.1, - close: 573.1, - volume: 1427169 - }), - new StockGoogleItem( - { - date: `2014-07-05`, - open: 570, - high: 572, - low: 562.6, - close: 565.1, - volume: 1556685 - }), - new StockGoogleItem( - { - date: `2014-07-06`, - open: 561.8, - high: 570.7, - low: 560, - close: 566.4, - volume: 1330877 - }), - new StockGoogleItem( - { - date: `2014-07-07`, - open: 568, - high: 569.9, - low: 561.1, - close: 563.4, - volume: 1108900 - }), - new StockGoogleItem( - { - date: `2014-07-08`, - open: 563.6, - high: 570.3, - low: 560.4, - close: 568.8, - volume: 1492491 - }), - new StockGoogleItem( - { - date: `2014-07-11`, - open: 570, - high: 570.5, - low: 566, - close: 567.9, - volume: 1215968 - }), - new StockGoogleItem( - { - date: `2014-07-12`, - open: 564.5, - high: 565.9, - low: 560.9, - close: 562.7, - volume: 1537758 - }), - new StockGoogleItem( - { - date: `2014-07-13`, - open: 567.3, - high: 575, - low: 565.8, - close: 574.8, - volume: 1437922 - }), - new StockGoogleItem( - { - date: `2014-07-14`, - open: 576.2, - high: 577.9, - low: 570.9, - close: 574.6, - volume: 982926 - }), - new StockGoogleItem( - { - date: `2014-07-15`, - open: 577.9, - high: 579.4, - low: 570.5, - close: 573.5, - volume: 1517056 - }), - new StockGoogleItem( - { - date: `2014-07-18`, - open: 576.1, - high: 584.5, - low: 576, - close: 582.2, - volume: 1282531 - }), - new StockGoogleItem( - { - date: `2014-07-19`, - open: 585, - high: 587.3, - low: 584, - close: 586.9, - volume: 979298 - }), - new StockGoogleItem( - { - date: `2014-07-20`, - open: 585.9, - high: 586.7, - low: 582.6, - close: 584.5, - volume: 1034779 - }), - new StockGoogleItem( - { - date: `2014-07-21`, - open: 583.8, - high: 584.5, - low: 581.1, - close: 583.4, - volume: 912854 - }), - new StockGoogleItem( - { - date: `2014-07-22`, - open: 583.6, - high: 585.2, - low: 580.6, - close: 582.6, - volume: 789484 - }), - new StockGoogleItem( - { - date: `2014-07-25`, - open: 584.7, - high: 585, - low: 579, - close: 580.2, - volume: 1358810 - }), - new StockGoogleItem( - { - date: `2014-07-26`, - open: 581.3, - high: 581.8, - low: 576.6, - close: 577.9, - volume: 1635465 - }), - new StockGoogleItem( - { - date: `2014-07-27`, - open: 577.3, - high: 578.5, - low: 570.1, - close: 571, - volume: 1700161 - }), - new StockGoogleItem( - { - date: `2014-07-28`, - open: 569.6, - high: 573.3, - low: 567.1, - close: 569.2, - volume: 1295963 - }), - new StockGoogleItem( - { - date: `2014-07-29`, - open: 571.3, - high: 572, - low: 567.1, - close: 571.6, - volume: 1081231 - }), - new StockGoogleItem( - { - date: `2014-08-02`, - open: 571.9, - high: 577.8, - low: 571.2, - close: 577.3, - volume: 1576830 - }), - new StockGoogleItem( - { - date: `2014-08-03`, - open: 580, - high: 583, - low: 575, - close: 577.9, - volume: 1214586 - }), - new StockGoogleItem( - { - date: `2014-08-04`, - open: 580, - high: 586, - low: 579.2, - close: 582, - volume: 1459956 - }), - new StockGoogleItem( - { - date: `2014-08-05`, - open: 584, - high: 586.5, - low: 582, - close: 586.1, - volume: 1629477 - }), - new StockGoogleItem( - { - date: `2014-08-08`, - open: 586.6, - high: 591.8, - low: 586.3, - close: 589.7, - volume: 1429101 - }), - new StockGoogleItem( - { - date: `2014-08-09`, - open: 588.9, - high: 589, - low: 580, - close: 581, - volume: 1286722 - }), - new StockGoogleItem( - { - date: `2014-08-10`, - open: 581.5, - high: 583.5, - low: 576.9, - close: 583.1, - volume: 975145 - }), - new StockGoogleItem( - { - date: `2014-08-11`, - open: 580.4, - high: 581.8, - low: 576.3, - close: 581.4, - volume: 1217721 - }), - new StockGoogleItem( - { - date: `2014-08-12`, - open: 581, - high: 581.6, - low: 574.5, - close: 575.6, - volume: 1597677 - }), - new StockGoogleItem( - { - date: `2014-08-15`, - open: 572.9, - high: 575, - low: 568.2, - close: 573.1, - volume: 1596224 - }), - new StockGoogleItem( - { - date: `2014-08-16`, - open: 572.8, - high: 581.5, - low: 572.7, - close: 580, - volume: 1478306 - }), - new StockGoogleItem( - { - date: `2014-08-17`, - open: 580, - high: 587.5, - low: 578.8, - close: 584.8, - volume: 1690994 - }), - new StockGoogleItem( - { - date: `2014-08-18`, - open: 587, - high: 589.5, - low: 585, - close: 589.3, - volume: 1442012 - }), - new StockGoogleItem( - { - date: `2014-08-19`, - open: 591.5, - high: 596.5, - low: 589.5, - close: 596.1, - volume: 3727045 - }), - new StockGoogleItem( - { - date: `2014-08-22`, - open: 593.8, - high: 594, - low: 583.5, - close: 587.4, - volume: 1687710 - }), - new StockGoogleItem( - { - date: `2014-08-23`, - open: 586.9, - high: 586.9, - low: 581, - close: 581.1, - volume: 1467703 - }), - new StockGoogleItem( - { - date: `2014-08-24`, - open: 581.5, - high: 589.6, - low: 580.5, - close: 588, - volume: 1724537 - }), - new StockGoogleItem( - { - date: `2014-08-25`, - open: 587.5, - high: 588, - low: 574.2, - close: 575.1, - volume: 1925350 - }), - new StockGoogleItem( - { - date: `2014-08-26`, - open: 576.1, - high: 579.3, - low: 574.7, - close: 577.1, - volume: 1439807 - }), - new StockGoogleItem( - { - date: `2014-08-29`, - open: 571.8, - high: 578.2, - low: 571.2, - close: 576.4, - volume: 1281204 - }), - new StockGoogleItem( - { - date: `2014-08-30`, - open: 576.9, - high: 579.9, - low: 572.9, - close: 577.4, - volume: 1618437 - }), - new StockGoogleItem( - { - date: `2014-09-01`, - open: 576, - high: 577.6, - low: 567, - close: 568.3, - volume: 1445027 - }), - new StockGoogleItem( - { - date: `2014-09-02`, - open: 567.3, - high: 571.9, - low: 563.3, - close: 570.1, - volume: 1175307 - }), - new StockGoogleItem( - { - date: `2014-09-03`, - open: 573, - high: 577.2, - low: 572.5, - close: 575.3, - volume: 1138636 - }), - new StockGoogleItem( - { - date: `2014-09-06`, - open: 578.8, - high: 581, - low: 574.4, - close: 577.4, - volume: 1211320 - }), - new StockGoogleItem( - { - date: `2014-09-07`, - open: 574.4, - high: 575.3, - low: 563.7, - close: 563.7, - volume: 1906427 - }), - new StockGoogleItem( - { - date: `2014-09-08`, - open: 565.6, - high: 573.9, - low: 557.5, - close: 572.5, - volume: 1987888 - }), - new StockGoogleItem( - { - date: `2014-09-09`, - open: 571.2, - high: 571.5, - low: 559.1, - close: 560.9, - volume: 2519693 - }), - new StockGoogleItem( - { - date: `2014-09-10`, - open: 557.7, - high: 565.1, - low: 544, - close: 544.5, - volume: 3078634 - }), - new StockGoogleItem( - { - date: `2014-09-13`, - open: 545, - high: 549.5, - low: 533.1, - close: 533.2, - volume: 2578676 - }), - new StockGoogleItem( - { - date: `2014-09-14`, - open: 538.9, - high: 547.2, - low: 533.2, - close: 537.9, - volume: 2217230 - }), - new StockGoogleItem( - { - date: `2014-09-15`, - open: 531, - high: 532.8, - low: 518.3, - close: 530, - volume: 3712536 - }), - new StockGoogleItem( - { - date: `2014-09-16`, - open: 519, - high: 529.4, - low: 515, - close: 524.5, - volume: 3698423 - }), - new StockGoogleItem( - { - date: `2014-09-17`, - open: 527.3, - high: 531, - low: 508.5, - close: 511.2, - volume: 5530674 - }), - new StockGoogleItem( - { - date: `2014-09-20`, - open: 509.4, - high: 521.8, - low: 508.1, - close: 520.8, - volume: 2605505 - }), - new StockGoogleItem( - { - date: `2014-09-21`, - open: 525.2, - high: 526.8, - low: 519.1, - close: 526.5, - volume: 2332531 - }), - new StockGoogleItem( - { - date: `2014-09-22`, - open: 529.9, - high: 539.8, - low: 528.8, - close: 532.7, - volume: 2917183 - }), - new StockGoogleItem( - { - date: `2014-09-23`, - open: 539.3, - high: 547.2, - low: 535.9, - close: 544, - volume: 2345296 - }), - new StockGoogleItem( - { - date: `2014-09-24`, - open: 544.4, - high: 544.9, - low: 535.8, - close: 539.8, - volume: 1972047 - }), - new StockGoogleItem( - { - date: `2014-09-27`, - open: 537, - high: 544.4, - low: 537, - close: 540.8, - volume: 1184973 - }), - new StockGoogleItem( - { - date: `2014-09-28`, - open: 543, - high: 549, - low: 541.6, - close: 548.9, - volume: 1273372 - }), - new StockGoogleItem( - { - date: `2014-09-29`, - open: 550, - high: 554.2, - low: 547, - close: 549.3, - volume: 1767107 - }), - new StockGoogleItem( - { - date: `2014-09-30`, - open: 549, - high: 552.8, - low: 543.5, - close: 550.3, - volume: 1451667 - }), - new StockGoogleItem( - { - date: `2014-09-31`, - open: 559.4, - high: 559.6, - low: 554.8, - close: 559.1, - volume: 2032887 - }), - new StockGoogleItem( - { - date: `2014-10-03`, - open: 555.5, - high: 557.9, - low: 553.2, - close: 555.2, - volume: 1378511 - }), - new StockGoogleItem( - { - date: `2014-10-04`, - open: 553, - high: 555.5, - low: 549.3, - close: 554.1, - volume: 1240761 - }), - new StockGoogleItem( - { - date: `2014-10-05`, - open: 556.8, - high: 556.8, - low: 544, - close: 545.9, - volume: 2026740 - }), - new StockGoogleItem( - { - date: `2014-10-06`, - open: 545.5, - high: 546.9, - low: 541, - close: 542, - volume: 1329604 - }), - new StockGoogleItem( - { - date: `2014-10-07`, - open: 546.2, - high: 546.2, - low: 538.7, - close: 541, - volume: 1629259 - }), - new StockGoogleItem( - { - date: `2014-10-10`, - open: 541.5, - high: 549.6, - low: 541, - close: 547.5, - volume: 1131546 - }), - new StockGoogleItem( - { - date: `2014-10-11`, - open: 548.5, - high: 551.9, - low: 546.3, - close: 550.3, - volume: 964866 - }), - new StockGoogleItem( - { - date: `2014-10-12`, - open: 550.4, - high: 550.5, - low: 545.2, - close: 547.3, - volume: 1126594 - }), - new StockGoogleItem( - { - date: `2014-10-13`, - open: 549.8, - high: 549.8, - low: 543.5, - close: 545.4, - volume: 1335719 - }), - new StockGoogleItem( - { - date: `2014-10-14`, - open: 546.7, - high: 546.7, - low: 542.1, - close: 544.4, - volume: 1285991 - }), - new StockGoogleItem( - { - date: `2014-10-17`, - open: 543.6, - high: 543.8, - low: 534.1, - close: 536.5, - volume: 1721282 - }), - new StockGoogleItem( - { - date: `2014-10-18`, - open: 537.5, - high: 541.9, - low: 534.2, - close: 535, - volume: 1957664 - }), - new StockGoogleItem( - { - date: `2014-10-19`, - open: 535, - high: 538.2, - low: 530.1, - close: 537, - volume: 1388440 - }), - new StockGoogleItem( - { - date: `2014-10-20`, - open: 531.3, - high: 535.1, - low: 531.1, - close: 534.8, - volume: 1559131 - }), - new StockGoogleItem( - { - date: `2014-10-21`, - open: 541.6, - high: 542.1, - low: 536.6, - close: 537.5, - volume: 2218249 - }), - new StockGoogleItem( - { - date: `2014-10-24`, - open: 537.6, - high: 542.7, - low: 535.6, - close: 539.3, - volume: 1701682 - }), - new StockGoogleItem( - { - date: `2014-10-25`, - open: 539, - high: 544, - low: 538.6, - close: 541.1, - volume: 1784967 - }), - new StockGoogleItem( - { - date: `2014-10-26`, - open: 540.9, - high: 541.5, - low: 537, - close: 540.4, - volume: 1519503 - }), - new StockGoogleItem( - { - date: `2014-10-28`, - open: 540.6, - high: 542, - low: 536.6, - close: 541.8, - volume: 1145231 - }), - new StockGoogleItem( - { - date: `2014-11-01`, - open: 538.9, - high: 541.4, - low: 531.9, - close: 533.8, - volume: 2109599 - }), - new StockGoogleItem( - { - date: `2014-11-02`, - open: 533.5, - high: 535.5, - low: 529.8, - close: 533.8, - volume: 1522481 - }), - new StockGoogleItem( - { - date: `2014-11-03`, - open: 531.4, - high: 536, - low: 529.3, - close: 531.3, - volume: 1279288 - }), - new StockGoogleItem( - { - date: `2014-11-04`, - open: 531.2, - high: 537.3, - low: 528.6, - close: 537.3, - volume: 1392208 - }), - new StockGoogleItem( - { - date: `2014-11-05`, - open: 531, - high: 532.9, - low: 524.3, - close: 525.3, - volume: 2558649 - }), - new StockGoogleItem( - { - date: `2014-11-08`, - open: 527.1, - high: 531, - low: 523.8, - close: 527, - volume: 2327127 - }), - new StockGoogleItem( - { - date: `2014-11-09`, - open: 522.1, - high: 534.2, - low: 520.5, - close: 533.4, - volume: 1871268 - }), - new StockGoogleItem( - { - date: `2014-11-10`, - open: 533.1, - high: 536.3, - low: 525.6, - close: 526.1, - volume: 1716835 - }), - new StockGoogleItem( - { - date: `2014-11-11`, - open: 527.8, - high: 533.9, - low: 527.1, - close: 528.3, - volume: 1610964 - }), - new StockGoogleItem( - { - date: `2014-11-12`, - open: 523.5, - high: 528.5, - low: 518.7, - close: 518.7, - volume: 1989117 - }), - new StockGoogleItem( - { - date: `2014-11-15`, - open: 522.7, - high: 523.1, - low: 513.3, - close: 513.8, - volume: 2812786 - }), - new StockGoogleItem( - { - date: `2014-11-16`, - open: 511.6, - high: 513, - low: 489, - close: 495.4, - volume: 3953371 - }), - new StockGoogleItem( - { - date: `2014-11-17`, - open: 497, - high: 507, - low: 496.8, - close: 504.9, - volume: 2875281 - }), - new StockGoogleItem( - { - date: `2014-11-18`, - open: 513, - high: 513.9, - low: 504.7, - close: 511.1, - volume: 2918730 - }), - new StockGoogleItem( - { - date: `2014-11-19`, - open: 511.5, - high: 517.7, - low: 506.9, - close: 516.4, - volume: 3680148 - }), - new StockGoogleItem( - { - date: `2014-11-22`, - open: 516.1, - high: 526.5, - low: 516.1, - close: 524.9, - volume: 2723599 - }), - new StockGoogleItem( - { - date: `2014-11-23`, - open: 527, - high: 534.6, - low: 526.3, - close: 530.6, - volume: 2191567 - }), - new StockGoogleItem( - { - date: `2014-11-24`, - open: 530.5, - high: 531.8, - low: 527, - close: 528.8, - volume: 704035 - }), - new StockGoogleItem( - { - date: `2014-11-26`, - open: 528.8, - high: 534.3, - low: 527.3, - close: 534, - volume: 1037727 - }), - new StockGoogleItem( - { - date: `2014-11-29`, - open: 532.2, - high: 535.5, - low: 530, - close: 530.3, - volume: 2276104 - }), - new StockGoogleItem( - { - date: `2014-11-30`, - open: 528.1, - high: 531.1, - low: 527.1, - close: 530.4, - volume: 873923 - }), - new StockGoogleItem( - { - date: `2014-11-31`, - open: 531.3, - high: 532.6, - low: 525.8, - close: 526.4, - volume: 1371819 - }), - new StockGoogleItem( - { - date: `2015-00-02`, - open: 529, - high: 531.3, - low: 524.1, - close: 524.8, - volume: 1446662 - }), - new StockGoogleItem( - { - date: `2015-00-05`, - open: 523.3, - high: 524.3, - low: 513.1, - close: 513.9, - volume: 2054238 - }), - new StockGoogleItem( - { - date: `2015-00-06`, - open: 515, - high: 516.2, - low: 501.1, - close: 502, - volume: 2891950 - }), - new StockGoogleItem( - { - date: `2015-00-07`, - open: 507, - high: 507.2, - low: 499.6, - close: 501.1, - volume: 2059366 - }), - new StockGoogleItem( - { - date: `2015-00-08`, - open: 498, - high: 503.5, - low: 491, - close: 502.7, - volume: 3344395 - }), - new StockGoogleItem( - { - date: `2015-00-09`, - open: 504.8, - high: 504.9, - low: 494.8, - close: 496.2, - volume: 2065715 - }), - new StockGoogleItem( - { - date: `2015-00-12`, - open: 494.9, - high: 496, - low: 487.6, - close: 492.6, - volume: 2320446 - }), - new StockGoogleItem( - { - date: `2015-00-13`, - open: 498.8, - high: 503, - low: 492.4, - close: 496.2, - volume: 2365687 - }), - new StockGoogleItem( - { - date: `2015-00-14`, - open: 494.6, - high: 503.2, - low: 493, - close: 500.9, - volume: 2229638 - }), - new StockGoogleItem( - { - date: `2015-00-15`, - open: 505.6, - high: 505.7, - low: 497.8, - close: 501.8, - volume: 2711355 - }), - new StockGoogleItem( - { - date: `2015-00-16`, - open: 500, - high: 508.2, - low: 500, - close: 508.1, - volume: 2292043 - }), - new StockGoogleItem( - { - date: `2015-00-20`, - open: 511, - high: 512.5, - low: 506, - close: 506.9, - volume: 2225922 - }), - new StockGoogleItem( - { - date: `2015-00-21`, - open: 507.3, - high: 519.3, - low: 506.2, - close: 518, - volume: 2262455 - }), - new StockGoogleItem( - { - date: `2015-00-22`, - open: 521.5, - high: 536.3, - low: 519.7, - close: 534.4, - volume: 2669558 - }), - new StockGoogleItem( - { - date: `2015-00-23`, - open: 535.6, - high: 542.2, - low: 533, - close: 540, - volume: 2275485 - }), - new StockGoogleItem( - { - date: `2015-00-26`, - open: 538.5, - high: 539, - low: 529.7, - close: 535.2, - volume: 1539524 - }), - new StockGoogleItem( - { - date: `2015-00-27`, - open: 530, - high: 530.7, - low: 518.2, - close: 518.6, - volume: 1898844 - }), - new StockGoogleItem( - { - date: `2015-00-28`, - open: 522.8, - high: 523, - low: 510, - close: 510, - volume: 1679230 - }), - new StockGoogleItem( - { - date: `2015-00-29`, - open: 511, - high: 511.1, - low: 501.2, - close: 510.7, - volume: 4174924 - }), - new StockGoogleItem( - { - date: `2015-00-30`, - open: 515.9, - high: 539.9, - low: 515.5, - close: 534.5, - volume: 5590977 - }), - new StockGoogleItem( - { - date: `2015-01-02`, - open: 531.7, - high: 533, - low: 518.5, - close: 528.5, - volume: 2841976 - }), - new StockGoogleItem( - { - date: `2015-01-03`, - open: 528, - high: 533.4, - low: 523.3, - close: 529.2, - volume: 2033085 - }), - new StockGoogleItem( - { - date: `2015-01-04`, - open: 529.2, - high: 532.7, - low: 521.3, - close: 522.8, - volume: 1659125 - }), - new StockGoogleItem( - { - date: `2015-01-05`, - open: 523.8, - high: 528.5, - low: 522.1, - close: 527.6, - volume: 1844687 - }), - new StockGoogleItem( - { - date: `2015-01-06`, - open: 527.6, - high: 537.2, - low: 526.4, - close: 531, - volume: 1758650 - }), - new StockGoogleItem( - { - date: `2015-01-09`, - open: 528, - high: 532, - low: 526, - close: 527.8, - volume: 1264276 - }), - new StockGoogleItem( - { - date: `2015-01-10`, - open: 529.3, - high: 537.7, - low: 526.9, - close: 536.9, - volume: 1745076 - }), - new StockGoogleItem( - { - date: `2015-01-11`, - open: 535.3, - high: 538.5, - low: 533.4, - close: 536, - volume: 1373970 - }), - new StockGoogleItem( - { - date: `2015-01-12`, - open: 537.3, - high: 544.8, - low: 534.7, - close: 542.9, - volume: 1615824 - }), - new StockGoogleItem( - { - date: `2015-01-13`, - open: 543.4, - high: 549.9, - low: 543.1, - close: 549, - volume: 1895126 - }), - new StockGoogleItem( - { - date: `2015-01-17`, - open: 546.8, - high: 550, - low: 541.1, - close: 542.8, - volume: 1612439 - }), - new StockGoogleItem( - { - date: `2015-01-18`, - open: 541.4, - high: 545.5, - low: 537.5, - close: 539.7, - volume: 1449089 - }), - new StockGoogleItem( - { - date: `2015-01-19`, - open: 538, - high: 543.1, - low: 538, - close: 542.9, - volume: 987478 - }), - new StockGoogleItem( - { - date: `2015-01-20`, - open: 543.1, - high: 543.8, - low: 535.8, - close: 539, - volume: 1441212 - }), - new StockGoogleItem( - { - date: `2015-01-23`, - open: 536, - high: 536.4, - low: 529.4, - close: 531.9, - volume: 1453907 - }), - new StockGoogleItem( - { - date: `2015-01-24`, - open: 530, - high: 536.8, - low: 528.3, - close: 536.1, - volume: 1002393 - }), - new StockGoogleItem( - { - date: `2015-01-25`, - open: 535.9, - high: 546.2, - low: 535.4, - close: 543.9, - volume: 1821041 - }), - new StockGoogleItem( - { - date: `2015-01-26`, - open: 543.2, - high: 556.1, - low: 541.5, - close: 555.5, - volume: 2305219 - }), - new StockGoogleItem( - { - date: `2015-01-27`, - open: 554.2, - high: 564.7, - low: 552.9, - close: 558.4, - volume: 2403553 - }), - new StockGoogleItem( - { - date: `2015-02-02`, - open: 560.5, - high: 572.1, - low: 558.8, - close: 571.3, - volume: 2123796 - }), - new StockGoogleItem( - { - date: `2015-02-03`, - open: 570.5, - high: 575.4, - low: 566.5, - close: 573.6, - volume: 1700084 - }), - new StockGoogleItem( - { - date: `2015-02-04`, - open: 571.9, - high: 577.1, - low: 568, - close: 573.4, - volume: 1871694 - }), - new StockGoogleItem( - { - date: `2015-02-05`, - open: 575, - high: 577.9, - low: 573.4, - close: 575.3, - volume: 1385818 - }), - new StockGoogleItem( - { - date: `2015-02-06`, - open: 574.9, - high: 576.7, - low: 566.8, - close: 567.7, - volume: 1654561 - }), - new StockGoogleItem( - { - date: `2015-02-09`, - open: 566.9, - high: 570.3, - low: 563.5, - close: 568.9, - volume: 1059336 - }), - new StockGoogleItem( - { - date: `2015-02-10`, - open: 564.3, - high: 564.9, - low: 554.7, - close: 555, - volume: 1787357 - }), - new StockGoogleItem( - { - date: `2015-02-11`, - open: 555.1, - high: 558.1, - low: 550.7, - close: 551.2, - volume: 1815763 - }), - new StockGoogleItem( - { - date: `2015-02-12`, - open: 553.5, - high: 556.4, - low: 550.5, - close: 555.5, - volume: 1385772 - }), - new StockGoogleItem( - { - date: `2015-02-13`, - open: 553.5, - high: 558.4, - low: 544.2, - close: 547.3, - volume: 1698872 - }), - new StockGoogleItem( - { - date: `2015-02-16`, - open: 551, - high: 556.9, - low: 546, - close: 554.5, - volume: 1636493 - }), - new StockGoogleItem( - { - date: `2015-02-17`, - open: 551.7, - high: 553.8, - low: 548, - close: 550.8, - volume: 1800570 - }), - new StockGoogleItem( - { - date: `2015-02-18`, - open: 552.5, - high: 559.8, - low: 547, - close: 559.5, - volume: 2128714 - }), - new StockGoogleItem( - { - date: `2015-02-19`, - open: 559.4, - high: 560.8, - low: 556.1, - close: 558, - volume: 1194049 - }), - new StockGoogleItem( - { - date: `2015-02-20`, - open: 561.6, - high: 561.7, - low: 559, - close: 560.4, - volume: 2609690 - }), - new StockGoogleItem( - { - date: `2015-02-23`, - open: 560.4, - high: 562.4, - low: 555.8, - close: 558.8, - volume: 1639306 - }), - new StockGoogleItem( - { - date: `2015-02-24`, - open: 562.6, - high: 574.6, - low: 561.2, - close: 570.2, - volume: 2576234 - }), - new StockGoogleItem( - { - date: `2015-02-25`, - open: 570.5, - high: 572.3, - low: 558.7, - close: 558.8, - volume: 2146384 - }), - new StockGoogleItem( - { - date: `2015-02-26`, - open: 557.6, - high: 558.9, - low: 550.6, - close: 555.2, - volume: 1568331 - }), - new StockGoogleItem( - { - date: `2015-02-27`, - open: 553, - high: 555.3, - low: 548.1, - close: 548.3, - volume: 1892323 - }), - new StockGoogleItem( - { - date: `2015-02-30`, - open: 551.6, - high: 553.5, - low: 548.2, - close: 552, - volume: 1283958 - }), - new StockGoogleItem( - { - date: `2015-02-31`, - open: 550, - high: 554.7, - low: 546.7, - close: 548, - volume: 1583677 - }), - new StockGoogleItem( - { - date: `2015-03-01`, - open: 548.6, - high: 551.1, - low: 539.5, - close: 542.6, - volume: 1957718 - }), - new StockGoogleItem( - { - date: `2015-03-02`, - open: 540.9, - high: 540.9, - low: 533.9, - close: 535.5, - volume: 1711737 - }), - new StockGoogleItem( - { - date: `2015-03-06`, - open: 532.2, - high: 538.4, - low: 529.6, - close: 536.8, - volume: 1320767 - }), - new StockGoogleItem( - { - date: `2015-03-07`, - open: 538.1, - high: 542.7, - low: 536, - close: 537, - volume: 1299298 - }), - new StockGoogleItem( - { - date: `2015-03-08`, - open: 538.4, - high: 543.9, - low: 538.4, - close: 541.6, - volume: 1175332 - }), - new StockGoogleItem( - { - date: `2015-03-09`, - open: 541, - high: 542, - low: 535.5, - close: 540.8, - volume: 1553586 - }), - new StockGoogleItem( - { - date: `2015-03-10`, - open: 542.3, - high: 542.3, - low: 537.3, - close: 540, - volume: 1405574 - }), - new StockGoogleItem( - { - date: `2015-03-13`, - open: 538.4, - high: 544.1, - low: 537.3, - close: 539.2, - volume: 1640809 - }), - new StockGoogleItem( - { - date: `2015-03-14`, - open: 536.3, - high: 537.6, - low: 528.1, - close: 530.4, - volume: 2597043 - }), - new StockGoogleItem( - { - date: `2015-03-15`, - open: 528.7, - high: 534.7, - low: 523.2, - close: 532.5, - volume: 2312512 - }), - new StockGoogleItem( - { - date: `2015-03-16`, - open: 529.9, - high: 535.6, - low: 529.6, - close: 533.8, - volume: 1296304 - }), - new StockGoogleItem( - { - date: `2015-03-17`, - open: 528.7, - high: 529.8, - low: 521, - close: 524, - volume: 2145955 - }), - new StockGoogleItem( - { - date: `2015-03-20`, - open: 525.6, - high: 536.1, - low: 524.5, - close: 535.4, - volume: 1675487 - }), - new StockGoogleItem( - { - date: `2015-03-21`, - open: 537.5, - high: 539.4, - low: 533.7, - close: 534, - volume: 1839668 - }), - new StockGoogleItem( - { - date: `2015-03-22`, - open: 534.4, - high: 541.1, - low: 531.8, - close: 539.4, - volume: 1589248 - }), - new StockGoogleItem( - { - date: `2015-03-23`, - open: 541, - high: 551, - low: 540.2, - close: 547, - volume: 4173376 - }), - new StockGoogleItem( - { - date: `2015-03-24`, - open: 566.1, - high: 571.1, - low: 557.3, - close: 565.1, - volume: 4919031 - }), - new StockGoogleItem( - { - date: `2015-03-27`, - open: 563.4, - high: 566, - low: 553.2, - close: 555.4, - volume: 2398039 - }), - new StockGoogleItem( - { - date: `2015-03-28`, - open: 554.6, - high: 556, - low: 550.4, - close: 553.7, - volume: 1490983 - }), - new StockGoogleItem( - { - date: `2015-03-29`, - open: 550.5, - high: 553.7, - low: 546.9, - close: 549.1, - volume: 1698761 - }), - new StockGoogleItem( - { - date: `2015-03-30`, - open: 547.9, - high: 548.6, - low: 535, - close: 537.3, - volume: 2082214 - }), - new StockGoogleItem( - { - date: `2015-04-01`, - open: 538.4, - high: 539.5, - low: 532.1, - close: 537.9, - volume: 1768181 - }), - new StockGoogleItem( - { - date: `2015-04-04`, - open: 538.5, - high: 544.1, - low: 535.1, - close: 540.8, - volume: 1307960 - }), - new StockGoogleItem( - { - date: `2015-04-05`, - open: 538.2, - high: 539.7, - low: 530.4, - close: 530.8, - volume: 1383068 - }), - new StockGoogleItem( - { - date: `2015-04-06`, - open: 531.2, - high: 532.4, - low: 521.1, - close: 524.2, - volume: 1566987 - }), - new StockGoogleItem( - { - date: `2015-04-07`, - open: 524, - high: 533.5, - low: 521.8, - close: 530.7, - volume: 1546278 - }), - new StockGoogleItem( - { - date: `2015-04-08`, - open: 536.6, - high: 541.1, - low: 536, - close: 538.2, - volume: 1527615 - }), - new StockGoogleItem( - { - date: `2015-04-11`, - open: 538.4, - high: 542, - low: 535.4, - close: 535.7, - volume: 905285 - }), - new StockGoogleItem( - { - date: `2015-04-12`, - open: 531.6, - high: 533.2, - low: 525.3, - close: 529, - volume: 1634174 - }), - new StockGoogleItem( - { - date: `2015-04-13`, - open: 530.6, - high: 534.3, - low: 528.7, - close: 529.6, - volume: 1253063 - }), - new StockGoogleItem( - { - date: `2015-04-14`, - open: 533.8, - high: 539, - low: 532.4, - close: 538.4, - volume: 1403935 - }), - new StockGoogleItem( - { - date: `2015-04-15`, - open: 539.2, - high: 539.3, - low: 530.4, - close: 533.9, - volume: 1971343 - }), - new StockGoogleItem( - { - date: `2015-04-18`, - open: 532, - high: 534.8, - low: 528.9, - close: 532.3, - volume: 2003421 - }), - new StockGoogleItem( - { - date: `2015-04-19`, - open: 534, - high: 540.7, - low: 533, - close: 537.4, - volume: 1966947 - }), - new StockGoogleItem( - { - date: `2015-04-20`, - open: 538.5, - high: 542.9, - low: 533, - close: 539.3, - volume: 1430826 - }), - new StockGoogleItem( - { - date: `2015-04-21`, - open: 538, - high: 543.8, - low: 536, - close: 542.5, - volume: 1462695 - }), - new StockGoogleItem( - { - date: `2015-04-22`, - open: 540.1, - high: 544.2, - low: 539.5, - close: 540.1, - volume: 1176214 - }), - new StockGoogleItem( - { - date: `2015-04-26`, - open: 538.1, - high: 539, - low: 529.9, - close: 532.3, - volume: 2406512 - }), - new StockGoogleItem( - { - date: `2015-04-27`, - open: 532.8, - high: 540.5, - low: 531.7, - close: 539.8, - volume: 1525019 - }), - new StockGoogleItem( - { - date: `2015-04-28`, - open: 538, - high: 540.6, - low: 536.3, - close: 539.8, - volume: 1029849 - }), - new StockGoogleItem( - { - date: `2015-04-29`, - open: 537.4, - high: 538.6, - low: 531.5, - close: 532.1, - volume: 2597407 - }), - new StockGoogleItem( - { - date: `2015-05-01`, - open: 536.8, - high: 536.8, - low: 529.8, - close: 534, - volume: 1904332 - }), - new StockGoogleItem( - { - date: `2015-05-02`, - open: 532.9, - high: 543, - low: 531.3, - close: 539.2, - volume: 1938989 - }), - new StockGoogleItem( - { - date: `2015-05-03`, - open: 539.9, - high: 543.5, - low: 537.1, - close: 540.3, - volume: 1717036 - }), - new StockGoogleItem( - { - date: `2015-05-04`, - open: 537.8, - high: 540.6, - low: 534.3, - close: 536.7, - volume: 1348337 - }), - new StockGoogleItem( - { - date: `2015-05-05`, - open: 536.4, - high: 537.2, - low: 532.5, - close: 533.3, - volume: 1388220 - }), - new StockGoogleItem( - { - date: `2015-05-08`, - open: 533.3, - high: 534.1, - low: 526.2, - close: 526.8, - volume: 1524139 - }), - new StockGoogleItem( - { - date: `2015-05-09`, - open: 527.6, - high: 529.2, - low: 523, - close: 526.7, - volume: 1455266 - }), - new StockGoogleItem( - { - date: `2015-05-10`, - open: 529.4, - high: 538.4, - low: 529.4, - close: 536.7, - volume: 1814958 - }), - new StockGoogleItem( - { - date: `2015-05-11`, - open: 538.4, - high: 539, - low: 533, - close: 534.6, - volume: 1217536 - }), - new StockGoogleItem( - { - date: `2015-05-12`, - open: 531.6, - high: 533.1, - low: 530.2, - close: 532.3, - volume: 955789 - }), - new StockGoogleItem( - { - date: `2015-05-15`, - open: 528, - high: 528.3, - low: 524, - close: 527.2, - volume: 1632702 - }), - new StockGoogleItem( - { - date: `2015-05-16`, - open: 528.4, - high: 529.6, - low: 525.6, - close: 528.1, - volume: 1071814 - }), - new StockGoogleItem( - { - date: `2015-05-17`, - open: 529.4, - high: 531, - low: 525.1, - close: 529.3, - volume: 1294216 - }), - new StockGoogleItem( - { - date: `2015-05-18`, - open: 531, - high: 538.1, - low: 530.8, - close: 536.7, - volume: 1833109 - }), - new StockGoogleItem( - { - date: `2015-05-19`, - open: 537.2, - high: 538.3, - low: 533, - close: 536.7, - volume: 1893497 - }), - new StockGoogleItem( - { - date: `2015-05-22`, - open: 539.6, - high: 543.7, - low: 537.5, - close: 538.2, - volume: 1250282 - }), - new StockGoogleItem( - { - date: `2015-05-23`, - open: 539.6, - high: 541.5, - low: 535.3, - close: 540.5, - volume: 1197450 - }), - new StockGoogleItem( - { - date: `2015-05-24`, - open: 540, - high: 540, - low: 535.7, - close: 537.8, - volume: 1286608 - }), - new StockGoogleItem( - { - date: `2015-05-25`, - open: 538.9, - high: 540.9, - low: 535.2, - close: 535.2, - volume: 1335697 - }), - new StockGoogleItem( - { - date: `2015-05-26`, - open: 537.3, - high: 537.8, - low: 531.4, - close: 531.7, - volume: 2109130 - }), - new StockGoogleItem( - { - date: `2015-05-29`, - open: 525, - high: 528.6, - low: 520.5, - close: 521.5, - volume: 1937821 - }), - new StockGoogleItem( - { - date: `2015-05-30`, - open: 526, - high: 526.3, - low: 520.5, - close: 520.5, - volume: 2235595 - }), - new StockGoogleItem( - { - date: `2015-06-01`, - open: 524.7, - high: 525.7, - low: 518.2, - close: 521.8, - volume: 1961354 - }), - new StockGoogleItem( - { - date: `2015-06-02`, - open: 521.1, - high: 524.6, - low: 521.1, - close: 523.4, - volume: 1235903 - }), - new StockGoogleItem( - { - date: `2015-06-06`, - open: 519.5, - high: 525.3, - low: 519, - close: 522.9, - volume: 1280525 - }), - new StockGoogleItem( - { - date: `2015-06-07`, - open: 523.1, - high: 526.2, - low: 515.2, - close: 525, - volume: 1597229 - }), - new StockGoogleItem( - { - date: `2015-06-08`, - open: 521, - high: 522.7, - low: 516.1, - close: 516.8, - volume: 1296699 - }), - new StockGoogleItem( - { - date: `2015-06-09`, - open: 523.1, - high: 523.8, - low: 520.4, - close: 520.7, - volume: 1842347 - }), - new StockGoogleItem( - { - date: `2015-06-10`, - open: 526.3, - high: 532.6, - low: 525.5, - close: 530.1, - volume: 1956682 - }), - new StockGoogleItem( - { - date: `2015-06-13`, - open: 532.9, - high: 547.1, - low: 532.4, - close: 546.5, - volume: 2206475 - }), - new StockGoogleItem( - { - date: `2015-06-14`, - open: 546.8, - high: 565.9, - low: 546.7, - close: 561.1, - volume: 3244066 - }), - new StockGoogleItem( - { - date: `2015-06-15`, - open: 560.1, - high: 566.5, - low: 556.8, - close: 560.2, - volume: 1784554 - }), - new StockGoogleItem( - { - date: `2015-06-16`, - open: 565.1, - high: 580.7, - low: 565, - close: 579.9, - volume: 4768318 - }), - new StockGoogleItem( - { - date: `2015-06-17`, - open: 649, - high: 674.5, - low: 645, - close: 672.9, - volume: 11164943 - }), - new StockGoogleItem( - { - date: `2015-06-20`, - open: 659.2, - high: 668.9, - low: 653, - close: 663, - volume: 5860872 - }), - new StockGoogleItem( - { - date: `2015-06-21`, - open: 655.2, - high: 673, - low: 654.3, - close: 662.3, - volume: 3377196 - }), - new StockGoogleItem( - { - date: `2015-06-22`, - open: 660.9, - high: 678.6, - low: 659, - close: 662.1, - volume: 3929309 - }), - new StockGoogleItem( - { - date: `2015-06-23`, - open: 661.3, - high: 663.6, - low: 641, - close: 644.3, - volume: 3029109 - }), - new StockGoogleItem( - { - date: `2015-06-24`, - open: 647, - high: 648.2, - low: 622.5, - close: 623.6, - volume: 3625747 - }), - new StockGoogleItem( - { - date: `2015-06-27`, - open: 621, - high: 634.3, - low: 620.5, - close: 627.3, - volume: 2675381 - }), - new StockGoogleItem( - { - date: `2015-06-28`, - open: 632.8, - high: 632.8, - low: 623.3, - close: 628, - volume: 1727327 - }), - new StockGoogleItem( - { - date: `2015-06-29`, - open: 628.8, - high: 633.4, - low: 622.6, - close: 631.9, - volume: 1575069 - }), - new StockGoogleItem( - { - date: `2015-06-30`, - open: 630, - high: 635.2, - low: 622, - close: 632.6, - volume: 1474203 - }), - new StockGoogleItem( - { - date: `2015-06-31`, - open: 631.4, - high: 632.9, - low: 625.5, - close: 625.6, - volume: 1706149 - }), - new StockGoogleItem( - { - date: `2015-07-03`, - open: 625.3, - high: 633.1, - low: 625.3, - close: 631.2, - volume: 1304511 - }), - new StockGoogleItem( - { - date: `2015-07-04`, - open: 628.4, - high: 634.8, - low: 627.2, - close: 629.3, - volume: 1490881 - }), - new StockGoogleItem( - { - date: `2015-07-05`, - open: 634.3, - high: 647.9, - low: 633.2, - close: 643.8, - volume: 2334266 - }), - new StockGoogleItem( - { - date: `2015-07-06`, - open: 645, - high: 645.4, - low: 632.3, - close: 642.7, - volume: 1572600 - }), - new StockGoogleItem( - { - date: `2015-07-07`, - open: 640.2, - high: 642.7, - low: 629.7, - close: 635.3, - volume: 1403865 - }), - new StockGoogleItem( - { - date: `2015-07-10`, - open: 639.5, - high: 643.4, - low: 631.3, - close: 633.7, - volume: 1809205 - }), - new StockGoogleItem( - { - date: `2015-07-11`, - open: 669.2, - high: 674.9, - low: 654.3, - close: 660.8, - volume: 5029203 - }), - new StockGoogleItem( - { - date: `2015-07-12`, - open: 663.1, - high: 665, - low: 652.3, - close: 659.6, - volume: 2940803 - }), - new StockGoogleItem( - { - date: `2015-07-13`, - open: 659.3, - high: 664.5, - low: 651.7, - close: 656.5, - volume: 1810749 - }), - new StockGoogleItem( - { - date: `2015-07-14`, - open: 655, - high: 659.9, - low: 652.7, - close: 657.1, - volume: 1072061 - }), - new StockGoogleItem( - { - date: `2015-07-17`, - open: 656.8, - high: 661.4, - low: 651.2, - close: 660.9, - volume: 1051699 - }), - new StockGoogleItem( - { - date: `2015-07-18`, - open: 661.9, - high: 664, - low: 653.5, - close: 656.1, - volume: 1456059 - }), - new StockGoogleItem( - { - date: `2015-07-19`, - open: 656.6, - high: 667, - low: 654.2, - close: 660.9, - volume: 2134098 - }), - new StockGoogleItem( - { - date: `2015-07-20`, - open: 655.5, - high: 663, - low: 642.9, - close: 646.8, - volume: 2855299 - }), - new StockGoogleItem( - { - date: `2015-07-21`, - open: 639.8, - high: 640, - low: 612.3, - close: 612.5, - volume: 4265183 - }), - new StockGoogleItem( - { - date: `2015-07-24`, - open: 573, - high: 614, - low: 565, - close: 589.6, - volume: 5770302 - }), - new StockGoogleItem( - { - date: `2015-07-25`, - open: 614.9, - high: 617.5, - low: 581.1, - close: 582.1, - volume: 3537966 - }), - new StockGoogleItem( - { - date: `2015-07-26`, - open: 610.4, - high: 631.7, - low: 599, - close: 628.6, - volume: 4235891 - }), - new StockGoogleItem( - { - date: `2015-07-27`, - open: 639.4, - high: 643.6, - low: 622, - close: 637.6, - volume: 3491336 - }), - new StockGoogleItem( - { - date: `2015-07-28`, - open: 632.8, - high: 636.9, - low: 624.6, - close: 630.4, - volume: 1978733 - }), - new StockGoogleItem( - { - date: `2015-07-31`, - open: 627.5, - high: 635.8, - low: 617.7, - close: 618.3, - volume: 2176737 - }), - new StockGoogleItem( - { - date: `2015-08-01`, - open: 602.4, - high: 612.9, - low: 594.1, - close: 597.8, - volume: 3702105 - }), - new StockGoogleItem( - { - date: `2015-08-02`, - open: 605.6, - high: 614.3, - low: 599.7, - close: 614.3, - volume: 2575620 - }), - new StockGoogleItem( - { - date: `2015-08-03`, - open: 617, - high: 619.7, - low: 602.8, - close: 606.3, - volume: 1759572 - }), - new StockGoogleItem( - { - date: `2015-08-04`, - open: 600, - high: 603.5, - low: 595.3, - close: 600.7, - volume: 2089453 - }), - new StockGoogleItem( - { - date: `2015-08-08`, - open: 612.5, - high: 616.3, - low: 604.1, - close: 614.7, - volume: 2279538 - }), - new StockGoogleItem( - { - date: `2015-08-09`, - open: 621.2, - high: 626.5, - low: 609.6, - close: 612.7, - volume: 1702094 - }), - new StockGoogleItem( - { - date: `2015-08-10`, - open: 613.1, - high: 624.2, - low: 611.4, - close: 621.4, - volume: 1900526 - }), - new StockGoogleItem( - { - date: `2015-08-11`, - open: 619.8, - high: 625.8, - low: 617.4, - close: 625.8, - volume: 1373545 - }), - new StockGoogleItem( - { - date: `2015-08-14`, - open: 625.7, - high: 625.9, - low: 619.4, - close: 623.2, - volume: 1702271 - }), - new StockGoogleItem( - { - date: `2015-08-15`, - open: 626.7, - high: 638.7, - low: 623.8, - close: 635.1, - volume: 2084397 - }), - new StockGoogleItem( - { - date: `2015-08-16`, - open: 635.5, - high: 638, - low: 632.3, - close: 636, - volume: 1286454 - }), - new StockGoogleItem( - { - date: `2015-08-17`, - open: 637.8, - high: 650.9, - low: 635, - close: 642.9, - volume: 2274690 - }), - new StockGoogleItem( - { - date: `2015-08-18`, - open: 636.8, - high: 640, - low: 627, - close: 629.3, - volume: 5133386 - }), - new StockGoogleItem( - { - date: `2015-08-21`, - open: 634.4, - high: 636.5, - low: 625.9, - close: 635.4, - volume: 1788506 - }), - new StockGoogleItem( - { - date: `2015-08-22`, - open: 627, - high: 627.5, - low: 615.4, - close: 622.7, - volume: 2562869 - }), - new StockGoogleItem( - { - date: `2015-08-23`, - open: 622, - high: 628.9, - low: 620, - close: 622.4, - volume: 1470949 - }), - new StockGoogleItem( - { - date: `2015-08-24`, - open: 616.6, - high: 627.3, - low: 612.4, - close: 625.8, - volume: 2240098 - }), - new StockGoogleItem( - { - date: `2015-08-25`, - open: 629.8, - high: 629.8, - low: 611, - close: 612, - volume: 2174009 - }), - new StockGoogleItem( - { - date: `2015-08-28`, - open: 610.3, - high: 614.6, - low: 589.4, - close: 594.9, - volume: 3127667 - }), - new StockGoogleItem( - { - date: `2015-08-29`, - open: 597.3, - high: 605, - low: 590.2, - close: 595, - volume: 2310284 - }), - new StockGoogleItem( - { - date: `2015-08-30`, - open: 603.3, - high: 608.8, - low: 600.7, - close: 608.4, - volume: 2413441 - }), - new StockGoogleItem( - { - date: `2015-09-01`, - open: 608.4, - high: 612.1, - low: 599.9, - close: 611.3, - volume: 1867601 - }), - new StockGoogleItem( - { - date: `2015-09-02`, - open: 607.2, - high: 627.3, - low: 603.1, - close: 626.9, - volume: 2684805 - }), - new StockGoogleItem( - { - date: `2015-09-05`, - open: 632, - high: 643, - low: 627, - close: 641.5, - volume: 1787880 - }), - new StockGoogleItem( - { - date: `2015-09-06`, - open: 638.8, - high: 649.3, - low: 636.5, - close: 645.4, - volume: 2166264 - }), - new StockGoogleItem( - { - date: `2015-09-07`, - open: 649.2, - high: 650.6, - low: 632.1, - close: 642.4, - volume: 2089776 - }), - new StockGoogleItem( - { - date: `2015-09-08`, - open: 641.4, - high: 644.5, - low: 625.6, - close: 639.2, - volume: 2180441 - }), - new StockGoogleItem( - { - date: `2015-09-09`, - open: 640, - high: 646, - low: 635.3, - close: 643.6, - volume: 1645844 - }), - new StockGoogleItem( - { - date: `2015-09-12`, - open: 642.1, - high: 648.5, - low: 639, - close: 646.7, - volume: 1275206 - }), - new StockGoogleItem( - { - date: `2015-09-13`, - open: 643.1, - high: 657.8, - low: 643.1, - close: 652.3, - volume: 1790704 - }), - new StockGoogleItem( - { - date: `2015-09-14`, - open: 653.2, - high: 659.4, - low: 648.9, - close: 651.2, - volume: 1412040 - }), - new StockGoogleItem( - { - date: `2015-09-15`, - open: 654.7, - high: 663.1, - low: 654.5, - close: 661.7, - volume: 1830524 - }), - new StockGoogleItem( - { - date: `2015-09-16`, - open: 664.1, - high: 665, - low: 657.2, - close: 662.2, - volume: 1606138 - }), - new StockGoogleItem( - { - date: `2015-09-19`, - open: 661.2, - high: 666.8, - low: 659.6, - close: 666.1, - volume: 1465339 - }), - new StockGoogleItem( - { - date: `2015-09-20`, - open: 664, - high: 664.7, - low: 644.2, - close: 650.3, - volume: 2490016 - }), - new StockGoogleItem( - { - date: `2015-09-21`, - open: 654.1, - high: 655.9, - low: 641.7, - close: 642.6, - volume: 1791099 - }), - new StockGoogleItem( - { - date: `2015-09-22`, - open: 646.7, - high: 657.8, - low: 644, - close: 651.8, - volume: 3782103 - }), - new StockGoogleItem( - { - date: `2015-09-23`, - open: 727.5, - high: 730, - low: 701.5, - close: 702, - volume: 6642504 - }), - new StockGoogleItem( - { - date: `2015-09-26`, - open: 701.5, - high: 719.1, - low: 701.3, - close: 712.8, - volume: 2701629 - }), - new StockGoogleItem( - { - date: `2015-09-27`, - open: 707.4, - high: 713.6, - low: 704.5, - close: 708.5, - volume: 2224309 - }), - new StockGoogleItem( - { - date: `2015-09-28`, - open: 707.3, - high: 713, - low: 703.1, - close: 713, - volume: 2176623 - }), - new StockGoogleItem( - { - date: `2015-09-29`, - open: 710.5, - high: 718.3, - low: 710, - close: 716.9, - volume: 1454128 - }), - new StockGoogleItem( - { - date: `2015-09-30`, - open: 715.7, - high: 718, - low: 710, - close: 710.8, - volume: 1903980 - }), - new StockGoogleItem( - { - date: `2015-10-02`, - open: 711.1, - high: 721.6, - low: 705.9, - close: 721.1, - volume: 1871073 - }), - new StockGoogleItem( - { - date: `2015-10-03`, - open: 718.9, - high: 724.6, - low: 714.7, - close: 722.2, - volume: 1560770 - }), - new StockGoogleItem( - { - date: `2015-10-04`, - open: 722, - high: 733.1, - low: 721.9, - close: 728.1, - volume: 1704575 - }), - new StockGoogleItem( - { - date: `2015-10-05`, - open: 729.5, - high: 739.5, - low: 729.5, - close: 731.3, - volume: 1860367 - }), - new StockGoogleItem( - { - date: `2015-10-06`, - open: 731.5, - high: 735.4, - low: 727, - close: 733.8, - volume: 1509656 - }), - new StockGoogleItem( - { - date: `2015-10-09`, - open: 730.2, - high: 734.7, - low: 719.4, - close: 724.9, - volume: 2065619 - }), - new StockGoogleItem( - { - date: `2015-10-10`, - open: 724.4, - high: 730.6, - low: 718.5, - close: 728.3, - volume: 1603937 - }), - new StockGoogleItem( - { - date: `2015-10-11`, - open: 732.5, - high: 741, - low: 730.2, - close: 735.4, - volume: 1366375 - }), - new StockGoogleItem( - { - date: `2015-10-12`, - open: 731, - high: 737.8, - low: 728.6, - close: 731.2, - volume: 1668048 - }), - new StockGoogleItem( - { - date: `2015-10-13`, - open: 729.2, - high: 731.1, - low: 716.7, - close: 717, - volume: 2062982 - }), - new StockGoogleItem( - { - date: `2015-10-16`, - open: 715.6, - high: 729.5, - low: 711.3, - close: 729, - volume: 1891074 - }), - new StockGoogleItem( - { - date: `2015-10-17`, - open: 729.3, - high: 731.8, - low: 723, - close: 725.3, - volume: 1491709 - }), - new StockGoogleItem( - { - date: `2015-10-18`, - open: 727.6, - high: 741.4, - low: 727, - close: 740, - volume: 1671588 - }), - new StockGoogleItem( - { - date: `2015-10-19`, - open: 738.7, - high: 742, - low: 737.4, - close: 738.4, - volume: 1327109 - }), - new StockGoogleItem( - { - date: `2015-10-20`, - open: 746.5, - high: 757.9, - low: 743, - close: 756.6, - volume: 2212302 - }), - new StockGoogleItem( - { - date: `2015-10-23`, - open: 757.5, - high: 762.7, - low: 751.8, - close: 756, - volume: 1414487 - }), - new StockGoogleItem( - { - date: `2015-10-24`, - open: 752, - high: 755.3, - low: 737.6, - close: 748.3, - volume: 2333130 - }), - new StockGoogleItem( - { - date: `2015-10-25`, - open: 748.1, - high: 752, - low: 746.1, - close: 748.1, - volume: 1122224 - }), - new StockGoogleItem( - { - date: `2015-10-27`, - open: 748.5, - high: 753.4, - low: 747.5, - close: 750.3, - volume: 838518 - }), - new StockGoogleItem( - { - date: `2015-10-30`, - open: 748.8, - high: 754.9, - low: 741.3, - close: 742.6, - volume: 2035261 - }), - new StockGoogleItem( - { - date: `2015-11-01`, - open: 747.1, - high: 769, - low: 746.7, - close: 767, - volume: 2129940 - }), - new StockGoogleItem( - { - date: `2015-11-02`, - open: 768.9, - high: 776, - low: 759, - close: 762.4, - volume: 2195686 - }), - new StockGoogleItem( - { - date: `2015-11-03`, - open: 766, - high: 769, - low: 745.6, - close: 752.5, - volume: 2590641 - }), - new StockGoogleItem( - { - date: `2015-11-04`, - open: 753.1, - high: 768.5, - low: 750, - close: 766.8, - volume: 2757283 - }), - new StockGoogleItem( - { - date: `2015-11-07`, - open: 767.8, - high: 768.7, - low: 755.1, - close: 763.3, - volume: 1812314 - }), - new StockGoogleItem( - { - date: `2015-11-08`, - open: 757.9, - high: 764.8, - low: 754.2, - close: 762.4, - volume: 1829475 - }), - new StockGoogleItem( - { - date: `2015-11-09`, - open: 759.2, - high: 764.2, - low: 737, - close: 751.6, - volume: 2699990 - }), - new StockGoogleItem( - { - date: `2015-11-10`, - open: 752.9, - high: 755.9, - low: 743.8, - close: 749.5, - volume: 1988380 - }), - new StockGoogleItem( - { - date: `2015-11-11`, - open: 741.2, - high: 745.7, - low: 736.8, - close: 738.9, - volume: 2224410 - }), - new StockGoogleItem( - { - date: `2015-11-14`, - open: 741.8, - high: 748.7, - low: 724.2, - close: 747.8, - volume: 2412497 - }), - new StockGoogleItem( - { - date: `2015-11-15`, - open: 753, - high: 758.1, - low: 743, - close: 743.4, - volume: 2666229 - }), - new StockGoogleItem( - { - date: `2015-11-16`, - open: 750, - high: 760.6, - low: 739.4, - close: 758.1, - volume: 1993251 - }), - new StockGoogleItem( - { - date: `2015-11-17`, - open: 762.4, - high: 762.7, - low: 749, - close: 749.4, - volume: 1553418 - }), - new StockGoogleItem( - { - date: `2015-11-18`, - open: 746.5, - high: 754.1, - low: 738.1, - close: 739.3, - volume: 3148743 - }), - new StockGoogleItem( - { - date: `2015-11-21`, - open: 746.1, - high: 750, - low: 740, - close: 747.8, - volume: 1525703 - }), - new StockGoogleItem( - { - date: `2015-11-22`, - open: 751.6, - high: 754.9, - low: 745.5, - close: 750, - volume: 1365520 - }), - new StockGoogleItem( - { - date: `2015-11-23`, - open: 753.5, - high: 754.2, - low: 744, - close: 750.3, - volume: 1566726 - }), - new StockGoogleItem( - { - date: `2015-11-24`, - open: 749.5, - high: 751.4, - low: 746.6, - close: 748.4, - volume: 527223 - }), - new StockGoogleItem( - { - date: `2015-11-28`, - open: 752.9, - high: 763, - low: 749.5, - close: 762.5, - volume: 1515716 - }), - new StockGoogleItem( - { - date: `2015-11-29`, - open: 766.7, - high: 780, - low: 766.4, - close: 776.6, - volume: 1765012 - }), - new StockGoogleItem( - { - date: `2015-11-30`, - open: 776.6, - high: 777.6, - low: 766.9, - close: 771, - volume: 1293521 - }), - new StockGoogleItem( - { - date: `2015-11-31`, - open: 769.5, - high: 769.5, - low: 758.3, - close: 758.9, - volume: 1500923 - }), - new StockGoogleItem( - { - date: `2016-00-04`, - open: 743, - high: 744.1, - low: 731.3, - close: 741.8, - volume: 3258199 - }), - new StockGoogleItem( - { - date: `2016-00-05`, - open: 746.5, - high: 752, - low: 738.6, - close: 742.6, - volume: 1950691 - }), - new StockGoogleItem( - { - date: `2016-00-06`, - open: 730, - high: 747.2, - low: 728.9, - close: 743.6, - volume: 1947034 - }), - new StockGoogleItem( - { - date: `2016-00-07`, - open: 730.3, - high: 738.5, - low: 719.1, - close: 726.4, - volume: 2963741 - }), - new StockGoogleItem( - { - date: `2016-00-08`, - open: 731.5, - high: 733.2, - low: 713, - close: 714.5, - volume: 2450857 - }), - new StockGoogleItem( - { - date: `2016-00-11`, - open: 716.6, - high: 718.9, - low: 703.5, - close: 716, - volume: 2090621 - }), - new StockGoogleItem( - { - date: `2016-00-12`, - open: 721.7, - high: 728.8, - low: 717.3, - close: 726.1, - volume: 2024509 - }), - new StockGoogleItem( - { - date: `2016-00-13`, - open: 730.9, - high: 734.7, - low: 698.6, - close: 700.6, - volume: 2468295 - }), - new StockGoogleItem( - { - date: `2016-00-14`, - open: 705.4, - high: 721.9, - low: 689.1, - close: 714.7, - volume: 2211853 - }), - new StockGoogleItem( - { - date: `2016-00-15`, - open: 692.3, - high: 706.7, - low: 685.4, - close: 694.5, - volume: 3592449 - }), - new StockGoogleItem( - { - date: `2016-00-19`, - open: 703.3, - high: 710, - low: 693.4, - close: 701.8, - volume: 2258479 - }), - new StockGoogleItem( - { - date: `2016-00-20`, - open: 688.6, - high: 706.9, - low: 673.3, - close: 698.5, - volume: 3439386 - }), - new StockGoogleItem( - { - date: `2016-00-21`, - open: 702.2, - high: 719.2, - low: 694.5, - close: 706.6, - volume: 2410263 - }), - new StockGoogleItem( - { - date: `2016-00-22`, - open: 723.6, - high: 728.1, - low: 720.1, - close: 725.3, - volume: 2006528 - }), - new StockGoogleItem( - { - date: `2016-00-25`, - open: 723.6, - high: 729.7, - low: 710, - close: 711.7, - volume: 1704641 - }), - new StockGoogleItem( - { - date: `2016-00-26`, - open: 713.9, - high: 718.3, - low: 706.5, - close: 713, - volume: 1324300 - }), - new StockGoogleItem( - { - date: `2016-00-27`, - open: 713.7, - high: 718.2, - low: 694.4, - close: 700, - volume: 2139970 - }), - new StockGoogleItem( - { - date: `2016-00-28`, - open: 722.2, - high: 733.7, - low: 712.4, - close: 731, - volume: 2658016 - }), - new StockGoogleItem( - { - date: `2016-00-29`, - open: 731.5, - high: 745, - low: 726.8, - close: 743, - volume: 3394935 - }), - new StockGoogleItem( - { - date: `2016-01-01`, - open: 750.5, - high: 757.9, - low: 743.3, - close: 752, - volume: 4801816 - }), - new StockGoogleItem( - { - date: `2016-01-02`, - open: 784.5, - high: 789.9, - low: 764.6, - close: 764.6, - volume: 6332431 - }), - new StockGoogleItem( - { - date: `2016-01-03`, - open: 770.2, - high: 774.5, - low: 720.5, - close: 727, - volume: 6162333 - }), - new StockGoogleItem( - { - date: `2016-01-04`, - open: 722.8, - high: 727, - low: 701.9, - close: 708, - volume: 5145855 - }), - new StockGoogleItem( - { - date: `2016-01-05`, - open: 703.9, - high: 704, - low: 680.1, - close: 683.6, - volume: 5069985 - }), - new StockGoogleItem( - { - date: `2016-01-08`, - open: 667.9, - high: 684, - low: 663.1, - close: 682.7, - volume: 4212541 - }), - new StockGoogleItem( - { - date: `2016-01-09`, - open: 672.3, - high: 699.9, - low: 668.8, - close: 678.1, - volume: 3604335 - }), - new StockGoogleItem( - { - date: `2016-01-10`, - open: 686.9, - high: 701.3, - low: 682.1, - close: 684.1, - volume: 2627379 - }), - new StockGoogleItem( - { - date: `2016-01-11`, - open: 675, - high: 689.4, - low: 668.9, - close: 683.1, - volume: 3007223 - }), - new StockGoogleItem( - { - date: `2016-01-12`, - open: 690.3, - high: 693.8, - low: 678.6, - close: 682.4, - volume: 2129831 - }), - new StockGoogleItem( - { - date: `2016-01-16`, - open: 693, - high: 698, - low: 685, - close: 691, - volume: 2497024 - }), - new StockGoogleItem( - { - date: `2016-01-17`, - open: 699, - high: 709.8, - low: 691.4, - close: 708.4, - volume: 2466808 - }), - new StockGoogleItem( - { - date: `2016-01-18`, - open: 710, - high: 712.4, - low: 696, - close: 697.4, - volume: 1859130 - }), - new StockGoogleItem( - { - date: `2016-01-19`, - open: 695, - high: 703.1, - low: 694, - close: 700.9, - volume: 1582260 - }), - new StockGoogleItem( - { - date: `2016-01-22`, - open: 707.5, - high: 713.2, - low: 702.5, - close: 706.5, - volume: 1946067 - }), - new StockGoogleItem( - { - date: `2016-01-23`, - open: 701.5, - high: 708.4, - low: 693.6, - close: 695.9, - volume: 1999699 - }), - new StockGoogleItem( - { - date: `2016-01-24`, - open: 688.9, - high: 700, - low: 680.8, - close: 699.6, - volume: 1958611 - }), - new StockGoogleItem( - { - date: `2016-01-25`, - open: 700, - high: 706, - low: 690.6, - close: 705.8, - volume: 1631855 - }), - new StockGoogleItem( - { - date: `2016-01-26`, - open: 708.6, - high: 713.4, - low: 700.9, - close: 705.1, - volume: 2239978 - }), - new StockGoogleItem( - { - date: `2016-01-29`, - open: 700.3, - high: 710.9, - low: 697.7, - close: 697.8, - volume: 2280280 - }), - new StockGoogleItem( - { - date: `2016-02-01`, - open: 703.6, - high: 718.8, - low: 699.8, - close: 718.8, - volume: 2147442 - }), - new StockGoogleItem( - { - date: `2016-02-02`, - open: 719, - high: 720, - low: 712, - close: 718.9, - volume: 1627753 - }), - new StockGoogleItem( - { - date: `2016-02-03`, - open: 718.7, - high: 719.5, - low: 706, - close: 712.4, - volume: 1956761 - }), - new StockGoogleItem( - { - date: `2016-02-04`, - open: 715, - high: 716.5, - low: 706, - close: 710.9, - volume: 1967873 - }), - new StockGoogleItem( - { - date: `2016-02-07`, - open: 706.9, - high: 708.1, - low: 686.9, - close: 695.2, - volume: 2985094 - }), - new StockGoogleItem( - { - date: `2016-02-08`, - open: 688.6, - high: 703.8, - low: 685.3, - close: 694, - volume: 2063357 - }), - new StockGoogleItem( - { - date: `2016-02-09`, - open: 698.5, - high: 705.7, - low: 694, - close: 705.2, - volume: 1418704 - }), - new StockGoogleItem( - { - date: `2016-02-10`, - open: 708.1, - high: 716.4, - low: 703.4, - close: 712.8, - volume: 2829412 - }), - new StockGoogleItem( - { - date: `2016-02-11`, - open: 720, - high: 726.9, - low: 717.1, - close: 726.8, - volume: 1963907 - }), - new StockGoogleItem( - { - date: `2016-02-14`, - open: 726.8, - high: 735.5, - low: 725.1, - close: 730.5, - volume: 1716910 - }), - new StockGoogleItem( - { - date: `2016-02-15`, - open: 726.9, - high: 732.3, - low: 724.8, - close: 728.3, - volume: 1720965 - }), - new StockGoogleItem( - { - date: `2016-02-16`, - open: 726.4, - high: 737.5, - low: 724.5, - close: 736.1, - volume: 1572329 - }), - new StockGoogleItem( - { - date: `2016-02-17`, - open: 736.5, - high: 743.1, - low: 736, - close: 737.8, - volume: 1856800 - }), - new StockGoogleItem( - { - date: `2016-02-18`, - open: 741.9, - high: 742, - low: 731.8, - close: 737.6, - volume: 2796376 - }), - new StockGoogleItem( - { - date: `2016-02-21`, - open: 736.5, - high: 742.5, - low: 733.5, - close: 742.1, - volume: 1831839 - }), - new StockGoogleItem( - { - date: `2016-02-22`, - open: 737.5, - high: 745, - low: 737.5, - close: 740.8, - volume: 1264396 - }), - new StockGoogleItem( - { - date: `2016-02-23`, - open: 742.4, - high: 745.7, - low: 736.1, - close: 738.1, - volume: 1421861 - }), - new StockGoogleItem( - { - date: `2016-02-24`, - open: 732, - high: 737.8, - low: 731, - close: 735.3, - volume: 1564782 - }), - new StockGoogleItem( - { - date: `2016-02-28`, - open: 736.8, - high: 739, - low: 732.5, - close: 733.5, - volume: 1299812 - }), - new StockGoogleItem( - { - date: `2016-02-29`, - open: 734.6, - high: 747.3, - low: 728.8, - close: 744.8, - volume: 1902128 - }), - new StockGoogleItem( - { - date: `2016-02-30`, - open: 750.1, - high: 757.9, - low: 748.7, - close: 750.5, - volume: 1780998 - }), - new StockGoogleItem( - { - date: `2016-02-31`, - open: 749.3, - high: 750.9, - low: 740.9, - close: 745, - volume: 1712375 - }), - new StockGoogleItem( - { - date: `2016-03-01`, - open: 738.6, - high: 750.3, - low: 737, - close: 749.9, - volume: 1574870 - }), - new StockGoogleItem( - { - date: `2016-03-04`, - open: 750.1, - high: 752.8, - low: 742.4, - close: 745.3, - volume: 1131843 - }), - new StockGoogleItem( - { - date: `2016-03-05`, - open: 738, - high: 742.8, - low: 735.4, - close: 737.8, - volume: 1129829 - }), - new StockGoogleItem( - { - date: `2016-03-06`, - open: 735.8, - high: 746.2, - low: 735.6, - close: 745.7, - volume: 1050193 - }), - new StockGoogleItem( - { - date: `2016-03-07`, - open: 745.4, - high: 747, - low: 736.3, - close: 740.3, - volume: 1429504 - }), - new StockGoogleItem( - { - date: `2016-03-08`, - open: 744, - high: 745.5, - low: 735.5, - close: 739.1, - volume: 1285755 - }), - new StockGoogleItem( - { - date: `2016-03-11`, - open: 743, - high: 745, - low: 736, - close: 736.1, - volume: 1211762 - }), - new StockGoogleItem( - { - date: `2016-03-12`, - open: 738, - high: 743.8, - low: 731, - close: 743.1, - volume: 1349734 - }), - new StockGoogleItem( - { - date: `2016-03-13`, - open: 749.2, - high: 754.4, - low: 744.3, - close: 751.7, - volume: 1707095 - }), - new StockGoogleItem( - { - date: `2016-03-14`, - open: 754, - high: 757.3, - low: 752.7, - close: 753.2, - volume: 1130971 - }), - new StockGoogleItem( - { - date: `2016-03-15`, - open: 754, - high: 761, - low: 752.7, - close: 759, - volume: 1800413 - }), - new StockGoogleItem( - { - date: `2016-03-18`, - open: 760.5, - high: 768, - low: 757.3, - close: 766.6, - volume: 1555953 - }), - new StockGoogleItem( - { - date: `2016-03-19`, - open: 769.5, - high: 769.9, - low: 749.3, - close: 753.9, - volume: 2027642 - }), - new StockGoogleItem( - { - date: `2016-03-20`, - open: 758, - high: 758.1, - low: 750, - close: 752.7, - volume: 1525591 - }), - new StockGoogleItem( - { - date: `2016-03-21`, - open: 755.4, - high: 760.5, - low: 749.5, - close: 759.1, - volume: 2743620 - }), - new StockGoogleItem( - { - date: `2016-03-22`, - open: 726.3, - high: 736.1, - low: 713.6, - close: 718.8, - volume: 5939199 - }), - new StockGoogleItem( - { - date: `2016-03-25`, - open: 716.1, - high: 723.9, - low: 715.6, - close: 723.1, - volume: 1955567 - }), - new StockGoogleItem( - { - date: `2016-03-26`, - open: 725.4, - high: 725.8, - low: 703, - close: 708.1, - volume: 2727185 - }), - new StockGoogleItem( - { - date: `2016-03-27`, - open: 707.3, - high: 709, - low: 692.4, - close: 705.8, - volume: 3086722 - }), - new StockGoogleItem( - { - date: `2016-03-28`, - open: 708.3, - high: 714.2, - low: 689.5, - close: 691, - volume: 2851108 - }), - new StockGoogleItem( - { - date: `2016-03-29`, - open: 690.7, - high: 697.6, - low: 689, - close: 693, - volume: 2484273 - }), - new StockGoogleItem( - { - date: `2016-04-02`, - open: 697.6, - high: 700.6, - low: 691, - close: 698.2, - volume: 1644126 - }), - new StockGoogleItem( - { - date: `2016-04-03`, - open: 696.9, - high: 697.8, - low: 692, - close: 692.4, - volume: 1530993 - }), - new StockGoogleItem( - { - date: `2016-04-04`, - open: 690.5, - high: 699.8, - low: 689, - close: 695.7, - volume: 1688569 - }), - new StockGoogleItem( - { - date: `2016-04-05`, - open: 697.7, - high: 702.3, - low: 695.7, - close: 701.4, - volume: 1677405 - }), - new StockGoogleItem( - { - date: `2016-04-06`, - open: 698.4, - high: 711.9, - low: 698.1, - close: 711.1, - volume: 1826146 - }), - new StockGoogleItem( - { - date: `2016-04-09`, - open: 712, - high: 718.7, - low: 710, - close: 712.9, - volume: 1508423 - }), - new StockGoogleItem( - { - date: `2016-04-10`, - open: 716.8, - high: 723.5, - low: 715.7, - close: 723.2, - volume: 1563105 - }), - new StockGoogleItem( - { - date: `2016-04-11`, - open: 723.4, - high: 724.5, - low: 712.8, - close: 715.3, - volume: 1686823 - }), - new StockGoogleItem( - { - date: `2016-04-12`, - open: 717.1, - high: 719.3, - low: 709, - close: 713.3, - volume: 1360732 - }), - new StockGoogleItem( - { - date: `2016-04-13`, - open: 711.9, - high: 716.7, - low: 709.3, - close: 710.8, - volume: 1307338 - }), - new StockGoogleItem( - { - date: `2016-04-16`, - open: 709.1, - high: 718.5, - low: 705.6, - close: 716.5, - volume: 1316177 - }), - new StockGoogleItem( - { - date: `2016-04-17`, - open: 716, - high: 721.5, - low: 704.1, - close: 706.2, - volume: 1999456 - }), - new StockGoogleItem( - { - date: `2016-04-18`, - open: 703.7, - high: 711.6, - low: 700.6, - close: 706.6, - volume: 1763394 - }), - new StockGoogleItem( - { - date: `2016-04-19`, - open: 702.4, - high: 706, - low: 696.8, - close: 700.3, - volume: 1656321 - }), - new StockGoogleItem( - { - date: `2016-04-20`, - open: 701.6, - high: 714.6, - low: 700.5, - close: 709.7, - volume: 1816027 - }), - new StockGoogleItem( - { - date: `2016-04-23`, - open: 706.5, - high: 711.5, - low: 704.2, - close: 704.2, - volume: 1320927 - }), - new StockGoogleItem( - { - date: `2016-04-24`, - open: 706.9, - high: 721, - low: 706.9, - close: 720.1, - volume: 1920411 - }), - new StockGoogleItem( - { - date: `2016-04-25`, - open: 720.8, - high: 727.5, - low: 719.7, - close: 725.3, - volume: 1629198 - }), - new StockGoogleItem( - { - date: `2016-04-26`, - open: 722.9, - high: 728.3, - low: 720.3, - close: 724.1, - volume: 1542866 - }), - new StockGoogleItem( - { - date: `2016-04-27`, - open: 724, - high: 733.9, - low: 724, - close: 732.7, - volume: 1974026 - }), - new StockGoogleItem( - { - date: `2016-04-31`, - open: 731.7, - high: 739.7, - low: 731.3, - close: 735.7, - volume: 2129545 - }), - new StockGoogleItem( - { - date: `2016-05-01`, - open: 734.5, - high: 737.2, - low: 730.7, - close: 734.1, - volume: 1253593 - }), - new StockGoogleItem( - { - date: `2016-05-02`, - open: 732.5, - high: 733, - low: 724.2, - close: 730.4, - volume: 1341807 - }), - new StockGoogleItem( - { - date: `2016-05-03`, - open: 729.3, - high: 729.5, - low: 720.6, - close: 722.3, - volume: 1226253 - }), - new StockGoogleItem( - { - date: `2016-05-06`, - open: 724.9, - high: 724.9, - low: 714.6, - close: 716.5, - volume: 1566059 - }), - new StockGoogleItem( - { - date: `2016-05-07`, - open: 719.8, - high: 722, - low: 716.5, - close: 716.6, - volume: 1336754 - }), - new StockGoogleItem( - { - date: `2016-05-08`, - open: 724, - high: 728.6, - low: 720.6, - close: 728.3, - volume: 1583701 - }), - new StockGoogleItem( - { - date: `2016-05-09`, - open: 722.9, - high: 729.5, - low: 722.3, - close: 728.6, - volume: 988914 - }), - new StockGoogleItem( - { - date: `2016-05-10`, - open: 719.5, - high: 725.9, - low: 716.4, - close: 719.4, - volume: 1216443 - }), - new StockGoogleItem( - { - date: `2016-05-13`, - open: 716.5, - high: 725.4, - low: 716.5, - close: 718.4, - volume: 1258930 - }), - new StockGoogleItem( - { - date: `2016-05-14`, - open: 716.5, - high: 722.5, - low: 713.1, - close: 718.3, - volume: 1306065 - }), - new StockGoogleItem( - { - date: `2016-05-15`, - open: 719, - high: 723, - low: 717.3, - close: 718.9, - volume: 1214517 - }), - new StockGoogleItem( - { - date: `2016-05-16`, - open: 714.9, - high: 716.6, - low: 703.3, - close: 710.4, - volume: 1982471 - }), - new StockGoogleItem( - { - date: `2016-05-17`, - open: 708.6, - high: 708.8, - low: 688.5, - close: 691.7, - volume: 3402357 - }), - new StockGoogleItem( - { - date: `2016-05-20`, - open: 698.8, - high: 702.5, - low: 693.4, - close: 693.7, - volume: 2082538 - }), - new StockGoogleItem( - { - date: `2016-05-21`, - open: 698.4, - high: 702.8, - low: 692, - close: 695.9, - volume: 1465634 - }), - new StockGoogleItem( - { - date: `2016-05-22`, - open: 699.1, - high: 700.9, - low: 693.1, - close: 697.5, - volume: 1184318 - }), - new StockGoogleItem( - { - date: `2016-05-23`, - open: 697.5, - high: 702, - low: 687, - close: 701.9, - volume: 2171415 - }), - new StockGoogleItem( - { - date: `2016-05-24`, - open: 675.2, - high: 689.4, - low: 673.5, - close: 675.2, - volume: 4449022 - }), - new StockGoogleItem( - { - date: `2016-05-27`, - open: 671, - high: 672.3, - low: 663.3, - close: 668.3, - volume: 2641085 - }), - new StockGoogleItem( - { - date: `2016-05-28`, - open: 679, - high: 680.3, - low: 673, - close: 680, - volume: 2173762 - }), - new StockGoogleItem( - { - date: `2016-05-29`, - open: 683, - high: 687.4, - low: 681.4, - close: 684.1, - volume: 1932561 - }), - new StockGoogleItem( - { - date: `2016-05-30`, - open: 685.5, - high: 692.3, - low: 683.6, - close: 692.1, - volume: 1597714 - }), - new StockGoogleItem( - { - date: `2016-06-01`, - open: 692.2, - high: 700.6, - low: 692.1, - close: 699.2, - volume: 1344710 - }), - new StockGoogleItem( - { - date: `2016-06-05`, - open: 696.1, - high: 696.9, - low: 688.9, - close: 694.5, - volume: 1462616 - }), - new StockGoogleItem( - { - date: `2016-06-06`, - open: 690, - high: 701.7, - low: 689.1, - close: 697.8, - volume: 1411925 - }), - new StockGoogleItem( - { - date: `2016-06-07`, - open: 698.1, - high: 698.2, - low: 688.2, - close: 695.4, - volume: 1304200 - }), - new StockGoogleItem( - { - date: `2016-06-08`, - open: 699.5, - high: 705.7, - low: 696.4, - close: 705.6, - volume: 1575166 - }), - new StockGoogleItem( - { - date: `2016-06-11`, - open: 708, - high: 716.5, - low: 707.2, - close: 715.1, - volume: 1111762 - }), - new StockGoogleItem( - { - date: `2016-06-12`, - open: 719.1, - high: 722.9, - low: 715.9, - close: 720.6, - volume: 1336921 - }), - new StockGoogleItem( - { - date: `2016-06-13`, - open: 723.6, - high: 724, - low: 716.9, - close: 717, - volume: 935876 - }), - new StockGoogleItem( - { - date: `2016-06-14`, - open: 721.6, - high: 722.2, - low: 718, - close: 721, - volume: 950193 - }), - new StockGoogleItem( - { - date: `2016-06-15`, - open: 725.7, - high: 725.7, - low: 719.1, - close: 719.9, - volume: 1279339 - }), - new StockGoogleItem( - { - date: `2016-06-18`, - open: 722.7, - high: 736.1, - low: 721.2, - close: 733.8, - volume: 1295476 - }), - new StockGoogleItem( - { - date: `2016-06-19`, - open: 729.9, - high: 737, - low: 729, - close: 737, - volume: 1227486 - }), - new StockGoogleItem( - { - date: `2016-06-20`, - open: 737.3, - high: 742.1, - low: 737.1, - close: 741.2, - volume: 1289671 - }), - new StockGoogleItem( - { - date: `2016-06-21`, - open: 740.4, - high: 741.7, - low: 735.8, - close: 738.6, - volume: 1026306 - }), - new StockGoogleItem( - { - date: `2016-06-22`, - open: 741.9, - high: 743.2, - low: 736.6, - close: 742.7, - volume: 1259823 - }), - new StockGoogleItem( - { - date: `2016-06-25`, - open: 740.7, - high: 742.6, - low: 737.5, - close: 739.8, - volume: 1032432 - }), - new StockGoogleItem( - { - date: `2016-06-26`, - open: 739, - high: 741.7, - low: 734.3, - close: 738.4, - volume: 1186738 - }), - new StockGoogleItem( - { - date: `2016-06-27`, - open: 738.3, - high: 744.5, - low: 737, - close: 741.8, - volume: 1512517 - }), - new StockGoogleItem( - { - date: `2016-06-28`, - open: 747, - high: 748.6, - low: 739.3, - close: 745.9, - volume: 3530169 - }), - new StockGoogleItem( - { - date: `2016-06-29`, - open: 772.7, - high: 778.5, - low: 766.8, - close: 768.8, - volume: 3841482 - }), - new StockGoogleItem( - { - date: `2016-07-01`, - open: 761.1, - high: 780.4, - low: 761.1, - close: 772.9, - volume: 2700470 - }), - new StockGoogleItem( - { - date: `2016-07-02`, - open: 768.7, - high: 775.8, - low: 767.9, - close: 771.1, - volume: 1784525 - }), - new StockGoogleItem( - { - date: `2016-07-03`, - open: 767.2, - high: 773.2, - low: 766.8, - close: 773.2, - volume: 1287421 - }), - new StockGoogleItem( - { - date: `2016-07-04`, - open: 772.2, - high: 774.1, - low: 768.8, - close: 771.6, - volume: 1140254 - }), - new StockGoogleItem( - { - date: `2016-07-05`, - open: 773.8, - high: 783, - low: 772.3, - close: 782.2, - volume: 1801205 - }), - new StockGoogleItem( - { - date: `2016-07-08`, - open: 782, - high: 782.6, - low: 778.1, - close: 781.8, - volume: 1107857 - }), - new StockGoogleItem( - { - date: `2016-07-09`, - open: 781.1, - high: 788.9, - low: 780.6, - close: 784.3, - volume: 1318894 - }), - new StockGoogleItem( - { - date: `2016-07-10`, - open: 783.8, - high: 786.8, - low: 782.8, - close: 784.7, - volume: 786363 - }), - new StockGoogleItem( - { - date: `2016-07-11`, - open: 785, - high: 789.8, - low: 783, - close: 784.9, - volume: 975113 - }), - new StockGoogleItem( - { - date: `2016-07-12`, - open: 781.5, - high: 783.4, - low: 780.4, - close: 783.2, - volume: 740498 - }), - new StockGoogleItem( - { - date: `2016-07-15`, - open: 783.8, - high: 787.5, - low: 780.1, - close: 782.4, - volume: 938186 - }), - new StockGoogleItem( - { - date: `2016-07-16`, - open: 780.3, - high: 781, - low: 773.4, - close: 777.1, - volume: 1028047 - }), - new StockGoogleItem( - { - date: `2016-07-17`, - open: 777.3, - high: 780.8, - low: 773.5, - close: 779.9, - volume: 924226 - }), - new StockGoogleItem( - { - date: `2016-07-18`, - open: 780, - high: 782.9, - low: 777, - close: 777.5, - volume: 719429 - }), - new StockGoogleItem( - { - date: `2016-07-19`, - open: 775, - high: 777.1, - low: 773.1, - close: 775.4, - volume: 861546 - }), - new StockGoogleItem( - { - date: `2016-07-22`, - open: 773.3, - high: 774.5, - low: 770, - close: 772.1, - volume: 951362 - }), - new StockGoogleItem( - { - date: `2016-07-23`, - open: 775.5, - high: 776.4, - low: 771.8, - close: 772.1, - volume: 928232 - }), - new StockGoogleItem( - { - date: `2016-07-24`, - open: 770.6, - high: 774.5, - low: 767.1, - close: 769.6, - volume: 1071999 - }), - new StockGoogleItem( - { - date: `2016-07-25`, - open: 767, - high: 771.9, - low: 763.2, - close: 769.4, - volume: 926883 - }), - new StockGoogleItem( - { - date: `2016-07-26`, - open: 769, - high: 776.1, - low: 765.9, - close: 769.5, - volume: 1166681 - }), - new StockGoogleItem( - { - date: `2016-07-29`, - open: 768.7, - high: 775, - low: 766.6, - close: 772.1, - volume: 847565 - }), - new StockGoogleItem( - { - date: `2016-07-30`, - open: 769.3, - high: 774.5, - low: 766.8, - close: 769.1, - volume: 1130029 - }), - new StockGoogleItem( - { - date: `2016-07-31`, - open: 767, - high: 769.1, - low: 765.4, - close: 767, - volume: 1248556 - }), - new StockGoogleItem( - { - date: `2016-08-01`, - open: 769.3, - high: 771, - low: 764.3, - close: 768.8, - volume: 925131 - }), - new StockGoogleItem( - { - date: `2016-08-02`, - open: 773, - high: 773.9, - low: 768.4, - close: 771.5, - volume: 1072658 - }), - new StockGoogleItem( - { - date: `2016-08-06`, - open: 773.5, - high: 782, - low: 771, - close: 780.1, - volume: 1442822 - }), - new StockGoogleItem( - { - date: `2016-08-07`, - open: 780, - high: 782.7, - low: 776.2, - close: 780.4, - volume: 894021 - }), - new StockGoogleItem( - { - date: `2016-08-08`, - open: 778.6, - high: 780.4, - low: 773.6, - close: 775.3, - volume: 1270264 - }), - new StockGoogleItem( - { - date: `2016-08-09`, - open: 770.1, - high: 773.2, - low: 759.7, - close: 759.7, - volume: 1885496 - }), - new StockGoogleItem( - { - date: `2016-08-12`, - open: 755.1, - high: 770.3, - low: 754, - close: 769, - volume: 1310986 - }), - new StockGoogleItem( - { - date: `2016-08-13`, - open: 764.5, - high: 766.2, - low: 755.8, - close: 759.7, - volume: 1395046 - }), - new StockGoogleItem( - { - date: `2016-08-14`, - open: 759.6, - high: 767.7, - low: 759.1, - close: 762.5, - volume: 1094490 - }), - new StockGoogleItem( - { - date: `2016-08-15`, - open: 762.9, - high: 773.8, - low: 760, - close: 771.8, - volume: 1346751 - }), - new StockGoogleItem( - { - date: `2016-08-16`, - open: 769.8, - high: 769.8, - low: 764.7, - close: 768.9, - volume: 2049338 - }), - new StockGoogleItem( - { - date: `2016-08-19`, - open: 772.4, - high: 774, - low: 764.4, - close: 765.7, - volume: 1172824 - }), - new StockGoogleItem( - { - date: `2016-08-20`, - open: 769, - high: 773.3, - low: 768.5, - close: 771.4, - volume: 978631 - }), - new StockGoogleItem( - { - date: `2016-08-21`, - open: 772.7, - high: 777.2, - low: 768.3, - close: 776.2, - volume: 1167810 - }), - new StockGoogleItem( - { - date: `2016-08-22`, - open: 780, - high: 789.9, - low: 778.4, - close: 787.2, - volume: 1486223 - }), - new StockGoogleItem( - { - date: `2016-08-23`, - open: 786.6, - high: 788.9, - low: 784.1, - close: 786.9, - volume: 1411937 - }), - new StockGoogleItem( - { - date: `2016-08-26`, - open: 782.7, - high: 782.7, - low: 773.1, - close: 774.2, - volume: 1533206 - }), - new StockGoogleItem( - { - date: `2016-08-27`, - open: 775.5, - high: 786, - low: 774.3, - close: 783, - volume: 1153247 - }), - new StockGoogleItem( - { - date: `2016-08-28`, - open: 777.9, - high: 781.8, - low: 775, - close: 781.6, - volume: 1109834 - }), - new StockGoogleItem( - { - date: `2016-08-29`, - open: 781.4, - high: 785.8, - low: 774.2, - close: 775, - volume: 1314746 - }), - new StockGoogleItem( - { - date: `2016-08-30`, - open: 776.3, - high: 780.9, - low: 774.1, - close: 777.3, - volume: 1585333 - }), - new StockGoogleItem( - { - date: `2016-09-03`, - open: 774.3, - high: 776.1, - low: 769.5, - close: 772.6, - volume: 1278821 - }), - new StockGoogleItem( - { - date: `2016-09-04`, - open: 776, - high: 778.7, - low: 772.9, - close: 776.4, - volume: 1201350 - }), - new StockGoogleItem( - { - date: `2016-09-05`, - open: 779.3, - high: 782.1, - low: 775.6, - close: 776.5, - volume: 1461151 - }), - new StockGoogleItem( - { - date: `2016-09-06`, - open: 779, - high: 780.5, - low: 775.5, - close: 776.9, - volume: 1070692 - }), - new StockGoogleItem( - { - date: `2016-09-07`, - open: 779.7, - high: 779.7, - low: 770.8, - close: 775.1, - volume: 933158 - }), - new StockGoogleItem( - { - date: `2016-09-10`, - open: 777.7, - high: 789.4, - low: 775.9, - close: 785.9, - volume: 1174923 - }), - new StockGoogleItem( - { - date: `2016-09-11`, - open: 786.7, - high: 792.3, - low: 780.6, - close: 783.1, - volume: 1372461 - }), - new StockGoogleItem( - { - date: `2016-09-12`, - open: 783.8, - high: 788.1, - low: 782.1, - close: 786.1, - volume: 937435 - }), - new StockGoogleItem( - { - date: `2016-09-13`, - open: 781.2, - high: 781.2, - low: 773, - close: 778.2, - volume: 1365277 - }), - new StockGoogleItem( - { - date: `2016-09-14`, - open: 781.6, - high: 784, - low: 776, - close: 778.5, - volume: 852487 - }), - new StockGoogleItem( - { - date: `2016-09-17`, - open: 779.8, - high: 785.9, - low: 777.5, - close: 780, - volume: 1092973 - }), - new StockGoogleItem( - { - date: `2016-09-18`, - open: 787.9, - high: 801.6, - low: 785.6, - close: 795.3, - volume: 2056903 - }), - new StockGoogleItem( - { - date: `2016-09-19`, - open: 798.9, - high: 804.6, - low: 797.6, - close: 801.6, - volume: 1766798 - }), - new StockGoogleItem( - { - date: `2016-09-20`, - open: 803.3, - high: 804, - low: 796, - close: 797, - volume: 1757528 - }), - new StockGoogleItem( - { - date: `2016-09-21`, - open: 795, - high: 799.5, - low: 794, - close: 799.4, - volume: 1266181 - }), - new StockGoogleItem( - { - date: `2016-09-24`, - open: 804.9, - high: 815.2, - low: 804.8, - close: 813.1, - volume: 1697514 - }), - new StockGoogleItem( - { - date: `2016-09-25`, - open: 816.7, - high: 816.7, - low: 805.1, - close: 807.7, - volume: 1576404 - }), - new StockGoogleItem( - { - date: `2016-09-26`, - open: 806.3, - high: 807, - low: 796.3, - close: 799.1, - volume: 1647733 - }), - new StockGoogleItem( - { - date: `2016-09-27`, - open: 801, - high: 803.5, - low: 791.5, - close: 795.4, - volume: 2749221 - }), - new StockGoogleItem( - { - date: `2016-09-28`, - open: 808.4, - high: 815.5, - low: 793.6, - close: 795.4, - volume: 4269902 - }), - new StockGoogleItem( - { - date: `2016-09-31`, - open: 795.5, - high: 796.9, - low: 784, - close: 784.5, - volume: 2427284 - }), - new StockGoogleItem( - { - date: `2016-10-01`, - open: 782.9, - high: 789.5, - low: 775.5, - close: 783.6, - volume: 2406356 - }), - new StockGoogleItem( - { - date: `2016-10-02`, - open: 778.2, - high: 781.6, - low: 763.5, - close: 768.7, - volume: 1918414 - }), - new StockGoogleItem( - { - date: `2016-10-03`, - open: 767.3, - high: 770, - low: 759, - close: 762.1, - volume: 1943175 - }), - new StockGoogleItem( - { - date: `2016-10-04`, - open: 750.7, - high: 770.4, - low: 750.6, - close: 762, - volume: 2134812 - }), - new StockGoogleItem( - { - date: `2016-10-07`, - open: 774.5, - high: 785.2, - low: 772.5, - close: 782.5, - volume: 1585070 - }), - new StockGoogleItem( - { - date: `2016-10-08`, - open: 783.4, - high: 795.6, - low: 780.2, - close: 790.5, - volume: 1366873 - }), - new StockGoogleItem( - { - date: `2016-10-09`, - open: 779.9, - high: 791.2, - low: 771.7, - close: 785.3, - volume: 2607121 - }), - new StockGoogleItem( - { - date: `2016-10-10`, - open: 791.2, - high: 791.2, - low: 752.2, - close: 762.6, - volume: 4745183 - }), - new StockGoogleItem( - { - date: `2016-10-11`, - open: 756.5, - high: 760.8, - low: 750.4, - close: 754, - volume: 2431815 - }), - new StockGoogleItem( - { - date: `2016-10-14`, - open: 755.6, - high: 757.9, - low: 727.5, - close: 736.1, - volume: 3654385 - }), - new StockGoogleItem( - { - date: `2016-10-15`, - open: 747, - high: 764.4, - low: 747, - close: 758.5, - volume: 2384001 - }), - new StockGoogleItem( - { - date: `2016-10-16`, - open: 755.2, - high: 766.4, - low: 750.5, - close: 764.5, - volume: 1472594 - }), - new StockGoogleItem( - { - date: `2016-10-17`, - open: 766.9, - high: 772.7, - low: 764.2, - close: 771.2, - volume: 1286961 - }), - new StockGoogleItem( - { - date: `2016-10-18`, - open: 771.4, - high: 775, - low: 760, - close: 760.5, - volume: 1547145 - }), - new StockGoogleItem( - { - date: `2016-10-21`, - open: 762.6, - high: 769.7, - low: 760.6, - close: 769.2, - volume: 1330639 - }), - new StockGoogleItem( - { - date: `2016-10-22`, - open: 772.6, - high: 777, - low: 767, - close: 768.3, - volume: 1593108 - }), - new StockGoogleItem( - { - date: `2016-10-23`, - open: 767.7, - high: 768.3, - low: 755.3, - close: 761, - volume: 1478417 - }), - new StockGoogleItem( - { - date: `2016-10-25`, - open: 764.3, - high: 765, - low: 760.5, - close: 761.7, - volume: 587421 - }), - new StockGoogleItem( - { - date: `2016-10-28`, - open: 760, - high: 779.5, - low: 759.8, - close: 768.2, - volume: 2188151 - }), - new StockGoogleItem( - { - date: `2016-10-29`, - open: 771.5, - high: 778.5, - low: 768.2, - close: 770.8, - volume: 1616618 - }), - new StockGoogleItem( - { - date: `2016-10-30`, - open: 770.1, - high: 773, - low: 754.8, - close: 758, - volume: 2392890 - }), - new StockGoogleItem( - { - date: `2016-11-01`, - open: 757.4, - high: 759.9, - low: 737, - close: 747.9, - volume: 3017947 - }), - new StockGoogleItem( - { - date: `2016-11-02`, - open: 744.6, - high: 754, - low: 743.1, - close: 750.5, - volume: 1452484 - }), - new StockGoogleItem( - { - date: `2016-11-05`, - open: 757.7, - high: 763.9, - low: 752.9, - close: 762.5, - volume: 1394223 - }), - new StockGoogleItem( - { - date: `2016-11-06`, - open: 764.7, - high: 768.8, - low: 757.3, - close: 759.1, - volume: 1690689 - }), - new StockGoogleItem( - { - date: `2016-11-07`, - open: 761, - high: 771.4, - low: 755.8, - close: 771.2, - volume: 1760966 - }), - new StockGoogleItem( - { - date: `2016-11-08`, - open: 772.5, - high: 778.2, - low: 767.2, - close: 776.4, - volume: 1488059 - }), - new StockGoogleItem( - { - date: `2016-11-09`, - open: 780, - high: 789.4, - low: 779, - close: 789.3, - volume: 1821914 - }), - new StockGoogleItem( - { - date: `2016-11-12`, - open: 785, - high: 791.3, - low: 784.4, - close: 789.3, - volume: 2104117 - }), - new StockGoogleItem( - { - date: `2016-11-13`, - open: 793.9, - high: 804.4, - low: 793.3, - close: 796.1, - volume: 2145209 - }), - new StockGoogleItem( - { - date: `2016-11-14`, - open: 797.4, - high: 804, - low: 794, - close: 797.1, - volume: 1704150 - }), - new StockGoogleItem( - { - date: `2016-11-15`, - open: 797.3, - high: 803, - low: 792.9, - close: 797.9, - volume: 1626499 - }), - new StockGoogleItem( - { - date: `2016-11-16`, - open: 800.4, - high: 800.9, - low: 790.3, - close: 790.8, - volume: 2443796 - }), - new StockGoogleItem( - { - date: `2016-11-19`, - open: 790.2, - high: 797.7, - low: 786.3, - close: 794.2, - volume: 1232087 - }), - new StockGoogleItem( - { - date: `2016-11-20`, - open: 796.8, - high: 798.6, - low: 793.3, - close: 796.4, - volume: 951014 - }), - new StockGoogleItem( - { - date: `2016-11-21`, - open: 795.8, - high: 796.7, - low: 787.1, - close: 794.6, - volume: 1211346 - }), - new StockGoogleItem( - { - date: `2016-11-22`, - open: 792.4, - high: 793.3, - low: 788.6, - close: 791.3, - volume: 972169 - }), - new StockGoogleItem( - { - date: `2016-11-23`, - open: 790.9, - high: 792.7, - low: 787.3, - close: 789.9, - volume: 623944 - }), - new StockGoogleItem( - { - date: `2016-11-27`, - open: 790.7, - high: 797.9, - low: 787.7, - close: 791.5, - volume: 789321 - }), - new StockGoogleItem( - { - date: `2016-11-28`, - open: 793.7, - high: 794.2, - low: 783.2, - close: 785, - volume: 1153824 - }), - new StockGoogleItem( - { - date: `2016-11-29`, - open: 783.3, - high: 785.9, - low: 778.9, - close: 782.8, - volume: 744272 - }), - new StockGoogleItem( - { - date: `2016-11-30`, - open: 782.8, - high: 782.8, - low: 770.4, - close: 771.8, - volume: 1769950 - }), - new StockGoogleItem( - { - date: `2017-00-03`, - open: 778.8, - high: 789.6, - low: 775.8, - close: 786.1, - volume: 1657268 - }), - new StockGoogleItem( - { - date: `2017-00-04`, - open: 788.4, - high: 791.3, - low: 783.2, - close: 786.9, - volume: 1072958 - }), - new StockGoogleItem( - { - date: `2017-00-05`, - open: 786.1, - high: 794.5, - low: 785, - close: 794, - volume: 1335167 - }), - new StockGoogleItem( - { - date: `2017-00-06`, - open: 795.3, - high: 807.9, - low: 792.2, - close: 806.1, - volume: 1640170 - }), - new StockGoogleItem( - { - date: `2017-00-09`, - open: 806.4, - high: 810, - low: 802.8, - close: 806.6, - volume: 1274645 - }), - new StockGoogleItem( - { - date: `2017-00-10`, - open: 807.9, - high: 809.1, - low: 803.5, - close: 804.8, - volume: 1176780 - }), - new StockGoogleItem( - { - date: `2017-00-11`, - open: 805, - high: 808.1, - low: 801.4, - close: 807.9, - volume: 1065936 - }), - new StockGoogleItem( - { - date: `2017-00-12`, - open: 807.1, - high: 807.4, - low: 799.2, - close: 806.4, - volume: 1353057 - }), - new StockGoogleItem( - { - date: `2017-00-13`, - open: 807.5, - high: 811.2, - low: 806.7, - close: 807.9, - volume: 1099215 - }), - new StockGoogleItem( - { - date: `2017-00-17`, - open: 807.1, - high: 807.1, - low: 800.4, - close: 804.6, - volume: 1362115 - }), - new StockGoogleItem( - { - date: `2017-00-18`, - open: 805.8, - high: 806.2, - low: 801, - close: 806.1, - volume: 1294407 - }), - new StockGoogleItem( - { - date: `2017-00-19`, - open: 805.1, - high: 809.5, - low: 801.8, - close: 802.2, - volume: 919325 - }), - new StockGoogleItem( - { - date: `2017-00-20`, - open: 806.9, - high: 806.9, - low: 801.7, - close: 805, - volume: 1670045 - }), - new StockGoogleItem( - { - date: `2017-00-23`, - open: 807.3, - high: 820.9, - low: 803.7, - close: 819.3, - volume: 1963628 - }), - new StockGoogleItem( - { - date: `2017-00-24`, - open: 822.3, - high: 825.9, - low: 817.8, - close: 823.9, - volume: 1474010 - }), - new StockGoogleItem( - { - date: `2017-00-25`, - open: 829.6, - high: 835.8, - low: 825.1, - close: 835.7, - volume: 1627304 - }), - new StockGoogleItem( - { - date: `2017-00-26`, - open: 837.8, - high: 838, - low: 827, - close: 832.1, - volume: 2973891 - }), - new StockGoogleItem( - { - date: `2017-00-27`, - open: 834.7, - high: 842, - low: 820.4, - close: 823.3, - volume: 2965771 - }), - new StockGoogleItem( - { - date: `2017-00-30`, - open: 814.7, - high: 815.8, - low: 799.8, - close: 802.3, - volume: 3246573 - }), - new StockGoogleItem( - { - date: `2017-00-31`, - open: 796.9, - high: 801.3, - low: 790.5, - close: 796.8, - volume: 2160556 - }), - new StockGoogleItem( - { - date: `2017-01-01`, - open: 799.7, - high: 801.2, - low: 791.2, - close: 795.7, - volume: 2029744 - }), - new StockGoogleItem( - { - date: `2017-01-02`, - open: 793.8, - high: 802.7, - low: 792, - close: 798.5, - volume: 1532138 - }), - new StockGoogleItem( - { - date: `2017-01-03`, - open: 803, - high: 806, - low: 800.4, - close: 801.5, - volume: 1463448 - }), - new StockGoogleItem( - { - date: `2017-01-06`, - open: 799.7, - high: 801.7, - low: 795.3, - close: 801.3, - volume: 1184483 - }), - new StockGoogleItem( - { - date: `2017-01-07`, - open: 804, - high: 810.5, - low: 801.8, - close: 807, - volume: 1241221 - }), - new StockGoogleItem( - { - date: `2017-01-08`, - open: 807, - high: 811.8, - low: 803.2, - close: 808.4, - volume: 1155990 - }), - new StockGoogleItem( - { - date: `2017-01-09`, - open: 809.5, - high: 810.7, - low: 804.5, - close: 809.6, - volume: 990391 - }), - new StockGoogleItem( - { - date: `2017-01-10`, - open: 811.7, - high: 815.3, - low: 809.8, - close: 813.7, - volume: 1134976 - }), - new StockGoogleItem( - { - date: `2017-01-13`, - open: 816, - high: 821, - low: 815.5, - close: 819.2, - volume: 1213324 - }), - new StockGoogleItem( - { - date: `2017-01-14`, - open: 819, - high: 823, - low: 816, - close: 820.5, - volume: 1054732 - }), - new StockGoogleItem( - { - date: `2017-01-15`, - open: 819.4, - high: 823, - low: 818.5, - close: 819, - volume: 1313617 - }), - new StockGoogleItem( - { - date: `2017-01-16`, - open: 819.9, - high: 824.4, - low: 819, - close: 824.2, - volume: 1287626 - }), - new StockGoogleItem( - { - date: `2017-01-17`, - open: 823, - high: 828.1, - low: 821.7, - close: 828.1, - volume: 1611039 - }), - new StockGoogleItem( - { - date: `2017-01-21`, - open: 828.7, - high: 833.5, - low: 828.4, - close: 831.7, - volume: 1262337 - }), - new StockGoogleItem( - { - date: `2017-01-22`, - open: 828.7, - high: 833.3, - low: 828.6, - close: 830.8, - volume: 987248 - }), - new StockGoogleItem( - { - date: `2017-01-23`, - open: 830.1, - high: 832.5, - low: 822.9, - close: 831.3, - volume: 1472771 - }), - new StockGoogleItem( - { - date: `2017-01-24`, - open: 827.7, - high: 829, - low: 824.2, - close: 828.6, - volume: 1392202 - }), - new StockGoogleItem( - { - date: `2017-01-27`, - open: 824.5, - high: 830.5, - low: 824, - close: 829.3, - volume: 1101466 - }), - new StockGoogleItem( - { - date: `2017-01-28`, - open: 825.6, - high: 828.5, - low: 820.2, - close: 823.2, - volume: 2260769 - }), - new StockGoogleItem( - { - date: `2017-02-01`, - open: 828.9, - high: 836.3, - low: 827.3, - close: 835.2, - volume: 1496540 - }), - new StockGoogleItem( - { - date: `2017-02-02`, - open: 833.9, - high: 834.5, - low: 829.6, - close: 830.6, - volume: 942476 - }), - new StockGoogleItem( - { - date: `2017-02-03`, - open: 830.6, - high: 831.4, - low: 825.8, - close: 829.1, - volume: 896378 - }), - new StockGoogleItem( - { - date: `2017-02-06`, - open: 827, - high: 828.9, - low: 822.4, - close: 827.8, - volume: 1109037 - }), - new StockGoogleItem( - { - date: `2017-02-07`, - open: 827.4, - high: 833.4, - low: 826.5, - close: 831.9, - volume: 1037630 - }), - new StockGoogleItem( - { - date: `2017-02-08`, - open: 833.5, - high: 838.1, - low: 831.8, - close: 835.4, - volume: 989773 - }), - new StockGoogleItem( - { - date: `2017-02-09`, - open: 836, - high: 842, - low: 834.2, - close: 838.7, - volume: 1261517 - }), - new StockGoogleItem( - { - date: `2017-02-10`, - open: 843.3, - high: 844.9, - low: 839.5, - close: 843.3, - volume: 1704024 - }), - new StockGoogleItem( - { - date: `2017-02-13`, - open: 844, - high: 848.7, - low: 843.3, - close: 845.5, - volume: 1223647 - }), - new StockGoogleItem( - { - date: `2017-02-14`, - open: 843.6, - high: 847.2, - low: 840.8, - close: 845.6, - volume: 780198 - }), - new StockGoogleItem( - { - date: `2017-02-15`, - open: 847.6, - high: 848.6, - low: 840.8, - close: 847.2, - volume: 1381474 - }), - new StockGoogleItem( - { - date: `2017-02-16`, - open: 849, - high: 850.9, - low: 846.1, - close: 848.8, - volume: 977560 - }), - new StockGoogleItem( - { - date: `2017-02-17`, - open: 851.6, - high: 853.4, - low: 847.1, - close: 852.1, - volume: 1716471 - }), - new StockGoogleItem( - { - date: `2017-02-20`, - open: 850, - high: 850.2, - low: 845.1, - close: 848.4, - volume: 1231521 - }), - new StockGoogleItem( - { - date: `2017-02-21`, - open: 851.4, - high: 853.5, - low: 829, - close: 830.5, - volume: 2463484 - }), - new StockGoogleItem( - { - date: `2017-02-22`, - open: 831.9, - high: 835.5, - low: 827.2, - close: 829.6, - volume: 1401465 - }), - new StockGoogleItem( - { - date: `2017-02-23`, - open: 821, - high: 822.6, - low: 812.3, - close: 817.6, - volume: 3487056 - }), - new StockGoogleItem( - { - date: `2017-02-24`, - open: 820.1, - high: 821.9, - low: 808.9, - close: 814.4, - volume: 1981006 - }), - new StockGoogleItem( - { - date: `2017-02-27`, - open: 807, - high: 821.6, - low: 803.4, - close: 819.5, - volume: 1894990 - }), - new StockGoogleItem( - { - date: `2017-02-28`, - open: 820.4, - high: 826, - low: 814, - close: 820.9, - volume: 1620542 - }), - new StockGoogleItem( - { - date: `2017-02-29`, - open: 825, - high: 832.8, - low: 822.4, - close: 831.4, - volume: 1786321 - }), - new StockGoogleItem( - { - date: `2017-02-30`, - open: 833.5, - high: 833.7, - low: 829, - close: 831.5, - volume: 1055339 - }), - new StockGoogleItem( - { - date: `2017-02-31`, - open: 829, - high: 831.6, - low: 827.4, - close: 829.6, - volume: 1401893 - }), - new StockGoogleItem( - { - date: `2017-03-03`, - open: 829.2, - high: 840.9, - low: 829.2, - close: 838.5, - volume: 1671503 - }), - new StockGoogleItem( - { - date: `2017-03-04`, - open: 831.4, - high: 835.2, - low: 829, - close: 834.6, - volume: 1045363 - }), - new StockGoogleItem( - { - date: `2017-03-05`, - open: 835.5, - high: 842.5, - low: 830.7, - close: 831.4, - volume: 1555328 - }), - new StockGoogleItem( - { - date: `2017-03-06`, - open: 832.4, - high: 836.4, - low: 826.5, - close: 827.9, - volume: 1254433 - }), - new StockGoogleItem( - { - date: `2017-03-07`, - open: 828, - high: 828.5, - low: 820.5, - close: 824.7, - volume: 1057253 - }), - new StockGoogleItem( - { - date: `2017-03-10`, - open: 825.4, - high: 829.4, - low: 823.8, - close: 824.7, - volume: 978905 - }), - new StockGoogleItem( - { - date: `2017-03-11`, - open: 824.7, - high: 827.4, - low: 817, - close: 823.4, - volume: 1079732 - }), - new StockGoogleItem( - { - date: `2017-03-12`, - open: 821.9, - high: 826.7, - low: 821, - close: 824.3, - volume: 900480 - }), - new StockGoogleItem( - { - date: `2017-03-13`, - open: 822.1, - high: 826.4, - low: 821.4, - close: 823.6, - volume: 1122362 - }), - new StockGoogleItem( - { - date: `2017-03-17`, - open: 825, - high: 837.8, - low: 824.5, - close: 837.2, - volume: 895015 - }), - new StockGoogleItem( - { - date: `2017-03-18`, - open: 834.2, - high: 838.9, - low: 832.7, - close: 836.8, - volume: 836722 - }), - new StockGoogleItem( - { - date: `2017-03-19`, - open: 839.8, - high: 842.2, - low: 836.3, - close: 838.2, - volume: 954330 - }), - new StockGoogleItem( - { - date: `2017-03-20`, - open: 841.4, - high: 845.2, - low: 839.3, - close: 841.6, - volume: 959031 - }), - new StockGoogleItem( - { - date: `2017-03-21`, - open: 842.9, - high: 843.9, - low: 840.6, - close: 843.2, - volume: 1323583 - }), - new StockGoogleItem( - { - date: `2017-03-24`, - open: 851.2, - high: 863.5, - low: 849.9, - close: 862.8, - volume: 1372541 - }), - new StockGoogleItem( - { - date: `2017-03-25`, - open: 865, - high: 875, - low: 862.8, - close: 872.3, - volume: 1671972 - }), - new StockGoogleItem( - { - date: `2017-03-26`, - open: 874.2, - high: 876, - low: 867.8, - close: 871.7, - volume: 1237167 - }), - new StockGoogleItem( - { - date: `2017-03-27`, - open: 873.6, - high: 875.4, - low: 870.4, - close: 874.3, - volume: 2026816 - }), - new StockGoogleItem( - { - date: `2017-03-28`, - open: 910.7, - high: 916.9, - low: 905.8, - close: 906, - volume: 3276255 - }), - new StockGoogleItem( - { - date: `2017-04-01`, - open: 901.9, - high: 915.7, - low: 901.5, - close: 912.6, - volume: 2115993 - }), - new StockGoogleItem( - { - date: `2017-04-02`, - open: 909.6, - high: 920.8, - low: 909.5, - close: 916.4, - volume: 1587219 - }), - new StockGoogleItem( - { - date: `2017-04-03`, - open: 914.9, - high: 928.1, - low: 912.5, - close: 927, - volume: 1499532 - }), - new StockGoogleItem( - { - date: `2017-04-04`, - open: 926.1, - high: 935.9, - low: 924.6, - close: 931.7, - volume: 1422144 - }), - new StockGoogleItem( - { - date: `2017-04-05`, - open: 933.5, - high: 934.9, - low: 925.2, - close: 927.1, - volume: 1911275 - }), - new StockGoogleItem( - { - date: `2017-04-08`, - open: 926.1, - high: 936.9, - low: 925.3, - close: 934.3, - volume: 1329825 - }), - new StockGoogleItem( - { - date: `2017-04-09`, - open: 937, - high: 937.5, - low: 929.5, - close: 932.2, - volume: 1581809 - }), - new StockGoogleItem( - { - date: `2017-04-10`, - open: 932, - high: 932, - low: 925.2, - close: 928.8, - volume: 1173925 - }), - new StockGoogleItem( - { - date: `2017-04-11`, - open: 925.3, - high: 932.5, - low: 923, - close: 930.6, - volume: 835386 - }), - new StockGoogleItem( - { - date: `2017-04-12`, - open: 931.5, - high: 933.4, - low: 927.9, - close: 932.2, - volume: 1050601 - }), - new StockGoogleItem( - { - date: `2017-04-15`, - open: 933, - high: 938.3, - low: 929.3, - close: 937.1, - volume: 1108496 - }), - new StockGoogleItem( - { - date: `2017-04-16`, - open: 940, - high: 943.1, - low: 937.6, - close: 943, - volume: 969479 - }), - new StockGoogleItem( - { - date: `2017-04-17`, - open: 935.7, - high: 939.3, - low: 918.1, - close: 919.6, - volume: 2362072 - }), - new StockGoogleItem( - { - date: `2017-04-18`, - open: 921, - high: 933.2, - low: 918.8, - close: 930.2, - volume: 1596897 - }), - new StockGoogleItem( - { - date: `2017-04-19`, - open: 931.5, - high: 937.8, - low: 931, - close: 934, - volume: 1393024 - }), - new StockGoogleItem( - { - date: `2017-04-22`, - open: 935, - high: 941.9, - low: 935, - close: 941.9, - volume: 1120385 - }), - new StockGoogleItem( - { - date: `2017-04-23`, - open: 947.9, - high: 951.5, - low: 942.6, - close: 948.8, - volume: 1270817 - }), - new StockGoogleItem( - { - date: `2017-04-24`, - open: 953, - high: 955.1, - low: 949.5, - close: 955, - volume: 1034199 - }), - new StockGoogleItem( - { - date: `2017-04-25`, - open: 957.3, - high: 972.6, - low: 955.5, - close: 969.5, - volume: 1660474 - }), - new StockGoogleItem( - { - date: `2017-04-26`, - open: 969.7, - high: 975, - low: 965, - close: 971.5, - volume: 1252010 - }), - new StockGoogleItem( - { - date: `2017-04-30`, - open: 970.3, - high: 976.2, - low: 969.5, - close: 975.9, - volume: 1466654 - }), - new StockGoogleItem( - { - date: `2017-04-31`, - open: 975, - high: 979.3, - low: 960.2, - close: 964.9, - volume: 2448067 - }), - new StockGoogleItem( - { - date: `2017-05-01`, - open: 969, - high: 971.5, - low: 960, - close: 967, - volume: 1410458 - }), - new StockGoogleItem( - { - date: `2017-05-02`, - open: 969.5, - high: 975.9, - low: 966, - close: 975.6, - volume: 1750955 - }), - new StockGoogleItem( - { - date: `2017-05-05`, - open: 976.5, - high: 986.9, - low: 975.1, - close: 983.7, - volume: 1252106 - }), - new StockGoogleItem( - { - date: `2017-05-06`, - open: 983.2, - high: 988.3, - low: 975.1, - close: 976.6, - volume: 1814624 - }), - new StockGoogleItem( - { - date: `2017-05-07`, - open: 979.6, - high: 984.1, - low: 975.8, - close: 981.1, - volume: 1453874 - }), - new StockGoogleItem( - { - date: `2017-05-08`, - open: 982.4, - high: 984.6, - low: 977.2, - close: 983.4, - volume: 1481916 - }), - new StockGoogleItem( - { - date: `2017-05-09`, - open: 984.5, - high: 984.5, - low: 935.6, - close: 949.8, - volume: 3309389 - }), - new StockGoogleItem( - { - date: `2017-05-12`, - open: 939.6, - high: 949.4, - low: 915.2, - close: 942.9, - volume: 3763529 - }), - new StockGoogleItem( - { - date: `2017-05-13`, - open: 951.9, - high: 960, - low: 944.1, - close: 953.4, - volume: 2013337 - }), - new StockGoogleItem( - { - date: `2017-05-14`, - open: 959.9, - high: 961.1, - low: 942.3, - close: 950.8, - volume: 1489715 - }), - new StockGoogleItem( - { - date: `2017-05-15`, - open: 934, - high: 943.3, - low: 924.4, - close: 942.3, - volume: 2133050 - }), - new StockGoogleItem( - { - date: `2017-05-16`, - open: 940, - high: 942, - low: 931.6, - close: 939.8, - volume: 3094711 - }), - new StockGoogleItem( - { - date: `2017-05-19`, - open: 950, - high: 960, - low: 949, - close: 957.4, - volume: 1533336 - }), - new StockGoogleItem( - { - date: `2017-05-20`, - open: 957.5, - high: 961.6, - low: 950, - close: 950.6, - volume: 1125990 - }), - new StockGoogleItem( - { - date: `2017-05-21`, - open: 953.6, - high: 960.1, - low: 950.8, - close: 959.5, - volume: 1202233 - }), - new StockGoogleItem( - { - date: `2017-05-22`, - open: 958.7, - high: 960.7, - low: 954.5, - close: 957.1, - volume: 941958 - }), - new StockGoogleItem( - { - date: `2017-05-23`, - open: 956.8, - high: 966, - low: 954.2, - close: 965.6, - volume: 1527856 - }), - new StockGoogleItem( - { - date: `2017-05-26`, - open: 969.9, - high: 973.3, - low: 950.8, - close: 952.3, - volume: 1598355 - }), - new StockGoogleItem( - { - date: `2017-05-27`, - open: 942.5, - high: 948.3, - low: 926.9, - close: 927.3, - volume: 2579930 - }), - new StockGoogleItem( - { - date: `2017-05-28`, - open: 929, - high: 942.8, - low: 916, - close: 940.5, - volume: 2721406 - }), - new StockGoogleItem( - { - date: `2017-05-29`, - open: 929.9, - high: 931.3, - low: 910.6, - close: 917.8, - volume: 3299176 - }), - new StockGoogleItem( - { - date: `2017-05-30`, - open: 926, - high: 926, - low: 908.3, - close: 908.7, - volume: 2090226 - }), - new StockGoogleItem( - { - date: `2017-06-03`, - open: 912.2, - high: 913.9, - low: 894.8, - close: 898.7, - volume: 1710373 - }), - new StockGoogleItem( - { - date: `2017-06-05`, - open: 901.8, - high: 914.5, - low: 898.5, - close: 911.7, - volume: 1813884 - }), - new StockGoogleItem( - { - date: `2017-06-06`, - open: 904.1, - high: 914.9, - low: 899.7, - close: 906.7, - volume: 1424503 - }), - new StockGoogleItem( - { - date: `2017-06-07`, - open: 908.9, - high: 921.5, - low: 908.9, - close: 918.6, - volume: 1637785 - }), - new StockGoogleItem( - { - date: `2017-06-10`, - open: 921.8, - high: 930.4, - low: 919.6, - close: 928.8, - volume: 1192825 - }), - new StockGoogleItem( - { - date: `2017-06-11`, - open: 929.5, - high: 931.4, - low: 922, - close: 930.1, - volume: 1113235 - }), - new StockGoogleItem( - { - date: `2017-06-12`, - open: 938.7, - high: 946.3, - low: 934.5, - close: 943.8, - volume: 1532144 - }), - new StockGoogleItem( - { - date: `2017-06-13`, - open: 946.3, - high: 954.5, - low: 943, - close: 947.2, - volume: 1294687 - }), - new StockGoogleItem( - { - date: `2017-06-14`, - open: 952, - high: 956.9, - low: 948, - close: 956, - volume: 1053774 - }), - new StockGoogleItem( - { - date: `2017-06-17`, - open: 957, - high: 960.7, - low: 949.2, - close: 953.4, - volume: 1165537 - }), - new StockGoogleItem( - { - date: `2017-06-18`, - open: 953, - high: 968, - low: 950.6, - close: 965.4, - volume: 1153964 - }), - new StockGoogleItem( - { - date: `2017-06-19`, - open: 967.8, - high: 973, - low: 964, - close: 970.9, - volume: 1224540 - }), - new StockGoogleItem( - { - date: `2017-06-20`, - open: 975, - high: 975.9, - low: 961.5, - close: 968.1, - volume: 1624463 - }), - new StockGoogleItem( - { - date: `2017-06-21`, - open: 962.3, - high: 973.2, - low: 960.1, - close: 972.9, - volume: 1711000 - }), - new StockGoogleItem( - { - date: `2017-06-24`, - open: 972.2, - high: 986.2, - low: 970.8, - close: 980.3, - volume: 3248347 - }), - new StockGoogleItem( - { - date: `2017-06-25`, - open: 953.8, - high: 959.7, - low: 945.4, - close: 950.7, - volume: 4660979 - }), - new StockGoogleItem( - { - date: `2017-06-26`, - open: 954.7, - high: 955, - low: 942.3, - close: 947.8, - volume: 2088256 - }), - new StockGoogleItem( - { - date: `2017-06-27`, - open: 951.8, - high: 951.8, - low: 920, - close: 934.1, - volume: 3212996 - }), - new StockGoogleItem( - { - date: `2017-06-28`, - open: 929.4, - high: 943.8, - low: 927.5, - close: 941.5, - volume: 1846351 - }), - new StockGoogleItem( - { - date: `2017-06-31`, - open: 941.9, - high: 943.6, - low: 926, - close: 930.5, - volume: 1970095 - }), - new StockGoogleItem( - { - date: `2017-07-01`, - open: 932.4, - high: 937.5, - low: 929.3, - close: 930.8, - volume: 1277734 - }), - new StockGoogleItem( - { - date: `2017-07-02`, - open: 928.6, - high: 932.6, - low: 916.7, - close: 930.4, - volume: 1824448 - }), - new StockGoogleItem( - { - date: `2017-07-03`, - open: 930.3, - high: 932.2, - low: 922.2, - close: 923.6, - volume: 1202512 - }), - new StockGoogleItem( - { - date: `2017-07-04`, - open: 926.8, - high: 930.3, - low: 923, - close: 928, - volume: 1082267 - }), - new StockGoogleItem( - { - date: `2017-07-07`, - open: 929.1, - high: 931.7, - low: 926.5, - close: 929.4, - volume: 1032239 - }), - new StockGoogleItem( - { - date: `2017-07-08`, - open: 927.1, - high: 935.8, - low: 925.6, - close: 926.8, - volume: 1061579 - }), - new StockGoogleItem( - { - date: `2017-07-09`, - open: 920.6, - high: 926, - low: 917.3, - close: 922.9, - volume: 1192081 - }), - new StockGoogleItem( - { - date: `2017-07-10`, - open: 917.5, - high: 919.3, - low: 906.1, - close: 907.2, - volume: 1823967 - }), - new StockGoogleItem( - { - date: `2017-07-11`, - open: 908, - high: 917.8, - low: 905.6, - close: 914.4, - volume: 1206782 - }), - new StockGoogleItem( - { - date: `2017-07-14`, - open: 922.5, - high: 924.7, - low: 918.2, - close: 922.7, - volume: 1064530 - }), - new StockGoogleItem( - { - date: `2017-07-15`, - open: 924.2, - high: 926.5, - low: 919.8, - close: 922.2, - volume: 883369 - }), - new StockGoogleItem( - { - date: `2017-07-16`, - open: 925.3, - high: 932.7, - low: 923.4, - close: 927, - volume: 1006711 - }), - new StockGoogleItem( - { - date: `2017-07-17`, - open: 925.8, - high: 926.9, - low: 911, - close: 911, - volume: 1277238 - }), - new StockGoogleItem( - { - date: `2017-07-18`, - open: 910.3, - high: 915.3, - low: 907.1, - close: 910.7, - volume: 1342689 - }), - new StockGoogleItem( - { - date: `2017-07-21`, - open: 910, - high: 913, - low: 903.4, - close: 906.7, - volume: 943441 - }), - new StockGoogleItem( - { - date: `2017-07-22`, - open: 912.7, - high: 925.9, - low: 911.5, - close: 924.7, - volume: 1166737 - }), - new StockGoogleItem( - { - date: `2017-07-23`, - open: 921.9, - high: 929.9, - low: 919.4, - close: 927, - volume: 1090248 - }), - new StockGoogleItem( - { - date: `2017-07-24`, - open: 928.7, - high: 930.8, - low: 915.5, - close: 921.3, - volume: 1270306 - }), - new StockGoogleItem( - { - date: `2017-07-25`, - open: 923.5, - high: 925.6, - low: 915.5, - close: 915.9, - volume: 1053376 - }), - new StockGoogleItem( - { - date: `2017-07-28`, - open: 916, - high: 919.2, - low: 911.9, - close: 913.8, - volume: 1086484 - }), - new StockGoogleItem( - { - date: `2017-07-29`, - open: 905.1, - high: 923.3, - low: 905, - close: 921.3, - volume: 1185564 - }), - new StockGoogleItem( - { - date: `2017-07-30`, - open: 920, - high: 930.8, - low: 919.6, - close: 929.6, - volume: 1301225 - }), - new StockGoogleItem( - { - date: `2017-07-31`, - open: 931.8, - high: 942, - low: 931.8, - close: 939.3, - volume: 1582579 - }), - new StockGoogleItem( - { - date: `2017-08-01`, - open: 941.1, - high: 942.5, - low: 935.1, - close: 937.3, - volume: 947374 - }), - new StockGoogleItem( - { - date: `2017-08-05`, - open: 933.1, - high: 937, - low: 922, - close: 928.5, - volume: 1348292 - }), - new StockGoogleItem( - { - date: `2017-08-06`, - open: 930.1, - high: 930.9, - low: 919.3, - close: 927.8, - volume: 1527650 - }), - new StockGoogleItem( - { - date: `2017-08-07`, - open: 931.7, - high: 936.4, - low: 923.6, - close: 936, - volume: 1212743 - }), - new StockGoogleItem( - { - date: `2017-08-08`, - open: 936.5, - high: 937, - low: 924.9, - close: 926.5, - volume: 1011538 - }), - new StockGoogleItem( - { - date: `2017-08-11`, - open: 934.3, - high: 938.4, - low: 926.9, - close: 929.1, - volume: 1266991 - }), - new StockGoogleItem( - { - date: `2017-08-12`, - open: 932.6, - high: 933.5, - low: 923.9, - close: 932.1, - volume: 1134397 - }), - new StockGoogleItem( - { - date: `2017-08-13`, - open: 930.7, - high: 937.3, - low: 929.9, - close: 935.1, - volume: 1102631 - }), - new StockGoogleItem( - { - date: `2017-08-14`, - open: 931.3, - high: 932.8, - low: 924, - close: 925.1, - volume: 1397644 - }), - new StockGoogleItem( - { - date: `2017-08-15`, - open: 924.7, - high: 926.5, - low: 916.4, - close: 920.3, - volume: 2505430 - }), - new StockGoogleItem( - { - date: `2017-08-18`, - open: 920, - high: 922.1, - low: 910.6, - close: 915, - volume: 1306922 - }), - new StockGoogleItem( - { - date: `2017-08-19`, - open: 917.4, - high: 922.4, - low: 912.5, - close: 921.8, - volume: 936654 - }), - new StockGoogleItem( - { - date: `2017-08-20`, - open: 923, - high: 933.9, - low: 922, - close: 931.6, - volume: 1669763 - }), - new StockGoogleItem( - { - date: `2017-08-21`, - open: 933, - high: 936.5, - low: 923.8, - close: 932.5, - volume: 1290607 - }), - new StockGoogleItem( - { - date: `2017-08-22`, - open: 927.8, - high: 934.7, - low: 926.5, - close: 928.5, - volume: 1052704 - }), - new StockGoogleItem( - { - date: `2017-08-25`, - open: 925.5, - high: 926.4, - low: 909.7, - close: 921, - volume: 1856822 - }), - new StockGoogleItem( - { - date: `2017-08-26`, - open: 923.7, - high: 930.8, - low: 921.1, - close: 924.9, - volume: 1666861 - }), - new StockGoogleItem( - { - date: `2017-08-27`, - open: 927.7, - high: 949.9, - low: 927.7, - close: 944.5, - volume: 2212600 - }), - new StockGoogleItem( - { - date: `2017-08-28`, - open: 941.4, - high: 950.7, - low: 940.5, - close: 949.5, - volume: 1020312 - }), - new StockGoogleItem( - { - date: `2017-08-29`, - open: 952, - high: 959.8, - low: 951.5, - close: 959.1, - volume: 1580994 - }), - new StockGoogleItem( - { - date: `2017-09-02`, - open: 960, - high: 962.5, - low: 947.8, - close: 953.3, - volume: 1283444 - }), - new StockGoogleItem( - { - date: `2017-09-03`, - open: 954, - high: 958, - low: 949.1, - close: 957.8, - volume: 888346 - }), - new StockGoogleItem( - { - date: `2017-09-04`, - open: 957, - high: 960.4, - low: 950.7, - close: 951.7, - volume: 952391 - }), - new StockGoogleItem( - { - date: `2017-09-05`, - open: 955.5, - high: 970.9, - low: 955.2, - close: 970, - volume: 1213816 - }), - new StockGoogleItem( - { - date: `2017-09-06`, - open: 966.7, - high: 979.5, - low: 963.4, - close: 978.9, - volume: 1173882 - }), - new StockGoogleItem( - { - date: `2017-09-09`, - open: 980, - high: 985.4, - low: 976.1, - close: 977, - volume: 891355 - }), - new StockGoogleItem( - { - date: `2017-09-10`, - open: 980, - high: 981.6, - low: 966.1, - close: 972.6, - volume: 968362 - }), - new StockGoogleItem( - { - date: `2017-09-11`, - open: 973.7, - high: 990.7, - low: 972.3, - close: 989.3, - volume: 1693274 - }), - new StockGoogleItem( - { - date: `2017-09-12`, - open: 987.5, - high: 994.1, - low: 985, - close: 987.8, - volume: 1262793 - }), - new StockGoogleItem( - { - date: `2017-09-13`, - open: 992, - high: 997.2, - low: 989, - close: 989.7, - volume: 1169777 - }), - new StockGoogleItem( - { - date: `2017-09-16`, - open: 992.1, - high: 993.9, - low: 984, - close: 992, - volume: 910543 - }), - new StockGoogleItem( - { - date: `2017-09-17`, - open: 990.3, - high: 996.4, - low: 988.6, - close: 992.2, - volume: 1290186 - }), - new StockGoogleItem( - { - date: `2017-09-18`, - open: 991.8, - high: 996.7, - low: 987, - close: 992.8, - volume: 1057581 - }), - new StockGoogleItem( - { - date: `2017-09-19`, - open: 986, - high: 988.9, - low: 978.4, - close: 984.5, - volume: 1313575 - }), - new StockGoogleItem( - { - date: `2017-09-20`, - open: 989.4, - high: 991, - low: 984.6, - close: 988.2, - volume: 1183186 - }), - new StockGoogleItem( - { - date: `2017-09-23`, - open: 989.5, - high: 989.5, - low: 966.1, - close: 968.5, - volume: 1478448 - }), - new StockGoogleItem( - { - date: `2017-09-24`, - open: 970, - high: 972.2, - low: 961, - close: 970.5, - volume: 1212153 - }), - new StockGoogleItem( - { - date: `2017-09-25`, - open: 968.4, - high: 976.1, - low: 960.5, - close: 973.3, - volume: 1211262 - }), - new StockGoogleItem( - { - date: `2017-09-26`, - open: 980, - high: 987.6, - low: 972.2, - close: 972.6, - volume: 2042149 - }), - new StockGoogleItem( - { - date: `2017-09-27`, - open: 1009.2, - high: 1048.4, - low: 1008.2, - close: 1019.3, - volume: 5167689 - }), - new StockGoogleItem( - { - date: `2017-09-30`, - open: 1014, - high: 1025, - low: 1007.5, - close: 1017.1, - volume: 2085062 - }), - new StockGoogleItem( - { - date: `2017-09-31`, - open: 1015.2, - high: 1024, - low: 1010.4, - close: 1016.6, - volume: 1331391 - }), - new StockGoogleItem( - { - date: `2017-10-01`, - open: 1017.2, - high: 1029.7, - low: 1017, - close: 1025.5, - volume: 1373444 - }), - new StockGoogleItem( - { - date: `2017-10-02`, - open: 1021.8, - high: 1028.1, - low: 1013, - close: 1025.6, - volume: 1048970 - }), - new StockGoogleItem( - { - date: `2017-10-03`, - open: 1022.1, - high: 1032.7, - low: 1020.3, - close: 1032.5, - volume: 1076350 - }), - new StockGoogleItem( - { - date: `2017-10-06`, - open: 1029, - high: 1034.9, - low: 1025, - close: 1025.9, - volume: 1125185 - }), - new StockGoogleItem( - { - date: `2017-10-07`, - open: 1027.3, - high: 1034, - low: 1025.1, - close: 1033.3, - volume: 1112331 - }), - new StockGoogleItem( - { - date: `2017-10-08`, - open: 1030.5, - high: 1043.5, - low: 1028.5, - close: 1039.8, - volume: 1088716 - }), - new StockGoogleItem( - { - date: `2017-10-09`, - open: 1034, - high: 1034, - low: 1019.7, - close: 1031.3, - volume: 1245246 - }), - new StockGoogleItem( - { - date: `2017-10-10`, - open: 1026.5, - high: 1030.8, - low: 1025.3, - close: 1028.1, - volume: 720676 - }), - new StockGoogleItem( - { - date: `2017-10-13`, - open: 1023.4, - high: 1031.6, - low: 1022.6, - close: 1025.8, - volume: 885779 - }), - new StockGoogleItem( - { - date: `2017-10-14`, - open: 1022.6, - high: 1026.8, - low: 1014.1, - close: 1026, - volume: 959222 - }), - new StockGoogleItem( - { - date: `2017-10-15`, - open: 1019.2, - high: 1024.1, - low: 1015.4, - close: 1020.9, - volume: 853992 - }), - new StockGoogleItem( - { - date: `2017-10-16`, - open: 1022.5, - high: 1035.9, - low: 1022.5, - close: 1032.5, - volume: 1129688 - }), - new StockGoogleItem( - { - date: `2017-10-17`, - open: 1034, - high: 1034.4, - low: 1017.8, - close: 1019.1, - volume: 1397064 - }), - new StockGoogleItem( - { - date: `2017-10-20`, - open: 1020.3, - high: 1022.6, - low: 1017.5, - close: 1018.4, - volume: 953470 - }), - new StockGoogleItem( - { - date: `2017-10-21`, - open: 1023.3, - high: 1035.1, - low: 1022.7, - close: 1034.5, - volume: 1096999 - }), - new StockGoogleItem( - { - date: `2017-10-22`, - open: 1035, - high: 1039.7, - low: 1031.4, - close: 1036, - volume: 746878 - }), - new StockGoogleItem( - { - date: `2017-10-24`, - open: 1035.9, - high: 1043.2, - low: 1035, - close: 1040.6, - volume: 536996 - }), - new StockGoogleItem( - { - date: `2017-10-27`, - open: 1040, - high: 1055.5, - low: 1038.4, - close: 1054.2, - volume: 1307881 - }), - new StockGoogleItem( - { - date: `2017-10-28`, - open: 1055.1, - high: 1062.4, - low: 1040, - close: 1047.4, - volume: 1424394 - }), - new StockGoogleItem( - { - date: `2017-10-29`, - open: 1042.7, - high: 1044.1, - low: 1015.6, - close: 1021.7, - volume: 2459426 - }), - new StockGoogleItem( - { - date: `2017-10-30`, - open: 1022.4, - high: 1028.5, - low: 1015, - close: 1021.4, - volume: 1724031 - }), - new StockGoogleItem( - { - date: `2017-11-01`, - open: 1015.8, - high: 1022.5, - low: 1002, - close: 1010.2, - volume: 1909566 - }), - new StockGoogleItem( - { - date: `2017-11-04`, - open: 1012.7, - high: 1016.1, - low: 995.6, - close: 998.7, - volume: 1906439 - }), - new StockGoogleItem( - { - date: `2017-11-05`, - open: 995.9, - high: 1020.6, - low: 988.3, - close: 1005.1, - volume: 2067318 - }), - new StockGoogleItem( - { - date: `2017-11-06`, - open: 1001.5, - high: 1025, - low: 1001.1, - close: 1018.4, - volume: 1271964 - }), - new StockGoogleItem( - { - date: `2017-11-07`, - open: 1020.4, - high: 1034.2, - low: 1018.1, - close: 1030.9, - volume: 1458242 - }), - new StockGoogleItem( - { - date: `2017-11-08`, - open: 1037.5, - high: 1042, - low: 1032.5, - close: 1037, - volume: 1290774 - }), - new StockGoogleItem( - { - date: `2017-11-11`, - open: 1035.5, - high: 1043.8, - low: 1032, - close: 1041.1, - volume: 1192838 - }), - new StockGoogleItem( - { - date: `2017-11-12`, - open: 1039.6, - high: 1050.3, - low: 1033.7, - close: 1040.5, - volume: 1279659 - }), - new StockGoogleItem( - { - date: `2017-11-13`, - open: 1046.1, - high: 1046.7, - low: 1038.4, - close: 1040.6, - volume: 1282677 - }), - new StockGoogleItem( - { - date: `2017-11-14`, - open: 1045, - high: 1058.5, - low: 1043.1, - close: 1049.2, - volume: 1558835 - }), - new StockGoogleItem( - { - date: `2017-11-15`, - open: 1054.6, - high: 1067.6, - low: 1049.5, - close: 1064.2, - volume: 3275931 - }), - new StockGoogleItem( - { - date: `2017-11-18`, - open: 1066.1, - high: 1078.5, - low: 1062, - close: 1077.1, - volume: 1554552 - }), - new StockGoogleItem( - { - date: `2017-11-19`, - open: 1075.2, - high: 1076.8, - low: 1063.5, - close: 1070.7, - volume: 1338725 - }), - new StockGoogleItem( - { - date: `2017-11-20`, - open: 1071.8, - high: 1073.4, - low: 1061.5, - close: 1065, - volume: 1268582 - }), - new StockGoogleItem( - { - date: `2017-11-21`, - open: 1065, - high: 1069.3, - low: 1061.8, - close: 1063.6, - volume: 995703 - }), - new StockGoogleItem( - { - date: `2017-11-22`, - open: 1061.1, - high: 1064.2, - low: 1059.4, - close: 1060.1, - volume: 755095 - }), - new StockGoogleItem( - { - date: `2017-11-26`, - open: 1058.1, - high: 1060.1, - low: 1050.2, - close: 1056.7, - volume: 761237 - }), - new StockGoogleItem( - { - date: `2017-11-27`, - open: 1057.4, - high: 1058.4, - low: 1048, - close: 1049.4, - volume: 1271911 - }), - new StockGoogleItem( - { - date: `2017-11-28`, - open: 1051.6, - high: 1054.8, - low: 1044.8, - close: 1048.1, - volume: 837121 - }), - new StockGoogleItem( - { - date: `2017-11-29`, - open: 1046.7, - high: 1049.7, - low: 1044.9, - close: 1046.4, - volume: 887511 - }), - new StockGoogleItem( - { - date: `2018-00-02`, - open: 1048.3, - high: 1066.9, - low: 1045.2, - close: 1065, - volume: 1237564 - }), - new StockGoogleItem( - { - date: `2018-00-03`, - open: 1064.3, - high: 1086.3, - low: 1063.2, - close: 1082.5, - volume: 1430170 - }), - new StockGoogleItem( - { - date: `2018-00-04`, - open: 1088, - high: 1093.6, - low: 1084, - close: 1086.4, - volume: 1004605 - }), - new StockGoogleItem( - { - date: `2018-00-05`, - open: 1094, - high: 1104.3, - low: 1092, - close: 1102.2, - volume: 1279123 - }), - new StockGoogleItem( - { - date: `2018-00-08`, - open: 1102.2, - high: 1111.3, - low: 1101.6, - close: 1106.9, - volume: 1047603 - }), - new StockGoogleItem( - { - date: `2018-00-09`, - open: 1109.4, - high: 1110.6, - low: 1101.2, - close: 1106.3, - volume: 902541 - }), - new StockGoogleItem( - { - date: `2018-00-10`, - open: 1097.1, - high: 1104.6, - low: 1096.1, - close: 1102.6, - volume: 1042793 - }), - new StockGoogleItem( - { - date: `2018-00-11`, - open: 1106.3, - high: 1106.5, - low: 1099.6, - close: 1105.5, - volume: 978292 - }), - new StockGoogleItem( - { - date: `2018-00-12`, - open: 1102.4, - high: 1124.3, - low: 1101.2, - close: 1122.3, - volume: 1720533 - }), - new StockGoogleItem( - { - date: `2018-00-16`, - open: 1132.5, - high: 1139.9, - low: 1117.8, - close: 1121.8, - volume: 1575261 - }), - new StockGoogleItem( - { - date: `2018-00-17`, - open: 1126.2, - high: 1132.6, - low: 1117, - close: 1132, - volume: 1202639 - }), - new StockGoogleItem( - { - date: `2018-00-18`, - open: 1131.4, - high: 1132.5, - low: 1117.5, - close: 1129.8, - volume: 1198234 - }), - new StockGoogleItem( - { - date: `2018-00-19`, - open: 1131.8, - high: 1137.9, - low: 1128.3, - close: 1137.5, - volume: 1778229 - }), - new StockGoogleItem( - { - date: `2018-00-22`, - open: 1137.5, - high: 1159.9, - low: 1135.1, - close: 1155.8, - volume: 1617975 - }), - new StockGoogleItem( - { - date: `2018-00-23`, - open: 1159.8, - high: 1171.6, - low: 1158.8, - close: 1170, - volume: 1333056 - }), - new StockGoogleItem( - { - date: `2018-00-24`, - open: 1177.3, - high: 1179.9, - low: 1161, - close: 1164.2, - volume: 1416625 - }), - new StockGoogleItem( - { - date: `2018-00-25`, - open: 1172.5, - high: 1175.9, - low: 1162.8, - close: 1170.4, - volume: 1480540 - }), - new StockGoogleItem( - { - date: `2018-00-26`, - open: 1175.1, - high: 1175.8, - low: 1158.1, - close: 1175.8, - volume: 2018755 - }), - new StockGoogleItem( - { - date: `2018-00-29`, - open: 1176.5, - high: 1186.9, - low: 1172, - close: 1175.6, - volume: 1378913 - }), - new StockGoogleItem( - { - date: `2018-00-30`, - open: 1167.8, - high: 1176.5, - low: 1163.5, - close: 1163.7, - volume: 1556346 - }), - new StockGoogleItem( - { - date: `2018-00-31`, - open: 1170.6, - high: 1173, - low: 1159.1, - close: 1169.9, - volume: 1538688 - }), - ]; - super(...newItems.slice(0)); - } - } -} +export class StockItem { + public open?: number; + public close?: number; + public high?: number; + public low?: number; + public volume?: number; + + public date?: Date; + + } + //end data \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/src/app.component.ts b/samples/charts/financial-chart/data-tooltip-styling-props/src/app.component.ts index f05af8427..c12fec7b6 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/src/app.component.ts +++ b/samples/charts/financial-chart/data-tooltip-styling-props/src/app.component.ts @@ -1,5 +1,5 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; -import { StockGoogleItem, StockGoogle } from './StockGoogle'; +import { StockGoogle } from './StockGoogle'; import { IgxFinancialChartComponent } from 'igniteui-angular-charts'; @Component({ diff --git a/samples/charts/financial-chart/data-tooltip/src/MultipleStocks.ts b/samples/charts/financial-chart/data-tooltip/src/MultipleStocks.ts index 3688676b4..ca994ac34 100644 --- a/samples/charts/financial-chart/data-tooltip/src/MultipleStocks.ts +++ b/samples/charts/financial-chart/data-tooltip/src/MultipleStocks.ts @@ -80,7 +80,7 @@ export class MultipleStocks extends Array> { for (let json of jsonData) { let parts = json.date.split("-"); // "2020-01-01" let item = new StockItem(); - item.date = new Date(parts[0], parts[1], parts[2]); + item.date = new Date(parts[0], parts[1], parts[2],13,0,0); item.open = json.open; item.high = json.high; item.low = json.low; diff --git a/samples/charts/financial-chart/format-specifiers/src/MultipleStocks.ts b/samples/charts/financial-chart/format-specifiers/src/MultipleStocks.ts index 3688676b4..ca994ac34 100644 --- a/samples/charts/financial-chart/format-specifiers/src/MultipleStocks.ts +++ b/samples/charts/financial-chart/format-specifiers/src/MultipleStocks.ts @@ -80,7 +80,7 @@ export class MultipleStocks extends Array> { for (let json of jsonData) { let parts = json.date.split("-"); // "2020-01-01" let item = new StockItem(); - item.date = new Date(parts[0], parts[1], parts[2]); + item.date = new Date(parts[0], parts[1], parts[2],13,0,0); item.open = json.open; item.high = json.high; item.low = json.low; diff --git a/samples/charts/financial-chart/scrollbars/src/MultipleStocks.ts b/samples/charts/financial-chart/scrollbars/src/MultipleStocks.ts index 3688676b4..ca994ac34 100644 --- a/samples/charts/financial-chart/scrollbars/src/MultipleStocks.ts +++ b/samples/charts/financial-chart/scrollbars/src/MultipleStocks.ts @@ -80,7 +80,7 @@ export class MultipleStocks extends Array> { for (let json of jsonData) { let parts = json.date.split("-"); // "2020-01-01" let item = new StockItem(); - item.date = new Date(parts[0], parts[1], parts[2]); + item.date = new Date(parts[0], parts[1], parts[2],13,0,0); item.open = json.open; item.high = json.high; item.low = json.low; diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/app.module.ts b/samples/charts/toolbar/actions-built-in-category-chart/src/app.module.ts index b2d32f20c..4a7d03597 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/app.module.ts +++ b/samples/charts/toolbar/actions-built-in-category-chart/src/app.module.ts @@ -7,6 +7,7 @@ import { AppComponent } from "./app.component"; import { IgxLegendModule, IgxCategoryChartModule, IgxCategoryChartToolbarModule } from 'igniteui-angular-charts'; import { IgxToolbarModule } from 'igniteui-angular-layouts'; +import { IgxCheckboxListModule } from 'igniteui-angular-grids'; @NgModule({ bootstrap: [AppComponent], @@ -21,7 +22,8 @@ import { IgxToolbarModule } from 'igniteui-angular-layouts'; IgxLegendModule, IgxToolbarModule, IgxCategoryChartModule, - IgxCategoryChartToolbarModule + IgxCategoryChartToolbarModule, + IgxCheckboxListModule ], providers: [], schemas: [] diff --git a/samples/charts/toolbar/custom-tool/src/app.component.html b/samples/charts/toolbar/custom-tool/src/app.component.html index f3c0cfb1d..ccaf7db03 100644 --- a/samples/charts/toolbar/custom-tool/src/app.component.html +++ b/samples/charts/toolbar/custom-tool/src/app.component.html @@ -16,6 +16,13 @@ name="CustomIconName" #customIconName> + +
diff --git a/samples/charts/toolbar/custom-tool/src/app.component.ts b/samples/charts/toolbar/custom-tool/src/app.component.ts index 32ad330f0..756f0ebdd 100644 --- a/samples/charts/toolbar/custom-tool/src/app.component.ts +++ b/samples/charts/toolbar/custom-tool/src/app.component.ts @@ -20,6 +20,8 @@ export class AppComponent implements AfterViewInit private toolbar: IgxToolbarComponent @ViewChild("customIconName", { static: true } ) private customIconName: IgxToolActionLabelComponent + @ViewChild("customIconName2", { static: true } ) + private customIconName2: IgxToolActionLabelComponent @ViewChild("chart", { static: true } ) private chart: IgxCategoryChartComponent private _countryRenewableElectricity: CountryRenewableElectricity = null; @@ -45,6 +47,8 @@ export class AppComponent implements AfterViewInit const icon = ''; toolbar.registerIconFromText("CustomCollection", "CustomIcon", icon); + toolbar.registerIconFromDataURL("CustomCollection2", "CustomIcon2", "https://www.svgrepo.com/show/678/calculator.svg"); + } } diff --git a/samples/charts/toolbar/theming/src/app.component.html b/samples/charts/toolbar/theming/src/app.component.html index 791d511ff..7194d6c66 100644 --- a/samples/charts/toolbar/theming/src/app.component.html +++ b/samples/charts/toolbar/theming/src/app.component.html @@ -10,6 +10,8 @@ #propertyEditorPanel1> Date: Wed, 26 Feb 2025 12:49:07 -0500 Subject: [PATCH 133/154] Adding changes from build igniteui-xplat-examples-output+PRs_2025.2.26.1 (#288) Co-authored-by: tfsbuild --- .../src/app.component.html | 65 +++++++++++++----- .../src/app.component.ts | 66 +++++++++++++++++-- 2 files changed, 111 insertions(+), 20 deletions(-) diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.html b/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.html index fde3de103..2231c6efa 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.html +++ b/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.html @@ -6,20 +6,42 @@ #toolbar [target]="chart" orientation="Horizontal" - (onCommand)="this.toolbarToggleTooltip($event)"> - - - - + (onCommand)="this.toolbarToggleAnnotations($event)"> + + + + + + + + + + + + + commandId="ZoomReset" + isHighlighted="true"> + + + +
diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.ts b/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.ts index 91a403fde..06edf30fa 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.ts +++ b/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.ts @@ -1,8 +1,8 @@ import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; import { IgxToolCommandEventArgs } from 'igniteui-angular-layouts'; -import { IgxDataChartComponent, IgxSeriesComponent, IgxDataToolTipLayerComponent } from 'igniteui-angular-charts'; -import { IgxToolbarComponent, IgxToolActionCheckboxComponent, IgxToolActionLabelComponent, IgxToolActionIconMenuComponent } from 'igniteui-angular-layouts'; +import { IgxDataChartComponent, IgxSeriesComponent, IgxDataToolTipLayerComponent, IgxCrosshairLayerComponent, IgxFinalValueLayerComponent } from 'igniteui-angular-charts'; +import { IgxToolbarComponent, IgxToolActionIconMenuComponent, IgxToolActionGroupHeaderComponent, IgxToolActionSubPanelComponent, IgxToolActionCheckboxComponent, IgxToolActionLabelComponent } from 'igniteui-angular-layouts'; import { IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxLineSeriesComponent } from 'igniteui-angular-charts'; @Component({ @@ -18,14 +18,26 @@ export class AppComponent implements AfterViewInit @ViewChild("toolbar", { static: true } ) private toolbar: IgxToolbarComponent + @ViewChild("menuForSubPanelTool", { static: true } ) + private menuForSubPanelTool: IgxToolActionIconMenuComponent + @ViewChild("subPanelGroup", { static: true } ) + private subPanelGroup: IgxToolActionGroupHeaderComponent + @ViewChild("customSubPanelTools", { static: true } ) + private customSubPanelTools: IgxToolActionSubPanelComponent @ViewChild("enableTooltipsLabel", { static: true } ) private enableTooltipsLabel: IgxToolActionCheckboxComponent - @ViewChild("zoomResetHidden", { static: true } ) - private zoomResetHidden: IgxToolActionLabelComponent + @ViewChild("enableCrosshairsLabel", { static: true } ) + private enableCrosshairsLabel: IgxToolActionCheckboxComponent + @ViewChild("enableFinalValuesLabel", { static: true } ) + private enableFinalValuesLabel: IgxToolActionCheckboxComponent @ViewChild("zoomResetLabel", { static: true } ) private zoomResetLabel: IgxToolActionLabelComponent + @ViewChild("zoomResetHidden", { static: true } ) + private zoomResetHidden: IgxToolActionLabelComponent @ViewChild("analyzeMenu", { static: true } ) private analyzeMenu: IgxToolActionIconMenuComponent + @ViewChild("copyMenu", { static: true } ) + private copyMenu: IgxToolActionLabelComponent @ViewChild("chart", { static: true } ) private chart: IgxDataChartComponent @ViewChild("xAxis", { static: true } ) @@ -55,7 +67,7 @@ export class AppComponent implements AfterViewInit { } - public toolbarToggleTooltip({ sender, args }: { sender: any, args: IgxToolCommandEventArgs }): void { + public ToolbarToggleAnnotations({ sender, args }: { sender: any, args: IgxToolCommandEventArgs }): void { var target = this.chart; switch (args.command.commandId) { @@ -80,6 +92,50 @@ export class AppComponent implements AfterViewInit target.series.remove(toRemove); } } + break; + case "EnableCrosshairs": + var enable = args.command.argumentsList[0].value as boolean; + if (enable) + { + target.series.add(new IgxCrosshairLayerComponent()); + } + else + { + var toRemove = null; + for (var i = 0; i < target.actualSeries.length; i++) { + let s = target.actualSeries[i] as IgxSeriesComponent; + if (s instanceof IgxCrosshairLayerComponent) + { + toRemove = s; + } + } + if (toRemove != null) + { + target.series.remove(toRemove); + } + } + break; + case "EnableFinalValues": + var enable = args.command.argumentsList[0].value as boolean; + if (enable) + { + target.series.add(new IgxFinalValueLayerComponent()); + } + else + { + var toRemove = null; + for (var i = 0; i < target.actualSeries.length; i++) { + let s = target.actualSeries[i] as IgxSeriesComponent; + if (s instanceof IgxFinalValueLayerComponent) + { + toRemove = s; + } + } + if (toRemove != null) + { + target.series.remove(toRemove); + } + } break; } } From 43cc5bae4827d30710109e18950ee7c4f1ec3ad8 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Thu, 27 Feb 2025 08:28:50 -0500 Subject: [PATCH 134/154] Adding changes from build igniteui-xplat-examples-output+PRs_2025.2.26.2 (#289) Co-authored-by: tfsbuild --- .../data-chart/selection-matcher/src/app.component.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/samples/charts/data-chart/selection-matcher/src/app.component.ts b/samples/charts/data-chart/selection-matcher/src/app.component.ts index e161bc447..f702f91a6 100644 --- a/samples/charts/data-chart/selection-matcher/src/app.component.ts +++ b/samples/charts/data-chart/selection-matcher/src/app.component.ts @@ -69,11 +69,12 @@ export class AppComponent implements AfterViewInit selection.matcher = matcher; chart.selectedSeriesItems.add(selection); + let matcher2: IgxSeriesMatcher = new IgxSeriesMatcher(); let selection2: IgxChartSelection = new IgxChartSelection(); selection2.item = data[2]; - matcher.memberPath = "wind"; - matcher.memberPathType = "ValueMemberPath"; - selection2.matcher = matcher; + matcher2.memberPath = "wind"; + matcher2.memberPathType = "ValueMemberPath"; + selection2.matcher = matcher2; chart.selectedSeriesItems.add(selection2); From 53233371517664f3a178585b6909f42f54539822 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Thu, 27 Feb 2025 14:57:21 -0500 Subject: [PATCH 135/154] Adding changes from build igniteui-xplat-examples-output+PRs_2025.2.27.1 (#290) Co-authored-by: tfsbuild --- .../selection-matcher/.codesandbox/Dockerfile | 1 + .../selection-matcher/.codesandbox/tasks.json | 17 +++ .../selection-matcher/.stackblitzrc | 1 + .../selection-matcher/angular.json | 120 ++++++++++++++++++ .../selection-matcher/package.json | 43 +++++++ .../src/EnergyRenewableConsumption.ts | 69 ++++++++++ .../selection-matcher/src/app.component.html | 28 ++++ .../selection-matcher/src/app.component.scss | 3 + .../selection-matcher/src/app.component.ts | 84 ++++++++++++ .../selection-matcher/src/app.module.ts | 29 +++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../selection-matcher/src/index.html | 23 ++++ .../selection-matcher/src/main.ts | 15 +++ .../selection-matcher/src/polyfills.ts | 61 +++++++++ .../selection-matcher/src/styles.scss | 9 ++ .../selection-matcher/src/typings.d.ts | 5 + .../selection-matcher/tsconfig.app.json | 10 ++ .../selection-matcher/tsconfig.json | 27 ++++ .../selection-matcher/tslint.json | 31 +++++ 20 files changed, 595 insertions(+) create mode 100644 samples/charts/category-chart/selection-matcher/.codesandbox/Dockerfile create mode 100644 samples/charts/category-chart/selection-matcher/.codesandbox/tasks.json create mode 100644 samples/charts/category-chart/selection-matcher/.stackblitzrc create mode 100644 samples/charts/category-chart/selection-matcher/angular.json create mode 100644 samples/charts/category-chart/selection-matcher/package.json create mode 100644 samples/charts/category-chart/selection-matcher/src/EnergyRenewableConsumption.ts create mode 100644 samples/charts/category-chart/selection-matcher/src/app.component.html create mode 100644 samples/charts/category-chart/selection-matcher/src/app.component.scss create mode 100644 samples/charts/category-chart/selection-matcher/src/app.component.ts create mode 100644 samples/charts/category-chart/selection-matcher/src/app.module.ts create mode 100644 samples/charts/category-chart/selection-matcher/src/environments/environment.prod.ts create mode 100644 samples/charts/category-chart/selection-matcher/src/environments/environment.ts create mode 100644 samples/charts/category-chart/selection-matcher/src/index.html create mode 100644 samples/charts/category-chart/selection-matcher/src/main.ts create mode 100644 samples/charts/category-chart/selection-matcher/src/polyfills.ts create mode 100644 samples/charts/category-chart/selection-matcher/src/styles.scss create mode 100644 samples/charts/category-chart/selection-matcher/src/typings.d.ts create mode 100644 samples/charts/category-chart/selection-matcher/tsconfig.app.json create mode 100644 samples/charts/category-chart/selection-matcher/tsconfig.json create mode 100644 samples/charts/category-chart/selection-matcher/tslint.json diff --git a/samples/charts/category-chart/selection-matcher/.codesandbox/Dockerfile b/samples/charts/category-chart/selection-matcher/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/category-chart/selection-matcher/.codesandbox/tasks.json b/samples/charts/category-chart/selection-matcher/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/selection-matcher/.stackblitzrc b/samples/charts/category-chart/selection-matcher/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/category-chart/selection-matcher/angular.json b/samples/charts/category-chart/selection-matcher/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/category-chart/selection-matcher/package.json b/samples/charts/category-chart/selection-matcher/package.json new file mode 100644 index 000000000..f9c28ba2b --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/package.json @@ -0,0 +1,43 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "19.0.0", + "igniteui-angular-core": "19.0.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.15.0" + }, + "devDependencies": { + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.6.3" + } +} diff --git a/samples/charts/category-chart/selection-matcher/src/EnergyRenewableConsumption.ts b/samples/charts/category-chart/selection-matcher/src/EnergyRenewableConsumption.ts new file mode 100644 index 000000000..f742bbef3 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/src/EnergyRenewableConsumption.ts @@ -0,0 +1,69 @@ +export class EnergyRenewableConsumptionItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public location: string; + public year: number; + public hydro: number; + public solar: number; + public wind: number; + public other: number; + +} +export class EnergyRenewableConsumption extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyRenewableConsumptionItem( + { + location: `China`, + year: 2019, + hydro: 1269.5, + solar: 223, + wind: 405.2, + other: 102.8 + }), + new EnergyRenewableConsumptionItem( + { + location: `Europe`, + year: 2019, + hydro: 632.54, + solar: 154, + wind: 461.3, + other: 220.3 + }), + new EnergyRenewableConsumptionItem( + { + location: `USA`, + year: 2019, + hydro: 271.16, + solar: 108, + wind: 303.4, + other: 78.34 + }), + new EnergyRenewableConsumptionItem( + { + location: `Brazil`, + year: 2019, + hydro: 399.3, + solar: 5.5, + wind: 55.83, + other: 56.25 + }), + new EnergyRenewableConsumptionItem( + { + location: `Canada`, + year: 2019, + hydro: 381.98, + solar: 4.3, + wind: 34.17, + other: 10.81 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/category-chart/selection-matcher/src/app.component.html b/samples/charts/category-chart/selection-matcher/src/app.component.html new file mode 100644 index 000000000..9bcdf45cb --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/src/app.component.html @@ -0,0 +1,28 @@ +
+
+ Renewable Electricity Generated +
+
+ + +
+
+ + +
+
diff --git a/samples/charts/category-chart/selection-matcher/src/app.component.scss b/samples/charts/category-chart/selection-matcher/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/category-chart/selection-matcher/src/app.component.ts b/samples/charts/category-chart/selection-matcher/src/app.component.ts new file mode 100644 index 000000000..aee6c5d22 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/src/app.component.ts @@ -0,0 +1,84 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, LegendDescriptionModule, CategoryChartDescriptionModule, DataChartAnnotationDescriptionModule, DataChartInteractivityDescriptionModule, DataChartCoreDescriptionModule } from 'igniteui-angular-core'; +import { EnergyRenewableConsumptionItem, EnergyRenewableConsumption } from './EnergyRenewableConsumption'; +import { IgxCategoryChartComponent, IgxChartSelection, IgxSeriesMatcher } from 'igniteui-angular-charts'; +import { IgxLegendComponent } from 'igniteui-angular-charts'; + +@Component({ + standalone: false, + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("legend", { static: true } ) + private legend: IgxLegendComponent + @ViewChild("chart", { static: true } ) + private chart: IgxCategoryChartComponent + private _energyRenewableConsumption: EnergyRenewableConsumption = null; + public get energyRenewableConsumption(): EnergyRenewableConsumption { + if (this._energyRenewableConsumption == null) + { + this._energyRenewableConsumption = new EnergyRenewableConsumption(); + } + return this._energyRenewableConsumption; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + LegendDescriptionModule.register(context); + CategoryChartDescriptionModule.register(context); + DataChartAnnotationDescriptionModule.register(context); + DataChartInteractivityDescriptionModule.register(context); + DataChartCoreDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + this.selectionMatcherOnViewInit(); + } + + private _timer: ReturnType; + + public selectionMatcherOnViewInit(): void { + + var chart = this.chart; + + this._timer = setTimeout(() => { + var data = this.energyRenewableConsumption; + let matcher: IgxSeriesMatcher = new IgxSeriesMatcher(); + + let selection: IgxChartSelection = new IgxChartSelection(); + selection.item = data[1]; + matcher.memberPath = "hydro"; + matcher.memberPathType = "ValueMemberPath"; + selection.matcher = matcher; + chart.selectedSeriesItems.add(selection); + + let matcher2: IgxSeriesMatcher = new IgxSeriesMatcher(); + let selection2: IgxChartSelection = new IgxChartSelection(); + selection2.item = data[2]; + matcher2.memberPath = "wind"; + matcher2.memberPathType = "ValueMemberPath"; + selection2.matcher = matcher2; + + chart.selectedSeriesItems.add(selection2); + + }, 100); + } + +} + diff --git a/samples/charts/category-chart/selection-matcher/src/app.module.ts b/samples/charts/category-chart/selection-matcher/src/app.module.ts new file mode 100644 index 000000000..1e1dc0cd0 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/src/app.module.ts @@ -0,0 +1,29 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxLegendModule, IgxCategoryChartModule, IgxDataChartAnnotationModule, IgxDataChartInteractivityModule, IgxDataChartCoreModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxLegendModule, + IgxCategoryChartModule, + IgxDataChartAnnotationModule, + IgxDataChartInteractivityModule, + IgxDataChartCoreModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/category-chart/selection-matcher/src/environments/environment.prod.ts b/samples/charts/category-chart/selection-matcher/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/category-chart/selection-matcher/src/environments/environment.ts b/samples/charts/category-chart/selection-matcher/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/category-chart/selection-matcher/src/index.html b/samples/charts/category-chart/selection-matcher/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/category-chart/selection-matcher/src/main.ts b/samples/charts/category-chart/selection-matcher/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/category-chart/selection-matcher/src/polyfills.ts b/samples/charts/category-chart/selection-matcher/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/category-chart/selection-matcher/src/styles.scss b/samples/charts/category-chart/selection-matcher/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/category-chart/selection-matcher/src/typings.d.ts b/samples/charts/category-chart/selection-matcher/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/category-chart/selection-matcher/tsconfig.app.json b/samples/charts/category-chart/selection-matcher/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/category-chart/selection-matcher/tsconfig.json b/samples/charts/category-chart/selection-matcher/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/category-chart/selection-matcher/tslint.json b/samples/charts/category-chart/selection-matcher/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} From 93e93c0a120fcc39f4d6b2480d87f5c4af750cda Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Fri, 28 Feb 2025 16:10:23 +0200 Subject: [PATCH 136/154] Adding changes from build igniteui-xplat-examples-output+PRs_2025.2.28.1 --- .../toolbar/layout-actions-for-data-chart/src/app.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.ts b/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.ts index 06edf30fa..96ef31d0b 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.ts +++ b/samples/charts/toolbar/layout-actions-for-data-chart/src/app.component.ts @@ -67,7 +67,7 @@ export class AppComponent implements AfterViewInit { } - public ToolbarToggleAnnotations({ sender, args }: { sender: any, args: IgxToolCommandEventArgs }): void { + public toolbarToggleAnnotations({ sender, args }: { sender: any, args: IgxToolCommandEventArgs }): void { var target = this.chart; switch (args.command.commandId) { From 6f6b943e7e1881ecae74daccced14da894a3120b Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Fri, 28 Feb 2025 14:02:06 -0500 Subject: [PATCH 137/154] mdd-19.0.1 mdd-19.0.1 --- browser/package.json | 28 ++++++++--------- browser/scripts/browser.js | 30 +++++++++---------- browser/src/browser-info.json | 28 ++++++++--------- .../annotations-all/package.json | 10 +++---- .../annotations-callouts/package.json | 10 +++---- .../annotations-crosshairs/package.json | 10 +++---- .../annotations-custom/package.json | 10 +++---- .../annotations-final-value/package.json | 10 +++---- .../annotations-highlighting/package.json | 10 +++---- .../category-chart/annotations/package.json | 4 +-- .../area-chart-multiple-sources/package.json | 4 +-- .../area-chart-single-source/package.json | 4 +-- .../area-chart-styling/package.json | 4 +-- .../category-chart/axis-gap/package.json | 10 +++---- .../axis-gridlines/package.json | 10 +++---- .../category-chart/axis-inverted/package.json | 10 +++---- .../category-chart/axis-labels/package.json | 10 +++---- .../axis-locations/package.json | 10 +++---- .../category-chart/axis-options/package.json | 4 +-- .../category-chart/axis-overlap/package.json | 10 +++---- .../category-chart/axis-range/package.json | 10 +++---- .../axis-tickmarks/package.json | 10 +++---- .../category-chart/axis-titles/package.json | 4 +-- .../chart-highlight-filter/package.json | 10 +++---- .../package.json | 4 +-- .../column-chart-single-source/package.json | 4 +-- .../column-chart-styling/package.json | 4 +-- .../package.json | 4 +-- .../column-chart-with-tooltips/package.json | 10 +++---- .../custom-selection/package.json | 4 +-- .../data-aggregations/package.json | 10 +++---- .../category-chart/data-filter/package.json | 10 +++---- .../package.json | 4 +-- .../category-chart/data-legend/package.json | 4 +-- .../package.json | 4 +-- .../data-tooltip-positioning/package.json | 10 +++---- .../category-chart/data-tooltip/package.json | 4 +-- .../format-specifiers/package.json | 8 ++--- .../high-frequency/package.json | 6 ++-- .../category-chart/high-volume/package.json | 6 ++-- .../highlighting-behavior/package.json | 10 +++---- .../highlighting-mode/package.json | 10 +++---- .../category-chart/highlighting/package.json | 4 +-- .../legend-highlighting/package.json | 4 +-- .../line-chart-multiple-sources/package.json | 4 +-- .../line-chart-single-source/package.json | 4 +-- .../line-chart-styling/package.json | 4 +-- .../line-chart-with-animations/package.json | 4 +-- .../line-chart-with-annotations/package.json | 4 +-- .../line-chart-with-legend/package.json | 4 +-- .../marker-options/package.json | 10 +++---- .../marker-templates/package.json | 4 +-- .../category-chart/overview/package.json | 4 +-- .../point-chart-multiple-sources/package.json | 4 +-- .../point-chart-single-source/package.json | 4 +-- .../point-chart-styling/package.json | 4 +-- .../selection-matcher/package.json | 4 +-- .../selection-modes/package.json | 4 +-- .../selection-multiple-modes/package.json | 10 +++---- .../spline-area-multiple-sources/package.json | 4 +-- .../spline-area-single-source/package.json | 4 +-- .../spline-area-styling/package.json | 4 +-- .../spline-multiple-sources/package.json | 4 +-- .../spline-single-source/package.json | 4 +-- .../spline-styling/package.json | 4 +-- .../category-chart/stack-columns/package.json | 4 +-- .../step-area-multiple-sources/package.json | 4 +-- .../step-area-single-source/package.json | 4 +-- .../step-area-styling/package.json | 4 +-- .../step-line-multiple-sources/package.json | 4 +-- .../step-line-single-source/package.json | 4 +-- .../step-line-styling/package.json | 4 +-- .../tooltip-template/package.json | 4 +-- .../category-chart/tooltip-types/package.json | 4 +-- .../category-chart/trendline/package.json | 4 +-- .../category-chart/value-lines/package.json | 10 +++---- .../chart-dashboard/package.json | 16 +++++----- .../financial-dashboard/package.json | 16 +++++----- .../gauge-dashboard/package.json | 16 +++++----- .../dashboard-tile/map-dashboard/package.json | 16 +++++----- .../dashboard-tile/pie-dashboard/package.json | 16 +++++----- .../annotations-custom/package.json | 4 +-- .../package.json | 4 +-- .../data-chart/axis-annotations/package.json | 4 +-- .../data-chart/axis-crossing/package.json | 4 +-- .../axis-label-rotation/package.json | 10 +++---- .../data-chart/axis-locations/package.json | 4 +-- .../data-chart/axis-min-max-gap/package.json | 4 +-- .../data-chart/axis-settings/package.json | 4 +-- .../data-chart/axis-sharing/package.json | 4 +-- .../charts/data-chart/axis-types/package.json | 4 +-- .../bar-chart-multiple-sources/package.json | 4 +-- .../bar-chart-overlapping/package.json | 4 +-- .../bar-chart-single-source/package.json | 4 +-- .../data-chart/bar-chart-styling/package.json | 4 +-- .../callout-layer-styling/package.json | 4 +-- .../package.json | 10 +++---- .../package.json | 10 +++---- .../chart-highlight-filter/package.json | 10 +++---- .../data-chart/chart-navigation/package.json | 4 +-- .../data-chart/chart-overview/package.json | 4 +-- .../data-chart/chart-performance/package.json | 4 +-- .../chart-synchronization/package.json | 4 +-- .../data-chart/chart-titles/package.json | 4 +-- .../column-chart-styling/package.json | 4 +-- .../data-chart/composite-chart/package.json | 4 +-- .../crosshair-layer-styling/package.json | 4 +-- .../custom-drawing-annotations/package.json | 8 ++--- .../custom-editing-data/package.json | 4 +-- .../data-chart/dash-array-axes/package.json | 4 +-- .../data-chart/dash-array-series/package.json | 4 +-- .../dash-array-tickmarks/package.json | 4 +-- .../dash-array-trendline/package.json | 4 +-- .../package.json | 4 +-- .../data-legend-grouping/package.json | 4 +-- .../data-legend-styling/package.json | 4 +-- .../data-chart/data-legend/package.json | 4 +-- .../package.json | 8 ++--- .../data-tooltip-grouping/package.json | 8 ++--- .../data-tooltip-styling/package.json | 8 ++--- .../data-chart/data-tooltip/package.json | 4 +-- .../final-value-layer-styling/package.json | 4 +-- .../financial-price-series/package.json | 4 +-- .../data-chart/format-specifiers/package.json | 4 +-- .../charts/data-chart/legends/package.json | 4 +-- .../polar-area-chart-styling/package.json | 4 +-- .../data-chart/polar-area-chart/package.json | 4 +-- .../data-chart/polar-chart-types/package.json | 4 +-- .../data-chart/polar-line-chart/package.json | 4 +-- .../polar-scatter-chart/package.json | 4 +-- .../polar-spline-area-chart/package.json | 4 +-- .../polar-spline-chart/package.json | 4 +-- .../radial-area-chart-styling/package.json | 4 +-- .../data-chart/radial-area-chart/package.json | 4 +-- .../radial-chart-types/package.json | 4 +-- .../package.json | 4 +-- .../radial-column-chart/package.json | 4 +-- .../data-chart/radial-label-mode/package.json | 10 +++---- .../data-chart/radial-line-chart/package.json | 4 +-- .../data-chart/radial-pie-chart/package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../data-chart/range-area-chart/package.json | 4 +-- .../range-column-chart/package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../scatter-bubble-chart-styling/package.json | 4 +-- .../scatter-line-chart/package.json | 4 +-- .../scatter-point-chart/package.json | 4 +-- .../scatter-spline-chart/package.json | 4 +-- .../data-chart/selection-matcher/package.json | 4 +-- .../data-chart/series-animations/package.json | 4 +-- .../series-annotations/package.json | 4 +-- .../series-highlighting/package.json | 4 +-- .../series-marker-template/package.json | 4 +-- .../data-chart/series-markers/package.json | 4 +-- .../data-chart/series-tooltips/package.json | 4 +-- .../data-chart/series-trendlines/package.json | 4 +-- .../series-value-overlay/package.json | 4 +-- .../stacked-100-area-chart/package.json | 4 +-- .../stacked-100-bar-chart/package.json | 4 +-- .../stacked-100-column-chart/package.json | 4 +-- .../stacked-100-line-chart/package.json | 4 +-- .../package.json | 4 +-- .../stacked-100-spline-chart/package.json | 4 +-- .../stacked-area-chart/package.json | 4 +-- .../data-chart/stacked-bar-chart/package.json | 4 +-- .../stacked-chart-types/package.json | 4 +-- .../stacked-column-chart/package.json | 4 +-- .../stacked-line-chart/package.json | 4 +-- .../stacked-spline-area-chart/package.json | 4 +-- .../stacked-spline-chart/package.json | 4 +-- .../data-chart/tooltip-template/package.json | 4 +-- .../data-chart/transition-event/package.json | 10 +++---- .../type-category-area-series/package.json | 4 +-- .../type-category-bar-series/package.json | 4 +-- .../type-category-column-series/package.json | 4 +-- .../type-category-line-series/package.json | 4 +-- .../type-category-point-series/package.json | 4 +-- .../type-category-series/package.json | 4 +-- .../package.json | 4 +-- .../type-category-spline-series/package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../type-financial-ohlc-series/package.json | 4 +-- .../type-financial-overlays/package.json | 4 +-- .../type-financial-series/package.json | 4 +-- .../type-radial-area-series/package.json | 4 +-- .../type-radial-column-series/package.json | 4 +-- .../type-radial-line-series/package.json | 4 +-- .../type-radial-pie-series/package.json | 4 +-- .../type-range-area-series/package.json | 4 +-- .../type-range-column-series/package.json | 4 +-- .../data-chart/type-range-series/package.json | 4 +-- .../type-scatter-area-series/package.json | 4 +-- .../type-scatter-bubble-series/package.json | 4 +-- .../type-scatter-contour-series/package.json | 4 +-- .../type-scatter-hd-series/package.json | 4 +-- .../type-scatter-line-series/package.json | 4 +-- .../type-scatter-point-series/package.json | 4 +-- .../type-scatter-polygon-series/package.json | 4 +-- .../type-scatter-polyline-series/package.json | 4 +-- .../type-scatter-series/package.json | 4 +-- .../type-scatter-spline-series/package.json | 4 +-- .../data-chart/type-shape-series/package.json | 4 +-- .../type-stacked-100-area-series/package.json | 4 +-- .../type-stacked-100-bar-series/package.json | 4 +-- .../package.json | 4 +-- .../type-stacked-100-line-series/package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../type-stacked-area-series/package.json | 4 +-- .../type-stacked-bar-series/package.json | 4 +-- .../type-stacked-column-series/package.json | 4 +-- .../type-stacked-line-series/package.json | 4 +-- .../package.json | 4 +-- .../type-stacked-spline-series/package.json | 4 +-- .../data-chart/waterfall-chart/package.json | 4 +-- .../animation-replay/package.json | 10 +++---- .../data-pie-chart/animation/package.json | 10 +++---- .../highlight-filter/package.json | 4 +-- .../data-pie-chart/highlighting/package.json | 10 +++---- .../charts/data-pie-chart/legend/package.json | 8 ++--- .../charts/data-pie-chart/others/package.json | 10 +++---- .../data-pie-chart/overview/package.json | 4 +-- .../data-pie-chart/selection/package.json | 10 +++---- .../doughnut-chart/animation/package.json | 4 +-- .../doughnut-chart/explosion/package.json | 4 +-- .../charts/doughnut-chart/legend/package.json | 4 +-- .../doughnut-chart/overview/package.json | 4 +-- .../charts/doughnut-chart/rings/package.json | 4 +-- .../doughnut-chart/selection/package.json | 4 +-- .../financial-chart/annotations/package.json | 4 +-- .../financial-chart/axis-types/package.json | 4 +-- .../package.json | 4 +-- .../data-legend-styling-props/package.json | 4 +-- .../financial-chart/data-legend/package.json | 4 +-- .../package.json | 4 +-- .../data-tooltip-styling-props/package.json | 4 +-- .../financial-chart/data-tooltip/package.json | 4 +-- .../format-specifiers/package.json | 4 +-- .../high-frequency/package.json | 4 +-- .../financial-chart/high-volume/package.json | 4 +-- .../indicator-customization/package.json | 4 +-- .../indicator-types/package.json | 4 +-- .../multiple-data/package.json | 4 +-- .../multiple-feeds/package.json | 4 +-- .../financial-chart/overview/package.json | 4 +-- .../charts/financial-chart/panes/package.json | 4 +-- .../financial-chart/performance/package.json | 4 +-- .../financial-chart/scrollbars/package.json | 4 +-- .../stock-index-chart/package.json | 4 +-- .../financial-chart/styling/package.json | 4 +-- .../financial-chart/theming/package.json | 4 +-- .../time-based-data/package.json | 4 +-- .../financial-chart/titles/package.json | 4 +-- .../tooltip-template/package.json | 4 +-- .../tooltip-types/package.json | 4 +-- .../financial-chart/trendlines/package.json | 4 +-- .../financial-chart/volume-types/package.json | 4 +-- .../charts/pie-chart/animation/package.json | 4 +-- .../charts/pie-chart/explosion/package.json | 4 +-- samples/charts/pie-chart/legend/package.json | 4 +-- samples/charts/pie-chart/others/package.json | 4 +-- .../charts/pie-chart/overview/package.json | 4 +-- .../charts/pie-chart/selection/package.json | 4 +-- samples/charts/pie-chart/styling/package.json | 4 +-- .../sparkline/display-area/package.json | 4 +-- .../sparkline/display-column/package.json | 4 +-- .../sparkline/display-lines/package.json | 8 ++--- .../sparkline/display-types/package.json | 4 +-- .../sparkline/display-winloss/package.json | 4 +-- samples/charts/sparkline/grid/package.json | 8 ++--- samples/charts/sparkline/markers/package.json | 10 +++---- .../sparkline/normal-range/package.json | 10 +++---- .../charts/sparkline/trendlines/package.json | 10 +++---- .../sparkline/unknown-values/package.json | 10 +++---- .../package.json | 8 ++--- .../actions-built-in-data-chart/package.json | 8 ++--- .../toolbar/color-editor-support/package.json | 8 ++--- .../charts/toolbar/custom-tool/package.json | 8 ++--- .../package.json | 8 ++--- .../package.json | 8 ++--- samples/charts/toolbar/theming/package.json | 10 +++---- samples/charts/tree-map/events/package.json | 6 ++-- .../highlighting-percent-based/package.json | 4 +-- .../charts/tree-map/highlighting/package.json | 10 +++---- samples/charts/tree-map/layout/package.json | 10 +++---- samples/charts/tree-map/overview/package.json | 4 +-- samples/charts/tree-map/styling/package.json | 4 +-- .../charts/zoomslider/overview/package.json | 4 +-- .../operations-on-workbooks/package.json | 6 ++-- .../operations-on-worksheets/package.json | 4 +-- .../excel/excel-library/overview/package.json | 4 +-- .../working-with-cells/package.json | 4 +-- .../working-with-charts/package.json | 8 ++--- .../working-with-sparklines/package.json | 8 ++--- .../working-with-tables/package.json | 8 ++--- .../excel/spreadsheet/activation/package.json | 6 ++-- .../spreadsheet/adapter-chart/package.json | 10 +++---- .../spreadsheet/adapter-combo/package.json | 10 +++---- .../excel/spreadsheet/clipboard/package.json | 6 ++-- .../excel/spreadsheet/commands/package.json | 6 ++-- .../conditional-formatting/package.json | 6 ++-- .../spreadsheet/config-options/package.json | 6 ++-- .../spreadsheet/data-validation/package.json | 6 ++-- .../excel/spreadsheet/hyperlinks/package.json | 6 ++-- .../excel/spreadsheet/overview/package.json | 6 ++-- .../bullet-graph/animation/package.json | 6 ++-- .../bullet-graph/background/package.json | 4 +-- .../highlight-needle/package.json | 4 +-- .../gauges/bullet-graph/labels/package.json | 4 +-- .../gauges/bullet-graph/measures/package.json | 4 +-- .../gauges/bullet-graph/ranges/package.json | 4 +-- .../gauges/bullet-graph/scale/package.json | 4 +-- .../bullet-graph/tickmarks/package.json | 4 +-- .../linear-gauge/animation/package.json | 6 ++-- .../gauges/linear-gauge/backing/package.json | 4 +-- .../highlight-needle/package.json | 4 +-- .../gauges/linear-gauge/labels/package.json | 4 +-- .../gauges/linear-gauge/needle/package.json | 4 +-- .../gauges/linear-gauge/ranges/package.json | 4 +-- .../gauges/linear-gauge/scale/package.json | 4 +-- .../linear-gauge/tickmarks/package.json | 4 +-- .../radial-gauge/animation/package.json | 6 ++-- .../gauges/radial-gauge/backing/package.json | 4 +-- .../highlight-needle/package.json | 4 +-- .../gauges/radial-gauge/labels/package.json | 4 +-- .../gauges/radial-gauge/needle/package.json | 4 +-- .../radial-gauge/optical-scaling/package.json | 4 +-- .../gauges/radial-gauge/ranges/package.json | 4 +-- .../gauges/radial-gauge/scale/package.json | 4 +-- .../radial-gauge/tickmarks/package.json | 4 +-- .../inputs/color-editor/overview/package.json | 4 +-- .../geo-map/binding-data-csv/package.json | 6 ++-- .../binding-data-json-points/package.json | 6 ++-- .../geo-map/binding-data-model/package.json | 6 ++-- .../binding-multiple-shapes/package.json | 6 ++-- .../binding-multiple-sources/package.json | 6 ++-- .../geo-map/binding-shp-points/package.json | 6 ++-- .../geo-map/binding-shp-polygons/package.json | 6 ++-- .../binding-shp-polylines/package.json | 6 ++-- .../maps/geo-map/custom-tooltips/package.json | 6 ++-- .../geo-map/display-bing-imagery/package.json | 6 ++-- .../geo-map/display-esri-imagery/package.json | 6 ++-- .../geo-map/display-heat-imagery/package.json | 6 ++-- .../geo-map/display-osm-imagery/package.json | 6 ++-- .../maps/geo-map/marker-layouts/package.json | 6 ++-- .../maps/geo-map/marker-template/package.json | 6 ++-- samples/maps/geo-map/marker-type/package.json | 6 ++-- samples/maps/geo-map/navigation/package.json | 6 ++-- samples/maps/geo-map/overview/package.json | 6 ++-- .../maps/geo-map/shape-styling/package.json | 6 ++-- .../geo-map/triangulating-data/package.json | 6 ++-- .../type-scatter-area-series/package.json | 6 ++-- .../type-scatter-bubble-series/package.json | 6 ++-- .../type-scatter-contour-series/package.json | 6 ++-- .../type-scatter-density-series/package.json | 6 ++-- .../type-scatter-symbol-series/package.json | 6 ++-- .../type-shape-polygon-series/package.json | 6 ++-- .../type-shape-polyline-series/package.json | 6 ++-- 367 files changed, 1009 insertions(+), 1009 deletions(-) diff --git a/browser/package.json b/browser/package.json index 634ccc290..a591b0855 100644 --- a/browser/package.json +++ b/browser/package.json @@ -38,20 +38,20 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.3", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-dashboards": "19.0.0", - "igniteui-angular-excel": "19.0.0", - "igniteui-angular-gauges": "19.0.0", - "igniteui-angular-grids": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-angular-maps": "19.0.0", - "igniteui-angular-spreadsheet": "19.0.0", - "igniteui-angular-spreadsheet-chart-adapter": "19.0.0", - "igniteui-theming": "14.3.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular": "19.1.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-dashboards": "19.0.1", + "igniteui-angular-excel": "19.0.1", + "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-grids": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-maps": "19.0.1", + "igniteui-angular-spreadsheet": "19.0.1", + "igniteui-angular-spreadsheet-chart-adapter": "19.0.1", + "igniteui-theming": "15.1.1", + "igniteui-webcomponents": "5.2.4", "immediate": "3.2.3", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 76af2d8ea..977a12288 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1073,22 +1073,22 @@ function updateIG(cb) { // { version: "14.1.0", name: "igniteui-angular-charts" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { version: "19.0.0", name: "igniteui-angular-core" }, - { version: "19.0.0", name: "igniteui-angular-charts" }, - { version: "19.0.0", name: "igniteui-angular-excel" }, - { version: "19.0.0", name: "igniteui-angular-gauges" }, - { version: "19.0.0", name: "igniteui-angular-grids" }, - { version: "19.0.0", name: "igniteui-angular-inputs" }, - { version: "19.0.0", name: "igniteui-angular-layouts" }, - { version: "19.0.0", name: "igniteui-angular-maps" }, - { version: "19.0.0", name: "igniteui-angular-spreadsheet-chart-adapter" }, - { version: "19.0.0", name: "igniteui-angular-spreadsheet" }, - { version: "19.0.0", name: "igniteui-angular-datasources" }, - { version: "19.0.0", name: "igniteui-angular-dashboards" }, + { version: "19.0.1", name: "igniteui-angular-core" }, + { version: "19.0.1", name: "igniteui-angular-charts" }, + { version: "19.0.1", name: "igniteui-angular-excel" }, + { version: "19.0.1", name: "igniteui-angular-gauges" }, + { version: "19.0.1", name: "igniteui-angular-grids" }, + { version: "19.0.1", name: "igniteui-angular-inputs" }, + { version: "19.0.1", name: "igniteui-angular-layouts" }, + { version: "19.0.1", name: "igniteui-angular-maps" }, + { version: "19.0.1", name: "igniteui-angular-spreadsheet-chart-adapter" }, + { version: "19.0.1", name: "igniteui-angular-spreadsheet" }, + { version: "19.0.1", name: "igniteui-angular-datasources" }, + { version: "19.0.1", name: "igniteui-angular-dashboards" }, // these IG packages are sometimes updated: - { version: "5.1.2" , name: "igniteui-webcomponents" }, - { version: "14.3.0", name: "igniteui-theming" }, - { version: "19.0.3", name: "igniteui-angular" }, + { version: "5.2.4" , name: "igniteui-webcomponents" }, + { version: "15.1.1", name: "igniteui-theming" }, + { version: "19.1.0", name: "igniteui-angular" }, { version: "19.0.4", name: "@angular/animations" }, { version: "19.0.4", name: "@angular/common" }, { version: "19.0.4", name: "@angular/compiler" }, diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index b5177da0e..d3add9c7b 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,16 +1,16 @@ [ -{"ver":"19.0.3","name":"igniteui-angular"}, -{"ver":"19.0.0","name":"igniteui-angular-charts"}, -{"ver":"19.0.0","name":"igniteui-angular-core"}, -{"ver":"19.0.0","name":"igniteui-angular-dashboards"}, -{"ver":"19.0.0","name":"igniteui-angular-excel"}, -{"ver":"19.0.0","name":"igniteui-angular-gauges"}, -{"ver":"19.0.0","name":"igniteui-angular-grids"}, -{"ver":"19.0.0","name":"igniteui-angular-inputs"}, -{"ver":"19.0.0","name":"igniteui-angular-layouts"}, -{"ver":"19.0.0","name":"igniteui-angular-maps"}, -{"ver":"19.0.0","name":"igniteui-angular-spreadsheet"}, -{"ver":"19.0.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, -{"ver":"14.3.0","name":"igniteui-theming"}, -{"ver":"5.1.2","name":"igniteui-webcomponents"} +{"ver":"19.1.0","name":"igniteui-angular"}, +{"ver":"19.0.1","name":"igniteui-angular-charts"}, +{"ver":"19.0.1","name":"igniteui-angular-core"}, +{"ver":"19.0.1","name":"igniteui-angular-dashboards"}, +{"ver":"19.0.1","name":"igniteui-angular-excel"}, +{"ver":"19.0.1","name":"igniteui-angular-gauges"}, +{"ver":"19.0.1","name":"igniteui-angular-grids"}, +{"ver":"19.0.1","name":"igniteui-angular-inputs"}, +{"ver":"19.0.1","name":"igniteui-angular-layouts"}, +{"ver":"19.0.1","name":"igniteui-angular-maps"}, +{"ver":"19.0.1","name":"igniteui-angular-spreadsheet"}, +{"ver":"19.0.1","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"15.1.1","name":"igniteui-theming"}, +{"ver":"5.2.4","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index c80231a07..d9de3c66c 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 04e9abf68..2bf9928be 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.3", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular": "19.1.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 04e9abf68..2bf9928be 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.3", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular": "19.1.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-matcher/package.json b/samples/charts/category-chart/selection-matcher/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/selection-matcher/package.json +++ b/samples/charts/category-chart/selection-matcher/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index 1c331cad7..ef12c38f8 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-dashboards": "19.0.0", - "igniteui-angular-gauges": "19.0.0", - "igniteui-angular-grids": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-dashboards": "19.0.1", + "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-grids": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index 1c331cad7..ef12c38f8 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-dashboards": "19.0.0", - "igniteui-angular-gauges": "19.0.0", - "igniteui-angular-grids": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-dashboards": "19.0.1", + "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-grids": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index 1c331cad7..ef12c38f8 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-dashboards": "19.0.0", - "igniteui-angular-gauges": "19.0.0", - "igniteui-angular-grids": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-dashboards": "19.0.1", + "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-grids": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index 1c331cad7..ef12c38f8 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-dashboards": "19.0.0", - "igniteui-angular-gauges": "19.0.0", - "igniteui-angular-grids": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-dashboards": "19.0.1", + "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-grids": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index 1c331cad7..ef12c38f8 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-dashboards": "19.0.0", - "igniteui-angular-gauges": "19.0.0", - "igniteui-angular-grids": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-dashboards": "19.0.1", + "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-grids": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 6a87297ac..b95866222 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index c80231a07..d9de3c66c 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index c80231a07..d9de3c66c 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index c80231a07..d9de3c66c 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/selection-matcher/package.json b/samples/charts/data-chart/selection-matcher/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/selection-matcher/package.json +++ b/samples/charts/data-chart/selection-matcher/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/animation-replay/package.json b/samples/charts/data-pie-chart/animation-replay/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/data-pie-chart/animation-replay/package.json +++ b/samples/charts/data-pie-chart/animation-replay/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index c80231a07..d9de3c66c 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index c80231a07..d9de3c66c 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 2b552d3b4..0abede8a4 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.3", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-theming": "14.3.0", + "igniteui-angular": "19.1.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-theming": "15.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index c80231a07..d9de3c66c 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index c80231a07..d9de3c66c 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json index c80231a07..d9de3c66c 100644 --- a/samples/charts/toolbar/color-editor-support/package.json +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index c80231a07..d9de3c66c 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index c80231a07..d9de3c66c 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index c80231a07..d9de3c66c 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 04e9abf68..2bf9928be 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.3", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular": "19.1.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 6296f0d14..8e079030d 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", - "igniteui-angular-layouts": "19.0.0", - "igniteui-webcomponents": "5.1.2", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-layouts": "19.0.1", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index f9c28ba2b..5565041b2 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 1520c5b60..0f1752ac0 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 957dd0a5f..9758a359a 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.3", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-excel": "19.0.0", + "igniteui-angular": "19.1.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-excel": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 25f40016d..c48bab4a9 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-excel": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-excel": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 25f40016d..c48bab4a9 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-excel": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-excel": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 25f40016d..c48bab4a9 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-excel": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-excel": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index acc1a4eb1..36f86a215 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -20,10 +20,10 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.3", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-excel": "19.0.0", + "igniteui-angular": "19.1.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-excel": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index acc1a4eb1..36f86a215 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -20,10 +20,10 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.3", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-excel": "19.0.0", + "igniteui-angular": "19.1.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-excel": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index bcd2d7199..3269517ed 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -20,10 +20,10 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-excel": "19.0.0", - "igniteui-angular-spreadsheet": "19.0.0", - "igniteui-angular-spreadsheet-chart-adapter": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-excel": "19.0.1", + "igniteui-angular-spreadsheet": "19.0.1", + "igniteui-angular-spreadsheet-chart-adapter": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index e793c1470..ec90f1995 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-excel": "19.0.0", - "igniteui-angular-spreadsheet": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-excel": "19.0.1", + "igniteui-angular-spreadsheet": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index f812214a1..8c616b800 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-excel": "19.0.0", - "igniteui-angular-spreadsheet": "19.0.0", - "igniteui-angular-spreadsheet-chart-adapter": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-excel": "19.0.1", + "igniteui-angular-spreadsheet": "19.0.1", + "igniteui-angular-spreadsheet-chart-adapter": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index f812214a1..8c616b800 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-excel": "19.0.0", - "igniteui-angular-spreadsheet": "19.0.0", - "igniteui-angular-spreadsheet-chart-adapter": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-excel": "19.0.1", + "igniteui-angular-spreadsheet": "19.0.1", + "igniteui-angular-spreadsheet-chart-adapter": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index e793c1470..ec90f1995 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-excel": "19.0.0", - "igniteui-angular-spreadsheet": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-excel": "19.0.1", + "igniteui-angular-spreadsheet": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index e793c1470..ec90f1995 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-excel": "19.0.0", - "igniteui-angular-spreadsheet": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-excel": "19.0.1", + "igniteui-angular-spreadsheet": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index e793c1470..ec90f1995 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-excel": "19.0.0", - "igniteui-angular-spreadsheet": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-excel": "19.0.1", + "igniteui-angular-spreadsheet": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index e793c1470..ec90f1995 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-excel": "19.0.0", - "igniteui-angular-spreadsheet": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-excel": "19.0.1", + "igniteui-angular-spreadsheet": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index e793c1470..ec90f1995 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-excel": "19.0.0", - "igniteui-angular-spreadsheet": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-excel": "19.0.1", + "igniteui-angular-spreadsheet": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index e793c1470..ec90f1995 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-excel": "19.0.0", - "igniteui-angular-spreadsheet": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-excel": "19.0.1", + "igniteui-angular-spreadsheet": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index e793c1470..ec90f1995 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-excel": "19.0.0", - "igniteui-angular-spreadsheet": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-excel": "19.0.1", + "igniteui-angular-spreadsheet": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 6b2c67970..b8aca7f62 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.3", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular": "19.1.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 6b2c67970..b8aca7f62 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.3", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular": "19.1.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 6b2c67970..b8aca7f62 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.0.3", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular": "19.1.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index b3bc14b62..136871261 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-gauges": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-gauges": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json index a310d4473..acd02a194 100644 --- a/samples/inputs/color-editor/overview/package.json +++ b/samples/inputs/color-editor/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-inputs": "19.0.0", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-inputs": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index e4f50c3f6..2a4725ada 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.0", - "igniteui-angular-core": "19.0.0", - "igniteui-angular-maps": "19.0.0", + "igniteui-angular-charts": "19.0.1", + "igniteui-angular-core": "19.0.1", + "igniteui-angular-maps": "19.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", From b31013f520ce14b756bcdb61856e9e8eede421fe Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Tue, 11 Mar 2025 15:33:18 -0400 Subject: [PATCH 138/154] mdd-fix-excel-memory-issue-in-codesandbox mdd-fix-excel-memory-issue-in-codesandbox --- .../selection-matcher/ReadMe.md | 58 +++++++++++++++++++ .../data-chart/selection-matcher/ReadMe.md | 58 +++++++++++++++++++ .../data-pie-chart/animation-replay/ReadMe.md | 58 +++++++++++++++++++ .../.codesandbox/tasks.json | 2 +- .../.codesandbox/tasks.json | 2 +- .../overview/.codesandbox/tasks.json | 2 +- .../.codesandbox/tasks.json | 2 +- .../.codesandbox/tasks.json | 2 +- .../.codesandbox/tasks.json | 2 +- .../.codesandbox/tasks.json | 2 +- .../activation/.codesandbox/tasks.json | 2 +- .../adapter-chart/.codesandbox/tasks.json | 2 +- .../adapter-combo/.codesandbox/tasks.json | 2 +- .../clipboard/.codesandbox/tasks.json | 2 +- .../commands/.codesandbox/tasks.json | 2 +- .../.codesandbox/tasks.json | 2 +- .../config-options/.codesandbox/tasks.json | 2 +- .../data-validation/.codesandbox/tasks.json | 2 +- .../hyperlinks/.codesandbox/tasks.json | 2 +- .../overview/.codesandbox/tasks.json | 2 +- 20 files changed, 191 insertions(+), 17 deletions(-) create mode 100644 samples/charts/category-chart/selection-matcher/ReadMe.md create mode 100644 samples/charts/data-chart/selection-matcher/ReadMe.md create mode 100644 samples/charts/data-pie-chart/animation-replay/ReadMe.md diff --git a/samples/charts/category-chart/selection-matcher/ReadMe.md b/samples/charts/category-chart/selection-matcher/ReadMe.md new file mode 100644 index 000000000..e4818c4d2 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Selection Matcher feature using [CategoryChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/category-chart/selection-matcher +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/selection-matcher/ReadMe.md b/samples/charts/data-chart/selection-matcher/ReadMe.md new file mode 100644 index 000000000..c0cef643b --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Selection Matcher feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/selection-matcher +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-pie-chart/animation-replay/ReadMe.md b/samples/charts/data-pie-chart/animation-replay/ReadMe.md new file mode 100644 index 000000000..df4595387 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Animation Replay feature using [DataPieChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-pie-chart/animation-replay +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/excel/excel-library/operations-on-workbooks/.codesandbox/tasks.json b/samples/excel/excel-library/operations-on-workbooks/.codesandbox/tasks.json index 8d92a54cd..93620125c 100644 --- a/samples/excel/excel-library/operations-on-workbooks/.codesandbox/tasks.json +++ b/samples/excel/excel-library/operations-on-workbooks/.codesandbox/tasks.json @@ -10,7 +10,7 @@ "tasks": { "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { "name": "Start Project", - "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o --disable-host-check", "runAtStart": true } } diff --git a/samples/excel/excel-library/operations-on-worksheets/.codesandbox/tasks.json b/samples/excel/excel-library/operations-on-worksheets/.codesandbox/tasks.json index 8d92a54cd..93620125c 100644 --- a/samples/excel/excel-library/operations-on-worksheets/.codesandbox/tasks.json +++ b/samples/excel/excel-library/operations-on-worksheets/.codesandbox/tasks.json @@ -10,7 +10,7 @@ "tasks": { "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { "name": "Start Project", - "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o --disable-host-check", "runAtStart": true } } diff --git a/samples/excel/excel-library/overview/.codesandbox/tasks.json b/samples/excel/excel-library/overview/.codesandbox/tasks.json index 8d92a54cd..93620125c 100644 --- a/samples/excel/excel-library/overview/.codesandbox/tasks.json +++ b/samples/excel/excel-library/overview/.codesandbox/tasks.json @@ -10,7 +10,7 @@ "tasks": { "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { "name": "Start Project", - "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o --disable-host-check", "runAtStart": true } } diff --git a/samples/excel/excel-library/working-with-cells/.codesandbox/tasks.json b/samples/excel/excel-library/working-with-cells/.codesandbox/tasks.json index 8d92a54cd..93620125c 100644 --- a/samples/excel/excel-library/working-with-cells/.codesandbox/tasks.json +++ b/samples/excel/excel-library/working-with-cells/.codesandbox/tasks.json @@ -10,7 +10,7 @@ "tasks": { "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { "name": "Start Project", - "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o --disable-host-check", "runAtStart": true } } diff --git a/samples/excel/excel-library/working-with-charts/.codesandbox/tasks.json b/samples/excel/excel-library/working-with-charts/.codesandbox/tasks.json index 8d92a54cd..93620125c 100644 --- a/samples/excel/excel-library/working-with-charts/.codesandbox/tasks.json +++ b/samples/excel/excel-library/working-with-charts/.codesandbox/tasks.json @@ -10,7 +10,7 @@ "tasks": { "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { "name": "Start Project", - "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o --disable-host-check", "runAtStart": true } } diff --git a/samples/excel/excel-library/working-with-sparklines/.codesandbox/tasks.json b/samples/excel/excel-library/working-with-sparklines/.codesandbox/tasks.json index 8d92a54cd..93620125c 100644 --- a/samples/excel/excel-library/working-with-sparklines/.codesandbox/tasks.json +++ b/samples/excel/excel-library/working-with-sparklines/.codesandbox/tasks.json @@ -10,7 +10,7 @@ "tasks": { "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { "name": "Start Project", - "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o --disable-host-check", "runAtStart": true } } diff --git a/samples/excel/excel-library/working-with-tables/.codesandbox/tasks.json b/samples/excel/excel-library/working-with-tables/.codesandbox/tasks.json index 8d92a54cd..93620125c 100644 --- a/samples/excel/excel-library/working-with-tables/.codesandbox/tasks.json +++ b/samples/excel/excel-library/working-with-tables/.codesandbox/tasks.json @@ -10,7 +10,7 @@ "tasks": { "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { "name": "Start Project", - "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o --disable-host-check", "runAtStart": true } } diff --git a/samples/excel/spreadsheet/activation/.codesandbox/tasks.json b/samples/excel/spreadsheet/activation/.codesandbox/tasks.json index 8d92a54cd..93620125c 100644 --- a/samples/excel/spreadsheet/activation/.codesandbox/tasks.json +++ b/samples/excel/spreadsheet/activation/.codesandbox/tasks.json @@ -10,7 +10,7 @@ "tasks": { "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { "name": "Start Project", - "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o --disable-host-check", "runAtStart": true } } diff --git a/samples/excel/spreadsheet/adapter-chart/.codesandbox/tasks.json b/samples/excel/spreadsheet/adapter-chart/.codesandbox/tasks.json index 8d92a54cd..93620125c 100644 --- a/samples/excel/spreadsheet/adapter-chart/.codesandbox/tasks.json +++ b/samples/excel/spreadsheet/adapter-chart/.codesandbox/tasks.json @@ -10,7 +10,7 @@ "tasks": { "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { "name": "Start Project", - "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o --disable-host-check", "runAtStart": true } } diff --git a/samples/excel/spreadsheet/adapter-combo/.codesandbox/tasks.json b/samples/excel/spreadsheet/adapter-combo/.codesandbox/tasks.json index 8d92a54cd..93620125c 100644 --- a/samples/excel/spreadsheet/adapter-combo/.codesandbox/tasks.json +++ b/samples/excel/spreadsheet/adapter-combo/.codesandbox/tasks.json @@ -10,7 +10,7 @@ "tasks": { "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { "name": "Start Project", - "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o --disable-host-check", "runAtStart": true } } diff --git a/samples/excel/spreadsheet/clipboard/.codesandbox/tasks.json b/samples/excel/spreadsheet/clipboard/.codesandbox/tasks.json index 8d92a54cd..93620125c 100644 --- a/samples/excel/spreadsheet/clipboard/.codesandbox/tasks.json +++ b/samples/excel/spreadsheet/clipboard/.codesandbox/tasks.json @@ -10,7 +10,7 @@ "tasks": { "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { "name": "Start Project", - "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o --disable-host-check", "runAtStart": true } } diff --git a/samples/excel/spreadsheet/commands/.codesandbox/tasks.json b/samples/excel/spreadsheet/commands/.codesandbox/tasks.json index 8d92a54cd..93620125c 100644 --- a/samples/excel/spreadsheet/commands/.codesandbox/tasks.json +++ b/samples/excel/spreadsheet/commands/.codesandbox/tasks.json @@ -10,7 +10,7 @@ "tasks": { "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { "name": "Start Project", - "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o --disable-host-check", "runAtStart": true } } diff --git a/samples/excel/spreadsheet/conditional-formatting/.codesandbox/tasks.json b/samples/excel/spreadsheet/conditional-formatting/.codesandbox/tasks.json index 8d92a54cd..93620125c 100644 --- a/samples/excel/spreadsheet/conditional-formatting/.codesandbox/tasks.json +++ b/samples/excel/spreadsheet/conditional-formatting/.codesandbox/tasks.json @@ -10,7 +10,7 @@ "tasks": { "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { "name": "Start Project", - "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o --disable-host-check", "runAtStart": true } } diff --git a/samples/excel/spreadsheet/config-options/.codesandbox/tasks.json b/samples/excel/spreadsheet/config-options/.codesandbox/tasks.json index 8d92a54cd..93620125c 100644 --- a/samples/excel/spreadsheet/config-options/.codesandbox/tasks.json +++ b/samples/excel/spreadsheet/config-options/.codesandbox/tasks.json @@ -10,7 +10,7 @@ "tasks": { "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { "name": "Start Project", - "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o --disable-host-check", "runAtStart": true } } diff --git a/samples/excel/spreadsheet/data-validation/.codesandbox/tasks.json b/samples/excel/spreadsheet/data-validation/.codesandbox/tasks.json index 8d92a54cd..93620125c 100644 --- a/samples/excel/spreadsheet/data-validation/.codesandbox/tasks.json +++ b/samples/excel/spreadsheet/data-validation/.codesandbox/tasks.json @@ -10,7 +10,7 @@ "tasks": { "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { "name": "Start Project", - "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o --disable-host-check", "runAtStart": true } } diff --git a/samples/excel/spreadsheet/hyperlinks/.codesandbox/tasks.json b/samples/excel/spreadsheet/hyperlinks/.codesandbox/tasks.json index 8d92a54cd..93620125c 100644 --- a/samples/excel/spreadsheet/hyperlinks/.codesandbox/tasks.json +++ b/samples/excel/spreadsheet/hyperlinks/.codesandbox/tasks.json @@ -10,7 +10,7 @@ "tasks": { "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { "name": "Start Project", - "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o --disable-host-check", "runAtStart": true } } diff --git a/samples/excel/spreadsheet/overview/.codesandbox/tasks.json b/samples/excel/spreadsheet/overview/.codesandbox/tasks.json index 8d92a54cd..93620125c 100644 --- a/samples/excel/spreadsheet/overview/.codesandbox/tasks.json +++ b/samples/excel/spreadsheet/overview/.codesandbox/tasks.json @@ -10,7 +10,7 @@ "tasks": { "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { "name": "Start Project", - "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "command": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o --disable-host-check", "runAtStart": true } } From a527aa70bdfb1661aee8f3ce5611b5ca2cdbcf24 Mon Sep 17 00:00:00 2001 From: mtrela Date: Fri, 16 May 2025 15:05:59 -0400 Subject: [PATCH 139/154] Update app.component.html --- .../charts/data-chart/bar-chart-styling/src/app.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/charts/data-chart/bar-chart-styling/src/app.component.html b/samples/charts/data-chart/bar-chart-styling/src/app.component.html index c5d646373..b744b8da0 100644 --- a/samples/charts/data-chart/bar-chart-styling/src/app.component.html +++ b/samples/charts/data-chart/bar-chart-styling/src/app.component.html @@ -38,7 +38,7 @@ showDefaultTooltip="true" isTransitionInEnabled="true" isHighlightingEnabled="true" - brush="rgba(134, 6, 138, 0.6470588235294118)" + brush="rgba(201, 56, 207, 1)" outline="rgba(133, 6, 138, 1)" thickness="2" areaFillOpacity="0.5" From f4de06132ddd178c81814b42072158095ea9f3e6 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Wed, 21 May 2025 12:11:40 -0400 Subject: [PATCH 140/154] mdd-19.0.1beta0 mdd-19.0.1beta0 --- browser/package.json | 26 ++++++++--------- browser/scripts/browser.js | 28 +++++++++---------- browser/src/browser-info.json | 26 ++++++++--------- .../annotations-all/package.json | 10 +++---- .../annotations-callouts/package.json | 10 +++---- .../annotations-crosshairs/package.json | 10 +++---- .../annotations-custom/package.json | 10 +++---- .../annotations-final-value/package.json | 10 +++---- .../annotations-highlighting/package.json | 10 +++---- .../category-chart/annotations/package.json | 4 +-- .../area-chart-multiple-sources/package.json | 4 +-- .../area-chart-single-source/package.json | 4 +-- .../area-chart-styling/package.json | 4 +-- .../category-chart/axis-gap/package.json | 10 +++---- .../axis-gridlines/package.json | 10 +++---- .../category-chart/axis-inverted/package.json | 10 +++---- .../category-chart/axis-labels/package.json | 10 +++---- .../axis-locations/package.json | 10 +++---- .../category-chart/axis-options/package.json | 4 +-- .../category-chart/axis-overlap/package.json | 10 +++---- .../category-chart/axis-range/package.json | 10 +++---- .../axis-tickmarks/package.json | 10 +++---- .../category-chart/axis-titles/package.json | 4 +-- .../chart-highlight-filter/package.json | 10 +++---- .../package.json | 4 +-- .../column-chart-single-source/package.json | 4 +-- .../column-chart-styling/package.json | 4 +-- .../package.json | 4 +-- .../column-chart-with-tooltips/package.json | 10 +++---- .../custom-selection/package.json | 4 +-- .../data-aggregations/package.json | 10 +++---- .../category-chart/data-filter/package.json | 10 +++---- .../package.json | 4 +-- .../category-chart/data-legend/package.json | 4 +-- .../package.json | 4 +-- .../data-tooltip-positioning/package.json | 10 +++---- .../category-chart/data-tooltip/package.json | 4 +-- .../format-specifiers/package.json | 8 +++--- .../high-frequency/package.json | 6 ++-- .../category-chart/high-volume/package.json | 6 ++-- .../highlighting-behavior/package.json | 10 +++---- .../highlighting-mode/package.json | 10 +++---- .../category-chart/highlighting/package.json | 4 +-- .../legend-highlighting/package.json | 4 +-- .../line-chart-multiple-sources/package.json | 4 +-- .../line-chart-single-source/package.json | 4 +-- .../line-chart-styling/package.json | 4 +-- .../line-chart-with-animations/package.json | 4 +-- .../line-chart-with-annotations/package.json | 4 +-- .../line-chart-with-legend/package.json | 4 +-- .../marker-options/package.json | 10 +++---- .../marker-templates/package.json | 4 +-- .../category-chart/overview/package.json | 4 +-- .../point-chart-multiple-sources/package.json | 4 +-- .../point-chart-single-source/package.json | 4 +-- .../point-chart-styling/package.json | 4 +-- .../selection-matcher/package.json | 4 +-- .../selection-modes/package.json | 4 +-- .../selection-multiple-modes/package.json | 10 +++---- .../spline-area-multiple-sources/package.json | 4 +-- .../spline-area-single-source/package.json | 4 +-- .../spline-area-styling/package.json | 4 +-- .../spline-multiple-sources/package.json | 4 +-- .../spline-single-source/package.json | 4 +-- .../spline-styling/package.json | 4 +-- .../category-chart/stack-columns/package.json | 4 +-- .../step-area-multiple-sources/package.json | 4 +-- .../step-area-single-source/package.json | 4 +-- .../step-area-styling/package.json | 4 +-- .../step-line-multiple-sources/package.json | 4 +-- .../step-line-single-source/package.json | 4 +-- .../step-line-styling/package.json | 4 +-- .../tooltip-template/package.json | 4 +-- .../category-chart/tooltip-types/package.json | 4 +-- .../category-chart/trendline/package.json | 4 +-- .../category-chart/value-lines/package.json | 10 +++---- .../chart-dashboard/package.json | 14 +++++----- .../financial-dashboard/package.json | 14 +++++----- .../gauge-dashboard/package.json | 14 +++++----- .../dashboard-tile/map-dashboard/package.json | 14 +++++----- .../dashboard-tile/pie-dashboard/package.json | 14 +++++----- .../annotations-custom/package.json | 4 +-- .../package.json | 4 +-- .../data-chart/axis-annotations/package.json | 4 +-- .../data-chart/axis-crossing/package.json | 4 +-- .../axis-label-rotation/package.json | 10 +++---- .../data-chart/axis-locations/package.json | 4 +-- .../data-chart/axis-min-max-gap/package.json | 4 +-- .../data-chart/axis-settings/package.json | 4 +-- .../data-chart/axis-sharing/package.json | 4 +-- .../charts/data-chart/axis-types/package.json | 4 +-- .../bar-chart-multiple-sources/package.json | 4 +-- .../bar-chart-overlapping/package.json | 4 +-- .../bar-chart-single-source/package.json | 4 +-- .../data-chart/bar-chart-styling/package.json | 4 +-- .../callout-layer-styling/package.json | 4 +-- .../package.json | 10 +++---- .../package.json | 10 +++---- .../chart-highlight-filter/package.json | 10 +++---- .../data-chart/chart-navigation/package.json | 4 +-- .../data-chart/chart-overview/package.json | 4 +-- .../data-chart/chart-performance/package.json | 4 +-- .../chart-synchronization/package.json | 4 +-- .../data-chart/chart-titles/package.json | 4 +-- .../column-chart-styling/package.json | 4 +-- .../data-chart/composite-chart/package.json | 4 +-- .../crosshair-layer-styling/package.json | 4 +-- .../custom-drawing-annotations/package.json | 8 +++--- .../custom-editing-data/package.json | 4 +-- .../data-chart/dash-array-axes/package.json | 4 +-- .../data-chart/dash-array-series/package.json | 4 +-- .../dash-array-tickmarks/package.json | 4 +-- .../dash-array-trendline/package.json | 4 +-- .../package.json | 4 +-- .../data-legend-grouping/package.json | 4 +-- .../data-legend-styling/package.json | 4 +-- .../data-chart/data-legend/package.json | 4 +-- .../package.json | 8 +++--- .../data-tooltip-grouping/package.json | 8 +++--- .../data-tooltip-styling/package.json | 8 +++--- .../data-chart/data-tooltip/package.json | 4 +-- .../final-value-layer-styling/package.json | 4 +-- .../financial-price-series/package.json | 4 +-- .../data-chart/format-specifiers/package.json | 4 +-- .../charts/data-chart/legends/package.json | 4 +-- .../polar-area-chart-styling/package.json | 4 +-- .../data-chart/polar-area-chart/package.json | 4 +-- .../data-chart/polar-chart-types/package.json | 4 +-- .../data-chart/polar-line-chart/package.json | 4 +-- .../polar-scatter-chart/package.json | 4 +-- .../polar-spline-area-chart/package.json | 4 +-- .../polar-spline-chart/package.json | 4 +-- .../radial-area-chart-styling/package.json | 4 +-- .../data-chart/radial-area-chart/package.json | 4 +-- .../radial-chart-types/package.json | 4 +-- .../package.json | 4 +-- .../radial-column-chart/package.json | 4 +-- .../data-chart/radial-label-mode/package.json | 10 +++---- .../data-chart/radial-line-chart/package.json | 4 +-- .../data-chart/radial-pie-chart/package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../data-chart/range-area-chart/package.json | 4 +-- .../range-column-chart/package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../scatter-bubble-chart-styling/package.json | 4 +-- .../scatter-line-chart/package.json | 4 +-- .../scatter-point-chart/package.json | 4 +-- .../scatter-spline-chart/package.json | 4 +-- .../data-chart/selection-matcher/package.json | 4 +-- .../data-chart/series-animations/package.json | 4 +-- .../series-annotations/package.json | 4 +-- .../series-highlighting/package.json | 4 +-- .../series-marker-template/package.json | 4 +-- .../data-chart/series-markers/package.json | 4 +-- .../data-chart/series-tooltips/package.json | 4 +-- .../data-chart/series-trendlines/package.json | 4 +-- .../series-value-overlay/package.json | 4 +-- .../stacked-100-area-chart/package.json | 4 +-- .../stacked-100-bar-chart/package.json | 4 +-- .../stacked-100-column-chart/package.json | 4 +-- .../stacked-100-line-chart/package.json | 4 +-- .../package.json | 4 +-- .../stacked-100-spline-chart/package.json | 4 +-- .../stacked-area-chart/package.json | 4 +-- .../data-chart/stacked-bar-chart/package.json | 4 +-- .../stacked-chart-types/package.json | 4 +-- .../stacked-column-chart/package.json | 4 +-- .../stacked-line-chart/package.json | 4 +-- .../stacked-spline-area-chart/package.json | 4 +-- .../stacked-spline-chart/package.json | 4 +-- .../data-chart/tooltip-template/package.json | 4 +-- .../data-chart/transition-event/package.json | 10 +++---- .../type-category-area-series/package.json | 4 +-- .../type-category-bar-series/package.json | 4 +-- .../type-category-column-series/package.json | 4 +-- .../type-category-line-series/package.json | 4 +-- .../type-category-point-series/package.json | 4 +-- .../type-category-series/package.json | 4 +-- .../package.json | 4 +-- .../type-category-spline-series/package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../type-financial-ohlc-series/package.json | 4 +-- .../type-financial-overlays/package.json | 4 +-- .../type-financial-series/package.json | 4 +-- .../type-radial-area-series/package.json | 4 +-- .../type-radial-column-series/package.json | 4 +-- .../type-radial-line-series/package.json | 4 +-- .../type-radial-pie-series/package.json | 4 +-- .../type-range-area-series/package.json | 4 +-- .../type-range-column-series/package.json | 4 +-- .../data-chart/type-range-series/package.json | 4 +-- .../type-scatter-area-series/package.json | 4 +-- .../type-scatter-bubble-series/package.json | 4 +-- .../type-scatter-contour-series/package.json | 4 +-- .../type-scatter-hd-series/package.json | 4 +-- .../type-scatter-line-series/package.json | 4 +-- .../type-scatter-point-series/package.json | 4 +-- .../type-scatter-polygon-series/package.json | 4 +-- .../type-scatter-polyline-series/package.json | 4 +-- .../type-scatter-series/package.json | 4 +-- .../type-scatter-spline-series/package.json | 4 +-- .../data-chart/type-shape-series/package.json | 4 +-- .../type-stacked-100-area-series/package.json | 4 +-- .../type-stacked-100-bar-series/package.json | 4 +-- .../package.json | 4 +-- .../type-stacked-100-line-series/package.json | 4 +-- .../package.json | 4 +-- .../package.json | 4 +-- .../type-stacked-area-series/package.json | 4 +-- .../type-stacked-bar-series/package.json | 4 +-- .../type-stacked-column-series/package.json | 4 +-- .../type-stacked-line-series/package.json | 4 +-- .../package.json | 4 +-- .../type-stacked-spline-series/package.json | 4 +-- .../data-chart/waterfall-chart/package.json | 4 +-- .../animation-replay/package.json | 10 +++---- .../data-pie-chart/animation/package.json | 10 +++---- .../highlight-filter/package.json | 4 +-- .../data-pie-chart/highlighting/package.json | 10 +++---- .../charts/data-pie-chart/legend/package.json | 8 +++--- .../charts/data-pie-chart/others/package.json | 10 +++---- .../data-pie-chart/overview/package.json | 4 +-- .../data-pie-chart/selection/package.json | 10 +++---- .../doughnut-chart/animation/package.json | 4 +-- .../doughnut-chart/explosion/package.json | 4 +-- .../charts/doughnut-chart/legend/package.json | 4 +-- .../doughnut-chart/overview/package.json | 4 +-- .../charts/doughnut-chart/rings/package.json | 4 +-- .../doughnut-chart/selection/package.json | 4 +-- .../financial-chart/annotations/package.json | 4 +-- .../financial-chart/axis-types/package.json | 4 +-- .../package.json | 4 +-- .../data-legend-styling-props/package.json | 4 +-- .../financial-chart/data-legend/package.json | 4 +-- .../package.json | 4 +-- .../data-tooltip-styling-props/package.json | 4 +-- .../financial-chart/data-tooltip/package.json | 4 +-- .../format-specifiers/package.json | 4 +-- .../high-frequency/package.json | 4 +-- .../financial-chart/high-volume/package.json | 4 +-- .../indicator-customization/package.json | 4 +-- .../indicator-types/package.json | 4 +-- .../multiple-data/package.json | 4 +-- .../multiple-feeds/package.json | 4 +-- .../financial-chart/overview/package.json | 4 +-- .../charts/financial-chart/panes/package.json | 4 +-- .../financial-chart/performance/package.json | 4 +-- .../financial-chart/scrollbars/package.json | 4 +-- .../stock-index-chart/package.json | 4 +-- .../financial-chart/styling/package.json | 4 +-- .../financial-chart/theming/package.json | 4 +-- .../time-based-data/package.json | 4 +-- .../financial-chart/titles/package.json | 4 +-- .../tooltip-template/package.json | 4 +-- .../tooltip-types/package.json | 4 +-- .../financial-chart/trendlines/package.json | 4 +-- .../financial-chart/volume-types/package.json | 4 +-- .../charts/pie-chart/animation/package.json | 4 +-- .../charts/pie-chart/explosion/package.json | 4 +-- samples/charts/pie-chart/legend/package.json | 4 +-- samples/charts/pie-chart/others/package.json | 4 +-- .../charts/pie-chart/overview/package.json | 4 +-- .../charts/pie-chart/selection/package.json | 4 +-- samples/charts/pie-chart/styling/package.json | 4 +-- .../sparkline/display-area/package.json | 4 +-- .../sparkline/display-column/package.json | 4 +-- .../sparkline/display-lines/package.json | 8 +++--- .../sparkline/display-types/package.json | 4 +-- .../sparkline/display-winloss/package.json | 4 +-- samples/charts/sparkline/grid/package.json | 8 +++--- samples/charts/sparkline/markers/package.json | 10 +++---- .../sparkline/normal-range/package.json | 10 +++---- .../charts/sparkline/trendlines/package.json | 10 +++---- .../sparkline/unknown-values/package.json | 10 +++---- .../package.json | 8 +++--- .../actions-built-in-data-chart/package.json | 8 +++--- .../toolbar/color-editor-support/package.json | 8 +++--- .../charts/toolbar/custom-tool/package.json | 8 +++--- .../package.json | 8 +++--- .../package.json | 8 +++--- samples/charts/toolbar/theming/package.json | 10 +++---- samples/charts/tree-map/events/package.json | 6 ++-- .../highlighting-percent-based/package.json | 4 +-- .../charts/tree-map/highlighting/package.json | 10 +++---- samples/charts/tree-map/layout/package.json | 10 +++---- samples/charts/tree-map/overview/package.json | 4 +-- samples/charts/tree-map/styling/package.json | 4 +-- .../charts/zoomslider/overview/package.json | 4 +-- .../operations-on-workbooks/package.json | 6 ++-- .../operations-on-worksheets/package.json | 4 +-- .../excel/excel-library/overview/package.json | 4 +-- .../working-with-cells/package.json | 4 +-- .../working-with-charts/package.json | 8 +++--- .../working-with-sparklines/package.json | 8 +++--- .../working-with-tables/package.json | 8 +++--- .../excel/spreadsheet/activation/package.json | 6 ++-- .../spreadsheet/adapter-chart/package.json | 10 +++---- .../spreadsheet/adapter-combo/package.json | 10 +++---- .../excel/spreadsheet/clipboard/package.json | 6 ++-- .../excel/spreadsheet/commands/package.json | 6 ++-- .../conditional-formatting/package.json | 6 ++-- .../spreadsheet/config-options/package.json | 6 ++-- .../spreadsheet/data-validation/package.json | 6 ++-- .../excel/spreadsheet/hyperlinks/package.json | 6 ++-- .../excel/spreadsheet/overview/package.json | 6 ++-- .../bullet-graph/animation/package.json | 6 ++-- .../bullet-graph/background/package.json | 4 +-- .../highlight-needle/package.json | 4 +-- .../gauges/bullet-graph/labels/package.json | 4 +-- .../gauges/bullet-graph/measures/package.json | 4 +-- .../gauges/bullet-graph/ranges/package.json | 4 +-- .../gauges/bullet-graph/scale/package.json | 4 +-- .../bullet-graph/tickmarks/package.json | 4 +-- .../linear-gauge/animation/package.json | 6 ++-- .../gauges/linear-gauge/backing/package.json | 4 +-- .../highlight-needle/package.json | 4 +-- .../gauges/linear-gauge/labels/package.json | 4 +-- .../gauges/linear-gauge/needle/package.json | 4 +-- .../gauges/linear-gauge/ranges/package.json | 4 +-- .../gauges/linear-gauge/scale/package.json | 4 +-- .../linear-gauge/tickmarks/package.json | 4 +-- .../radial-gauge/animation/package.json | 6 ++-- .../gauges/radial-gauge/backing/package.json | 4 +-- .../highlight-needle/package.json | 4 +-- .../gauges/radial-gauge/labels/package.json | 4 +-- .../gauges/radial-gauge/needle/package.json | 4 +-- .../radial-gauge/optical-scaling/package.json | 4 +-- .../gauges/radial-gauge/ranges/package.json | 4 +-- .../gauges/radial-gauge/scale/package.json | 4 +-- .../radial-gauge/tickmarks/package.json | 4 +-- .../inputs/color-editor/overview/package.json | 4 +-- .../geo-map/binding-data-csv/package.json | 6 ++-- .../binding-data-json-points/package.json | 6 ++-- .../geo-map/binding-data-model/package.json | 6 ++-- .../binding-multiple-shapes/package.json | 6 ++-- .../binding-multiple-sources/package.json | 6 ++-- .../geo-map/binding-shp-points/package.json | 6 ++-- .../geo-map/binding-shp-polygons/package.json | 6 ++-- .../binding-shp-polylines/package.json | 6 ++-- .../maps/geo-map/custom-tooltips/package.json | 6 ++-- .../geo-map/display-bing-imagery/package.json | 6 ++-- .../geo-map/display-esri-imagery/package.json | 6 ++-- .../geo-map/display-heat-imagery/package.json | 6 ++-- .../geo-map/display-osm-imagery/package.json | 6 ++-- .../maps/geo-map/marker-layouts/package.json | 6 ++-- .../maps/geo-map/marker-template/package.json | 6 ++-- samples/maps/geo-map/marker-type/package.json | 6 ++-- samples/maps/geo-map/navigation/package.json | 6 ++-- samples/maps/geo-map/overview/package.json | 6 ++-- .../maps/geo-map/shape-styling/package.json | 6 ++-- .../geo-map/triangulating-data/package.json | 6 ++-- .../type-scatter-area-series/package.json | 6 ++-- .../type-scatter-bubble-series/package.json | 6 ++-- .../type-scatter-contour-series/package.json | 6 ++-- .../type-scatter-density-series/package.json | 6 ++-- .../type-scatter-symbol-series/package.json | 6 ++-- .../type-shape-polygon-series/package.json | 6 ++-- .../type-shape-polyline-series/package.json | 6 ++-- 367 files changed, 1001 insertions(+), 1001 deletions(-) diff --git a/browser/package.json b/browser/package.json index a591b0855..af3d30e43 100644 --- a/browser/package.json +++ b/browser/package.json @@ -38,20 +38,20 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-dashboards": "19.0.1", - "igniteui-angular-excel": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular": "19.2.6", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-dashboards": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "igniteui-angular-grids": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-angular-maps": "19.0.1", - "igniteui-angular-spreadsheet": "19.0.1", - "igniteui-angular-spreadsheet-chart-adapter": "19.0.1", - "igniteui-theming": "15.1.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-spreadsheet": "19.1.0-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "19.1.0-beta.0", + "igniteui-theming": "18.0.1", + "igniteui-webcomponents": "6.0.0", "immediate": "3.2.3", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 977a12288..65e2bd5c0 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1073,22 +1073,22 @@ function updateIG(cb) { // { version: "14.1.0", name: "igniteui-angular-charts" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { version: "19.0.1", name: "igniteui-angular-core" }, - { version: "19.0.1", name: "igniteui-angular-charts" }, - { version: "19.0.1", name: "igniteui-angular-excel" }, - { version: "19.0.1", name: "igniteui-angular-gauges" }, + { version: "19.1.0-beta.0", name: "igniteui-angular-core" }, + { version: "19.1.0-beta.0", name: "igniteui-angular-charts" }, + { version: "19.1.0-beta.0", name: "igniteui-angular-excel" }, + { version: "19.1.0-beta.0", name: "igniteui-angular-gauges" }, { version: "19.0.1", name: "igniteui-angular-grids" }, - { version: "19.0.1", name: "igniteui-angular-inputs" }, - { version: "19.0.1", name: "igniteui-angular-layouts" }, - { version: "19.0.1", name: "igniteui-angular-maps" }, - { version: "19.0.1", name: "igniteui-angular-spreadsheet-chart-adapter" }, - { version: "19.0.1", name: "igniteui-angular-spreadsheet" }, - { version: "19.0.1", name: "igniteui-angular-datasources" }, - { version: "19.0.1", name: "igniteui-angular-dashboards" }, + { version: "19.1.0-beta.0", name: "igniteui-angular-inputs" }, + { version: "19.1.0-beta.0", name: "igniteui-angular-layouts" }, + { version: "19.1.0-beta.0", name: "igniteui-angular-maps" }, + { version: "19.1.0-beta.0", name: "igniteui-angular-spreadsheet-chart-adapter" }, + { version: "19.1.0-beta.0", name: "igniteui-angular-spreadsheet" }, + { version: "19.1.0-beta.0", name: "igniteui-angular-datasources" }, + { version: "19.1.0-beta.0", name: "igniteui-angular-dashboards" }, // these IG packages are sometimes updated: - { version: "5.2.4" , name: "igniteui-webcomponents" }, - { version: "15.1.1", name: "igniteui-theming" }, - { version: "19.1.0", name: "igniteui-angular" }, + { version: "6.0.0" , name: "igniteui-webcomponents" }, + { version: "18.0.1", name: "igniteui-theming" }, + { version: "19.2.6", name: "igniteui-angular" }, { version: "19.0.4", name: "@angular/animations" }, { version: "19.0.4", name: "@angular/common" }, { version: "19.0.4", name: "@angular/compiler" }, diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index d3add9c7b..fdbcdcc3c 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,16 +1,16 @@ [ -{"ver":"19.1.0","name":"igniteui-angular"}, -{"ver":"19.0.1","name":"igniteui-angular-charts"}, -{"ver":"19.0.1","name":"igniteui-angular-core"}, -{"ver":"19.0.1","name":"igniteui-angular-dashboards"}, -{"ver":"19.0.1","name":"igniteui-angular-excel"}, -{"ver":"19.0.1","name":"igniteui-angular-gauges"}, +{"ver":"19.2.6","name":"igniteui-angular"}, +{"ver":"19.1.0-beta.0","name":"igniteui-angular-charts"}, +{"ver":"19.1.0-beta.0","name":"igniteui-angular-core"}, +{"ver":"19.1.0-beta.0","name":"igniteui-angular-dashboards"}, +{"ver":"19.1.0-beta.0","name":"igniteui-angular-excel"}, +{"ver":"19.1.0-beta.0","name":"igniteui-angular-gauges"}, {"ver":"19.0.1","name":"igniteui-angular-grids"}, -{"ver":"19.0.1","name":"igniteui-angular-inputs"}, -{"ver":"19.0.1","name":"igniteui-angular-layouts"}, -{"ver":"19.0.1","name":"igniteui-angular-maps"}, -{"ver":"19.0.1","name":"igniteui-angular-spreadsheet"}, -{"ver":"19.0.1","name":"igniteui-angular-spreadsheet-chart-adapter"}, -{"ver":"15.1.1","name":"igniteui-theming"}, -{"ver":"5.2.4","name":"igniteui-webcomponents"} +{"ver":"19.1.0-beta.0","name":"igniteui-angular-inputs"}, +{"ver":"19.1.0-beta.0","name":"igniteui-angular-layouts"}, +{"ver":"19.1.0-beta.0","name":"igniteui-angular-maps"}, +{"ver":"19.1.0-beta.0","name":"igniteui-angular-spreadsheet"}, +{"ver":"19.1.0-beta.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"18.0.1","name":"igniteui-theming"}, +{"ver":"6.0.0","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index d9de3c66c..82b9ae016 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 2bf9928be..037a1e59c 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular": "19.2.6", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 2bf9928be..037a1e59c 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular": "19.2.6", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-matcher/package.json b/samples/charts/category-chart/selection-matcher/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/selection-matcher/package.json +++ b/samples/charts/category-chart/selection-matcher/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index ef12c38f8..9c1d41a27 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-dashboards": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-dashboards": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "igniteui-angular-grids": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index ef12c38f8..9c1d41a27 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-dashboards": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-dashboards": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "igniteui-angular-grids": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index ef12c38f8..9c1d41a27 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-dashboards": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-dashboards": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "igniteui-angular-grids": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index ef12c38f8..9c1d41a27 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-dashboards": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-dashboards": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "igniteui-angular-grids": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index ef12c38f8..9c1d41a27 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-dashboards": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-dashboards": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "igniteui-angular-grids": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index b95866222..54d190af3 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index d9de3c66c..82b9ae016 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index d9de3c66c..82b9ae016 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index d9de3c66c..82b9ae016 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/selection-matcher/package.json b/samples/charts/data-chart/selection-matcher/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/selection-matcher/package.json +++ b/samples/charts/data-chart/selection-matcher/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/animation-replay/package.json b/samples/charts/data-pie-chart/animation-replay/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/data-pie-chart/animation-replay/package.json +++ b/samples/charts/data-pie-chart/animation-replay/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index d9de3c66c..82b9ae016 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index d9de3c66c..82b9ae016 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 0abede8a4..a5de48893 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-theming": "15.1.1", + "igniteui-angular": "19.2.6", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-theming": "18.0.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index d9de3c66c..82b9ae016 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index d9de3c66c..82b9ae016 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json index d9de3c66c..82b9ae016 100644 --- a/samples/charts/toolbar/color-editor-support/package.json +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index d9de3c66c..82b9ae016 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index d9de3c66c..82b9ae016 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index d9de3c66c..82b9ae016 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 2bf9928be..037a1e59c 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular": "19.2.6", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 8e079030d..8eb1063b4 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", - "igniteui-angular-layouts": "19.0.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 5565041b2..91376df51 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 0f1752ac0..687571002 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 9758a359a..3368d8243 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-excel": "19.0.1", + "igniteui-angular": "19.2.6", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index c48bab4a9..591fb33b5 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-excel": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index c48bab4a9..591fb33b5 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-excel": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index c48bab4a9..591fb33b5 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-excel": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 36f86a215..496a0f1fe 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -20,10 +20,10 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-excel": "19.0.1", + "igniteui-angular": "19.2.6", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 36f86a215..496a0f1fe 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -20,10 +20,10 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-excel": "19.0.1", + "igniteui-angular": "19.2.6", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index 3269517ed..26a4bbf00 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -20,10 +20,10 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-excel": "19.0.1", - "igniteui-angular-spreadsheet": "19.0.1", - "igniteui-angular-spreadsheet-chart-adapter": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-spreadsheet": "19.1.0-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index ec90f1995..beda0a730 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-excel": "19.0.1", - "igniteui-angular-spreadsheet": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-spreadsheet": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 8c616b800..92196889f 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-excel": "19.0.1", - "igniteui-angular-spreadsheet": "19.0.1", - "igniteui-angular-spreadsheet-chart-adapter": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-spreadsheet": "19.1.0-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index 8c616b800..92196889f 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-excel": "19.0.1", - "igniteui-angular-spreadsheet": "19.0.1", - "igniteui-angular-spreadsheet-chart-adapter": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-spreadsheet": "19.1.0-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index ec90f1995..beda0a730 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-excel": "19.0.1", - "igniteui-angular-spreadsheet": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-spreadsheet": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index ec90f1995..beda0a730 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-excel": "19.0.1", - "igniteui-angular-spreadsheet": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-spreadsheet": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index ec90f1995..beda0a730 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-excel": "19.0.1", - "igniteui-angular-spreadsheet": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-spreadsheet": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index ec90f1995..beda0a730 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-excel": "19.0.1", - "igniteui-angular-spreadsheet": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-spreadsheet": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index ec90f1995..beda0a730 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-excel": "19.0.1", - "igniteui-angular-spreadsheet": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-spreadsheet": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index ec90f1995..beda0a730 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-excel": "19.0.1", - "igniteui-angular-spreadsheet": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-spreadsheet": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index ec90f1995..beda0a730 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-excel": "19.0.1", - "igniteui-angular-spreadsheet": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-spreadsheet": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index b8aca7f62..3bb477a75 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular": "19.2.6", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index b8aca7f62..3bb477a75 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular": "19.2.6", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index b8aca7f62..3bb477a75 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular": "19.2.6", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 136871261..8ad8388a9 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-gauges": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json index acd02a194..828b76402 100644 --- a/samples/inputs/color-editor/overview/package.json +++ b/samples/inputs/color-editor/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-inputs": "19.0.1", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-inputs": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 2a4725ada..2c56e8323 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.0.1", - "igniteui-angular-core": "19.0.1", - "igniteui-angular-maps": "19.0.1", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-maps": "19.1.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", From 87c5378c89453e1daf56f07b0c38db66fd210254 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Wed, 21 May 2025 13:22:14 -0400 Subject: [PATCH 141/154] mdd-update update --- browser/gulpfile-old.js | 1 + browser/gulpfile.js | 1 + browser/scripts/utils.js | 1 + browser/src/browser-info.json | 1 + 4 files changed, 4 insertions(+) diff --git a/browser/gulpfile-old.js b/browser/gulpfile-old.js index 51cd1b655..95f4497fd 100644 --- a/browser/gulpfile-old.js +++ b/browser/gulpfile-old.js @@ -145,6 +145,7 @@ gulp.task("overwrite-package-json", (done) => { const packagesPaths = [ "./node_modules/igniteui-angular-charts/package.json", "./node_modules/igniteui-angular-grids/package.json", + "./node_modules/igniteui-angular-data-grids/package.json", "./node_modules/igniteui-angular-dashboards/package.json", "./node_modules/igniteui-angular-core/package.json", "./node_modules/igniteui-angular-excel/package.json", diff --git a/browser/gulpfile.js b/browser/gulpfile.js index 69292cdf0..6ffa627ea 100644 --- a/browser/gulpfile.js +++ b/browser/gulpfile.js @@ -55,6 +55,7 @@ gulp.task("overwrite-package-json", (done) => { const packagesPaths = [ "./node_modules/igniteui-angular-charts/package.json", "./node_modules/igniteui-angular-grids/package.json", + "./node_modules/igniteui-angular-data-grids/package.json", "./node_modules/igniteui-angular-dashboards/package.json", "./node_modules/igniteui-angular-core/package.json", "./node_modules/igniteui-angular-inputs/package.json", diff --git a/browser/scripts/utils.js b/browser/scripts/utils.js index 15873425b..cb0dcb2aa 100644 --- a/browser/scripts/utils.js +++ b/browser/scripts/utils.js @@ -180,6 +180,7 @@ var lintPackageNames = [ 'igniteui-angular-dashboards', 'igniteui-angular-inputs', 'igniteui-angular-layouts', + 'igniteui-angular-data-grids', 'igniteui-angular-grids', 'igniteui-angular-excel', 'igniteui-angular-gauges', diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index fdbcdcc3c..0b2ac601b 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -5,6 +5,7 @@ {"ver":"19.1.0-beta.0","name":"igniteui-angular-dashboards"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-excel"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-gauges"}, +{"ver":"19.1.0-beta.0","name":"igniteui-angular-data-grids"}, {"ver":"19.0.1","name":"igniteui-angular-grids"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-inputs"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-layouts"}, From b385282373a18c9ba298e4637f83d3db360c5a98 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Thu, 22 May 2025 11:33:53 -0400 Subject: [PATCH 142/154] mdd-update mdd-update --- browser/gulpfile-old.js | 1 - browser/gulpfile.js | 1 - browser/package.json | 4 ++-- browser/package_move.bat | 4 ++-- browser/scripts/browser.js | 1 + browser/scripts/utils.js | 1 - browser/src/browser-info.json | 1 - samples/charts/dashboard-tile/chart-dashboard/package.json | 2 +- .../charts/dashboard-tile/financial-dashboard/package.json | 2 +- samples/charts/dashboard-tile/gauge-dashboard/package.json | 2 +- samples/charts/dashboard-tile/map-dashboard/package.json | 2 +- samples/charts/dashboard-tile/pie-dashboard/package.json | 2 +- .../toolbar/actions-built-in-category-chart/src/app.module.ts | 2 +- 13 files changed, 11 insertions(+), 14 deletions(-) diff --git a/browser/gulpfile-old.js b/browser/gulpfile-old.js index 95f4497fd..5c3727f5c 100644 --- a/browser/gulpfile-old.js +++ b/browser/gulpfile-old.js @@ -144,7 +144,6 @@ function logSamples(done) { gulp.task("overwrite-package-json", (done) => { const packagesPaths = [ "./node_modules/igniteui-angular-charts/package.json", - "./node_modules/igniteui-angular-grids/package.json", "./node_modules/igniteui-angular-data-grids/package.json", "./node_modules/igniteui-angular-dashboards/package.json", "./node_modules/igniteui-angular-core/package.json", diff --git a/browser/gulpfile.js b/browser/gulpfile.js index 6ffa627ea..9d797f6e8 100644 --- a/browser/gulpfile.js +++ b/browser/gulpfile.js @@ -54,7 +54,6 @@ gulp.task('moveAppFiles', browser.moveAppFiles); gulp.task("overwrite-package-json", (done) => { const packagesPaths = [ "./node_modules/igniteui-angular-charts/package.json", - "./node_modules/igniteui-angular-grids/package.json", "./node_modules/igniteui-angular-data-grids/package.json", "./node_modules/igniteui-angular-dashboards/package.json", "./node_modules/igniteui-angular-core/package.json", diff --git a/browser/package.json b/browser/package.json index af3d30e43..d9a839852 100644 --- a/browser/package.json +++ b/browser/package.json @@ -44,7 +44,7 @@ "igniteui-angular-dashboards": "19.1.0-beta.0", "igniteui-angular-excel": "19.1.0-beta.0", "igniteui-angular-gauges": "19.1.0-beta.0", - "igniteui-angular-grids": "19.0.1", + "igniteui-angular-data-grids": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", "igniteui-angular-maps": "19.1.0-beta.0", @@ -92,6 +92,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/browser/package_move.bat b/browser/package_move.bat index bc61e7e0b..d0394eb8b 100644 --- a/browser/package_move.bat +++ b/browser/package_move.bat @@ -18,8 +18,8 @@ IF EXIST @infragistics\igniteui-angular-gauges ( MOVE /y @infragistics\igniteui-angular-gauges igniteui-angular-gauges ) -IF EXIST @infragistics\igniteui-angular-grids ( - MOVE /y @infragistics\igniteui-angular-grids igniteui-angular-grids +IF EXIST @infragistics\igniteui-angular-data-grids ( + MOVE /y @infragistics\igniteui-angular-data-grids igniteui-angular-data-grids ) IF EXIST @infragistics\igniteui-angular-excel ( diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 65e2bd5c0..9d7120782 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1077,6 +1077,7 @@ function updateIG(cb) { { version: "19.1.0-beta.0", name: "igniteui-angular-charts" }, { version: "19.1.0-beta.0", name: "igniteui-angular-excel" }, { version: "19.1.0-beta.0", name: "igniteui-angular-gauges" }, + { version: "19.1.0-beta.0", name: "igniteui-angular-data-grids" }, { version: "19.0.1", name: "igniteui-angular-grids" }, { version: "19.1.0-beta.0", name: "igniteui-angular-inputs" }, { version: "19.1.0-beta.0", name: "igniteui-angular-layouts" }, diff --git a/browser/scripts/utils.js b/browser/scripts/utils.js index cb0dcb2aa..b66516738 100644 --- a/browser/scripts/utils.js +++ b/browser/scripts/utils.js @@ -181,7 +181,6 @@ var lintPackageNames = [ 'igniteui-angular-inputs', 'igniteui-angular-layouts', 'igniteui-angular-data-grids', - 'igniteui-angular-grids', 'igniteui-angular-excel', 'igniteui-angular-gauges', 'igniteui-angular-maps', diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index 0b2ac601b..2037dcc91 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -6,7 +6,6 @@ {"ver":"19.1.0-beta.0","name":"igniteui-angular-excel"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-gauges"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-data-grids"}, -{"ver":"19.0.1","name":"igniteui-angular-grids"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-inputs"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-layouts"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-maps"}, diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index 9c1d41a27..433720144 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-dashboards": "19.1.0-beta.0", "igniteui-angular-gauges": "19.1.0-beta.0", - "igniteui-angular-grids": "19.0.1", + "igniteui-angular-data-grids": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", "igniteui-angular-maps": "19.1.0-beta.0", diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index 9c1d41a27..433720144 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-dashboards": "19.1.0-beta.0", "igniteui-angular-gauges": "19.1.0-beta.0", - "igniteui-angular-grids": "19.0.1", + "igniteui-angular-data-grids": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", "igniteui-angular-maps": "19.1.0-beta.0", diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index 9c1d41a27..433720144 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-dashboards": "19.1.0-beta.0", "igniteui-angular-gauges": "19.1.0-beta.0", - "igniteui-angular-grids": "19.0.1", + "igniteui-angular-data-grids": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", "igniteui-angular-maps": "19.1.0-beta.0", diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index 9c1d41a27..433720144 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-dashboards": "19.1.0-beta.0", "igniteui-angular-gauges": "19.1.0-beta.0", - "igniteui-angular-grids": "19.0.1", + "igniteui-angular-data-grids": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", "igniteui-angular-maps": "19.1.0-beta.0", diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index 9c1d41a27..433720144 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-dashboards": "19.1.0-beta.0", "igniteui-angular-gauges": "19.1.0-beta.0", - "igniteui-angular-grids": "19.0.1", + "igniteui-angular-data-grids": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", "igniteui-angular-maps": "19.1.0-beta.0", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/app.module.ts b/samples/charts/toolbar/actions-built-in-category-chart/src/app.module.ts index 4a7d03597..48b99e2d3 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/app.module.ts +++ b/samples/charts/toolbar/actions-built-in-category-chart/src/app.module.ts @@ -7,7 +7,7 @@ import { AppComponent } from "./app.component"; import { IgxLegendModule, IgxCategoryChartModule, IgxCategoryChartToolbarModule } from 'igniteui-angular-charts'; import { IgxToolbarModule } from 'igniteui-angular-layouts'; -import { IgxCheckboxListModule } from 'igniteui-angular-grids'; +import { IgxCheckboxListModule } from 'igniteui-angular-data-grids'; @NgModule({ bootstrap: [AppComponent], From c8182e63d20120fcd0fafc5fc680cd806b0aa77b Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Thu, 22 May 2025 16:14:48 -0400 Subject: [PATCH 143/154] mdd-revert-upgrades mdd-revert-upgrades --- browser/package.json | 15 +++++++++------ browser/scripts/browser.js | 7 +++---- browser/src/browser-info.json | 6 +++--- .../category-chart/annotations-all/package.json | 2 +- .../annotations-callouts/package.json | 2 +- .../annotations-crosshairs/package.json | 2 +- .../annotations-custom/package.json | 2 +- .../annotations-final-value/package.json | 2 +- .../annotations-highlighting/package.json | 2 +- .../charts/category-chart/axis-gap/package.json | 2 +- .../category-chart/axis-gridlines/package.json | 2 +- .../category-chart/axis-inverted/package.json | 2 +- .../category-chart/axis-labels/package.json | 2 +- .../category-chart/axis-locations/package.json | 2 +- .../category-chart/axis-overlap/package.json | 2 +- .../charts/category-chart/axis-range/package.json | 2 +- .../category-chart/axis-tickmarks/package.json | 2 +- .../chart-highlight-filter/package.json | 2 +- .../column-chart-with-tooltips/package.json | 2 +- .../category-chart/data-aggregations/package.json | 2 +- .../category-chart/data-filter/package.json | 2 +- .../data-tooltip-positioning/package.json | 2 +- .../category-chart/high-frequency/package.json | 2 +- .../category-chart/high-volume/package.json | 2 +- .../highlighting-behavior/package.json | 2 +- .../category-chart/highlighting-mode/package.json | 2 +- .../category-chart/marker-options/package.json | 2 +- .../selection-multiple-modes/package.json | 2 +- .../category-chart/value-lines/package.json | 2 +- .../dashboard-tile/chart-dashboard/package.json | 6 +++--- .../financial-dashboard/package.json | 6 +++--- .../dashboard-tile/gauge-dashboard/package.json | 6 +++--- .../dashboard-tile/map-dashboard/package.json | 6 +++--- .../dashboard-tile/pie-dashboard/package.json | 6 +++--- .../data-chart/axis-label-rotation/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../chart-highlight-filter/package.json | 2 +- .../data-chart/radial-label-mode/package.json | 2 +- .../data-chart/transition-event/package.json | 2 +- .../data-pie-chart/animation-replay/package.json | 2 +- .../charts/data-pie-chart/animation/package.json | 2 +- .../data-pie-chart/highlighting/package.json | 2 +- samples/charts/data-pie-chart/others/package.json | 2 +- .../charts/data-pie-chart/selection/package.json | 2 +- samples/charts/sparkline/grid/package.json | 4 ++-- samples/charts/sparkline/markers/package.json | 2 +- .../charts/sparkline/normal-range/package.json | 2 +- samples/charts/sparkline/trendlines/package.json | 2 +- .../charts/sparkline/unknown-values/package.json | 2 +- samples/charts/toolbar/theming/package.json | 2 +- samples/charts/tree-map/events/package.json | 2 +- samples/charts/tree-map/highlighting/package.json | 2 +- samples/charts/tree-map/layout/package.json | 2 +- .../operations-on-workbooks/package.json | 2 +- .../working-with-charts/package.json | 2 +- .../working-with-sparklines/package.json | 2 +- .../gauges/bullet-graph/animation/package.json | 2 +- .../gauges/linear-gauge/animation/package.json | 2 +- .../gauges/radial-gauge/animation/package.json | 2 +- 60 files changed, 83 insertions(+), 81 deletions(-) diff --git a/browser/package.json b/browser/package.json index d9a839852..66bd1952b 100644 --- a/browser/package.json +++ b/browser/package.json @@ -20,6 +20,9 @@ "type": "git", "url": "git://github.com/IgniteUI/@infragistics/igniteui-angular-examples/repository.git" }, + "resolutions": { + "@lit/reactive-element": "desired-version" + }, "dependencies": { "@angular/animations": "19.0.4", "@angular/common": "19.0.4", @@ -28,7 +31,7 @@ "@angular/forms": "19.0.4", "@angular/platform-browser": "19.0.4", "@angular/platform-browser-dynamic": "19.0.4", - "@angular/router": "19.0.4", + "@angular/router": "19.2.12", "@ionic/angular": "5.6.3", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", @@ -38,20 +41,20 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.2.6", + "igniteui-angular": "19.1.0", "igniteui-angular-charts": "19.1.0-beta.0", "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-dashboards": "19.1.0-beta.0", + "igniteui-angular-data-grids": "19.1.0-beta.0", "igniteui-angular-excel": "19.1.0-beta.0", "igniteui-angular-gauges": "19.1.0-beta.0", - "igniteui-angular-data-grids": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", "igniteui-angular-maps": "19.1.0-beta.0", "igniteui-angular-spreadsheet": "19.1.0-beta.0", "igniteui-angular-spreadsheet-chart-adapter": "19.1.0-beta.0", - "igniteui-theming": "18.0.1", - "igniteui-webcomponents": "6.0.0", + "igniteui-theming": "15.1.1", + "igniteui-webcomponents": "5.2.4", "immediate": "3.2.3", "intl": "1.2.5", "jszip": "3.8.0", @@ -92,6 +95,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.8.3" + "typescript": "5.6.3" } } diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 9d7120782..84667a8b4 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1078,7 +1078,6 @@ function updateIG(cb) { { version: "19.1.0-beta.0", name: "igniteui-angular-excel" }, { version: "19.1.0-beta.0", name: "igniteui-angular-gauges" }, { version: "19.1.0-beta.0", name: "igniteui-angular-data-grids" }, - { version: "19.0.1", name: "igniteui-angular-grids" }, { version: "19.1.0-beta.0", name: "igniteui-angular-inputs" }, { version: "19.1.0-beta.0", name: "igniteui-angular-layouts" }, { version: "19.1.0-beta.0", name: "igniteui-angular-maps" }, @@ -1087,9 +1086,9 @@ function updateIG(cb) { { version: "19.1.0-beta.0", name: "igniteui-angular-datasources" }, { version: "19.1.0-beta.0", name: "igniteui-angular-dashboards" }, // these IG packages are sometimes updated: - { version: "6.0.0" , name: "igniteui-webcomponents" }, - { version: "18.0.1", name: "igniteui-theming" }, - { version: "19.2.6", name: "igniteui-angular" }, + { version: "5.2.4" , name: "igniteui-webcomponents" }, + { version: "15.1.1", name: "igniteui-theming" }, + { version: "19.1.0", name: "igniteui-angular" }, { version: "19.0.4", name: "@angular/animations" }, { version: "19.0.4", name: "@angular/common" }, { version: "19.0.4", name: "@angular/compiler" }, diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index 2037dcc91..718924375 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,5 +1,5 @@ [ -{"ver":"19.2.6","name":"igniteui-angular"}, +{"ver":"19.1.0","name":"igniteui-angular"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-charts"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-core"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-dashboards"}, @@ -11,6 +11,6 @@ {"ver":"19.1.0-beta.0","name":"igniteui-angular-maps"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-spreadsheet"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, -{"ver":"18.0.1","name":"igniteui-theming"}, -{"ver":"6.0.0","name":"igniteui-webcomponents"} +{"ver":"15.1.1","name":"igniteui-theming"}, +{"ver":"5.2.4","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 037a1e59c..66b8e1255 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -18,7 +18,7 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.2.6", + "igniteui-angular": "19.1.0", "igniteui-angular-charts": "19.1.0-beta.0", "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 037a1e59c..66b8e1255 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -18,7 +18,7 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.2.6", + "igniteui-angular": "19.1.0", "igniteui-angular-charts": "19.1.0-beta.0", "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index 433720144..afb2925a3 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -20,8 +20,8 @@ "igniteui-angular-charts": "19.1.0-beta.0", "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-dashboards": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", "igniteui-angular-data-grids": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", "igniteui-angular-maps": "19.1.0-beta.0", @@ -33,17 +33,17 @@ "zone.js": "~0.15.0" }, "devDependencies": { + "@angular-devkit/build-angular": "19.0.4", "@angular/cli": "19.0.4", "@angular/compiler-cli": "19.0.4", "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.6.3" } } diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index 433720144..afb2925a3 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -20,8 +20,8 @@ "igniteui-angular-charts": "19.1.0-beta.0", "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-dashboards": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", "igniteui-angular-data-grids": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", "igniteui-angular-maps": "19.1.0-beta.0", @@ -33,17 +33,17 @@ "zone.js": "~0.15.0" }, "devDependencies": { + "@angular-devkit/build-angular": "19.0.4", "@angular/cli": "19.0.4", "@angular/compiler-cli": "19.0.4", "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.6.3" } } diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index 433720144..afb2925a3 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -20,8 +20,8 @@ "igniteui-angular-charts": "19.1.0-beta.0", "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-dashboards": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", "igniteui-angular-data-grids": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", "igniteui-angular-maps": "19.1.0-beta.0", @@ -33,17 +33,17 @@ "zone.js": "~0.15.0" }, "devDependencies": { + "@angular-devkit/build-angular": "19.0.4", "@angular/cli": "19.0.4", "@angular/compiler-cli": "19.0.4", "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.6.3" } } diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index 433720144..afb2925a3 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -20,8 +20,8 @@ "igniteui-angular-charts": "19.1.0-beta.0", "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-dashboards": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", "igniteui-angular-data-grids": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", "igniteui-angular-maps": "19.1.0-beta.0", @@ -33,17 +33,17 @@ "zone.js": "~0.15.0" }, "devDependencies": { + "@angular-devkit/build-angular": "19.0.4", "@angular/cli": "19.0.4", "@angular/compiler-cli": "19.0.4", "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.6.3" } } diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index 433720144..afb2925a3 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -20,8 +20,8 @@ "igniteui-angular-charts": "19.1.0-beta.0", "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-dashboards": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", "igniteui-angular-data-grids": "19.1.0-beta.0", + "igniteui-angular-gauges": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", "igniteui-angular-maps": "19.1.0-beta.0", @@ -33,17 +33,17 @@ "zone.js": "~0.15.0" }, "devDependencies": { + "@angular-devkit/build-angular": "19.0.4", "@angular/cli": "19.0.4", "@angular/compiler-cli": "19.0.4", "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "tslint": "~6.1.3", "ts-node": "10.9.1", + "tslint": "~6.1.3", "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/animation-replay/package.json b/samples/charts/data-pie-chart/animation-replay/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/data-pie-chart/animation-replay/package.json +++ b/samples/charts/data-pie-chart/animation-replay/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index a5de48893..82d4102d1 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.2.6", + "igniteui-angular": "19.1.0", "igniteui-angular-charts": "19.1.0-beta.0", "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-theming": "18.0.1", + "igniteui-theming": "15.1.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 037a1e59c..66b8e1255 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -18,7 +18,7 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.2.6", + "igniteui-angular": "19.1.0", "igniteui-angular-charts": "19.1.0-beta.0", "igniteui-angular-core": "19.1.0-beta.0", "intl": "1.2.5", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 8eb1063b4..2320fab70 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 3368d8243..005b073a6 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -20,7 +20,7 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.2.6", + "igniteui-angular": "19.1.0", "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-excel": "19.1.0-beta.0", "intl": "1.2.5", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 496a0f1fe..866f53250 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -20,7 +20,7 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.2.6", + "igniteui-angular": "19.1.0", "igniteui-angular-charts": "19.1.0-beta.0", "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-excel": "19.1.0-beta.0", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 496a0f1fe..866f53250 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -20,7 +20,7 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.2.6", + "igniteui-angular": "19.1.0", "igniteui-angular-charts": "19.1.0-beta.0", "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-excel": "19.1.0-beta.0", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 3bb477a75..908f61544 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -18,7 +18,7 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.2.6", + "igniteui-angular": "19.1.0", "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 3bb477a75..908f61544 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -18,7 +18,7 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.2.6", + "igniteui-angular": "19.1.0", "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 3bb477a75..908f61544 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -18,7 +18,7 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.2.6", + "igniteui-angular": "19.1.0", "igniteui-angular-core": "19.1.0-beta.0", "igniteui-angular-gauges": "19.1.0-beta.0", "intl": "1.2.5", From b7b10b497192ccdb4a8abf7a58c68312afbcbc28 Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Thu, 29 May 2025 23:31:34 +0300 Subject: [PATCH 144/154] Adding changes from build igniteui-xplat-examples-output+PRs_2025.5.29.2 --- .../overview/src/app.component.html | 2 +- .../financial-dashboard/package.json | 4 +- .../gauge-dashboard/package.json | 4 +- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 + .../local-data-source-dashboard/.stackblitzrc | 1 + .../local-data-source-dashboard/angular.json | 120 + .../local-data-source-dashboard/package.json | 49 + .../RetailSalesPerformanceLocalDataSource.ts | 818 ++++++ .../src/app.component.html | 9 + .../src/app.component.scss | 3 + .../src/app.component.ts | 36 + .../src/app.module.ts | 30 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../src/index.html | 23 + .../local-data-source-dashboard/src/main.ts | 15 + .../src/polyfills.ts | 61 + .../src/styles.scss | 9 + .../src/typings.d.ts | 5 + .../tsconfig.app.json | 10 + .../local-data-source-dashboard/tsconfig.json | 27 + .../local-data-source-dashboard/tslint.json | 31 + .../dashboard-tile/map-dashboard/package.json | 4 +- .../dashboard-tile/pie-dashboard/package.json | 4 +- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 + .../data-annotation-band-layer/.stackblitzrc | 1 + .../data-annotation-band-layer/angular.json | 120 + .../data-annotation-band-layer/package.json | 43 + .../src/AnnotationBandData.ts | 37 + .../src/StockTesla.ts | 2523 +++++++++++++++++ .../src/app.component.html | 117 + .../src/app.component.scss | 3 + .../src/app.component.ts | 60 + .../src/app.module.ts | 35 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../data-annotation-band-layer/src/index.html | 23 + .../data-annotation-band-layer/src/main.ts | 15 + .../src/polyfills.ts | 61 + .../src/styles.scss | 9 + .../src/typings.d.ts | 5 + .../tsconfig.app.json | 10 + .../data-annotation-band-layer/tsconfig.json | 27 + .../data-annotation-band-layer/tslint.json | 31 + .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 + .../data-annotation-line-layer/.stackblitzrc | 1 + .../data-annotation-line-layer/angular.json | 120 + .../data-annotation-line-layer/package.json | 43 + .../src/AnnotationLineData1.ts | 39 + .../src/AnnotationLineData2.ts | 41 + .../src/StockTesla.ts | 2523 +++++++++++++++++ .../src/app.component.html | 128 + .../src/app.component.scss | 3 + .../src/app.component.ts | 70 + .../src/app.module.ts | 35 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../data-annotation-line-layer/src/index.html | 23 + .../data-annotation-line-layer/src/main.ts | 15 + .../src/polyfills.ts | 61 + .../src/styles.scss | 9 + .../src/typings.d.ts | 5 + .../tsconfig.app.json | 10 + .../data-annotation-line-layer/tsconfig.json | 27 + .../data-annotation-line-layer/tslint.json | 31 + .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 + .../.stackblitzrc | 1 + .../angular.json | 120 + .../package.json | 43 + .../src/AnnotationSliceMultiOverlayData.ts | 23 + .../src/StockTesla.ts | 2523 +++++++++++++++++ .../src/app.component.html | 84 + .../src/app.component.scss | 3 + .../src/app.component.ts | 58 + .../src/app.module.ts | 34 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../src/index.html | 23 + .../src/main.ts | 15 + .../src/polyfills.ts | 61 + .../src/styles.scss | 9 + .../src/typings.d.ts | 5 + .../tsconfig.app.json | 10 + .../tsconfig.json | 27 + .../tslint.json | 31 + .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 + .../.stackblitzrc | 1 + .../angular.json | 120 + .../package.json | 43 + .../src/AnnotationLineData1.ts | 39 + .../src/AnnotationLineData2.ts | 41 + .../src/AnnotationSliceEarningsBeatData.ts | 35 + .../src/AnnotationSliceEarningsMissData.ts | 35 + .../src/AnnotationSliceStockSplitData.ts | 30 + .../src/AnnotationStripData.ts | 39 + .../src/StockTesla.ts | 2523 +++++++++++++++++ .../src/app.component.html | 220 ++ .../src/app.component.scss | 3 + .../src/app.component.ts | 122 + .../src/app.module.ts | 37 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../src/index.html | 23 + .../src/main.ts | 15 + .../src/polyfills.ts | 61 + .../src/styles.scss | 9 + .../src/typings.d.ts | 5 + .../tsconfig.app.json | 10 + .../tsconfig.json | 27 + .../tslint.json | 31 + .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 + .../data-annotation-rect-layer/.stackblitzrc | 1 + .../data-annotation-rect-layer/angular.json | 120 + .../data-annotation-rect-layer/package.json | 43 + .../src/AnnotationRectData.ts | 40 + .../src/StockTesla.ts | 2523 +++++++++++++++++ .../src/app.component.html | 85 + .../src/app.component.scss | 3 + .../src/app.component.ts | 56 + .../src/app.module.ts | 35 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../data-annotation-rect-layer/src/index.html | 23 + .../data-annotation-rect-layer/src/main.ts | 15 + .../src/polyfills.ts | 61 + .../src/styles.scss | 9 + .../src/typings.d.ts | 5 + .../tsconfig.app.json | 10 + .../data-annotation-rect-layer/tsconfig.json | 27 + .../data-annotation-rect-layer/tslint.json | 31 + .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 + .../data-annotation-slice-layer/.stackblitzrc | 1 + .../data-annotation-slice-layer/angular.json | 120 + .../data-annotation-slice-layer/package.json | 43 + .../src/AnnotationSliceEarningsBeatData.ts | 35 + .../src/AnnotationSliceEarningsMissData.ts | 35 + .../src/AnnotationSliceStockSplitData.ts | 30 + .../src/StockTesla.ts | 2523 +++++++++++++++++ .../src/app.component.html | 140 + .../src/app.component.scss | 3 + .../src/app.component.ts | 84 + .../src/app.module.ts | 35 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../src/index.html | 23 + .../data-annotation-slice-layer/src/main.ts | 15 + .../src/polyfills.ts | 61 + .../src/styles.scss | 9 + .../src/typings.d.ts | 5 + .../tsconfig.app.json | 10 + .../data-annotation-slice-layer/tsconfig.json | 27 + .../data-annotation-slice-layer/tslint.json | 31 + .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 + .../data-annotation-strip-layer/.stackblitzrc | 1 + .../data-annotation-strip-layer/angular.json | 120 + .../data-annotation-strip-layer/package.json | 43 + .../src/AnnotationStripData.ts | 39 + .../src/StockTesla.ts | 2523 +++++++++++++++++ .../src/app.component.html | 115 + .../src/app.component.scss | 3 + .../src/app.component.ts | 60 + .../src/app.module.ts | 35 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../src/index.html | 23 + .../data-annotation-strip-layer/src/main.ts | 15 + .../src/polyfills.ts | 61 + .../src/styles.scss | 9 + .../src/typings.d.ts | 5 + .../tsconfig.app.json | 10 + .../data-annotation-strip-layer/tsconfig.json | 27 + .../data-annotation-strip-layer/tslint.json | 31 + .../src/WorldStats.ts | 98 +- .../src/WorldStats.ts | 98 +- .../src/WorldStats.ts | 98 +- .../others/src/EnergyGlobalDemand.ts | 51 - .../package.json | 1 + 185 files changed, 23980 insertions(+), 207 deletions(-) create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/.codesandbox/Dockerfile create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/.codesandbox/tasks.json create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/.stackblitzrc create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/angular.json create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/package.json create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/src/RetailSalesPerformanceLocalDataSource.ts create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/src/app.component.html create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/src/app.component.scss create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/src/app.component.ts create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/src/app.module.ts create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/src/environments/environment.prod.ts create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/src/environments/environment.ts create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/src/index.html create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/src/main.ts create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/src/polyfills.ts create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/src/styles.scss create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/src/typings.d.ts create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/tsconfig.app.json create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/tsconfig.json create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/tslint.json create mode 100644 samples/charts/data-chart/data-annotation-band-layer/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/data-annotation-band-layer/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/data-annotation-band-layer/.stackblitzrc create mode 100644 samples/charts/data-chart/data-annotation-band-layer/angular.json create mode 100644 samples/charts/data-chart/data-annotation-band-layer/package.json create mode 100644 samples/charts/data-chart/data-annotation-band-layer/src/AnnotationBandData.ts create mode 100644 samples/charts/data-chart/data-annotation-band-layer/src/StockTesla.ts create mode 100644 samples/charts/data-chart/data-annotation-band-layer/src/app.component.html create mode 100644 samples/charts/data-chart/data-annotation-band-layer/src/app.component.scss create mode 100644 samples/charts/data-chart/data-annotation-band-layer/src/app.component.ts create mode 100644 samples/charts/data-chart/data-annotation-band-layer/src/app.module.ts create mode 100644 samples/charts/data-chart/data-annotation-band-layer/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/data-annotation-band-layer/src/environments/environment.ts create mode 100644 samples/charts/data-chart/data-annotation-band-layer/src/index.html create mode 100644 samples/charts/data-chart/data-annotation-band-layer/src/main.ts create mode 100644 samples/charts/data-chart/data-annotation-band-layer/src/polyfills.ts create mode 100644 samples/charts/data-chart/data-annotation-band-layer/src/styles.scss create mode 100644 samples/charts/data-chart/data-annotation-band-layer/src/typings.d.ts create mode 100644 samples/charts/data-chart/data-annotation-band-layer/tsconfig.app.json create mode 100644 samples/charts/data-chart/data-annotation-band-layer/tsconfig.json create mode 100644 samples/charts/data-chart/data-annotation-band-layer/tslint.json create mode 100644 samples/charts/data-chart/data-annotation-line-layer/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/data-annotation-line-layer/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/data-annotation-line-layer/.stackblitzrc create mode 100644 samples/charts/data-chart/data-annotation-line-layer/angular.json create mode 100644 samples/charts/data-chart/data-annotation-line-layer/package.json create mode 100644 samples/charts/data-chart/data-annotation-line-layer/src/AnnotationLineData1.ts create mode 100644 samples/charts/data-chart/data-annotation-line-layer/src/AnnotationLineData2.ts create mode 100644 samples/charts/data-chart/data-annotation-line-layer/src/StockTesla.ts create mode 100644 samples/charts/data-chart/data-annotation-line-layer/src/app.component.html create mode 100644 samples/charts/data-chart/data-annotation-line-layer/src/app.component.scss create mode 100644 samples/charts/data-chart/data-annotation-line-layer/src/app.component.ts create mode 100644 samples/charts/data-chart/data-annotation-line-layer/src/app.module.ts create mode 100644 samples/charts/data-chart/data-annotation-line-layer/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/data-annotation-line-layer/src/environments/environment.ts create mode 100644 samples/charts/data-chart/data-annotation-line-layer/src/index.html create mode 100644 samples/charts/data-chart/data-annotation-line-layer/src/main.ts create mode 100644 samples/charts/data-chart/data-annotation-line-layer/src/polyfills.ts create mode 100644 samples/charts/data-chart/data-annotation-line-layer/src/styles.scss create mode 100644 samples/charts/data-chart/data-annotation-line-layer/src/typings.d.ts create mode 100644 samples/charts/data-chart/data-annotation-line-layer/tsconfig.app.json create mode 100644 samples/charts/data-chart/data-annotation-line-layer/tsconfig.json create mode 100644 samples/charts/data-chart/data-annotation-line-layer/tslint.json create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/.stackblitzrc create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/angular.json create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/AnnotationSliceMultiOverlayData.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/StockTesla.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/app.component.html create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/app.component.scss create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/app.component.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/app.module.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/environments/environment.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/index.html create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/main.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/polyfills.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/styles.scss create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/typings.d.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/tsconfig.app.json create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/tsconfig.json create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/tslint.json create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/.stackblitzrc create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/angular.json create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationLineData1.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationLineData2.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationSliceEarningsBeatData.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationSliceEarningsMissData.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationSliceStockSplitData.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationStripData.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/StockTesla.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/app.component.html create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/app.component.scss create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/app.component.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/app.module.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/environments/environment.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/index.html create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/main.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/polyfills.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/styles.scss create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/src/typings.d.ts create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/tsconfig.app.json create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/tsconfig.json create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/tslint.json create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/.stackblitzrc create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/angular.json create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/package.json create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/src/AnnotationRectData.ts create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/src/StockTesla.ts create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/src/app.component.html create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/src/app.component.scss create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/src/app.component.ts create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/src/app.module.ts create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/src/environments/environment.ts create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/src/index.html create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/src/main.ts create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/src/polyfills.ts create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/src/styles.scss create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/src/typings.d.ts create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/tsconfig.app.json create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/tsconfig.json create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/tslint.json create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/.stackblitzrc create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/angular.json create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/package.json create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/src/AnnotationSliceEarningsBeatData.ts create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/src/AnnotationSliceEarningsMissData.ts create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/src/AnnotationSliceStockSplitData.ts create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/src/StockTesla.ts create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/src/app.component.html create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/src/app.component.scss create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/src/app.component.ts create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/src/app.module.ts create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/src/environments/environment.ts create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/src/index.html create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/src/main.ts create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/src/polyfills.ts create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/src/styles.scss create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/src/typings.d.ts create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/tsconfig.app.json create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/tsconfig.json create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/tslint.json create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/.stackblitzrc create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/angular.json create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/package.json create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/src/AnnotationStripData.ts create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/src/StockTesla.ts create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/src/app.component.html create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/src/app.component.scss create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/src/app.component.ts create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/src/app.module.ts create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/src/environments/environment.ts create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/src/index.html create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/src/main.ts create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/src/polyfills.ts create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/src/styles.scss create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/src/typings.d.ts create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/tsconfig.app.json create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/tsconfig.json create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/tslint.json delete mode 100644 samples/charts/data-pie-chart/others/src/EnergyGlobalDemand.ts diff --git a/samples/charts/category-chart/overview/src/app.component.html b/samples/charts/category-chart/overview/src/app.component.html index 49329a19c..f220a92c4 100644 --- a/samples/charts/category-chart/overview/src/app.component.html +++ b/samples/charts/category-chart/overview/src/app.component.html @@ -1,6 +1,6 @@
- Olympic Medals By Country + Olympic Medals by Country
+
+ + +
+
diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/src/app.component.scss b/samples/charts/dashboard-tile/local-data-source-dashboard/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/src/app.component.ts b/samples/charts/dashboard-tile/local-data-source-dashboard/src/app.component.ts new file mode 100644 index 000000000..1d44d9b41 --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/src/app.component.ts @@ -0,0 +1,36 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { RetailSalesPerformanceLocalDataSource } from './RetailSalesPerformanceLocalDataSource'; +import { IgxDashboardTileComponent } from 'igniteui-angular-dashboards'; + +@Component({ + standalone: false, + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("dashboard", { static: true } ) + private dashboard: IgxDashboardTileComponent + private _retailSalesPerformanceLocalDataSource: RetailSalesPerformanceLocalDataSource = null; + public get retailSalesPerformanceLocalDataSource(): RetailSalesPerformanceLocalDataSource { + if (this._retailSalesPerformanceLocalDataSource == null) + { + this._retailSalesPerformanceLocalDataSource = new RetailSalesPerformanceLocalDataSource(); + } + return this._retailSalesPerformanceLocalDataSource; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/src/app.module.ts b/samples/charts/dashboard-tile/local-data-source-dashboard/src/app.module.ts new file mode 100644 index 000000000..fc20a0109 --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/src/app.module.ts @@ -0,0 +1,30 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDashboardTileModule, IgxDataChartDashboardTileModule, IgxGeographicMapDashboardTileModule, IgxLinearGaugeDashboardTileModule, IgxPieChartDashboardTileModule, IgxRadialGaugeDashboardTileModule } from 'igniteui-angular-dashboards'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDashboardTileModule, + IgxDataChartDashboardTileModule, + IgxGeographicMapDashboardTileModule, + IgxLinearGaugeDashboardTileModule, + IgxPieChartDashboardTileModule, + IgxRadialGaugeDashboardTileModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/src/environments/environment.prod.ts b/samples/charts/dashboard-tile/local-data-source-dashboard/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/src/environments/environment.ts b/samples/charts/dashboard-tile/local-data-source-dashboard/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/src/index.html b/samples/charts/dashboard-tile/local-data-source-dashboard/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/src/main.ts b/samples/charts/dashboard-tile/local-data-source-dashboard/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/src/polyfills.ts b/samples/charts/dashboard-tile/local-data-source-dashboard/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/src/styles.scss b/samples/charts/dashboard-tile/local-data-source-dashboard/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/src/typings.d.ts b/samples/charts/dashboard-tile/local-data-source-dashboard/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/tsconfig.app.json b/samples/charts/dashboard-tile/local-data-source-dashboard/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/tsconfig.json b/samples/charts/dashboard-tile/local-data-source-dashboard/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/tslint.json b/samples/charts/dashboard-tile/local-data-source-dashboard/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index afb2925a3..121a25b76 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -33,17 +33,17 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", "@angular/cli": "19.0.4", "@angular/compiler-cli": "19.0.4", "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.6.3" } } diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index afb2925a3..121a25b76 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -33,17 +33,17 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", "@angular/cli": "19.0.4", "@angular/compiler-cli": "19.0.4", "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", "sass.js": "0.11.1", - "ts-node": "10.9.1", "tslint": "~6.1.3", + "ts-node": "10.9.1", "typescript": "5.6.3" } } diff --git a/samples/charts/data-chart/data-annotation-band-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/data-annotation-band-layer/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-band-layer/.codesandbox/tasks.json b/samples/charts/data-chart/data-annotation-band-layer/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-band-layer/.stackblitzrc b/samples/charts/data-chart/data-annotation-band-layer/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-band-layer/angular.json b/samples/charts/data-chart/data-annotation-band-layer/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/data-annotation-band-layer/package.json b/samples/charts/data-chart/data-annotation-band-layer/package.json new file mode 100644 index 000000000..91376df51 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/package.json @@ -0,0 +1,43 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.15.0" + }, + "devDependencies": { + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.6.3" + } +} diff --git a/samples/charts/data-chart/data-annotation-band-layer/src/AnnotationBandData.ts b/samples/charts/data-chart/data-annotation-band-layer/src/AnnotationBandData.ts new file mode 100644 index 000000000..8f384f801 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/src/AnnotationBandData.ts @@ -0,0 +1,37 @@ +export class AnnotationBandDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public startLabel: string; + public endLabel: string; + public startX: number; + public startY: number; + public endX: number; + public endY: number; + public value: number; + public label: string; + +} +export class AnnotationBandData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new AnnotationBandDataItem( + { + startLabel: `Growth Start`, + endLabel: `Growth Stop`, + startX: 48, + startY: 110, + endX: 105, + endY: 335, + value: 170, + label: `Rapid Growth` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-band-layer/src/StockTesla.ts b/samples/charts/data-chart/data-annotation-band-layer/src/StockTesla.ts new file mode 100644 index 000000000..1efe6d6e4 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/src/StockTesla.ts @@ -0,0 +1,2523 @@ +export class StockTeslaItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public date: string; + public open: number; + public high: number; + public low: number; + public close: number; + public volume: number; + public change: number; + public index: number; + +} +export class StockTesla extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new StockTeslaItem( + { + date: `2019-01-10`, + open: 20.4, + high: 23, + low: 19.8, + close: 23, + volume: 779333701, + change: 12.7, + index: 0 + }), + new StockTeslaItem( + { + date: `2019-01-22`, + open: 22.8, + high: 23.5, + low: 19.7, + close: 19.9, + volume: 911781100, + change: -12.6, + index: 1 + }), + new StockTeslaItem( + { + date: `2019-01-31`, + open: 19.5, + high: 20.8, + low: 18.6, + close: 20.5, + volume: 926375717, + change: 5, + index: 2 + }), + new StockTeslaItem( + { + date: `2019-02-11`, + open: 20.4, + high: 21.6, + low: 19.9, + close: 20.9, + volume: 687520471, + change: 2.4, + index: 3 + }), + new StockTeslaItem( + { + date: `2019-02-21`, + open: 21.1, + high: 21.2, + low: 19.4, + close: 19.4, + volume: 597552272, + change: -7.9, + index: 4 + }), + new StockTeslaItem( + { + date: `2019-03-04`, + open: 19.6, + high: 21.3, + low: 18.9, + close: 19, + volume: 1218669201, + change: -3.1, + index: 5 + }), + new StockTeslaItem( + { + date: `2019-03-13`, + open: 18.8, + high: 19.5, + low: 18, + close: 19.3, + volume: 1034156904, + change: 2.5, + index: 6 + }), + new StockTeslaItem( + { + date: `2019-03-22`, + open: 19.5, + high: 19.7, + low: 17.6, + close: 17.6, + volume: 980694095, + change: -9.5, + index: 7 + }), + new StockTeslaItem( + { + date: `2019-04-02`, + open: 17.3, + high: 19.3, + low: 17, + close: 19.1, + volume: 788473494, + change: 10.1, + index: 8 + }), + new StockTeslaItem( + { + date: `2019-04-11`, + open: 19.2, + high: 19.7, + low: 17.4, + close: 17.9, + volume: 1165555442, + change: -6.6, + index: 9 + }), + new StockTeslaItem( + { + date: `2019-04-23`, + open: 18, + high: 18.3, + low: 17, + close: 17.6, + volume: 870373200, + change: -2.3, + index: 10 + }), + new StockTeslaItem( + { + date: `2019-05-02`, + open: 17.6, + high: 17.7, + low: 15.4, + close: 16.3, + volume: 1629432326, + change: -7.5, + index: 11 + }), + new StockTeslaItem( + { + date: `2019-05-13`, + open: 16.3, + high: 17.2, + low: 15, + close: 15.1, + volume: 1131045605, + change: -6.9, + index: 12 + }), + new StockTeslaItem( + { + date: `2019-05-22`, + open: 15.3, + high: 15.6, + low: 12.8, + close: 12.8, + volume: 1455503588, + change: -15.9, + index: 13 + }), + new StockTeslaItem( + { + date: `2019-06-03`, + open: 13, + high: 13.3, + low: 11.8, + close: 11.9, + volume: 1415442268, + change: -7.9, + index: 14 + }), + new StockTeslaItem( + { + date: `2019-06-12`, + open: 12.1, + high: 14.9, + low: 12, + close: 14, + volume: 1515000443, + change: 15.6, + index: 15 + }), + new StockTeslaItem( + { + date: `2019-06-21`, + open: 14, + high: 15.6, + low: 13.8, + close: 14.8, + volume: 1009123371, + change: 5.5, + index: 16 + }), + new StockTeslaItem( + { + date: `2019-07-02`, + open: 14.9, + high: 15.5, + low: 14.5, + close: 15, + volume: 766921642, + change: 0.6, + index: 17 + }), + new StockTeslaItem( + { + date: `2019-07-12`, + open: 16, + high: 16.4, + low: 15.2, + close: 16.3, + volume: 887983836, + change: 2.4, + index: 18 + }), + new StockTeslaItem( + { + date: `2019-07-23`, + open: 16.5, + high: 17.5, + low: 16.3, + close: 17.3, + volume: 788941000, + change: 4.9, + index: 19 + }), + new StockTeslaItem( + { + date: `2019-08-01`, + open: 17.3, + high: 17.7, + low: 14.8, + close: 15.6, + volume: 1175082297, + change: -9.8, + index: 20 + }), + new StockTeslaItem( + { + date: `2019-08-12`, + open: 15.4, + high: 16, + low: 15, + close: 15.3, + volume: 560129569, + change: -1, + index: 21 + }), + new StockTeslaItem( + { + date: `2019-08-21`, + open: 15.3, + high: 15.7, + low: 14.1, + close: 14.7, + volume: 677293701, + change: -3.5, + index: 22 + }), + new StockTeslaItem( + { + date: `2019-08-30`, + open: 14.9, + high: 15.5, + low: 14.1, + close: 15, + volume: 650239370, + change: 1.3, + index: 23 + }), + new StockTeslaItem( + { + date: `2019-09-11`, + open: 14.9, + high: 16.5, + low: 14.6, + close: 16.5, + volume: 636766167, + change: 10.3, + index: 24 + }), + new StockTeslaItem( + { + date: `2019-09-20`, + open: 16.5, + high: 16.9, + low: 15.9, + close: 16, + volume: 572802643, + change: -2.9, + index: 25 + }), + new StockTeslaItem( + { + date: `2019-10-01`, + open: 16, + high: 16.6, + low: 14.6, + close: 16.3, + volume: 931821239, + change: 2, + index: 26 + }), + new StockTeslaItem( + { + date: `2019-10-10`, + open: 16.2, + high: 16.6, + low: 15, + close: 16.3, + volume: 891798049, + change: 0.6, + index: 27 + }), + new StockTeslaItem( + { + date: `2019-10-21`, + open: 16.5, + high: 17.7, + low: 16.5, + close: 16.9, + volume: 713093463, + change: 2.6, + index: 28 + }), + new StockTeslaItem( + { + date: `2019-10-30`, + open: 17, + high: 22.7, + low: 16.7, + close: 21, + volume: 1752943598, + change: 23.9, + index: 29 + }), + new StockTeslaItem( + { + date: `2019-11-08`, + open: 20.9, + high: 22.8, + low: 20.6, + close: 22.5, + volume: 834957256, + change: 7.7, + index: 30 + }), + new StockTeslaItem( + { + date: `2019-11-19`, + open: 22.9, + high: 24, + low: 22.8, + close: 24, + volume: 738746390, + change: 4.5, + index: 31 + }), + new StockTeslaItem( + { + date: `2019-11-29`, + open: 24, + high: 24.1, + low: 21.8, + close: 22, + volume: 870685288, + change: -8.4, + index: 32 + }), + new StockTeslaItem( + { + date: `2019-12-10`, + open: 22, + high: 23.4, + low: 21.8, + close: 23.3, + volume: 712016613, + change: 5.9, + index: 33 + }), + new StockTeslaItem( + { + date: `2019-12-19`, + open: 23.5, + high: 27.1, + low: 23.4, + close: 26.9, + volume: 1203765433, + change: 14.8, + index: 34 + }), + new StockTeslaItem( + { + date: `2019-12-31`, + open: 27.4, + high: 29, + low: 26.7, + close: 27.9, + volume: 1195073357, + change: 2, + index: 35 + }), + new StockTeslaItem( + { + date: `2020-01-10`, + open: 28.3, + high: 33.3, + low: 28.1, + close: 31.9, + volume: 1925386078, + change: 12.6, + index: 36 + }), + new StockTeslaItem( + { + date: `2020-01-22`, + open: 32.9, + high: 39.6, + low: 32.8, + close: 38, + volume: 2364043518, + change: 15.4, + index: 37 + }), + new StockTeslaItem( + { + date: `2020-01-31`, + open: 37.6, + high: 43.5, + low: 36, + close: 43.4, + volume: 1835141382, + change: 15.3, + index: 38 + }), + new StockTeslaItem( + { + date: `2020-02-11`, + open: 44.9, + high: 64.6, + low: 44.9, + close: 51.6, + volume: 3748903126, + change: 14.9, + index: 39 + }), + new StockTeslaItem( + { + date: `2020-02-21`, + open: 51.9, + high: 63, + low: 49, + close: 60.1, + volume: 1921517039, + change: 15.8, + index: 40 + }), + new StockTeslaItem( + { + date: `2020-03-03`, + open: 55.9, + high: 57.6, + low: 40.8, + close: 49.7, + volume: 2121850940, + change: -11.1, + index: 41 + }), + new StockTeslaItem( + { + date: `2020-03-12`, + open: 50.9, + high: 51.1, + low: 36.4, + close: 37.4, + volume: 1553329923, + change: -26.6, + index: 42 + }), + new StockTeslaItem( + { + date: `2020-03-23`, + open: 39.7, + high: 40.5, + low: 23.4, + close: 29, + volume: 2487688157, + change: -27, + index: 43 + }), + new StockTeslaItem( + { + date: `2020-04-01`, + open: 31.8, + high: 37.3, + low: 31.6, + close: 32.1, + volume: 1785601357, + change: 0.9, + index: 44 + }), + new StockTeslaItem( + { + date: `2020-04-13`, + open: 32.1, + high: 43.5, + low: 29.8, + close: 43.4, + volume: 1860352620, + change: 35.3, + index: 45 + }), + new StockTeslaItem( + { + date: `2020-04-22`, + open: 46.6, + high: 51.7, + low: 44.9, + close: 48.8, + volume: 2056797321, + change: 4.7, + index: 46 + }), + new StockTeslaItem( + { + date: `2020-05-01`, + open: 48.5, + high: 58, + low: 45.5, + close: 46.8, + volume: 2093959203, + change: -3.6, + index: 47 + }), + new StockTeslaItem( + { + date: `2020-05-12`, + open: 46.7, + high: 56.2, + low: 46.5, + close: 54, + volume: 1611543246, + change: 15.5, + index: 48 + }), + new StockTeslaItem( + { + date: `2020-05-21`, + open: 54.7, + high: 55.6, + low: 50.9, + close: 55.2, + volume: 1262468113, + change: 0.8, + index: 49 + }), + new StockTeslaItem( + { + date: `2020-06-02`, + open: 54.8, + high: 60.6, + low: 52.3, + close: 58.8, + volume: 1160487993, + change: 7.2, + index: 50 + }), + new StockTeslaItem( + { + date: `2020-06-11`, + open: 59.2, + high: 68.5, + low: 57.2, + close: 64.9, + volume: 1270377400, + change: 9.5, + index: 51 + }), + new StockTeslaItem( + { + date: `2020-06-22`, + open: 65.3, + high: 67.9, + low: 60.6, + close: 66.3, + volume: 1217946366, + change: 1.5, + index: 52 + }), + new StockTeslaItem( + { + date: `2020-07-01`, + open: 66.6, + high: 75.7, + low: 62.5, + close: 74.6, + volume: 1120591270, + change: 12.1, + index: 53 + }), + new StockTeslaItem( + { + date: `2020-07-13`, + open: 81.4, + high: 119.7, + low: 79, + close: 99.8, + volume: 2244920779, + change: 22.6, + index: 54 + }), + new StockTeslaItem( + { + date: `2020-07-22`, + open: 103.7, + high: 111.7, + low: 95.4, + close: 106.2, + volume: 1662846099, + change: 2.3, + index: 55 + }), + new StockTeslaItem( + { + date: `2020-07-31`, + open: 111.9, + high: 112.6, + low: 91.1, + close: 95.4, + volume: 1573159944, + change: -14.8, + index: 56 + }), + new StockTeslaItem( + { + date: `2020-08-11`, + open: 96.6, + high: 101.8, + low: 91, + close: 91.6, + volume: 798587331, + change: -5.2, + index: 57 + }), + new StockTeslaItem( + { + date: `2020-08-20`, + open: 98, + high: 134.8, + low: 95.7, + close: 133.5, + volume: 1866534416, + change: 36.2, + index: 58 + }), + new StockTeslaItem( + { + date: `2020-08-31`, + open: 136.3, + high: 166.7, + low: 128.5, + close: 166.1, + volume: 2008507459, + change: 21.9, + index: 59 + }), + new StockTeslaItem( + { + date: `2020-09-10`, + open: 167.4, + high: 167.5, + low: 110, + close: 123.8, + volume: 1992227059, + change: -26, + index: 60 + }), + new StockTeslaItem( + { + date: `2020-09-21`, + open: 127.3, + high: 154, + low: 120.2, + close: 149.8, + volume: 1758737696, + change: 17.7, + index: 61 + }), + new StockTeslaItem( + { + date: `2020-09-30`, + open: 143.2, + high: 145.9, + low: 117.1, + close: 143, + volume: 1459893236, + change: -0.1, + index: 62 + }), + new StockTeslaItem( + { + date: `2020-10-09`, + open: 146.9, + high: 149.6, + low: 135.4, + close: 144.7, + volume: 985545158, + change: -1.5, + index: 63 + }), + new StockTeslaItem( + { + date: `2020-10-20`, + open: 147.3, + high: 155.3, + low: 139.7, + close: 140.6, + volume: 773077727, + change: -4.5, + index: 64 + }), + new StockTeslaItem( + { + date: `2020-10-29`, + open: 140.9, + high: 148.4, + low: 135.3, + close: 136.9, + volume: 615339122, + change: -2.8, + index: 65 + }), + new StockTeslaItem( + { + date: `2020-11-09`, + open: 135.6, + high: 150.8, + low: 126.4, + close: 140.4, + volume: 669171368, + change: 3.5, + index: 66 + }), + new StockTeslaItem( + { + date: `2020-11-18`, + open: 140, + high: 165.3, + low: 132, + close: 162.2, + volume: 760451265, + change: 15.8, + index: 67 + }), + new StockTeslaItem( + { + date: `2020-11-30`, + open: 164, + high: 202.6, + low: 162.5, + close: 189.2, + volume: 1046371155, + change: 15.4, + index: 68 + }), + new StockTeslaItem( + { + date: `2020-12-09`, + open: 199.2, + high: 218.1, + low: 180.4, + close: 201.5, + volume: 1055933265, + change: 1.2, + index: 69 + }), + new StockTeslaItem( + { + date: `2020-12-18`, + open: 191.5, + high: 231.7, + low: 188.8, + close: 231.7, + volume: 1593943601, + change: 21, + index: 70 + }), + new StockTeslaItem( + { + date: `2020-12-30`, + open: 222.1, + high: 232.2, + low: 204.7, + close: 231.6, + volume: 791942570, + change: 4.3, + index: 71 + }), + new StockTeslaItem( + { + date: `2021-01-11`, + open: 233.3, + high: 294.8, + low: 230.4, + close: 270.4, + volume: 1084025779, + change: 15.9, + index: 72 + }), + new StockTeslaItem( + { + date: `2021-01-21`, + open: 277, + high: 289.3, + low: 273, + close: 281.7, + volume: 663774487, + change: 1.7, + index: 73 + }), + new StockTeslaItem( + { + date: `2021-02-01`, + open: 278.1, + high: 300.1, + low: 260, + close: 279.9, + volume: 595397009, + change: 0.7, + index: 74 + }), + new StockTeslaItem( + { + date: `2021-02-10`, + open: 281.6, + high: 293.5, + low: 266.7, + close: 268.3, + volume: 445813486, + change: -4.7, + index: 75 + }), + new StockTeslaItem( + { + date: `2021-02-22`, + open: 270.8, + high: 276.6, + low: 236.7, + close: 238.2, + volume: 496372009, + change: -12.1, + index: 76 + }), + new StockTeslaItem( + { + date: `2021-03-03`, + open: 220.7, + high: 290.7, + low: 206.3, + close: 217.7, + volume: 793689739, + change: -1.3, + index: 77 + }), + new StockTeslaItem( + { + date: `2021-03-12`, + open: 218.6, + high: 291.3, + low: 179.8, + close: 231.2, + volume: 1215209162, + change: 5.8, + index: 78 + }), + new StockTeslaItem( + { + date: `2021-03-23`, + open: 231.4, + high: 237.7, + low: 208.2, + close: 220.7, + volume: 744776145, + change: -4.6, + index: 79 + }), + new StockTeslaItem( + { + date: `2021-04-01`, + open: 222.6, + high: 230.8, + low: 197, + close: 220.6, + volume: 730733684, + change: -0.9, + index: 80 + }), + new StockTeslaItem( + { + date: `2021-04-13`, + open: 235.9, + high: 254.3, + low: 222.6, + close: 254.1, + volume: 646721884, + change: 7.7, + index: 81 + }), + new StockTeslaItem( + { + date: `2021-04-22`, + open: 256.9, + high: 260.3, + low: 230.6, + close: 239.9, + volume: 740840774, + change: -6.6, + index: 82 + }), + new StockTeslaItem( + { + date: `2021-05-03`, + open: 239.9, + high: 249.8, + low: 222, + close: 228.3, + volume: 623423313, + change: -4.8, + index: 83 + }), + new StockTeslaItem( + { + date: `2021-05-12`, + open: 226.3, + high: 230, + low: 195.6, + close: 196.6, + volume: 643844974, + change: -13.1, + index: 84 + }), + new StockTeslaItem( + { + date: `2021-05-21`, + open: 200.5, + high: 202.2, + low: 182.3, + close: 193.6, + volume: 729192883, + change: -3.4, + index: 85 + }), + new StockTeslaItem( + { + date: `2021-06-02`, + open: 193.9, + high: 211.9, + low: 191.2, + close: 201.7, + volume: 545095944, + change: 4, + index: 86 + }), + new StockTeslaItem( + { + date: `2021-06-11`, + open: 200.6, + high: 207.7, + low: 190.4, + close: 203.3, + volume: 478366128, + change: 1.3, + index: 87 + }), + new StockTeslaItem( + { + date: `2021-06-22`, + open: 204.1, + high: 210.5, + low: 197.8, + close: 207.9, + volume: 454698495, + change: 1.9, + index: 88 + }), + new StockTeslaItem( + { + date: `2021-07-01`, + open: 210.7, + high: 232.5, + low: 210, + close: 226, + volume: 558441596, + change: 7.3, + index: 89 + }), + new StockTeslaItem( + { + date: `2021-07-13`, + open: 226.3, + high: 233.3, + low: 206.8, + close: 222.8, + volume: 470942387, + change: -1.5, + index: 90 + }), + new StockTeslaItem( + { + date: `2021-07-22`, + open: 223.6, + high: 226.2, + low: 207.1, + close: 216.4, + volume: 372195097, + change: -3.2, + index: 91 + }), + new StockTeslaItem( + { + date: `2021-08-02`, + open: 215.5, + high: 242.3, + low: 209.1, + close: 236.6, + volume: 547284685, + change: 9.8, + index: 92 + }), + new StockTeslaItem( + { + date: `2021-08-11`, + open: 239.7, + high: 241.6, + low: 232.5, + close: 235.9, + volume: 315341455, + change: -1.6, + index: 93 + }), + new StockTeslaItem( + { + date: `2021-08-20`, + open: 235.4, + high: 243.3, + low: 216.3, + close: 226.8, + volume: 392227478, + change: -3.7, + index: 94 + }), + new StockTeslaItem( + { + date: `2021-08-31`, + open: 228.5, + high: 246.8, + low: 226.9, + close: 245.2, + volume: 337503634, + change: 7.3, + index: 95 + }), + new StockTeslaItem( + { + date: `2021-09-10`, + open: 244.7, + high: 254.8, + low: 241.4, + close: 245.4, + volume: 328100734, + change: 0.3, + index: 96 + }), + new StockTeslaItem( + { + date: `2021-09-21`, + open: 246.7, + high: 253.7, + low: 236.3, + close: 246.5, + volume: 420153012, + change: -0.1, + index: 97 + }), + new StockTeslaItem( + { + date: `2021-09-30`, + open: 247.8, + high: 266.3, + low: 246.4, + close: 258.5, + volume: 422393262, + change: 4.3, + index: 98 + }), + new StockTeslaItem( + { + date: `2021-10-11`, + open: 259.5, + high: 269, + low: 254.5, + close: 264, + volume: 392144589, + change: 1.7, + index: 99 + }), + new StockTeslaItem( + { + date: `2021-10-20`, + open: 267, + high: 292.6, + low: 265.5, + close: 288.6, + volume: 368796877, + change: 8.1, + index: 100 + }), + new StockTeslaItem( + { + date: `2021-10-29`, + open: 285.3, + high: 371.7, + low: 285.2, + close: 371.3, + volume: 825862313, + change: 30.1, + index: 101 + }), + new StockTeslaItem( + { + date: `2021-11-09`, + open: 381.7, + high: 414.5, + low: 337.2, + close: 341.2, + volume: 818978542, + change: -10.6, + index: 102 + }), + new StockTeslaItem( + { + date: `2021-11-18`, + open: 336.8, + high: 373.2, + low: 326.2, + close: 365.5, + volume: 613304311, + change: 8.5, + index: 103 + }), + new StockTeslaItem( + { + date: `2021-11-30`, + open: 366.3, + high: 400.6, + low: 354, + close: 381.6, + volume: 515052382, + change: 4.2, + index: 104 + }), + new StockTeslaItem( + { + date: `2021-12-09`, + open: 386.9, + high: 390.9, + low: 316.8, + close: 334.6, + volume: 473333567, + change: -13.5, + index: 105 + }), + new StockTeslaItem( + { + date: `2021-12-20`, + open: 336.2, + high: 340.3, + low: 297.8, + close: 300, + volume: 524367113, + change: -10.8, + index: 106 + }), + new StockTeslaItem( + { + date: `2021-12-30`, + open: 305.6, + high: 373, + low: 295.4, + close: 356.8, + volume: 492530059, + change: 16.7, + index: 107 + }), + new StockTeslaItem( + { + date: `2022-01-10`, + open: 357.8, + high: 402.7, + low: 326.7, + close: 352.7, + volume: 592103938, + change: -1.4, + index: 108 + }), + new StockTeslaItem( + { + date: `2022-01-20`, + open: 351.2, + high: 371.9, + low: 331.3, + close: 332.1, + volume: 532857144, + change: -5.4, + index: 109 + }), + new StockTeslaItem( + { + date: `2022-01-31`, + open: 332.1, + high: 334.8, + low: 264, + close: 312.2, + volume: 833589022, + change: -6, + index: 110 + }), + new StockTeslaItem( + { + date: `2022-02-09`, + open: 311.7, + high: 315.9, + low: 293.5, + close: 310.7, + volume: 456395505, + change: -0.3, + index: 111 + }), + new StockTeslaItem( + { + date: `2022-02-18`, + open: 302.8, + high: 314.6, + low: 279.2, + close: 285.7, + volume: 446153356, + change: -5.7, + index: 112 + }), + new StockTeslaItem( + { + date: `2022-03-02`, + open: 278, + high: 296.6, + low: 233.3, + close: 293.3, + volume: 638352514, + change: 5.5, + index: 113 + }), + new StockTeslaItem( + { + date: `2022-03-11`, + open: 292.9, + high: 295.5, + low: 260.7, + close: 265.1, + volume: 466566467, + change: -9.5, + index: 114 + }), + new StockTeslaItem( + { + date: `2022-03-22`, + open: 260.2, + high: 332.6, + low: 252, + close: 331.3, + volume: 576869668, + change: 27.3, + index: 115 + }), + new StockTeslaItem( + { + date: `2022-03-31`, + open: 326.6, + high: 371.6, + low: 325.5, + close: 359.2, + volume: 536607263, + change: 10, + index: 116 + }), + new StockTeslaItem( + { + date: `2022-04-11`, + open: 360.4, + high: 384.3, + low: 324.9, + close: 325.3, + volume: 499682510, + change: -9.7, + index: 117 + }), + new StockTeslaItem( + { + date: `2022-04-21`, + open: 332.5, + high: 364.1, + low: 324.4, + close: 336.3, + volume: 457210487, + change: 1.1, + index: 118 + }), + new StockTeslaItem( + { + date: `2022-05-02`, + open: 338.3, + high: 345, + low: 273.9, + close: 301, + volume: 639990965, + change: -11, + index: 119 + }), + new StockTeslaItem( + { + date: `2022-05-11`, + open: 301.1, + high: 318.5, + low: 242.4, + close: 244.7, + volume: 583211967, + change: -18.7, + index: 120 + }), + new StockTeslaItem( + { + date: `2022-05-20`, + open: 233.7, + high: 262.4, + low: 211, + close: 221.3, + volume: 721880082, + change: -5.3, + index: 121 + }), + new StockTeslaItem( + { + date: `2022-06-01`, + open: 218.3, + high: 259.6, + low: 206.9, + close: 246.8, + volume: 644596235, + change: 13, + index: 122 + }), + new StockTeslaItem( + { + date: `2022-06-10`, + open: 244.2, + high: 264.2, + low: 227.9, + close: 232.2, + volume: 633672873, + change: -4.9, + index: 123 + }), + new StockTeslaItem( + { + date: `2022-06-22`, + open: 223.2, + high: 246.8, + low: 208.7, + close: 236.1, + volume: 744240764, + change: 5.8, + index: 124 + }), + new StockTeslaItem( + { + date: `2022-07-01`, + open: 237.9, + high: 252.1, + low: 218.9, + close: 227.3, + volume: 631776422, + change: -4.5, + index: 125 + }), + new StockTeslaItem( + { + date: `2022-07-13`, + open: 223, + high: 255, + low: 216.2, + close: 237, + volume: 625812242, + change: 6.3, + index: 126 + }), + new StockTeslaItem( + { + date: `2022-07-22`, + open: 234.9, + high: 280.8, + low: 229.3, + close: 272.2, + volume: 646037224, + change: 15.9, + index: 127 + }), + new StockTeslaItem( + { + date: `2022-08-02`, + open: 272.2, + high: 311.9, + low: 256.3, + close: 300.6, + volume: 611660612, + change: 10.4, + index: 128 + }), + new StockTeslaItem( + { + date: `2022-08-11`, + open: 305, + high: 313.6, + low: 279.4, + close: 286.6, + volume: 616204291, + change: -6, + index: 129 + }), + new StockTeslaItem( + { + date: `2022-08-22`, + open: 289.4, + high: 314.7, + low: 285, + close: 289.9, + volume: 490658060, + change: 0.2, + index: 130 + }), + new StockTeslaItem( + { + date: `2022-08-31`, + open: 291.5, + high: 303.6, + low: 271.8, + close: 275.6, + volume: 376152572, + change: -5.4, + index: 131 + }), + new StockTeslaItem( + { + date: `2022-09-12`, + open: 272.6, + high: 305.5, + low: 265.7, + close: 304.4, + volume: 367924580, + change: 11.7, + index: 132 + }), + new StockTeslaItem( + { + date: `2022-09-21`, + open: 292.9, + high: 313.8, + low: 290.4, + close: 300.8, + volume: 477171180, + change: 2.7, + index: 133 + }), + new StockTeslaItem( + { + date: `2022-09-30`, + open: 299.9, + high: 301.3, + low: 262.5, + close: 265.2, + volume: 454307920, + change: -11.5, + index: 134 + }), + new StockTeslaItem( + { + date: `2022-10-11`, + open: 254.5, + high: 257.5, + low: 215, + close: 216.5, + volume: 593078170, + change: -14.9, + index: 135 + }), + new StockTeslaItem( + { + date: `2022-10-20`, + open: 215.3, + high: 229.8, + low: 202, + close: 207.3, + volume: 592158560, + change: -3.7, + index: 136 + }), + new StockTeslaItem( + { + date: `2022-10-31`, + open: 206.4, + high: 233.8, + low: 198.6, + close: 227.5, + volume: 550341050, + change: 10.2, + index: 137 + }), + new StockTeslaItem( + { + date: `2022-11-09`, + open: 234, + high: 237.4, + low: 177.1, + close: 177.6, + volume: 630702790, + change: -24.1, + index: 138 + }), + new StockTeslaItem( + { + date: `2022-11-18`, + open: 189.9, + high: 200.8, + low: 176.6, + close: 180.2, + volume: 637579480, + change: -5.1, + index: 139 + }), + new StockTeslaItem( + { + date: `2022-11-30`, + open: 175.8, + high: 194.8, + low: 166.2, + close: 194.7, + volume: 617126140, + change: 10.7, + index: 140 + }), + new StockTeslaItem( + { + date: `2022-12-09`, + open: 197.1, + high: 198.9, + low: 169.1, + close: 179, + volume: 625675690, + change: -9.1, + index: 141 + }), + new StockTeslaItem( + { + date: `2022-12-20`, + open: 176.1, + high: 177.4, + low: 137.7, + close: 137.8, + volume: 986660100, + change: -21.7, + index: 142 + }), + new StockTeslaItem( + { + date: `2022-12-30`, + open: 139.3, + high: 141.3, + low: 108.2, + close: 123.2, + volume: 1331911900, + change: -11.6, + index: 143 + }), + new StockTeslaItem( + { + date: `2023-01-11`, + open: 118.5, + high: 126, + low: 101.8, + close: 123.2, + volume: 1332426500, + change: 4, + index: 144 + }), + new StockTeslaItem( + { + date: `2023-01-23`, + open: 122.6, + high: 145.4, + low: 115.6, + close: 143.8, + volume: 1244541500, + change: 17.3, + index: 145 + }), + new StockTeslaItem( + { + date: `2023-02-01`, + open: 143, + high: 183.8, + low: 138.1, + close: 181.4, + volume: 1534337700, + change: 26.9, + index: 146 + }), + new StockTeslaItem( + { + date: `2023-02-10`, + open: 187.3, + high: 214, + low: 182.6, + close: 196.9, + volume: 1423167800, + change: 5.1, + index: 147 + }), + new StockTeslaItem( + { + date: `2023-02-22`, + open: 194.4, + high: 217.6, + low: 187.6, + close: 200.9, + volume: 1386211900, + change: 3.3, + index: 148 + }), + new StockTeslaItem( + { + date: `2023-03-03`, + open: 203.9, + high: 211.2, + low: 186, + close: 197.8, + volume: 1095786600, + change: -3, + index: 149 + }), + new StockTeslaItem( + { + date: `2023-03-14`, + open: 198.5, + high: 198.6, + low: 163.9, + close: 183.3, + volume: 1101144600, + change: -7.7, + index: 150 + }), + new StockTeslaItem( + { + date: `2023-03-23`, + open: 180.8, + high: 200.7, + low: 176, + close: 192.2, + volume: 978213300, + change: 6.3, + index: 151 + }), + new StockTeslaItem( + { + date: `2023-04-03`, + open: 191.6, + high: 207.8, + low: 185.4, + close: 194.8, + volume: 909718040, + change: 1.6, + index: 152 + }), + new StockTeslaItem( + { + date: `2023-04-13`, + open: 197.3, + high: 198.7, + low: 176.1, + close: 185.9, + volume: 905319000, + change: -5.8, + index: 153 + }), + new StockTeslaItem( + { + date: `2023-04-24`, + open: 184, + high: 189.7, + low: 158.6, + close: 162.6, + volume: 905416980, + change: -11.6, + index: 154 + }), + new StockTeslaItem( + { + date: `2023-05-03`, + open: 159.8, + high: 165.5, + low: 152.4, + close: 160.6, + volume: 881897100, + change: 0.5, + index: 155 + }), + new StockTeslaItem( + { + date: `2023-05-12`, + open: 162.7, + high: 177.4, + low: 159.6, + close: 168, + volume: 785510430, + change: 3.2, + index: 156 + }), + new StockTeslaItem( + { + date: `2023-05-23`, + open: 167.7, + high: 193, + low: 164.4, + close: 185.8, + volume: 864025390, + change: 10.8, + index: 157 + }), + new StockTeslaItem( + { + date: `2023-06-02`, + open: 182.2, + high: 217.2, + low: 178.2, + close: 214, + volume: 988496020, + change: 17.4, + index: 158 + }), + new StockTeslaItem( + { + date: `2023-06-13`, + open: 217.8, + high: 259.7, + low: 212.5, + close: 258.7, + volume: 1161622400, + change: 18.8, + index: 159 + }), + new StockTeslaItem( + { + date: `2023-06-23`, + open: 260.2, + high: 277, + low: 247.3, + close: 256.6, + volume: 1220407300, + change: -1.4, + index: 160 + }), + new StockTeslaItem( + { + date: `2023-07-05`, + open: 250.1, + high: 284.2, + low: 240.7, + close: 282.5, + volume: 999163700, + change: 13, + index: 161 + }), + new StockTeslaItem( + { + date: `2023-07-14`, + open: 278.1, + high: 285.3, + low: 265.1, + close: 281.4, + volume: 774400400, + change: 1.2, + index: 162 + }), + new StockTeslaItem( + { + date: `2023-07-25`, + open: 286.6, + high: 299.3, + low: 254.1, + close: 265.3, + volume: 973076400, + change: -7.4, + index: 163 + }), + new StockTeslaItem( + { + date: `2023-08-03`, + open: 263.2, + high: 269.1, + low: 250.5, + close: 259.3, + volume: 678809820, + change: -1.5, + index: 164 + }), + new StockTeslaItem( + { + date: `2023-08-14`, + open: 261, + high: 264.8, + low: 233.8, + close: 239.8, + volume: 716008860, + change: -8.1, + index: 165 + }), + new StockTeslaItem( + { + date: `2023-08-23`, + open: 238.7, + high: 240.8, + low: 212.4, + close: 236.9, + volume: 825055300, + change: -0.8, + index: 166 + }), + new StockTeslaItem( + { + date: `2023-09-01`, + open: 238.7, + high: 261.2, + low: 228.2, + close: 245, + volume: 811502630, + change: 2.7, + index: 167 + }), + new StockTeslaItem( + { + date: `2023-09-13`, + open: 245, + high: 278.4, + low: 243.3, + close: 271.3, + volume: 902643400, + change: 10.7, + index: 168 + }), + new StockTeslaItem( + { + date: `2023-09-22`, + open: 271.3, + high: 279, + low: 244.5, + close: 244.9, + volume: 816639600, + change: -9.7, + index: 169 + }), + new StockTeslaItem( + { + date: `2023-10-03`, + open: 243.4, + high: 254.8, + low: 234.6, + close: 246.5, + volume: 814604700, + change: 1.3, + index: 170 + }), + new StockTeslaItem( + { + date: `2023-10-12`, + open: 248.1, + high: 268.9, + low: 247.6, + close: 258.9, + volume: 806250900, + change: 4.3, + index: 171 + }), + new StockTeslaItem( + { + date: `2023-10-23`, + open: 258.9, + high: 259.6, + low: 202.5, + close: 212.1, + volume: 869390890, + change: -18.1, + index: 172 + }), + new StockTeslaItem( + { + date: `2023-11-01`, + open: 216.5, + high: 222, + low: 194.1, + close: 205.7, + volume: 811468170, + change: -5, + index: 173 + }), + new StockTeslaItem( + { + date: `2023-11-10`, + open: 213, + high: 226.4, + low: 205.7, + close: 214.6, + volume: 859763700, + change: 0.8, + index: 174 + }), + new StockTeslaItem( + { + date: `2023-11-21`, + open: 215.6, + high: 246.7, + low: 211.6, + close: 241.2, + volume: 959006600, + change: 11.9, + index: 175 + }), + new StockTeslaItem( + { + date: `2023-12-01`, + open: 242, + high: 252.8, + low: 231.4, + close: 238.8, + volume: 832910200, + change: -1.3, + index: 176 + }), + new StockTeslaItem( + { + date: `2023-12-12`, + open: 235.8, + high: 246.7, + low: 233.3, + close: 237, + volume: 772018400, + change: 0.5, + index: 177 + }), + new StockTeslaItem( + { + date: `2023-12-21`, + open: 234.2, + high: 259.8, + low: 228.2, + close: 254.5, + volume: 900893400, + change: 8.7, + index: 178 + }), + new StockTeslaItem( + { + date: `2024-01-03`, + open: 256.8, + high: 265.1, + low: 236.3, + close: 238.4, + volume: 727005170, + change: -7.1, + index: 179 + }), + new StockTeslaItem( + { + date: `2024-01-12`, + open: 239.2, + high: 242.7, + low: 217.2, + close: 218.9, + volume: 697536380, + change: -8.5, + index: 180 + }), + new StockTeslaItem( + { + date: `2024-01-24`, + open: 215.1, + high: 223.5, + low: 206.3, + close: 207.8, + volume: 777303400, + change: -3.4, + index: 181 + }), + new StockTeslaItem( + { + date: `2024-02-02`, + open: 189.7, + high: 196.4, + low: 180.1, + close: 187.9, + volume: 846092780, + change: -0.9, + index: 182 + }), + new StockTeslaItem( + { + date: `2024-02-13`, + open: 184.3, + high: 194.7, + low: 175, + close: 184, + volume: 718274070, + change: -0.1, + index: 183 + }), + new StockTeslaItem( + { + date: `2024-02-23`, + open: 185.3, + high: 203.2, + low: 183.4, + close: 192, + volume: 693352670, + change: 3.6, + index: 184 + }), + new StockTeslaItem( + { + date: `2024-03-05`, + open: 192.3, + high: 205.6, + low: 177.6, + close: 180.7, + volume: 742344460, + change: -6, + index: 185 + }), + new StockTeslaItem( + { + date: `2024-03-14`, + open: 180, + high: 182.9, + low: 160.5, + close: 162.5, + volume: 701227950, + change: -9.7, + index: 186 + }), + new StockTeslaItem( + { + date: `2024-03-25`, + open: 163.2, + high: 178.2, + low: 160.8, + close: 172.6, + volume: 589466660, + change: 5.8, + index: 187 + }), + new StockTeslaItem( + { + date: `2024-04-04`, + open: 178.6, + high: 184.2, + low: 163.3, + close: 171.1, + volume: 676969950, + change: -4.2, + index: 188 + }), + new StockTeslaItem( + { + date: `2024-04-15`, + open: 169.1, + high: 179.2, + low: 160.5, + close: 161.5, + volume: 694829970, + change: -4.5, + index: 189 + }), + new StockTeslaItem( + { + date: `2024-04-24`, + open: 156.7, + high: 168, + low: 138.8, + close: 162.1, + volume: 775433710, + change: 3.4, + index: 190 + }), + new StockTeslaItem( + { + date: `2024-05-03`, + open: 159, + high: 198.9, + low: 158.4, + close: 181.2, + volume: 864614000, + change: 14, + index: 191 + }), + new StockTeslaItem( + { + date: `2024-05-14`, + open: 183.8, + high: 187.6, + low: 167.8, + close: 177.6, + volume: 531409380, + change: -3.4, + index: 192 + }), + new StockTeslaItem( + { + date: `2024-05-23`, + open: 179.9, + high: 186.9, + low: 171.4, + close: 173.7, + volume: 554203970, + change: -3.4, + index: 193 + }), + new StockTeslaItem( + { + date: `2024-06-04`, + open: 174.8, + high: 182.7, + low: 173.2, + close: 174.8, + volume: 453828370, + change: 0, + index: 194 + }), + new StockTeslaItem( + { + date: `2024-06-13`, + open: 175.4, + high: 191.1, + low: 167.4, + close: 182.5, + volume: 509090870, + change: 4.1, + index: 195 + }), + new StockTeslaItem( + { + date: `2024-06-25`, + open: 185.8, + high: 188.8, + low: 176.9, + close: 187.4, + volume: 505399520, + change: 0.8, + index: 196 + }), + new StockTeslaItem( + { + date: `2024-07-05`, + open: 186.5, + high: 252.4, + low: 186.4, + close: 251.5, + volume: 925723660, + change: 34.8, + index: 197 + }), + new StockTeslaItem( + { + date: `2024-07-16`, + open: 247.7, + high: 271, + low: 233.1, + close: 256.6, + volume: 1097390000, + change: 3.6, + index: 198 + }), + new StockTeslaItem( + { + date: `2024-07-25`, + open: 252.7, + high: 258.5, + low: 214.7, + close: 220.2, + volume: 795590700, + change: -12.9, + index: 199 + }), + new StockTeslaItem( + { + date: `2024-08-05`, + open: 221.2, + high: 234.7, + low: 182, + close: 198.9, + volume: 658914080, + change: -10.1, + index: 200 + }), + new StockTeslaItem( + { + date: `2024-08-14`, + open: 200.8, + high: 208.5, + low: 191.5, + close: 201.4, + volume: 479168160, + change: 0.3, + index: 201 + }), + new StockTeslaItem( + { + date: `2024-08-23`, + open: 205, + high: 228.2, + low: 204.8, + close: 220.3, + volume: 560235700, + change: 7.5, + index: 202 + }), + new StockTeslaItem( + { + date: `2024-09-04`, + open: 218.8, + high: 222.2, + low: 202.6, + close: 219.4, + volume: 469284350, + change: 0.3, + index: 203 + }), + new StockTeslaItem( + { + date: `2024-09-13`, + open: 223.5, + high: 235, + low: 210.5, + close: 230.3, + volume: 592950440, + change: 3, + index: 204 + }), + new StockTeslaItem( + { + date: `2024-09-24`, + open: 229.3, + high: 257.2, + low: 223.5, + close: 254.3, + volume: 577086700, + change: 10.9, + index: 205 + }), + new StockTeslaItem( + { + date: `2024-10-03`, + open: 252.5, + high: 264.9, + low: 237.8, + close: 240.7, + volume: 546148740, + change: -4.7, + index: 206 + }), + new StockTeslaItem( + { + date: `2024-10-14`, + open: 246.7, + high: 251, + low: 213.7, + close: 219.2, + volume: 589440130, + change: -11.2, + index: 207 + }), + new StockTeslaItem( + { + date: `2024-10-23`, + open: 220, + high: 224.3, + low: 212.1, + close: 213.6, + volume: 384561880, + change: -2.9, + index: 208 + }), + new StockTeslaItem( + { + date: `2024-11-01`, + open: 244.7, + high: 273.5, + low: 242.6, + close: 249, + volume: 732392780, + change: 1.8, + index: 209 + }), + new StockTeslaItem( + { + date: `2024-11-12`, + open: 244.6, + high: 358.6, + low: 238.9, + close: 328.5, + volume: 991653160, + change: 34.3, + index: 210 + }), + new StockTeslaItem( + { + date: `2024-11-21`, + open: 335.8, + high: 348.5, + low: 309.2, + close: 339.6, + volume: 700324320, + change: 1.1, + index: 211 + }), + new StockTeslaItem( + { + date: `2024-12-03`, + open: 341.1, + high: 361.9, + low: 326.6, + close: 351.4, + volume: 478645220, + change: 3, + index: 212 + }), + new StockTeslaItem( + { + date: `2024-12-12`, + open: 353, + high: 429.3, + low: 348.6, + close: 418.1, + volume: 599082110, + change: 18.4, + index: 213 + }), + new StockTeslaItem( + { + date: `2024-12-23`, + open: 420, + high: 481.5, + low: 415.4, + close: 430.6, + volume: 807128120, + change: 2.5, + index: 214 + }), + new StockTeslaItem( + { + date: `2025-01-03`, + open: 435.9, + high: 465.3, + low: 373, + close: 410.4, + volume: 565769940, + change: -5.8, + index: 215 + }), + new StockTeslaItem( + { + date: `2025-01-15`, + open: 423.2, + high: 429.8, + low: 377.3, + close: 428.2, + volume: 530063170, + change: 1.2, + index: 216 + }), + new StockTeslaItem( + { + date: `2025-01-27`, + open: 423.5, + high: 439.7, + low: 389, + close: 397.2, + volume: 476854060, + change: -6.2, + index: 217 + }), + new StockTeslaItem( + { + date: `2025-02-05`, + open: 396.9, + high: 420, + low: 374.4, + close: 378.2, + volume: 507024510, + change: -4.7, + index: 218 + }), + new StockTeslaItem( + { + date: `2025-02-14`, + open: 373, + high: 380.6, + low: 325.1, + close: 355.8, + volume: 607376290, + change: -4.6, + index: 219 + }), + new StockTeslaItem( + { + date: `2025-02-26`, + open: 355, + high: 367.3, + low: 288, + close: 290.8, + volume: 549149490, + change: -18.1, + index: 220 + }), + new StockTeslaItem( + { + date: `2025-03-07`, + open: 291.2, + high: 303.9, + low: 250.7, + close: 262.7, + volume: 754567280, + change: -9.8, + index: 221 + }), + new StockTeslaItem( + { + date: `2025-03-18`, + open: 252.5, + high: 253.4, + low: 217, + close: 225.3, + volume: 944623000, + change: -10.8, + index: 222 + }), + new StockTeslaItem( + { + date: `2025-03-27`, + open: 231.6, + high: 291.8, + low: 229.2, + close: 273.1, + volume: 982018670, + change: 17.9, + index: 223 + }), + new StockTeslaItem( + { + date: `2025-04-07`, + open: 275.6, + high: 285, + low: 214.2, + close: 233.3, + volume: 1117950500, + change: -15.3, + index: 224 + }), + new StockTeslaItem( + { + date: `2025-04-16`, + open: 245, + high: 274.7, + low: 217.8, + close: 241.6, + volume: 993815820, + change: -1.4, + index: 225 + }), + new StockTeslaItem( + { + date: `2025-04-28`, + open: 243.5, + high: 294.9, + low: 222.8, + close: 285.9, + volume: 866169890, + change: 17.4, + index: 226 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-band-layer/src/app.component.html b/samples/charts/data-chart/data-annotation-band-layer/src/app.component.html new file mode 100644 index 000000000..504124097 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/src/app.component.html @@ -0,0 +1,117 @@ +
+
+ + + + + + + + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/data-annotation-band-layer/src/app.component.scss b/samples/charts/data-chart/data-annotation-band-layer/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-annotation-band-layer/src/app.component.ts b/samples/charts/data-chart/data-annotation-band-layer/src/app.component.ts new file mode 100644 index 000000000..11c16ce6f --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/src/app.component.ts @@ -0,0 +1,60 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { StockTeslaItem, StockTesla } from './StockTesla'; +import { AnnotationBandDataItem, AnnotationBandData } from './AnnotationBandData'; +import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxFinancialPriceSeriesComponent, IgxDataToolTipLayerComponent, IgxDataAnnotationBandLayerComponent } from 'igniteui-angular-charts'; + +@Component({ + standalone: false, + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxisBottom", { static: true } ) + private xAxisBottom: IgxCategoryXAxisComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxisLeft", { static: true } ) + private yAxisLeft: IgxNumericYAxisComponent + @ViewChild("yAxisRight", { static: true } ) + private yAxisRight: IgxNumericYAxisComponent + @ViewChild("series1", { static: true } ) + private series1: IgxFinancialPriceSeriesComponent + @ViewChild("tooltip", { static: true } ) + private tooltip: IgxDataToolTipLayerComponent + @ViewChild("bandLayer", { static: true } ) + private bandLayer: IgxDataAnnotationBandLayerComponent + private _stockTesla: StockTesla = null; + public get stockTesla(): StockTesla { + if (this._stockTesla == null) + { + this._stockTesla = new StockTesla(); + } + return this._stockTesla; + } + + private _annotationBandData: AnnotationBandData = null; + public get annotationBandData(): AnnotationBandData { + if (this._annotationBandData == null) + { + this._annotationBandData = new AnnotationBandData(); + } + return this._annotationBandData; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/data-annotation-band-layer/src/app.module.ts b/samples/charts/data-chart/data-annotation-band-layer/src/app.module.ts new file mode 100644 index 000000000..f5f22bb6f --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/src/app.module.ts @@ -0,0 +1,35 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartCategoryCoreModule, IgxDataChartFinancialCoreModule, IgxDataChartFinancialModule, IgxDataChartFinancialOverlaysModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule, IgxDataAnnotationBandLayerModule, IgxNumberAbbreviatorModule, IgxAnnotationLayerProxyModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartCategoryCoreModule, + IgxDataChartFinancialCoreModule, + IgxDataChartFinancialModule, + IgxDataChartFinancialOverlaysModule, + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule, + IgxDataAnnotationBandLayerModule, + IgxNumberAbbreviatorModule, + IgxAnnotationLayerProxyModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/data-annotation-band-layer/src/environments/environment.prod.ts b/samples/charts/data-chart/data-annotation-band-layer/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/data-annotation-band-layer/src/environments/environment.ts b/samples/charts/data-chart/data-annotation-band-layer/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/data-annotation-band-layer/src/index.html b/samples/charts/data-chart/data-annotation-band-layer/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/data-annotation-band-layer/src/main.ts b/samples/charts/data-chart/data-annotation-band-layer/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/data-annotation-band-layer/src/polyfills.ts b/samples/charts/data-chart/data-annotation-band-layer/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/data-annotation-band-layer/src/styles.scss b/samples/charts/data-chart/data-annotation-band-layer/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/data-annotation-band-layer/src/typings.d.ts b/samples/charts/data-chart/data-annotation-band-layer/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/data-annotation-band-layer/tsconfig.app.json b/samples/charts/data-chart/data-annotation-band-layer/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/data-annotation-band-layer/tsconfig.json b/samples/charts/data-chart/data-annotation-band-layer/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-band-layer/tslint.json b/samples/charts/data-chart/data-annotation-band-layer/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/data-annotation-line-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/data-annotation-line-layer/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-line-layer/.codesandbox/tasks.json b/samples/charts/data-chart/data-annotation-line-layer/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-line-layer/.stackblitzrc b/samples/charts/data-chart/data-annotation-line-layer/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-line-layer/angular.json b/samples/charts/data-chart/data-annotation-line-layer/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/data-annotation-line-layer/package.json b/samples/charts/data-chart/data-annotation-line-layer/package.json new file mode 100644 index 000000000..91376df51 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/package.json @@ -0,0 +1,43 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.15.0" + }, + "devDependencies": { + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.6.3" + } +} diff --git a/samples/charts/data-chart/data-annotation-line-layer/src/AnnotationLineData1.ts b/samples/charts/data-chart/data-annotation-line-layer/src/AnnotationLineData1.ts new file mode 100644 index 000000000..e886d46bb --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/src/AnnotationLineData1.ts @@ -0,0 +1,39 @@ +export class AnnotationLineData1Item { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public startX: number; + public startY: number; + public endX: number; + public endY: number; + public label: string; + +} +export class AnnotationLineData1 extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new AnnotationLineData1Item( + { + startX: 190, + startY: 138, + endX: 230, + endY: 138, + label: `52-Week Low` + }), + new AnnotationLineData1Item( + { + startX: 190, + startY: 481, + endX: 230, + endY: 481, + label: `52-Week High` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-line-layer/src/AnnotationLineData2.ts b/samples/charts/data-chart/data-annotation-line-layer/src/AnnotationLineData2.ts new file mode 100644 index 000000000..688a44c90 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/src/AnnotationLineData2.ts @@ -0,0 +1,41 @@ +export class AnnotationLineData2Item { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public startX: number; + public startY: number; + public endX: number; + public endY: number; + public label: string; + +} +export class AnnotationLineData2 extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new AnnotationLineData2Item( + { + startX: 48, + startY: 25, + endX: 105, + endY: 250, + label: `Growth & +Support` + }), + new AnnotationLineData2Item( + { + startX: 108, + startY: 440, + endX: 155, + endY: 210, + label: `Decline & +Resistance` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-line-layer/src/StockTesla.ts b/samples/charts/data-chart/data-annotation-line-layer/src/StockTesla.ts new file mode 100644 index 000000000..1efe6d6e4 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/src/StockTesla.ts @@ -0,0 +1,2523 @@ +export class StockTeslaItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public date: string; + public open: number; + public high: number; + public low: number; + public close: number; + public volume: number; + public change: number; + public index: number; + +} +export class StockTesla extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new StockTeslaItem( + { + date: `2019-01-10`, + open: 20.4, + high: 23, + low: 19.8, + close: 23, + volume: 779333701, + change: 12.7, + index: 0 + }), + new StockTeslaItem( + { + date: `2019-01-22`, + open: 22.8, + high: 23.5, + low: 19.7, + close: 19.9, + volume: 911781100, + change: -12.6, + index: 1 + }), + new StockTeslaItem( + { + date: `2019-01-31`, + open: 19.5, + high: 20.8, + low: 18.6, + close: 20.5, + volume: 926375717, + change: 5, + index: 2 + }), + new StockTeslaItem( + { + date: `2019-02-11`, + open: 20.4, + high: 21.6, + low: 19.9, + close: 20.9, + volume: 687520471, + change: 2.4, + index: 3 + }), + new StockTeslaItem( + { + date: `2019-02-21`, + open: 21.1, + high: 21.2, + low: 19.4, + close: 19.4, + volume: 597552272, + change: -7.9, + index: 4 + }), + new StockTeslaItem( + { + date: `2019-03-04`, + open: 19.6, + high: 21.3, + low: 18.9, + close: 19, + volume: 1218669201, + change: -3.1, + index: 5 + }), + new StockTeslaItem( + { + date: `2019-03-13`, + open: 18.8, + high: 19.5, + low: 18, + close: 19.3, + volume: 1034156904, + change: 2.5, + index: 6 + }), + new StockTeslaItem( + { + date: `2019-03-22`, + open: 19.5, + high: 19.7, + low: 17.6, + close: 17.6, + volume: 980694095, + change: -9.5, + index: 7 + }), + new StockTeslaItem( + { + date: `2019-04-02`, + open: 17.3, + high: 19.3, + low: 17, + close: 19.1, + volume: 788473494, + change: 10.1, + index: 8 + }), + new StockTeslaItem( + { + date: `2019-04-11`, + open: 19.2, + high: 19.7, + low: 17.4, + close: 17.9, + volume: 1165555442, + change: -6.6, + index: 9 + }), + new StockTeslaItem( + { + date: `2019-04-23`, + open: 18, + high: 18.3, + low: 17, + close: 17.6, + volume: 870373200, + change: -2.3, + index: 10 + }), + new StockTeslaItem( + { + date: `2019-05-02`, + open: 17.6, + high: 17.7, + low: 15.4, + close: 16.3, + volume: 1629432326, + change: -7.5, + index: 11 + }), + new StockTeslaItem( + { + date: `2019-05-13`, + open: 16.3, + high: 17.2, + low: 15, + close: 15.1, + volume: 1131045605, + change: -6.9, + index: 12 + }), + new StockTeslaItem( + { + date: `2019-05-22`, + open: 15.3, + high: 15.6, + low: 12.8, + close: 12.8, + volume: 1455503588, + change: -15.9, + index: 13 + }), + new StockTeslaItem( + { + date: `2019-06-03`, + open: 13, + high: 13.3, + low: 11.8, + close: 11.9, + volume: 1415442268, + change: -7.9, + index: 14 + }), + new StockTeslaItem( + { + date: `2019-06-12`, + open: 12.1, + high: 14.9, + low: 12, + close: 14, + volume: 1515000443, + change: 15.6, + index: 15 + }), + new StockTeslaItem( + { + date: `2019-06-21`, + open: 14, + high: 15.6, + low: 13.8, + close: 14.8, + volume: 1009123371, + change: 5.5, + index: 16 + }), + new StockTeslaItem( + { + date: `2019-07-02`, + open: 14.9, + high: 15.5, + low: 14.5, + close: 15, + volume: 766921642, + change: 0.6, + index: 17 + }), + new StockTeslaItem( + { + date: `2019-07-12`, + open: 16, + high: 16.4, + low: 15.2, + close: 16.3, + volume: 887983836, + change: 2.4, + index: 18 + }), + new StockTeslaItem( + { + date: `2019-07-23`, + open: 16.5, + high: 17.5, + low: 16.3, + close: 17.3, + volume: 788941000, + change: 4.9, + index: 19 + }), + new StockTeslaItem( + { + date: `2019-08-01`, + open: 17.3, + high: 17.7, + low: 14.8, + close: 15.6, + volume: 1175082297, + change: -9.8, + index: 20 + }), + new StockTeslaItem( + { + date: `2019-08-12`, + open: 15.4, + high: 16, + low: 15, + close: 15.3, + volume: 560129569, + change: -1, + index: 21 + }), + new StockTeslaItem( + { + date: `2019-08-21`, + open: 15.3, + high: 15.7, + low: 14.1, + close: 14.7, + volume: 677293701, + change: -3.5, + index: 22 + }), + new StockTeslaItem( + { + date: `2019-08-30`, + open: 14.9, + high: 15.5, + low: 14.1, + close: 15, + volume: 650239370, + change: 1.3, + index: 23 + }), + new StockTeslaItem( + { + date: `2019-09-11`, + open: 14.9, + high: 16.5, + low: 14.6, + close: 16.5, + volume: 636766167, + change: 10.3, + index: 24 + }), + new StockTeslaItem( + { + date: `2019-09-20`, + open: 16.5, + high: 16.9, + low: 15.9, + close: 16, + volume: 572802643, + change: -2.9, + index: 25 + }), + new StockTeslaItem( + { + date: `2019-10-01`, + open: 16, + high: 16.6, + low: 14.6, + close: 16.3, + volume: 931821239, + change: 2, + index: 26 + }), + new StockTeslaItem( + { + date: `2019-10-10`, + open: 16.2, + high: 16.6, + low: 15, + close: 16.3, + volume: 891798049, + change: 0.6, + index: 27 + }), + new StockTeslaItem( + { + date: `2019-10-21`, + open: 16.5, + high: 17.7, + low: 16.5, + close: 16.9, + volume: 713093463, + change: 2.6, + index: 28 + }), + new StockTeslaItem( + { + date: `2019-10-30`, + open: 17, + high: 22.7, + low: 16.7, + close: 21, + volume: 1752943598, + change: 23.9, + index: 29 + }), + new StockTeslaItem( + { + date: `2019-11-08`, + open: 20.9, + high: 22.8, + low: 20.6, + close: 22.5, + volume: 834957256, + change: 7.7, + index: 30 + }), + new StockTeslaItem( + { + date: `2019-11-19`, + open: 22.9, + high: 24, + low: 22.8, + close: 24, + volume: 738746390, + change: 4.5, + index: 31 + }), + new StockTeslaItem( + { + date: `2019-11-29`, + open: 24, + high: 24.1, + low: 21.8, + close: 22, + volume: 870685288, + change: -8.4, + index: 32 + }), + new StockTeslaItem( + { + date: `2019-12-10`, + open: 22, + high: 23.4, + low: 21.8, + close: 23.3, + volume: 712016613, + change: 5.9, + index: 33 + }), + new StockTeslaItem( + { + date: `2019-12-19`, + open: 23.5, + high: 27.1, + low: 23.4, + close: 26.9, + volume: 1203765433, + change: 14.8, + index: 34 + }), + new StockTeslaItem( + { + date: `2019-12-31`, + open: 27.4, + high: 29, + low: 26.7, + close: 27.9, + volume: 1195073357, + change: 2, + index: 35 + }), + new StockTeslaItem( + { + date: `2020-01-10`, + open: 28.3, + high: 33.3, + low: 28.1, + close: 31.9, + volume: 1925386078, + change: 12.6, + index: 36 + }), + new StockTeslaItem( + { + date: `2020-01-22`, + open: 32.9, + high: 39.6, + low: 32.8, + close: 38, + volume: 2364043518, + change: 15.4, + index: 37 + }), + new StockTeslaItem( + { + date: `2020-01-31`, + open: 37.6, + high: 43.5, + low: 36, + close: 43.4, + volume: 1835141382, + change: 15.3, + index: 38 + }), + new StockTeslaItem( + { + date: `2020-02-11`, + open: 44.9, + high: 64.6, + low: 44.9, + close: 51.6, + volume: 3748903126, + change: 14.9, + index: 39 + }), + new StockTeslaItem( + { + date: `2020-02-21`, + open: 51.9, + high: 63, + low: 49, + close: 60.1, + volume: 1921517039, + change: 15.8, + index: 40 + }), + new StockTeslaItem( + { + date: `2020-03-03`, + open: 55.9, + high: 57.6, + low: 40.8, + close: 49.7, + volume: 2121850940, + change: -11.1, + index: 41 + }), + new StockTeslaItem( + { + date: `2020-03-12`, + open: 50.9, + high: 51.1, + low: 36.4, + close: 37.4, + volume: 1553329923, + change: -26.6, + index: 42 + }), + new StockTeslaItem( + { + date: `2020-03-23`, + open: 39.7, + high: 40.5, + low: 23.4, + close: 29, + volume: 2487688157, + change: -27, + index: 43 + }), + new StockTeslaItem( + { + date: `2020-04-01`, + open: 31.8, + high: 37.3, + low: 31.6, + close: 32.1, + volume: 1785601357, + change: 0.9, + index: 44 + }), + new StockTeslaItem( + { + date: `2020-04-13`, + open: 32.1, + high: 43.5, + low: 29.8, + close: 43.4, + volume: 1860352620, + change: 35.3, + index: 45 + }), + new StockTeslaItem( + { + date: `2020-04-22`, + open: 46.6, + high: 51.7, + low: 44.9, + close: 48.8, + volume: 2056797321, + change: 4.7, + index: 46 + }), + new StockTeslaItem( + { + date: `2020-05-01`, + open: 48.5, + high: 58, + low: 45.5, + close: 46.8, + volume: 2093959203, + change: -3.6, + index: 47 + }), + new StockTeslaItem( + { + date: `2020-05-12`, + open: 46.7, + high: 56.2, + low: 46.5, + close: 54, + volume: 1611543246, + change: 15.5, + index: 48 + }), + new StockTeslaItem( + { + date: `2020-05-21`, + open: 54.7, + high: 55.6, + low: 50.9, + close: 55.2, + volume: 1262468113, + change: 0.8, + index: 49 + }), + new StockTeslaItem( + { + date: `2020-06-02`, + open: 54.8, + high: 60.6, + low: 52.3, + close: 58.8, + volume: 1160487993, + change: 7.2, + index: 50 + }), + new StockTeslaItem( + { + date: `2020-06-11`, + open: 59.2, + high: 68.5, + low: 57.2, + close: 64.9, + volume: 1270377400, + change: 9.5, + index: 51 + }), + new StockTeslaItem( + { + date: `2020-06-22`, + open: 65.3, + high: 67.9, + low: 60.6, + close: 66.3, + volume: 1217946366, + change: 1.5, + index: 52 + }), + new StockTeslaItem( + { + date: `2020-07-01`, + open: 66.6, + high: 75.7, + low: 62.5, + close: 74.6, + volume: 1120591270, + change: 12.1, + index: 53 + }), + new StockTeslaItem( + { + date: `2020-07-13`, + open: 81.4, + high: 119.7, + low: 79, + close: 99.8, + volume: 2244920779, + change: 22.6, + index: 54 + }), + new StockTeslaItem( + { + date: `2020-07-22`, + open: 103.7, + high: 111.7, + low: 95.4, + close: 106.2, + volume: 1662846099, + change: 2.3, + index: 55 + }), + new StockTeslaItem( + { + date: `2020-07-31`, + open: 111.9, + high: 112.6, + low: 91.1, + close: 95.4, + volume: 1573159944, + change: -14.8, + index: 56 + }), + new StockTeslaItem( + { + date: `2020-08-11`, + open: 96.6, + high: 101.8, + low: 91, + close: 91.6, + volume: 798587331, + change: -5.2, + index: 57 + }), + new StockTeslaItem( + { + date: `2020-08-20`, + open: 98, + high: 134.8, + low: 95.7, + close: 133.5, + volume: 1866534416, + change: 36.2, + index: 58 + }), + new StockTeslaItem( + { + date: `2020-08-31`, + open: 136.3, + high: 166.7, + low: 128.5, + close: 166.1, + volume: 2008507459, + change: 21.9, + index: 59 + }), + new StockTeslaItem( + { + date: `2020-09-10`, + open: 167.4, + high: 167.5, + low: 110, + close: 123.8, + volume: 1992227059, + change: -26, + index: 60 + }), + new StockTeslaItem( + { + date: `2020-09-21`, + open: 127.3, + high: 154, + low: 120.2, + close: 149.8, + volume: 1758737696, + change: 17.7, + index: 61 + }), + new StockTeslaItem( + { + date: `2020-09-30`, + open: 143.2, + high: 145.9, + low: 117.1, + close: 143, + volume: 1459893236, + change: -0.1, + index: 62 + }), + new StockTeslaItem( + { + date: `2020-10-09`, + open: 146.9, + high: 149.6, + low: 135.4, + close: 144.7, + volume: 985545158, + change: -1.5, + index: 63 + }), + new StockTeslaItem( + { + date: `2020-10-20`, + open: 147.3, + high: 155.3, + low: 139.7, + close: 140.6, + volume: 773077727, + change: -4.5, + index: 64 + }), + new StockTeslaItem( + { + date: `2020-10-29`, + open: 140.9, + high: 148.4, + low: 135.3, + close: 136.9, + volume: 615339122, + change: -2.8, + index: 65 + }), + new StockTeslaItem( + { + date: `2020-11-09`, + open: 135.6, + high: 150.8, + low: 126.4, + close: 140.4, + volume: 669171368, + change: 3.5, + index: 66 + }), + new StockTeslaItem( + { + date: `2020-11-18`, + open: 140, + high: 165.3, + low: 132, + close: 162.2, + volume: 760451265, + change: 15.8, + index: 67 + }), + new StockTeslaItem( + { + date: `2020-11-30`, + open: 164, + high: 202.6, + low: 162.5, + close: 189.2, + volume: 1046371155, + change: 15.4, + index: 68 + }), + new StockTeslaItem( + { + date: `2020-12-09`, + open: 199.2, + high: 218.1, + low: 180.4, + close: 201.5, + volume: 1055933265, + change: 1.2, + index: 69 + }), + new StockTeslaItem( + { + date: `2020-12-18`, + open: 191.5, + high: 231.7, + low: 188.8, + close: 231.7, + volume: 1593943601, + change: 21, + index: 70 + }), + new StockTeslaItem( + { + date: `2020-12-30`, + open: 222.1, + high: 232.2, + low: 204.7, + close: 231.6, + volume: 791942570, + change: 4.3, + index: 71 + }), + new StockTeslaItem( + { + date: `2021-01-11`, + open: 233.3, + high: 294.8, + low: 230.4, + close: 270.4, + volume: 1084025779, + change: 15.9, + index: 72 + }), + new StockTeslaItem( + { + date: `2021-01-21`, + open: 277, + high: 289.3, + low: 273, + close: 281.7, + volume: 663774487, + change: 1.7, + index: 73 + }), + new StockTeslaItem( + { + date: `2021-02-01`, + open: 278.1, + high: 300.1, + low: 260, + close: 279.9, + volume: 595397009, + change: 0.7, + index: 74 + }), + new StockTeslaItem( + { + date: `2021-02-10`, + open: 281.6, + high: 293.5, + low: 266.7, + close: 268.3, + volume: 445813486, + change: -4.7, + index: 75 + }), + new StockTeslaItem( + { + date: `2021-02-22`, + open: 270.8, + high: 276.6, + low: 236.7, + close: 238.2, + volume: 496372009, + change: -12.1, + index: 76 + }), + new StockTeslaItem( + { + date: `2021-03-03`, + open: 220.7, + high: 290.7, + low: 206.3, + close: 217.7, + volume: 793689739, + change: -1.3, + index: 77 + }), + new StockTeslaItem( + { + date: `2021-03-12`, + open: 218.6, + high: 291.3, + low: 179.8, + close: 231.2, + volume: 1215209162, + change: 5.8, + index: 78 + }), + new StockTeslaItem( + { + date: `2021-03-23`, + open: 231.4, + high: 237.7, + low: 208.2, + close: 220.7, + volume: 744776145, + change: -4.6, + index: 79 + }), + new StockTeslaItem( + { + date: `2021-04-01`, + open: 222.6, + high: 230.8, + low: 197, + close: 220.6, + volume: 730733684, + change: -0.9, + index: 80 + }), + new StockTeslaItem( + { + date: `2021-04-13`, + open: 235.9, + high: 254.3, + low: 222.6, + close: 254.1, + volume: 646721884, + change: 7.7, + index: 81 + }), + new StockTeslaItem( + { + date: `2021-04-22`, + open: 256.9, + high: 260.3, + low: 230.6, + close: 239.9, + volume: 740840774, + change: -6.6, + index: 82 + }), + new StockTeslaItem( + { + date: `2021-05-03`, + open: 239.9, + high: 249.8, + low: 222, + close: 228.3, + volume: 623423313, + change: -4.8, + index: 83 + }), + new StockTeslaItem( + { + date: `2021-05-12`, + open: 226.3, + high: 230, + low: 195.6, + close: 196.6, + volume: 643844974, + change: -13.1, + index: 84 + }), + new StockTeslaItem( + { + date: `2021-05-21`, + open: 200.5, + high: 202.2, + low: 182.3, + close: 193.6, + volume: 729192883, + change: -3.4, + index: 85 + }), + new StockTeslaItem( + { + date: `2021-06-02`, + open: 193.9, + high: 211.9, + low: 191.2, + close: 201.7, + volume: 545095944, + change: 4, + index: 86 + }), + new StockTeslaItem( + { + date: `2021-06-11`, + open: 200.6, + high: 207.7, + low: 190.4, + close: 203.3, + volume: 478366128, + change: 1.3, + index: 87 + }), + new StockTeslaItem( + { + date: `2021-06-22`, + open: 204.1, + high: 210.5, + low: 197.8, + close: 207.9, + volume: 454698495, + change: 1.9, + index: 88 + }), + new StockTeslaItem( + { + date: `2021-07-01`, + open: 210.7, + high: 232.5, + low: 210, + close: 226, + volume: 558441596, + change: 7.3, + index: 89 + }), + new StockTeslaItem( + { + date: `2021-07-13`, + open: 226.3, + high: 233.3, + low: 206.8, + close: 222.8, + volume: 470942387, + change: -1.5, + index: 90 + }), + new StockTeslaItem( + { + date: `2021-07-22`, + open: 223.6, + high: 226.2, + low: 207.1, + close: 216.4, + volume: 372195097, + change: -3.2, + index: 91 + }), + new StockTeslaItem( + { + date: `2021-08-02`, + open: 215.5, + high: 242.3, + low: 209.1, + close: 236.6, + volume: 547284685, + change: 9.8, + index: 92 + }), + new StockTeslaItem( + { + date: `2021-08-11`, + open: 239.7, + high: 241.6, + low: 232.5, + close: 235.9, + volume: 315341455, + change: -1.6, + index: 93 + }), + new StockTeslaItem( + { + date: `2021-08-20`, + open: 235.4, + high: 243.3, + low: 216.3, + close: 226.8, + volume: 392227478, + change: -3.7, + index: 94 + }), + new StockTeslaItem( + { + date: `2021-08-31`, + open: 228.5, + high: 246.8, + low: 226.9, + close: 245.2, + volume: 337503634, + change: 7.3, + index: 95 + }), + new StockTeslaItem( + { + date: `2021-09-10`, + open: 244.7, + high: 254.8, + low: 241.4, + close: 245.4, + volume: 328100734, + change: 0.3, + index: 96 + }), + new StockTeslaItem( + { + date: `2021-09-21`, + open: 246.7, + high: 253.7, + low: 236.3, + close: 246.5, + volume: 420153012, + change: -0.1, + index: 97 + }), + new StockTeslaItem( + { + date: `2021-09-30`, + open: 247.8, + high: 266.3, + low: 246.4, + close: 258.5, + volume: 422393262, + change: 4.3, + index: 98 + }), + new StockTeslaItem( + { + date: `2021-10-11`, + open: 259.5, + high: 269, + low: 254.5, + close: 264, + volume: 392144589, + change: 1.7, + index: 99 + }), + new StockTeslaItem( + { + date: `2021-10-20`, + open: 267, + high: 292.6, + low: 265.5, + close: 288.6, + volume: 368796877, + change: 8.1, + index: 100 + }), + new StockTeslaItem( + { + date: `2021-10-29`, + open: 285.3, + high: 371.7, + low: 285.2, + close: 371.3, + volume: 825862313, + change: 30.1, + index: 101 + }), + new StockTeslaItem( + { + date: `2021-11-09`, + open: 381.7, + high: 414.5, + low: 337.2, + close: 341.2, + volume: 818978542, + change: -10.6, + index: 102 + }), + new StockTeslaItem( + { + date: `2021-11-18`, + open: 336.8, + high: 373.2, + low: 326.2, + close: 365.5, + volume: 613304311, + change: 8.5, + index: 103 + }), + new StockTeslaItem( + { + date: `2021-11-30`, + open: 366.3, + high: 400.6, + low: 354, + close: 381.6, + volume: 515052382, + change: 4.2, + index: 104 + }), + new StockTeslaItem( + { + date: `2021-12-09`, + open: 386.9, + high: 390.9, + low: 316.8, + close: 334.6, + volume: 473333567, + change: -13.5, + index: 105 + }), + new StockTeslaItem( + { + date: `2021-12-20`, + open: 336.2, + high: 340.3, + low: 297.8, + close: 300, + volume: 524367113, + change: -10.8, + index: 106 + }), + new StockTeslaItem( + { + date: `2021-12-30`, + open: 305.6, + high: 373, + low: 295.4, + close: 356.8, + volume: 492530059, + change: 16.7, + index: 107 + }), + new StockTeslaItem( + { + date: `2022-01-10`, + open: 357.8, + high: 402.7, + low: 326.7, + close: 352.7, + volume: 592103938, + change: -1.4, + index: 108 + }), + new StockTeslaItem( + { + date: `2022-01-20`, + open: 351.2, + high: 371.9, + low: 331.3, + close: 332.1, + volume: 532857144, + change: -5.4, + index: 109 + }), + new StockTeslaItem( + { + date: `2022-01-31`, + open: 332.1, + high: 334.8, + low: 264, + close: 312.2, + volume: 833589022, + change: -6, + index: 110 + }), + new StockTeslaItem( + { + date: `2022-02-09`, + open: 311.7, + high: 315.9, + low: 293.5, + close: 310.7, + volume: 456395505, + change: -0.3, + index: 111 + }), + new StockTeslaItem( + { + date: `2022-02-18`, + open: 302.8, + high: 314.6, + low: 279.2, + close: 285.7, + volume: 446153356, + change: -5.7, + index: 112 + }), + new StockTeslaItem( + { + date: `2022-03-02`, + open: 278, + high: 296.6, + low: 233.3, + close: 293.3, + volume: 638352514, + change: 5.5, + index: 113 + }), + new StockTeslaItem( + { + date: `2022-03-11`, + open: 292.9, + high: 295.5, + low: 260.7, + close: 265.1, + volume: 466566467, + change: -9.5, + index: 114 + }), + new StockTeslaItem( + { + date: `2022-03-22`, + open: 260.2, + high: 332.6, + low: 252, + close: 331.3, + volume: 576869668, + change: 27.3, + index: 115 + }), + new StockTeslaItem( + { + date: `2022-03-31`, + open: 326.6, + high: 371.6, + low: 325.5, + close: 359.2, + volume: 536607263, + change: 10, + index: 116 + }), + new StockTeslaItem( + { + date: `2022-04-11`, + open: 360.4, + high: 384.3, + low: 324.9, + close: 325.3, + volume: 499682510, + change: -9.7, + index: 117 + }), + new StockTeslaItem( + { + date: `2022-04-21`, + open: 332.5, + high: 364.1, + low: 324.4, + close: 336.3, + volume: 457210487, + change: 1.1, + index: 118 + }), + new StockTeslaItem( + { + date: `2022-05-02`, + open: 338.3, + high: 345, + low: 273.9, + close: 301, + volume: 639990965, + change: -11, + index: 119 + }), + new StockTeslaItem( + { + date: `2022-05-11`, + open: 301.1, + high: 318.5, + low: 242.4, + close: 244.7, + volume: 583211967, + change: -18.7, + index: 120 + }), + new StockTeslaItem( + { + date: `2022-05-20`, + open: 233.7, + high: 262.4, + low: 211, + close: 221.3, + volume: 721880082, + change: -5.3, + index: 121 + }), + new StockTeslaItem( + { + date: `2022-06-01`, + open: 218.3, + high: 259.6, + low: 206.9, + close: 246.8, + volume: 644596235, + change: 13, + index: 122 + }), + new StockTeslaItem( + { + date: `2022-06-10`, + open: 244.2, + high: 264.2, + low: 227.9, + close: 232.2, + volume: 633672873, + change: -4.9, + index: 123 + }), + new StockTeslaItem( + { + date: `2022-06-22`, + open: 223.2, + high: 246.8, + low: 208.7, + close: 236.1, + volume: 744240764, + change: 5.8, + index: 124 + }), + new StockTeslaItem( + { + date: `2022-07-01`, + open: 237.9, + high: 252.1, + low: 218.9, + close: 227.3, + volume: 631776422, + change: -4.5, + index: 125 + }), + new StockTeslaItem( + { + date: `2022-07-13`, + open: 223, + high: 255, + low: 216.2, + close: 237, + volume: 625812242, + change: 6.3, + index: 126 + }), + new StockTeslaItem( + { + date: `2022-07-22`, + open: 234.9, + high: 280.8, + low: 229.3, + close: 272.2, + volume: 646037224, + change: 15.9, + index: 127 + }), + new StockTeslaItem( + { + date: `2022-08-02`, + open: 272.2, + high: 311.9, + low: 256.3, + close: 300.6, + volume: 611660612, + change: 10.4, + index: 128 + }), + new StockTeslaItem( + { + date: `2022-08-11`, + open: 305, + high: 313.6, + low: 279.4, + close: 286.6, + volume: 616204291, + change: -6, + index: 129 + }), + new StockTeslaItem( + { + date: `2022-08-22`, + open: 289.4, + high: 314.7, + low: 285, + close: 289.9, + volume: 490658060, + change: 0.2, + index: 130 + }), + new StockTeslaItem( + { + date: `2022-08-31`, + open: 291.5, + high: 303.6, + low: 271.8, + close: 275.6, + volume: 376152572, + change: -5.4, + index: 131 + }), + new StockTeslaItem( + { + date: `2022-09-12`, + open: 272.6, + high: 305.5, + low: 265.7, + close: 304.4, + volume: 367924580, + change: 11.7, + index: 132 + }), + new StockTeslaItem( + { + date: `2022-09-21`, + open: 292.9, + high: 313.8, + low: 290.4, + close: 300.8, + volume: 477171180, + change: 2.7, + index: 133 + }), + new StockTeslaItem( + { + date: `2022-09-30`, + open: 299.9, + high: 301.3, + low: 262.5, + close: 265.2, + volume: 454307920, + change: -11.5, + index: 134 + }), + new StockTeslaItem( + { + date: `2022-10-11`, + open: 254.5, + high: 257.5, + low: 215, + close: 216.5, + volume: 593078170, + change: -14.9, + index: 135 + }), + new StockTeslaItem( + { + date: `2022-10-20`, + open: 215.3, + high: 229.8, + low: 202, + close: 207.3, + volume: 592158560, + change: -3.7, + index: 136 + }), + new StockTeslaItem( + { + date: `2022-10-31`, + open: 206.4, + high: 233.8, + low: 198.6, + close: 227.5, + volume: 550341050, + change: 10.2, + index: 137 + }), + new StockTeslaItem( + { + date: `2022-11-09`, + open: 234, + high: 237.4, + low: 177.1, + close: 177.6, + volume: 630702790, + change: -24.1, + index: 138 + }), + new StockTeslaItem( + { + date: `2022-11-18`, + open: 189.9, + high: 200.8, + low: 176.6, + close: 180.2, + volume: 637579480, + change: -5.1, + index: 139 + }), + new StockTeslaItem( + { + date: `2022-11-30`, + open: 175.8, + high: 194.8, + low: 166.2, + close: 194.7, + volume: 617126140, + change: 10.7, + index: 140 + }), + new StockTeslaItem( + { + date: `2022-12-09`, + open: 197.1, + high: 198.9, + low: 169.1, + close: 179, + volume: 625675690, + change: -9.1, + index: 141 + }), + new StockTeslaItem( + { + date: `2022-12-20`, + open: 176.1, + high: 177.4, + low: 137.7, + close: 137.8, + volume: 986660100, + change: -21.7, + index: 142 + }), + new StockTeslaItem( + { + date: `2022-12-30`, + open: 139.3, + high: 141.3, + low: 108.2, + close: 123.2, + volume: 1331911900, + change: -11.6, + index: 143 + }), + new StockTeslaItem( + { + date: `2023-01-11`, + open: 118.5, + high: 126, + low: 101.8, + close: 123.2, + volume: 1332426500, + change: 4, + index: 144 + }), + new StockTeslaItem( + { + date: `2023-01-23`, + open: 122.6, + high: 145.4, + low: 115.6, + close: 143.8, + volume: 1244541500, + change: 17.3, + index: 145 + }), + new StockTeslaItem( + { + date: `2023-02-01`, + open: 143, + high: 183.8, + low: 138.1, + close: 181.4, + volume: 1534337700, + change: 26.9, + index: 146 + }), + new StockTeslaItem( + { + date: `2023-02-10`, + open: 187.3, + high: 214, + low: 182.6, + close: 196.9, + volume: 1423167800, + change: 5.1, + index: 147 + }), + new StockTeslaItem( + { + date: `2023-02-22`, + open: 194.4, + high: 217.6, + low: 187.6, + close: 200.9, + volume: 1386211900, + change: 3.3, + index: 148 + }), + new StockTeslaItem( + { + date: `2023-03-03`, + open: 203.9, + high: 211.2, + low: 186, + close: 197.8, + volume: 1095786600, + change: -3, + index: 149 + }), + new StockTeslaItem( + { + date: `2023-03-14`, + open: 198.5, + high: 198.6, + low: 163.9, + close: 183.3, + volume: 1101144600, + change: -7.7, + index: 150 + }), + new StockTeslaItem( + { + date: `2023-03-23`, + open: 180.8, + high: 200.7, + low: 176, + close: 192.2, + volume: 978213300, + change: 6.3, + index: 151 + }), + new StockTeslaItem( + { + date: `2023-04-03`, + open: 191.6, + high: 207.8, + low: 185.4, + close: 194.8, + volume: 909718040, + change: 1.6, + index: 152 + }), + new StockTeslaItem( + { + date: `2023-04-13`, + open: 197.3, + high: 198.7, + low: 176.1, + close: 185.9, + volume: 905319000, + change: -5.8, + index: 153 + }), + new StockTeslaItem( + { + date: `2023-04-24`, + open: 184, + high: 189.7, + low: 158.6, + close: 162.6, + volume: 905416980, + change: -11.6, + index: 154 + }), + new StockTeslaItem( + { + date: `2023-05-03`, + open: 159.8, + high: 165.5, + low: 152.4, + close: 160.6, + volume: 881897100, + change: 0.5, + index: 155 + }), + new StockTeslaItem( + { + date: `2023-05-12`, + open: 162.7, + high: 177.4, + low: 159.6, + close: 168, + volume: 785510430, + change: 3.2, + index: 156 + }), + new StockTeslaItem( + { + date: `2023-05-23`, + open: 167.7, + high: 193, + low: 164.4, + close: 185.8, + volume: 864025390, + change: 10.8, + index: 157 + }), + new StockTeslaItem( + { + date: `2023-06-02`, + open: 182.2, + high: 217.2, + low: 178.2, + close: 214, + volume: 988496020, + change: 17.4, + index: 158 + }), + new StockTeslaItem( + { + date: `2023-06-13`, + open: 217.8, + high: 259.7, + low: 212.5, + close: 258.7, + volume: 1161622400, + change: 18.8, + index: 159 + }), + new StockTeslaItem( + { + date: `2023-06-23`, + open: 260.2, + high: 277, + low: 247.3, + close: 256.6, + volume: 1220407300, + change: -1.4, + index: 160 + }), + new StockTeslaItem( + { + date: `2023-07-05`, + open: 250.1, + high: 284.2, + low: 240.7, + close: 282.5, + volume: 999163700, + change: 13, + index: 161 + }), + new StockTeslaItem( + { + date: `2023-07-14`, + open: 278.1, + high: 285.3, + low: 265.1, + close: 281.4, + volume: 774400400, + change: 1.2, + index: 162 + }), + new StockTeslaItem( + { + date: `2023-07-25`, + open: 286.6, + high: 299.3, + low: 254.1, + close: 265.3, + volume: 973076400, + change: -7.4, + index: 163 + }), + new StockTeslaItem( + { + date: `2023-08-03`, + open: 263.2, + high: 269.1, + low: 250.5, + close: 259.3, + volume: 678809820, + change: -1.5, + index: 164 + }), + new StockTeslaItem( + { + date: `2023-08-14`, + open: 261, + high: 264.8, + low: 233.8, + close: 239.8, + volume: 716008860, + change: -8.1, + index: 165 + }), + new StockTeslaItem( + { + date: `2023-08-23`, + open: 238.7, + high: 240.8, + low: 212.4, + close: 236.9, + volume: 825055300, + change: -0.8, + index: 166 + }), + new StockTeslaItem( + { + date: `2023-09-01`, + open: 238.7, + high: 261.2, + low: 228.2, + close: 245, + volume: 811502630, + change: 2.7, + index: 167 + }), + new StockTeslaItem( + { + date: `2023-09-13`, + open: 245, + high: 278.4, + low: 243.3, + close: 271.3, + volume: 902643400, + change: 10.7, + index: 168 + }), + new StockTeslaItem( + { + date: `2023-09-22`, + open: 271.3, + high: 279, + low: 244.5, + close: 244.9, + volume: 816639600, + change: -9.7, + index: 169 + }), + new StockTeslaItem( + { + date: `2023-10-03`, + open: 243.4, + high: 254.8, + low: 234.6, + close: 246.5, + volume: 814604700, + change: 1.3, + index: 170 + }), + new StockTeslaItem( + { + date: `2023-10-12`, + open: 248.1, + high: 268.9, + low: 247.6, + close: 258.9, + volume: 806250900, + change: 4.3, + index: 171 + }), + new StockTeslaItem( + { + date: `2023-10-23`, + open: 258.9, + high: 259.6, + low: 202.5, + close: 212.1, + volume: 869390890, + change: -18.1, + index: 172 + }), + new StockTeslaItem( + { + date: `2023-11-01`, + open: 216.5, + high: 222, + low: 194.1, + close: 205.7, + volume: 811468170, + change: -5, + index: 173 + }), + new StockTeslaItem( + { + date: `2023-11-10`, + open: 213, + high: 226.4, + low: 205.7, + close: 214.6, + volume: 859763700, + change: 0.8, + index: 174 + }), + new StockTeslaItem( + { + date: `2023-11-21`, + open: 215.6, + high: 246.7, + low: 211.6, + close: 241.2, + volume: 959006600, + change: 11.9, + index: 175 + }), + new StockTeslaItem( + { + date: `2023-12-01`, + open: 242, + high: 252.8, + low: 231.4, + close: 238.8, + volume: 832910200, + change: -1.3, + index: 176 + }), + new StockTeslaItem( + { + date: `2023-12-12`, + open: 235.8, + high: 246.7, + low: 233.3, + close: 237, + volume: 772018400, + change: 0.5, + index: 177 + }), + new StockTeslaItem( + { + date: `2023-12-21`, + open: 234.2, + high: 259.8, + low: 228.2, + close: 254.5, + volume: 900893400, + change: 8.7, + index: 178 + }), + new StockTeslaItem( + { + date: `2024-01-03`, + open: 256.8, + high: 265.1, + low: 236.3, + close: 238.4, + volume: 727005170, + change: -7.1, + index: 179 + }), + new StockTeslaItem( + { + date: `2024-01-12`, + open: 239.2, + high: 242.7, + low: 217.2, + close: 218.9, + volume: 697536380, + change: -8.5, + index: 180 + }), + new StockTeslaItem( + { + date: `2024-01-24`, + open: 215.1, + high: 223.5, + low: 206.3, + close: 207.8, + volume: 777303400, + change: -3.4, + index: 181 + }), + new StockTeslaItem( + { + date: `2024-02-02`, + open: 189.7, + high: 196.4, + low: 180.1, + close: 187.9, + volume: 846092780, + change: -0.9, + index: 182 + }), + new StockTeslaItem( + { + date: `2024-02-13`, + open: 184.3, + high: 194.7, + low: 175, + close: 184, + volume: 718274070, + change: -0.1, + index: 183 + }), + new StockTeslaItem( + { + date: `2024-02-23`, + open: 185.3, + high: 203.2, + low: 183.4, + close: 192, + volume: 693352670, + change: 3.6, + index: 184 + }), + new StockTeslaItem( + { + date: `2024-03-05`, + open: 192.3, + high: 205.6, + low: 177.6, + close: 180.7, + volume: 742344460, + change: -6, + index: 185 + }), + new StockTeslaItem( + { + date: `2024-03-14`, + open: 180, + high: 182.9, + low: 160.5, + close: 162.5, + volume: 701227950, + change: -9.7, + index: 186 + }), + new StockTeslaItem( + { + date: `2024-03-25`, + open: 163.2, + high: 178.2, + low: 160.8, + close: 172.6, + volume: 589466660, + change: 5.8, + index: 187 + }), + new StockTeslaItem( + { + date: `2024-04-04`, + open: 178.6, + high: 184.2, + low: 163.3, + close: 171.1, + volume: 676969950, + change: -4.2, + index: 188 + }), + new StockTeslaItem( + { + date: `2024-04-15`, + open: 169.1, + high: 179.2, + low: 160.5, + close: 161.5, + volume: 694829970, + change: -4.5, + index: 189 + }), + new StockTeslaItem( + { + date: `2024-04-24`, + open: 156.7, + high: 168, + low: 138.8, + close: 162.1, + volume: 775433710, + change: 3.4, + index: 190 + }), + new StockTeslaItem( + { + date: `2024-05-03`, + open: 159, + high: 198.9, + low: 158.4, + close: 181.2, + volume: 864614000, + change: 14, + index: 191 + }), + new StockTeslaItem( + { + date: `2024-05-14`, + open: 183.8, + high: 187.6, + low: 167.8, + close: 177.6, + volume: 531409380, + change: -3.4, + index: 192 + }), + new StockTeslaItem( + { + date: `2024-05-23`, + open: 179.9, + high: 186.9, + low: 171.4, + close: 173.7, + volume: 554203970, + change: -3.4, + index: 193 + }), + new StockTeslaItem( + { + date: `2024-06-04`, + open: 174.8, + high: 182.7, + low: 173.2, + close: 174.8, + volume: 453828370, + change: 0, + index: 194 + }), + new StockTeslaItem( + { + date: `2024-06-13`, + open: 175.4, + high: 191.1, + low: 167.4, + close: 182.5, + volume: 509090870, + change: 4.1, + index: 195 + }), + new StockTeslaItem( + { + date: `2024-06-25`, + open: 185.8, + high: 188.8, + low: 176.9, + close: 187.4, + volume: 505399520, + change: 0.8, + index: 196 + }), + new StockTeslaItem( + { + date: `2024-07-05`, + open: 186.5, + high: 252.4, + low: 186.4, + close: 251.5, + volume: 925723660, + change: 34.8, + index: 197 + }), + new StockTeslaItem( + { + date: `2024-07-16`, + open: 247.7, + high: 271, + low: 233.1, + close: 256.6, + volume: 1097390000, + change: 3.6, + index: 198 + }), + new StockTeslaItem( + { + date: `2024-07-25`, + open: 252.7, + high: 258.5, + low: 214.7, + close: 220.2, + volume: 795590700, + change: -12.9, + index: 199 + }), + new StockTeslaItem( + { + date: `2024-08-05`, + open: 221.2, + high: 234.7, + low: 182, + close: 198.9, + volume: 658914080, + change: -10.1, + index: 200 + }), + new StockTeslaItem( + { + date: `2024-08-14`, + open: 200.8, + high: 208.5, + low: 191.5, + close: 201.4, + volume: 479168160, + change: 0.3, + index: 201 + }), + new StockTeslaItem( + { + date: `2024-08-23`, + open: 205, + high: 228.2, + low: 204.8, + close: 220.3, + volume: 560235700, + change: 7.5, + index: 202 + }), + new StockTeslaItem( + { + date: `2024-09-04`, + open: 218.8, + high: 222.2, + low: 202.6, + close: 219.4, + volume: 469284350, + change: 0.3, + index: 203 + }), + new StockTeslaItem( + { + date: `2024-09-13`, + open: 223.5, + high: 235, + low: 210.5, + close: 230.3, + volume: 592950440, + change: 3, + index: 204 + }), + new StockTeslaItem( + { + date: `2024-09-24`, + open: 229.3, + high: 257.2, + low: 223.5, + close: 254.3, + volume: 577086700, + change: 10.9, + index: 205 + }), + new StockTeslaItem( + { + date: `2024-10-03`, + open: 252.5, + high: 264.9, + low: 237.8, + close: 240.7, + volume: 546148740, + change: -4.7, + index: 206 + }), + new StockTeslaItem( + { + date: `2024-10-14`, + open: 246.7, + high: 251, + low: 213.7, + close: 219.2, + volume: 589440130, + change: -11.2, + index: 207 + }), + new StockTeslaItem( + { + date: `2024-10-23`, + open: 220, + high: 224.3, + low: 212.1, + close: 213.6, + volume: 384561880, + change: -2.9, + index: 208 + }), + new StockTeslaItem( + { + date: `2024-11-01`, + open: 244.7, + high: 273.5, + low: 242.6, + close: 249, + volume: 732392780, + change: 1.8, + index: 209 + }), + new StockTeslaItem( + { + date: `2024-11-12`, + open: 244.6, + high: 358.6, + low: 238.9, + close: 328.5, + volume: 991653160, + change: 34.3, + index: 210 + }), + new StockTeslaItem( + { + date: `2024-11-21`, + open: 335.8, + high: 348.5, + low: 309.2, + close: 339.6, + volume: 700324320, + change: 1.1, + index: 211 + }), + new StockTeslaItem( + { + date: `2024-12-03`, + open: 341.1, + high: 361.9, + low: 326.6, + close: 351.4, + volume: 478645220, + change: 3, + index: 212 + }), + new StockTeslaItem( + { + date: `2024-12-12`, + open: 353, + high: 429.3, + low: 348.6, + close: 418.1, + volume: 599082110, + change: 18.4, + index: 213 + }), + new StockTeslaItem( + { + date: `2024-12-23`, + open: 420, + high: 481.5, + low: 415.4, + close: 430.6, + volume: 807128120, + change: 2.5, + index: 214 + }), + new StockTeslaItem( + { + date: `2025-01-03`, + open: 435.9, + high: 465.3, + low: 373, + close: 410.4, + volume: 565769940, + change: -5.8, + index: 215 + }), + new StockTeslaItem( + { + date: `2025-01-15`, + open: 423.2, + high: 429.8, + low: 377.3, + close: 428.2, + volume: 530063170, + change: 1.2, + index: 216 + }), + new StockTeslaItem( + { + date: `2025-01-27`, + open: 423.5, + high: 439.7, + low: 389, + close: 397.2, + volume: 476854060, + change: -6.2, + index: 217 + }), + new StockTeslaItem( + { + date: `2025-02-05`, + open: 396.9, + high: 420, + low: 374.4, + close: 378.2, + volume: 507024510, + change: -4.7, + index: 218 + }), + new StockTeslaItem( + { + date: `2025-02-14`, + open: 373, + high: 380.6, + low: 325.1, + close: 355.8, + volume: 607376290, + change: -4.6, + index: 219 + }), + new StockTeslaItem( + { + date: `2025-02-26`, + open: 355, + high: 367.3, + low: 288, + close: 290.8, + volume: 549149490, + change: -18.1, + index: 220 + }), + new StockTeslaItem( + { + date: `2025-03-07`, + open: 291.2, + high: 303.9, + low: 250.7, + close: 262.7, + volume: 754567280, + change: -9.8, + index: 221 + }), + new StockTeslaItem( + { + date: `2025-03-18`, + open: 252.5, + high: 253.4, + low: 217, + close: 225.3, + volume: 944623000, + change: -10.8, + index: 222 + }), + new StockTeslaItem( + { + date: `2025-03-27`, + open: 231.6, + high: 291.8, + low: 229.2, + close: 273.1, + volume: 982018670, + change: 17.9, + index: 223 + }), + new StockTeslaItem( + { + date: `2025-04-07`, + open: 275.6, + high: 285, + low: 214.2, + close: 233.3, + volume: 1117950500, + change: -15.3, + index: 224 + }), + new StockTeslaItem( + { + date: `2025-04-16`, + open: 245, + high: 274.7, + low: 217.8, + close: 241.6, + volume: 993815820, + change: -1.4, + index: 225 + }), + new StockTeslaItem( + { + date: `2025-04-28`, + open: 243.5, + high: 294.9, + low: 222.8, + close: 285.9, + volume: 866169890, + change: 17.4, + index: 226 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-line-layer/src/app.component.html b/samples/charts/data-chart/data-annotation-line-layer/src/app.component.html new file mode 100644 index 000000000..5d1e1af41 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/src/app.component.html @@ -0,0 +1,128 @@ +
+
+ + + + + + + + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/data-annotation-line-layer/src/app.component.scss b/samples/charts/data-chart/data-annotation-line-layer/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-annotation-line-layer/src/app.component.ts b/samples/charts/data-chart/data-annotation-line-layer/src/app.component.ts new file mode 100644 index 000000000..570d91a93 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/src/app.component.ts @@ -0,0 +1,70 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { StockTeslaItem, StockTesla } from './StockTesla'; +import { AnnotationLineData1Item, AnnotationLineData1 } from './AnnotationLineData1'; +import { AnnotationLineData2Item, AnnotationLineData2 } from './AnnotationLineData2'; +import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxFinancialPriceSeriesComponent, IgxDataToolTipLayerComponent, IgxDataAnnotationLineLayerComponent } from 'igniteui-angular-charts'; + +@Component({ + standalone: false, + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxisLeft", { static: true } ) + private yAxisLeft: IgxNumericYAxisComponent + @ViewChild("yAxisRight", { static: true } ) + private yAxisRight: IgxNumericYAxisComponent + @ViewChild("series1", { static: true } ) + private series1: IgxFinancialPriceSeriesComponent + @ViewChild("tooltip", { static: true } ) + private tooltip: IgxDataToolTipLayerComponent + @ViewChild("lineLayer52WeekRange", { static: true } ) + private lineLayer52WeekRange: IgxDataAnnotationLineLayerComponent + @ViewChild("lineLayerGrowthAndDecline", { static: true } ) + private lineLayerGrowthAndDecline: IgxDataAnnotationLineLayerComponent + private _stockTesla: StockTesla = null; + public get stockTesla(): StockTesla { + if (this._stockTesla == null) + { + this._stockTesla = new StockTesla(); + } + return this._stockTesla; + } + + private _annotationLineData1: AnnotationLineData1 = null; + public get annotationLineData1(): AnnotationLineData1 { + if (this._annotationLineData1 == null) + { + this._annotationLineData1 = new AnnotationLineData1(); + } + return this._annotationLineData1; + } + + private _annotationLineData2: AnnotationLineData2 = null; + public get annotationLineData2(): AnnotationLineData2 { + if (this._annotationLineData2 == null) + { + this._annotationLineData2 = new AnnotationLineData2(); + } + return this._annotationLineData2; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/data-annotation-line-layer/src/app.module.ts b/samples/charts/data-chart/data-annotation-line-layer/src/app.module.ts new file mode 100644 index 000000000..9710a7b15 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/src/app.module.ts @@ -0,0 +1,35 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartCategoryCoreModule, IgxDataChartFinancialCoreModule, IgxDataChartFinancialModule, IgxDataChartFinancialOverlaysModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule, IgxDataAnnotationLineLayerModule, IgxNumberAbbreviatorModule, IgxAnnotationLayerProxyModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartCategoryCoreModule, + IgxDataChartFinancialCoreModule, + IgxDataChartFinancialModule, + IgxDataChartFinancialOverlaysModule, + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule, + IgxDataAnnotationLineLayerModule, + IgxNumberAbbreviatorModule, + IgxAnnotationLayerProxyModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/data-annotation-line-layer/src/environments/environment.prod.ts b/samples/charts/data-chart/data-annotation-line-layer/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/data-annotation-line-layer/src/environments/environment.ts b/samples/charts/data-chart/data-annotation-line-layer/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/data-annotation-line-layer/src/index.html b/samples/charts/data-chart/data-annotation-line-layer/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/data-annotation-line-layer/src/main.ts b/samples/charts/data-chart/data-annotation-line-layer/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/data-annotation-line-layer/src/polyfills.ts b/samples/charts/data-chart/data-annotation-line-layer/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/data-annotation-line-layer/src/styles.scss b/samples/charts/data-chart/data-annotation-line-layer/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/data-annotation-line-layer/src/typings.d.ts b/samples/charts/data-chart/data-annotation-line-layer/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/data-annotation-line-layer/tsconfig.app.json b/samples/charts/data-chart/data-annotation-line-layer/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/data-annotation-line-layer/tsconfig.json b/samples/charts/data-chart/data-annotation-line-layer/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-line-layer/tslint.json b/samples/charts/data-chart/data-annotation-line-layer/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/.codesandbox/Dockerfile b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/.codesandbox/tasks.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/.stackblitzrc b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/angular.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json new file mode 100644 index 000000000..91376df51 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json @@ -0,0 +1,43 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.15.0" + }, + "devDependencies": { + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.6.3" + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/AnnotationSliceMultiOverlayData.ts b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/AnnotationSliceMultiOverlayData.ts new file mode 100644 index 000000000..72ae3c4d5 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/AnnotationSliceMultiOverlayData.ts @@ -0,0 +1,23 @@ +export class AnnotationSliceMultiOverlayDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + +} +export class AnnotationSliceMultiOverlayData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new AnnotationSliceMultiOverlayDataItem( + { + value: 50 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/StockTesla.ts b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/StockTesla.ts new file mode 100644 index 000000000..1efe6d6e4 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/StockTesla.ts @@ -0,0 +1,2523 @@ +export class StockTeslaItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public date: string; + public open: number; + public high: number; + public low: number; + public close: number; + public volume: number; + public change: number; + public index: number; + +} +export class StockTesla extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new StockTeslaItem( + { + date: `2019-01-10`, + open: 20.4, + high: 23, + low: 19.8, + close: 23, + volume: 779333701, + change: 12.7, + index: 0 + }), + new StockTeslaItem( + { + date: `2019-01-22`, + open: 22.8, + high: 23.5, + low: 19.7, + close: 19.9, + volume: 911781100, + change: -12.6, + index: 1 + }), + new StockTeslaItem( + { + date: `2019-01-31`, + open: 19.5, + high: 20.8, + low: 18.6, + close: 20.5, + volume: 926375717, + change: 5, + index: 2 + }), + new StockTeslaItem( + { + date: `2019-02-11`, + open: 20.4, + high: 21.6, + low: 19.9, + close: 20.9, + volume: 687520471, + change: 2.4, + index: 3 + }), + new StockTeslaItem( + { + date: `2019-02-21`, + open: 21.1, + high: 21.2, + low: 19.4, + close: 19.4, + volume: 597552272, + change: -7.9, + index: 4 + }), + new StockTeslaItem( + { + date: `2019-03-04`, + open: 19.6, + high: 21.3, + low: 18.9, + close: 19, + volume: 1218669201, + change: -3.1, + index: 5 + }), + new StockTeslaItem( + { + date: `2019-03-13`, + open: 18.8, + high: 19.5, + low: 18, + close: 19.3, + volume: 1034156904, + change: 2.5, + index: 6 + }), + new StockTeslaItem( + { + date: `2019-03-22`, + open: 19.5, + high: 19.7, + low: 17.6, + close: 17.6, + volume: 980694095, + change: -9.5, + index: 7 + }), + new StockTeslaItem( + { + date: `2019-04-02`, + open: 17.3, + high: 19.3, + low: 17, + close: 19.1, + volume: 788473494, + change: 10.1, + index: 8 + }), + new StockTeslaItem( + { + date: `2019-04-11`, + open: 19.2, + high: 19.7, + low: 17.4, + close: 17.9, + volume: 1165555442, + change: -6.6, + index: 9 + }), + new StockTeslaItem( + { + date: `2019-04-23`, + open: 18, + high: 18.3, + low: 17, + close: 17.6, + volume: 870373200, + change: -2.3, + index: 10 + }), + new StockTeslaItem( + { + date: `2019-05-02`, + open: 17.6, + high: 17.7, + low: 15.4, + close: 16.3, + volume: 1629432326, + change: -7.5, + index: 11 + }), + new StockTeslaItem( + { + date: `2019-05-13`, + open: 16.3, + high: 17.2, + low: 15, + close: 15.1, + volume: 1131045605, + change: -6.9, + index: 12 + }), + new StockTeslaItem( + { + date: `2019-05-22`, + open: 15.3, + high: 15.6, + low: 12.8, + close: 12.8, + volume: 1455503588, + change: -15.9, + index: 13 + }), + new StockTeslaItem( + { + date: `2019-06-03`, + open: 13, + high: 13.3, + low: 11.8, + close: 11.9, + volume: 1415442268, + change: -7.9, + index: 14 + }), + new StockTeslaItem( + { + date: `2019-06-12`, + open: 12.1, + high: 14.9, + low: 12, + close: 14, + volume: 1515000443, + change: 15.6, + index: 15 + }), + new StockTeslaItem( + { + date: `2019-06-21`, + open: 14, + high: 15.6, + low: 13.8, + close: 14.8, + volume: 1009123371, + change: 5.5, + index: 16 + }), + new StockTeslaItem( + { + date: `2019-07-02`, + open: 14.9, + high: 15.5, + low: 14.5, + close: 15, + volume: 766921642, + change: 0.6, + index: 17 + }), + new StockTeslaItem( + { + date: `2019-07-12`, + open: 16, + high: 16.4, + low: 15.2, + close: 16.3, + volume: 887983836, + change: 2.4, + index: 18 + }), + new StockTeslaItem( + { + date: `2019-07-23`, + open: 16.5, + high: 17.5, + low: 16.3, + close: 17.3, + volume: 788941000, + change: 4.9, + index: 19 + }), + new StockTeslaItem( + { + date: `2019-08-01`, + open: 17.3, + high: 17.7, + low: 14.8, + close: 15.6, + volume: 1175082297, + change: -9.8, + index: 20 + }), + new StockTeslaItem( + { + date: `2019-08-12`, + open: 15.4, + high: 16, + low: 15, + close: 15.3, + volume: 560129569, + change: -1, + index: 21 + }), + new StockTeslaItem( + { + date: `2019-08-21`, + open: 15.3, + high: 15.7, + low: 14.1, + close: 14.7, + volume: 677293701, + change: -3.5, + index: 22 + }), + new StockTeslaItem( + { + date: `2019-08-30`, + open: 14.9, + high: 15.5, + low: 14.1, + close: 15, + volume: 650239370, + change: 1.3, + index: 23 + }), + new StockTeslaItem( + { + date: `2019-09-11`, + open: 14.9, + high: 16.5, + low: 14.6, + close: 16.5, + volume: 636766167, + change: 10.3, + index: 24 + }), + new StockTeslaItem( + { + date: `2019-09-20`, + open: 16.5, + high: 16.9, + low: 15.9, + close: 16, + volume: 572802643, + change: -2.9, + index: 25 + }), + new StockTeslaItem( + { + date: `2019-10-01`, + open: 16, + high: 16.6, + low: 14.6, + close: 16.3, + volume: 931821239, + change: 2, + index: 26 + }), + new StockTeslaItem( + { + date: `2019-10-10`, + open: 16.2, + high: 16.6, + low: 15, + close: 16.3, + volume: 891798049, + change: 0.6, + index: 27 + }), + new StockTeslaItem( + { + date: `2019-10-21`, + open: 16.5, + high: 17.7, + low: 16.5, + close: 16.9, + volume: 713093463, + change: 2.6, + index: 28 + }), + new StockTeslaItem( + { + date: `2019-10-30`, + open: 17, + high: 22.7, + low: 16.7, + close: 21, + volume: 1752943598, + change: 23.9, + index: 29 + }), + new StockTeslaItem( + { + date: `2019-11-08`, + open: 20.9, + high: 22.8, + low: 20.6, + close: 22.5, + volume: 834957256, + change: 7.7, + index: 30 + }), + new StockTeslaItem( + { + date: `2019-11-19`, + open: 22.9, + high: 24, + low: 22.8, + close: 24, + volume: 738746390, + change: 4.5, + index: 31 + }), + new StockTeslaItem( + { + date: `2019-11-29`, + open: 24, + high: 24.1, + low: 21.8, + close: 22, + volume: 870685288, + change: -8.4, + index: 32 + }), + new StockTeslaItem( + { + date: `2019-12-10`, + open: 22, + high: 23.4, + low: 21.8, + close: 23.3, + volume: 712016613, + change: 5.9, + index: 33 + }), + new StockTeslaItem( + { + date: `2019-12-19`, + open: 23.5, + high: 27.1, + low: 23.4, + close: 26.9, + volume: 1203765433, + change: 14.8, + index: 34 + }), + new StockTeslaItem( + { + date: `2019-12-31`, + open: 27.4, + high: 29, + low: 26.7, + close: 27.9, + volume: 1195073357, + change: 2, + index: 35 + }), + new StockTeslaItem( + { + date: `2020-01-10`, + open: 28.3, + high: 33.3, + low: 28.1, + close: 31.9, + volume: 1925386078, + change: 12.6, + index: 36 + }), + new StockTeslaItem( + { + date: `2020-01-22`, + open: 32.9, + high: 39.6, + low: 32.8, + close: 38, + volume: 2364043518, + change: 15.4, + index: 37 + }), + new StockTeslaItem( + { + date: `2020-01-31`, + open: 37.6, + high: 43.5, + low: 36, + close: 43.4, + volume: 1835141382, + change: 15.3, + index: 38 + }), + new StockTeslaItem( + { + date: `2020-02-11`, + open: 44.9, + high: 64.6, + low: 44.9, + close: 51.6, + volume: 3748903126, + change: 14.9, + index: 39 + }), + new StockTeslaItem( + { + date: `2020-02-21`, + open: 51.9, + high: 63, + low: 49, + close: 60.1, + volume: 1921517039, + change: 15.8, + index: 40 + }), + new StockTeslaItem( + { + date: `2020-03-03`, + open: 55.9, + high: 57.6, + low: 40.8, + close: 49.7, + volume: 2121850940, + change: -11.1, + index: 41 + }), + new StockTeslaItem( + { + date: `2020-03-12`, + open: 50.9, + high: 51.1, + low: 36.4, + close: 37.4, + volume: 1553329923, + change: -26.6, + index: 42 + }), + new StockTeslaItem( + { + date: `2020-03-23`, + open: 39.7, + high: 40.5, + low: 23.4, + close: 29, + volume: 2487688157, + change: -27, + index: 43 + }), + new StockTeslaItem( + { + date: `2020-04-01`, + open: 31.8, + high: 37.3, + low: 31.6, + close: 32.1, + volume: 1785601357, + change: 0.9, + index: 44 + }), + new StockTeslaItem( + { + date: `2020-04-13`, + open: 32.1, + high: 43.5, + low: 29.8, + close: 43.4, + volume: 1860352620, + change: 35.3, + index: 45 + }), + new StockTeslaItem( + { + date: `2020-04-22`, + open: 46.6, + high: 51.7, + low: 44.9, + close: 48.8, + volume: 2056797321, + change: 4.7, + index: 46 + }), + new StockTeslaItem( + { + date: `2020-05-01`, + open: 48.5, + high: 58, + low: 45.5, + close: 46.8, + volume: 2093959203, + change: -3.6, + index: 47 + }), + new StockTeslaItem( + { + date: `2020-05-12`, + open: 46.7, + high: 56.2, + low: 46.5, + close: 54, + volume: 1611543246, + change: 15.5, + index: 48 + }), + new StockTeslaItem( + { + date: `2020-05-21`, + open: 54.7, + high: 55.6, + low: 50.9, + close: 55.2, + volume: 1262468113, + change: 0.8, + index: 49 + }), + new StockTeslaItem( + { + date: `2020-06-02`, + open: 54.8, + high: 60.6, + low: 52.3, + close: 58.8, + volume: 1160487993, + change: 7.2, + index: 50 + }), + new StockTeslaItem( + { + date: `2020-06-11`, + open: 59.2, + high: 68.5, + low: 57.2, + close: 64.9, + volume: 1270377400, + change: 9.5, + index: 51 + }), + new StockTeslaItem( + { + date: `2020-06-22`, + open: 65.3, + high: 67.9, + low: 60.6, + close: 66.3, + volume: 1217946366, + change: 1.5, + index: 52 + }), + new StockTeslaItem( + { + date: `2020-07-01`, + open: 66.6, + high: 75.7, + low: 62.5, + close: 74.6, + volume: 1120591270, + change: 12.1, + index: 53 + }), + new StockTeslaItem( + { + date: `2020-07-13`, + open: 81.4, + high: 119.7, + low: 79, + close: 99.8, + volume: 2244920779, + change: 22.6, + index: 54 + }), + new StockTeslaItem( + { + date: `2020-07-22`, + open: 103.7, + high: 111.7, + low: 95.4, + close: 106.2, + volume: 1662846099, + change: 2.3, + index: 55 + }), + new StockTeslaItem( + { + date: `2020-07-31`, + open: 111.9, + high: 112.6, + low: 91.1, + close: 95.4, + volume: 1573159944, + change: -14.8, + index: 56 + }), + new StockTeslaItem( + { + date: `2020-08-11`, + open: 96.6, + high: 101.8, + low: 91, + close: 91.6, + volume: 798587331, + change: -5.2, + index: 57 + }), + new StockTeslaItem( + { + date: `2020-08-20`, + open: 98, + high: 134.8, + low: 95.7, + close: 133.5, + volume: 1866534416, + change: 36.2, + index: 58 + }), + new StockTeslaItem( + { + date: `2020-08-31`, + open: 136.3, + high: 166.7, + low: 128.5, + close: 166.1, + volume: 2008507459, + change: 21.9, + index: 59 + }), + new StockTeslaItem( + { + date: `2020-09-10`, + open: 167.4, + high: 167.5, + low: 110, + close: 123.8, + volume: 1992227059, + change: -26, + index: 60 + }), + new StockTeslaItem( + { + date: `2020-09-21`, + open: 127.3, + high: 154, + low: 120.2, + close: 149.8, + volume: 1758737696, + change: 17.7, + index: 61 + }), + new StockTeslaItem( + { + date: `2020-09-30`, + open: 143.2, + high: 145.9, + low: 117.1, + close: 143, + volume: 1459893236, + change: -0.1, + index: 62 + }), + new StockTeslaItem( + { + date: `2020-10-09`, + open: 146.9, + high: 149.6, + low: 135.4, + close: 144.7, + volume: 985545158, + change: -1.5, + index: 63 + }), + new StockTeslaItem( + { + date: `2020-10-20`, + open: 147.3, + high: 155.3, + low: 139.7, + close: 140.6, + volume: 773077727, + change: -4.5, + index: 64 + }), + new StockTeslaItem( + { + date: `2020-10-29`, + open: 140.9, + high: 148.4, + low: 135.3, + close: 136.9, + volume: 615339122, + change: -2.8, + index: 65 + }), + new StockTeslaItem( + { + date: `2020-11-09`, + open: 135.6, + high: 150.8, + low: 126.4, + close: 140.4, + volume: 669171368, + change: 3.5, + index: 66 + }), + new StockTeslaItem( + { + date: `2020-11-18`, + open: 140, + high: 165.3, + low: 132, + close: 162.2, + volume: 760451265, + change: 15.8, + index: 67 + }), + new StockTeslaItem( + { + date: `2020-11-30`, + open: 164, + high: 202.6, + low: 162.5, + close: 189.2, + volume: 1046371155, + change: 15.4, + index: 68 + }), + new StockTeslaItem( + { + date: `2020-12-09`, + open: 199.2, + high: 218.1, + low: 180.4, + close: 201.5, + volume: 1055933265, + change: 1.2, + index: 69 + }), + new StockTeslaItem( + { + date: `2020-12-18`, + open: 191.5, + high: 231.7, + low: 188.8, + close: 231.7, + volume: 1593943601, + change: 21, + index: 70 + }), + new StockTeslaItem( + { + date: `2020-12-30`, + open: 222.1, + high: 232.2, + low: 204.7, + close: 231.6, + volume: 791942570, + change: 4.3, + index: 71 + }), + new StockTeslaItem( + { + date: `2021-01-11`, + open: 233.3, + high: 294.8, + low: 230.4, + close: 270.4, + volume: 1084025779, + change: 15.9, + index: 72 + }), + new StockTeslaItem( + { + date: `2021-01-21`, + open: 277, + high: 289.3, + low: 273, + close: 281.7, + volume: 663774487, + change: 1.7, + index: 73 + }), + new StockTeslaItem( + { + date: `2021-02-01`, + open: 278.1, + high: 300.1, + low: 260, + close: 279.9, + volume: 595397009, + change: 0.7, + index: 74 + }), + new StockTeslaItem( + { + date: `2021-02-10`, + open: 281.6, + high: 293.5, + low: 266.7, + close: 268.3, + volume: 445813486, + change: -4.7, + index: 75 + }), + new StockTeslaItem( + { + date: `2021-02-22`, + open: 270.8, + high: 276.6, + low: 236.7, + close: 238.2, + volume: 496372009, + change: -12.1, + index: 76 + }), + new StockTeslaItem( + { + date: `2021-03-03`, + open: 220.7, + high: 290.7, + low: 206.3, + close: 217.7, + volume: 793689739, + change: -1.3, + index: 77 + }), + new StockTeslaItem( + { + date: `2021-03-12`, + open: 218.6, + high: 291.3, + low: 179.8, + close: 231.2, + volume: 1215209162, + change: 5.8, + index: 78 + }), + new StockTeslaItem( + { + date: `2021-03-23`, + open: 231.4, + high: 237.7, + low: 208.2, + close: 220.7, + volume: 744776145, + change: -4.6, + index: 79 + }), + new StockTeslaItem( + { + date: `2021-04-01`, + open: 222.6, + high: 230.8, + low: 197, + close: 220.6, + volume: 730733684, + change: -0.9, + index: 80 + }), + new StockTeslaItem( + { + date: `2021-04-13`, + open: 235.9, + high: 254.3, + low: 222.6, + close: 254.1, + volume: 646721884, + change: 7.7, + index: 81 + }), + new StockTeslaItem( + { + date: `2021-04-22`, + open: 256.9, + high: 260.3, + low: 230.6, + close: 239.9, + volume: 740840774, + change: -6.6, + index: 82 + }), + new StockTeslaItem( + { + date: `2021-05-03`, + open: 239.9, + high: 249.8, + low: 222, + close: 228.3, + volume: 623423313, + change: -4.8, + index: 83 + }), + new StockTeslaItem( + { + date: `2021-05-12`, + open: 226.3, + high: 230, + low: 195.6, + close: 196.6, + volume: 643844974, + change: -13.1, + index: 84 + }), + new StockTeslaItem( + { + date: `2021-05-21`, + open: 200.5, + high: 202.2, + low: 182.3, + close: 193.6, + volume: 729192883, + change: -3.4, + index: 85 + }), + new StockTeslaItem( + { + date: `2021-06-02`, + open: 193.9, + high: 211.9, + low: 191.2, + close: 201.7, + volume: 545095944, + change: 4, + index: 86 + }), + new StockTeslaItem( + { + date: `2021-06-11`, + open: 200.6, + high: 207.7, + low: 190.4, + close: 203.3, + volume: 478366128, + change: 1.3, + index: 87 + }), + new StockTeslaItem( + { + date: `2021-06-22`, + open: 204.1, + high: 210.5, + low: 197.8, + close: 207.9, + volume: 454698495, + change: 1.9, + index: 88 + }), + new StockTeslaItem( + { + date: `2021-07-01`, + open: 210.7, + high: 232.5, + low: 210, + close: 226, + volume: 558441596, + change: 7.3, + index: 89 + }), + new StockTeslaItem( + { + date: `2021-07-13`, + open: 226.3, + high: 233.3, + low: 206.8, + close: 222.8, + volume: 470942387, + change: -1.5, + index: 90 + }), + new StockTeslaItem( + { + date: `2021-07-22`, + open: 223.6, + high: 226.2, + low: 207.1, + close: 216.4, + volume: 372195097, + change: -3.2, + index: 91 + }), + new StockTeslaItem( + { + date: `2021-08-02`, + open: 215.5, + high: 242.3, + low: 209.1, + close: 236.6, + volume: 547284685, + change: 9.8, + index: 92 + }), + new StockTeslaItem( + { + date: `2021-08-11`, + open: 239.7, + high: 241.6, + low: 232.5, + close: 235.9, + volume: 315341455, + change: -1.6, + index: 93 + }), + new StockTeslaItem( + { + date: `2021-08-20`, + open: 235.4, + high: 243.3, + low: 216.3, + close: 226.8, + volume: 392227478, + change: -3.7, + index: 94 + }), + new StockTeslaItem( + { + date: `2021-08-31`, + open: 228.5, + high: 246.8, + low: 226.9, + close: 245.2, + volume: 337503634, + change: 7.3, + index: 95 + }), + new StockTeslaItem( + { + date: `2021-09-10`, + open: 244.7, + high: 254.8, + low: 241.4, + close: 245.4, + volume: 328100734, + change: 0.3, + index: 96 + }), + new StockTeslaItem( + { + date: `2021-09-21`, + open: 246.7, + high: 253.7, + low: 236.3, + close: 246.5, + volume: 420153012, + change: -0.1, + index: 97 + }), + new StockTeslaItem( + { + date: `2021-09-30`, + open: 247.8, + high: 266.3, + low: 246.4, + close: 258.5, + volume: 422393262, + change: 4.3, + index: 98 + }), + new StockTeslaItem( + { + date: `2021-10-11`, + open: 259.5, + high: 269, + low: 254.5, + close: 264, + volume: 392144589, + change: 1.7, + index: 99 + }), + new StockTeslaItem( + { + date: `2021-10-20`, + open: 267, + high: 292.6, + low: 265.5, + close: 288.6, + volume: 368796877, + change: 8.1, + index: 100 + }), + new StockTeslaItem( + { + date: `2021-10-29`, + open: 285.3, + high: 371.7, + low: 285.2, + close: 371.3, + volume: 825862313, + change: 30.1, + index: 101 + }), + new StockTeslaItem( + { + date: `2021-11-09`, + open: 381.7, + high: 414.5, + low: 337.2, + close: 341.2, + volume: 818978542, + change: -10.6, + index: 102 + }), + new StockTeslaItem( + { + date: `2021-11-18`, + open: 336.8, + high: 373.2, + low: 326.2, + close: 365.5, + volume: 613304311, + change: 8.5, + index: 103 + }), + new StockTeslaItem( + { + date: `2021-11-30`, + open: 366.3, + high: 400.6, + low: 354, + close: 381.6, + volume: 515052382, + change: 4.2, + index: 104 + }), + new StockTeslaItem( + { + date: `2021-12-09`, + open: 386.9, + high: 390.9, + low: 316.8, + close: 334.6, + volume: 473333567, + change: -13.5, + index: 105 + }), + new StockTeslaItem( + { + date: `2021-12-20`, + open: 336.2, + high: 340.3, + low: 297.8, + close: 300, + volume: 524367113, + change: -10.8, + index: 106 + }), + new StockTeslaItem( + { + date: `2021-12-30`, + open: 305.6, + high: 373, + low: 295.4, + close: 356.8, + volume: 492530059, + change: 16.7, + index: 107 + }), + new StockTeslaItem( + { + date: `2022-01-10`, + open: 357.8, + high: 402.7, + low: 326.7, + close: 352.7, + volume: 592103938, + change: -1.4, + index: 108 + }), + new StockTeslaItem( + { + date: `2022-01-20`, + open: 351.2, + high: 371.9, + low: 331.3, + close: 332.1, + volume: 532857144, + change: -5.4, + index: 109 + }), + new StockTeslaItem( + { + date: `2022-01-31`, + open: 332.1, + high: 334.8, + low: 264, + close: 312.2, + volume: 833589022, + change: -6, + index: 110 + }), + new StockTeslaItem( + { + date: `2022-02-09`, + open: 311.7, + high: 315.9, + low: 293.5, + close: 310.7, + volume: 456395505, + change: -0.3, + index: 111 + }), + new StockTeslaItem( + { + date: `2022-02-18`, + open: 302.8, + high: 314.6, + low: 279.2, + close: 285.7, + volume: 446153356, + change: -5.7, + index: 112 + }), + new StockTeslaItem( + { + date: `2022-03-02`, + open: 278, + high: 296.6, + low: 233.3, + close: 293.3, + volume: 638352514, + change: 5.5, + index: 113 + }), + new StockTeslaItem( + { + date: `2022-03-11`, + open: 292.9, + high: 295.5, + low: 260.7, + close: 265.1, + volume: 466566467, + change: -9.5, + index: 114 + }), + new StockTeslaItem( + { + date: `2022-03-22`, + open: 260.2, + high: 332.6, + low: 252, + close: 331.3, + volume: 576869668, + change: 27.3, + index: 115 + }), + new StockTeslaItem( + { + date: `2022-03-31`, + open: 326.6, + high: 371.6, + low: 325.5, + close: 359.2, + volume: 536607263, + change: 10, + index: 116 + }), + new StockTeslaItem( + { + date: `2022-04-11`, + open: 360.4, + high: 384.3, + low: 324.9, + close: 325.3, + volume: 499682510, + change: -9.7, + index: 117 + }), + new StockTeslaItem( + { + date: `2022-04-21`, + open: 332.5, + high: 364.1, + low: 324.4, + close: 336.3, + volume: 457210487, + change: 1.1, + index: 118 + }), + new StockTeslaItem( + { + date: `2022-05-02`, + open: 338.3, + high: 345, + low: 273.9, + close: 301, + volume: 639990965, + change: -11, + index: 119 + }), + new StockTeslaItem( + { + date: `2022-05-11`, + open: 301.1, + high: 318.5, + low: 242.4, + close: 244.7, + volume: 583211967, + change: -18.7, + index: 120 + }), + new StockTeslaItem( + { + date: `2022-05-20`, + open: 233.7, + high: 262.4, + low: 211, + close: 221.3, + volume: 721880082, + change: -5.3, + index: 121 + }), + new StockTeslaItem( + { + date: `2022-06-01`, + open: 218.3, + high: 259.6, + low: 206.9, + close: 246.8, + volume: 644596235, + change: 13, + index: 122 + }), + new StockTeslaItem( + { + date: `2022-06-10`, + open: 244.2, + high: 264.2, + low: 227.9, + close: 232.2, + volume: 633672873, + change: -4.9, + index: 123 + }), + new StockTeslaItem( + { + date: `2022-06-22`, + open: 223.2, + high: 246.8, + low: 208.7, + close: 236.1, + volume: 744240764, + change: 5.8, + index: 124 + }), + new StockTeslaItem( + { + date: `2022-07-01`, + open: 237.9, + high: 252.1, + low: 218.9, + close: 227.3, + volume: 631776422, + change: -4.5, + index: 125 + }), + new StockTeslaItem( + { + date: `2022-07-13`, + open: 223, + high: 255, + low: 216.2, + close: 237, + volume: 625812242, + change: 6.3, + index: 126 + }), + new StockTeslaItem( + { + date: `2022-07-22`, + open: 234.9, + high: 280.8, + low: 229.3, + close: 272.2, + volume: 646037224, + change: 15.9, + index: 127 + }), + new StockTeslaItem( + { + date: `2022-08-02`, + open: 272.2, + high: 311.9, + low: 256.3, + close: 300.6, + volume: 611660612, + change: 10.4, + index: 128 + }), + new StockTeslaItem( + { + date: `2022-08-11`, + open: 305, + high: 313.6, + low: 279.4, + close: 286.6, + volume: 616204291, + change: -6, + index: 129 + }), + new StockTeslaItem( + { + date: `2022-08-22`, + open: 289.4, + high: 314.7, + low: 285, + close: 289.9, + volume: 490658060, + change: 0.2, + index: 130 + }), + new StockTeslaItem( + { + date: `2022-08-31`, + open: 291.5, + high: 303.6, + low: 271.8, + close: 275.6, + volume: 376152572, + change: -5.4, + index: 131 + }), + new StockTeslaItem( + { + date: `2022-09-12`, + open: 272.6, + high: 305.5, + low: 265.7, + close: 304.4, + volume: 367924580, + change: 11.7, + index: 132 + }), + new StockTeslaItem( + { + date: `2022-09-21`, + open: 292.9, + high: 313.8, + low: 290.4, + close: 300.8, + volume: 477171180, + change: 2.7, + index: 133 + }), + new StockTeslaItem( + { + date: `2022-09-30`, + open: 299.9, + high: 301.3, + low: 262.5, + close: 265.2, + volume: 454307920, + change: -11.5, + index: 134 + }), + new StockTeslaItem( + { + date: `2022-10-11`, + open: 254.5, + high: 257.5, + low: 215, + close: 216.5, + volume: 593078170, + change: -14.9, + index: 135 + }), + new StockTeslaItem( + { + date: `2022-10-20`, + open: 215.3, + high: 229.8, + low: 202, + close: 207.3, + volume: 592158560, + change: -3.7, + index: 136 + }), + new StockTeslaItem( + { + date: `2022-10-31`, + open: 206.4, + high: 233.8, + low: 198.6, + close: 227.5, + volume: 550341050, + change: 10.2, + index: 137 + }), + new StockTeslaItem( + { + date: `2022-11-09`, + open: 234, + high: 237.4, + low: 177.1, + close: 177.6, + volume: 630702790, + change: -24.1, + index: 138 + }), + new StockTeslaItem( + { + date: `2022-11-18`, + open: 189.9, + high: 200.8, + low: 176.6, + close: 180.2, + volume: 637579480, + change: -5.1, + index: 139 + }), + new StockTeslaItem( + { + date: `2022-11-30`, + open: 175.8, + high: 194.8, + low: 166.2, + close: 194.7, + volume: 617126140, + change: 10.7, + index: 140 + }), + new StockTeslaItem( + { + date: `2022-12-09`, + open: 197.1, + high: 198.9, + low: 169.1, + close: 179, + volume: 625675690, + change: -9.1, + index: 141 + }), + new StockTeslaItem( + { + date: `2022-12-20`, + open: 176.1, + high: 177.4, + low: 137.7, + close: 137.8, + volume: 986660100, + change: -21.7, + index: 142 + }), + new StockTeslaItem( + { + date: `2022-12-30`, + open: 139.3, + high: 141.3, + low: 108.2, + close: 123.2, + volume: 1331911900, + change: -11.6, + index: 143 + }), + new StockTeslaItem( + { + date: `2023-01-11`, + open: 118.5, + high: 126, + low: 101.8, + close: 123.2, + volume: 1332426500, + change: 4, + index: 144 + }), + new StockTeslaItem( + { + date: `2023-01-23`, + open: 122.6, + high: 145.4, + low: 115.6, + close: 143.8, + volume: 1244541500, + change: 17.3, + index: 145 + }), + new StockTeslaItem( + { + date: `2023-02-01`, + open: 143, + high: 183.8, + low: 138.1, + close: 181.4, + volume: 1534337700, + change: 26.9, + index: 146 + }), + new StockTeslaItem( + { + date: `2023-02-10`, + open: 187.3, + high: 214, + low: 182.6, + close: 196.9, + volume: 1423167800, + change: 5.1, + index: 147 + }), + new StockTeslaItem( + { + date: `2023-02-22`, + open: 194.4, + high: 217.6, + low: 187.6, + close: 200.9, + volume: 1386211900, + change: 3.3, + index: 148 + }), + new StockTeslaItem( + { + date: `2023-03-03`, + open: 203.9, + high: 211.2, + low: 186, + close: 197.8, + volume: 1095786600, + change: -3, + index: 149 + }), + new StockTeslaItem( + { + date: `2023-03-14`, + open: 198.5, + high: 198.6, + low: 163.9, + close: 183.3, + volume: 1101144600, + change: -7.7, + index: 150 + }), + new StockTeslaItem( + { + date: `2023-03-23`, + open: 180.8, + high: 200.7, + low: 176, + close: 192.2, + volume: 978213300, + change: 6.3, + index: 151 + }), + new StockTeslaItem( + { + date: `2023-04-03`, + open: 191.6, + high: 207.8, + low: 185.4, + close: 194.8, + volume: 909718040, + change: 1.6, + index: 152 + }), + new StockTeslaItem( + { + date: `2023-04-13`, + open: 197.3, + high: 198.7, + low: 176.1, + close: 185.9, + volume: 905319000, + change: -5.8, + index: 153 + }), + new StockTeslaItem( + { + date: `2023-04-24`, + open: 184, + high: 189.7, + low: 158.6, + close: 162.6, + volume: 905416980, + change: -11.6, + index: 154 + }), + new StockTeslaItem( + { + date: `2023-05-03`, + open: 159.8, + high: 165.5, + low: 152.4, + close: 160.6, + volume: 881897100, + change: 0.5, + index: 155 + }), + new StockTeslaItem( + { + date: `2023-05-12`, + open: 162.7, + high: 177.4, + low: 159.6, + close: 168, + volume: 785510430, + change: 3.2, + index: 156 + }), + new StockTeslaItem( + { + date: `2023-05-23`, + open: 167.7, + high: 193, + low: 164.4, + close: 185.8, + volume: 864025390, + change: 10.8, + index: 157 + }), + new StockTeslaItem( + { + date: `2023-06-02`, + open: 182.2, + high: 217.2, + low: 178.2, + close: 214, + volume: 988496020, + change: 17.4, + index: 158 + }), + new StockTeslaItem( + { + date: `2023-06-13`, + open: 217.8, + high: 259.7, + low: 212.5, + close: 258.7, + volume: 1161622400, + change: 18.8, + index: 159 + }), + new StockTeslaItem( + { + date: `2023-06-23`, + open: 260.2, + high: 277, + low: 247.3, + close: 256.6, + volume: 1220407300, + change: -1.4, + index: 160 + }), + new StockTeslaItem( + { + date: `2023-07-05`, + open: 250.1, + high: 284.2, + low: 240.7, + close: 282.5, + volume: 999163700, + change: 13, + index: 161 + }), + new StockTeslaItem( + { + date: `2023-07-14`, + open: 278.1, + high: 285.3, + low: 265.1, + close: 281.4, + volume: 774400400, + change: 1.2, + index: 162 + }), + new StockTeslaItem( + { + date: `2023-07-25`, + open: 286.6, + high: 299.3, + low: 254.1, + close: 265.3, + volume: 973076400, + change: -7.4, + index: 163 + }), + new StockTeslaItem( + { + date: `2023-08-03`, + open: 263.2, + high: 269.1, + low: 250.5, + close: 259.3, + volume: 678809820, + change: -1.5, + index: 164 + }), + new StockTeslaItem( + { + date: `2023-08-14`, + open: 261, + high: 264.8, + low: 233.8, + close: 239.8, + volume: 716008860, + change: -8.1, + index: 165 + }), + new StockTeslaItem( + { + date: `2023-08-23`, + open: 238.7, + high: 240.8, + low: 212.4, + close: 236.9, + volume: 825055300, + change: -0.8, + index: 166 + }), + new StockTeslaItem( + { + date: `2023-09-01`, + open: 238.7, + high: 261.2, + low: 228.2, + close: 245, + volume: 811502630, + change: 2.7, + index: 167 + }), + new StockTeslaItem( + { + date: `2023-09-13`, + open: 245, + high: 278.4, + low: 243.3, + close: 271.3, + volume: 902643400, + change: 10.7, + index: 168 + }), + new StockTeslaItem( + { + date: `2023-09-22`, + open: 271.3, + high: 279, + low: 244.5, + close: 244.9, + volume: 816639600, + change: -9.7, + index: 169 + }), + new StockTeslaItem( + { + date: `2023-10-03`, + open: 243.4, + high: 254.8, + low: 234.6, + close: 246.5, + volume: 814604700, + change: 1.3, + index: 170 + }), + new StockTeslaItem( + { + date: `2023-10-12`, + open: 248.1, + high: 268.9, + low: 247.6, + close: 258.9, + volume: 806250900, + change: 4.3, + index: 171 + }), + new StockTeslaItem( + { + date: `2023-10-23`, + open: 258.9, + high: 259.6, + low: 202.5, + close: 212.1, + volume: 869390890, + change: -18.1, + index: 172 + }), + new StockTeslaItem( + { + date: `2023-11-01`, + open: 216.5, + high: 222, + low: 194.1, + close: 205.7, + volume: 811468170, + change: -5, + index: 173 + }), + new StockTeslaItem( + { + date: `2023-11-10`, + open: 213, + high: 226.4, + low: 205.7, + close: 214.6, + volume: 859763700, + change: 0.8, + index: 174 + }), + new StockTeslaItem( + { + date: `2023-11-21`, + open: 215.6, + high: 246.7, + low: 211.6, + close: 241.2, + volume: 959006600, + change: 11.9, + index: 175 + }), + new StockTeslaItem( + { + date: `2023-12-01`, + open: 242, + high: 252.8, + low: 231.4, + close: 238.8, + volume: 832910200, + change: -1.3, + index: 176 + }), + new StockTeslaItem( + { + date: `2023-12-12`, + open: 235.8, + high: 246.7, + low: 233.3, + close: 237, + volume: 772018400, + change: 0.5, + index: 177 + }), + new StockTeslaItem( + { + date: `2023-12-21`, + open: 234.2, + high: 259.8, + low: 228.2, + close: 254.5, + volume: 900893400, + change: 8.7, + index: 178 + }), + new StockTeslaItem( + { + date: `2024-01-03`, + open: 256.8, + high: 265.1, + low: 236.3, + close: 238.4, + volume: 727005170, + change: -7.1, + index: 179 + }), + new StockTeslaItem( + { + date: `2024-01-12`, + open: 239.2, + high: 242.7, + low: 217.2, + close: 218.9, + volume: 697536380, + change: -8.5, + index: 180 + }), + new StockTeslaItem( + { + date: `2024-01-24`, + open: 215.1, + high: 223.5, + low: 206.3, + close: 207.8, + volume: 777303400, + change: -3.4, + index: 181 + }), + new StockTeslaItem( + { + date: `2024-02-02`, + open: 189.7, + high: 196.4, + low: 180.1, + close: 187.9, + volume: 846092780, + change: -0.9, + index: 182 + }), + new StockTeslaItem( + { + date: `2024-02-13`, + open: 184.3, + high: 194.7, + low: 175, + close: 184, + volume: 718274070, + change: -0.1, + index: 183 + }), + new StockTeslaItem( + { + date: `2024-02-23`, + open: 185.3, + high: 203.2, + low: 183.4, + close: 192, + volume: 693352670, + change: 3.6, + index: 184 + }), + new StockTeslaItem( + { + date: `2024-03-05`, + open: 192.3, + high: 205.6, + low: 177.6, + close: 180.7, + volume: 742344460, + change: -6, + index: 185 + }), + new StockTeslaItem( + { + date: `2024-03-14`, + open: 180, + high: 182.9, + low: 160.5, + close: 162.5, + volume: 701227950, + change: -9.7, + index: 186 + }), + new StockTeslaItem( + { + date: `2024-03-25`, + open: 163.2, + high: 178.2, + low: 160.8, + close: 172.6, + volume: 589466660, + change: 5.8, + index: 187 + }), + new StockTeslaItem( + { + date: `2024-04-04`, + open: 178.6, + high: 184.2, + low: 163.3, + close: 171.1, + volume: 676969950, + change: -4.2, + index: 188 + }), + new StockTeslaItem( + { + date: `2024-04-15`, + open: 169.1, + high: 179.2, + low: 160.5, + close: 161.5, + volume: 694829970, + change: -4.5, + index: 189 + }), + new StockTeslaItem( + { + date: `2024-04-24`, + open: 156.7, + high: 168, + low: 138.8, + close: 162.1, + volume: 775433710, + change: 3.4, + index: 190 + }), + new StockTeslaItem( + { + date: `2024-05-03`, + open: 159, + high: 198.9, + low: 158.4, + close: 181.2, + volume: 864614000, + change: 14, + index: 191 + }), + new StockTeslaItem( + { + date: `2024-05-14`, + open: 183.8, + high: 187.6, + low: 167.8, + close: 177.6, + volume: 531409380, + change: -3.4, + index: 192 + }), + new StockTeslaItem( + { + date: `2024-05-23`, + open: 179.9, + high: 186.9, + low: 171.4, + close: 173.7, + volume: 554203970, + change: -3.4, + index: 193 + }), + new StockTeslaItem( + { + date: `2024-06-04`, + open: 174.8, + high: 182.7, + low: 173.2, + close: 174.8, + volume: 453828370, + change: 0, + index: 194 + }), + new StockTeslaItem( + { + date: `2024-06-13`, + open: 175.4, + high: 191.1, + low: 167.4, + close: 182.5, + volume: 509090870, + change: 4.1, + index: 195 + }), + new StockTeslaItem( + { + date: `2024-06-25`, + open: 185.8, + high: 188.8, + low: 176.9, + close: 187.4, + volume: 505399520, + change: 0.8, + index: 196 + }), + new StockTeslaItem( + { + date: `2024-07-05`, + open: 186.5, + high: 252.4, + low: 186.4, + close: 251.5, + volume: 925723660, + change: 34.8, + index: 197 + }), + new StockTeslaItem( + { + date: `2024-07-16`, + open: 247.7, + high: 271, + low: 233.1, + close: 256.6, + volume: 1097390000, + change: 3.6, + index: 198 + }), + new StockTeslaItem( + { + date: `2024-07-25`, + open: 252.7, + high: 258.5, + low: 214.7, + close: 220.2, + volume: 795590700, + change: -12.9, + index: 199 + }), + new StockTeslaItem( + { + date: `2024-08-05`, + open: 221.2, + high: 234.7, + low: 182, + close: 198.9, + volume: 658914080, + change: -10.1, + index: 200 + }), + new StockTeslaItem( + { + date: `2024-08-14`, + open: 200.8, + high: 208.5, + low: 191.5, + close: 201.4, + volume: 479168160, + change: 0.3, + index: 201 + }), + new StockTeslaItem( + { + date: `2024-08-23`, + open: 205, + high: 228.2, + low: 204.8, + close: 220.3, + volume: 560235700, + change: 7.5, + index: 202 + }), + new StockTeslaItem( + { + date: `2024-09-04`, + open: 218.8, + high: 222.2, + low: 202.6, + close: 219.4, + volume: 469284350, + change: 0.3, + index: 203 + }), + new StockTeslaItem( + { + date: `2024-09-13`, + open: 223.5, + high: 235, + low: 210.5, + close: 230.3, + volume: 592950440, + change: 3, + index: 204 + }), + new StockTeslaItem( + { + date: `2024-09-24`, + open: 229.3, + high: 257.2, + low: 223.5, + close: 254.3, + volume: 577086700, + change: 10.9, + index: 205 + }), + new StockTeslaItem( + { + date: `2024-10-03`, + open: 252.5, + high: 264.9, + low: 237.8, + close: 240.7, + volume: 546148740, + change: -4.7, + index: 206 + }), + new StockTeslaItem( + { + date: `2024-10-14`, + open: 246.7, + high: 251, + low: 213.7, + close: 219.2, + volume: 589440130, + change: -11.2, + index: 207 + }), + new StockTeslaItem( + { + date: `2024-10-23`, + open: 220, + high: 224.3, + low: 212.1, + close: 213.6, + volume: 384561880, + change: -2.9, + index: 208 + }), + new StockTeslaItem( + { + date: `2024-11-01`, + open: 244.7, + high: 273.5, + low: 242.6, + close: 249, + volume: 732392780, + change: 1.8, + index: 209 + }), + new StockTeslaItem( + { + date: `2024-11-12`, + open: 244.6, + high: 358.6, + low: 238.9, + close: 328.5, + volume: 991653160, + change: 34.3, + index: 210 + }), + new StockTeslaItem( + { + date: `2024-11-21`, + open: 335.8, + high: 348.5, + low: 309.2, + close: 339.6, + volume: 700324320, + change: 1.1, + index: 211 + }), + new StockTeslaItem( + { + date: `2024-12-03`, + open: 341.1, + high: 361.9, + low: 326.6, + close: 351.4, + volume: 478645220, + change: 3, + index: 212 + }), + new StockTeslaItem( + { + date: `2024-12-12`, + open: 353, + high: 429.3, + low: 348.6, + close: 418.1, + volume: 599082110, + change: 18.4, + index: 213 + }), + new StockTeslaItem( + { + date: `2024-12-23`, + open: 420, + high: 481.5, + low: 415.4, + close: 430.6, + volume: 807128120, + change: 2.5, + index: 214 + }), + new StockTeslaItem( + { + date: `2025-01-03`, + open: 435.9, + high: 465.3, + low: 373, + close: 410.4, + volume: 565769940, + change: -5.8, + index: 215 + }), + new StockTeslaItem( + { + date: `2025-01-15`, + open: 423.2, + high: 429.8, + low: 377.3, + close: 428.2, + volume: 530063170, + change: 1.2, + index: 216 + }), + new StockTeslaItem( + { + date: `2025-01-27`, + open: 423.5, + high: 439.7, + low: 389, + close: 397.2, + volume: 476854060, + change: -6.2, + index: 217 + }), + new StockTeslaItem( + { + date: `2025-02-05`, + open: 396.9, + high: 420, + low: 374.4, + close: 378.2, + volume: 507024510, + change: -4.7, + index: 218 + }), + new StockTeslaItem( + { + date: `2025-02-14`, + open: 373, + high: 380.6, + low: 325.1, + close: 355.8, + volume: 607376290, + change: -4.6, + index: 219 + }), + new StockTeslaItem( + { + date: `2025-02-26`, + open: 355, + high: 367.3, + low: 288, + close: 290.8, + volume: 549149490, + change: -18.1, + index: 220 + }), + new StockTeslaItem( + { + date: `2025-03-07`, + open: 291.2, + high: 303.9, + low: 250.7, + close: 262.7, + volume: 754567280, + change: -9.8, + index: 221 + }), + new StockTeslaItem( + { + date: `2025-03-18`, + open: 252.5, + high: 253.4, + low: 217, + close: 225.3, + volume: 944623000, + change: -10.8, + index: 222 + }), + new StockTeslaItem( + { + date: `2025-03-27`, + open: 231.6, + high: 291.8, + low: 229.2, + close: 273.1, + volume: 982018670, + change: 17.9, + index: 223 + }), + new StockTeslaItem( + { + date: `2025-04-07`, + open: 275.6, + high: 285, + low: 214.2, + close: 233.3, + volume: 1117950500, + change: -15.3, + index: 224 + }), + new StockTeslaItem( + { + date: `2025-04-16`, + open: 245, + high: 274.7, + low: 217.8, + close: 241.6, + volume: 993815820, + change: -1.4, + index: 225 + }), + new StockTeslaItem( + { + date: `2025-04-28`, + open: 243.5, + high: 294.9, + low: 222.8, + close: 285.9, + volume: 866169890, + change: 17.4, + index: 226 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/app.component.html b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/app.component.html new file mode 100644 index 000000000..5254a2464 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/app.component.html @@ -0,0 +1,84 @@ +
+
+ + + + + + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/app.component.scss b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/app.component.ts b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/app.component.ts new file mode 100644 index 000000000..e1ac87436 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/app.component.ts @@ -0,0 +1,58 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { StockTeslaItem, StockTesla } from './StockTesla'; +import { AnnotationSliceMultiOverlayDataItem, AnnotationSliceMultiOverlayData } from './AnnotationSliceMultiOverlayData'; +import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxLineSeriesComponent, IgxValueOverlayComponent, IgxValueLayerComponent, IgxDataAnnotationSliceLayerComponent } from 'igniteui-angular-charts'; + +@Component({ + standalone: false, + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("series1", { static: true } ) + private series1: IgxLineSeriesComponent + @ViewChild("valueOverlay", { static: true } ) + private valueOverlay: IgxValueOverlayComponent + @ViewChild("valueLayer", { static: true } ) + private valueLayer: IgxValueLayerComponent + @ViewChild("annoLayer", { static: true } ) + private annoLayer: IgxDataAnnotationSliceLayerComponent + private _stockTesla: StockTesla = null; + public get stockTesla(): StockTesla { + if (this._stockTesla == null) + { + this._stockTesla = new StockTesla(); + } + return this._stockTesla; + } + + private _annotationSliceMultiOverlayData: AnnotationSliceMultiOverlayData = null; + public get annotationSliceMultiOverlayData(): AnnotationSliceMultiOverlayData { + if (this._annotationSliceMultiOverlayData == null) + { + this._annotationSliceMultiOverlayData = new AnnotationSliceMultiOverlayData(); + } + return this._annotationSliceMultiOverlayData; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/app.module.ts b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/app.module.ts new file mode 100644 index 000000000..a1ec6918f --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/app.module.ts @@ -0,0 +1,34 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartCategoryCoreModule, IgxDataChartInteractivityModule, IgxAnnotationLayerProxyModule, IgxDataChartAnnotationModule, IgxDataAnnotationSliceLayerModule, IgxNumberAbbreviatorModule, IgxValueOverlayModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartCategoryCoreModule, + IgxDataChartInteractivityModule, + IgxAnnotationLayerProxyModule, + IgxDataChartAnnotationModule, + IgxDataAnnotationSliceLayerModule, + IgxNumberAbbreviatorModule, + IgxAnnotationLayerProxyModule, + IgxValueOverlayModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/environments/environment.prod.ts b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/environments/environment.ts b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/index.html b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/main.ts b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/polyfills.ts b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/styles.scss b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/typings.d.ts b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/tsconfig.app.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/tsconfig.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/tslint.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/.codesandbox/Dockerfile b/samples/charts/data-chart/data-annotation-multiple-with-stocks/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/.codesandbox/tasks.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/.stackblitzrc b/samples/charts/data-chart/data-annotation-multiple-with-stocks/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/angular.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json new file mode 100644 index 000000000..91376df51 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json @@ -0,0 +1,43 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.15.0" + }, + "devDependencies": { + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.6.3" + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationLineData1.ts b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationLineData1.ts new file mode 100644 index 000000000..e886d46bb --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationLineData1.ts @@ -0,0 +1,39 @@ +export class AnnotationLineData1Item { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public startX: number; + public startY: number; + public endX: number; + public endY: number; + public label: string; + +} +export class AnnotationLineData1 extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new AnnotationLineData1Item( + { + startX: 190, + startY: 138, + endX: 230, + endY: 138, + label: `52-Week Low` + }), + new AnnotationLineData1Item( + { + startX: 190, + startY: 481, + endX: 230, + endY: 481, + label: `52-Week High` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationLineData2.ts b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationLineData2.ts new file mode 100644 index 000000000..688a44c90 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationLineData2.ts @@ -0,0 +1,41 @@ +export class AnnotationLineData2Item { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public startX: number; + public startY: number; + public endX: number; + public endY: number; + public label: string; + +} +export class AnnotationLineData2 extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new AnnotationLineData2Item( + { + startX: 48, + startY: 25, + endX: 105, + endY: 250, + label: `Growth & +Support` + }), + new AnnotationLineData2Item( + { + startX: 108, + startY: 440, + endX: 155, + endY: 210, + label: `Decline & +Resistance` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationSliceEarningsBeatData.ts b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationSliceEarningsBeatData.ts new file mode 100644 index 000000000..766a09381 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationSliceEarningsBeatData.ts @@ -0,0 +1,35 @@ +export class AnnotationSliceEarningsBeatDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public label: string; + +} +export class AnnotationSliceEarningsBeatData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new AnnotationSliceEarningsBeatDataItem( + { + value: 155, + label: `Earnings Beat` + }), + new AnnotationSliceEarningsBeatDataItem( + { + value: 86, + label: `Earnings Beat` + }), + new AnnotationSliceEarningsBeatDataItem( + { + value: 28, + label: `Earnings Miss` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationSliceEarningsMissData.ts b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationSliceEarningsMissData.ts new file mode 100644 index 000000000..84cd8ac62 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationSliceEarningsMissData.ts @@ -0,0 +1,35 @@ +export class AnnotationSliceEarningsMissDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public label: string; + +} +export class AnnotationSliceEarningsMissData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new AnnotationSliceEarningsMissDataItem( + { + value: 9, + label: `Earnings Miss` + }), + new AnnotationSliceEarningsMissDataItem( + { + value: 179, + label: `Earnings Miss` + }), + new AnnotationSliceEarningsMissDataItem( + { + value: 215, + label: `Earnings Miss` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationSliceStockSplitData.ts b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationSliceStockSplitData.ts new file mode 100644 index 000000000..8b16a3894 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationSliceStockSplitData.ts @@ -0,0 +1,30 @@ +export class AnnotationSliceStockSplitDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public label: string; + +} +export class AnnotationSliceStockSplitData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new AnnotationSliceStockSplitDataItem( + { + value: 126, + label: `Stock Split 3-1` + }), + new AnnotationSliceStockSplitDataItem( + { + value: 61, + label: `Stock Split 5-1` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationStripData.ts b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationStripData.ts new file mode 100644 index 000000000..2dc12c54a --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationStripData.ts @@ -0,0 +1,39 @@ +export class AnnotationStripDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public start: number; + public end: number; + public label: string; + +} +export class AnnotationStripData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new AnnotationStripDataItem( + { + start: 40, + end: 45, + label: `Covid - Market Crash` + }), + new AnnotationStripDataItem( + { + start: 100, + end: 144, + label: `Fed Rate Up 0.25 - 5.25%` + }), + new AnnotationStripDataItem( + { + start: 190, + end: 205, + label: `Fed Rate Down 5.25% to 4.45%` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/StockTesla.ts b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/StockTesla.ts new file mode 100644 index 000000000..1efe6d6e4 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/StockTesla.ts @@ -0,0 +1,2523 @@ +export class StockTeslaItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public date: string; + public open: number; + public high: number; + public low: number; + public close: number; + public volume: number; + public change: number; + public index: number; + +} +export class StockTesla extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new StockTeslaItem( + { + date: `2019-01-10`, + open: 20.4, + high: 23, + low: 19.8, + close: 23, + volume: 779333701, + change: 12.7, + index: 0 + }), + new StockTeslaItem( + { + date: `2019-01-22`, + open: 22.8, + high: 23.5, + low: 19.7, + close: 19.9, + volume: 911781100, + change: -12.6, + index: 1 + }), + new StockTeslaItem( + { + date: `2019-01-31`, + open: 19.5, + high: 20.8, + low: 18.6, + close: 20.5, + volume: 926375717, + change: 5, + index: 2 + }), + new StockTeslaItem( + { + date: `2019-02-11`, + open: 20.4, + high: 21.6, + low: 19.9, + close: 20.9, + volume: 687520471, + change: 2.4, + index: 3 + }), + new StockTeslaItem( + { + date: `2019-02-21`, + open: 21.1, + high: 21.2, + low: 19.4, + close: 19.4, + volume: 597552272, + change: -7.9, + index: 4 + }), + new StockTeslaItem( + { + date: `2019-03-04`, + open: 19.6, + high: 21.3, + low: 18.9, + close: 19, + volume: 1218669201, + change: -3.1, + index: 5 + }), + new StockTeslaItem( + { + date: `2019-03-13`, + open: 18.8, + high: 19.5, + low: 18, + close: 19.3, + volume: 1034156904, + change: 2.5, + index: 6 + }), + new StockTeslaItem( + { + date: `2019-03-22`, + open: 19.5, + high: 19.7, + low: 17.6, + close: 17.6, + volume: 980694095, + change: -9.5, + index: 7 + }), + new StockTeslaItem( + { + date: `2019-04-02`, + open: 17.3, + high: 19.3, + low: 17, + close: 19.1, + volume: 788473494, + change: 10.1, + index: 8 + }), + new StockTeslaItem( + { + date: `2019-04-11`, + open: 19.2, + high: 19.7, + low: 17.4, + close: 17.9, + volume: 1165555442, + change: -6.6, + index: 9 + }), + new StockTeslaItem( + { + date: `2019-04-23`, + open: 18, + high: 18.3, + low: 17, + close: 17.6, + volume: 870373200, + change: -2.3, + index: 10 + }), + new StockTeslaItem( + { + date: `2019-05-02`, + open: 17.6, + high: 17.7, + low: 15.4, + close: 16.3, + volume: 1629432326, + change: -7.5, + index: 11 + }), + new StockTeslaItem( + { + date: `2019-05-13`, + open: 16.3, + high: 17.2, + low: 15, + close: 15.1, + volume: 1131045605, + change: -6.9, + index: 12 + }), + new StockTeslaItem( + { + date: `2019-05-22`, + open: 15.3, + high: 15.6, + low: 12.8, + close: 12.8, + volume: 1455503588, + change: -15.9, + index: 13 + }), + new StockTeslaItem( + { + date: `2019-06-03`, + open: 13, + high: 13.3, + low: 11.8, + close: 11.9, + volume: 1415442268, + change: -7.9, + index: 14 + }), + new StockTeslaItem( + { + date: `2019-06-12`, + open: 12.1, + high: 14.9, + low: 12, + close: 14, + volume: 1515000443, + change: 15.6, + index: 15 + }), + new StockTeslaItem( + { + date: `2019-06-21`, + open: 14, + high: 15.6, + low: 13.8, + close: 14.8, + volume: 1009123371, + change: 5.5, + index: 16 + }), + new StockTeslaItem( + { + date: `2019-07-02`, + open: 14.9, + high: 15.5, + low: 14.5, + close: 15, + volume: 766921642, + change: 0.6, + index: 17 + }), + new StockTeslaItem( + { + date: `2019-07-12`, + open: 16, + high: 16.4, + low: 15.2, + close: 16.3, + volume: 887983836, + change: 2.4, + index: 18 + }), + new StockTeslaItem( + { + date: `2019-07-23`, + open: 16.5, + high: 17.5, + low: 16.3, + close: 17.3, + volume: 788941000, + change: 4.9, + index: 19 + }), + new StockTeslaItem( + { + date: `2019-08-01`, + open: 17.3, + high: 17.7, + low: 14.8, + close: 15.6, + volume: 1175082297, + change: -9.8, + index: 20 + }), + new StockTeslaItem( + { + date: `2019-08-12`, + open: 15.4, + high: 16, + low: 15, + close: 15.3, + volume: 560129569, + change: -1, + index: 21 + }), + new StockTeslaItem( + { + date: `2019-08-21`, + open: 15.3, + high: 15.7, + low: 14.1, + close: 14.7, + volume: 677293701, + change: -3.5, + index: 22 + }), + new StockTeslaItem( + { + date: `2019-08-30`, + open: 14.9, + high: 15.5, + low: 14.1, + close: 15, + volume: 650239370, + change: 1.3, + index: 23 + }), + new StockTeslaItem( + { + date: `2019-09-11`, + open: 14.9, + high: 16.5, + low: 14.6, + close: 16.5, + volume: 636766167, + change: 10.3, + index: 24 + }), + new StockTeslaItem( + { + date: `2019-09-20`, + open: 16.5, + high: 16.9, + low: 15.9, + close: 16, + volume: 572802643, + change: -2.9, + index: 25 + }), + new StockTeslaItem( + { + date: `2019-10-01`, + open: 16, + high: 16.6, + low: 14.6, + close: 16.3, + volume: 931821239, + change: 2, + index: 26 + }), + new StockTeslaItem( + { + date: `2019-10-10`, + open: 16.2, + high: 16.6, + low: 15, + close: 16.3, + volume: 891798049, + change: 0.6, + index: 27 + }), + new StockTeslaItem( + { + date: `2019-10-21`, + open: 16.5, + high: 17.7, + low: 16.5, + close: 16.9, + volume: 713093463, + change: 2.6, + index: 28 + }), + new StockTeslaItem( + { + date: `2019-10-30`, + open: 17, + high: 22.7, + low: 16.7, + close: 21, + volume: 1752943598, + change: 23.9, + index: 29 + }), + new StockTeslaItem( + { + date: `2019-11-08`, + open: 20.9, + high: 22.8, + low: 20.6, + close: 22.5, + volume: 834957256, + change: 7.7, + index: 30 + }), + new StockTeslaItem( + { + date: `2019-11-19`, + open: 22.9, + high: 24, + low: 22.8, + close: 24, + volume: 738746390, + change: 4.5, + index: 31 + }), + new StockTeslaItem( + { + date: `2019-11-29`, + open: 24, + high: 24.1, + low: 21.8, + close: 22, + volume: 870685288, + change: -8.4, + index: 32 + }), + new StockTeslaItem( + { + date: `2019-12-10`, + open: 22, + high: 23.4, + low: 21.8, + close: 23.3, + volume: 712016613, + change: 5.9, + index: 33 + }), + new StockTeslaItem( + { + date: `2019-12-19`, + open: 23.5, + high: 27.1, + low: 23.4, + close: 26.9, + volume: 1203765433, + change: 14.8, + index: 34 + }), + new StockTeslaItem( + { + date: `2019-12-31`, + open: 27.4, + high: 29, + low: 26.7, + close: 27.9, + volume: 1195073357, + change: 2, + index: 35 + }), + new StockTeslaItem( + { + date: `2020-01-10`, + open: 28.3, + high: 33.3, + low: 28.1, + close: 31.9, + volume: 1925386078, + change: 12.6, + index: 36 + }), + new StockTeslaItem( + { + date: `2020-01-22`, + open: 32.9, + high: 39.6, + low: 32.8, + close: 38, + volume: 2364043518, + change: 15.4, + index: 37 + }), + new StockTeslaItem( + { + date: `2020-01-31`, + open: 37.6, + high: 43.5, + low: 36, + close: 43.4, + volume: 1835141382, + change: 15.3, + index: 38 + }), + new StockTeslaItem( + { + date: `2020-02-11`, + open: 44.9, + high: 64.6, + low: 44.9, + close: 51.6, + volume: 3748903126, + change: 14.9, + index: 39 + }), + new StockTeslaItem( + { + date: `2020-02-21`, + open: 51.9, + high: 63, + low: 49, + close: 60.1, + volume: 1921517039, + change: 15.8, + index: 40 + }), + new StockTeslaItem( + { + date: `2020-03-03`, + open: 55.9, + high: 57.6, + low: 40.8, + close: 49.7, + volume: 2121850940, + change: -11.1, + index: 41 + }), + new StockTeslaItem( + { + date: `2020-03-12`, + open: 50.9, + high: 51.1, + low: 36.4, + close: 37.4, + volume: 1553329923, + change: -26.6, + index: 42 + }), + new StockTeslaItem( + { + date: `2020-03-23`, + open: 39.7, + high: 40.5, + low: 23.4, + close: 29, + volume: 2487688157, + change: -27, + index: 43 + }), + new StockTeslaItem( + { + date: `2020-04-01`, + open: 31.8, + high: 37.3, + low: 31.6, + close: 32.1, + volume: 1785601357, + change: 0.9, + index: 44 + }), + new StockTeslaItem( + { + date: `2020-04-13`, + open: 32.1, + high: 43.5, + low: 29.8, + close: 43.4, + volume: 1860352620, + change: 35.3, + index: 45 + }), + new StockTeslaItem( + { + date: `2020-04-22`, + open: 46.6, + high: 51.7, + low: 44.9, + close: 48.8, + volume: 2056797321, + change: 4.7, + index: 46 + }), + new StockTeslaItem( + { + date: `2020-05-01`, + open: 48.5, + high: 58, + low: 45.5, + close: 46.8, + volume: 2093959203, + change: -3.6, + index: 47 + }), + new StockTeslaItem( + { + date: `2020-05-12`, + open: 46.7, + high: 56.2, + low: 46.5, + close: 54, + volume: 1611543246, + change: 15.5, + index: 48 + }), + new StockTeslaItem( + { + date: `2020-05-21`, + open: 54.7, + high: 55.6, + low: 50.9, + close: 55.2, + volume: 1262468113, + change: 0.8, + index: 49 + }), + new StockTeslaItem( + { + date: `2020-06-02`, + open: 54.8, + high: 60.6, + low: 52.3, + close: 58.8, + volume: 1160487993, + change: 7.2, + index: 50 + }), + new StockTeslaItem( + { + date: `2020-06-11`, + open: 59.2, + high: 68.5, + low: 57.2, + close: 64.9, + volume: 1270377400, + change: 9.5, + index: 51 + }), + new StockTeslaItem( + { + date: `2020-06-22`, + open: 65.3, + high: 67.9, + low: 60.6, + close: 66.3, + volume: 1217946366, + change: 1.5, + index: 52 + }), + new StockTeslaItem( + { + date: `2020-07-01`, + open: 66.6, + high: 75.7, + low: 62.5, + close: 74.6, + volume: 1120591270, + change: 12.1, + index: 53 + }), + new StockTeslaItem( + { + date: `2020-07-13`, + open: 81.4, + high: 119.7, + low: 79, + close: 99.8, + volume: 2244920779, + change: 22.6, + index: 54 + }), + new StockTeslaItem( + { + date: `2020-07-22`, + open: 103.7, + high: 111.7, + low: 95.4, + close: 106.2, + volume: 1662846099, + change: 2.3, + index: 55 + }), + new StockTeslaItem( + { + date: `2020-07-31`, + open: 111.9, + high: 112.6, + low: 91.1, + close: 95.4, + volume: 1573159944, + change: -14.8, + index: 56 + }), + new StockTeslaItem( + { + date: `2020-08-11`, + open: 96.6, + high: 101.8, + low: 91, + close: 91.6, + volume: 798587331, + change: -5.2, + index: 57 + }), + new StockTeslaItem( + { + date: `2020-08-20`, + open: 98, + high: 134.8, + low: 95.7, + close: 133.5, + volume: 1866534416, + change: 36.2, + index: 58 + }), + new StockTeslaItem( + { + date: `2020-08-31`, + open: 136.3, + high: 166.7, + low: 128.5, + close: 166.1, + volume: 2008507459, + change: 21.9, + index: 59 + }), + new StockTeslaItem( + { + date: `2020-09-10`, + open: 167.4, + high: 167.5, + low: 110, + close: 123.8, + volume: 1992227059, + change: -26, + index: 60 + }), + new StockTeslaItem( + { + date: `2020-09-21`, + open: 127.3, + high: 154, + low: 120.2, + close: 149.8, + volume: 1758737696, + change: 17.7, + index: 61 + }), + new StockTeslaItem( + { + date: `2020-09-30`, + open: 143.2, + high: 145.9, + low: 117.1, + close: 143, + volume: 1459893236, + change: -0.1, + index: 62 + }), + new StockTeslaItem( + { + date: `2020-10-09`, + open: 146.9, + high: 149.6, + low: 135.4, + close: 144.7, + volume: 985545158, + change: -1.5, + index: 63 + }), + new StockTeslaItem( + { + date: `2020-10-20`, + open: 147.3, + high: 155.3, + low: 139.7, + close: 140.6, + volume: 773077727, + change: -4.5, + index: 64 + }), + new StockTeslaItem( + { + date: `2020-10-29`, + open: 140.9, + high: 148.4, + low: 135.3, + close: 136.9, + volume: 615339122, + change: -2.8, + index: 65 + }), + new StockTeslaItem( + { + date: `2020-11-09`, + open: 135.6, + high: 150.8, + low: 126.4, + close: 140.4, + volume: 669171368, + change: 3.5, + index: 66 + }), + new StockTeslaItem( + { + date: `2020-11-18`, + open: 140, + high: 165.3, + low: 132, + close: 162.2, + volume: 760451265, + change: 15.8, + index: 67 + }), + new StockTeslaItem( + { + date: `2020-11-30`, + open: 164, + high: 202.6, + low: 162.5, + close: 189.2, + volume: 1046371155, + change: 15.4, + index: 68 + }), + new StockTeslaItem( + { + date: `2020-12-09`, + open: 199.2, + high: 218.1, + low: 180.4, + close: 201.5, + volume: 1055933265, + change: 1.2, + index: 69 + }), + new StockTeslaItem( + { + date: `2020-12-18`, + open: 191.5, + high: 231.7, + low: 188.8, + close: 231.7, + volume: 1593943601, + change: 21, + index: 70 + }), + new StockTeslaItem( + { + date: `2020-12-30`, + open: 222.1, + high: 232.2, + low: 204.7, + close: 231.6, + volume: 791942570, + change: 4.3, + index: 71 + }), + new StockTeslaItem( + { + date: `2021-01-11`, + open: 233.3, + high: 294.8, + low: 230.4, + close: 270.4, + volume: 1084025779, + change: 15.9, + index: 72 + }), + new StockTeslaItem( + { + date: `2021-01-21`, + open: 277, + high: 289.3, + low: 273, + close: 281.7, + volume: 663774487, + change: 1.7, + index: 73 + }), + new StockTeslaItem( + { + date: `2021-02-01`, + open: 278.1, + high: 300.1, + low: 260, + close: 279.9, + volume: 595397009, + change: 0.7, + index: 74 + }), + new StockTeslaItem( + { + date: `2021-02-10`, + open: 281.6, + high: 293.5, + low: 266.7, + close: 268.3, + volume: 445813486, + change: -4.7, + index: 75 + }), + new StockTeslaItem( + { + date: `2021-02-22`, + open: 270.8, + high: 276.6, + low: 236.7, + close: 238.2, + volume: 496372009, + change: -12.1, + index: 76 + }), + new StockTeslaItem( + { + date: `2021-03-03`, + open: 220.7, + high: 290.7, + low: 206.3, + close: 217.7, + volume: 793689739, + change: -1.3, + index: 77 + }), + new StockTeslaItem( + { + date: `2021-03-12`, + open: 218.6, + high: 291.3, + low: 179.8, + close: 231.2, + volume: 1215209162, + change: 5.8, + index: 78 + }), + new StockTeslaItem( + { + date: `2021-03-23`, + open: 231.4, + high: 237.7, + low: 208.2, + close: 220.7, + volume: 744776145, + change: -4.6, + index: 79 + }), + new StockTeslaItem( + { + date: `2021-04-01`, + open: 222.6, + high: 230.8, + low: 197, + close: 220.6, + volume: 730733684, + change: -0.9, + index: 80 + }), + new StockTeslaItem( + { + date: `2021-04-13`, + open: 235.9, + high: 254.3, + low: 222.6, + close: 254.1, + volume: 646721884, + change: 7.7, + index: 81 + }), + new StockTeslaItem( + { + date: `2021-04-22`, + open: 256.9, + high: 260.3, + low: 230.6, + close: 239.9, + volume: 740840774, + change: -6.6, + index: 82 + }), + new StockTeslaItem( + { + date: `2021-05-03`, + open: 239.9, + high: 249.8, + low: 222, + close: 228.3, + volume: 623423313, + change: -4.8, + index: 83 + }), + new StockTeslaItem( + { + date: `2021-05-12`, + open: 226.3, + high: 230, + low: 195.6, + close: 196.6, + volume: 643844974, + change: -13.1, + index: 84 + }), + new StockTeslaItem( + { + date: `2021-05-21`, + open: 200.5, + high: 202.2, + low: 182.3, + close: 193.6, + volume: 729192883, + change: -3.4, + index: 85 + }), + new StockTeslaItem( + { + date: `2021-06-02`, + open: 193.9, + high: 211.9, + low: 191.2, + close: 201.7, + volume: 545095944, + change: 4, + index: 86 + }), + new StockTeslaItem( + { + date: `2021-06-11`, + open: 200.6, + high: 207.7, + low: 190.4, + close: 203.3, + volume: 478366128, + change: 1.3, + index: 87 + }), + new StockTeslaItem( + { + date: `2021-06-22`, + open: 204.1, + high: 210.5, + low: 197.8, + close: 207.9, + volume: 454698495, + change: 1.9, + index: 88 + }), + new StockTeslaItem( + { + date: `2021-07-01`, + open: 210.7, + high: 232.5, + low: 210, + close: 226, + volume: 558441596, + change: 7.3, + index: 89 + }), + new StockTeslaItem( + { + date: `2021-07-13`, + open: 226.3, + high: 233.3, + low: 206.8, + close: 222.8, + volume: 470942387, + change: -1.5, + index: 90 + }), + new StockTeslaItem( + { + date: `2021-07-22`, + open: 223.6, + high: 226.2, + low: 207.1, + close: 216.4, + volume: 372195097, + change: -3.2, + index: 91 + }), + new StockTeslaItem( + { + date: `2021-08-02`, + open: 215.5, + high: 242.3, + low: 209.1, + close: 236.6, + volume: 547284685, + change: 9.8, + index: 92 + }), + new StockTeslaItem( + { + date: `2021-08-11`, + open: 239.7, + high: 241.6, + low: 232.5, + close: 235.9, + volume: 315341455, + change: -1.6, + index: 93 + }), + new StockTeslaItem( + { + date: `2021-08-20`, + open: 235.4, + high: 243.3, + low: 216.3, + close: 226.8, + volume: 392227478, + change: -3.7, + index: 94 + }), + new StockTeslaItem( + { + date: `2021-08-31`, + open: 228.5, + high: 246.8, + low: 226.9, + close: 245.2, + volume: 337503634, + change: 7.3, + index: 95 + }), + new StockTeslaItem( + { + date: `2021-09-10`, + open: 244.7, + high: 254.8, + low: 241.4, + close: 245.4, + volume: 328100734, + change: 0.3, + index: 96 + }), + new StockTeslaItem( + { + date: `2021-09-21`, + open: 246.7, + high: 253.7, + low: 236.3, + close: 246.5, + volume: 420153012, + change: -0.1, + index: 97 + }), + new StockTeslaItem( + { + date: `2021-09-30`, + open: 247.8, + high: 266.3, + low: 246.4, + close: 258.5, + volume: 422393262, + change: 4.3, + index: 98 + }), + new StockTeslaItem( + { + date: `2021-10-11`, + open: 259.5, + high: 269, + low: 254.5, + close: 264, + volume: 392144589, + change: 1.7, + index: 99 + }), + new StockTeslaItem( + { + date: `2021-10-20`, + open: 267, + high: 292.6, + low: 265.5, + close: 288.6, + volume: 368796877, + change: 8.1, + index: 100 + }), + new StockTeslaItem( + { + date: `2021-10-29`, + open: 285.3, + high: 371.7, + low: 285.2, + close: 371.3, + volume: 825862313, + change: 30.1, + index: 101 + }), + new StockTeslaItem( + { + date: `2021-11-09`, + open: 381.7, + high: 414.5, + low: 337.2, + close: 341.2, + volume: 818978542, + change: -10.6, + index: 102 + }), + new StockTeslaItem( + { + date: `2021-11-18`, + open: 336.8, + high: 373.2, + low: 326.2, + close: 365.5, + volume: 613304311, + change: 8.5, + index: 103 + }), + new StockTeslaItem( + { + date: `2021-11-30`, + open: 366.3, + high: 400.6, + low: 354, + close: 381.6, + volume: 515052382, + change: 4.2, + index: 104 + }), + new StockTeslaItem( + { + date: `2021-12-09`, + open: 386.9, + high: 390.9, + low: 316.8, + close: 334.6, + volume: 473333567, + change: -13.5, + index: 105 + }), + new StockTeslaItem( + { + date: `2021-12-20`, + open: 336.2, + high: 340.3, + low: 297.8, + close: 300, + volume: 524367113, + change: -10.8, + index: 106 + }), + new StockTeslaItem( + { + date: `2021-12-30`, + open: 305.6, + high: 373, + low: 295.4, + close: 356.8, + volume: 492530059, + change: 16.7, + index: 107 + }), + new StockTeslaItem( + { + date: `2022-01-10`, + open: 357.8, + high: 402.7, + low: 326.7, + close: 352.7, + volume: 592103938, + change: -1.4, + index: 108 + }), + new StockTeslaItem( + { + date: `2022-01-20`, + open: 351.2, + high: 371.9, + low: 331.3, + close: 332.1, + volume: 532857144, + change: -5.4, + index: 109 + }), + new StockTeslaItem( + { + date: `2022-01-31`, + open: 332.1, + high: 334.8, + low: 264, + close: 312.2, + volume: 833589022, + change: -6, + index: 110 + }), + new StockTeslaItem( + { + date: `2022-02-09`, + open: 311.7, + high: 315.9, + low: 293.5, + close: 310.7, + volume: 456395505, + change: -0.3, + index: 111 + }), + new StockTeslaItem( + { + date: `2022-02-18`, + open: 302.8, + high: 314.6, + low: 279.2, + close: 285.7, + volume: 446153356, + change: -5.7, + index: 112 + }), + new StockTeslaItem( + { + date: `2022-03-02`, + open: 278, + high: 296.6, + low: 233.3, + close: 293.3, + volume: 638352514, + change: 5.5, + index: 113 + }), + new StockTeslaItem( + { + date: `2022-03-11`, + open: 292.9, + high: 295.5, + low: 260.7, + close: 265.1, + volume: 466566467, + change: -9.5, + index: 114 + }), + new StockTeslaItem( + { + date: `2022-03-22`, + open: 260.2, + high: 332.6, + low: 252, + close: 331.3, + volume: 576869668, + change: 27.3, + index: 115 + }), + new StockTeslaItem( + { + date: `2022-03-31`, + open: 326.6, + high: 371.6, + low: 325.5, + close: 359.2, + volume: 536607263, + change: 10, + index: 116 + }), + new StockTeslaItem( + { + date: `2022-04-11`, + open: 360.4, + high: 384.3, + low: 324.9, + close: 325.3, + volume: 499682510, + change: -9.7, + index: 117 + }), + new StockTeslaItem( + { + date: `2022-04-21`, + open: 332.5, + high: 364.1, + low: 324.4, + close: 336.3, + volume: 457210487, + change: 1.1, + index: 118 + }), + new StockTeslaItem( + { + date: `2022-05-02`, + open: 338.3, + high: 345, + low: 273.9, + close: 301, + volume: 639990965, + change: -11, + index: 119 + }), + new StockTeslaItem( + { + date: `2022-05-11`, + open: 301.1, + high: 318.5, + low: 242.4, + close: 244.7, + volume: 583211967, + change: -18.7, + index: 120 + }), + new StockTeslaItem( + { + date: `2022-05-20`, + open: 233.7, + high: 262.4, + low: 211, + close: 221.3, + volume: 721880082, + change: -5.3, + index: 121 + }), + new StockTeslaItem( + { + date: `2022-06-01`, + open: 218.3, + high: 259.6, + low: 206.9, + close: 246.8, + volume: 644596235, + change: 13, + index: 122 + }), + new StockTeslaItem( + { + date: `2022-06-10`, + open: 244.2, + high: 264.2, + low: 227.9, + close: 232.2, + volume: 633672873, + change: -4.9, + index: 123 + }), + new StockTeslaItem( + { + date: `2022-06-22`, + open: 223.2, + high: 246.8, + low: 208.7, + close: 236.1, + volume: 744240764, + change: 5.8, + index: 124 + }), + new StockTeslaItem( + { + date: `2022-07-01`, + open: 237.9, + high: 252.1, + low: 218.9, + close: 227.3, + volume: 631776422, + change: -4.5, + index: 125 + }), + new StockTeslaItem( + { + date: `2022-07-13`, + open: 223, + high: 255, + low: 216.2, + close: 237, + volume: 625812242, + change: 6.3, + index: 126 + }), + new StockTeslaItem( + { + date: `2022-07-22`, + open: 234.9, + high: 280.8, + low: 229.3, + close: 272.2, + volume: 646037224, + change: 15.9, + index: 127 + }), + new StockTeslaItem( + { + date: `2022-08-02`, + open: 272.2, + high: 311.9, + low: 256.3, + close: 300.6, + volume: 611660612, + change: 10.4, + index: 128 + }), + new StockTeslaItem( + { + date: `2022-08-11`, + open: 305, + high: 313.6, + low: 279.4, + close: 286.6, + volume: 616204291, + change: -6, + index: 129 + }), + new StockTeslaItem( + { + date: `2022-08-22`, + open: 289.4, + high: 314.7, + low: 285, + close: 289.9, + volume: 490658060, + change: 0.2, + index: 130 + }), + new StockTeslaItem( + { + date: `2022-08-31`, + open: 291.5, + high: 303.6, + low: 271.8, + close: 275.6, + volume: 376152572, + change: -5.4, + index: 131 + }), + new StockTeslaItem( + { + date: `2022-09-12`, + open: 272.6, + high: 305.5, + low: 265.7, + close: 304.4, + volume: 367924580, + change: 11.7, + index: 132 + }), + new StockTeslaItem( + { + date: `2022-09-21`, + open: 292.9, + high: 313.8, + low: 290.4, + close: 300.8, + volume: 477171180, + change: 2.7, + index: 133 + }), + new StockTeslaItem( + { + date: `2022-09-30`, + open: 299.9, + high: 301.3, + low: 262.5, + close: 265.2, + volume: 454307920, + change: -11.5, + index: 134 + }), + new StockTeslaItem( + { + date: `2022-10-11`, + open: 254.5, + high: 257.5, + low: 215, + close: 216.5, + volume: 593078170, + change: -14.9, + index: 135 + }), + new StockTeslaItem( + { + date: `2022-10-20`, + open: 215.3, + high: 229.8, + low: 202, + close: 207.3, + volume: 592158560, + change: -3.7, + index: 136 + }), + new StockTeslaItem( + { + date: `2022-10-31`, + open: 206.4, + high: 233.8, + low: 198.6, + close: 227.5, + volume: 550341050, + change: 10.2, + index: 137 + }), + new StockTeslaItem( + { + date: `2022-11-09`, + open: 234, + high: 237.4, + low: 177.1, + close: 177.6, + volume: 630702790, + change: -24.1, + index: 138 + }), + new StockTeslaItem( + { + date: `2022-11-18`, + open: 189.9, + high: 200.8, + low: 176.6, + close: 180.2, + volume: 637579480, + change: -5.1, + index: 139 + }), + new StockTeslaItem( + { + date: `2022-11-30`, + open: 175.8, + high: 194.8, + low: 166.2, + close: 194.7, + volume: 617126140, + change: 10.7, + index: 140 + }), + new StockTeslaItem( + { + date: `2022-12-09`, + open: 197.1, + high: 198.9, + low: 169.1, + close: 179, + volume: 625675690, + change: -9.1, + index: 141 + }), + new StockTeslaItem( + { + date: `2022-12-20`, + open: 176.1, + high: 177.4, + low: 137.7, + close: 137.8, + volume: 986660100, + change: -21.7, + index: 142 + }), + new StockTeslaItem( + { + date: `2022-12-30`, + open: 139.3, + high: 141.3, + low: 108.2, + close: 123.2, + volume: 1331911900, + change: -11.6, + index: 143 + }), + new StockTeslaItem( + { + date: `2023-01-11`, + open: 118.5, + high: 126, + low: 101.8, + close: 123.2, + volume: 1332426500, + change: 4, + index: 144 + }), + new StockTeslaItem( + { + date: `2023-01-23`, + open: 122.6, + high: 145.4, + low: 115.6, + close: 143.8, + volume: 1244541500, + change: 17.3, + index: 145 + }), + new StockTeslaItem( + { + date: `2023-02-01`, + open: 143, + high: 183.8, + low: 138.1, + close: 181.4, + volume: 1534337700, + change: 26.9, + index: 146 + }), + new StockTeslaItem( + { + date: `2023-02-10`, + open: 187.3, + high: 214, + low: 182.6, + close: 196.9, + volume: 1423167800, + change: 5.1, + index: 147 + }), + new StockTeslaItem( + { + date: `2023-02-22`, + open: 194.4, + high: 217.6, + low: 187.6, + close: 200.9, + volume: 1386211900, + change: 3.3, + index: 148 + }), + new StockTeslaItem( + { + date: `2023-03-03`, + open: 203.9, + high: 211.2, + low: 186, + close: 197.8, + volume: 1095786600, + change: -3, + index: 149 + }), + new StockTeslaItem( + { + date: `2023-03-14`, + open: 198.5, + high: 198.6, + low: 163.9, + close: 183.3, + volume: 1101144600, + change: -7.7, + index: 150 + }), + new StockTeslaItem( + { + date: `2023-03-23`, + open: 180.8, + high: 200.7, + low: 176, + close: 192.2, + volume: 978213300, + change: 6.3, + index: 151 + }), + new StockTeslaItem( + { + date: `2023-04-03`, + open: 191.6, + high: 207.8, + low: 185.4, + close: 194.8, + volume: 909718040, + change: 1.6, + index: 152 + }), + new StockTeslaItem( + { + date: `2023-04-13`, + open: 197.3, + high: 198.7, + low: 176.1, + close: 185.9, + volume: 905319000, + change: -5.8, + index: 153 + }), + new StockTeslaItem( + { + date: `2023-04-24`, + open: 184, + high: 189.7, + low: 158.6, + close: 162.6, + volume: 905416980, + change: -11.6, + index: 154 + }), + new StockTeslaItem( + { + date: `2023-05-03`, + open: 159.8, + high: 165.5, + low: 152.4, + close: 160.6, + volume: 881897100, + change: 0.5, + index: 155 + }), + new StockTeslaItem( + { + date: `2023-05-12`, + open: 162.7, + high: 177.4, + low: 159.6, + close: 168, + volume: 785510430, + change: 3.2, + index: 156 + }), + new StockTeslaItem( + { + date: `2023-05-23`, + open: 167.7, + high: 193, + low: 164.4, + close: 185.8, + volume: 864025390, + change: 10.8, + index: 157 + }), + new StockTeslaItem( + { + date: `2023-06-02`, + open: 182.2, + high: 217.2, + low: 178.2, + close: 214, + volume: 988496020, + change: 17.4, + index: 158 + }), + new StockTeslaItem( + { + date: `2023-06-13`, + open: 217.8, + high: 259.7, + low: 212.5, + close: 258.7, + volume: 1161622400, + change: 18.8, + index: 159 + }), + new StockTeslaItem( + { + date: `2023-06-23`, + open: 260.2, + high: 277, + low: 247.3, + close: 256.6, + volume: 1220407300, + change: -1.4, + index: 160 + }), + new StockTeslaItem( + { + date: `2023-07-05`, + open: 250.1, + high: 284.2, + low: 240.7, + close: 282.5, + volume: 999163700, + change: 13, + index: 161 + }), + new StockTeslaItem( + { + date: `2023-07-14`, + open: 278.1, + high: 285.3, + low: 265.1, + close: 281.4, + volume: 774400400, + change: 1.2, + index: 162 + }), + new StockTeslaItem( + { + date: `2023-07-25`, + open: 286.6, + high: 299.3, + low: 254.1, + close: 265.3, + volume: 973076400, + change: -7.4, + index: 163 + }), + new StockTeslaItem( + { + date: `2023-08-03`, + open: 263.2, + high: 269.1, + low: 250.5, + close: 259.3, + volume: 678809820, + change: -1.5, + index: 164 + }), + new StockTeslaItem( + { + date: `2023-08-14`, + open: 261, + high: 264.8, + low: 233.8, + close: 239.8, + volume: 716008860, + change: -8.1, + index: 165 + }), + new StockTeslaItem( + { + date: `2023-08-23`, + open: 238.7, + high: 240.8, + low: 212.4, + close: 236.9, + volume: 825055300, + change: -0.8, + index: 166 + }), + new StockTeslaItem( + { + date: `2023-09-01`, + open: 238.7, + high: 261.2, + low: 228.2, + close: 245, + volume: 811502630, + change: 2.7, + index: 167 + }), + new StockTeslaItem( + { + date: `2023-09-13`, + open: 245, + high: 278.4, + low: 243.3, + close: 271.3, + volume: 902643400, + change: 10.7, + index: 168 + }), + new StockTeslaItem( + { + date: `2023-09-22`, + open: 271.3, + high: 279, + low: 244.5, + close: 244.9, + volume: 816639600, + change: -9.7, + index: 169 + }), + new StockTeslaItem( + { + date: `2023-10-03`, + open: 243.4, + high: 254.8, + low: 234.6, + close: 246.5, + volume: 814604700, + change: 1.3, + index: 170 + }), + new StockTeslaItem( + { + date: `2023-10-12`, + open: 248.1, + high: 268.9, + low: 247.6, + close: 258.9, + volume: 806250900, + change: 4.3, + index: 171 + }), + new StockTeslaItem( + { + date: `2023-10-23`, + open: 258.9, + high: 259.6, + low: 202.5, + close: 212.1, + volume: 869390890, + change: -18.1, + index: 172 + }), + new StockTeslaItem( + { + date: `2023-11-01`, + open: 216.5, + high: 222, + low: 194.1, + close: 205.7, + volume: 811468170, + change: -5, + index: 173 + }), + new StockTeslaItem( + { + date: `2023-11-10`, + open: 213, + high: 226.4, + low: 205.7, + close: 214.6, + volume: 859763700, + change: 0.8, + index: 174 + }), + new StockTeslaItem( + { + date: `2023-11-21`, + open: 215.6, + high: 246.7, + low: 211.6, + close: 241.2, + volume: 959006600, + change: 11.9, + index: 175 + }), + new StockTeslaItem( + { + date: `2023-12-01`, + open: 242, + high: 252.8, + low: 231.4, + close: 238.8, + volume: 832910200, + change: -1.3, + index: 176 + }), + new StockTeslaItem( + { + date: `2023-12-12`, + open: 235.8, + high: 246.7, + low: 233.3, + close: 237, + volume: 772018400, + change: 0.5, + index: 177 + }), + new StockTeslaItem( + { + date: `2023-12-21`, + open: 234.2, + high: 259.8, + low: 228.2, + close: 254.5, + volume: 900893400, + change: 8.7, + index: 178 + }), + new StockTeslaItem( + { + date: `2024-01-03`, + open: 256.8, + high: 265.1, + low: 236.3, + close: 238.4, + volume: 727005170, + change: -7.1, + index: 179 + }), + new StockTeslaItem( + { + date: `2024-01-12`, + open: 239.2, + high: 242.7, + low: 217.2, + close: 218.9, + volume: 697536380, + change: -8.5, + index: 180 + }), + new StockTeslaItem( + { + date: `2024-01-24`, + open: 215.1, + high: 223.5, + low: 206.3, + close: 207.8, + volume: 777303400, + change: -3.4, + index: 181 + }), + new StockTeslaItem( + { + date: `2024-02-02`, + open: 189.7, + high: 196.4, + low: 180.1, + close: 187.9, + volume: 846092780, + change: -0.9, + index: 182 + }), + new StockTeslaItem( + { + date: `2024-02-13`, + open: 184.3, + high: 194.7, + low: 175, + close: 184, + volume: 718274070, + change: -0.1, + index: 183 + }), + new StockTeslaItem( + { + date: `2024-02-23`, + open: 185.3, + high: 203.2, + low: 183.4, + close: 192, + volume: 693352670, + change: 3.6, + index: 184 + }), + new StockTeslaItem( + { + date: `2024-03-05`, + open: 192.3, + high: 205.6, + low: 177.6, + close: 180.7, + volume: 742344460, + change: -6, + index: 185 + }), + new StockTeslaItem( + { + date: `2024-03-14`, + open: 180, + high: 182.9, + low: 160.5, + close: 162.5, + volume: 701227950, + change: -9.7, + index: 186 + }), + new StockTeslaItem( + { + date: `2024-03-25`, + open: 163.2, + high: 178.2, + low: 160.8, + close: 172.6, + volume: 589466660, + change: 5.8, + index: 187 + }), + new StockTeslaItem( + { + date: `2024-04-04`, + open: 178.6, + high: 184.2, + low: 163.3, + close: 171.1, + volume: 676969950, + change: -4.2, + index: 188 + }), + new StockTeslaItem( + { + date: `2024-04-15`, + open: 169.1, + high: 179.2, + low: 160.5, + close: 161.5, + volume: 694829970, + change: -4.5, + index: 189 + }), + new StockTeslaItem( + { + date: `2024-04-24`, + open: 156.7, + high: 168, + low: 138.8, + close: 162.1, + volume: 775433710, + change: 3.4, + index: 190 + }), + new StockTeslaItem( + { + date: `2024-05-03`, + open: 159, + high: 198.9, + low: 158.4, + close: 181.2, + volume: 864614000, + change: 14, + index: 191 + }), + new StockTeslaItem( + { + date: `2024-05-14`, + open: 183.8, + high: 187.6, + low: 167.8, + close: 177.6, + volume: 531409380, + change: -3.4, + index: 192 + }), + new StockTeslaItem( + { + date: `2024-05-23`, + open: 179.9, + high: 186.9, + low: 171.4, + close: 173.7, + volume: 554203970, + change: -3.4, + index: 193 + }), + new StockTeslaItem( + { + date: `2024-06-04`, + open: 174.8, + high: 182.7, + low: 173.2, + close: 174.8, + volume: 453828370, + change: 0, + index: 194 + }), + new StockTeslaItem( + { + date: `2024-06-13`, + open: 175.4, + high: 191.1, + low: 167.4, + close: 182.5, + volume: 509090870, + change: 4.1, + index: 195 + }), + new StockTeslaItem( + { + date: `2024-06-25`, + open: 185.8, + high: 188.8, + low: 176.9, + close: 187.4, + volume: 505399520, + change: 0.8, + index: 196 + }), + new StockTeslaItem( + { + date: `2024-07-05`, + open: 186.5, + high: 252.4, + low: 186.4, + close: 251.5, + volume: 925723660, + change: 34.8, + index: 197 + }), + new StockTeslaItem( + { + date: `2024-07-16`, + open: 247.7, + high: 271, + low: 233.1, + close: 256.6, + volume: 1097390000, + change: 3.6, + index: 198 + }), + new StockTeslaItem( + { + date: `2024-07-25`, + open: 252.7, + high: 258.5, + low: 214.7, + close: 220.2, + volume: 795590700, + change: -12.9, + index: 199 + }), + new StockTeslaItem( + { + date: `2024-08-05`, + open: 221.2, + high: 234.7, + low: 182, + close: 198.9, + volume: 658914080, + change: -10.1, + index: 200 + }), + new StockTeslaItem( + { + date: `2024-08-14`, + open: 200.8, + high: 208.5, + low: 191.5, + close: 201.4, + volume: 479168160, + change: 0.3, + index: 201 + }), + new StockTeslaItem( + { + date: `2024-08-23`, + open: 205, + high: 228.2, + low: 204.8, + close: 220.3, + volume: 560235700, + change: 7.5, + index: 202 + }), + new StockTeslaItem( + { + date: `2024-09-04`, + open: 218.8, + high: 222.2, + low: 202.6, + close: 219.4, + volume: 469284350, + change: 0.3, + index: 203 + }), + new StockTeslaItem( + { + date: `2024-09-13`, + open: 223.5, + high: 235, + low: 210.5, + close: 230.3, + volume: 592950440, + change: 3, + index: 204 + }), + new StockTeslaItem( + { + date: `2024-09-24`, + open: 229.3, + high: 257.2, + low: 223.5, + close: 254.3, + volume: 577086700, + change: 10.9, + index: 205 + }), + new StockTeslaItem( + { + date: `2024-10-03`, + open: 252.5, + high: 264.9, + low: 237.8, + close: 240.7, + volume: 546148740, + change: -4.7, + index: 206 + }), + new StockTeslaItem( + { + date: `2024-10-14`, + open: 246.7, + high: 251, + low: 213.7, + close: 219.2, + volume: 589440130, + change: -11.2, + index: 207 + }), + new StockTeslaItem( + { + date: `2024-10-23`, + open: 220, + high: 224.3, + low: 212.1, + close: 213.6, + volume: 384561880, + change: -2.9, + index: 208 + }), + new StockTeslaItem( + { + date: `2024-11-01`, + open: 244.7, + high: 273.5, + low: 242.6, + close: 249, + volume: 732392780, + change: 1.8, + index: 209 + }), + new StockTeslaItem( + { + date: `2024-11-12`, + open: 244.6, + high: 358.6, + low: 238.9, + close: 328.5, + volume: 991653160, + change: 34.3, + index: 210 + }), + new StockTeslaItem( + { + date: `2024-11-21`, + open: 335.8, + high: 348.5, + low: 309.2, + close: 339.6, + volume: 700324320, + change: 1.1, + index: 211 + }), + new StockTeslaItem( + { + date: `2024-12-03`, + open: 341.1, + high: 361.9, + low: 326.6, + close: 351.4, + volume: 478645220, + change: 3, + index: 212 + }), + new StockTeslaItem( + { + date: `2024-12-12`, + open: 353, + high: 429.3, + low: 348.6, + close: 418.1, + volume: 599082110, + change: 18.4, + index: 213 + }), + new StockTeslaItem( + { + date: `2024-12-23`, + open: 420, + high: 481.5, + low: 415.4, + close: 430.6, + volume: 807128120, + change: 2.5, + index: 214 + }), + new StockTeslaItem( + { + date: `2025-01-03`, + open: 435.9, + high: 465.3, + low: 373, + close: 410.4, + volume: 565769940, + change: -5.8, + index: 215 + }), + new StockTeslaItem( + { + date: `2025-01-15`, + open: 423.2, + high: 429.8, + low: 377.3, + close: 428.2, + volume: 530063170, + change: 1.2, + index: 216 + }), + new StockTeslaItem( + { + date: `2025-01-27`, + open: 423.5, + high: 439.7, + low: 389, + close: 397.2, + volume: 476854060, + change: -6.2, + index: 217 + }), + new StockTeslaItem( + { + date: `2025-02-05`, + open: 396.9, + high: 420, + low: 374.4, + close: 378.2, + volume: 507024510, + change: -4.7, + index: 218 + }), + new StockTeslaItem( + { + date: `2025-02-14`, + open: 373, + high: 380.6, + low: 325.1, + close: 355.8, + volume: 607376290, + change: -4.6, + index: 219 + }), + new StockTeslaItem( + { + date: `2025-02-26`, + open: 355, + high: 367.3, + low: 288, + close: 290.8, + volume: 549149490, + change: -18.1, + index: 220 + }), + new StockTeslaItem( + { + date: `2025-03-07`, + open: 291.2, + high: 303.9, + low: 250.7, + close: 262.7, + volume: 754567280, + change: -9.8, + index: 221 + }), + new StockTeslaItem( + { + date: `2025-03-18`, + open: 252.5, + high: 253.4, + low: 217, + close: 225.3, + volume: 944623000, + change: -10.8, + index: 222 + }), + new StockTeslaItem( + { + date: `2025-03-27`, + open: 231.6, + high: 291.8, + low: 229.2, + close: 273.1, + volume: 982018670, + change: 17.9, + index: 223 + }), + new StockTeslaItem( + { + date: `2025-04-07`, + open: 275.6, + high: 285, + low: 214.2, + close: 233.3, + volume: 1117950500, + change: -15.3, + index: 224 + }), + new StockTeslaItem( + { + date: `2025-04-16`, + open: 245, + high: 274.7, + low: 217.8, + close: 241.6, + volume: 993815820, + change: -1.4, + index: 225 + }), + new StockTeslaItem( + { + date: `2025-04-28`, + open: 243.5, + high: 294.9, + low: 222.8, + close: 285.9, + volume: 866169890, + change: 17.4, + index: 226 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/app.component.html b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/app.component.html new file mode 100644 index 000000000..57d2efac4 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/app.component.html @@ -0,0 +1,220 @@ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/app.component.scss b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/app.component.ts b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/app.component.ts new file mode 100644 index 000000000..60fa3e2e2 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/app.component.ts @@ -0,0 +1,122 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { StockTeslaItem, StockTesla } from './StockTesla'; +import { AnnotationStripDataItem, AnnotationStripData } from './AnnotationStripData'; +import { AnnotationLineData1Item, AnnotationLineData1 } from './AnnotationLineData1'; +import { AnnotationLineData2Item, AnnotationLineData2 } from './AnnotationLineData2'; +import { AnnotationSliceStockSplitDataItem, AnnotationSliceStockSplitData } from './AnnotationSliceStockSplitData'; +import { AnnotationSliceEarningsMissDataItem, AnnotationSliceEarningsMissData } from './AnnotationSliceEarningsMissData'; +import { AnnotationSliceEarningsBeatDataItem, AnnotationSliceEarningsBeatData } from './AnnotationSliceEarningsBeatData'; +import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxFinancialPriceSeriesComponent, IgxDataToolTipLayerComponent, IgxDataAnnotationStripLayerComponent, IgxDataAnnotationLineLayerComponent, IgxDataAnnotationSliceLayerComponent } from 'igniteui-angular-charts'; + +@Component({ + standalone: false, + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxisBottom", { static: true } ) + private xAxisBottom: IgxCategoryXAxisComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("xAxisTop", { static: true } ) + private xAxisTop: IgxCategoryXAxisComponent + @ViewChild("yAxisLeft", { static: true } ) + private yAxisLeft: IgxNumericYAxisComponent + @ViewChild("yAxisRight", { static: true } ) + private yAxisRight: IgxNumericYAxisComponent + @ViewChild("series1", { static: true } ) + private series1: IgxFinancialPriceSeriesComponent + @ViewChild("tooltip", { static: true } ) + private tooltip: IgxDataToolTipLayerComponent + @ViewChild("stripLayer", { static: true } ) + private stripLayer: IgxDataAnnotationStripLayerComponent + @ViewChild("lineLayer52WeekRange", { static: true } ) + private lineLayer52WeekRange: IgxDataAnnotationLineLayerComponent + @ViewChild("lineLayerGrowthAndDecline", { static: true } ) + private lineLayerGrowthAndDecline: IgxDataAnnotationLineLayerComponent + @ViewChild("sliceLayerStockSplit", { static: true } ) + private sliceLayerStockSplit: IgxDataAnnotationSliceLayerComponent + @ViewChild("sliceLayerEarningsMissAnnotations", { static: true } ) + private sliceLayerEarningsMissAnnotations: IgxDataAnnotationSliceLayerComponent + @ViewChild("sliceLayerEarningsBeatAnnotations", { static: true } ) + private sliceLayerEarningsBeatAnnotations: IgxDataAnnotationSliceLayerComponent + private _stockTesla: StockTesla = null; + public get stockTesla(): StockTesla { + if (this._stockTesla == null) + { + this._stockTesla = new StockTesla(); + } + return this._stockTesla; + } + + private _annotationStripData: AnnotationStripData = null; + public get annotationStripData(): AnnotationStripData { + if (this._annotationStripData == null) + { + this._annotationStripData = new AnnotationStripData(); + } + return this._annotationStripData; + } + + private _annotationLineData1: AnnotationLineData1 = null; + public get annotationLineData1(): AnnotationLineData1 { + if (this._annotationLineData1 == null) + { + this._annotationLineData1 = new AnnotationLineData1(); + } + return this._annotationLineData1; + } + + private _annotationLineData2: AnnotationLineData2 = null; + public get annotationLineData2(): AnnotationLineData2 { + if (this._annotationLineData2 == null) + { + this._annotationLineData2 = new AnnotationLineData2(); + } + return this._annotationLineData2; + } + + private _annotationSliceStockSplitData: AnnotationSliceStockSplitData = null; + public get annotationSliceStockSplitData(): AnnotationSliceStockSplitData { + if (this._annotationSliceStockSplitData == null) + { + this._annotationSliceStockSplitData = new AnnotationSliceStockSplitData(); + } + return this._annotationSliceStockSplitData; + } + + private _annotationSliceEarningsMissData: AnnotationSliceEarningsMissData = null; + public get annotationSliceEarningsMissData(): AnnotationSliceEarningsMissData { + if (this._annotationSliceEarningsMissData == null) + { + this._annotationSliceEarningsMissData = new AnnotationSliceEarningsMissData(); + } + return this._annotationSliceEarningsMissData; + } + + private _annotationSliceEarningsBeatData: AnnotationSliceEarningsBeatData = null; + public get annotationSliceEarningsBeatData(): AnnotationSliceEarningsBeatData { + if (this._annotationSliceEarningsBeatData == null) + { + this._annotationSliceEarningsBeatData = new AnnotationSliceEarningsBeatData(); + } + return this._annotationSliceEarningsBeatData; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/app.module.ts b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/app.module.ts new file mode 100644 index 000000000..ff8948320 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/app.module.ts @@ -0,0 +1,37 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartCategoryCoreModule, IgxDataChartFinancialCoreModule, IgxDataChartFinancialModule, IgxDataChartFinancialOverlaysModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule, IgxDataAnnotationStripLayerModule, IgxDataAnnotationSliceLayerModule, IgxDataAnnotationLineLayerModule, IgxNumberAbbreviatorModule, IgxAnnotationLayerProxyModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartCategoryCoreModule, + IgxDataChartFinancialCoreModule, + IgxDataChartFinancialModule, + IgxDataChartFinancialOverlaysModule, + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule, + IgxDataAnnotationStripLayerModule, + IgxDataAnnotationSliceLayerModule, + IgxDataAnnotationLineLayerModule, + IgxNumberAbbreviatorModule, + IgxAnnotationLayerProxyModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/environments/environment.prod.ts b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/environments/environment.ts b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/index.html b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/main.ts b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/polyfills.ts b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/styles.scss b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/typings.d.ts b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/tsconfig.app.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/tsconfig.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/tslint.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/data-annotation-rect-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/data-annotation-rect-layer/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-rect-layer/.codesandbox/tasks.json b/samples/charts/data-chart/data-annotation-rect-layer/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-rect-layer/.stackblitzrc b/samples/charts/data-chart/data-annotation-rect-layer/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-rect-layer/angular.json b/samples/charts/data-chart/data-annotation-rect-layer/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/data-annotation-rect-layer/package.json b/samples/charts/data-chart/data-annotation-rect-layer/package.json new file mode 100644 index 000000000..91376df51 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/package.json @@ -0,0 +1,43 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.15.0" + }, + "devDependencies": { + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.6.3" + } +} diff --git a/samples/charts/data-chart/data-annotation-rect-layer/src/AnnotationRectData.ts b/samples/charts/data-chart/data-annotation-rect-layer/src/AnnotationRectData.ts new file mode 100644 index 000000000..45bfe988f --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/src/AnnotationRectData.ts @@ -0,0 +1,40 @@ +export class AnnotationRectDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public startX: number; + public startY: number; + public endX: number; + public endY: number; + public label: string; + +} +export class AnnotationRectData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new AnnotationRectDataItem( + { + startX: 85, + startY: 190, + endX: 140, + endY: 415, + label: `Head & Shoulders Pattern + (Bearish Downtrend)` + }), + new AnnotationRectDataItem( + { + startX: 53, + startY: 75, + endX: 230, + endY: 80, + label: `Price Gap (Bearish Target)` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-rect-layer/src/StockTesla.ts b/samples/charts/data-chart/data-annotation-rect-layer/src/StockTesla.ts new file mode 100644 index 000000000..1efe6d6e4 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/src/StockTesla.ts @@ -0,0 +1,2523 @@ +export class StockTeslaItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public date: string; + public open: number; + public high: number; + public low: number; + public close: number; + public volume: number; + public change: number; + public index: number; + +} +export class StockTesla extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new StockTeslaItem( + { + date: `2019-01-10`, + open: 20.4, + high: 23, + low: 19.8, + close: 23, + volume: 779333701, + change: 12.7, + index: 0 + }), + new StockTeslaItem( + { + date: `2019-01-22`, + open: 22.8, + high: 23.5, + low: 19.7, + close: 19.9, + volume: 911781100, + change: -12.6, + index: 1 + }), + new StockTeslaItem( + { + date: `2019-01-31`, + open: 19.5, + high: 20.8, + low: 18.6, + close: 20.5, + volume: 926375717, + change: 5, + index: 2 + }), + new StockTeslaItem( + { + date: `2019-02-11`, + open: 20.4, + high: 21.6, + low: 19.9, + close: 20.9, + volume: 687520471, + change: 2.4, + index: 3 + }), + new StockTeslaItem( + { + date: `2019-02-21`, + open: 21.1, + high: 21.2, + low: 19.4, + close: 19.4, + volume: 597552272, + change: -7.9, + index: 4 + }), + new StockTeslaItem( + { + date: `2019-03-04`, + open: 19.6, + high: 21.3, + low: 18.9, + close: 19, + volume: 1218669201, + change: -3.1, + index: 5 + }), + new StockTeslaItem( + { + date: `2019-03-13`, + open: 18.8, + high: 19.5, + low: 18, + close: 19.3, + volume: 1034156904, + change: 2.5, + index: 6 + }), + new StockTeslaItem( + { + date: `2019-03-22`, + open: 19.5, + high: 19.7, + low: 17.6, + close: 17.6, + volume: 980694095, + change: -9.5, + index: 7 + }), + new StockTeslaItem( + { + date: `2019-04-02`, + open: 17.3, + high: 19.3, + low: 17, + close: 19.1, + volume: 788473494, + change: 10.1, + index: 8 + }), + new StockTeslaItem( + { + date: `2019-04-11`, + open: 19.2, + high: 19.7, + low: 17.4, + close: 17.9, + volume: 1165555442, + change: -6.6, + index: 9 + }), + new StockTeslaItem( + { + date: `2019-04-23`, + open: 18, + high: 18.3, + low: 17, + close: 17.6, + volume: 870373200, + change: -2.3, + index: 10 + }), + new StockTeslaItem( + { + date: `2019-05-02`, + open: 17.6, + high: 17.7, + low: 15.4, + close: 16.3, + volume: 1629432326, + change: -7.5, + index: 11 + }), + new StockTeslaItem( + { + date: `2019-05-13`, + open: 16.3, + high: 17.2, + low: 15, + close: 15.1, + volume: 1131045605, + change: -6.9, + index: 12 + }), + new StockTeslaItem( + { + date: `2019-05-22`, + open: 15.3, + high: 15.6, + low: 12.8, + close: 12.8, + volume: 1455503588, + change: -15.9, + index: 13 + }), + new StockTeslaItem( + { + date: `2019-06-03`, + open: 13, + high: 13.3, + low: 11.8, + close: 11.9, + volume: 1415442268, + change: -7.9, + index: 14 + }), + new StockTeslaItem( + { + date: `2019-06-12`, + open: 12.1, + high: 14.9, + low: 12, + close: 14, + volume: 1515000443, + change: 15.6, + index: 15 + }), + new StockTeslaItem( + { + date: `2019-06-21`, + open: 14, + high: 15.6, + low: 13.8, + close: 14.8, + volume: 1009123371, + change: 5.5, + index: 16 + }), + new StockTeslaItem( + { + date: `2019-07-02`, + open: 14.9, + high: 15.5, + low: 14.5, + close: 15, + volume: 766921642, + change: 0.6, + index: 17 + }), + new StockTeslaItem( + { + date: `2019-07-12`, + open: 16, + high: 16.4, + low: 15.2, + close: 16.3, + volume: 887983836, + change: 2.4, + index: 18 + }), + new StockTeslaItem( + { + date: `2019-07-23`, + open: 16.5, + high: 17.5, + low: 16.3, + close: 17.3, + volume: 788941000, + change: 4.9, + index: 19 + }), + new StockTeslaItem( + { + date: `2019-08-01`, + open: 17.3, + high: 17.7, + low: 14.8, + close: 15.6, + volume: 1175082297, + change: -9.8, + index: 20 + }), + new StockTeslaItem( + { + date: `2019-08-12`, + open: 15.4, + high: 16, + low: 15, + close: 15.3, + volume: 560129569, + change: -1, + index: 21 + }), + new StockTeslaItem( + { + date: `2019-08-21`, + open: 15.3, + high: 15.7, + low: 14.1, + close: 14.7, + volume: 677293701, + change: -3.5, + index: 22 + }), + new StockTeslaItem( + { + date: `2019-08-30`, + open: 14.9, + high: 15.5, + low: 14.1, + close: 15, + volume: 650239370, + change: 1.3, + index: 23 + }), + new StockTeslaItem( + { + date: `2019-09-11`, + open: 14.9, + high: 16.5, + low: 14.6, + close: 16.5, + volume: 636766167, + change: 10.3, + index: 24 + }), + new StockTeslaItem( + { + date: `2019-09-20`, + open: 16.5, + high: 16.9, + low: 15.9, + close: 16, + volume: 572802643, + change: -2.9, + index: 25 + }), + new StockTeslaItem( + { + date: `2019-10-01`, + open: 16, + high: 16.6, + low: 14.6, + close: 16.3, + volume: 931821239, + change: 2, + index: 26 + }), + new StockTeslaItem( + { + date: `2019-10-10`, + open: 16.2, + high: 16.6, + low: 15, + close: 16.3, + volume: 891798049, + change: 0.6, + index: 27 + }), + new StockTeslaItem( + { + date: `2019-10-21`, + open: 16.5, + high: 17.7, + low: 16.5, + close: 16.9, + volume: 713093463, + change: 2.6, + index: 28 + }), + new StockTeslaItem( + { + date: `2019-10-30`, + open: 17, + high: 22.7, + low: 16.7, + close: 21, + volume: 1752943598, + change: 23.9, + index: 29 + }), + new StockTeslaItem( + { + date: `2019-11-08`, + open: 20.9, + high: 22.8, + low: 20.6, + close: 22.5, + volume: 834957256, + change: 7.7, + index: 30 + }), + new StockTeslaItem( + { + date: `2019-11-19`, + open: 22.9, + high: 24, + low: 22.8, + close: 24, + volume: 738746390, + change: 4.5, + index: 31 + }), + new StockTeslaItem( + { + date: `2019-11-29`, + open: 24, + high: 24.1, + low: 21.8, + close: 22, + volume: 870685288, + change: -8.4, + index: 32 + }), + new StockTeslaItem( + { + date: `2019-12-10`, + open: 22, + high: 23.4, + low: 21.8, + close: 23.3, + volume: 712016613, + change: 5.9, + index: 33 + }), + new StockTeslaItem( + { + date: `2019-12-19`, + open: 23.5, + high: 27.1, + low: 23.4, + close: 26.9, + volume: 1203765433, + change: 14.8, + index: 34 + }), + new StockTeslaItem( + { + date: `2019-12-31`, + open: 27.4, + high: 29, + low: 26.7, + close: 27.9, + volume: 1195073357, + change: 2, + index: 35 + }), + new StockTeslaItem( + { + date: `2020-01-10`, + open: 28.3, + high: 33.3, + low: 28.1, + close: 31.9, + volume: 1925386078, + change: 12.6, + index: 36 + }), + new StockTeslaItem( + { + date: `2020-01-22`, + open: 32.9, + high: 39.6, + low: 32.8, + close: 38, + volume: 2364043518, + change: 15.4, + index: 37 + }), + new StockTeslaItem( + { + date: `2020-01-31`, + open: 37.6, + high: 43.5, + low: 36, + close: 43.4, + volume: 1835141382, + change: 15.3, + index: 38 + }), + new StockTeslaItem( + { + date: `2020-02-11`, + open: 44.9, + high: 64.6, + low: 44.9, + close: 51.6, + volume: 3748903126, + change: 14.9, + index: 39 + }), + new StockTeslaItem( + { + date: `2020-02-21`, + open: 51.9, + high: 63, + low: 49, + close: 60.1, + volume: 1921517039, + change: 15.8, + index: 40 + }), + new StockTeslaItem( + { + date: `2020-03-03`, + open: 55.9, + high: 57.6, + low: 40.8, + close: 49.7, + volume: 2121850940, + change: -11.1, + index: 41 + }), + new StockTeslaItem( + { + date: `2020-03-12`, + open: 50.9, + high: 51.1, + low: 36.4, + close: 37.4, + volume: 1553329923, + change: -26.6, + index: 42 + }), + new StockTeslaItem( + { + date: `2020-03-23`, + open: 39.7, + high: 40.5, + low: 23.4, + close: 29, + volume: 2487688157, + change: -27, + index: 43 + }), + new StockTeslaItem( + { + date: `2020-04-01`, + open: 31.8, + high: 37.3, + low: 31.6, + close: 32.1, + volume: 1785601357, + change: 0.9, + index: 44 + }), + new StockTeslaItem( + { + date: `2020-04-13`, + open: 32.1, + high: 43.5, + low: 29.8, + close: 43.4, + volume: 1860352620, + change: 35.3, + index: 45 + }), + new StockTeslaItem( + { + date: `2020-04-22`, + open: 46.6, + high: 51.7, + low: 44.9, + close: 48.8, + volume: 2056797321, + change: 4.7, + index: 46 + }), + new StockTeslaItem( + { + date: `2020-05-01`, + open: 48.5, + high: 58, + low: 45.5, + close: 46.8, + volume: 2093959203, + change: -3.6, + index: 47 + }), + new StockTeslaItem( + { + date: `2020-05-12`, + open: 46.7, + high: 56.2, + low: 46.5, + close: 54, + volume: 1611543246, + change: 15.5, + index: 48 + }), + new StockTeslaItem( + { + date: `2020-05-21`, + open: 54.7, + high: 55.6, + low: 50.9, + close: 55.2, + volume: 1262468113, + change: 0.8, + index: 49 + }), + new StockTeslaItem( + { + date: `2020-06-02`, + open: 54.8, + high: 60.6, + low: 52.3, + close: 58.8, + volume: 1160487993, + change: 7.2, + index: 50 + }), + new StockTeslaItem( + { + date: `2020-06-11`, + open: 59.2, + high: 68.5, + low: 57.2, + close: 64.9, + volume: 1270377400, + change: 9.5, + index: 51 + }), + new StockTeslaItem( + { + date: `2020-06-22`, + open: 65.3, + high: 67.9, + low: 60.6, + close: 66.3, + volume: 1217946366, + change: 1.5, + index: 52 + }), + new StockTeslaItem( + { + date: `2020-07-01`, + open: 66.6, + high: 75.7, + low: 62.5, + close: 74.6, + volume: 1120591270, + change: 12.1, + index: 53 + }), + new StockTeslaItem( + { + date: `2020-07-13`, + open: 81.4, + high: 119.7, + low: 79, + close: 99.8, + volume: 2244920779, + change: 22.6, + index: 54 + }), + new StockTeslaItem( + { + date: `2020-07-22`, + open: 103.7, + high: 111.7, + low: 95.4, + close: 106.2, + volume: 1662846099, + change: 2.3, + index: 55 + }), + new StockTeslaItem( + { + date: `2020-07-31`, + open: 111.9, + high: 112.6, + low: 91.1, + close: 95.4, + volume: 1573159944, + change: -14.8, + index: 56 + }), + new StockTeslaItem( + { + date: `2020-08-11`, + open: 96.6, + high: 101.8, + low: 91, + close: 91.6, + volume: 798587331, + change: -5.2, + index: 57 + }), + new StockTeslaItem( + { + date: `2020-08-20`, + open: 98, + high: 134.8, + low: 95.7, + close: 133.5, + volume: 1866534416, + change: 36.2, + index: 58 + }), + new StockTeslaItem( + { + date: `2020-08-31`, + open: 136.3, + high: 166.7, + low: 128.5, + close: 166.1, + volume: 2008507459, + change: 21.9, + index: 59 + }), + new StockTeslaItem( + { + date: `2020-09-10`, + open: 167.4, + high: 167.5, + low: 110, + close: 123.8, + volume: 1992227059, + change: -26, + index: 60 + }), + new StockTeslaItem( + { + date: `2020-09-21`, + open: 127.3, + high: 154, + low: 120.2, + close: 149.8, + volume: 1758737696, + change: 17.7, + index: 61 + }), + new StockTeslaItem( + { + date: `2020-09-30`, + open: 143.2, + high: 145.9, + low: 117.1, + close: 143, + volume: 1459893236, + change: -0.1, + index: 62 + }), + new StockTeslaItem( + { + date: `2020-10-09`, + open: 146.9, + high: 149.6, + low: 135.4, + close: 144.7, + volume: 985545158, + change: -1.5, + index: 63 + }), + new StockTeslaItem( + { + date: `2020-10-20`, + open: 147.3, + high: 155.3, + low: 139.7, + close: 140.6, + volume: 773077727, + change: -4.5, + index: 64 + }), + new StockTeslaItem( + { + date: `2020-10-29`, + open: 140.9, + high: 148.4, + low: 135.3, + close: 136.9, + volume: 615339122, + change: -2.8, + index: 65 + }), + new StockTeslaItem( + { + date: `2020-11-09`, + open: 135.6, + high: 150.8, + low: 126.4, + close: 140.4, + volume: 669171368, + change: 3.5, + index: 66 + }), + new StockTeslaItem( + { + date: `2020-11-18`, + open: 140, + high: 165.3, + low: 132, + close: 162.2, + volume: 760451265, + change: 15.8, + index: 67 + }), + new StockTeslaItem( + { + date: `2020-11-30`, + open: 164, + high: 202.6, + low: 162.5, + close: 189.2, + volume: 1046371155, + change: 15.4, + index: 68 + }), + new StockTeslaItem( + { + date: `2020-12-09`, + open: 199.2, + high: 218.1, + low: 180.4, + close: 201.5, + volume: 1055933265, + change: 1.2, + index: 69 + }), + new StockTeslaItem( + { + date: `2020-12-18`, + open: 191.5, + high: 231.7, + low: 188.8, + close: 231.7, + volume: 1593943601, + change: 21, + index: 70 + }), + new StockTeslaItem( + { + date: `2020-12-30`, + open: 222.1, + high: 232.2, + low: 204.7, + close: 231.6, + volume: 791942570, + change: 4.3, + index: 71 + }), + new StockTeslaItem( + { + date: `2021-01-11`, + open: 233.3, + high: 294.8, + low: 230.4, + close: 270.4, + volume: 1084025779, + change: 15.9, + index: 72 + }), + new StockTeslaItem( + { + date: `2021-01-21`, + open: 277, + high: 289.3, + low: 273, + close: 281.7, + volume: 663774487, + change: 1.7, + index: 73 + }), + new StockTeslaItem( + { + date: `2021-02-01`, + open: 278.1, + high: 300.1, + low: 260, + close: 279.9, + volume: 595397009, + change: 0.7, + index: 74 + }), + new StockTeslaItem( + { + date: `2021-02-10`, + open: 281.6, + high: 293.5, + low: 266.7, + close: 268.3, + volume: 445813486, + change: -4.7, + index: 75 + }), + new StockTeslaItem( + { + date: `2021-02-22`, + open: 270.8, + high: 276.6, + low: 236.7, + close: 238.2, + volume: 496372009, + change: -12.1, + index: 76 + }), + new StockTeslaItem( + { + date: `2021-03-03`, + open: 220.7, + high: 290.7, + low: 206.3, + close: 217.7, + volume: 793689739, + change: -1.3, + index: 77 + }), + new StockTeslaItem( + { + date: `2021-03-12`, + open: 218.6, + high: 291.3, + low: 179.8, + close: 231.2, + volume: 1215209162, + change: 5.8, + index: 78 + }), + new StockTeslaItem( + { + date: `2021-03-23`, + open: 231.4, + high: 237.7, + low: 208.2, + close: 220.7, + volume: 744776145, + change: -4.6, + index: 79 + }), + new StockTeslaItem( + { + date: `2021-04-01`, + open: 222.6, + high: 230.8, + low: 197, + close: 220.6, + volume: 730733684, + change: -0.9, + index: 80 + }), + new StockTeslaItem( + { + date: `2021-04-13`, + open: 235.9, + high: 254.3, + low: 222.6, + close: 254.1, + volume: 646721884, + change: 7.7, + index: 81 + }), + new StockTeslaItem( + { + date: `2021-04-22`, + open: 256.9, + high: 260.3, + low: 230.6, + close: 239.9, + volume: 740840774, + change: -6.6, + index: 82 + }), + new StockTeslaItem( + { + date: `2021-05-03`, + open: 239.9, + high: 249.8, + low: 222, + close: 228.3, + volume: 623423313, + change: -4.8, + index: 83 + }), + new StockTeslaItem( + { + date: `2021-05-12`, + open: 226.3, + high: 230, + low: 195.6, + close: 196.6, + volume: 643844974, + change: -13.1, + index: 84 + }), + new StockTeslaItem( + { + date: `2021-05-21`, + open: 200.5, + high: 202.2, + low: 182.3, + close: 193.6, + volume: 729192883, + change: -3.4, + index: 85 + }), + new StockTeslaItem( + { + date: `2021-06-02`, + open: 193.9, + high: 211.9, + low: 191.2, + close: 201.7, + volume: 545095944, + change: 4, + index: 86 + }), + new StockTeslaItem( + { + date: `2021-06-11`, + open: 200.6, + high: 207.7, + low: 190.4, + close: 203.3, + volume: 478366128, + change: 1.3, + index: 87 + }), + new StockTeslaItem( + { + date: `2021-06-22`, + open: 204.1, + high: 210.5, + low: 197.8, + close: 207.9, + volume: 454698495, + change: 1.9, + index: 88 + }), + new StockTeslaItem( + { + date: `2021-07-01`, + open: 210.7, + high: 232.5, + low: 210, + close: 226, + volume: 558441596, + change: 7.3, + index: 89 + }), + new StockTeslaItem( + { + date: `2021-07-13`, + open: 226.3, + high: 233.3, + low: 206.8, + close: 222.8, + volume: 470942387, + change: -1.5, + index: 90 + }), + new StockTeslaItem( + { + date: `2021-07-22`, + open: 223.6, + high: 226.2, + low: 207.1, + close: 216.4, + volume: 372195097, + change: -3.2, + index: 91 + }), + new StockTeslaItem( + { + date: `2021-08-02`, + open: 215.5, + high: 242.3, + low: 209.1, + close: 236.6, + volume: 547284685, + change: 9.8, + index: 92 + }), + new StockTeslaItem( + { + date: `2021-08-11`, + open: 239.7, + high: 241.6, + low: 232.5, + close: 235.9, + volume: 315341455, + change: -1.6, + index: 93 + }), + new StockTeslaItem( + { + date: `2021-08-20`, + open: 235.4, + high: 243.3, + low: 216.3, + close: 226.8, + volume: 392227478, + change: -3.7, + index: 94 + }), + new StockTeslaItem( + { + date: `2021-08-31`, + open: 228.5, + high: 246.8, + low: 226.9, + close: 245.2, + volume: 337503634, + change: 7.3, + index: 95 + }), + new StockTeslaItem( + { + date: `2021-09-10`, + open: 244.7, + high: 254.8, + low: 241.4, + close: 245.4, + volume: 328100734, + change: 0.3, + index: 96 + }), + new StockTeslaItem( + { + date: `2021-09-21`, + open: 246.7, + high: 253.7, + low: 236.3, + close: 246.5, + volume: 420153012, + change: -0.1, + index: 97 + }), + new StockTeslaItem( + { + date: `2021-09-30`, + open: 247.8, + high: 266.3, + low: 246.4, + close: 258.5, + volume: 422393262, + change: 4.3, + index: 98 + }), + new StockTeslaItem( + { + date: `2021-10-11`, + open: 259.5, + high: 269, + low: 254.5, + close: 264, + volume: 392144589, + change: 1.7, + index: 99 + }), + new StockTeslaItem( + { + date: `2021-10-20`, + open: 267, + high: 292.6, + low: 265.5, + close: 288.6, + volume: 368796877, + change: 8.1, + index: 100 + }), + new StockTeslaItem( + { + date: `2021-10-29`, + open: 285.3, + high: 371.7, + low: 285.2, + close: 371.3, + volume: 825862313, + change: 30.1, + index: 101 + }), + new StockTeslaItem( + { + date: `2021-11-09`, + open: 381.7, + high: 414.5, + low: 337.2, + close: 341.2, + volume: 818978542, + change: -10.6, + index: 102 + }), + new StockTeslaItem( + { + date: `2021-11-18`, + open: 336.8, + high: 373.2, + low: 326.2, + close: 365.5, + volume: 613304311, + change: 8.5, + index: 103 + }), + new StockTeslaItem( + { + date: `2021-11-30`, + open: 366.3, + high: 400.6, + low: 354, + close: 381.6, + volume: 515052382, + change: 4.2, + index: 104 + }), + new StockTeslaItem( + { + date: `2021-12-09`, + open: 386.9, + high: 390.9, + low: 316.8, + close: 334.6, + volume: 473333567, + change: -13.5, + index: 105 + }), + new StockTeslaItem( + { + date: `2021-12-20`, + open: 336.2, + high: 340.3, + low: 297.8, + close: 300, + volume: 524367113, + change: -10.8, + index: 106 + }), + new StockTeslaItem( + { + date: `2021-12-30`, + open: 305.6, + high: 373, + low: 295.4, + close: 356.8, + volume: 492530059, + change: 16.7, + index: 107 + }), + new StockTeslaItem( + { + date: `2022-01-10`, + open: 357.8, + high: 402.7, + low: 326.7, + close: 352.7, + volume: 592103938, + change: -1.4, + index: 108 + }), + new StockTeslaItem( + { + date: `2022-01-20`, + open: 351.2, + high: 371.9, + low: 331.3, + close: 332.1, + volume: 532857144, + change: -5.4, + index: 109 + }), + new StockTeslaItem( + { + date: `2022-01-31`, + open: 332.1, + high: 334.8, + low: 264, + close: 312.2, + volume: 833589022, + change: -6, + index: 110 + }), + new StockTeslaItem( + { + date: `2022-02-09`, + open: 311.7, + high: 315.9, + low: 293.5, + close: 310.7, + volume: 456395505, + change: -0.3, + index: 111 + }), + new StockTeslaItem( + { + date: `2022-02-18`, + open: 302.8, + high: 314.6, + low: 279.2, + close: 285.7, + volume: 446153356, + change: -5.7, + index: 112 + }), + new StockTeslaItem( + { + date: `2022-03-02`, + open: 278, + high: 296.6, + low: 233.3, + close: 293.3, + volume: 638352514, + change: 5.5, + index: 113 + }), + new StockTeslaItem( + { + date: `2022-03-11`, + open: 292.9, + high: 295.5, + low: 260.7, + close: 265.1, + volume: 466566467, + change: -9.5, + index: 114 + }), + new StockTeslaItem( + { + date: `2022-03-22`, + open: 260.2, + high: 332.6, + low: 252, + close: 331.3, + volume: 576869668, + change: 27.3, + index: 115 + }), + new StockTeslaItem( + { + date: `2022-03-31`, + open: 326.6, + high: 371.6, + low: 325.5, + close: 359.2, + volume: 536607263, + change: 10, + index: 116 + }), + new StockTeslaItem( + { + date: `2022-04-11`, + open: 360.4, + high: 384.3, + low: 324.9, + close: 325.3, + volume: 499682510, + change: -9.7, + index: 117 + }), + new StockTeslaItem( + { + date: `2022-04-21`, + open: 332.5, + high: 364.1, + low: 324.4, + close: 336.3, + volume: 457210487, + change: 1.1, + index: 118 + }), + new StockTeslaItem( + { + date: `2022-05-02`, + open: 338.3, + high: 345, + low: 273.9, + close: 301, + volume: 639990965, + change: -11, + index: 119 + }), + new StockTeslaItem( + { + date: `2022-05-11`, + open: 301.1, + high: 318.5, + low: 242.4, + close: 244.7, + volume: 583211967, + change: -18.7, + index: 120 + }), + new StockTeslaItem( + { + date: `2022-05-20`, + open: 233.7, + high: 262.4, + low: 211, + close: 221.3, + volume: 721880082, + change: -5.3, + index: 121 + }), + new StockTeslaItem( + { + date: `2022-06-01`, + open: 218.3, + high: 259.6, + low: 206.9, + close: 246.8, + volume: 644596235, + change: 13, + index: 122 + }), + new StockTeslaItem( + { + date: `2022-06-10`, + open: 244.2, + high: 264.2, + low: 227.9, + close: 232.2, + volume: 633672873, + change: -4.9, + index: 123 + }), + new StockTeslaItem( + { + date: `2022-06-22`, + open: 223.2, + high: 246.8, + low: 208.7, + close: 236.1, + volume: 744240764, + change: 5.8, + index: 124 + }), + new StockTeslaItem( + { + date: `2022-07-01`, + open: 237.9, + high: 252.1, + low: 218.9, + close: 227.3, + volume: 631776422, + change: -4.5, + index: 125 + }), + new StockTeslaItem( + { + date: `2022-07-13`, + open: 223, + high: 255, + low: 216.2, + close: 237, + volume: 625812242, + change: 6.3, + index: 126 + }), + new StockTeslaItem( + { + date: `2022-07-22`, + open: 234.9, + high: 280.8, + low: 229.3, + close: 272.2, + volume: 646037224, + change: 15.9, + index: 127 + }), + new StockTeslaItem( + { + date: `2022-08-02`, + open: 272.2, + high: 311.9, + low: 256.3, + close: 300.6, + volume: 611660612, + change: 10.4, + index: 128 + }), + new StockTeslaItem( + { + date: `2022-08-11`, + open: 305, + high: 313.6, + low: 279.4, + close: 286.6, + volume: 616204291, + change: -6, + index: 129 + }), + new StockTeslaItem( + { + date: `2022-08-22`, + open: 289.4, + high: 314.7, + low: 285, + close: 289.9, + volume: 490658060, + change: 0.2, + index: 130 + }), + new StockTeslaItem( + { + date: `2022-08-31`, + open: 291.5, + high: 303.6, + low: 271.8, + close: 275.6, + volume: 376152572, + change: -5.4, + index: 131 + }), + new StockTeslaItem( + { + date: `2022-09-12`, + open: 272.6, + high: 305.5, + low: 265.7, + close: 304.4, + volume: 367924580, + change: 11.7, + index: 132 + }), + new StockTeslaItem( + { + date: `2022-09-21`, + open: 292.9, + high: 313.8, + low: 290.4, + close: 300.8, + volume: 477171180, + change: 2.7, + index: 133 + }), + new StockTeslaItem( + { + date: `2022-09-30`, + open: 299.9, + high: 301.3, + low: 262.5, + close: 265.2, + volume: 454307920, + change: -11.5, + index: 134 + }), + new StockTeslaItem( + { + date: `2022-10-11`, + open: 254.5, + high: 257.5, + low: 215, + close: 216.5, + volume: 593078170, + change: -14.9, + index: 135 + }), + new StockTeslaItem( + { + date: `2022-10-20`, + open: 215.3, + high: 229.8, + low: 202, + close: 207.3, + volume: 592158560, + change: -3.7, + index: 136 + }), + new StockTeslaItem( + { + date: `2022-10-31`, + open: 206.4, + high: 233.8, + low: 198.6, + close: 227.5, + volume: 550341050, + change: 10.2, + index: 137 + }), + new StockTeslaItem( + { + date: `2022-11-09`, + open: 234, + high: 237.4, + low: 177.1, + close: 177.6, + volume: 630702790, + change: -24.1, + index: 138 + }), + new StockTeslaItem( + { + date: `2022-11-18`, + open: 189.9, + high: 200.8, + low: 176.6, + close: 180.2, + volume: 637579480, + change: -5.1, + index: 139 + }), + new StockTeslaItem( + { + date: `2022-11-30`, + open: 175.8, + high: 194.8, + low: 166.2, + close: 194.7, + volume: 617126140, + change: 10.7, + index: 140 + }), + new StockTeslaItem( + { + date: `2022-12-09`, + open: 197.1, + high: 198.9, + low: 169.1, + close: 179, + volume: 625675690, + change: -9.1, + index: 141 + }), + new StockTeslaItem( + { + date: `2022-12-20`, + open: 176.1, + high: 177.4, + low: 137.7, + close: 137.8, + volume: 986660100, + change: -21.7, + index: 142 + }), + new StockTeslaItem( + { + date: `2022-12-30`, + open: 139.3, + high: 141.3, + low: 108.2, + close: 123.2, + volume: 1331911900, + change: -11.6, + index: 143 + }), + new StockTeslaItem( + { + date: `2023-01-11`, + open: 118.5, + high: 126, + low: 101.8, + close: 123.2, + volume: 1332426500, + change: 4, + index: 144 + }), + new StockTeslaItem( + { + date: `2023-01-23`, + open: 122.6, + high: 145.4, + low: 115.6, + close: 143.8, + volume: 1244541500, + change: 17.3, + index: 145 + }), + new StockTeslaItem( + { + date: `2023-02-01`, + open: 143, + high: 183.8, + low: 138.1, + close: 181.4, + volume: 1534337700, + change: 26.9, + index: 146 + }), + new StockTeslaItem( + { + date: `2023-02-10`, + open: 187.3, + high: 214, + low: 182.6, + close: 196.9, + volume: 1423167800, + change: 5.1, + index: 147 + }), + new StockTeslaItem( + { + date: `2023-02-22`, + open: 194.4, + high: 217.6, + low: 187.6, + close: 200.9, + volume: 1386211900, + change: 3.3, + index: 148 + }), + new StockTeslaItem( + { + date: `2023-03-03`, + open: 203.9, + high: 211.2, + low: 186, + close: 197.8, + volume: 1095786600, + change: -3, + index: 149 + }), + new StockTeslaItem( + { + date: `2023-03-14`, + open: 198.5, + high: 198.6, + low: 163.9, + close: 183.3, + volume: 1101144600, + change: -7.7, + index: 150 + }), + new StockTeslaItem( + { + date: `2023-03-23`, + open: 180.8, + high: 200.7, + low: 176, + close: 192.2, + volume: 978213300, + change: 6.3, + index: 151 + }), + new StockTeslaItem( + { + date: `2023-04-03`, + open: 191.6, + high: 207.8, + low: 185.4, + close: 194.8, + volume: 909718040, + change: 1.6, + index: 152 + }), + new StockTeslaItem( + { + date: `2023-04-13`, + open: 197.3, + high: 198.7, + low: 176.1, + close: 185.9, + volume: 905319000, + change: -5.8, + index: 153 + }), + new StockTeslaItem( + { + date: `2023-04-24`, + open: 184, + high: 189.7, + low: 158.6, + close: 162.6, + volume: 905416980, + change: -11.6, + index: 154 + }), + new StockTeslaItem( + { + date: `2023-05-03`, + open: 159.8, + high: 165.5, + low: 152.4, + close: 160.6, + volume: 881897100, + change: 0.5, + index: 155 + }), + new StockTeslaItem( + { + date: `2023-05-12`, + open: 162.7, + high: 177.4, + low: 159.6, + close: 168, + volume: 785510430, + change: 3.2, + index: 156 + }), + new StockTeslaItem( + { + date: `2023-05-23`, + open: 167.7, + high: 193, + low: 164.4, + close: 185.8, + volume: 864025390, + change: 10.8, + index: 157 + }), + new StockTeslaItem( + { + date: `2023-06-02`, + open: 182.2, + high: 217.2, + low: 178.2, + close: 214, + volume: 988496020, + change: 17.4, + index: 158 + }), + new StockTeslaItem( + { + date: `2023-06-13`, + open: 217.8, + high: 259.7, + low: 212.5, + close: 258.7, + volume: 1161622400, + change: 18.8, + index: 159 + }), + new StockTeslaItem( + { + date: `2023-06-23`, + open: 260.2, + high: 277, + low: 247.3, + close: 256.6, + volume: 1220407300, + change: -1.4, + index: 160 + }), + new StockTeslaItem( + { + date: `2023-07-05`, + open: 250.1, + high: 284.2, + low: 240.7, + close: 282.5, + volume: 999163700, + change: 13, + index: 161 + }), + new StockTeslaItem( + { + date: `2023-07-14`, + open: 278.1, + high: 285.3, + low: 265.1, + close: 281.4, + volume: 774400400, + change: 1.2, + index: 162 + }), + new StockTeslaItem( + { + date: `2023-07-25`, + open: 286.6, + high: 299.3, + low: 254.1, + close: 265.3, + volume: 973076400, + change: -7.4, + index: 163 + }), + new StockTeslaItem( + { + date: `2023-08-03`, + open: 263.2, + high: 269.1, + low: 250.5, + close: 259.3, + volume: 678809820, + change: -1.5, + index: 164 + }), + new StockTeslaItem( + { + date: `2023-08-14`, + open: 261, + high: 264.8, + low: 233.8, + close: 239.8, + volume: 716008860, + change: -8.1, + index: 165 + }), + new StockTeslaItem( + { + date: `2023-08-23`, + open: 238.7, + high: 240.8, + low: 212.4, + close: 236.9, + volume: 825055300, + change: -0.8, + index: 166 + }), + new StockTeslaItem( + { + date: `2023-09-01`, + open: 238.7, + high: 261.2, + low: 228.2, + close: 245, + volume: 811502630, + change: 2.7, + index: 167 + }), + new StockTeslaItem( + { + date: `2023-09-13`, + open: 245, + high: 278.4, + low: 243.3, + close: 271.3, + volume: 902643400, + change: 10.7, + index: 168 + }), + new StockTeslaItem( + { + date: `2023-09-22`, + open: 271.3, + high: 279, + low: 244.5, + close: 244.9, + volume: 816639600, + change: -9.7, + index: 169 + }), + new StockTeslaItem( + { + date: `2023-10-03`, + open: 243.4, + high: 254.8, + low: 234.6, + close: 246.5, + volume: 814604700, + change: 1.3, + index: 170 + }), + new StockTeslaItem( + { + date: `2023-10-12`, + open: 248.1, + high: 268.9, + low: 247.6, + close: 258.9, + volume: 806250900, + change: 4.3, + index: 171 + }), + new StockTeslaItem( + { + date: `2023-10-23`, + open: 258.9, + high: 259.6, + low: 202.5, + close: 212.1, + volume: 869390890, + change: -18.1, + index: 172 + }), + new StockTeslaItem( + { + date: `2023-11-01`, + open: 216.5, + high: 222, + low: 194.1, + close: 205.7, + volume: 811468170, + change: -5, + index: 173 + }), + new StockTeslaItem( + { + date: `2023-11-10`, + open: 213, + high: 226.4, + low: 205.7, + close: 214.6, + volume: 859763700, + change: 0.8, + index: 174 + }), + new StockTeslaItem( + { + date: `2023-11-21`, + open: 215.6, + high: 246.7, + low: 211.6, + close: 241.2, + volume: 959006600, + change: 11.9, + index: 175 + }), + new StockTeslaItem( + { + date: `2023-12-01`, + open: 242, + high: 252.8, + low: 231.4, + close: 238.8, + volume: 832910200, + change: -1.3, + index: 176 + }), + new StockTeslaItem( + { + date: `2023-12-12`, + open: 235.8, + high: 246.7, + low: 233.3, + close: 237, + volume: 772018400, + change: 0.5, + index: 177 + }), + new StockTeslaItem( + { + date: `2023-12-21`, + open: 234.2, + high: 259.8, + low: 228.2, + close: 254.5, + volume: 900893400, + change: 8.7, + index: 178 + }), + new StockTeslaItem( + { + date: `2024-01-03`, + open: 256.8, + high: 265.1, + low: 236.3, + close: 238.4, + volume: 727005170, + change: -7.1, + index: 179 + }), + new StockTeslaItem( + { + date: `2024-01-12`, + open: 239.2, + high: 242.7, + low: 217.2, + close: 218.9, + volume: 697536380, + change: -8.5, + index: 180 + }), + new StockTeslaItem( + { + date: `2024-01-24`, + open: 215.1, + high: 223.5, + low: 206.3, + close: 207.8, + volume: 777303400, + change: -3.4, + index: 181 + }), + new StockTeslaItem( + { + date: `2024-02-02`, + open: 189.7, + high: 196.4, + low: 180.1, + close: 187.9, + volume: 846092780, + change: -0.9, + index: 182 + }), + new StockTeslaItem( + { + date: `2024-02-13`, + open: 184.3, + high: 194.7, + low: 175, + close: 184, + volume: 718274070, + change: -0.1, + index: 183 + }), + new StockTeslaItem( + { + date: `2024-02-23`, + open: 185.3, + high: 203.2, + low: 183.4, + close: 192, + volume: 693352670, + change: 3.6, + index: 184 + }), + new StockTeslaItem( + { + date: `2024-03-05`, + open: 192.3, + high: 205.6, + low: 177.6, + close: 180.7, + volume: 742344460, + change: -6, + index: 185 + }), + new StockTeslaItem( + { + date: `2024-03-14`, + open: 180, + high: 182.9, + low: 160.5, + close: 162.5, + volume: 701227950, + change: -9.7, + index: 186 + }), + new StockTeslaItem( + { + date: `2024-03-25`, + open: 163.2, + high: 178.2, + low: 160.8, + close: 172.6, + volume: 589466660, + change: 5.8, + index: 187 + }), + new StockTeslaItem( + { + date: `2024-04-04`, + open: 178.6, + high: 184.2, + low: 163.3, + close: 171.1, + volume: 676969950, + change: -4.2, + index: 188 + }), + new StockTeslaItem( + { + date: `2024-04-15`, + open: 169.1, + high: 179.2, + low: 160.5, + close: 161.5, + volume: 694829970, + change: -4.5, + index: 189 + }), + new StockTeslaItem( + { + date: `2024-04-24`, + open: 156.7, + high: 168, + low: 138.8, + close: 162.1, + volume: 775433710, + change: 3.4, + index: 190 + }), + new StockTeslaItem( + { + date: `2024-05-03`, + open: 159, + high: 198.9, + low: 158.4, + close: 181.2, + volume: 864614000, + change: 14, + index: 191 + }), + new StockTeslaItem( + { + date: `2024-05-14`, + open: 183.8, + high: 187.6, + low: 167.8, + close: 177.6, + volume: 531409380, + change: -3.4, + index: 192 + }), + new StockTeslaItem( + { + date: `2024-05-23`, + open: 179.9, + high: 186.9, + low: 171.4, + close: 173.7, + volume: 554203970, + change: -3.4, + index: 193 + }), + new StockTeslaItem( + { + date: `2024-06-04`, + open: 174.8, + high: 182.7, + low: 173.2, + close: 174.8, + volume: 453828370, + change: 0, + index: 194 + }), + new StockTeslaItem( + { + date: `2024-06-13`, + open: 175.4, + high: 191.1, + low: 167.4, + close: 182.5, + volume: 509090870, + change: 4.1, + index: 195 + }), + new StockTeslaItem( + { + date: `2024-06-25`, + open: 185.8, + high: 188.8, + low: 176.9, + close: 187.4, + volume: 505399520, + change: 0.8, + index: 196 + }), + new StockTeslaItem( + { + date: `2024-07-05`, + open: 186.5, + high: 252.4, + low: 186.4, + close: 251.5, + volume: 925723660, + change: 34.8, + index: 197 + }), + new StockTeslaItem( + { + date: `2024-07-16`, + open: 247.7, + high: 271, + low: 233.1, + close: 256.6, + volume: 1097390000, + change: 3.6, + index: 198 + }), + new StockTeslaItem( + { + date: `2024-07-25`, + open: 252.7, + high: 258.5, + low: 214.7, + close: 220.2, + volume: 795590700, + change: -12.9, + index: 199 + }), + new StockTeslaItem( + { + date: `2024-08-05`, + open: 221.2, + high: 234.7, + low: 182, + close: 198.9, + volume: 658914080, + change: -10.1, + index: 200 + }), + new StockTeslaItem( + { + date: `2024-08-14`, + open: 200.8, + high: 208.5, + low: 191.5, + close: 201.4, + volume: 479168160, + change: 0.3, + index: 201 + }), + new StockTeslaItem( + { + date: `2024-08-23`, + open: 205, + high: 228.2, + low: 204.8, + close: 220.3, + volume: 560235700, + change: 7.5, + index: 202 + }), + new StockTeslaItem( + { + date: `2024-09-04`, + open: 218.8, + high: 222.2, + low: 202.6, + close: 219.4, + volume: 469284350, + change: 0.3, + index: 203 + }), + new StockTeslaItem( + { + date: `2024-09-13`, + open: 223.5, + high: 235, + low: 210.5, + close: 230.3, + volume: 592950440, + change: 3, + index: 204 + }), + new StockTeslaItem( + { + date: `2024-09-24`, + open: 229.3, + high: 257.2, + low: 223.5, + close: 254.3, + volume: 577086700, + change: 10.9, + index: 205 + }), + new StockTeslaItem( + { + date: `2024-10-03`, + open: 252.5, + high: 264.9, + low: 237.8, + close: 240.7, + volume: 546148740, + change: -4.7, + index: 206 + }), + new StockTeslaItem( + { + date: `2024-10-14`, + open: 246.7, + high: 251, + low: 213.7, + close: 219.2, + volume: 589440130, + change: -11.2, + index: 207 + }), + new StockTeslaItem( + { + date: `2024-10-23`, + open: 220, + high: 224.3, + low: 212.1, + close: 213.6, + volume: 384561880, + change: -2.9, + index: 208 + }), + new StockTeslaItem( + { + date: `2024-11-01`, + open: 244.7, + high: 273.5, + low: 242.6, + close: 249, + volume: 732392780, + change: 1.8, + index: 209 + }), + new StockTeslaItem( + { + date: `2024-11-12`, + open: 244.6, + high: 358.6, + low: 238.9, + close: 328.5, + volume: 991653160, + change: 34.3, + index: 210 + }), + new StockTeslaItem( + { + date: `2024-11-21`, + open: 335.8, + high: 348.5, + low: 309.2, + close: 339.6, + volume: 700324320, + change: 1.1, + index: 211 + }), + new StockTeslaItem( + { + date: `2024-12-03`, + open: 341.1, + high: 361.9, + low: 326.6, + close: 351.4, + volume: 478645220, + change: 3, + index: 212 + }), + new StockTeslaItem( + { + date: `2024-12-12`, + open: 353, + high: 429.3, + low: 348.6, + close: 418.1, + volume: 599082110, + change: 18.4, + index: 213 + }), + new StockTeslaItem( + { + date: `2024-12-23`, + open: 420, + high: 481.5, + low: 415.4, + close: 430.6, + volume: 807128120, + change: 2.5, + index: 214 + }), + new StockTeslaItem( + { + date: `2025-01-03`, + open: 435.9, + high: 465.3, + low: 373, + close: 410.4, + volume: 565769940, + change: -5.8, + index: 215 + }), + new StockTeslaItem( + { + date: `2025-01-15`, + open: 423.2, + high: 429.8, + low: 377.3, + close: 428.2, + volume: 530063170, + change: 1.2, + index: 216 + }), + new StockTeslaItem( + { + date: `2025-01-27`, + open: 423.5, + high: 439.7, + low: 389, + close: 397.2, + volume: 476854060, + change: -6.2, + index: 217 + }), + new StockTeslaItem( + { + date: `2025-02-05`, + open: 396.9, + high: 420, + low: 374.4, + close: 378.2, + volume: 507024510, + change: -4.7, + index: 218 + }), + new StockTeslaItem( + { + date: `2025-02-14`, + open: 373, + high: 380.6, + low: 325.1, + close: 355.8, + volume: 607376290, + change: -4.6, + index: 219 + }), + new StockTeslaItem( + { + date: `2025-02-26`, + open: 355, + high: 367.3, + low: 288, + close: 290.8, + volume: 549149490, + change: -18.1, + index: 220 + }), + new StockTeslaItem( + { + date: `2025-03-07`, + open: 291.2, + high: 303.9, + low: 250.7, + close: 262.7, + volume: 754567280, + change: -9.8, + index: 221 + }), + new StockTeslaItem( + { + date: `2025-03-18`, + open: 252.5, + high: 253.4, + low: 217, + close: 225.3, + volume: 944623000, + change: -10.8, + index: 222 + }), + new StockTeslaItem( + { + date: `2025-03-27`, + open: 231.6, + high: 291.8, + low: 229.2, + close: 273.1, + volume: 982018670, + change: 17.9, + index: 223 + }), + new StockTeslaItem( + { + date: `2025-04-07`, + open: 275.6, + high: 285, + low: 214.2, + close: 233.3, + volume: 1117950500, + change: -15.3, + index: 224 + }), + new StockTeslaItem( + { + date: `2025-04-16`, + open: 245, + high: 274.7, + low: 217.8, + close: 241.6, + volume: 993815820, + change: -1.4, + index: 225 + }), + new StockTeslaItem( + { + date: `2025-04-28`, + open: 243.5, + high: 294.9, + low: 222.8, + close: 285.9, + volume: 866169890, + change: 17.4, + index: 226 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-rect-layer/src/app.component.html b/samples/charts/data-chart/data-annotation-rect-layer/src/app.component.html new file mode 100644 index 000000000..9ca2d92dd --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/src/app.component.html @@ -0,0 +1,85 @@ +
+
+ + + + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/data-annotation-rect-layer/src/app.component.scss b/samples/charts/data-chart/data-annotation-rect-layer/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-annotation-rect-layer/src/app.component.ts b/samples/charts/data-chart/data-annotation-rect-layer/src/app.component.ts new file mode 100644 index 000000000..f105f8278 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/src/app.component.ts @@ -0,0 +1,56 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { StockTeslaItem, StockTesla } from './StockTesla'; +import { AnnotationRectDataItem, AnnotationRectData } from './AnnotationRectData'; +import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxFinancialPriceSeriesComponent, IgxDataToolTipLayerComponent, IgxDataAnnotationRectLayerComponent } from 'igniteui-angular-charts'; + +@Component({ + standalone: false, + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxis", { static: true } ) + private xAxis: IgxCategoryXAxisComponent + @ViewChild("yAxis", { static: true } ) + private yAxis: IgxNumericYAxisComponent + @ViewChild("series1", { static: true } ) + private series1: IgxFinancialPriceSeriesComponent + @ViewChild("tooltip", { static: true } ) + private tooltip: IgxDataToolTipLayerComponent + @ViewChild("rectLayer", { static: true } ) + private rectLayer: IgxDataAnnotationRectLayerComponent + private _stockTesla: StockTesla = null; + public get stockTesla(): StockTesla { + if (this._stockTesla == null) + { + this._stockTesla = new StockTesla(); + } + return this._stockTesla; + } + + private _annotationRectData: AnnotationRectData = null; + public get annotationRectData(): AnnotationRectData { + if (this._annotationRectData == null) + { + this._annotationRectData = new AnnotationRectData(); + } + return this._annotationRectData; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/data-annotation-rect-layer/src/app.module.ts b/samples/charts/data-chart/data-annotation-rect-layer/src/app.module.ts new file mode 100644 index 000000000..90cb909f5 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/src/app.module.ts @@ -0,0 +1,35 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartCategoryCoreModule, IgxDataChartFinancialCoreModule, IgxDataChartFinancialModule, IgxDataChartFinancialOverlaysModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule, IgxDataAnnotationRectLayerModule, IgxNumberAbbreviatorModule, IgxAnnotationLayerProxyModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartCategoryCoreModule, + IgxDataChartFinancialCoreModule, + IgxDataChartFinancialModule, + IgxDataChartFinancialOverlaysModule, + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule, + IgxDataAnnotationRectLayerModule, + IgxNumberAbbreviatorModule, + IgxAnnotationLayerProxyModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/data-annotation-rect-layer/src/environments/environment.prod.ts b/samples/charts/data-chart/data-annotation-rect-layer/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/data-annotation-rect-layer/src/environments/environment.ts b/samples/charts/data-chart/data-annotation-rect-layer/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/data-annotation-rect-layer/src/index.html b/samples/charts/data-chart/data-annotation-rect-layer/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/data-annotation-rect-layer/src/main.ts b/samples/charts/data-chart/data-annotation-rect-layer/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/data-annotation-rect-layer/src/polyfills.ts b/samples/charts/data-chart/data-annotation-rect-layer/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/data-annotation-rect-layer/src/styles.scss b/samples/charts/data-chart/data-annotation-rect-layer/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/data-annotation-rect-layer/src/typings.d.ts b/samples/charts/data-chart/data-annotation-rect-layer/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/data-annotation-rect-layer/tsconfig.app.json b/samples/charts/data-chart/data-annotation-rect-layer/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/data-annotation-rect-layer/tsconfig.json b/samples/charts/data-chart/data-annotation-rect-layer/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-rect-layer/tslint.json b/samples/charts/data-chart/data-annotation-rect-layer/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/data-annotation-slice-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/data-annotation-slice-layer/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-slice-layer/.codesandbox/tasks.json b/samples/charts/data-chart/data-annotation-slice-layer/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-slice-layer/.stackblitzrc b/samples/charts/data-chart/data-annotation-slice-layer/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-slice-layer/angular.json b/samples/charts/data-chart/data-annotation-slice-layer/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/data-annotation-slice-layer/package.json b/samples/charts/data-chart/data-annotation-slice-layer/package.json new file mode 100644 index 000000000..91376df51 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/package.json @@ -0,0 +1,43 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.15.0" + }, + "devDependencies": { + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.6.3" + } +} diff --git a/samples/charts/data-chart/data-annotation-slice-layer/src/AnnotationSliceEarningsBeatData.ts b/samples/charts/data-chart/data-annotation-slice-layer/src/AnnotationSliceEarningsBeatData.ts new file mode 100644 index 000000000..766a09381 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/src/AnnotationSliceEarningsBeatData.ts @@ -0,0 +1,35 @@ +export class AnnotationSliceEarningsBeatDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public label: string; + +} +export class AnnotationSliceEarningsBeatData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new AnnotationSliceEarningsBeatDataItem( + { + value: 155, + label: `Earnings Beat` + }), + new AnnotationSliceEarningsBeatDataItem( + { + value: 86, + label: `Earnings Beat` + }), + new AnnotationSliceEarningsBeatDataItem( + { + value: 28, + label: `Earnings Miss` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-slice-layer/src/AnnotationSliceEarningsMissData.ts b/samples/charts/data-chart/data-annotation-slice-layer/src/AnnotationSliceEarningsMissData.ts new file mode 100644 index 000000000..84cd8ac62 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/src/AnnotationSliceEarningsMissData.ts @@ -0,0 +1,35 @@ +export class AnnotationSliceEarningsMissDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public label: string; + +} +export class AnnotationSliceEarningsMissData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new AnnotationSliceEarningsMissDataItem( + { + value: 9, + label: `Earnings Miss` + }), + new AnnotationSliceEarningsMissDataItem( + { + value: 179, + label: `Earnings Miss` + }), + new AnnotationSliceEarningsMissDataItem( + { + value: 215, + label: `Earnings Miss` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-slice-layer/src/AnnotationSliceStockSplitData.ts b/samples/charts/data-chart/data-annotation-slice-layer/src/AnnotationSliceStockSplitData.ts new file mode 100644 index 000000000..8b16a3894 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/src/AnnotationSliceStockSplitData.ts @@ -0,0 +1,30 @@ +export class AnnotationSliceStockSplitDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public label: string; + +} +export class AnnotationSliceStockSplitData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new AnnotationSliceStockSplitDataItem( + { + value: 126, + label: `Stock Split 3-1` + }), + new AnnotationSliceStockSplitDataItem( + { + value: 61, + label: `Stock Split 5-1` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-slice-layer/src/StockTesla.ts b/samples/charts/data-chart/data-annotation-slice-layer/src/StockTesla.ts new file mode 100644 index 000000000..1efe6d6e4 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/src/StockTesla.ts @@ -0,0 +1,2523 @@ +export class StockTeslaItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public date: string; + public open: number; + public high: number; + public low: number; + public close: number; + public volume: number; + public change: number; + public index: number; + +} +export class StockTesla extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new StockTeslaItem( + { + date: `2019-01-10`, + open: 20.4, + high: 23, + low: 19.8, + close: 23, + volume: 779333701, + change: 12.7, + index: 0 + }), + new StockTeslaItem( + { + date: `2019-01-22`, + open: 22.8, + high: 23.5, + low: 19.7, + close: 19.9, + volume: 911781100, + change: -12.6, + index: 1 + }), + new StockTeslaItem( + { + date: `2019-01-31`, + open: 19.5, + high: 20.8, + low: 18.6, + close: 20.5, + volume: 926375717, + change: 5, + index: 2 + }), + new StockTeslaItem( + { + date: `2019-02-11`, + open: 20.4, + high: 21.6, + low: 19.9, + close: 20.9, + volume: 687520471, + change: 2.4, + index: 3 + }), + new StockTeslaItem( + { + date: `2019-02-21`, + open: 21.1, + high: 21.2, + low: 19.4, + close: 19.4, + volume: 597552272, + change: -7.9, + index: 4 + }), + new StockTeslaItem( + { + date: `2019-03-04`, + open: 19.6, + high: 21.3, + low: 18.9, + close: 19, + volume: 1218669201, + change: -3.1, + index: 5 + }), + new StockTeslaItem( + { + date: `2019-03-13`, + open: 18.8, + high: 19.5, + low: 18, + close: 19.3, + volume: 1034156904, + change: 2.5, + index: 6 + }), + new StockTeslaItem( + { + date: `2019-03-22`, + open: 19.5, + high: 19.7, + low: 17.6, + close: 17.6, + volume: 980694095, + change: -9.5, + index: 7 + }), + new StockTeslaItem( + { + date: `2019-04-02`, + open: 17.3, + high: 19.3, + low: 17, + close: 19.1, + volume: 788473494, + change: 10.1, + index: 8 + }), + new StockTeslaItem( + { + date: `2019-04-11`, + open: 19.2, + high: 19.7, + low: 17.4, + close: 17.9, + volume: 1165555442, + change: -6.6, + index: 9 + }), + new StockTeslaItem( + { + date: `2019-04-23`, + open: 18, + high: 18.3, + low: 17, + close: 17.6, + volume: 870373200, + change: -2.3, + index: 10 + }), + new StockTeslaItem( + { + date: `2019-05-02`, + open: 17.6, + high: 17.7, + low: 15.4, + close: 16.3, + volume: 1629432326, + change: -7.5, + index: 11 + }), + new StockTeslaItem( + { + date: `2019-05-13`, + open: 16.3, + high: 17.2, + low: 15, + close: 15.1, + volume: 1131045605, + change: -6.9, + index: 12 + }), + new StockTeslaItem( + { + date: `2019-05-22`, + open: 15.3, + high: 15.6, + low: 12.8, + close: 12.8, + volume: 1455503588, + change: -15.9, + index: 13 + }), + new StockTeslaItem( + { + date: `2019-06-03`, + open: 13, + high: 13.3, + low: 11.8, + close: 11.9, + volume: 1415442268, + change: -7.9, + index: 14 + }), + new StockTeslaItem( + { + date: `2019-06-12`, + open: 12.1, + high: 14.9, + low: 12, + close: 14, + volume: 1515000443, + change: 15.6, + index: 15 + }), + new StockTeslaItem( + { + date: `2019-06-21`, + open: 14, + high: 15.6, + low: 13.8, + close: 14.8, + volume: 1009123371, + change: 5.5, + index: 16 + }), + new StockTeslaItem( + { + date: `2019-07-02`, + open: 14.9, + high: 15.5, + low: 14.5, + close: 15, + volume: 766921642, + change: 0.6, + index: 17 + }), + new StockTeslaItem( + { + date: `2019-07-12`, + open: 16, + high: 16.4, + low: 15.2, + close: 16.3, + volume: 887983836, + change: 2.4, + index: 18 + }), + new StockTeslaItem( + { + date: `2019-07-23`, + open: 16.5, + high: 17.5, + low: 16.3, + close: 17.3, + volume: 788941000, + change: 4.9, + index: 19 + }), + new StockTeslaItem( + { + date: `2019-08-01`, + open: 17.3, + high: 17.7, + low: 14.8, + close: 15.6, + volume: 1175082297, + change: -9.8, + index: 20 + }), + new StockTeslaItem( + { + date: `2019-08-12`, + open: 15.4, + high: 16, + low: 15, + close: 15.3, + volume: 560129569, + change: -1, + index: 21 + }), + new StockTeslaItem( + { + date: `2019-08-21`, + open: 15.3, + high: 15.7, + low: 14.1, + close: 14.7, + volume: 677293701, + change: -3.5, + index: 22 + }), + new StockTeslaItem( + { + date: `2019-08-30`, + open: 14.9, + high: 15.5, + low: 14.1, + close: 15, + volume: 650239370, + change: 1.3, + index: 23 + }), + new StockTeslaItem( + { + date: `2019-09-11`, + open: 14.9, + high: 16.5, + low: 14.6, + close: 16.5, + volume: 636766167, + change: 10.3, + index: 24 + }), + new StockTeslaItem( + { + date: `2019-09-20`, + open: 16.5, + high: 16.9, + low: 15.9, + close: 16, + volume: 572802643, + change: -2.9, + index: 25 + }), + new StockTeslaItem( + { + date: `2019-10-01`, + open: 16, + high: 16.6, + low: 14.6, + close: 16.3, + volume: 931821239, + change: 2, + index: 26 + }), + new StockTeslaItem( + { + date: `2019-10-10`, + open: 16.2, + high: 16.6, + low: 15, + close: 16.3, + volume: 891798049, + change: 0.6, + index: 27 + }), + new StockTeslaItem( + { + date: `2019-10-21`, + open: 16.5, + high: 17.7, + low: 16.5, + close: 16.9, + volume: 713093463, + change: 2.6, + index: 28 + }), + new StockTeslaItem( + { + date: `2019-10-30`, + open: 17, + high: 22.7, + low: 16.7, + close: 21, + volume: 1752943598, + change: 23.9, + index: 29 + }), + new StockTeslaItem( + { + date: `2019-11-08`, + open: 20.9, + high: 22.8, + low: 20.6, + close: 22.5, + volume: 834957256, + change: 7.7, + index: 30 + }), + new StockTeslaItem( + { + date: `2019-11-19`, + open: 22.9, + high: 24, + low: 22.8, + close: 24, + volume: 738746390, + change: 4.5, + index: 31 + }), + new StockTeslaItem( + { + date: `2019-11-29`, + open: 24, + high: 24.1, + low: 21.8, + close: 22, + volume: 870685288, + change: -8.4, + index: 32 + }), + new StockTeslaItem( + { + date: `2019-12-10`, + open: 22, + high: 23.4, + low: 21.8, + close: 23.3, + volume: 712016613, + change: 5.9, + index: 33 + }), + new StockTeslaItem( + { + date: `2019-12-19`, + open: 23.5, + high: 27.1, + low: 23.4, + close: 26.9, + volume: 1203765433, + change: 14.8, + index: 34 + }), + new StockTeslaItem( + { + date: `2019-12-31`, + open: 27.4, + high: 29, + low: 26.7, + close: 27.9, + volume: 1195073357, + change: 2, + index: 35 + }), + new StockTeslaItem( + { + date: `2020-01-10`, + open: 28.3, + high: 33.3, + low: 28.1, + close: 31.9, + volume: 1925386078, + change: 12.6, + index: 36 + }), + new StockTeslaItem( + { + date: `2020-01-22`, + open: 32.9, + high: 39.6, + low: 32.8, + close: 38, + volume: 2364043518, + change: 15.4, + index: 37 + }), + new StockTeslaItem( + { + date: `2020-01-31`, + open: 37.6, + high: 43.5, + low: 36, + close: 43.4, + volume: 1835141382, + change: 15.3, + index: 38 + }), + new StockTeslaItem( + { + date: `2020-02-11`, + open: 44.9, + high: 64.6, + low: 44.9, + close: 51.6, + volume: 3748903126, + change: 14.9, + index: 39 + }), + new StockTeslaItem( + { + date: `2020-02-21`, + open: 51.9, + high: 63, + low: 49, + close: 60.1, + volume: 1921517039, + change: 15.8, + index: 40 + }), + new StockTeslaItem( + { + date: `2020-03-03`, + open: 55.9, + high: 57.6, + low: 40.8, + close: 49.7, + volume: 2121850940, + change: -11.1, + index: 41 + }), + new StockTeslaItem( + { + date: `2020-03-12`, + open: 50.9, + high: 51.1, + low: 36.4, + close: 37.4, + volume: 1553329923, + change: -26.6, + index: 42 + }), + new StockTeslaItem( + { + date: `2020-03-23`, + open: 39.7, + high: 40.5, + low: 23.4, + close: 29, + volume: 2487688157, + change: -27, + index: 43 + }), + new StockTeslaItem( + { + date: `2020-04-01`, + open: 31.8, + high: 37.3, + low: 31.6, + close: 32.1, + volume: 1785601357, + change: 0.9, + index: 44 + }), + new StockTeslaItem( + { + date: `2020-04-13`, + open: 32.1, + high: 43.5, + low: 29.8, + close: 43.4, + volume: 1860352620, + change: 35.3, + index: 45 + }), + new StockTeslaItem( + { + date: `2020-04-22`, + open: 46.6, + high: 51.7, + low: 44.9, + close: 48.8, + volume: 2056797321, + change: 4.7, + index: 46 + }), + new StockTeslaItem( + { + date: `2020-05-01`, + open: 48.5, + high: 58, + low: 45.5, + close: 46.8, + volume: 2093959203, + change: -3.6, + index: 47 + }), + new StockTeslaItem( + { + date: `2020-05-12`, + open: 46.7, + high: 56.2, + low: 46.5, + close: 54, + volume: 1611543246, + change: 15.5, + index: 48 + }), + new StockTeslaItem( + { + date: `2020-05-21`, + open: 54.7, + high: 55.6, + low: 50.9, + close: 55.2, + volume: 1262468113, + change: 0.8, + index: 49 + }), + new StockTeslaItem( + { + date: `2020-06-02`, + open: 54.8, + high: 60.6, + low: 52.3, + close: 58.8, + volume: 1160487993, + change: 7.2, + index: 50 + }), + new StockTeslaItem( + { + date: `2020-06-11`, + open: 59.2, + high: 68.5, + low: 57.2, + close: 64.9, + volume: 1270377400, + change: 9.5, + index: 51 + }), + new StockTeslaItem( + { + date: `2020-06-22`, + open: 65.3, + high: 67.9, + low: 60.6, + close: 66.3, + volume: 1217946366, + change: 1.5, + index: 52 + }), + new StockTeslaItem( + { + date: `2020-07-01`, + open: 66.6, + high: 75.7, + low: 62.5, + close: 74.6, + volume: 1120591270, + change: 12.1, + index: 53 + }), + new StockTeslaItem( + { + date: `2020-07-13`, + open: 81.4, + high: 119.7, + low: 79, + close: 99.8, + volume: 2244920779, + change: 22.6, + index: 54 + }), + new StockTeslaItem( + { + date: `2020-07-22`, + open: 103.7, + high: 111.7, + low: 95.4, + close: 106.2, + volume: 1662846099, + change: 2.3, + index: 55 + }), + new StockTeslaItem( + { + date: `2020-07-31`, + open: 111.9, + high: 112.6, + low: 91.1, + close: 95.4, + volume: 1573159944, + change: -14.8, + index: 56 + }), + new StockTeslaItem( + { + date: `2020-08-11`, + open: 96.6, + high: 101.8, + low: 91, + close: 91.6, + volume: 798587331, + change: -5.2, + index: 57 + }), + new StockTeslaItem( + { + date: `2020-08-20`, + open: 98, + high: 134.8, + low: 95.7, + close: 133.5, + volume: 1866534416, + change: 36.2, + index: 58 + }), + new StockTeslaItem( + { + date: `2020-08-31`, + open: 136.3, + high: 166.7, + low: 128.5, + close: 166.1, + volume: 2008507459, + change: 21.9, + index: 59 + }), + new StockTeslaItem( + { + date: `2020-09-10`, + open: 167.4, + high: 167.5, + low: 110, + close: 123.8, + volume: 1992227059, + change: -26, + index: 60 + }), + new StockTeslaItem( + { + date: `2020-09-21`, + open: 127.3, + high: 154, + low: 120.2, + close: 149.8, + volume: 1758737696, + change: 17.7, + index: 61 + }), + new StockTeslaItem( + { + date: `2020-09-30`, + open: 143.2, + high: 145.9, + low: 117.1, + close: 143, + volume: 1459893236, + change: -0.1, + index: 62 + }), + new StockTeslaItem( + { + date: `2020-10-09`, + open: 146.9, + high: 149.6, + low: 135.4, + close: 144.7, + volume: 985545158, + change: -1.5, + index: 63 + }), + new StockTeslaItem( + { + date: `2020-10-20`, + open: 147.3, + high: 155.3, + low: 139.7, + close: 140.6, + volume: 773077727, + change: -4.5, + index: 64 + }), + new StockTeslaItem( + { + date: `2020-10-29`, + open: 140.9, + high: 148.4, + low: 135.3, + close: 136.9, + volume: 615339122, + change: -2.8, + index: 65 + }), + new StockTeslaItem( + { + date: `2020-11-09`, + open: 135.6, + high: 150.8, + low: 126.4, + close: 140.4, + volume: 669171368, + change: 3.5, + index: 66 + }), + new StockTeslaItem( + { + date: `2020-11-18`, + open: 140, + high: 165.3, + low: 132, + close: 162.2, + volume: 760451265, + change: 15.8, + index: 67 + }), + new StockTeslaItem( + { + date: `2020-11-30`, + open: 164, + high: 202.6, + low: 162.5, + close: 189.2, + volume: 1046371155, + change: 15.4, + index: 68 + }), + new StockTeslaItem( + { + date: `2020-12-09`, + open: 199.2, + high: 218.1, + low: 180.4, + close: 201.5, + volume: 1055933265, + change: 1.2, + index: 69 + }), + new StockTeslaItem( + { + date: `2020-12-18`, + open: 191.5, + high: 231.7, + low: 188.8, + close: 231.7, + volume: 1593943601, + change: 21, + index: 70 + }), + new StockTeslaItem( + { + date: `2020-12-30`, + open: 222.1, + high: 232.2, + low: 204.7, + close: 231.6, + volume: 791942570, + change: 4.3, + index: 71 + }), + new StockTeslaItem( + { + date: `2021-01-11`, + open: 233.3, + high: 294.8, + low: 230.4, + close: 270.4, + volume: 1084025779, + change: 15.9, + index: 72 + }), + new StockTeslaItem( + { + date: `2021-01-21`, + open: 277, + high: 289.3, + low: 273, + close: 281.7, + volume: 663774487, + change: 1.7, + index: 73 + }), + new StockTeslaItem( + { + date: `2021-02-01`, + open: 278.1, + high: 300.1, + low: 260, + close: 279.9, + volume: 595397009, + change: 0.7, + index: 74 + }), + new StockTeslaItem( + { + date: `2021-02-10`, + open: 281.6, + high: 293.5, + low: 266.7, + close: 268.3, + volume: 445813486, + change: -4.7, + index: 75 + }), + new StockTeslaItem( + { + date: `2021-02-22`, + open: 270.8, + high: 276.6, + low: 236.7, + close: 238.2, + volume: 496372009, + change: -12.1, + index: 76 + }), + new StockTeslaItem( + { + date: `2021-03-03`, + open: 220.7, + high: 290.7, + low: 206.3, + close: 217.7, + volume: 793689739, + change: -1.3, + index: 77 + }), + new StockTeslaItem( + { + date: `2021-03-12`, + open: 218.6, + high: 291.3, + low: 179.8, + close: 231.2, + volume: 1215209162, + change: 5.8, + index: 78 + }), + new StockTeslaItem( + { + date: `2021-03-23`, + open: 231.4, + high: 237.7, + low: 208.2, + close: 220.7, + volume: 744776145, + change: -4.6, + index: 79 + }), + new StockTeslaItem( + { + date: `2021-04-01`, + open: 222.6, + high: 230.8, + low: 197, + close: 220.6, + volume: 730733684, + change: -0.9, + index: 80 + }), + new StockTeslaItem( + { + date: `2021-04-13`, + open: 235.9, + high: 254.3, + low: 222.6, + close: 254.1, + volume: 646721884, + change: 7.7, + index: 81 + }), + new StockTeslaItem( + { + date: `2021-04-22`, + open: 256.9, + high: 260.3, + low: 230.6, + close: 239.9, + volume: 740840774, + change: -6.6, + index: 82 + }), + new StockTeslaItem( + { + date: `2021-05-03`, + open: 239.9, + high: 249.8, + low: 222, + close: 228.3, + volume: 623423313, + change: -4.8, + index: 83 + }), + new StockTeslaItem( + { + date: `2021-05-12`, + open: 226.3, + high: 230, + low: 195.6, + close: 196.6, + volume: 643844974, + change: -13.1, + index: 84 + }), + new StockTeslaItem( + { + date: `2021-05-21`, + open: 200.5, + high: 202.2, + low: 182.3, + close: 193.6, + volume: 729192883, + change: -3.4, + index: 85 + }), + new StockTeslaItem( + { + date: `2021-06-02`, + open: 193.9, + high: 211.9, + low: 191.2, + close: 201.7, + volume: 545095944, + change: 4, + index: 86 + }), + new StockTeslaItem( + { + date: `2021-06-11`, + open: 200.6, + high: 207.7, + low: 190.4, + close: 203.3, + volume: 478366128, + change: 1.3, + index: 87 + }), + new StockTeslaItem( + { + date: `2021-06-22`, + open: 204.1, + high: 210.5, + low: 197.8, + close: 207.9, + volume: 454698495, + change: 1.9, + index: 88 + }), + new StockTeslaItem( + { + date: `2021-07-01`, + open: 210.7, + high: 232.5, + low: 210, + close: 226, + volume: 558441596, + change: 7.3, + index: 89 + }), + new StockTeslaItem( + { + date: `2021-07-13`, + open: 226.3, + high: 233.3, + low: 206.8, + close: 222.8, + volume: 470942387, + change: -1.5, + index: 90 + }), + new StockTeslaItem( + { + date: `2021-07-22`, + open: 223.6, + high: 226.2, + low: 207.1, + close: 216.4, + volume: 372195097, + change: -3.2, + index: 91 + }), + new StockTeslaItem( + { + date: `2021-08-02`, + open: 215.5, + high: 242.3, + low: 209.1, + close: 236.6, + volume: 547284685, + change: 9.8, + index: 92 + }), + new StockTeslaItem( + { + date: `2021-08-11`, + open: 239.7, + high: 241.6, + low: 232.5, + close: 235.9, + volume: 315341455, + change: -1.6, + index: 93 + }), + new StockTeslaItem( + { + date: `2021-08-20`, + open: 235.4, + high: 243.3, + low: 216.3, + close: 226.8, + volume: 392227478, + change: -3.7, + index: 94 + }), + new StockTeslaItem( + { + date: `2021-08-31`, + open: 228.5, + high: 246.8, + low: 226.9, + close: 245.2, + volume: 337503634, + change: 7.3, + index: 95 + }), + new StockTeslaItem( + { + date: `2021-09-10`, + open: 244.7, + high: 254.8, + low: 241.4, + close: 245.4, + volume: 328100734, + change: 0.3, + index: 96 + }), + new StockTeslaItem( + { + date: `2021-09-21`, + open: 246.7, + high: 253.7, + low: 236.3, + close: 246.5, + volume: 420153012, + change: -0.1, + index: 97 + }), + new StockTeslaItem( + { + date: `2021-09-30`, + open: 247.8, + high: 266.3, + low: 246.4, + close: 258.5, + volume: 422393262, + change: 4.3, + index: 98 + }), + new StockTeslaItem( + { + date: `2021-10-11`, + open: 259.5, + high: 269, + low: 254.5, + close: 264, + volume: 392144589, + change: 1.7, + index: 99 + }), + new StockTeslaItem( + { + date: `2021-10-20`, + open: 267, + high: 292.6, + low: 265.5, + close: 288.6, + volume: 368796877, + change: 8.1, + index: 100 + }), + new StockTeslaItem( + { + date: `2021-10-29`, + open: 285.3, + high: 371.7, + low: 285.2, + close: 371.3, + volume: 825862313, + change: 30.1, + index: 101 + }), + new StockTeslaItem( + { + date: `2021-11-09`, + open: 381.7, + high: 414.5, + low: 337.2, + close: 341.2, + volume: 818978542, + change: -10.6, + index: 102 + }), + new StockTeslaItem( + { + date: `2021-11-18`, + open: 336.8, + high: 373.2, + low: 326.2, + close: 365.5, + volume: 613304311, + change: 8.5, + index: 103 + }), + new StockTeslaItem( + { + date: `2021-11-30`, + open: 366.3, + high: 400.6, + low: 354, + close: 381.6, + volume: 515052382, + change: 4.2, + index: 104 + }), + new StockTeslaItem( + { + date: `2021-12-09`, + open: 386.9, + high: 390.9, + low: 316.8, + close: 334.6, + volume: 473333567, + change: -13.5, + index: 105 + }), + new StockTeslaItem( + { + date: `2021-12-20`, + open: 336.2, + high: 340.3, + low: 297.8, + close: 300, + volume: 524367113, + change: -10.8, + index: 106 + }), + new StockTeslaItem( + { + date: `2021-12-30`, + open: 305.6, + high: 373, + low: 295.4, + close: 356.8, + volume: 492530059, + change: 16.7, + index: 107 + }), + new StockTeslaItem( + { + date: `2022-01-10`, + open: 357.8, + high: 402.7, + low: 326.7, + close: 352.7, + volume: 592103938, + change: -1.4, + index: 108 + }), + new StockTeslaItem( + { + date: `2022-01-20`, + open: 351.2, + high: 371.9, + low: 331.3, + close: 332.1, + volume: 532857144, + change: -5.4, + index: 109 + }), + new StockTeslaItem( + { + date: `2022-01-31`, + open: 332.1, + high: 334.8, + low: 264, + close: 312.2, + volume: 833589022, + change: -6, + index: 110 + }), + new StockTeslaItem( + { + date: `2022-02-09`, + open: 311.7, + high: 315.9, + low: 293.5, + close: 310.7, + volume: 456395505, + change: -0.3, + index: 111 + }), + new StockTeslaItem( + { + date: `2022-02-18`, + open: 302.8, + high: 314.6, + low: 279.2, + close: 285.7, + volume: 446153356, + change: -5.7, + index: 112 + }), + new StockTeslaItem( + { + date: `2022-03-02`, + open: 278, + high: 296.6, + low: 233.3, + close: 293.3, + volume: 638352514, + change: 5.5, + index: 113 + }), + new StockTeslaItem( + { + date: `2022-03-11`, + open: 292.9, + high: 295.5, + low: 260.7, + close: 265.1, + volume: 466566467, + change: -9.5, + index: 114 + }), + new StockTeslaItem( + { + date: `2022-03-22`, + open: 260.2, + high: 332.6, + low: 252, + close: 331.3, + volume: 576869668, + change: 27.3, + index: 115 + }), + new StockTeslaItem( + { + date: `2022-03-31`, + open: 326.6, + high: 371.6, + low: 325.5, + close: 359.2, + volume: 536607263, + change: 10, + index: 116 + }), + new StockTeslaItem( + { + date: `2022-04-11`, + open: 360.4, + high: 384.3, + low: 324.9, + close: 325.3, + volume: 499682510, + change: -9.7, + index: 117 + }), + new StockTeslaItem( + { + date: `2022-04-21`, + open: 332.5, + high: 364.1, + low: 324.4, + close: 336.3, + volume: 457210487, + change: 1.1, + index: 118 + }), + new StockTeslaItem( + { + date: `2022-05-02`, + open: 338.3, + high: 345, + low: 273.9, + close: 301, + volume: 639990965, + change: -11, + index: 119 + }), + new StockTeslaItem( + { + date: `2022-05-11`, + open: 301.1, + high: 318.5, + low: 242.4, + close: 244.7, + volume: 583211967, + change: -18.7, + index: 120 + }), + new StockTeslaItem( + { + date: `2022-05-20`, + open: 233.7, + high: 262.4, + low: 211, + close: 221.3, + volume: 721880082, + change: -5.3, + index: 121 + }), + new StockTeslaItem( + { + date: `2022-06-01`, + open: 218.3, + high: 259.6, + low: 206.9, + close: 246.8, + volume: 644596235, + change: 13, + index: 122 + }), + new StockTeslaItem( + { + date: `2022-06-10`, + open: 244.2, + high: 264.2, + low: 227.9, + close: 232.2, + volume: 633672873, + change: -4.9, + index: 123 + }), + new StockTeslaItem( + { + date: `2022-06-22`, + open: 223.2, + high: 246.8, + low: 208.7, + close: 236.1, + volume: 744240764, + change: 5.8, + index: 124 + }), + new StockTeslaItem( + { + date: `2022-07-01`, + open: 237.9, + high: 252.1, + low: 218.9, + close: 227.3, + volume: 631776422, + change: -4.5, + index: 125 + }), + new StockTeslaItem( + { + date: `2022-07-13`, + open: 223, + high: 255, + low: 216.2, + close: 237, + volume: 625812242, + change: 6.3, + index: 126 + }), + new StockTeslaItem( + { + date: `2022-07-22`, + open: 234.9, + high: 280.8, + low: 229.3, + close: 272.2, + volume: 646037224, + change: 15.9, + index: 127 + }), + new StockTeslaItem( + { + date: `2022-08-02`, + open: 272.2, + high: 311.9, + low: 256.3, + close: 300.6, + volume: 611660612, + change: 10.4, + index: 128 + }), + new StockTeslaItem( + { + date: `2022-08-11`, + open: 305, + high: 313.6, + low: 279.4, + close: 286.6, + volume: 616204291, + change: -6, + index: 129 + }), + new StockTeslaItem( + { + date: `2022-08-22`, + open: 289.4, + high: 314.7, + low: 285, + close: 289.9, + volume: 490658060, + change: 0.2, + index: 130 + }), + new StockTeslaItem( + { + date: `2022-08-31`, + open: 291.5, + high: 303.6, + low: 271.8, + close: 275.6, + volume: 376152572, + change: -5.4, + index: 131 + }), + new StockTeslaItem( + { + date: `2022-09-12`, + open: 272.6, + high: 305.5, + low: 265.7, + close: 304.4, + volume: 367924580, + change: 11.7, + index: 132 + }), + new StockTeslaItem( + { + date: `2022-09-21`, + open: 292.9, + high: 313.8, + low: 290.4, + close: 300.8, + volume: 477171180, + change: 2.7, + index: 133 + }), + new StockTeslaItem( + { + date: `2022-09-30`, + open: 299.9, + high: 301.3, + low: 262.5, + close: 265.2, + volume: 454307920, + change: -11.5, + index: 134 + }), + new StockTeslaItem( + { + date: `2022-10-11`, + open: 254.5, + high: 257.5, + low: 215, + close: 216.5, + volume: 593078170, + change: -14.9, + index: 135 + }), + new StockTeslaItem( + { + date: `2022-10-20`, + open: 215.3, + high: 229.8, + low: 202, + close: 207.3, + volume: 592158560, + change: -3.7, + index: 136 + }), + new StockTeslaItem( + { + date: `2022-10-31`, + open: 206.4, + high: 233.8, + low: 198.6, + close: 227.5, + volume: 550341050, + change: 10.2, + index: 137 + }), + new StockTeslaItem( + { + date: `2022-11-09`, + open: 234, + high: 237.4, + low: 177.1, + close: 177.6, + volume: 630702790, + change: -24.1, + index: 138 + }), + new StockTeslaItem( + { + date: `2022-11-18`, + open: 189.9, + high: 200.8, + low: 176.6, + close: 180.2, + volume: 637579480, + change: -5.1, + index: 139 + }), + new StockTeslaItem( + { + date: `2022-11-30`, + open: 175.8, + high: 194.8, + low: 166.2, + close: 194.7, + volume: 617126140, + change: 10.7, + index: 140 + }), + new StockTeslaItem( + { + date: `2022-12-09`, + open: 197.1, + high: 198.9, + low: 169.1, + close: 179, + volume: 625675690, + change: -9.1, + index: 141 + }), + new StockTeslaItem( + { + date: `2022-12-20`, + open: 176.1, + high: 177.4, + low: 137.7, + close: 137.8, + volume: 986660100, + change: -21.7, + index: 142 + }), + new StockTeslaItem( + { + date: `2022-12-30`, + open: 139.3, + high: 141.3, + low: 108.2, + close: 123.2, + volume: 1331911900, + change: -11.6, + index: 143 + }), + new StockTeslaItem( + { + date: `2023-01-11`, + open: 118.5, + high: 126, + low: 101.8, + close: 123.2, + volume: 1332426500, + change: 4, + index: 144 + }), + new StockTeslaItem( + { + date: `2023-01-23`, + open: 122.6, + high: 145.4, + low: 115.6, + close: 143.8, + volume: 1244541500, + change: 17.3, + index: 145 + }), + new StockTeslaItem( + { + date: `2023-02-01`, + open: 143, + high: 183.8, + low: 138.1, + close: 181.4, + volume: 1534337700, + change: 26.9, + index: 146 + }), + new StockTeslaItem( + { + date: `2023-02-10`, + open: 187.3, + high: 214, + low: 182.6, + close: 196.9, + volume: 1423167800, + change: 5.1, + index: 147 + }), + new StockTeslaItem( + { + date: `2023-02-22`, + open: 194.4, + high: 217.6, + low: 187.6, + close: 200.9, + volume: 1386211900, + change: 3.3, + index: 148 + }), + new StockTeslaItem( + { + date: `2023-03-03`, + open: 203.9, + high: 211.2, + low: 186, + close: 197.8, + volume: 1095786600, + change: -3, + index: 149 + }), + new StockTeslaItem( + { + date: `2023-03-14`, + open: 198.5, + high: 198.6, + low: 163.9, + close: 183.3, + volume: 1101144600, + change: -7.7, + index: 150 + }), + new StockTeslaItem( + { + date: `2023-03-23`, + open: 180.8, + high: 200.7, + low: 176, + close: 192.2, + volume: 978213300, + change: 6.3, + index: 151 + }), + new StockTeslaItem( + { + date: `2023-04-03`, + open: 191.6, + high: 207.8, + low: 185.4, + close: 194.8, + volume: 909718040, + change: 1.6, + index: 152 + }), + new StockTeslaItem( + { + date: `2023-04-13`, + open: 197.3, + high: 198.7, + low: 176.1, + close: 185.9, + volume: 905319000, + change: -5.8, + index: 153 + }), + new StockTeslaItem( + { + date: `2023-04-24`, + open: 184, + high: 189.7, + low: 158.6, + close: 162.6, + volume: 905416980, + change: -11.6, + index: 154 + }), + new StockTeslaItem( + { + date: `2023-05-03`, + open: 159.8, + high: 165.5, + low: 152.4, + close: 160.6, + volume: 881897100, + change: 0.5, + index: 155 + }), + new StockTeslaItem( + { + date: `2023-05-12`, + open: 162.7, + high: 177.4, + low: 159.6, + close: 168, + volume: 785510430, + change: 3.2, + index: 156 + }), + new StockTeslaItem( + { + date: `2023-05-23`, + open: 167.7, + high: 193, + low: 164.4, + close: 185.8, + volume: 864025390, + change: 10.8, + index: 157 + }), + new StockTeslaItem( + { + date: `2023-06-02`, + open: 182.2, + high: 217.2, + low: 178.2, + close: 214, + volume: 988496020, + change: 17.4, + index: 158 + }), + new StockTeslaItem( + { + date: `2023-06-13`, + open: 217.8, + high: 259.7, + low: 212.5, + close: 258.7, + volume: 1161622400, + change: 18.8, + index: 159 + }), + new StockTeslaItem( + { + date: `2023-06-23`, + open: 260.2, + high: 277, + low: 247.3, + close: 256.6, + volume: 1220407300, + change: -1.4, + index: 160 + }), + new StockTeslaItem( + { + date: `2023-07-05`, + open: 250.1, + high: 284.2, + low: 240.7, + close: 282.5, + volume: 999163700, + change: 13, + index: 161 + }), + new StockTeslaItem( + { + date: `2023-07-14`, + open: 278.1, + high: 285.3, + low: 265.1, + close: 281.4, + volume: 774400400, + change: 1.2, + index: 162 + }), + new StockTeslaItem( + { + date: `2023-07-25`, + open: 286.6, + high: 299.3, + low: 254.1, + close: 265.3, + volume: 973076400, + change: -7.4, + index: 163 + }), + new StockTeslaItem( + { + date: `2023-08-03`, + open: 263.2, + high: 269.1, + low: 250.5, + close: 259.3, + volume: 678809820, + change: -1.5, + index: 164 + }), + new StockTeslaItem( + { + date: `2023-08-14`, + open: 261, + high: 264.8, + low: 233.8, + close: 239.8, + volume: 716008860, + change: -8.1, + index: 165 + }), + new StockTeslaItem( + { + date: `2023-08-23`, + open: 238.7, + high: 240.8, + low: 212.4, + close: 236.9, + volume: 825055300, + change: -0.8, + index: 166 + }), + new StockTeslaItem( + { + date: `2023-09-01`, + open: 238.7, + high: 261.2, + low: 228.2, + close: 245, + volume: 811502630, + change: 2.7, + index: 167 + }), + new StockTeslaItem( + { + date: `2023-09-13`, + open: 245, + high: 278.4, + low: 243.3, + close: 271.3, + volume: 902643400, + change: 10.7, + index: 168 + }), + new StockTeslaItem( + { + date: `2023-09-22`, + open: 271.3, + high: 279, + low: 244.5, + close: 244.9, + volume: 816639600, + change: -9.7, + index: 169 + }), + new StockTeslaItem( + { + date: `2023-10-03`, + open: 243.4, + high: 254.8, + low: 234.6, + close: 246.5, + volume: 814604700, + change: 1.3, + index: 170 + }), + new StockTeslaItem( + { + date: `2023-10-12`, + open: 248.1, + high: 268.9, + low: 247.6, + close: 258.9, + volume: 806250900, + change: 4.3, + index: 171 + }), + new StockTeslaItem( + { + date: `2023-10-23`, + open: 258.9, + high: 259.6, + low: 202.5, + close: 212.1, + volume: 869390890, + change: -18.1, + index: 172 + }), + new StockTeslaItem( + { + date: `2023-11-01`, + open: 216.5, + high: 222, + low: 194.1, + close: 205.7, + volume: 811468170, + change: -5, + index: 173 + }), + new StockTeslaItem( + { + date: `2023-11-10`, + open: 213, + high: 226.4, + low: 205.7, + close: 214.6, + volume: 859763700, + change: 0.8, + index: 174 + }), + new StockTeslaItem( + { + date: `2023-11-21`, + open: 215.6, + high: 246.7, + low: 211.6, + close: 241.2, + volume: 959006600, + change: 11.9, + index: 175 + }), + new StockTeslaItem( + { + date: `2023-12-01`, + open: 242, + high: 252.8, + low: 231.4, + close: 238.8, + volume: 832910200, + change: -1.3, + index: 176 + }), + new StockTeslaItem( + { + date: `2023-12-12`, + open: 235.8, + high: 246.7, + low: 233.3, + close: 237, + volume: 772018400, + change: 0.5, + index: 177 + }), + new StockTeslaItem( + { + date: `2023-12-21`, + open: 234.2, + high: 259.8, + low: 228.2, + close: 254.5, + volume: 900893400, + change: 8.7, + index: 178 + }), + new StockTeslaItem( + { + date: `2024-01-03`, + open: 256.8, + high: 265.1, + low: 236.3, + close: 238.4, + volume: 727005170, + change: -7.1, + index: 179 + }), + new StockTeslaItem( + { + date: `2024-01-12`, + open: 239.2, + high: 242.7, + low: 217.2, + close: 218.9, + volume: 697536380, + change: -8.5, + index: 180 + }), + new StockTeslaItem( + { + date: `2024-01-24`, + open: 215.1, + high: 223.5, + low: 206.3, + close: 207.8, + volume: 777303400, + change: -3.4, + index: 181 + }), + new StockTeslaItem( + { + date: `2024-02-02`, + open: 189.7, + high: 196.4, + low: 180.1, + close: 187.9, + volume: 846092780, + change: -0.9, + index: 182 + }), + new StockTeslaItem( + { + date: `2024-02-13`, + open: 184.3, + high: 194.7, + low: 175, + close: 184, + volume: 718274070, + change: -0.1, + index: 183 + }), + new StockTeslaItem( + { + date: `2024-02-23`, + open: 185.3, + high: 203.2, + low: 183.4, + close: 192, + volume: 693352670, + change: 3.6, + index: 184 + }), + new StockTeslaItem( + { + date: `2024-03-05`, + open: 192.3, + high: 205.6, + low: 177.6, + close: 180.7, + volume: 742344460, + change: -6, + index: 185 + }), + new StockTeslaItem( + { + date: `2024-03-14`, + open: 180, + high: 182.9, + low: 160.5, + close: 162.5, + volume: 701227950, + change: -9.7, + index: 186 + }), + new StockTeslaItem( + { + date: `2024-03-25`, + open: 163.2, + high: 178.2, + low: 160.8, + close: 172.6, + volume: 589466660, + change: 5.8, + index: 187 + }), + new StockTeslaItem( + { + date: `2024-04-04`, + open: 178.6, + high: 184.2, + low: 163.3, + close: 171.1, + volume: 676969950, + change: -4.2, + index: 188 + }), + new StockTeslaItem( + { + date: `2024-04-15`, + open: 169.1, + high: 179.2, + low: 160.5, + close: 161.5, + volume: 694829970, + change: -4.5, + index: 189 + }), + new StockTeslaItem( + { + date: `2024-04-24`, + open: 156.7, + high: 168, + low: 138.8, + close: 162.1, + volume: 775433710, + change: 3.4, + index: 190 + }), + new StockTeslaItem( + { + date: `2024-05-03`, + open: 159, + high: 198.9, + low: 158.4, + close: 181.2, + volume: 864614000, + change: 14, + index: 191 + }), + new StockTeslaItem( + { + date: `2024-05-14`, + open: 183.8, + high: 187.6, + low: 167.8, + close: 177.6, + volume: 531409380, + change: -3.4, + index: 192 + }), + new StockTeslaItem( + { + date: `2024-05-23`, + open: 179.9, + high: 186.9, + low: 171.4, + close: 173.7, + volume: 554203970, + change: -3.4, + index: 193 + }), + new StockTeslaItem( + { + date: `2024-06-04`, + open: 174.8, + high: 182.7, + low: 173.2, + close: 174.8, + volume: 453828370, + change: 0, + index: 194 + }), + new StockTeslaItem( + { + date: `2024-06-13`, + open: 175.4, + high: 191.1, + low: 167.4, + close: 182.5, + volume: 509090870, + change: 4.1, + index: 195 + }), + new StockTeslaItem( + { + date: `2024-06-25`, + open: 185.8, + high: 188.8, + low: 176.9, + close: 187.4, + volume: 505399520, + change: 0.8, + index: 196 + }), + new StockTeslaItem( + { + date: `2024-07-05`, + open: 186.5, + high: 252.4, + low: 186.4, + close: 251.5, + volume: 925723660, + change: 34.8, + index: 197 + }), + new StockTeslaItem( + { + date: `2024-07-16`, + open: 247.7, + high: 271, + low: 233.1, + close: 256.6, + volume: 1097390000, + change: 3.6, + index: 198 + }), + new StockTeslaItem( + { + date: `2024-07-25`, + open: 252.7, + high: 258.5, + low: 214.7, + close: 220.2, + volume: 795590700, + change: -12.9, + index: 199 + }), + new StockTeslaItem( + { + date: `2024-08-05`, + open: 221.2, + high: 234.7, + low: 182, + close: 198.9, + volume: 658914080, + change: -10.1, + index: 200 + }), + new StockTeslaItem( + { + date: `2024-08-14`, + open: 200.8, + high: 208.5, + low: 191.5, + close: 201.4, + volume: 479168160, + change: 0.3, + index: 201 + }), + new StockTeslaItem( + { + date: `2024-08-23`, + open: 205, + high: 228.2, + low: 204.8, + close: 220.3, + volume: 560235700, + change: 7.5, + index: 202 + }), + new StockTeslaItem( + { + date: `2024-09-04`, + open: 218.8, + high: 222.2, + low: 202.6, + close: 219.4, + volume: 469284350, + change: 0.3, + index: 203 + }), + new StockTeslaItem( + { + date: `2024-09-13`, + open: 223.5, + high: 235, + low: 210.5, + close: 230.3, + volume: 592950440, + change: 3, + index: 204 + }), + new StockTeslaItem( + { + date: `2024-09-24`, + open: 229.3, + high: 257.2, + low: 223.5, + close: 254.3, + volume: 577086700, + change: 10.9, + index: 205 + }), + new StockTeslaItem( + { + date: `2024-10-03`, + open: 252.5, + high: 264.9, + low: 237.8, + close: 240.7, + volume: 546148740, + change: -4.7, + index: 206 + }), + new StockTeslaItem( + { + date: `2024-10-14`, + open: 246.7, + high: 251, + low: 213.7, + close: 219.2, + volume: 589440130, + change: -11.2, + index: 207 + }), + new StockTeslaItem( + { + date: `2024-10-23`, + open: 220, + high: 224.3, + low: 212.1, + close: 213.6, + volume: 384561880, + change: -2.9, + index: 208 + }), + new StockTeslaItem( + { + date: `2024-11-01`, + open: 244.7, + high: 273.5, + low: 242.6, + close: 249, + volume: 732392780, + change: 1.8, + index: 209 + }), + new StockTeslaItem( + { + date: `2024-11-12`, + open: 244.6, + high: 358.6, + low: 238.9, + close: 328.5, + volume: 991653160, + change: 34.3, + index: 210 + }), + new StockTeslaItem( + { + date: `2024-11-21`, + open: 335.8, + high: 348.5, + low: 309.2, + close: 339.6, + volume: 700324320, + change: 1.1, + index: 211 + }), + new StockTeslaItem( + { + date: `2024-12-03`, + open: 341.1, + high: 361.9, + low: 326.6, + close: 351.4, + volume: 478645220, + change: 3, + index: 212 + }), + new StockTeslaItem( + { + date: `2024-12-12`, + open: 353, + high: 429.3, + low: 348.6, + close: 418.1, + volume: 599082110, + change: 18.4, + index: 213 + }), + new StockTeslaItem( + { + date: `2024-12-23`, + open: 420, + high: 481.5, + low: 415.4, + close: 430.6, + volume: 807128120, + change: 2.5, + index: 214 + }), + new StockTeslaItem( + { + date: `2025-01-03`, + open: 435.9, + high: 465.3, + low: 373, + close: 410.4, + volume: 565769940, + change: -5.8, + index: 215 + }), + new StockTeslaItem( + { + date: `2025-01-15`, + open: 423.2, + high: 429.8, + low: 377.3, + close: 428.2, + volume: 530063170, + change: 1.2, + index: 216 + }), + new StockTeslaItem( + { + date: `2025-01-27`, + open: 423.5, + high: 439.7, + low: 389, + close: 397.2, + volume: 476854060, + change: -6.2, + index: 217 + }), + new StockTeslaItem( + { + date: `2025-02-05`, + open: 396.9, + high: 420, + low: 374.4, + close: 378.2, + volume: 507024510, + change: -4.7, + index: 218 + }), + new StockTeslaItem( + { + date: `2025-02-14`, + open: 373, + high: 380.6, + low: 325.1, + close: 355.8, + volume: 607376290, + change: -4.6, + index: 219 + }), + new StockTeslaItem( + { + date: `2025-02-26`, + open: 355, + high: 367.3, + low: 288, + close: 290.8, + volume: 549149490, + change: -18.1, + index: 220 + }), + new StockTeslaItem( + { + date: `2025-03-07`, + open: 291.2, + high: 303.9, + low: 250.7, + close: 262.7, + volume: 754567280, + change: -9.8, + index: 221 + }), + new StockTeslaItem( + { + date: `2025-03-18`, + open: 252.5, + high: 253.4, + low: 217, + close: 225.3, + volume: 944623000, + change: -10.8, + index: 222 + }), + new StockTeslaItem( + { + date: `2025-03-27`, + open: 231.6, + high: 291.8, + low: 229.2, + close: 273.1, + volume: 982018670, + change: 17.9, + index: 223 + }), + new StockTeslaItem( + { + date: `2025-04-07`, + open: 275.6, + high: 285, + low: 214.2, + close: 233.3, + volume: 1117950500, + change: -15.3, + index: 224 + }), + new StockTeslaItem( + { + date: `2025-04-16`, + open: 245, + high: 274.7, + low: 217.8, + close: 241.6, + volume: 993815820, + change: -1.4, + index: 225 + }), + new StockTeslaItem( + { + date: `2025-04-28`, + open: 243.5, + high: 294.9, + low: 222.8, + close: 285.9, + volume: 866169890, + change: 17.4, + index: 226 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-slice-layer/src/app.component.html b/samples/charts/data-chart/data-annotation-slice-layer/src/app.component.html new file mode 100644 index 000000000..cabb90536 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/src/app.component.html @@ -0,0 +1,140 @@ +
+
+ + + + + + + + + + + + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/data-annotation-slice-layer/src/app.component.scss b/samples/charts/data-chart/data-annotation-slice-layer/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-annotation-slice-layer/src/app.component.ts b/samples/charts/data-chart/data-annotation-slice-layer/src/app.component.ts new file mode 100644 index 000000000..572524c7b --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/src/app.component.ts @@ -0,0 +1,84 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { StockTeslaItem, StockTesla } from './StockTesla'; +import { AnnotationSliceStockSplitDataItem, AnnotationSliceStockSplitData } from './AnnotationSliceStockSplitData'; +import { AnnotationSliceEarningsMissDataItem, AnnotationSliceEarningsMissData } from './AnnotationSliceEarningsMissData'; +import { AnnotationSliceEarningsBeatDataItem, AnnotationSliceEarningsBeatData } from './AnnotationSliceEarningsBeatData'; +import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxFinancialPriceSeriesComponent, IgxDataToolTipLayerComponent, IgxDataAnnotationSliceLayerComponent } from 'igniteui-angular-charts'; + +@Component({ + standalone: false, + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxisBottom", { static: true } ) + private xAxisBottom: IgxCategoryXAxisComponent + @ViewChild("xAxisTop", { static: true } ) + private xAxisTop: IgxCategoryXAxisComponent + @ViewChild("yAxisLeft", { static: true } ) + private yAxisLeft: IgxNumericYAxisComponent + @ViewChild("yAxisRight", { static: true } ) + private yAxisRight: IgxNumericYAxisComponent + @ViewChild("series1", { static: true } ) + private series1: IgxFinancialPriceSeriesComponent + @ViewChild("tooltip", { static: true } ) + private tooltip: IgxDataToolTipLayerComponent + @ViewChild("sliceLayerStockSplit", { static: true } ) + private sliceLayerStockSplit: IgxDataAnnotationSliceLayerComponent + @ViewChild("sliceLayerEarningsMissAnnotations", { static: true } ) + private sliceLayerEarningsMissAnnotations: IgxDataAnnotationSliceLayerComponent + @ViewChild("sliceLayerEarningsBeatAnnotations", { static: true } ) + private sliceLayerEarningsBeatAnnotations: IgxDataAnnotationSliceLayerComponent + private _stockTesla: StockTesla = null; + public get stockTesla(): StockTesla { + if (this._stockTesla == null) + { + this._stockTesla = new StockTesla(); + } + return this._stockTesla; + } + + private _annotationSliceStockSplitData: AnnotationSliceStockSplitData = null; + public get annotationSliceStockSplitData(): AnnotationSliceStockSplitData { + if (this._annotationSliceStockSplitData == null) + { + this._annotationSliceStockSplitData = new AnnotationSliceStockSplitData(); + } + return this._annotationSliceStockSplitData; + } + + private _annotationSliceEarningsMissData: AnnotationSliceEarningsMissData = null; + public get annotationSliceEarningsMissData(): AnnotationSliceEarningsMissData { + if (this._annotationSliceEarningsMissData == null) + { + this._annotationSliceEarningsMissData = new AnnotationSliceEarningsMissData(); + } + return this._annotationSliceEarningsMissData; + } + + private _annotationSliceEarningsBeatData: AnnotationSliceEarningsBeatData = null; + public get annotationSliceEarningsBeatData(): AnnotationSliceEarningsBeatData { + if (this._annotationSliceEarningsBeatData == null) + { + this._annotationSliceEarningsBeatData = new AnnotationSliceEarningsBeatData(); + } + return this._annotationSliceEarningsBeatData; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/data-annotation-slice-layer/src/app.module.ts b/samples/charts/data-chart/data-annotation-slice-layer/src/app.module.ts new file mode 100644 index 000000000..d9fbc2007 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/src/app.module.ts @@ -0,0 +1,35 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartCategoryCoreModule, IgxDataChartFinancialCoreModule, IgxDataChartFinancialModule, IgxDataChartFinancialOverlaysModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule, IgxDataAnnotationSliceLayerModule, IgxNumberAbbreviatorModule, IgxAnnotationLayerProxyModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartCategoryCoreModule, + IgxDataChartFinancialCoreModule, + IgxDataChartFinancialModule, + IgxDataChartFinancialOverlaysModule, + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule, + IgxDataAnnotationSliceLayerModule, + IgxNumberAbbreviatorModule, + IgxAnnotationLayerProxyModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/data-annotation-slice-layer/src/environments/environment.prod.ts b/samples/charts/data-chart/data-annotation-slice-layer/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/data-annotation-slice-layer/src/environments/environment.ts b/samples/charts/data-chart/data-annotation-slice-layer/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/data-annotation-slice-layer/src/index.html b/samples/charts/data-chart/data-annotation-slice-layer/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/data-annotation-slice-layer/src/main.ts b/samples/charts/data-chart/data-annotation-slice-layer/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/data-annotation-slice-layer/src/polyfills.ts b/samples/charts/data-chart/data-annotation-slice-layer/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/data-annotation-slice-layer/src/styles.scss b/samples/charts/data-chart/data-annotation-slice-layer/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/data-annotation-slice-layer/src/typings.d.ts b/samples/charts/data-chart/data-annotation-slice-layer/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/data-annotation-slice-layer/tsconfig.app.json b/samples/charts/data-chart/data-annotation-slice-layer/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/data-annotation-slice-layer/tsconfig.json b/samples/charts/data-chart/data-annotation-slice-layer/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-slice-layer/tslint.json b/samples/charts/data-chart/data-annotation-slice-layer/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/data-annotation-strip-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/data-annotation-strip-layer/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-strip-layer/.codesandbox/tasks.json b/samples/charts/data-chart/data-annotation-strip-layer/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/.codesandbox/tasks.json @@ -0,0 +1,17 @@ +{ + // These tasks will run in order when initializing your CodeSandbox project. + "setupTasks": [ + { + "name": "Install Dependencies", + "command": "yarn install" + } + ], + // These tasks can be run from CodeSandbox. Running one will open a log in the app. + "tasks": { + "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check": { + "name": "Start Project", + "command": "node node_modules/@angular/cli/bin/ng serve -o --disable-host-check", + "runAtStart": true + } + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-strip-layer/.stackblitzrc b/samples/charts/data-chart/data-annotation-strip-layer/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-strip-layer/angular.json b/samples/charts/data-chart/data-annotation-strip-layer/angular.json new file mode 100644 index 000000000..ff6803cf7 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/angular.json @@ -0,0 +1,120 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@schematics/angular:component": { + "style": "scss" + }, + "@schematics/angular:application": { + "strict": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "projectType": "application", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/demo", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "src/polyfills.ts" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets" + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + }, + "configurations": { + "production": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "outputHashing": "all", + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ] + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n", + "options": { + "buildTarget": "demo:build" + } + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "main": "src/test.ts", + "polyfills": "src/polyfills.ts", + "tsConfig": "tsconfig.spec.json", + "karmaConfig": "karma.conf.js", + "styles": [ + "src/styles.scss" + ], + "scripts": [], + "assets": [ + "src/assets" + ], + "inlineStyleLanguage": "scss", + "stylePreprocessorOptions": { + "includePaths": ["node_modules/"] + } + } + } + } + } + }, + "defaultProject": "demo", + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/data-annotation-strip-layer/package.json b/samples/charts/data-chart/data-annotation-strip-layer/package.json new file mode 100644 index 000000000..91376df51 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/package.json @@ -0,0 +1,43 @@ +{ + "scripts": { + "ng": "ng", + "update": "ng update", + "start": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng serve -o", + "build": "node --max_old_space_size=12192 node_modules/@angular/cli/bin/ng build --configuration production", + "lint": "ng lint" + }, + "dependencies": { + "@angular/animations": "19.0.4", + "@angular/common": "19.0.4", + "@angular/compiler": "19.0.4", + "@angular/core": "19.0.4", + "@angular/forms": "19.0.4", + "@angular/platform-browser": "19.0.4", + "@angular/platform-browser-dynamic": "19.0.4", + "@types/hammerjs": "2.0.40", + "classlist.js": "1.1.20150312", + "hammerjs": "2.0.8", + "igniteui-angular-charts": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.0", + "intl": "1.2.5", + "jszip": "3.8.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "web-animations-js": "2.3.2", + "zone.js": "~0.15.0" + }, + "devDependencies": { + "@angular/cli": "19.0.4", + "@angular/compiler-cli": "19.0.4", + "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "19.0.4", + "@types/node": "18.17.0", + "codelyzer": "6.0.2", + "jasmine-core": "5.1.1", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.6.3" + } +} diff --git a/samples/charts/data-chart/data-annotation-strip-layer/src/AnnotationStripData.ts b/samples/charts/data-chart/data-annotation-strip-layer/src/AnnotationStripData.ts new file mode 100644 index 000000000..2dc12c54a --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/src/AnnotationStripData.ts @@ -0,0 +1,39 @@ +export class AnnotationStripDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public start: number; + public end: number; + public label: string; + +} +export class AnnotationStripData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new AnnotationStripDataItem( + { + start: 40, + end: 45, + label: `Covid - Market Crash` + }), + new AnnotationStripDataItem( + { + start: 100, + end: 144, + label: `Fed Rate Up 0.25 - 5.25%` + }), + new AnnotationStripDataItem( + { + start: 190, + end: 205, + label: `Fed Rate Down 5.25% to 4.45%` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-strip-layer/src/StockTesla.ts b/samples/charts/data-chart/data-annotation-strip-layer/src/StockTesla.ts new file mode 100644 index 000000000..1efe6d6e4 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/src/StockTesla.ts @@ -0,0 +1,2523 @@ +export class StockTeslaItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public date: string; + public open: number; + public high: number; + public low: number; + public close: number; + public volume: number; + public change: number; + public index: number; + +} +export class StockTesla extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new StockTeslaItem( + { + date: `2019-01-10`, + open: 20.4, + high: 23, + low: 19.8, + close: 23, + volume: 779333701, + change: 12.7, + index: 0 + }), + new StockTeslaItem( + { + date: `2019-01-22`, + open: 22.8, + high: 23.5, + low: 19.7, + close: 19.9, + volume: 911781100, + change: -12.6, + index: 1 + }), + new StockTeslaItem( + { + date: `2019-01-31`, + open: 19.5, + high: 20.8, + low: 18.6, + close: 20.5, + volume: 926375717, + change: 5, + index: 2 + }), + new StockTeslaItem( + { + date: `2019-02-11`, + open: 20.4, + high: 21.6, + low: 19.9, + close: 20.9, + volume: 687520471, + change: 2.4, + index: 3 + }), + new StockTeslaItem( + { + date: `2019-02-21`, + open: 21.1, + high: 21.2, + low: 19.4, + close: 19.4, + volume: 597552272, + change: -7.9, + index: 4 + }), + new StockTeslaItem( + { + date: `2019-03-04`, + open: 19.6, + high: 21.3, + low: 18.9, + close: 19, + volume: 1218669201, + change: -3.1, + index: 5 + }), + new StockTeslaItem( + { + date: `2019-03-13`, + open: 18.8, + high: 19.5, + low: 18, + close: 19.3, + volume: 1034156904, + change: 2.5, + index: 6 + }), + new StockTeslaItem( + { + date: `2019-03-22`, + open: 19.5, + high: 19.7, + low: 17.6, + close: 17.6, + volume: 980694095, + change: -9.5, + index: 7 + }), + new StockTeslaItem( + { + date: `2019-04-02`, + open: 17.3, + high: 19.3, + low: 17, + close: 19.1, + volume: 788473494, + change: 10.1, + index: 8 + }), + new StockTeslaItem( + { + date: `2019-04-11`, + open: 19.2, + high: 19.7, + low: 17.4, + close: 17.9, + volume: 1165555442, + change: -6.6, + index: 9 + }), + new StockTeslaItem( + { + date: `2019-04-23`, + open: 18, + high: 18.3, + low: 17, + close: 17.6, + volume: 870373200, + change: -2.3, + index: 10 + }), + new StockTeslaItem( + { + date: `2019-05-02`, + open: 17.6, + high: 17.7, + low: 15.4, + close: 16.3, + volume: 1629432326, + change: -7.5, + index: 11 + }), + new StockTeslaItem( + { + date: `2019-05-13`, + open: 16.3, + high: 17.2, + low: 15, + close: 15.1, + volume: 1131045605, + change: -6.9, + index: 12 + }), + new StockTeslaItem( + { + date: `2019-05-22`, + open: 15.3, + high: 15.6, + low: 12.8, + close: 12.8, + volume: 1455503588, + change: -15.9, + index: 13 + }), + new StockTeslaItem( + { + date: `2019-06-03`, + open: 13, + high: 13.3, + low: 11.8, + close: 11.9, + volume: 1415442268, + change: -7.9, + index: 14 + }), + new StockTeslaItem( + { + date: `2019-06-12`, + open: 12.1, + high: 14.9, + low: 12, + close: 14, + volume: 1515000443, + change: 15.6, + index: 15 + }), + new StockTeslaItem( + { + date: `2019-06-21`, + open: 14, + high: 15.6, + low: 13.8, + close: 14.8, + volume: 1009123371, + change: 5.5, + index: 16 + }), + new StockTeslaItem( + { + date: `2019-07-02`, + open: 14.9, + high: 15.5, + low: 14.5, + close: 15, + volume: 766921642, + change: 0.6, + index: 17 + }), + new StockTeslaItem( + { + date: `2019-07-12`, + open: 16, + high: 16.4, + low: 15.2, + close: 16.3, + volume: 887983836, + change: 2.4, + index: 18 + }), + new StockTeslaItem( + { + date: `2019-07-23`, + open: 16.5, + high: 17.5, + low: 16.3, + close: 17.3, + volume: 788941000, + change: 4.9, + index: 19 + }), + new StockTeslaItem( + { + date: `2019-08-01`, + open: 17.3, + high: 17.7, + low: 14.8, + close: 15.6, + volume: 1175082297, + change: -9.8, + index: 20 + }), + new StockTeslaItem( + { + date: `2019-08-12`, + open: 15.4, + high: 16, + low: 15, + close: 15.3, + volume: 560129569, + change: -1, + index: 21 + }), + new StockTeslaItem( + { + date: `2019-08-21`, + open: 15.3, + high: 15.7, + low: 14.1, + close: 14.7, + volume: 677293701, + change: -3.5, + index: 22 + }), + new StockTeslaItem( + { + date: `2019-08-30`, + open: 14.9, + high: 15.5, + low: 14.1, + close: 15, + volume: 650239370, + change: 1.3, + index: 23 + }), + new StockTeslaItem( + { + date: `2019-09-11`, + open: 14.9, + high: 16.5, + low: 14.6, + close: 16.5, + volume: 636766167, + change: 10.3, + index: 24 + }), + new StockTeslaItem( + { + date: `2019-09-20`, + open: 16.5, + high: 16.9, + low: 15.9, + close: 16, + volume: 572802643, + change: -2.9, + index: 25 + }), + new StockTeslaItem( + { + date: `2019-10-01`, + open: 16, + high: 16.6, + low: 14.6, + close: 16.3, + volume: 931821239, + change: 2, + index: 26 + }), + new StockTeslaItem( + { + date: `2019-10-10`, + open: 16.2, + high: 16.6, + low: 15, + close: 16.3, + volume: 891798049, + change: 0.6, + index: 27 + }), + new StockTeslaItem( + { + date: `2019-10-21`, + open: 16.5, + high: 17.7, + low: 16.5, + close: 16.9, + volume: 713093463, + change: 2.6, + index: 28 + }), + new StockTeslaItem( + { + date: `2019-10-30`, + open: 17, + high: 22.7, + low: 16.7, + close: 21, + volume: 1752943598, + change: 23.9, + index: 29 + }), + new StockTeslaItem( + { + date: `2019-11-08`, + open: 20.9, + high: 22.8, + low: 20.6, + close: 22.5, + volume: 834957256, + change: 7.7, + index: 30 + }), + new StockTeslaItem( + { + date: `2019-11-19`, + open: 22.9, + high: 24, + low: 22.8, + close: 24, + volume: 738746390, + change: 4.5, + index: 31 + }), + new StockTeslaItem( + { + date: `2019-11-29`, + open: 24, + high: 24.1, + low: 21.8, + close: 22, + volume: 870685288, + change: -8.4, + index: 32 + }), + new StockTeslaItem( + { + date: `2019-12-10`, + open: 22, + high: 23.4, + low: 21.8, + close: 23.3, + volume: 712016613, + change: 5.9, + index: 33 + }), + new StockTeslaItem( + { + date: `2019-12-19`, + open: 23.5, + high: 27.1, + low: 23.4, + close: 26.9, + volume: 1203765433, + change: 14.8, + index: 34 + }), + new StockTeslaItem( + { + date: `2019-12-31`, + open: 27.4, + high: 29, + low: 26.7, + close: 27.9, + volume: 1195073357, + change: 2, + index: 35 + }), + new StockTeslaItem( + { + date: `2020-01-10`, + open: 28.3, + high: 33.3, + low: 28.1, + close: 31.9, + volume: 1925386078, + change: 12.6, + index: 36 + }), + new StockTeslaItem( + { + date: `2020-01-22`, + open: 32.9, + high: 39.6, + low: 32.8, + close: 38, + volume: 2364043518, + change: 15.4, + index: 37 + }), + new StockTeslaItem( + { + date: `2020-01-31`, + open: 37.6, + high: 43.5, + low: 36, + close: 43.4, + volume: 1835141382, + change: 15.3, + index: 38 + }), + new StockTeslaItem( + { + date: `2020-02-11`, + open: 44.9, + high: 64.6, + low: 44.9, + close: 51.6, + volume: 3748903126, + change: 14.9, + index: 39 + }), + new StockTeslaItem( + { + date: `2020-02-21`, + open: 51.9, + high: 63, + low: 49, + close: 60.1, + volume: 1921517039, + change: 15.8, + index: 40 + }), + new StockTeslaItem( + { + date: `2020-03-03`, + open: 55.9, + high: 57.6, + low: 40.8, + close: 49.7, + volume: 2121850940, + change: -11.1, + index: 41 + }), + new StockTeslaItem( + { + date: `2020-03-12`, + open: 50.9, + high: 51.1, + low: 36.4, + close: 37.4, + volume: 1553329923, + change: -26.6, + index: 42 + }), + new StockTeslaItem( + { + date: `2020-03-23`, + open: 39.7, + high: 40.5, + low: 23.4, + close: 29, + volume: 2487688157, + change: -27, + index: 43 + }), + new StockTeslaItem( + { + date: `2020-04-01`, + open: 31.8, + high: 37.3, + low: 31.6, + close: 32.1, + volume: 1785601357, + change: 0.9, + index: 44 + }), + new StockTeslaItem( + { + date: `2020-04-13`, + open: 32.1, + high: 43.5, + low: 29.8, + close: 43.4, + volume: 1860352620, + change: 35.3, + index: 45 + }), + new StockTeslaItem( + { + date: `2020-04-22`, + open: 46.6, + high: 51.7, + low: 44.9, + close: 48.8, + volume: 2056797321, + change: 4.7, + index: 46 + }), + new StockTeslaItem( + { + date: `2020-05-01`, + open: 48.5, + high: 58, + low: 45.5, + close: 46.8, + volume: 2093959203, + change: -3.6, + index: 47 + }), + new StockTeslaItem( + { + date: `2020-05-12`, + open: 46.7, + high: 56.2, + low: 46.5, + close: 54, + volume: 1611543246, + change: 15.5, + index: 48 + }), + new StockTeslaItem( + { + date: `2020-05-21`, + open: 54.7, + high: 55.6, + low: 50.9, + close: 55.2, + volume: 1262468113, + change: 0.8, + index: 49 + }), + new StockTeslaItem( + { + date: `2020-06-02`, + open: 54.8, + high: 60.6, + low: 52.3, + close: 58.8, + volume: 1160487993, + change: 7.2, + index: 50 + }), + new StockTeslaItem( + { + date: `2020-06-11`, + open: 59.2, + high: 68.5, + low: 57.2, + close: 64.9, + volume: 1270377400, + change: 9.5, + index: 51 + }), + new StockTeslaItem( + { + date: `2020-06-22`, + open: 65.3, + high: 67.9, + low: 60.6, + close: 66.3, + volume: 1217946366, + change: 1.5, + index: 52 + }), + new StockTeslaItem( + { + date: `2020-07-01`, + open: 66.6, + high: 75.7, + low: 62.5, + close: 74.6, + volume: 1120591270, + change: 12.1, + index: 53 + }), + new StockTeslaItem( + { + date: `2020-07-13`, + open: 81.4, + high: 119.7, + low: 79, + close: 99.8, + volume: 2244920779, + change: 22.6, + index: 54 + }), + new StockTeslaItem( + { + date: `2020-07-22`, + open: 103.7, + high: 111.7, + low: 95.4, + close: 106.2, + volume: 1662846099, + change: 2.3, + index: 55 + }), + new StockTeslaItem( + { + date: `2020-07-31`, + open: 111.9, + high: 112.6, + low: 91.1, + close: 95.4, + volume: 1573159944, + change: -14.8, + index: 56 + }), + new StockTeslaItem( + { + date: `2020-08-11`, + open: 96.6, + high: 101.8, + low: 91, + close: 91.6, + volume: 798587331, + change: -5.2, + index: 57 + }), + new StockTeslaItem( + { + date: `2020-08-20`, + open: 98, + high: 134.8, + low: 95.7, + close: 133.5, + volume: 1866534416, + change: 36.2, + index: 58 + }), + new StockTeslaItem( + { + date: `2020-08-31`, + open: 136.3, + high: 166.7, + low: 128.5, + close: 166.1, + volume: 2008507459, + change: 21.9, + index: 59 + }), + new StockTeslaItem( + { + date: `2020-09-10`, + open: 167.4, + high: 167.5, + low: 110, + close: 123.8, + volume: 1992227059, + change: -26, + index: 60 + }), + new StockTeslaItem( + { + date: `2020-09-21`, + open: 127.3, + high: 154, + low: 120.2, + close: 149.8, + volume: 1758737696, + change: 17.7, + index: 61 + }), + new StockTeslaItem( + { + date: `2020-09-30`, + open: 143.2, + high: 145.9, + low: 117.1, + close: 143, + volume: 1459893236, + change: -0.1, + index: 62 + }), + new StockTeslaItem( + { + date: `2020-10-09`, + open: 146.9, + high: 149.6, + low: 135.4, + close: 144.7, + volume: 985545158, + change: -1.5, + index: 63 + }), + new StockTeslaItem( + { + date: `2020-10-20`, + open: 147.3, + high: 155.3, + low: 139.7, + close: 140.6, + volume: 773077727, + change: -4.5, + index: 64 + }), + new StockTeslaItem( + { + date: `2020-10-29`, + open: 140.9, + high: 148.4, + low: 135.3, + close: 136.9, + volume: 615339122, + change: -2.8, + index: 65 + }), + new StockTeslaItem( + { + date: `2020-11-09`, + open: 135.6, + high: 150.8, + low: 126.4, + close: 140.4, + volume: 669171368, + change: 3.5, + index: 66 + }), + new StockTeslaItem( + { + date: `2020-11-18`, + open: 140, + high: 165.3, + low: 132, + close: 162.2, + volume: 760451265, + change: 15.8, + index: 67 + }), + new StockTeslaItem( + { + date: `2020-11-30`, + open: 164, + high: 202.6, + low: 162.5, + close: 189.2, + volume: 1046371155, + change: 15.4, + index: 68 + }), + new StockTeslaItem( + { + date: `2020-12-09`, + open: 199.2, + high: 218.1, + low: 180.4, + close: 201.5, + volume: 1055933265, + change: 1.2, + index: 69 + }), + new StockTeslaItem( + { + date: `2020-12-18`, + open: 191.5, + high: 231.7, + low: 188.8, + close: 231.7, + volume: 1593943601, + change: 21, + index: 70 + }), + new StockTeslaItem( + { + date: `2020-12-30`, + open: 222.1, + high: 232.2, + low: 204.7, + close: 231.6, + volume: 791942570, + change: 4.3, + index: 71 + }), + new StockTeslaItem( + { + date: `2021-01-11`, + open: 233.3, + high: 294.8, + low: 230.4, + close: 270.4, + volume: 1084025779, + change: 15.9, + index: 72 + }), + new StockTeslaItem( + { + date: `2021-01-21`, + open: 277, + high: 289.3, + low: 273, + close: 281.7, + volume: 663774487, + change: 1.7, + index: 73 + }), + new StockTeslaItem( + { + date: `2021-02-01`, + open: 278.1, + high: 300.1, + low: 260, + close: 279.9, + volume: 595397009, + change: 0.7, + index: 74 + }), + new StockTeslaItem( + { + date: `2021-02-10`, + open: 281.6, + high: 293.5, + low: 266.7, + close: 268.3, + volume: 445813486, + change: -4.7, + index: 75 + }), + new StockTeslaItem( + { + date: `2021-02-22`, + open: 270.8, + high: 276.6, + low: 236.7, + close: 238.2, + volume: 496372009, + change: -12.1, + index: 76 + }), + new StockTeslaItem( + { + date: `2021-03-03`, + open: 220.7, + high: 290.7, + low: 206.3, + close: 217.7, + volume: 793689739, + change: -1.3, + index: 77 + }), + new StockTeslaItem( + { + date: `2021-03-12`, + open: 218.6, + high: 291.3, + low: 179.8, + close: 231.2, + volume: 1215209162, + change: 5.8, + index: 78 + }), + new StockTeslaItem( + { + date: `2021-03-23`, + open: 231.4, + high: 237.7, + low: 208.2, + close: 220.7, + volume: 744776145, + change: -4.6, + index: 79 + }), + new StockTeslaItem( + { + date: `2021-04-01`, + open: 222.6, + high: 230.8, + low: 197, + close: 220.6, + volume: 730733684, + change: -0.9, + index: 80 + }), + new StockTeslaItem( + { + date: `2021-04-13`, + open: 235.9, + high: 254.3, + low: 222.6, + close: 254.1, + volume: 646721884, + change: 7.7, + index: 81 + }), + new StockTeslaItem( + { + date: `2021-04-22`, + open: 256.9, + high: 260.3, + low: 230.6, + close: 239.9, + volume: 740840774, + change: -6.6, + index: 82 + }), + new StockTeslaItem( + { + date: `2021-05-03`, + open: 239.9, + high: 249.8, + low: 222, + close: 228.3, + volume: 623423313, + change: -4.8, + index: 83 + }), + new StockTeslaItem( + { + date: `2021-05-12`, + open: 226.3, + high: 230, + low: 195.6, + close: 196.6, + volume: 643844974, + change: -13.1, + index: 84 + }), + new StockTeslaItem( + { + date: `2021-05-21`, + open: 200.5, + high: 202.2, + low: 182.3, + close: 193.6, + volume: 729192883, + change: -3.4, + index: 85 + }), + new StockTeslaItem( + { + date: `2021-06-02`, + open: 193.9, + high: 211.9, + low: 191.2, + close: 201.7, + volume: 545095944, + change: 4, + index: 86 + }), + new StockTeslaItem( + { + date: `2021-06-11`, + open: 200.6, + high: 207.7, + low: 190.4, + close: 203.3, + volume: 478366128, + change: 1.3, + index: 87 + }), + new StockTeslaItem( + { + date: `2021-06-22`, + open: 204.1, + high: 210.5, + low: 197.8, + close: 207.9, + volume: 454698495, + change: 1.9, + index: 88 + }), + new StockTeslaItem( + { + date: `2021-07-01`, + open: 210.7, + high: 232.5, + low: 210, + close: 226, + volume: 558441596, + change: 7.3, + index: 89 + }), + new StockTeslaItem( + { + date: `2021-07-13`, + open: 226.3, + high: 233.3, + low: 206.8, + close: 222.8, + volume: 470942387, + change: -1.5, + index: 90 + }), + new StockTeslaItem( + { + date: `2021-07-22`, + open: 223.6, + high: 226.2, + low: 207.1, + close: 216.4, + volume: 372195097, + change: -3.2, + index: 91 + }), + new StockTeslaItem( + { + date: `2021-08-02`, + open: 215.5, + high: 242.3, + low: 209.1, + close: 236.6, + volume: 547284685, + change: 9.8, + index: 92 + }), + new StockTeslaItem( + { + date: `2021-08-11`, + open: 239.7, + high: 241.6, + low: 232.5, + close: 235.9, + volume: 315341455, + change: -1.6, + index: 93 + }), + new StockTeslaItem( + { + date: `2021-08-20`, + open: 235.4, + high: 243.3, + low: 216.3, + close: 226.8, + volume: 392227478, + change: -3.7, + index: 94 + }), + new StockTeslaItem( + { + date: `2021-08-31`, + open: 228.5, + high: 246.8, + low: 226.9, + close: 245.2, + volume: 337503634, + change: 7.3, + index: 95 + }), + new StockTeslaItem( + { + date: `2021-09-10`, + open: 244.7, + high: 254.8, + low: 241.4, + close: 245.4, + volume: 328100734, + change: 0.3, + index: 96 + }), + new StockTeslaItem( + { + date: `2021-09-21`, + open: 246.7, + high: 253.7, + low: 236.3, + close: 246.5, + volume: 420153012, + change: -0.1, + index: 97 + }), + new StockTeslaItem( + { + date: `2021-09-30`, + open: 247.8, + high: 266.3, + low: 246.4, + close: 258.5, + volume: 422393262, + change: 4.3, + index: 98 + }), + new StockTeslaItem( + { + date: `2021-10-11`, + open: 259.5, + high: 269, + low: 254.5, + close: 264, + volume: 392144589, + change: 1.7, + index: 99 + }), + new StockTeslaItem( + { + date: `2021-10-20`, + open: 267, + high: 292.6, + low: 265.5, + close: 288.6, + volume: 368796877, + change: 8.1, + index: 100 + }), + new StockTeslaItem( + { + date: `2021-10-29`, + open: 285.3, + high: 371.7, + low: 285.2, + close: 371.3, + volume: 825862313, + change: 30.1, + index: 101 + }), + new StockTeslaItem( + { + date: `2021-11-09`, + open: 381.7, + high: 414.5, + low: 337.2, + close: 341.2, + volume: 818978542, + change: -10.6, + index: 102 + }), + new StockTeslaItem( + { + date: `2021-11-18`, + open: 336.8, + high: 373.2, + low: 326.2, + close: 365.5, + volume: 613304311, + change: 8.5, + index: 103 + }), + new StockTeslaItem( + { + date: `2021-11-30`, + open: 366.3, + high: 400.6, + low: 354, + close: 381.6, + volume: 515052382, + change: 4.2, + index: 104 + }), + new StockTeslaItem( + { + date: `2021-12-09`, + open: 386.9, + high: 390.9, + low: 316.8, + close: 334.6, + volume: 473333567, + change: -13.5, + index: 105 + }), + new StockTeslaItem( + { + date: `2021-12-20`, + open: 336.2, + high: 340.3, + low: 297.8, + close: 300, + volume: 524367113, + change: -10.8, + index: 106 + }), + new StockTeslaItem( + { + date: `2021-12-30`, + open: 305.6, + high: 373, + low: 295.4, + close: 356.8, + volume: 492530059, + change: 16.7, + index: 107 + }), + new StockTeslaItem( + { + date: `2022-01-10`, + open: 357.8, + high: 402.7, + low: 326.7, + close: 352.7, + volume: 592103938, + change: -1.4, + index: 108 + }), + new StockTeslaItem( + { + date: `2022-01-20`, + open: 351.2, + high: 371.9, + low: 331.3, + close: 332.1, + volume: 532857144, + change: -5.4, + index: 109 + }), + new StockTeslaItem( + { + date: `2022-01-31`, + open: 332.1, + high: 334.8, + low: 264, + close: 312.2, + volume: 833589022, + change: -6, + index: 110 + }), + new StockTeslaItem( + { + date: `2022-02-09`, + open: 311.7, + high: 315.9, + low: 293.5, + close: 310.7, + volume: 456395505, + change: -0.3, + index: 111 + }), + new StockTeslaItem( + { + date: `2022-02-18`, + open: 302.8, + high: 314.6, + low: 279.2, + close: 285.7, + volume: 446153356, + change: -5.7, + index: 112 + }), + new StockTeslaItem( + { + date: `2022-03-02`, + open: 278, + high: 296.6, + low: 233.3, + close: 293.3, + volume: 638352514, + change: 5.5, + index: 113 + }), + new StockTeslaItem( + { + date: `2022-03-11`, + open: 292.9, + high: 295.5, + low: 260.7, + close: 265.1, + volume: 466566467, + change: -9.5, + index: 114 + }), + new StockTeslaItem( + { + date: `2022-03-22`, + open: 260.2, + high: 332.6, + low: 252, + close: 331.3, + volume: 576869668, + change: 27.3, + index: 115 + }), + new StockTeslaItem( + { + date: `2022-03-31`, + open: 326.6, + high: 371.6, + low: 325.5, + close: 359.2, + volume: 536607263, + change: 10, + index: 116 + }), + new StockTeslaItem( + { + date: `2022-04-11`, + open: 360.4, + high: 384.3, + low: 324.9, + close: 325.3, + volume: 499682510, + change: -9.7, + index: 117 + }), + new StockTeslaItem( + { + date: `2022-04-21`, + open: 332.5, + high: 364.1, + low: 324.4, + close: 336.3, + volume: 457210487, + change: 1.1, + index: 118 + }), + new StockTeslaItem( + { + date: `2022-05-02`, + open: 338.3, + high: 345, + low: 273.9, + close: 301, + volume: 639990965, + change: -11, + index: 119 + }), + new StockTeslaItem( + { + date: `2022-05-11`, + open: 301.1, + high: 318.5, + low: 242.4, + close: 244.7, + volume: 583211967, + change: -18.7, + index: 120 + }), + new StockTeslaItem( + { + date: `2022-05-20`, + open: 233.7, + high: 262.4, + low: 211, + close: 221.3, + volume: 721880082, + change: -5.3, + index: 121 + }), + new StockTeslaItem( + { + date: `2022-06-01`, + open: 218.3, + high: 259.6, + low: 206.9, + close: 246.8, + volume: 644596235, + change: 13, + index: 122 + }), + new StockTeslaItem( + { + date: `2022-06-10`, + open: 244.2, + high: 264.2, + low: 227.9, + close: 232.2, + volume: 633672873, + change: -4.9, + index: 123 + }), + new StockTeslaItem( + { + date: `2022-06-22`, + open: 223.2, + high: 246.8, + low: 208.7, + close: 236.1, + volume: 744240764, + change: 5.8, + index: 124 + }), + new StockTeslaItem( + { + date: `2022-07-01`, + open: 237.9, + high: 252.1, + low: 218.9, + close: 227.3, + volume: 631776422, + change: -4.5, + index: 125 + }), + new StockTeslaItem( + { + date: `2022-07-13`, + open: 223, + high: 255, + low: 216.2, + close: 237, + volume: 625812242, + change: 6.3, + index: 126 + }), + new StockTeslaItem( + { + date: `2022-07-22`, + open: 234.9, + high: 280.8, + low: 229.3, + close: 272.2, + volume: 646037224, + change: 15.9, + index: 127 + }), + new StockTeslaItem( + { + date: `2022-08-02`, + open: 272.2, + high: 311.9, + low: 256.3, + close: 300.6, + volume: 611660612, + change: 10.4, + index: 128 + }), + new StockTeslaItem( + { + date: `2022-08-11`, + open: 305, + high: 313.6, + low: 279.4, + close: 286.6, + volume: 616204291, + change: -6, + index: 129 + }), + new StockTeslaItem( + { + date: `2022-08-22`, + open: 289.4, + high: 314.7, + low: 285, + close: 289.9, + volume: 490658060, + change: 0.2, + index: 130 + }), + new StockTeslaItem( + { + date: `2022-08-31`, + open: 291.5, + high: 303.6, + low: 271.8, + close: 275.6, + volume: 376152572, + change: -5.4, + index: 131 + }), + new StockTeslaItem( + { + date: `2022-09-12`, + open: 272.6, + high: 305.5, + low: 265.7, + close: 304.4, + volume: 367924580, + change: 11.7, + index: 132 + }), + new StockTeslaItem( + { + date: `2022-09-21`, + open: 292.9, + high: 313.8, + low: 290.4, + close: 300.8, + volume: 477171180, + change: 2.7, + index: 133 + }), + new StockTeslaItem( + { + date: `2022-09-30`, + open: 299.9, + high: 301.3, + low: 262.5, + close: 265.2, + volume: 454307920, + change: -11.5, + index: 134 + }), + new StockTeslaItem( + { + date: `2022-10-11`, + open: 254.5, + high: 257.5, + low: 215, + close: 216.5, + volume: 593078170, + change: -14.9, + index: 135 + }), + new StockTeslaItem( + { + date: `2022-10-20`, + open: 215.3, + high: 229.8, + low: 202, + close: 207.3, + volume: 592158560, + change: -3.7, + index: 136 + }), + new StockTeslaItem( + { + date: `2022-10-31`, + open: 206.4, + high: 233.8, + low: 198.6, + close: 227.5, + volume: 550341050, + change: 10.2, + index: 137 + }), + new StockTeslaItem( + { + date: `2022-11-09`, + open: 234, + high: 237.4, + low: 177.1, + close: 177.6, + volume: 630702790, + change: -24.1, + index: 138 + }), + new StockTeslaItem( + { + date: `2022-11-18`, + open: 189.9, + high: 200.8, + low: 176.6, + close: 180.2, + volume: 637579480, + change: -5.1, + index: 139 + }), + new StockTeslaItem( + { + date: `2022-11-30`, + open: 175.8, + high: 194.8, + low: 166.2, + close: 194.7, + volume: 617126140, + change: 10.7, + index: 140 + }), + new StockTeslaItem( + { + date: `2022-12-09`, + open: 197.1, + high: 198.9, + low: 169.1, + close: 179, + volume: 625675690, + change: -9.1, + index: 141 + }), + new StockTeslaItem( + { + date: `2022-12-20`, + open: 176.1, + high: 177.4, + low: 137.7, + close: 137.8, + volume: 986660100, + change: -21.7, + index: 142 + }), + new StockTeslaItem( + { + date: `2022-12-30`, + open: 139.3, + high: 141.3, + low: 108.2, + close: 123.2, + volume: 1331911900, + change: -11.6, + index: 143 + }), + new StockTeslaItem( + { + date: `2023-01-11`, + open: 118.5, + high: 126, + low: 101.8, + close: 123.2, + volume: 1332426500, + change: 4, + index: 144 + }), + new StockTeslaItem( + { + date: `2023-01-23`, + open: 122.6, + high: 145.4, + low: 115.6, + close: 143.8, + volume: 1244541500, + change: 17.3, + index: 145 + }), + new StockTeslaItem( + { + date: `2023-02-01`, + open: 143, + high: 183.8, + low: 138.1, + close: 181.4, + volume: 1534337700, + change: 26.9, + index: 146 + }), + new StockTeslaItem( + { + date: `2023-02-10`, + open: 187.3, + high: 214, + low: 182.6, + close: 196.9, + volume: 1423167800, + change: 5.1, + index: 147 + }), + new StockTeslaItem( + { + date: `2023-02-22`, + open: 194.4, + high: 217.6, + low: 187.6, + close: 200.9, + volume: 1386211900, + change: 3.3, + index: 148 + }), + new StockTeslaItem( + { + date: `2023-03-03`, + open: 203.9, + high: 211.2, + low: 186, + close: 197.8, + volume: 1095786600, + change: -3, + index: 149 + }), + new StockTeslaItem( + { + date: `2023-03-14`, + open: 198.5, + high: 198.6, + low: 163.9, + close: 183.3, + volume: 1101144600, + change: -7.7, + index: 150 + }), + new StockTeslaItem( + { + date: `2023-03-23`, + open: 180.8, + high: 200.7, + low: 176, + close: 192.2, + volume: 978213300, + change: 6.3, + index: 151 + }), + new StockTeslaItem( + { + date: `2023-04-03`, + open: 191.6, + high: 207.8, + low: 185.4, + close: 194.8, + volume: 909718040, + change: 1.6, + index: 152 + }), + new StockTeslaItem( + { + date: `2023-04-13`, + open: 197.3, + high: 198.7, + low: 176.1, + close: 185.9, + volume: 905319000, + change: -5.8, + index: 153 + }), + new StockTeslaItem( + { + date: `2023-04-24`, + open: 184, + high: 189.7, + low: 158.6, + close: 162.6, + volume: 905416980, + change: -11.6, + index: 154 + }), + new StockTeslaItem( + { + date: `2023-05-03`, + open: 159.8, + high: 165.5, + low: 152.4, + close: 160.6, + volume: 881897100, + change: 0.5, + index: 155 + }), + new StockTeslaItem( + { + date: `2023-05-12`, + open: 162.7, + high: 177.4, + low: 159.6, + close: 168, + volume: 785510430, + change: 3.2, + index: 156 + }), + new StockTeslaItem( + { + date: `2023-05-23`, + open: 167.7, + high: 193, + low: 164.4, + close: 185.8, + volume: 864025390, + change: 10.8, + index: 157 + }), + new StockTeslaItem( + { + date: `2023-06-02`, + open: 182.2, + high: 217.2, + low: 178.2, + close: 214, + volume: 988496020, + change: 17.4, + index: 158 + }), + new StockTeslaItem( + { + date: `2023-06-13`, + open: 217.8, + high: 259.7, + low: 212.5, + close: 258.7, + volume: 1161622400, + change: 18.8, + index: 159 + }), + new StockTeslaItem( + { + date: `2023-06-23`, + open: 260.2, + high: 277, + low: 247.3, + close: 256.6, + volume: 1220407300, + change: -1.4, + index: 160 + }), + new StockTeslaItem( + { + date: `2023-07-05`, + open: 250.1, + high: 284.2, + low: 240.7, + close: 282.5, + volume: 999163700, + change: 13, + index: 161 + }), + new StockTeslaItem( + { + date: `2023-07-14`, + open: 278.1, + high: 285.3, + low: 265.1, + close: 281.4, + volume: 774400400, + change: 1.2, + index: 162 + }), + new StockTeslaItem( + { + date: `2023-07-25`, + open: 286.6, + high: 299.3, + low: 254.1, + close: 265.3, + volume: 973076400, + change: -7.4, + index: 163 + }), + new StockTeslaItem( + { + date: `2023-08-03`, + open: 263.2, + high: 269.1, + low: 250.5, + close: 259.3, + volume: 678809820, + change: -1.5, + index: 164 + }), + new StockTeslaItem( + { + date: `2023-08-14`, + open: 261, + high: 264.8, + low: 233.8, + close: 239.8, + volume: 716008860, + change: -8.1, + index: 165 + }), + new StockTeslaItem( + { + date: `2023-08-23`, + open: 238.7, + high: 240.8, + low: 212.4, + close: 236.9, + volume: 825055300, + change: -0.8, + index: 166 + }), + new StockTeslaItem( + { + date: `2023-09-01`, + open: 238.7, + high: 261.2, + low: 228.2, + close: 245, + volume: 811502630, + change: 2.7, + index: 167 + }), + new StockTeslaItem( + { + date: `2023-09-13`, + open: 245, + high: 278.4, + low: 243.3, + close: 271.3, + volume: 902643400, + change: 10.7, + index: 168 + }), + new StockTeslaItem( + { + date: `2023-09-22`, + open: 271.3, + high: 279, + low: 244.5, + close: 244.9, + volume: 816639600, + change: -9.7, + index: 169 + }), + new StockTeslaItem( + { + date: `2023-10-03`, + open: 243.4, + high: 254.8, + low: 234.6, + close: 246.5, + volume: 814604700, + change: 1.3, + index: 170 + }), + new StockTeslaItem( + { + date: `2023-10-12`, + open: 248.1, + high: 268.9, + low: 247.6, + close: 258.9, + volume: 806250900, + change: 4.3, + index: 171 + }), + new StockTeslaItem( + { + date: `2023-10-23`, + open: 258.9, + high: 259.6, + low: 202.5, + close: 212.1, + volume: 869390890, + change: -18.1, + index: 172 + }), + new StockTeslaItem( + { + date: `2023-11-01`, + open: 216.5, + high: 222, + low: 194.1, + close: 205.7, + volume: 811468170, + change: -5, + index: 173 + }), + new StockTeslaItem( + { + date: `2023-11-10`, + open: 213, + high: 226.4, + low: 205.7, + close: 214.6, + volume: 859763700, + change: 0.8, + index: 174 + }), + new StockTeslaItem( + { + date: `2023-11-21`, + open: 215.6, + high: 246.7, + low: 211.6, + close: 241.2, + volume: 959006600, + change: 11.9, + index: 175 + }), + new StockTeslaItem( + { + date: `2023-12-01`, + open: 242, + high: 252.8, + low: 231.4, + close: 238.8, + volume: 832910200, + change: -1.3, + index: 176 + }), + new StockTeslaItem( + { + date: `2023-12-12`, + open: 235.8, + high: 246.7, + low: 233.3, + close: 237, + volume: 772018400, + change: 0.5, + index: 177 + }), + new StockTeslaItem( + { + date: `2023-12-21`, + open: 234.2, + high: 259.8, + low: 228.2, + close: 254.5, + volume: 900893400, + change: 8.7, + index: 178 + }), + new StockTeslaItem( + { + date: `2024-01-03`, + open: 256.8, + high: 265.1, + low: 236.3, + close: 238.4, + volume: 727005170, + change: -7.1, + index: 179 + }), + new StockTeslaItem( + { + date: `2024-01-12`, + open: 239.2, + high: 242.7, + low: 217.2, + close: 218.9, + volume: 697536380, + change: -8.5, + index: 180 + }), + new StockTeslaItem( + { + date: `2024-01-24`, + open: 215.1, + high: 223.5, + low: 206.3, + close: 207.8, + volume: 777303400, + change: -3.4, + index: 181 + }), + new StockTeslaItem( + { + date: `2024-02-02`, + open: 189.7, + high: 196.4, + low: 180.1, + close: 187.9, + volume: 846092780, + change: -0.9, + index: 182 + }), + new StockTeslaItem( + { + date: `2024-02-13`, + open: 184.3, + high: 194.7, + low: 175, + close: 184, + volume: 718274070, + change: -0.1, + index: 183 + }), + new StockTeslaItem( + { + date: `2024-02-23`, + open: 185.3, + high: 203.2, + low: 183.4, + close: 192, + volume: 693352670, + change: 3.6, + index: 184 + }), + new StockTeslaItem( + { + date: `2024-03-05`, + open: 192.3, + high: 205.6, + low: 177.6, + close: 180.7, + volume: 742344460, + change: -6, + index: 185 + }), + new StockTeslaItem( + { + date: `2024-03-14`, + open: 180, + high: 182.9, + low: 160.5, + close: 162.5, + volume: 701227950, + change: -9.7, + index: 186 + }), + new StockTeslaItem( + { + date: `2024-03-25`, + open: 163.2, + high: 178.2, + low: 160.8, + close: 172.6, + volume: 589466660, + change: 5.8, + index: 187 + }), + new StockTeslaItem( + { + date: `2024-04-04`, + open: 178.6, + high: 184.2, + low: 163.3, + close: 171.1, + volume: 676969950, + change: -4.2, + index: 188 + }), + new StockTeslaItem( + { + date: `2024-04-15`, + open: 169.1, + high: 179.2, + low: 160.5, + close: 161.5, + volume: 694829970, + change: -4.5, + index: 189 + }), + new StockTeslaItem( + { + date: `2024-04-24`, + open: 156.7, + high: 168, + low: 138.8, + close: 162.1, + volume: 775433710, + change: 3.4, + index: 190 + }), + new StockTeslaItem( + { + date: `2024-05-03`, + open: 159, + high: 198.9, + low: 158.4, + close: 181.2, + volume: 864614000, + change: 14, + index: 191 + }), + new StockTeslaItem( + { + date: `2024-05-14`, + open: 183.8, + high: 187.6, + low: 167.8, + close: 177.6, + volume: 531409380, + change: -3.4, + index: 192 + }), + new StockTeslaItem( + { + date: `2024-05-23`, + open: 179.9, + high: 186.9, + low: 171.4, + close: 173.7, + volume: 554203970, + change: -3.4, + index: 193 + }), + new StockTeslaItem( + { + date: `2024-06-04`, + open: 174.8, + high: 182.7, + low: 173.2, + close: 174.8, + volume: 453828370, + change: 0, + index: 194 + }), + new StockTeslaItem( + { + date: `2024-06-13`, + open: 175.4, + high: 191.1, + low: 167.4, + close: 182.5, + volume: 509090870, + change: 4.1, + index: 195 + }), + new StockTeslaItem( + { + date: `2024-06-25`, + open: 185.8, + high: 188.8, + low: 176.9, + close: 187.4, + volume: 505399520, + change: 0.8, + index: 196 + }), + new StockTeslaItem( + { + date: `2024-07-05`, + open: 186.5, + high: 252.4, + low: 186.4, + close: 251.5, + volume: 925723660, + change: 34.8, + index: 197 + }), + new StockTeslaItem( + { + date: `2024-07-16`, + open: 247.7, + high: 271, + low: 233.1, + close: 256.6, + volume: 1097390000, + change: 3.6, + index: 198 + }), + new StockTeslaItem( + { + date: `2024-07-25`, + open: 252.7, + high: 258.5, + low: 214.7, + close: 220.2, + volume: 795590700, + change: -12.9, + index: 199 + }), + new StockTeslaItem( + { + date: `2024-08-05`, + open: 221.2, + high: 234.7, + low: 182, + close: 198.9, + volume: 658914080, + change: -10.1, + index: 200 + }), + new StockTeslaItem( + { + date: `2024-08-14`, + open: 200.8, + high: 208.5, + low: 191.5, + close: 201.4, + volume: 479168160, + change: 0.3, + index: 201 + }), + new StockTeslaItem( + { + date: `2024-08-23`, + open: 205, + high: 228.2, + low: 204.8, + close: 220.3, + volume: 560235700, + change: 7.5, + index: 202 + }), + new StockTeslaItem( + { + date: `2024-09-04`, + open: 218.8, + high: 222.2, + low: 202.6, + close: 219.4, + volume: 469284350, + change: 0.3, + index: 203 + }), + new StockTeslaItem( + { + date: `2024-09-13`, + open: 223.5, + high: 235, + low: 210.5, + close: 230.3, + volume: 592950440, + change: 3, + index: 204 + }), + new StockTeslaItem( + { + date: `2024-09-24`, + open: 229.3, + high: 257.2, + low: 223.5, + close: 254.3, + volume: 577086700, + change: 10.9, + index: 205 + }), + new StockTeslaItem( + { + date: `2024-10-03`, + open: 252.5, + high: 264.9, + low: 237.8, + close: 240.7, + volume: 546148740, + change: -4.7, + index: 206 + }), + new StockTeslaItem( + { + date: `2024-10-14`, + open: 246.7, + high: 251, + low: 213.7, + close: 219.2, + volume: 589440130, + change: -11.2, + index: 207 + }), + new StockTeslaItem( + { + date: `2024-10-23`, + open: 220, + high: 224.3, + low: 212.1, + close: 213.6, + volume: 384561880, + change: -2.9, + index: 208 + }), + new StockTeslaItem( + { + date: `2024-11-01`, + open: 244.7, + high: 273.5, + low: 242.6, + close: 249, + volume: 732392780, + change: 1.8, + index: 209 + }), + new StockTeslaItem( + { + date: `2024-11-12`, + open: 244.6, + high: 358.6, + low: 238.9, + close: 328.5, + volume: 991653160, + change: 34.3, + index: 210 + }), + new StockTeslaItem( + { + date: `2024-11-21`, + open: 335.8, + high: 348.5, + low: 309.2, + close: 339.6, + volume: 700324320, + change: 1.1, + index: 211 + }), + new StockTeslaItem( + { + date: `2024-12-03`, + open: 341.1, + high: 361.9, + low: 326.6, + close: 351.4, + volume: 478645220, + change: 3, + index: 212 + }), + new StockTeslaItem( + { + date: `2024-12-12`, + open: 353, + high: 429.3, + low: 348.6, + close: 418.1, + volume: 599082110, + change: 18.4, + index: 213 + }), + new StockTeslaItem( + { + date: `2024-12-23`, + open: 420, + high: 481.5, + low: 415.4, + close: 430.6, + volume: 807128120, + change: 2.5, + index: 214 + }), + new StockTeslaItem( + { + date: `2025-01-03`, + open: 435.9, + high: 465.3, + low: 373, + close: 410.4, + volume: 565769940, + change: -5.8, + index: 215 + }), + new StockTeslaItem( + { + date: `2025-01-15`, + open: 423.2, + high: 429.8, + low: 377.3, + close: 428.2, + volume: 530063170, + change: 1.2, + index: 216 + }), + new StockTeslaItem( + { + date: `2025-01-27`, + open: 423.5, + high: 439.7, + low: 389, + close: 397.2, + volume: 476854060, + change: -6.2, + index: 217 + }), + new StockTeslaItem( + { + date: `2025-02-05`, + open: 396.9, + high: 420, + low: 374.4, + close: 378.2, + volume: 507024510, + change: -4.7, + index: 218 + }), + new StockTeslaItem( + { + date: `2025-02-14`, + open: 373, + high: 380.6, + low: 325.1, + close: 355.8, + volume: 607376290, + change: -4.6, + index: 219 + }), + new StockTeslaItem( + { + date: `2025-02-26`, + open: 355, + high: 367.3, + low: 288, + close: 290.8, + volume: 549149490, + change: -18.1, + index: 220 + }), + new StockTeslaItem( + { + date: `2025-03-07`, + open: 291.2, + high: 303.9, + low: 250.7, + close: 262.7, + volume: 754567280, + change: -9.8, + index: 221 + }), + new StockTeslaItem( + { + date: `2025-03-18`, + open: 252.5, + high: 253.4, + low: 217, + close: 225.3, + volume: 944623000, + change: -10.8, + index: 222 + }), + new StockTeslaItem( + { + date: `2025-03-27`, + open: 231.6, + high: 291.8, + low: 229.2, + close: 273.1, + volume: 982018670, + change: 17.9, + index: 223 + }), + new StockTeslaItem( + { + date: `2025-04-07`, + open: 275.6, + high: 285, + low: 214.2, + close: 233.3, + volume: 1117950500, + change: -15.3, + index: 224 + }), + new StockTeslaItem( + { + date: `2025-04-16`, + open: 245, + high: 274.7, + low: 217.8, + close: 241.6, + volume: 993815820, + change: -1.4, + index: 225 + }), + new StockTeslaItem( + { + date: `2025-04-28`, + open: 243.5, + high: 294.9, + low: 222.8, + close: 285.9, + volume: 866169890, + change: 17.4, + index: 226 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/data-annotation-strip-layer/src/app.component.html b/samples/charts/data-chart/data-annotation-strip-layer/src/app.component.html new file mode 100644 index 000000000..27d81425e --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/src/app.component.html @@ -0,0 +1,115 @@ +
+
+ + + + + + + + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/data-annotation-strip-layer/src/app.component.scss b/samples/charts/data-chart/data-annotation-strip-layer/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/src/app.component.scss @@ -0,0 +1,3 @@ +/* styles are loaded the Shared CSS file located at: +https://static.infragistics.com/xplatform/css/samples/ +*/ diff --git a/samples/charts/data-chart/data-annotation-strip-layer/src/app.component.ts b/samples/charts/data-chart/data-annotation-strip-layer/src/app.component.ts new file mode 100644 index 000000000..b89f6ef1e --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/src/app.component.ts @@ -0,0 +1,60 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { StockTeslaItem, StockTesla } from './StockTesla'; +import { AnnotationStripDataItem, AnnotationStripData } from './AnnotationStripData'; +import { IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxFinancialPriceSeriesComponent, IgxDataToolTipLayerComponent, IgxDataAnnotationStripLayerComponent } from 'igniteui-angular-charts'; + +@Component({ + standalone: false, + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html", + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class AppComponent implements AfterViewInit +{ + + @ViewChild("chart", { static: true } ) + private chart: IgxDataChartComponent + @ViewChild("xAxisBottom", { static: true } ) + private xAxisBottom: IgxCategoryXAxisComponent + @ViewChild("xAxisTop", { static: true } ) + private xAxisTop: IgxCategoryXAxisComponent + @ViewChild("yAxisLeft", { static: true } ) + private yAxisLeft: IgxNumericYAxisComponent + @ViewChild("yAxisRight", { static: true } ) + private yAxisRight: IgxNumericYAxisComponent + @ViewChild("series1", { static: true } ) + private series1: IgxFinancialPriceSeriesComponent + @ViewChild("tooltip", { static: true } ) + private tooltip: IgxDataToolTipLayerComponent + @ViewChild("stripLayer", { static: true } ) + private stripLayer: IgxDataAnnotationStripLayerComponent + private _stockTesla: StockTesla = null; + public get stockTesla(): StockTesla { + if (this._stockTesla == null) + { + this._stockTesla = new StockTesla(); + } + return this._stockTesla; + } + + private _annotationStripData: AnnotationStripData = null; + public get annotationStripData(): AnnotationStripData { + if (this._annotationStripData == null) + { + this._annotationStripData = new AnnotationStripData(); + } + return this._annotationStripData; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/data-annotation-strip-layer/src/app.module.ts b/samples/charts/data-chart/data-annotation-strip-layer/src/app.module.ts new file mode 100644 index 000000000..93dfa67a9 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/src/app.module.ts @@ -0,0 +1,35 @@ +import { NgModule } from "@angular/core"; +import { FormsModule } from "@angular/forms"; +import { CommonModule } from "@angular/common"; +import { BrowserModule } from "@angular/platform-browser"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { AppComponent } from "./app.component"; + +import { IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartCategoryCoreModule, IgxDataChartFinancialCoreModule, IgxDataChartFinancialModule, IgxDataChartFinancialOverlaysModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule, IgxDataAnnotationStripLayerModule, IgxNumberAbbreviatorModule, IgxAnnotationLayerProxyModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDataChartCoreModule, + IgxDataChartCategoryModule, + IgxDataChartCategoryCoreModule, + IgxDataChartFinancialCoreModule, + IgxDataChartFinancialModule, + IgxDataChartFinancialOverlaysModule, + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule, + IgxDataAnnotationStripLayerModule, + IgxNumberAbbreviatorModule, + IgxAnnotationLayerProxyModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/data-annotation-strip-layer/src/environments/environment.prod.ts b/samples/charts/data-chart/data-annotation-strip-layer/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/data-annotation-strip-layer/src/environments/environment.ts b/samples/charts/data-chart/data-annotation-strip-layer/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/src/environments/environment.ts @@ -0,0 +1,16 @@ +// This file can be replaced during build by using the `fileReplacements` array. +// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. +// The list of file replacements can be found in `angular.json`. + +export const environment = { + production: false +}; + +/* + * For easier debugging in development mode, you can import the following file + * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. + * + * This import should be commented out in production mode because it will have a negative impact + * on performance if an error is thrown. + */ +// import 'zone.js/dist/zone-error'; // Included with Angular CLI. diff --git a/samples/charts/data-chart/data-annotation-strip-layer/src/index.html b/samples/charts/data-chart/data-annotation-strip-layer/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/data-annotation-strip-layer/src/main.ts b/samples/charts/data-chart/data-annotation-strip-layer/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/src/main.ts @@ -0,0 +1,15 @@ +// tslint:disable:no-string-literal +import "./polyfills"; +import { enableProdMode } from "@angular/core"; +import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; +import { AppModule } from "./app.module"; + +platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { + // ensure Angular destroys itself on hot reloads. + if (window["ngRef"]) { + window["ngRef"].destroy(); + } + window["ngRef"] = ref; + + // otherwise, log the boot error +}).catch(err => console.error(err)); diff --git a/samples/charts/data-chart/data-annotation-strip-layer/src/polyfills.ts b/samples/charts/data-chart/data-annotation-strip-layer/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/src/polyfills.ts @@ -0,0 +1,61 @@ +/** + * This file includes polyfills needed by Angular and is loaded before the app. + * You can add your own extra polyfills to this file. + * + * This file is divided into 2 sections: + * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. + * 2. Application imports. Files imported after ZoneJS that should be loaded before your main + * file. + * + * The current setup is for so-called "evergreen" browsers; the last versions of browsers that + * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), + * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. + * + * Learn more in https://angular.io/guide/browser-support + */ + +/*************************************************************************************************** +* BROWSER POLYFILLS +*/ + +/** IE10 and IE11 requires the following for NgClass support on SVG elements */ +//import "classlist.js"; // run `npm install --save classlist.js`. + +/** IE10 and IE11 requires the following for the Reflect API. */ + +/* Evergreen browsers require these. */ +// used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. + +/* + * Required to support Web Animations `@angular/platform-browser/animations`. + * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation + */ +//import "web-animations-js"; // run `npm install --save web-animations-js`. + +/*************************************************************************************************** + * Zone JS is required by Angular itself. + */ +import "hammerjs/hammer"; +import "zone.js"; // included with Angular CLI. + +/*************************************************************************************************** + * @angular/animations polyfill + */ +// if (!Element.prototype.matches) { +// Element.prototype.matches = (Element.prototype as any).msMatchesSelector; +// } + +/*************************************************************************************************** + * APPLICATION IMPORTS + */ + +/** + * Date, currency, decimal and percent pipes. + * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 + */ +// import "intl"; // Run `npm install --save intl`. +// import "intl/locale-data/jsonp/de"; +/** + * Need to import at least one locale-data with intl. + */ +// import "intl/locale-data/jsonp/en"; diff --git a/samples/charts/data-chart/data-annotation-strip-layer/src/styles.scss b/samples/charts/data-chart/data-annotation-strip-layer/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/src/styles.scss @@ -0,0 +1,9 @@ +/* autoprefixer grid: on */ +html, +body { + height: 100%; + width: 100%; + overflow: hidden; + margin: 0; + box-sizing: border-box; +} diff --git a/samples/charts/data-chart/data-annotation-strip-layer/src/typings.d.ts b/samples/charts/data-chart/data-annotation-strip-layer/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/charts/data-chart/data-annotation-strip-layer/tsconfig.app.json b/samples/charts/data-chart/data-annotation-strip-layer/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/tsconfig.app.json @@ -0,0 +1,10 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": ["src/main.ts", "src/polyfills.ts"], + "include": ["src/**/*.d.ts"] +} diff --git a/samples/charts/data-chart/data-annotation-strip-layer/tsconfig.json b/samples/charts/data-chart/data-annotation-strip-layer/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "sourceMap": false, + "declaration": false, + "moduleResolution": "node", + "experimentalDecorators": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "downlevelIteration": true, + "target": "es2015", + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2018", + "dom" + ] + }, + "angularCompilerOptions": { + "enableIvy": true + } +} \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-strip-layer/tslint.json b/samples/charts/data-chart/data-annotation-strip-layer/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/tslint.json @@ -0,0 +1,31 @@ +{ + "extends": "tslint:latest", + "rules": { + "deprecation": { + "severity": "warning" + }, + "arrow-parens": false, + "indent": [true, "spaces"], + "interface-name": [true, "always-prefix"], + "max-classes-per-file": false, + "no-bitwise": false, + "no-console": false, + "no-empty": false, + "no-duplicate-imports": false, + "no-implicit-dependencies": false, + "no-object-literal-type-assertion": false, + "no-submodule-imports": [false], + "no-string-literal": false, + "no-trailing-whitespace": false, + "no-var-keyword": false, + "object-literal-sort-keys": false, + "only-arrow-functions": false, + "prefer-conditional-expression": false, + "prefer-const": false, + "prefer-for-of": false, + "prefer-object-spread": false, + "space-within-parens": false, + "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], + "variable-name": [true, "allow-leading-underscore"] + } +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts index 2c09f68a2..42b539d0b 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts @@ -199,7 +199,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 157826578, gdpTotal: 628400, - economy: `Least developed`, + economy: `Least Developed`, region: `Southern Asia`, status: `Country`, longitude: 89.935, @@ -291,7 +291,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 105350020, gdpTotal: 174700, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 40.489, @@ -383,7 +383,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 83301151, gdpTotal: 66010, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle Africa`, status: `Country`, longitude: 21.738, @@ -567,7 +567,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 55123814, gdpTotal: 311100, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, longitude: 96.028, @@ -613,7 +613,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 53950935, gdpTotal: 150600, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 34.894, @@ -797,7 +797,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 39570125, gdpTotal: 84930, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 32.27, @@ -912,7 +912,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 34124811, gdpTotal: 64080, - economy: `Least developed`, + economy: `Least Developed`, region: `Southern Asia`, status: `Country`, longitude: 66.041, @@ -1050,7 +1050,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 29384297, gdpTotal: 71520, - economy: `Least developed`, + economy: `Least Developed`, region: `Southern Asia`, status: `Country`, longitude: 82.328, @@ -1073,7 +1073,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 29310273, gdpTotal: 189000, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle Africa`, status: `Country`, longitude: 18.097, @@ -1119,7 +1119,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 28036829, gdpTotal: 73450, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle East`, status: `Country`, longitude: 48.53, @@ -1165,7 +1165,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 26573706, gdpTotal: 35010, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 38.075, @@ -1188,7 +1188,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 25248140, gdpTotal: 40000, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, longitude: 127.01, @@ -1211,7 +1211,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 25054161, gdpTotal: 36860, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 46.87, @@ -1372,7 +1372,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 20107509, gdpTotal: 32990, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -1.567, @@ -1395,7 +1395,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 19245344, gdpTotal: 20150, - economy: `Least developed`, + economy: `Least Developed`, region: `Northern Africa`, status: `Country`, longitude: 10.845, @@ -1418,7 +1418,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 19196246, gdpTotal: 21200, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 34.282, @@ -1487,7 +1487,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 17885245, gdpTotal: 38090, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -1.496, @@ -1579,7 +1579,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 16204486, gdpTotal: 58940, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, longitude: 104.96, @@ -1602,7 +1602,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 15972000, gdpTotal: 65170, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 26.301, @@ -1648,7 +1648,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 14668522, gdpTotal: 39720, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -14.76, @@ -1694,7 +1694,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 13026129, gdpTotal: 20880, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 29.708, @@ -1717,7 +1717,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 12413867, gdpTotal: 16080, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -9.522, @@ -1740,7 +1740,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 12075985, gdpTotal: 30590, - economy: `Least developed`, + economy: `Least Developed`, region: `Northern Africa`, status: `Country`, longitude: 18.716, @@ -1763,7 +1763,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 11901484, gdpTotal: 21970, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 29.867, @@ -1809,7 +1809,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 11466756, gdpTotal: 7892, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 29.913, @@ -1901,7 +1901,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 11038805, gdpTotal: 24310, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: 2.704, @@ -2016,7 +2016,7 @@ export class WorldStats extends Array { continent: `North America`, population: 10646714, gdpTotal: 19340, - economy: `Least developed`, + economy: `Least Developed`, region: `Central America`, status: `Country`, longitude: -72.23, @@ -2269,7 +2269,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 7965055, gdpTotal: 11610, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: 1.146, @@ -2292,7 +2292,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 7531386, gdpTotal: 4719, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 44.134, @@ -2338,7 +2338,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 7126706, gdpTotal: 40960, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, longitude: 102.36, @@ -2522,7 +2522,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 6163195, gdpTotal: 10640, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -11.78, @@ -2591,7 +2591,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 5918919, gdpTotal: 9169, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 39.772, @@ -2660,7 +2660,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 5625118, gdpTotal: 3206, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle Africa`, status: `Country`, longitude: 20.917, @@ -2890,7 +2890,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 4689021, gdpTotal: 3881, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -9.454, @@ -3005,7 +3005,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 3758571, gdpTotal: 16710, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -8.89, @@ -3396,7 +3396,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 2051363, gdpTotal: 3387, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -15.32, @@ -3442,7 +3442,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 1958042, gdpTotal: 6019, - economy: `Least developed`, + economy: `Least Developed`, region: `Southern Africa`, status: `Country`, longitude: 28.221, @@ -3511,7 +3511,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 1792338, gdpTotal: 2851, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -14.59, @@ -3626,7 +3626,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 1291358, gdpTotal: 4975, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, longitude: 125.66, @@ -3741,7 +3741,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 865267, gdpTotal: 3345, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 42.587, @@ -3764,7 +3764,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 808080, gdpTotal: 1259, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 43.877, @@ -3787,7 +3787,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 778358, gdpTotal: 31770, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle Africa`, status: `Country`, longitude: 10.521, @@ -3810,7 +3810,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 758288, gdpTotal: 6432, - economy: `Least developed`, + economy: `Least Developed`, region: `Southern Asia`, status: `Country`, longitude: 90.411, @@ -3856,7 +3856,7 @@ export class WorldStats extends Array { continent: `Oceania`, population: 647581, gdpTotal: 1198, - economy: `Least developed`, + economy: `Least Developed`, region: `Melanesia`, status: `Country`, longitude: 161.3, @@ -3902,7 +3902,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 603253, gdpTotal: 907, - economy: `Least developed`, + economy: `Least Developed`, region: `Northern Africa`, status: `Dependency`, longitude: -12.89, @@ -4224,7 +4224,7 @@ export class WorldStats extends Array { continent: `Oceania`, population: 282814, gdpTotal: 723, - economy: `Least developed`, + economy: `Least Developed`, region: `Melanesia`, status: `Country`, longitude: 168.21, @@ -4293,7 +4293,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 201025, gdpTotal: 694, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle Africa`, status: `Country`, longitude: 6.598, @@ -4316,7 +4316,7 @@ export class WorldStats extends Array { continent: `Oceania`, population: 200108, gdpTotal: 1046, - economy: `Least developed`, + economy: `Least Developed`, region: `Polynesia`, status: `Country`, longitude: -172.1, @@ -4454,7 +4454,7 @@ export class WorldStats extends Array { continent: `Oceania`, population: 108145, gdpTotal: 211, - economy: `Least developed`, + economy: `Least Developed`, region: `Micronesia`, status: `Country`, longitude: -157.333, diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts index 2c09f68a2..42b539d0b 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts @@ -199,7 +199,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 157826578, gdpTotal: 628400, - economy: `Least developed`, + economy: `Least Developed`, region: `Southern Asia`, status: `Country`, longitude: 89.935, @@ -291,7 +291,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 105350020, gdpTotal: 174700, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 40.489, @@ -383,7 +383,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 83301151, gdpTotal: 66010, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle Africa`, status: `Country`, longitude: 21.738, @@ -567,7 +567,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 55123814, gdpTotal: 311100, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, longitude: 96.028, @@ -613,7 +613,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 53950935, gdpTotal: 150600, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 34.894, @@ -797,7 +797,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 39570125, gdpTotal: 84930, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 32.27, @@ -912,7 +912,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 34124811, gdpTotal: 64080, - economy: `Least developed`, + economy: `Least Developed`, region: `Southern Asia`, status: `Country`, longitude: 66.041, @@ -1050,7 +1050,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 29384297, gdpTotal: 71520, - economy: `Least developed`, + economy: `Least Developed`, region: `Southern Asia`, status: `Country`, longitude: 82.328, @@ -1073,7 +1073,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 29310273, gdpTotal: 189000, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle Africa`, status: `Country`, longitude: 18.097, @@ -1119,7 +1119,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 28036829, gdpTotal: 73450, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle East`, status: `Country`, longitude: 48.53, @@ -1165,7 +1165,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 26573706, gdpTotal: 35010, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 38.075, @@ -1188,7 +1188,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 25248140, gdpTotal: 40000, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, longitude: 127.01, @@ -1211,7 +1211,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 25054161, gdpTotal: 36860, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 46.87, @@ -1372,7 +1372,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 20107509, gdpTotal: 32990, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -1.567, @@ -1395,7 +1395,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 19245344, gdpTotal: 20150, - economy: `Least developed`, + economy: `Least Developed`, region: `Northern Africa`, status: `Country`, longitude: 10.845, @@ -1418,7 +1418,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 19196246, gdpTotal: 21200, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 34.282, @@ -1487,7 +1487,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 17885245, gdpTotal: 38090, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -1.496, @@ -1579,7 +1579,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 16204486, gdpTotal: 58940, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, longitude: 104.96, @@ -1602,7 +1602,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 15972000, gdpTotal: 65170, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 26.301, @@ -1648,7 +1648,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 14668522, gdpTotal: 39720, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -14.76, @@ -1694,7 +1694,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 13026129, gdpTotal: 20880, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 29.708, @@ -1717,7 +1717,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 12413867, gdpTotal: 16080, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -9.522, @@ -1740,7 +1740,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 12075985, gdpTotal: 30590, - economy: `Least developed`, + economy: `Least Developed`, region: `Northern Africa`, status: `Country`, longitude: 18.716, @@ -1763,7 +1763,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 11901484, gdpTotal: 21970, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 29.867, @@ -1809,7 +1809,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 11466756, gdpTotal: 7892, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 29.913, @@ -1901,7 +1901,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 11038805, gdpTotal: 24310, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: 2.704, @@ -2016,7 +2016,7 @@ export class WorldStats extends Array { continent: `North America`, population: 10646714, gdpTotal: 19340, - economy: `Least developed`, + economy: `Least Developed`, region: `Central America`, status: `Country`, longitude: -72.23, @@ -2269,7 +2269,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 7965055, gdpTotal: 11610, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: 1.146, @@ -2292,7 +2292,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 7531386, gdpTotal: 4719, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 44.134, @@ -2338,7 +2338,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 7126706, gdpTotal: 40960, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, longitude: 102.36, @@ -2522,7 +2522,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 6163195, gdpTotal: 10640, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -11.78, @@ -2591,7 +2591,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 5918919, gdpTotal: 9169, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 39.772, @@ -2660,7 +2660,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 5625118, gdpTotal: 3206, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle Africa`, status: `Country`, longitude: 20.917, @@ -2890,7 +2890,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 4689021, gdpTotal: 3881, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -9.454, @@ -3005,7 +3005,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 3758571, gdpTotal: 16710, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -8.89, @@ -3396,7 +3396,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 2051363, gdpTotal: 3387, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -15.32, @@ -3442,7 +3442,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 1958042, gdpTotal: 6019, - economy: `Least developed`, + economy: `Least Developed`, region: `Southern Africa`, status: `Country`, longitude: 28.221, @@ -3511,7 +3511,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 1792338, gdpTotal: 2851, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -14.59, @@ -3626,7 +3626,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 1291358, gdpTotal: 4975, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, longitude: 125.66, @@ -3741,7 +3741,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 865267, gdpTotal: 3345, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 42.587, @@ -3764,7 +3764,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 808080, gdpTotal: 1259, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 43.877, @@ -3787,7 +3787,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 778358, gdpTotal: 31770, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle Africa`, status: `Country`, longitude: 10.521, @@ -3810,7 +3810,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 758288, gdpTotal: 6432, - economy: `Least developed`, + economy: `Least Developed`, region: `Southern Asia`, status: `Country`, longitude: 90.411, @@ -3856,7 +3856,7 @@ export class WorldStats extends Array { continent: `Oceania`, population: 647581, gdpTotal: 1198, - economy: `Least developed`, + economy: `Least Developed`, region: `Melanesia`, status: `Country`, longitude: 161.3, @@ -3902,7 +3902,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 603253, gdpTotal: 907, - economy: `Least developed`, + economy: `Least Developed`, region: `Northern Africa`, status: `Dependency`, longitude: -12.89, @@ -4224,7 +4224,7 @@ export class WorldStats extends Array { continent: `Oceania`, population: 282814, gdpTotal: 723, - economy: `Least developed`, + economy: `Least Developed`, region: `Melanesia`, status: `Country`, longitude: 168.21, @@ -4293,7 +4293,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 201025, gdpTotal: 694, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle Africa`, status: `Country`, longitude: 6.598, @@ -4316,7 +4316,7 @@ export class WorldStats extends Array { continent: `Oceania`, population: 200108, gdpTotal: 1046, - economy: `Least developed`, + economy: `Least Developed`, region: `Polynesia`, status: `Country`, longitude: -172.1, @@ -4454,7 +4454,7 @@ export class WorldStats extends Array { continent: `Oceania`, population: 108145, gdpTotal: 211, - economy: `Least developed`, + economy: `Least Developed`, region: `Micronesia`, status: `Country`, longitude: -157.333, diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts index 2c09f68a2..42b539d0b 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts @@ -199,7 +199,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 157826578, gdpTotal: 628400, - economy: `Least developed`, + economy: `Least Developed`, region: `Southern Asia`, status: `Country`, longitude: 89.935, @@ -291,7 +291,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 105350020, gdpTotal: 174700, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 40.489, @@ -383,7 +383,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 83301151, gdpTotal: 66010, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle Africa`, status: `Country`, longitude: 21.738, @@ -567,7 +567,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 55123814, gdpTotal: 311100, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, longitude: 96.028, @@ -613,7 +613,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 53950935, gdpTotal: 150600, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 34.894, @@ -797,7 +797,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 39570125, gdpTotal: 84930, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 32.27, @@ -912,7 +912,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 34124811, gdpTotal: 64080, - economy: `Least developed`, + economy: `Least Developed`, region: `Southern Asia`, status: `Country`, longitude: 66.041, @@ -1050,7 +1050,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 29384297, gdpTotal: 71520, - economy: `Least developed`, + economy: `Least Developed`, region: `Southern Asia`, status: `Country`, longitude: 82.328, @@ -1073,7 +1073,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 29310273, gdpTotal: 189000, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle Africa`, status: `Country`, longitude: 18.097, @@ -1119,7 +1119,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 28036829, gdpTotal: 73450, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle East`, status: `Country`, longitude: 48.53, @@ -1165,7 +1165,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 26573706, gdpTotal: 35010, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 38.075, @@ -1188,7 +1188,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 25248140, gdpTotal: 40000, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, longitude: 127.01, @@ -1211,7 +1211,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 25054161, gdpTotal: 36860, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 46.87, @@ -1372,7 +1372,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 20107509, gdpTotal: 32990, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -1.567, @@ -1395,7 +1395,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 19245344, gdpTotal: 20150, - economy: `Least developed`, + economy: `Least Developed`, region: `Northern Africa`, status: `Country`, longitude: 10.845, @@ -1418,7 +1418,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 19196246, gdpTotal: 21200, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 34.282, @@ -1487,7 +1487,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 17885245, gdpTotal: 38090, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -1.496, @@ -1579,7 +1579,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 16204486, gdpTotal: 58940, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, longitude: 104.96, @@ -1602,7 +1602,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 15972000, gdpTotal: 65170, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 26.301, @@ -1648,7 +1648,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 14668522, gdpTotal: 39720, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -14.76, @@ -1694,7 +1694,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 13026129, gdpTotal: 20880, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 29.708, @@ -1717,7 +1717,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 12413867, gdpTotal: 16080, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -9.522, @@ -1740,7 +1740,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 12075985, gdpTotal: 30590, - economy: `Least developed`, + economy: `Least Developed`, region: `Northern Africa`, status: `Country`, longitude: 18.716, @@ -1763,7 +1763,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 11901484, gdpTotal: 21970, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 29.867, @@ -1809,7 +1809,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 11466756, gdpTotal: 7892, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 29.913, @@ -1901,7 +1901,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 11038805, gdpTotal: 24310, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: 2.704, @@ -2016,7 +2016,7 @@ export class WorldStats extends Array { continent: `North America`, population: 10646714, gdpTotal: 19340, - economy: `Least developed`, + economy: `Least Developed`, region: `Central America`, status: `Country`, longitude: -72.23, @@ -2269,7 +2269,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 7965055, gdpTotal: 11610, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: 1.146, @@ -2292,7 +2292,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 7531386, gdpTotal: 4719, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 44.134, @@ -2338,7 +2338,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 7126706, gdpTotal: 40960, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, longitude: 102.36, @@ -2522,7 +2522,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 6163195, gdpTotal: 10640, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -11.78, @@ -2591,7 +2591,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 5918919, gdpTotal: 9169, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 39.772, @@ -2660,7 +2660,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 5625118, gdpTotal: 3206, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle Africa`, status: `Country`, longitude: 20.917, @@ -2890,7 +2890,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 4689021, gdpTotal: 3881, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -9.454, @@ -3005,7 +3005,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 3758571, gdpTotal: 16710, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -8.89, @@ -3396,7 +3396,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 2051363, gdpTotal: 3387, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -15.32, @@ -3442,7 +3442,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 1958042, gdpTotal: 6019, - economy: `Least developed`, + economy: `Least Developed`, region: `Southern Africa`, status: `Country`, longitude: 28.221, @@ -3511,7 +3511,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 1792338, gdpTotal: 2851, - economy: `Least developed`, + economy: `Least Developed`, region: `Western Africa`, status: `Country`, longitude: -14.59, @@ -3626,7 +3626,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 1291358, gdpTotal: 4975, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, longitude: 125.66, @@ -3741,7 +3741,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 865267, gdpTotal: 3345, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 42.587, @@ -3764,7 +3764,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 808080, gdpTotal: 1259, - economy: `Least developed`, + economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, longitude: 43.877, @@ -3787,7 +3787,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 778358, gdpTotal: 31770, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle Africa`, status: `Country`, longitude: 10.521, @@ -3810,7 +3810,7 @@ export class WorldStats extends Array { continent: `Asia`, population: 758288, gdpTotal: 6432, - economy: `Least developed`, + economy: `Least Developed`, region: `Southern Asia`, status: `Country`, longitude: 90.411, @@ -3856,7 +3856,7 @@ export class WorldStats extends Array { continent: `Oceania`, population: 647581, gdpTotal: 1198, - economy: `Least developed`, + economy: `Least Developed`, region: `Melanesia`, status: `Country`, longitude: 161.3, @@ -3902,7 +3902,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 603253, gdpTotal: 907, - economy: `Least developed`, + economy: `Least Developed`, region: `Northern Africa`, status: `Dependency`, longitude: -12.89, @@ -4224,7 +4224,7 @@ export class WorldStats extends Array { continent: `Oceania`, population: 282814, gdpTotal: 723, - economy: `Least developed`, + economy: `Least Developed`, region: `Melanesia`, status: `Country`, longitude: 168.21, @@ -4293,7 +4293,7 @@ export class WorldStats extends Array { continent: `Africa`, population: 201025, gdpTotal: 694, - economy: `Least developed`, + economy: `Least Developed`, region: `Middle Africa`, status: `Country`, longitude: 6.598, @@ -4316,7 +4316,7 @@ export class WorldStats extends Array { continent: `Oceania`, population: 200108, gdpTotal: 1046, - economy: `Least developed`, + economy: `Least Developed`, region: `Polynesia`, status: `Country`, longitude: -172.1, @@ -4454,7 +4454,7 @@ export class WorldStats extends Array { continent: `Oceania`, population: 108145, gdpTotal: 211, - economy: `Least developed`, + economy: `Least Developed`, region: `Micronesia`, status: `Country`, longitude: -157.333, diff --git a/samples/charts/data-pie-chart/others/src/EnergyGlobalDemand.ts b/samples/charts/data-pie-chart/others/src/EnergyGlobalDemand.ts deleted file mode 100644 index 3d2ed388a..000000000 --- a/samples/charts/data-pie-chart/others/src/EnergyGlobalDemand.ts +++ /dev/null @@ -1,51 +0,0 @@ -export class EnergyGlobalDemandItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public value: number; - public category: string; - public summary: string; - -} -export class EnergyGlobalDemand extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new EnergyGlobalDemandItem( - { - value: 37, - category: `Cooling`, - summary: `Cooling 37%` - }), - new EnergyGlobalDemandItem( - { - value: 25, - category: `Residential`, - summary: `Residential 25%` - }), - new EnergyGlobalDemandItem( - { - value: 12, - category: `Heating`, - summary: `Heating 12%` - }), - new EnergyGlobalDemandItem( - { - value: 11, - category: `Lighting`, - summary: `Lighting 11%` - }), - new EnergyGlobalDemandItem( - { - value: 15, - category: `Other`, - summary: `Other 15%` - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 82b9ae016..30e657cee 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -19,6 +19,7 @@ "hammerjs": "2.0.8", "igniteui-angular-charts": "19.1.0-beta.0", "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-data-grids": "19.1.0-beta.0", "igniteui-angular-inputs": "19.1.0-beta.0", "igniteui-angular-layouts": "19.1.0-beta.0", "intl": "1.2.5", From 469a580be8f9799447cb1426884c388614c32528 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Thu, 29 May 2025 17:00:47 -0400 Subject: [PATCH 145/154] update update --- browser/src/browser-info.json | 2 +- .../local-data-source-dashboard/ReadMe.md | 58 +++++++++++++++++++ .../data-annotation-band-layer/ReadMe.md | 58 +++++++++++++++++++ .../data-annotation-line-layer/ReadMe.md | 58 +++++++++++++++++++ .../ReadMe.md | 58 +++++++++++++++++++ .../ReadMe.md | 58 +++++++++++++++++++ .../data-annotation-rect-layer/ReadMe.md | 58 +++++++++++++++++++ .../data-annotation-slice-layer/ReadMe.md | 58 +++++++++++++++++++ .../data-annotation-strip-layer/ReadMe.md | 58 +++++++++++++++++++ 9 files changed, 465 insertions(+), 1 deletion(-) create mode 100644 samples/charts/dashboard-tile/local-data-source-dashboard/ReadMe.md create mode 100644 samples/charts/data-chart/data-annotation-band-layer/ReadMe.md create mode 100644 samples/charts/data-chart/data-annotation-line-layer/ReadMe.md create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-overlay-text/ReadMe.md create mode 100644 samples/charts/data-chart/data-annotation-multiple-with-stocks/ReadMe.md create mode 100644 samples/charts/data-chart/data-annotation-rect-layer/ReadMe.md create mode 100644 samples/charts/data-chart/data-annotation-slice-layer/ReadMe.md create mode 100644 samples/charts/data-chart/data-annotation-strip-layer/ReadMe.md diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index 718924375..31dd6101b 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -3,9 +3,9 @@ {"ver":"19.1.0-beta.0","name":"igniteui-angular-charts"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-core"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-dashboards"}, +{"ver":"19.1.0-beta.0","name":"igniteui-angular-data-grids"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-excel"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-gauges"}, -{"ver":"19.1.0-beta.0","name":"igniteui-angular-data-grids"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-inputs"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-layouts"}, {"ver":"19.1.0-beta.0","name":"igniteui-angular-maps"}, diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/ReadMe.md b/samples/charts/dashboard-tile/local-data-source-dashboard/ReadMe.md new file mode 100644 index 000000000..ecd0ef4bb --- /dev/null +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Local Data Source Dashboard feature using [DashboardTile](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/dashboard-tile/local-data-source-dashboard +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/data-annotation-band-layer/ReadMe.md b/samples/charts/data-chart/data-annotation-band-layer/ReadMe.md new file mode 100644 index 000000000..8c37b2db6 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-band-layer/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Data Annotation Band Layer feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/data-annotation-band-layer +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/data-annotation-line-layer/ReadMe.md b/samples/charts/data-chart/data-annotation-line-layer/ReadMe.md new file mode 100644 index 000000000..390dc983e --- /dev/null +++ b/samples/charts/data-chart/data-annotation-line-layer/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Data Annotation Line Layer feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/data-annotation-line-layer +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/ReadMe.md b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/ReadMe.md new file mode 100644 index 000000000..6a44cc8dd --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Data Annotation Multiple With Overlay Text feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/data-annotation-multiple-with-overlay-text +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/ReadMe.md b/samples/charts/data-chart/data-annotation-multiple-with-stocks/ReadMe.md new file mode 100644 index 000000000..181c93b03 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Data Annotation Multiple With Stocks feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/data-annotation-multiple-with-stocks +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/data-annotation-rect-layer/ReadMe.md b/samples/charts/data-chart/data-annotation-rect-layer/ReadMe.md new file mode 100644 index 000000000..d608ab7e0 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-rect-layer/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Data Annotation Rect Layer feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/data-annotation-rect-layer +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/data-annotation-slice-layer/ReadMe.md b/samples/charts/data-chart/data-annotation-slice-layer/ReadMe.md new file mode 100644 index 000000000..575e1dd47 --- /dev/null +++ b/samples/charts/data-chart/data-annotation-slice-layer/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Data Annotation Slice Layer feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/data-annotation-slice-layer +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). diff --git a/samples/charts/data-chart/data-annotation-strip-layer/ReadMe.md b/samples/charts/data-chart/data-annotation-strip-layer/ReadMe.md new file mode 100644 index 000000000..a2d95a8ff --- /dev/null +++ b/samples/charts/data-chart/data-annotation-strip-layer/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Data Annotation Strip Layer feature using [DataChart](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +- clone and navigate to this sample in terminal window + +``` +git clone https://github.com/IgniteUI/igniteui-angular-examples.git +git checkout master +cd ../samples/charts/data-chart/data-annotation-strip-layer +``` + + +- open above folder in VS Code or type: +``` +code . +``` + +- In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +- open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Angular** components, check out the [Angular documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html). From 18ccd7405c1139c012c9dde0232316efdad8fe6d Mon Sep 17 00:00:00 2001 From: IGvaleries Date: Wed, 4 Jun 2025 15:27:25 -0400 Subject: [PATCH 146/154] update packges to latest 19 beta --- browser/package.json | 22 ++++++++--------- browser/scripts/browser.js | 24 +++++++++---------- .../annotations-all/package.json | 8 +++---- .../annotations-callouts/package.json | 8 +++---- .../annotations-crosshairs/package.json | 8 +++---- .../annotations-custom/package.json | 8 +++---- .../annotations-final-value/package.json | 8 +++---- .../annotations-highlighting/package.json | 8 +++---- .../category-chart/annotations/package.json | 4 ++-- .../area-chart-multiple-sources/package.json | 4 ++-- .../area-chart-single-source/package.json | 4 ++-- .../area-chart-styling/package.json | 4 ++-- .../category-chart/axis-gap/package.json | 8 +++---- .../axis-gridlines/package.json | 8 +++---- .../category-chart/axis-inverted/package.json | 8 +++---- .../category-chart/axis-labels/package.json | 8 +++---- .../axis-locations/package.json | 8 +++---- .../category-chart/axis-options/package.json | 4 ++-- .../category-chart/axis-overlap/package.json | 8 +++---- .../category-chart/axis-range/package.json | 8 +++---- .../axis-tickmarks/package.json | 8 +++---- .../category-chart/axis-titles/package.json | 4 ++-- .../chart-highlight-filter/package.json | 8 +++---- .../package.json | 4 ++-- .../column-chart-single-source/package.json | 4 ++-- .../column-chart-styling/package.json | 4 ++-- .../package.json | 4 ++-- .../column-chart-with-tooltips/package.json | 8 +++---- .../custom-selection/package.json | 4 ++-- .../data-aggregations/package.json | 8 +++---- .../category-chart/data-filter/package.json | 8 +++---- .../package.json | 4 ++-- .../category-chart/data-legend/package.json | 4 ++-- .../package.json | 4 ++-- .../data-tooltip-positioning/package.json | 8 +++---- .../category-chart/data-tooltip/package.json | 4 ++-- .../format-specifiers/package.json | 8 +++---- .../high-frequency/package.json | 4 ++-- .../category-chart/high-volume/package.json | 4 ++-- .../highlighting-behavior/package.json | 8 +++---- .../highlighting-mode/package.json | 8 +++---- .../category-chart/highlighting/package.json | 4 ++-- .../legend-highlighting/package.json | 4 ++-- .../line-chart-multiple-sources/package.json | 4 ++-- .../line-chart-single-source/package.json | 4 ++-- .../line-chart-styling/package.json | 4 ++-- .../line-chart-with-animations/package.json | 4 ++-- .../line-chart-with-annotations/package.json | 4 ++-- .../line-chart-with-legend/package.json | 4 ++-- .../marker-options/package.json | 8 +++---- .../marker-templates/package.json | 4 ++-- .../category-chart/overview/package.json | 4 ++-- .../point-chart-multiple-sources/package.json | 4 ++-- .../point-chart-single-source/package.json | 4 ++-- .../point-chart-styling/package.json | 4 ++-- .../selection-matcher/package.json | 4 ++-- .../selection-modes/package.json | 4 ++-- .../selection-multiple-modes/package.json | 8 +++---- .../spline-area-multiple-sources/package.json | 4 ++-- .../spline-area-single-source/package.json | 4 ++-- .../spline-area-styling/package.json | 4 ++-- .../spline-multiple-sources/package.json | 4 ++-- .../spline-single-source/package.json | 4 ++-- .../spline-styling/package.json | 4 ++-- .../category-chart/stack-columns/package.json | 4 ++-- .../step-area-multiple-sources/package.json | 4 ++-- .../step-area-single-source/package.json | 4 ++-- .../step-area-styling/package.json | 4 ++-- .../step-line-multiple-sources/package.json | 4 ++-- .../step-line-single-source/package.json | 4 ++-- .../step-line-styling/package.json | 4 ++-- .../tooltip-template/package.json | 4 ++-- .../category-chart/tooltip-types/package.json | 4 ++-- .../category-chart/trendline/package.json | 4 ++-- .../category-chart/value-lines/package.json | 8 +++---- .../chart-dashboard/package.json | 16 ++++++------- .../financial-dashboard/package.json | 16 ++++++------- .../gauge-dashboard/package.json | 16 ++++++------- .../local-data-source-dashboard/package.json | 16 ++++++------- .../dashboard-tile/map-dashboard/package.json | 16 ++++++------- .../dashboard-tile/pie-dashboard/package.json | 16 ++++++------- .../annotations-custom/package.json | 4 ++-- .../package.json | 4 ++-- .../data-chart/axis-annotations/package.json | 4 ++-- .../data-chart/axis-crossing/package.json | 4 ++-- .../axis-label-rotation/package.json | 8 +++---- .../data-chart/axis-locations/package.json | 4 ++-- .../data-chart/axis-min-max-gap/package.json | 4 ++-- .../data-chart/axis-settings/package.json | 4 ++-- .../data-chart/axis-sharing/package.json | 4 ++-- .../charts/data-chart/axis-types/package.json | 4 ++-- .../bar-chart-multiple-sources/package.json | 4 ++-- .../bar-chart-overlapping/package.json | 4 ++-- .../bar-chart-single-source/package.json | 4 ++-- .../data-chart/bar-chart-styling/package.json | 4 ++-- .../callout-layer-styling/package.json | 4 ++-- .../package.json | 8 +++---- .../package.json | 8 +++---- .../chart-highlight-filter/package.json | 8 +++---- .../data-chart/chart-navigation/package.json | 4 ++-- .../data-chart/chart-overview/package.json | 4 ++-- .../data-chart/chart-performance/package.json | 4 ++-- .../chart-synchronization/package.json | 4 ++-- .../data-chart/chart-titles/package.json | 4 ++-- .../column-chart-styling/package.json | 4 ++-- .../data-chart/composite-chart/package.json | 4 ++-- .../crosshair-layer-styling/package.json | 4 ++-- .../custom-drawing-annotations/package.json | 8 +++---- .../custom-editing-data/package.json | 4 ++-- .../data-chart/dash-array-axes/package.json | 4 ++-- .../data-chart/dash-array-series/package.json | 4 ++-- .../dash-array-tickmarks/package.json | 4 ++-- .../dash-array-trendline/package.json | 4 ++-- .../data-annotation-band-layer/package.json | 4 ++-- .../data-annotation-line-layer/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../data-annotation-rect-layer/package.json | 4 ++-- .../data-annotation-slice-layer/package.json | 4 ++-- .../data-annotation-strip-layer/package.json | 4 ++-- .../package.json | 4 ++-- .../data-legend-grouping/package.json | 4 ++-- .../data-legend-styling/package.json | 4 ++-- .../data-chart/data-legend/package.json | 4 ++-- .../package.json | 8 +++---- .../data-tooltip-grouping/package.json | 8 +++---- .../data-tooltip-styling/package.json | 8 +++---- .../data-chart/data-tooltip/package.json | 4 ++-- .../final-value-layer-styling/package.json | 4 ++-- .../financial-price-series/package.json | 4 ++-- .../data-chart/format-specifiers/package.json | 4 ++-- .../charts/data-chart/legends/package.json | 4 ++-- .../polar-area-chart-styling/package.json | 4 ++-- .../data-chart/polar-area-chart/package.json | 4 ++-- .../data-chart/polar-chart-types/package.json | 4 ++-- .../data-chart/polar-line-chart/package.json | 4 ++-- .../polar-scatter-chart/package.json | 4 ++-- .../polar-spline-area-chart/package.json | 4 ++-- .../polar-spline-chart/package.json | 4 ++-- .../radial-area-chart-styling/package.json | 4 ++-- .../data-chart/radial-area-chart/package.json | 4 ++-- .../radial-chart-types/package.json | 4 ++-- .../package.json | 4 ++-- .../radial-column-chart/package.json | 4 ++-- .../data-chart/radial-label-mode/package.json | 8 +++---- .../data-chart/radial-line-chart/package.json | 4 ++-- .../data-chart/radial-pie-chart/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../data-chart/range-area-chart/package.json | 4 ++-- .../range-column-chart/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../scatter-bubble-chart-styling/package.json | 4 ++-- .../scatter-line-chart/package.json | 4 ++-- .../scatter-point-chart/package.json | 4 ++-- .../scatter-spline-chart/package.json | 4 ++-- .../data-chart/selection-matcher/package.json | 4 ++-- .../data-chart/series-animations/package.json | 4 ++-- .../series-annotations/package.json | 4 ++-- .../series-highlighting/package.json | 4 ++-- .../series-marker-template/package.json | 4 ++-- .../data-chart/series-markers/package.json | 4 ++-- .../data-chart/series-tooltips/package.json | 4 ++-- .../data-chart/series-trendlines/package.json | 4 ++-- .../series-value-overlay/package.json | 4 ++-- .../stacked-100-area-chart/package.json | 4 ++-- .../stacked-100-bar-chart/package.json | 4 ++-- .../stacked-100-column-chart/package.json | 4 ++-- .../stacked-100-line-chart/package.json | 4 ++-- .../package.json | 4 ++-- .../stacked-100-spline-chart/package.json | 4 ++-- .../stacked-area-chart/package.json | 4 ++-- .../data-chart/stacked-bar-chart/package.json | 4 ++-- .../stacked-chart-types/package.json | 4 ++-- .../stacked-column-chart/package.json | 4 ++-- .../stacked-line-chart/package.json | 4 ++-- .../stacked-spline-area-chart/package.json | 4 ++-- .../stacked-spline-chart/package.json | 4 ++-- .../data-chart/tooltip-template/package.json | 4 ++-- .../data-chart/transition-event/package.json | 8 +++---- .../type-category-area-series/package.json | 4 ++-- .../type-category-bar-series/package.json | 4 ++-- .../type-category-column-series/package.json | 4 ++-- .../type-category-line-series/package.json | 4 ++-- .../type-category-point-series/package.json | 4 ++-- .../type-category-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-category-spline-series/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../type-financial-ohlc-series/package.json | 4 ++-- .../type-financial-overlays/package.json | 4 ++-- .../type-financial-series/package.json | 4 ++-- .../type-radial-area-series/package.json | 4 ++-- .../type-radial-column-series/package.json | 4 ++-- .../type-radial-line-series/package.json | 4 ++-- .../type-radial-pie-series/package.json | 4 ++-- .../type-range-area-series/package.json | 4 ++-- .../type-range-column-series/package.json | 4 ++-- .../data-chart/type-range-series/package.json | 4 ++-- .../type-scatter-area-series/package.json | 4 ++-- .../type-scatter-bubble-series/package.json | 4 ++-- .../type-scatter-contour-series/package.json | 4 ++-- .../type-scatter-hd-series/package.json | 4 ++-- .../type-scatter-line-series/package.json | 4 ++-- .../type-scatter-point-series/package.json | 4 ++-- .../type-scatter-polygon-series/package.json | 4 ++-- .../type-scatter-polyline-series/package.json | 4 ++-- .../type-scatter-series/package.json | 4 ++-- .../type-scatter-spline-series/package.json | 4 ++-- .../data-chart/type-shape-series/package.json | 4 ++-- .../type-stacked-100-area-series/package.json | 4 ++-- .../type-stacked-100-bar-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-100-line-series/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-area-series/package.json | 4 ++-- .../type-stacked-bar-series/package.json | 4 ++-- .../type-stacked-column-series/package.json | 4 ++-- .../type-stacked-line-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-spline-series/package.json | 4 ++-- .../data-chart/waterfall-chart/package.json | 4 ++-- .../animation-replay/package.json | 8 +++---- .../data-pie-chart/animation/package.json | 8 +++---- .../highlight-filter/package.json | 4 ++-- .../data-pie-chart/highlighting/package.json | 8 +++---- .../charts/data-pie-chart/legend/package.json | 8 +++---- .../charts/data-pie-chart/others/package.json | 8 +++---- .../data-pie-chart/overview/package.json | 4 ++-- .../data-pie-chart/selection/package.json | 8 +++---- .../doughnut-chart/animation/package.json | 4 ++-- .../doughnut-chart/explosion/package.json | 4 ++-- .../charts/doughnut-chart/legend/package.json | 4 ++-- .../doughnut-chart/overview/package.json | 4 ++-- .../charts/doughnut-chart/rings/package.json | 4 ++-- .../doughnut-chart/selection/package.json | 4 ++-- .../financial-chart/annotations/package.json | 4 ++-- .../financial-chart/axis-types/package.json | 4 ++-- .../package.json | 4 ++-- .../data-legend-styling-props/package.json | 4 ++-- .../financial-chart/data-legend/package.json | 4 ++-- .../package.json | 4 ++-- .../data-tooltip-styling-props/package.json | 4 ++-- .../financial-chart/data-tooltip/package.json | 4 ++-- .../format-specifiers/package.json | 4 ++-- .../high-frequency/package.json | 4 ++-- .../financial-chart/high-volume/package.json | 4 ++-- .../indicator-customization/package.json | 4 ++-- .../indicator-types/package.json | 4 ++-- .../multiple-data/package.json | 4 ++-- .../multiple-feeds/package.json | 4 ++-- .../financial-chart/overview/package.json | 4 ++-- .../charts/financial-chart/panes/package.json | 4 ++-- .../financial-chart/performance/package.json | 4 ++-- .../financial-chart/scrollbars/package.json | 4 ++-- .../stock-index-chart/package.json | 4 ++-- .../financial-chart/styling/package.json | 4 ++-- .../financial-chart/theming/package.json | 4 ++-- .../time-based-data/package.json | 4 ++-- .../financial-chart/titles/package.json | 4 ++-- .../tooltip-template/package.json | 4 ++-- .../tooltip-types/package.json | 4 ++-- .../financial-chart/trendlines/package.json | 4 ++-- .../financial-chart/volume-types/package.json | 4 ++-- .../charts/pie-chart/animation/package.json | 4 ++-- .../charts/pie-chart/explosion/package.json | 4 ++-- samples/charts/pie-chart/legend/package.json | 4 ++-- samples/charts/pie-chart/others/package.json | 4 ++-- .../charts/pie-chart/overview/package.json | 4 ++-- .../charts/pie-chart/selection/package.json | 4 ++-- samples/charts/pie-chart/styling/package.json | 4 ++-- .../sparkline/display-area/package.json | 4 ++-- .../sparkline/display-column/package.json | 4 ++-- .../sparkline/display-lines/package.json | 8 +++---- .../sparkline/display-types/package.json | 4 ++-- .../sparkline/display-winloss/package.json | 4 ++-- samples/charts/sparkline/grid/package.json | 4 ++-- samples/charts/sparkline/markers/package.json | 8 +++---- .../sparkline/normal-range/package.json | 8 +++---- .../charts/sparkline/trendlines/package.json | 8 +++---- .../sparkline/unknown-values/package.json | 8 +++---- .../package.json | 10 ++++---- .../actions-built-in-data-chart/package.json | 8 +++---- .../toolbar/color-editor-support/package.json | 8 +++---- .../charts/toolbar/custom-tool/package.json | 8 +++---- .../package.json | 8 +++---- .../package.json | 8 +++---- samples/charts/toolbar/theming/package.json | 8 +++---- samples/charts/tree-map/events/package.json | 4 ++-- .../highlighting-percent-based/package.json | 4 ++-- .../charts/tree-map/highlighting/package.json | 8 +++---- samples/charts/tree-map/layout/package.json | 8 +++---- samples/charts/tree-map/overview/package.json | 4 ++-- samples/charts/tree-map/styling/package.json | 4 ++-- .../charts/zoomslider/overview/package.json | 4 ++-- .../operations-on-workbooks/package.json | 4 ++-- .../operations-on-worksheets/package.json | 4 ++-- .../excel/excel-library/overview/package.json | 4 ++-- .../working-with-cells/package.json | 4 ++-- .../working-with-charts/package.json | 6 ++--- .../working-with-sparklines/package.json | 6 ++--- .../working-with-tables/package.json | 8 +++---- .../excel/spreadsheet/activation/package.json | 6 ++--- .../spreadsheet/adapter-chart/package.json | 10 ++++---- .../spreadsheet/adapter-combo/package.json | 10 ++++---- .../excel/spreadsheet/clipboard/package.json | 6 ++--- .../excel/spreadsheet/commands/package.json | 6 ++--- .../conditional-formatting/package.json | 6 ++--- .../spreadsheet/config-options/package.json | 6 ++--- .../spreadsheet/data-validation/package.json | 6 ++--- .../excel/spreadsheet/hyperlinks/package.json | 6 ++--- .../excel/spreadsheet/overview/package.json | 6 ++--- .../bullet-graph/animation/package.json | 4 ++-- .../bullet-graph/background/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/bullet-graph/labels/package.json | 4 ++-- .../gauges/bullet-graph/measures/package.json | 4 ++-- .../gauges/bullet-graph/ranges/package.json | 4 ++-- .../gauges/bullet-graph/scale/package.json | 4 ++-- .../bullet-graph/tickmarks/package.json | 4 ++-- .../linear-gauge/animation/package.json | 4 ++-- .../gauges/linear-gauge/backing/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/linear-gauge/labels/package.json | 4 ++-- .../gauges/linear-gauge/needle/package.json | 4 ++-- .../gauges/linear-gauge/ranges/package.json | 4 ++-- .../gauges/linear-gauge/scale/package.json | 4 ++-- .../linear-gauge/tickmarks/package.json | 4 ++-- .../radial-gauge/animation/package.json | 4 ++-- .../gauges/radial-gauge/backing/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/radial-gauge/labels/package.json | 4 ++-- .../gauges/radial-gauge/needle/package.json | 4 ++-- .../radial-gauge/optical-scaling/package.json | 4 ++-- .../gauges/radial-gauge/ranges/package.json | 4 ++-- .../gauges/radial-gauge/scale/package.json | 4 ++-- .../radial-gauge/tickmarks/package.json | 4 ++-- .../inputs/color-editor/overview/package.json | 4 ++-- .../geo-map/binding-data-csv/package.json | 6 ++--- .../binding-data-json-points/package.json | 6 ++--- .../geo-map/binding-data-model/package.json | 6 ++--- .../binding-multiple-shapes/package.json | 6 ++--- .../binding-multiple-sources/package.json | 6 ++--- .../geo-map/binding-shp-points/package.json | 6 ++--- .../geo-map/binding-shp-polygons/package.json | 6 ++--- .../binding-shp-polylines/package.json | 6 ++--- .../maps/geo-map/custom-tooltips/package.json | 6 ++--- .../geo-map/display-bing-imagery/package.json | 6 ++--- .../geo-map/display-esri-imagery/package.json | 6 ++--- .../geo-map/display-heat-imagery/package.json | 6 ++--- .../geo-map/display-osm-imagery/package.json | 6 ++--- .../maps/geo-map/marker-layouts/package.json | 6 ++--- .../maps/geo-map/marker-template/package.json | 6 ++--- samples/maps/geo-map/marker-type/package.json | 6 ++--- samples/maps/geo-map/navigation/package.json | 6 ++--- samples/maps/geo-map/overview/package.json | 6 ++--- .../maps/geo-map/shape-styling/package.json | 6 ++--- .../geo-map/triangulating-data/package.json | 6 ++--- .../type-scatter-area-series/package.json | 6 ++--- .../type-scatter-bubble-series/package.json | 6 ++--- .../type-scatter-contour-series/package.json | 6 ++--- .../type-scatter-density-series/package.json | 6 ++--- .../type-scatter-symbol-series/package.json | 6 ++--- .../type-shape-polygon-series/package.json | 6 ++--- .../type-shape-polyline-series/package.json | 6 ++--- 374 files changed, 959 insertions(+), 959 deletions(-) diff --git a/browser/package.json b/browser/package.json index 66bd1952b..7fbeafe36 100644 --- a/browser/package.json +++ b/browser/package.json @@ -42,17 +42,17 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-dashboards": "19.1.0-beta.0", - "igniteui-angular-data-grids": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", - "igniteui-angular-spreadsheet": "19.1.0-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-dashboards": "19.1.0-beta.1", + "igniteui-angular-data-grids": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-spreadsheet": "19.1.0-beta.1", + "igniteui-angular-spreadsheet-chart-adapter": "19.1.0-beta.1", "igniteui-theming": "15.1.1", "igniteui-webcomponents": "5.2.4", "immediate": "3.2.3", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 84667a8b4..de285e5b8 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1073,18 +1073,18 @@ function updateIG(cb) { // { version: "14.1.0", name: "igniteui-angular-charts" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { version: "19.1.0-beta.0", name: "igniteui-angular-core" }, - { version: "19.1.0-beta.0", name: "igniteui-angular-charts" }, - { version: "19.1.0-beta.0", name: "igniteui-angular-excel" }, - { version: "19.1.0-beta.0", name: "igniteui-angular-gauges" }, - { version: "19.1.0-beta.0", name: "igniteui-angular-data-grids" }, - { version: "19.1.0-beta.0", name: "igniteui-angular-inputs" }, - { version: "19.1.0-beta.0", name: "igniteui-angular-layouts" }, - { version: "19.1.0-beta.0", name: "igniteui-angular-maps" }, - { version: "19.1.0-beta.0", name: "igniteui-angular-spreadsheet-chart-adapter" }, - { version: "19.1.0-beta.0", name: "igniteui-angular-spreadsheet" }, - { version: "19.1.0-beta.0", name: "igniteui-angular-datasources" }, - { version: "19.1.0-beta.0", name: "igniteui-angular-dashboards" }, + { version: "19.1.0-beta.1", name: "igniteui-angular-core" }, + { version: "19.1.0-beta.1", name: "igniteui-angular-charts" }, + { version: "19.1.0-beta.1", name: "igniteui-angular-excel" }, + { version: "19.1.0-beta.1", name: "igniteui-angular-gauges" }, + { version: "19.1.0-beta.1", name: "igniteui-angular-data-grids" }, + { version: "19.1.0-beta.1", name: "igniteui-angular-inputs" }, + { version: "19.1.0-beta.1", name: "igniteui-angular-layouts" }, + { version: "19.1.0-beta.1", name: "igniteui-angular-maps" }, + { version: "19.1.0-beta.1", name: "igniteui-angular-spreadsheet-chart-adapter" }, + { version: "19.1.0-beta.1", name: "igniteui-angular-spreadsheet" }, + { version: "19.1.0-beta.1", name: "igniteui-angular-datasources" }, + { version: "19.1.0-beta.1", name: "igniteui-angular-dashboards" }, // these IG packages are sometimes updated: { version: "5.2.4" , name: "igniteui-webcomponents" }, { version: "15.1.1", name: "igniteui-theming" }, diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 82b9ae016..9ac9f1585 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 66b8e1255..0017aa7e2 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 66b8e1255..0017aa7e2 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-matcher/package.json b/samples/charts/category-chart/selection-matcher/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/selection-matcher/package.json +++ b/samples/charts/category-chart/selection-matcher/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index afb2925a3..6cb6e7522 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-dashboards": "19.1.0-beta.0", - "igniteui-angular-data-grids": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-dashboards": "19.1.0-beta.1", + "igniteui-angular-data-grids": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index 121a25b76..e7da4497a 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-dashboards": "19.1.0-beta.0", - "igniteui-angular-data-grids": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-dashboards": "19.1.0-beta.1", + "igniteui-angular-data-grids": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index 121a25b76..e7da4497a 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-dashboards": "19.1.0-beta.0", - "igniteui-angular-data-grids": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-dashboards": "19.1.0-beta.1", + "igniteui-angular-data-grids": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json index 121a25b76..e7da4497a 100644 --- a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-dashboards": "19.1.0-beta.0", - "igniteui-angular-data-grids": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-dashboards": "19.1.0-beta.1", + "igniteui-angular-data-grids": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index 121a25b76..e7da4497a 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-dashboards": "19.1.0-beta.0", - "igniteui-angular-data-grids": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-dashboards": "19.1.0-beta.1", + "igniteui-angular-data-grids": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index 121a25b76..e7da4497a 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-dashboards": "19.1.0-beta.0", - "igniteui-angular-data-grids": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-dashboards": "19.1.0-beta.1", + "igniteui-angular-data-grids": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 54d190af3..366afa77b 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-band-layer/package.json b/samples/charts/data-chart/data-annotation-band-layer/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/data-annotation-band-layer/package.json +++ b/samples/charts/data-chart/data-annotation-band-layer/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-line-layer/package.json b/samples/charts/data-chart/data-annotation-line-layer/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/data-annotation-line-layer/package.json +++ b/samples/charts/data-chart/data-annotation-line-layer/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-rect-layer/package.json b/samples/charts/data-chart/data-annotation-rect-layer/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/data-annotation-rect-layer/package.json +++ b/samples/charts/data-chart/data-annotation-rect-layer/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-slice-layer/package.json b/samples/charts/data-chart/data-annotation-slice-layer/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/data-annotation-slice-layer/package.json +++ b/samples/charts/data-chart/data-annotation-slice-layer/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-strip-layer/package.json b/samples/charts/data-chart/data-annotation-strip-layer/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/data-annotation-strip-layer/package.json +++ b/samples/charts/data-chart/data-annotation-strip-layer/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index 82b9ae016..9ac9f1585 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index 82b9ae016..9ac9f1585 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index 82b9ae016..9ac9f1585 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/selection-matcher/package.json b/samples/charts/data-chart/selection-matcher/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/selection-matcher/package.json +++ b/samples/charts/data-chart/selection-matcher/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/animation-replay/package.json b/samples/charts/data-pie-chart/animation-replay/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/data-pie-chart/animation-replay/package.json +++ b/samples/charts/data-pie-chart/animation-replay/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index 82b9ae016..9ac9f1585 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 82b9ae016..9ac9f1585 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 82d4102d1..10f49021d 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "igniteui-theming": "15.1.1", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 30e657cee..de93b34be 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-data-grids": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-data-grids": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 82b9ae016..9ac9f1585 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json index 82b9ae016..9ac9f1585 100644 --- a/samples/charts/toolbar/color-editor-support/package.json +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 82b9ae016..9ac9f1585 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 82b9ae016..9ac9f1585 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 82b9ae016..9ac9f1585 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 66b8e1255..0017aa7e2 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 2320fab70..0d4feef7a 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", - "igniteui-angular-layouts": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-layouts": "19.1.0-beta.1", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 91376df51..98ec7a376 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 687571002..5bdfa808e 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 005b073a6..a28df64ed 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -21,8 +21,8 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 591fb33b5..21193c2f5 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 591fb33b5..21193c2f5 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 591fb33b5..21193c2f5 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 866f53250..38c858a3d 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 866f53250..38c858a3d 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index 26a4bbf00..11d348b63 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -20,10 +20,10 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", - "igniteui-angular-spreadsheet": "19.1.0-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-spreadsheet": "19.1.0-beta.1", + "igniteui-angular-spreadsheet-chart-adapter": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index beda0a730..2fb6d576f 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", - "igniteui-angular-spreadsheet": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-spreadsheet": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 92196889f..aa88e8e18 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", - "igniteui-angular-spreadsheet": "19.1.0-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-spreadsheet": "19.1.0-beta.1", + "igniteui-angular-spreadsheet-chart-adapter": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index 92196889f..aa88e8e18 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", - "igniteui-angular-spreadsheet": "19.1.0-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-spreadsheet": "19.1.0-beta.1", + "igniteui-angular-spreadsheet-chart-adapter": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index beda0a730..2fb6d576f 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", - "igniteui-angular-spreadsheet": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-spreadsheet": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index beda0a730..2fb6d576f 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", - "igniteui-angular-spreadsheet": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-spreadsheet": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index beda0a730..2fb6d576f 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", - "igniteui-angular-spreadsheet": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-spreadsheet": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index beda0a730..2fb6d576f 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", - "igniteui-angular-spreadsheet": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-spreadsheet": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index beda0a730..2fb6d576f 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", - "igniteui-angular-spreadsheet": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-spreadsheet": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index beda0a730..2fb6d576f 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", - "igniteui-angular-spreadsheet": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-spreadsheet": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index beda0a730..2fb6d576f 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-excel": "19.1.0-beta.0", - "igniteui-angular-spreadsheet": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-spreadsheet": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 908f61544..a60961eb6 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 908f61544..a60961eb6 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 908f61544..a60961eb6 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 8ad8388a9..a43ce2e73 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-gauges": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-gauges": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json index 828b76402..deddd6372 100644 --- a/samples/inputs/color-editor/overview/package.json +++ b/samples/inputs/color-editor/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-inputs": "19.1.0-beta.0", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-inputs": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 2c56e8323..6434f82b9 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.0", - "igniteui-angular-core": "19.1.0-beta.0", - "igniteui-angular-maps": "19.1.0-beta.0", + "igniteui-angular-charts": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-maps": "19.1.0-beta.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", From fc01c0bd697e79298d31ce19134085f159424b64 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Thu, 5 Jun 2025 12:31:40 -0400 Subject: [PATCH 147/154] 19.1.0-beta.1 (#332) 19.1.0-beta.1 --- browser/package.json | 22 ++++++++--------- browser/scripts/browser.js | 24 +++++++++---------- browser/src/browser-info.json | 22 ++++++++--------- .../annotations-all/package.json | 8 +++---- .../annotations-callouts/package.json | 8 +++---- .../annotations-crosshairs/package.json | 8 +++---- .../annotations-custom/package.json | 8 +++---- .../annotations-final-value/package.json | 8 +++---- .../annotations-highlighting/package.json | 8 +++---- .../category-chart/annotations/package.json | 4 ++-- .../area-chart-multiple-sources/package.json | 4 ++-- .../area-chart-single-source/package.json | 4 ++-- .../area-chart-styling/package.json | 4 ++-- .../category-chart/axis-gap/package.json | 8 +++---- .../axis-gridlines/package.json | 8 +++---- .../category-chart/axis-inverted/package.json | 8 +++---- .../category-chart/axis-labels/package.json | 8 +++---- .../axis-locations/package.json | 8 +++---- .../category-chart/axis-options/package.json | 4 ++-- .../category-chart/axis-overlap/package.json | 8 +++---- .../category-chart/axis-range/package.json | 8 +++---- .../axis-tickmarks/package.json | 8 +++---- .../category-chart/axis-titles/package.json | 4 ++-- .../chart-highlight-filter/package.json | 8 +++---- .../package.json | 4 ++-- .../column-chart-single-source/package.json | 4 ++-- .../column-chart-styling/package.json | 4 ++-- .../package.json | 4 ++-- .../column-chart-with-tooltips/package.json | 8 +++---- .../custom-selection/package.json | 4 ++-- .../data-aggregations/package.json | 8 +++---- .../category-chart/data-filter/package.json | 8 +++---- .../package.json | 4 ++-- .../category-chart/data-legend/package.json | 4 ++-- .../package.json | 4 ++-- .../data-tooltip-positioning/package.json | 8 +++---- .../category-chart/data-tooltip/package.json | 4 ++-- .../format-specifiers/package.json | 8 +++---- .../high-frequency/package.json | 4 ++-- .../category-chart/high-volume/package.json | 4 ++-- .../highlighting-behavior/package.json | 8 +++---- .../highlighting-mode/package.json | 8 +++---- .../category-chart/highlighting/package.json | 4 ++-- .../legend-highlighting/package.json | 4 ++-- .../line-chart-multiple-sources/package.json | 4 ++-- .../line-chart-single-source/package.json | 4 ++-- .../line-chart-styling/package.json | 4 ++-- .../line-chart-with-animations/package.json | 4 ++-- .../line-chart-with-annotations/package.json | 4 ++-- .../line-chart-with-legend/package.json | 4 ++-- .../marker-options/package.json | 8 +++---- .../marker-templates/package.json | 4 ++-- .../category-chart/overview/package.json | 4 ++-- .../point-chart-multiple-sources/package.json | 4 ++-- .../point-chart-single-source/package.json | 4 ++-- .../point-chart-styling/package.json | 4 ++-- .../selection-matcher/package.json | 4 ++-- .../selection-modes/package.json | 4 ++-- .../selection-multiple-modes/package.json | 8 +++---- .../spline-area-multiple-sources/package.json | 4 ++-- .../spline-area-single-source/package.json | 4 ++-- .../spline-area-styling/package.json | 4 ++-- .../spline-multiple-sources/package.json | 4 ++-- .../spline-single-source/package.json | 4 ++-- .../spline-styling/package.json | 4 ++-- .../category-chart/stack-columns/package.json | 4 ++-- .../step-area-multiple-sources/package.json | 4 ++-- .../step-area-single-source/package.json | 4 ++-- .../step-area-styling/package.json | 4 ++-- .../step-line-multiple-sources/package.json | 4 ++-- .../step-line-single-source/package.json | 4 ++-- .../step-line-styling/package.json | 4 ++-- .../tooltip-template/package.json | 4 ++-- .../category-chart/tooltip-types/package.json | 4 ++-- .../category-chart/trendline/package.json | 4 ++-- .../category-chart/value-lines/package.json | 8 +++---- .../chart-dashboard/package.json | 16 ++++++------- .../financial-dashboard/package.json | 16 ++++++------- .../gauge-dashboard/package.json | 16 ++++++------- .../local-data-source-dashboard/package.json | 16 ++++++------- .../dashboard-tile/map-dashboard/package.json | 16 ++++++------- .../dashboard-tile/pie-dashboard/package.json | 16 ++++++------- .../annotations-custom/package.json | 4 ++-- .../package.json | 4 ++-- .../data-chart/axis-annotations/package.json | 4 ++-- .../data-chart/axis-crossing/package.json | 4 ++-- .../axis-label-rotation/package.json | 8 +++---- .../data-chart/axis-locations/package.json | 4 ++-- .../data-chart/axis-min-max-gap/package.json | 4 ++-- .../data-chart/axis-settings/package.json | 4 ++-- .../data-chart/axis-sharing/package.json | 4 ++-- .../charts/data-chart/axis-types/package.json | 4 ++-- .../bar-chart-multiple-sources/package.json | 4 ++-- .../bar-chart-overlapping/package.json | 4 ++-- .../bar-chart-single-source/package.json | 4 ++-- .../data-chart/bar-chart-styling/package.json | 4 ++-- .../callout-layer-styling/package.json | 4 ++-- .../package.json | 8 +++---- .../package.json | 8 +++---- .../chart-highlight-filter/package.json | 8 +++---- .../data-chart/chart-navigation/package.json | 4 ++-- .../data-chart/chart-overview/package.json | 4 ++-- .../data-chart/chart-performance/package.json | 4 ++-- .../chart-synchronization/package.json | 4 ++-- .../data-chart/chart-titles/package.json | 4 ++-- .../column-chart-styling/package.json | 4 ++-- .../data-chart/composite-chart/package.json | 4 ++-- .../crosshair-layer-styling/package.json | 4 ++-- .../custom-drawing-annotations/package.json | 8 +++---- .../custom-editing-data/package.json | 4 ++-- .../data-chart/dash-array-axes/package.json | 4 ++-- .../data-chart/dash-array-series/package.json | 4 ++-- .../dash-array-tickmarks/package.json | 4 ++-- .../dash-array-trendline/package.json | 4 ++-- .../data-annotation-band-layer/package.json | 4 ++-- .../data-annotation-line-layer/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../data-annotation-rect-layer/package.json | 4 ++-- .../data-annotation-slice-layer/package.json | 4 ++-- .../data-annotation-strip-layer/package.json | 4 ++-- .../package.json | 4 ++-- .../data-legend-grouping/package.json | 4 ++-- .../data-legend-styling/package.json | 4 ++-- .../data-chart/data-legend/package.json | 4 ++-- .../package.json | 8 +++---- .../data-tooltip-grouping/package.json | 8 +++---- .../data-tooltip-styling/package.json | 8 +++---- .../data-chart/data-tooltip/package.json | 4 ++-- .../final-value-layer-styling/package.json | 4 ++-- .../financial-price-series/package.json | 4 ++-- .../data-chart/format-specifiers/package.json | 4 ++-- .../charts/data-chart/legends/package.json | 4 ++-- .../polar-area-chart-styling/package.json | 4 ++-- .../data-chart/polar-area-chart/package.json | 4 ++-- .../data-chart/polar-chart-types/package.json | 4 ++-- .../data-chart/polar-line-chart/package.json | 4 ++-- .../polar-scatter-chart/package.json | 4 ++-- .../polar-spline-area-chart/package.json | 4 ++-- .../polar-spline-chart/package.json | 4 ++-- .../radial-area-chart-styling/package.json | 4 ++-- .../data-chart/radial-area-chart/package.json | 4 ++-- .../radial-chart-types/package.json | 4 ++-- .../package.json | 4 ++-- .../radial-column-chart/package.json | 4 ++-- .../data-chart/radial-label-mode/package.json | 8 +++---- .../data-chart/radial-line-chart/package.json | 4 ++-- .../data-chart/radial-pie-chart/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../data-chart/range-area-chart/package.json | 4 ++-- .../range-column-chart/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../scatter-bubble-chart-styling/package.json | 4 ++-- .../scatter-line-chart/package.json | 4 ++-- .../scatter-point-chart/package.json | 4 ++-- .../scatter-spline-chart/package.json | 4 ++-- .../data-chart/selection-matcher/package.json | 4 ++-- .../data-chart/series-animations/package.json | 4 ++-- .../series-annotations/package.json | 4 ++-- .../series-highlighting/package.json | 4 ++-- .../series-marker-template/package.json | 4 ++-- .../data-chart/series-markers/package.json | 4 ++-- .../data-chart/series-tooltips/package.json | 4 ++-- .../data-chart/series-trendlines/package.json | 4 ++-- .../series-value-overlay/package.json | 4 ++-- .../stacked-100-area-chart/package.json | 4 ++-- .../stacked-100-bar-chart/package.json | 4 ++-- .../stacked-100-column-chart/package.json | 4 ++-- .../stacked-100-line-chart/package.json | 4 ++-- .../package.json | 4 ++-- .../stacked-100-spline-chart/package.json | 4 ++-- .../stacked-area-chart/package.json | 4 ++-- .../data-chart/stacked-bar-chart/package.json | 4 ++-- .../stacked-chart-types/package.json | 4 ++-- .../stacked-column-chart/package.json | 4 ++-- .../stacked-line-chart/package.json | 4 ++-- .../stacked-spline-area-chart/package.json | 4 ++-- .../stacked-spline-chart/package.json | 4 ++-- .../data-chart/tooltip-template/package.json | 4 ++-- .../data-chart/transition-event/package.json | 8 +++---- .../type-category-area-series/package.json | 4 ++-- .../type-category-bar-series/package.json | 4 ++-- .../type-category-column-series/package.json | 4 ++-- .../type-category-line-series/package.json | 4 ++-- .../type-category-point-series/package.json | 4 ++-- .../type-category-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-category-spline-series/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../type-financial-ohlc-series/package.json | 4 ++-- .../type-financial-overlays/package.json | 4 ++-- .../type-financial-series/package.json | 4 ++-- .../type-radial-area-series/package.json | 4 ++-- .../type-radial-column-series/package.json | 4 ++-- .../type-radial-line-series/package.json | 4 ++-- .../type-radial-pie-series/package.json | 4 ++-- .../type-range-area-series/package.json | 4 ++-- .../type-range-column-series/package.json | 4 ++-- .../data-chart/type-range-series/package.json | 4 ++-- .../type-scatter-area-series/package.json | 4 ++-- .../type-scatter-bubble-series/package.json | 4 ++-- .../type-scatter-contour-series/package.json | 4 ++-- .../type-scatter-hd-series/package.json | 4 ++-- .../type-scatter-line-series/package.json | 4 ++-- .../type-scatter-point-series/package.json | 4 ++-- .../type-scatter-polygon-series/package.json | 4 ++-- .../type-scatter-polyline-series/package.json | 4 ++-- .../type-scatter-series/package.json | 4 ++-- .../type-scatter-spline-series/package.json | 4 ++-- .../data-chart/type-shape-series/package.json | 4 ++-- .../type-stacked-100-area-series/package.json | 4 ++-- .../type-stacked-100-bar-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-100-line-series/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-area-series/package.json | 4 ++-- .../type-stacked-bar-series/package.json | 4 ++-- .../type-stacked-column-series/package.json | 4 ++-- .../type-stacked-line-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-spline-series/package.json | 4 ++-- .../data-chart/waterfall-chart/package.json | 4 ++-- .../animation-replay/package.json | 8 +++---- .../data-pie-chart/animation/package.json | 8 +++---- .../highlight-filter/package.json | 4 ++-- .../data-pie-chart/highlighting/package.json | 8 +++---- .../charts/data-pie-chart/legend/package.json | 8 +++---- .../charts/data-pie-chart/others/package.json | 8 +++---- .../data-pie-chart/overview/package.json | 4 ++-- .../data-pie-chart/selection/package.json | 8 +++---- .../doughnut-chart/animation/package.json | 4 ++-- .../doughnut-chart/explosion/package.json | 4 ++-- .../charts/doughnut-chart/legend/package.json | 4 ++-- .../doughnut-chart/overview/package.json | 4 ++-- .../charts/doughnut-chart/rings/package.json | 4 ++-- .../doughnut-chart/selection/package.json | 4 ++-- .../financial-chart/annotations/package.json | 4 ++-- .../financial-chart/axis-types/package.json | 4 ++-- .../package.json | 4 ++-- .../data-legend-styling-props/package.json | 4 ++-- .../financial-chart/data-legend/package.json | 4 ++-- .../package.json | 4 ++-- .../data-tooltip-styling-props/package.json | 4 ++-- .../financial-chart/data-tooltip/package.json | 4 ++-- .../format-specifiers/package.json | 4 ++-- .../high-frequency/package.json | 4 ++-- .../financial-chart/high-volume/package.json | 4 ++-- .../indicator-customization/package.json | 4 ++-- .../indicator-types/package.json | 4 ++-- .../multiple-data/package.json | 4 ++-- .../multiple-feeds/package.json | 4 ++-- .../financial-chart/overview/package.json | 4 ++-- .../charts/financial-chart/panes/package.json | 4 ++-- .../financial-chart/performance/package.json | 4 ++-- .../financial-chart/scrollbars/package.json | 4 ++-- .../stock-index-chart/package.json | 4 ++-- .../financial-chart/styling/package.json | 4 ++-- .../financial-chart/theming/package.json | 4 ++-- .../time-based-data/package.json | 4 ++-- .../financial-chart/titles/package.json | 4 ++-- .../tooltip-template/package.json | 4 ++-- .../tooltip-types/package.json | 4 ++-- .../financial-chart/trendlines/package.json | 4 ++-- .../financial-chart/volume-types/package.json | 4 ++-- .../charts/pie-chart/animation/package.json | 4 ++-- .../charts/pie-chart/explosion/package.json | 4 ++-- samples/charts/pie-chart/legend/package.json | 4 ++-- samples/charts/pie-chart/others/package.json | 4 ++-- .../charts/pie-chart/overview/package.json | 4 ++-- .../charts/pie-chart/selection/package.json | 4 ++-- samples/charts/pie-chart/styling/package.json | 4 ++-- .../sparkline/display-area/package.json | 4 ++-- .../sparkline/display-column/package.json | 4 ++-- .../sparkline/display-lines/package.json | 8 +++---- .../sparkline/display-types/package.json | 4 ++-- .../sparkline/display-winloss/package.json | 4 ++-- samples/charts/sparkline/grid/package.json | 4 ++-- samples/charts/sparkline/markers/package.json | 8 +++---- .../sparkline/normal-range/package.json | 8 +++---- .../charts/sparkline/trendlines/package.json | 8 +++---- .../sparkline/unknown-values/package.json | 8 +++---- .../package.json | 10 ++++---- .../actions-built-in-data-chart/package.json | 8 +++---- .../toolbar/color-editor-support/package.json | 8 +++---- .../charts/toolbar/custom-tool/package.json | 8 +++---- .../package.json | 8 +++---- .../package.json | 8 +++---- samples/charts/toolbar/theming/package.json | 8 +++---- samples/charts/tree-map/events/package.json | 4 ++-- .../highlighting-percent-based/package.json | 4 ++-- .../charts/tree-map/highlighting/package.json | 8 +++---- samples/charts/tree-map/layout/package.json | 8 +++---- samples/charts/tree-map/overview/package.json | 4 ++-- samples/charts/tree-map/styling/package.json | 4 ++-- .../charts/zoomslider/overview/package.json | 4 ++-- .../operations-on-workbooks/package.json | 4 ++-- .../operations-on-worksheets/package.json | 4 ++-- .../excel/excel-library/overview/package.json | 4 ++-- .../working-with-cells/package.json | 4 ++-- .../working-with-charts/package.json | 6 ++--- .../working-with-sparklines/package.json | 6 ++--- .../working-with-tables/package.json | 8 +++---- .../excel/spreadsheet/activation/package.json | 6 ++--- .../spreadsheet/adapter-chart/package.json | 10 ++++---- .../spreadsheet/adapter-combo/package.json | 10 ++++---- .../excel/spreadsheet/clipboard/package.json | 6 ++--- .../excel/spreadsheet/commands/package.json | 6 ++--- .../conditional-formatting/package.json | 6 ++--- .../spreadsheet/config-options/package.json | 6 ++--- .../spreadsheet/data-validation/package.json | 6 ++--- .../excel/spreadsheet/hyperlinks/package.json | 6 ++--- .../excel/spreadsheet/overview/package.json | 6 ++--- .../bullet-graph/animation/package.json | 4 ++-- .../bullet-graph/background/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/bullet-graph/labels/package.json | 4 ++-- .../gauges/bullet-graph/measures/package.json | 4 ++-- .../gauges/bullet-graph/ranges/package.json | 4 ++-- .../gauges/bullet-graph/scale/package.json | 4 ++-- .../bullet-graph/tickmarks/package.json | 4 ++-- .../linear-gauge/animation/package.json | 4 ++-- .../gauges/linear-gauge/backing/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/linear-gauge/labels/package.json | 4 ++-- .../gauges/linear-gauge/needle/package.json | 4 ++-- .../gauges/linear-gauge/ranges/package.json | 4 ++-- .../gauges/linear-gauge/scale/package.json | 4 ++-- .../linear-gauge/tickmarks/package.json | 4 ++-- .../radial-gauge/animation/package.json | 4 ++-- .../gauges/radial-gauge/backing/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/radial-gauge/labels/package.json | 4 ++-- .../gauges/radial-gauge/needle/package.json | 4 ++-- .../radial-gauge/optical-scaling/package.json | 4 ++-- .../gauges/radial-gauge/ranges/package.json | 4 ++-- .../gauges/radial-gauge/scale/package.json | 4 ++-- .../radial-gauge/tickmarks/package.json | 4 ++-- .../inputs/color-editor/overview/package.json | 4 ++-- .../geo-map/binding-data-csv/package.json | 6 ++--- .../binding-data-json-points/package.json | 6 ++--- .../geo-map/binding-data-model/package.json | 6 ++--- .../binding-multiple-shapes/package.json | 6 ++--- .../binding-multiple-sources/package.json | 6 ++--- .../geo-map/binding-shp-points/package.json | 6 ++--- .../geo-map/binding-shp-polygons/package.json | 6 ++--- .../binding-shp-polylines/package.json | 6 ++--- .../maps/geo-map/custom-tooltips/package.json | 6 ++--- .../geo-map/display-bing-imagery/package.json | 6 ++--- .../geo-map/display-esri-imagery/package.json | 6 ++--- .../geo-map/display-heat-imagery/package.json | 6 ++--- .../geo-map/display-osm-imagery/package.json | 6 ++--- .../maps/geo-map/marker-layouts/package.json | 6 ++--- .../maps/geo-map/marker-template/package.json | 6 ++--- samples/maps/geo-map/marker-type/package.json | 6 ++--- samples/maps/geo-map/navigation/package.json | 6 ++--- samples/maps/geo-map/overview/package.json | 6 ++--- .../maps/geo-map/shape-styling/package.json | 6 ++--- .../geo-map/triangulating-data/package.json | 6 ++--- .../type-scatter-area-series/package.json | 6 ++--- .../type-scatter-bubble-series/package.json | 6 ++--- .../type-scatter-contour-series/package.json | 6 ++--- .../type-scatter-density-series/package.json | 6 ++--- .../type-scatter-symbol-series/package.json | 6 ++--- .../type-shape-polygon-series/package.json | 6 ++--- .../type-shape-polyline-series/package.json | 6 ++--- 375 files changed, 970 insertions(+), 970 deletions(-) diff --git a/browser/package.json b/browser/package.json index 7fbeafe36..9891d2e8b 100644 --- a/browser/package.json +++ b/browser/package.json @@ -42,17 +42,17 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-dashboards": "19.1.0-beta.1", - "igniteui-angular-data-grids": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", - "igniteui-angular-spreadsheet": "19.1.0-beta.1", - "igniteui-angular-spreadsheet-chart-adapter": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-dashboards": "19.1.0", + "igniteui-angular-data-grids": "19.1.0", + "igniteui-angular-excel": "19.1.0", + "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-maps": "19.1.0", + "igniteui-angular-spreadsheet": "19.1.0", + "igniteui-angular-spreadsheet-chart-adapter": "19.1.0", "igniteui-theming": "15.1.1", "igniteui-webcomponents": "5.2.4", "immediate": "3.2.3", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index de285e5b8..547755302 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1073,18 +1073,18 @@ function updateIG(cb) { // { version: "14.1.0", name: "igniteui-angular-charts" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { version: "19.1.0-beta.1", name: "igniteui-angular-core" }, - { version: "19.1.0-beta.1", name: "igniteui-angular-charts" }, - { version: "19.1.0-beta.1", name: "igniteui-angular-excel" }, - { version: "19.1.0-beta.1", name: "igniteui-angular-gauges" }, - { version: "19.1.0-beta.1", name: "igniteui-angular-data-grids" }, - { version: "19.1.0-beta.1", name: "igniteui-angular-inputs" }, - { version: "19.1.0-beta.1", name: "igniteui-angular-layouts" }, - { version: "19.1.0-beta.1", name: "igniteui-angular-maps" }, - { version: "19.1.0-beta.1", name: "igniteui-angular-spreadsheet-chart-adapter" }, - { version: "19.1.0-beta.1", name: "igniteui-angular-spreadsheet" }, - { version: "19.1.0-beta.1", name: "igniteui-angular-datasources" }, - { version: "19.1.0-beta.1", name: "igniteui-angular-dashboards" }, + { version: "19.1.0", name: "igniteui-angular-core" }, + { version: "19.1.0", name: "igniteui-angular-charts" }, + { version: "19.1.0", name: "igniteui-angular-excel" }, + { version: "19.1.0", name: "igniteui-angular-gauges" }, + { version: "19.1.0", name: "igniteui-angular-data-grids" }, + { version: "19.1.0", name: "igniteui-angular-inputs" }, + { version: "19.1.0", name: "igniteui-angular-layouts" }, + { version: "19.1.0", name: "igniteui-angular-maps" }, + { version: "19.1.0", name: "igniteui-angular-spreadsheet-chart-adapter" }, + { version: "19.1.0", name: "igniteui-angular-spreadsheet" }, + { version: "19.1.0", name: "igniteui-angular-datasources" }, + { version: "19.1.0", name: "igniteui-angular-dashboards" }, // these IG packages are sometimes updated: { version: "5.2.4" , name: "igniteui-webcomponents" }, { version: "15.1.1", name: "igniteui-theming" }, diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index 31dd6101b..7cabde79b 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,16 +1,16 @@ [ {"ver":"19.1.0","name":"igniteui-angular"}, -{"ver":"19.1.0-beta.0","name":"igniteui-angular-charts"}, -{"ver":"19.1.0-beta.0","name":"igniteui-angular-core"}, -{"ver":"19.1.0-beta.0","name":"igniteui-angular-dashboards"}, -{"ver":"19.1.0-beta.0","name":"igniteui-angular-data-grids"}, -{"ver":"19.1.0-beta.0","name":"igniteui-angular-excel"}, -{"ver":"19.1.0-beta.0","name":"igniteui-angular-gauges"}, -{"ver":"19.1.0-beta.0","name":"igniteui-angular-inputs"}, -{"ver":"19.1.0-beta.0","name":"igniteui-angular-layouts"}, -{"ver":"19.1.0-beta.0","name":"igniteui-angular-maps"}, -{"ver":"19.1.0-beta.0","name":"igniteui-angular-spreadsheet"}, -{"ver":"19.1.0-beta.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"19.1.0","name":"igniteui-angular-charts"}, +{"ver":"19.1.0","name":"igniteui-angular-core"}, +{"ver":"19.1.0","name":"igniteui-angular-dashboards"}, +{"ver":"19.1.0","name":"igniteui-angular-data-grids"}, +{"ver":"19.1.0","name":"igniteui-angular-excel"}, +{"ver":"19.1.0","name":"igniteui-angular-gauges"}, +{"ver":"19.1.0","name":"igniteui-angular-inputs"}, +{"ver":"19.1.0","name":"igniteui-angular-layouts"}, +{"ver":"19.1.0","name":"igniteui-angular-maps"}, +{"ver":"19.1.0","name":"igniteui-angular-spreadsheet"}, +{"ver":"19.1.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, {"ver":"15.1.1","name":"igniteui-theming"}, {"ver":"5.2.4","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 9ac9f1585..aa967550e 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 0017aa7e2..ebbca9a68 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 0017aa7e2..ebbca9a68 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-matcher/package.json b/samples/charts/category-chart/selection-matcher/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/selection-matcher/package.json +++ b/samples/charts/category-chart/selection-matcher/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index 6cb6e7522..1ef7b9fb9 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-dashboards": "19.1.0-beta.1", - "igniteui-angular-data-grids": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-dashboards": "19.1.0", + "igniteui-angular-data-grids": "19.1.0", + "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index e7da4497a..3c4a6cb04 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-dashboards": "19.1.0-beta.1", - "igniteui-angular-data-grids": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-dashboards": "19.1.0", + "igniteui-angular-data-grids": "19.1.0", + "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index e7da4497a..3c4a6cb04 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-dashboards": "19.1.0-beta.1", - "igniteui-angular-data-grids": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-dashboards": "19.1.0", + "igniteui-angular-data-grids": "19.1.0", + "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json index e7da4497a..3c4a6cb04 100644 --- a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-dashboards": "19.1.0-beta.1", - "igniteui-angular-data-grids": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-dashboards": "19.1.0", + "igniteui-angular-data-grids": "19.1.0", + "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index e7da4497a..3c4a6cb04 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-dashboards": "19.1.0-beta.1", - "igniteui-angular-data-grids": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-dashboards": "19.1.0", + "igniteui-angular-data-grids": "19.1.0", + "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index e7da4497a..3c4a6cb04 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-dashboards": "19.1.0-beta.1", - "igniteui-angular-data-grids": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-dashboards": "19.1.0", + "igniteui-angular-data-grids": "19.1.0", + "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 366afa77b..3f7fda718 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-band-layer/package.json b/samples/charts/data-chart/data-annotation-band-layer/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/data-annotation-band-layer/package.json +++ b/samples/charts/data-chart/data-annotation-band-layer/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-line-layer/package.json b/samples/charts/data-chart/data-annotation-line-layer/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/data-annotation-line-layer/package.json +++ b/samples/charts/data-chart/data-annotation-line-layer/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-rect-layer/package.json b/samples/charts/data-chart/data-annotation-rect-layer/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/data-annotation-rect-layer/package.json +++ b/samples/charts/data-chart/data-annotation-rect-layer/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-slice-layer/package.json b/samples/charts/data-chart/data-annotation-slice-layer/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/data-annotation-slice-layer/package.json +++ b/samples/charts/data-chart/data-annotation-slice-layer/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-strip-layer/package.json b/samples/charts/data-chart/data-annotation-strip-layer/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/data-annotation-strip-layer/package.json +++ b/samples/charts/data-chart/data-annotation-strip-layer/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index 9ac9f1585..aa967550e 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index 9ac9f1585..aa967550e 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index 9ac9f1585..aa967550e 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/selection-matcher/package.json b/samples/charts/data-chart/selection-matcher/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/selection-matcher/package.json +++ b/samples/charts/data-chart/selection-matcher/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/animation-replay/package.json b/samples/charts/data-pie-chart/animation-replay/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/data-pie-chart/animation-replay/package.json +++ b/samples/charts/data-pie-chart/animation-replay/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index 9ac9f1585..aa967550e 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 9ac9f1585..aa967550e 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 10f49021d..b59a9ce63 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "igniteui-theming": "15.1.1", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index de93b34be..e6fb48a6a 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-data-grids": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-data-grids": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 9ac9f1585..aa967550e 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json index 9ac9f1585..aa967550e 100644 --- a/samples/charts/toolbar/color-editor-support/package.json +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 9ac9f1585..aa967550e 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 9ac9f1585..aa967550e 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 9ac9f1585..aa967550e 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 0017aa7e2..ebbca9a68 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 0d4feef7a..810beb516 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", - "igniteui-angular-layouts": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-layouts": "19.1.0", "igniteui-webcomponents": "5.2.4", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 98ec7a376..d09fb5f55 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 5bdfa808e..9efcd19ad 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index a28df64ed..646fa3dcd 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -21,8 +21,8 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-excel": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 21193c2f5..afd394a19 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-excel": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 21193c2f5..afd394a19 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-excel": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 21193c2f5..afd394a19 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-excel": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 38c858a3d..cef09c3fd 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-excel": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 38c858a3d..cef09c3fd 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-excel": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index 11d348b63..5ea708255 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -20,10 +20,10 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", - "igniteui-angular-spreadsheet": "19.1.0-beta.1", - "igniteui-angular-spreadsheet-chart-adapter": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-excel": "19.1.0", + "igniteui-angular-spreadsheet": "19.1.0", + "igniteui-angular-spreadsheet-chart-adapter": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 2fb6d576f..e5fefeddf 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", - "igniteui-angular-spreadsheet": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-excel": "19.1.0", + "igniteui-angular-spreadsheet": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index aa88e8e18..9a13e24af 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", - "igniteui-angular-spreadsheet": "19.1.0-beta.1", - "igniteui-angular-spreadsheet-chart-adapter": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-excel": "19.1.0", + "igniteui-angular-spreadsheet": "19.1.0", + "igniteui-angular-spreadsheet-chart-adapter": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index aa88e8e18..9a13e24af 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", - "igniteui-angular-spreadsheet": "19.1.0-beta.1", - "igniteui-angular-spreadsheet-chart-adapter": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-excel": "19.1.0", + "igniteui-angular-spreadsheet": "19.1.0", + "igniteui-angular-spreadsheet-chart-adapter": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index 2fb6d576f..e5fefeddf 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", - "igniteui-angular-spreadsheet": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-excel": "19.1.0", + "igniteui-angular-spreadsheet": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 2fb6d576f..e5fefeddf 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", - "igniteui-angular-spreadsheet": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-excel": "19.1.0", + "igniteui-angular-spreadsheet": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index 2fb6d576f..e5fefeddf 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", - "igniteui-angular-spreadsheet": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-excel": "19.1.0", + "igniteui-angular-spreadsheet": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 2fb6d576f..e5fefeddf 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", - "igniteui-angular-spreadsheet": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-excel": "19.1.0", + "igniteui-angular-spreadsheet": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 2fb6d576f..e5fefeddf 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", - "igniteui-angular-spreadsheet": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-excel": "19.1.0", + "igniteui-angular-spreadsheet": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 2fb6d576f..e5fefeddf 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", - "igniteui-angular-spreadsheet": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-excel": "19.1.0", + "igniteui-angular-spreadsheet": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index 2fb6d576f..e5fefeddf 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-excel": "19.1.0-beta.1", - "igniteui-angular-spreadsheet": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-excel": "19.1.0", + "igniteui-angular-spreadsheet": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index a60961eb6..2ea0cc4e0 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index a60961eb6..2ea0cc4e0 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index a60961eb6..2ea0cc4e0 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "19.1.0", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index a43ce2e73..951eec8e3 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-gauges": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-gauges": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json index deddd6372..3a8c7bf6f 100644 --- a/samples/inputs/color-editor/overview/package.json +++ b/samples/inputs/color-editor/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-inputs": "19.1.0-beta.1", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-inputs": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 6434f82b9..3a6722d5a 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0-beta.1", - "igniteui-angular-core": "19.1.0-beta.1", - "igniteui-angular-maps": "19.1.0-beta.1", + "igniteui-angular-charts": "19.1.0", + "igniteui-angular-core": "19.1.0", + "igniteui-angular-maps": "19.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", From 4fcdefd376d2bc8321f50a54bfbdf3b72e16bfb3 Mon Sep 17 00:00:00 2001 From: IGvaleries Date: Fri, 6 Jun 2025 16:37:50 -0400 Subject: [PATCH 148/154] update to angular 20 --- browser/angular.json | 36 ++++++++++--- browser/package.json | 54 +++++++++---------- browser/scripts/browser.js | 54 +++++++++---------- browser/src/app/app.component.ts | 3 +- .../src/app/index/docs-layout.component.ts | 3 +- browser/src/browser-info.json | 28 +++++----- browser/tsconfig.json | 4 +- .../annotations-all/package.json | 34 ++++++------ .../annotations-callouts/package.json | 34 ++++++------ .../annotations-crosshairs/package.json | 34 ++++++------ .../annotations-custom/package.json | 34 ++++++------ .../annotations-final-value/package.json | 34 ++++++------ .../annotations-highlighting/package.json | 34 ++++++------ .../category-chart/annotations/package.json | 28 +++++----- .../area-chart-multiple-sources/package.json | 28 +++++----- .../area-chart-single-source/package.json | 28 +++++----- .../area-chart-styling/package.json | 28 +++++----- .../category-chart/axis-gap/package.json | 34 ++++++------ .../axis-gridlines/package.json | 34 ++++++------ .../category-chart/axis-inverted/package.json | 34 ++++++------ .../category-chart/axis-labels/package.json | 34 ++++++------ .../axis-locations/package.json | 34 ++++++------ .../category-chart/axis-options/package.json | 28 +++++----- .../category-chart/axis-overlap/package.json | 34 ++++++------ .../category-chart/axis-range/package.json | 34 ++++++------ .../axis-tickmarks/package.json | 34 ++++++------ .../category-chart/axis-titles/package.json | 28 +++++----- .../chart-highlight-filter/package.json | 34 ++++++------ .../package.json | 28 +++++----- .../column-chart-single-source/package.json | 28 +++++----- .../column-chart-styling/package.json | 28 +++++----- .../package.json | 28 +++++----- .../column-chart-with-tooltips/package.json | 34 ++++++------ .../custom-selection/package.json | 28 +++++----- .../data-aggregations/package.json | 34 ++++++------ .../category-chart/data-filter/package.json | 34 ++++++------ .../package.json | 28 +++++----- .../category-chart/data-legend/package.json | 28 +++++----- .../package.json | 28 +++++----- .../data-tooltip-positioning/package.json | 34 ++++++------ .../category-chart/data-tooltip/package.json | 28 +++++----- .../format-specifiers/package.json | 32 +++++------ .../high-frequency/package.json | 30 +++++------ .../category-chart/high-volume/package.json | 30 +++++------ .../highlighting-behavior/package.json | 34 ++++++------ .../highlighting-mode/package.json | 34 ++++++------ .../category-chart/highlighting/package.json | 28 +++++----- .../legend-highlighting/package.json | 28 +++++----- .../line-chart-multiple-sources/package.json | 28 +++++----- .../line-chart-single-source/package.json | 28 +++++----- .../line-chart-styling/package.json | 28 +++++----- .../line-chart-with-animations/package.json | 28 +++++----- .../line-chart-with-annotations/package.json | 28 +++++----- .../line-chart-with-legend/package.json | 28 +++++----- .../marker-options/package.json | 34 ++++++------ .../marker-templates/package.json | 28 +++++----- .../category-chart/overview/package.json | 28 +++++----- .../point-chart-multiple-sources/package.json | 28 +++++----- .../point-chart-single-source/package.json | 28 +++++----- .../point-chart-styling/package.json | 28 +++++----- .../selection-matcher/package.json | 28 +++++----- .../selection-modes/package.json | 28 +++++----- .../selection-multiple-modes/package.json | 34 ++++++------ .../spline-area-multiple-sources/package.json | 28 +++++----- .../spline-area-single-source/package.json | 28 +++++----- .../spline-area-styling/package.json | 28 +++++----- .../spline-multiple-sources/package.json | 28 +++++----- .../spline-single-source/package.json | 28 +++++----- .../spline-styling/package.json | 28 +++++----- .../category-chart/stack-columns/package.json | 28 +++++----- .../step-area-multiple-sources/package.json | 28 +++++----- .../step-area-single-source/package.json | 28 +++++----- .../step-area-styling/package.json | 28 +++++----- .../step-line-multiple-sources/package.json | 28 +++++----- .../step-line-single-source/package.json | 28 +++++----- .../step-line-styling/package.json | 28 +++++----- .../tooltip-template/package.json | 28 +++++----- .../category-chart/tooltip-types/package.json | 28 +++++----- .../category-chart/trendline/package.json | 28 +++++----- .../category-chart/value-lines/package.json | 34 ++++++------ .../chart-dashboard/package.json | 40 +++++++------- .../financial-dashboard/package.json | 40 +++++++------- .../gauge-dashboard/package.json | 40 +++++++------- .../local-data-source-dashboard/package.json | 40 +++++++------- .../dashboard-tile/map-dashboard/package.json | 40 +++++++------- .../dashboard-tile/pie-dashboard/package.json | 40 +++++++------- .../annotations-custom/package.json | 28 +++++----- .../package.json | 28 +++++----- .../data-chart/axis-annotations/package.json | 28 +++++----- .../data-chart/axis-crossing/package.json | 28 +++++----- .../axis-label-rotation/package.json | 34 ++++++------ .../data-chart/axis-locations/package.json | 28 +++++----- .../data-chart/axis-min-max-gap/package.json | 28 +++++----- .../data-chart/axis-settings/package.json | 28 +++++----- .../data-chart/axis-sharing/package.json | 28 +++++----- .../charts/data-chart/axis-types/package.json | 28 +++++----- .../bar-chart-multiple-sources/package.json | 28 +++++----- .../bar-chart-overlapping/package.json | 28 +++++----- .../bar-chart-single-source/package.json | 28 +++++----- .../data-chart/bar-chart-styling/package.json | 28 +++++----- .../callout-layer-styling/package.json | 28 +++++----- .../package.json | 34 ++++++------ .../package.json | 34 ++++++------ .../chart-highlight-filter/package.json | 34 ++++++------ .../data-chart/chart-navigation/package.json | 28 +++++----- .../data-chart/chart-overview/package.json | 28 +++++----- .../data-chart/chart-performance/package.json | 28 +++++----- .../chart-synchronization/package.json | 28 +++++----- .../data-chart/chart-titles/package.json | 28 +++++----- .../column-chart-styling/package.json | 28 +++++----- .../data-chart/composite-chart/package.json | 28 +++++----- .../crosshair-layer-styling/package.json | 28 +++++----- .../custom-drawing-annotations/package.json | 32 +++++------ .../custom-editing-data/package.json | 28 +++++----- .../data-chart/dash-array-axes/package.json | 28 +++++----- .../data-chart/dash-array-series/package.json | 28 +++++----- .../dash-array-tickmarks/package.json | 28 +++++----- .../dash-array-trendline/package.json | 28 +++++----- .../data-annotation-band-layer/package.json | 28 +++++----- .../data-annotation-line-layer/package.json | 28 +++++----- .../package.json | 28 +++++----- .../package.json | 28 +++++----- .../data-annotation-rect-layer/package.json | 28 +++++----- .../data-annotation-slice-layer/package.json | 28 +++++----- .../data-annotation-strip-layer/package.json | 28 +++++----- .../package.json | 28 +++++----- .../data-legend-grouping/package.json | 28 +++++----- .../data-legend-styling/package.json | 28 +++++----- .../data-chart/data-legend/package.json | 28 +++++----- .../package.json | 32 +++++------ .../data-tooltip-grouping/package.json | 32 +++++------ .../data-tooltip-styling/package.json | 32 +++++------ .../data-chart/data-tooltip/package.json | 28 +++++----- .../final-value-layer-styling/package.json | 28 +++++----- .../financial-price-series/package.json | 28 +++++----- .../data-chart/format-specifiers/package.json | 28 +++++----- .../charts/data-chart/legends/package.json | 28 +++++----- .../polar-area-chart-styling/package.json | 28 +++++----- .../data-chart/polar-area-chart/package.json | 28 +++++----- .../data-chart/polar-chart-types/package.json | 28 +++++----- .../data-chart/polar-line-chart/package.json | 28 +++++----- .../polar-scatter-chart/package.json | 28 +++++----- .../polar-spline-area-chart/package.json | 28 +++++----- .../polar-spline-chart/package.json | 28 +++++----- .../radial-area-chart-styling/package.json | 28 +++++----- .../data-chart/radial-area-chart/package.json | 28 +++++----- .../radial-chart-types/package.json | 28 +++++----- .../package.json | 28 +++++----- .../radial-column-chart/package.json | 28 +++++----- .../data-chart/radial-label-mode/package.json | 34 ++++++------ .../data-chart/radial-line-chart/package.json | 28 +++++----- .../data-chart/radial-pie-chart/package.json | 28 +++++----- .../package.json | 28 +++++----- .../package.json | 28 +++++----- .../data-chart/range-area-chart/package.json | 28 +++++----- .../range-column-chart/package.json | 28 +++++----- .../package.json | 28 +++++----- .../package.json | 28 +++++----- .../package.json | 28 +++++----- .../scatter-bubble-chart-styling/package.json | 28 +++++----- .../scatter-line-chart/package.json | 28 +++++----- .../scatter-point-chart/package.json | 28 +++++----- .../scatter-spline-chart/package.json | 28 +++++----- .../data-chart/selection-matcher/package.json | 28 +++++----- .../data-chart/series-animations/package.json | 28 +++++----- .../series-annotations/package.json | 28 +++++----- .../series-highlighting/package.json | 28 +++++----- .../series-marker-template/package.json | 28 +++++----- .../data-chart/series-markers/package.json | 28 +++++----- .../data-chart/series-tooltips/package.json | 28 +++++----- .../data-chart/series-trendlines/package.json | 28 +++++----- .../series-value-overlay/package.json | 28 +++++----- .../stacked-100-area-chart/package.json | 28 +++++----- .../stacked-100-bar-chart/package.json | 28 +++++----- .../stacked-100-column-chart/package.json | 28 +++++----- .../stacked-100-line-chart/package.json | 28 +++++----- .../package.json | 28 +++++----- .../stacked-100-spline-chart/package.json | 28 +++++----- .../stacked-area-chart/package.json | 28 +++++----- .../data-chart/stacked-bar-chart/package.json | 28 +++++----- .../stacked-chart-types/package.json | 28 +++++----- .../stacked-column-chart/package.json | 28 +++++----- .../stacked-line-chart/package.json | 28 +++++----- .../stacked-spline-area-chart/package.json | 28 +++++----- .../stacked-spline-chart/package.json | 28 +++++----- .../data-chart/tooltip-template/package.json | 28 +++++----- .../data-chart/transition-event/package.json | 34 ++++++------ .../type-category-area-series/package.json | 28 +++++----- .../type-category-bar-series/package.json | 28 +++++----- .../type-category-column-series/package.json | 28 +++++----- .../type-category-line-series/package.json | 28 +++++----- .../type-category-point-series/package.json | 28 +++++----- .../type-category-series/package.json | 28 +++++----- .../package.json | 28 +++++----- .../type-category-spline-series/package.json | 28 +++++----- .../package.json | 28 +++++----- .../package.json | 28 +++++----- .../package.json | 28 +++++----- .../package.json | 28 +++++----- .../package.json | 28 +++++----- .../package.json | 28 +++++----- .../package.json | 28 +++++----- .../type-financial-ohlc-series/package.json | 28 +++++----- .../type-financial-overlays/package.json | 28 +++++----- .../type-financial-series/package.json | 28 +++++----- .../type-radial-area-series/package.json | 28 +++++----- .../type-radial-column-series/package.json | 28 +++++----- .../type-radial-line-series/package.json | 28 +++++----- .../type-radial-pie-series/package.json | 28 +++++----- .../type-range-area-series/package.json | 28 +++++----- .../type-range-column-series/package.json | 28 +++++----- .../data-chart/type-range-series/package.json | 28 +++++----- .../type-scatter-area-series/package.json | 28 +++++----- .../type-scatter-bubble-series/package.json | 28 +++++----- .../type-scatter-contour-series/package.json | 28 +++++----- .../type-scatter-hd-series/package.json | 28 +++++----- .../type-scatter-line-series/package.json | 28 +++++----- .../type-scatter-point-series/package.json | 28 +++++----- .../type-scatter-polygon-series/package.json | 28 +++++----- .../type-scatter-polyline-series/package.json | 28 +++++----- .../type-scatter-series/package.json | 28 +++++----- .../type-scatter-spline-series/package.json | 28 +++++----- .../data-chart/type-shape-series/package.json | 28 +++++----- .../type-stacked-100-area-series/package.json | 28 +++++----- .../type-stacked-100-bar-series/package.json | 28 +++++----- .../package.json | 28 +++++----- .../type-stacked-100-line-series/package.json | 28 +++++----- .../package.json | 28 +++++----- .../package.json | 28 +++++----- .../type-stacked-area-series/package.json | 28 +++++----- .../type-stacked-bar-series/package.json | 28 +++++----- .../type-stacked-column-series/package.json | 28 +++++----- .../type-stacked-line-series/package.json | 28 +++++----- .../package.json | 28 +++++----- .../type-stacked-spline-series/package.json | 28 +++++----- .../data-chart/waterfall-chart/package.json | 28 +++++----- .../animation-replay/package.json | 34 ++++++------ .../data-pie-chart/animation/package.json | 34 ++++++------ .../highlight-filter/package.json | 28 +++++----- .../data-pie-chart/highlighting/package.json | 34 ++++++------ .../charts/data-pie-chart/legend/package.json | 32 +++++------ .../charts/data-pie-chart/others/package.json | 34 ++++++------ .../data-pie-chart/overview/package.json | 28 +++++----- .../data-pie-chart/selection/package.json | 34 ++++++------ .../doughnut-chart/animation/package.json | 28 +++++----- .../doughnut-chart/explosion/package.json | 28 +++++----- .../charts/doughnut-chart/legend/package.json | 28 +++++----- .../doughnut-chart/overview/package.json | 28 +++++----- .../charts/doughnut-chart/rings/package.json | 28 +++++----- .../doughnut-chart/selection/package.json | 28 +++++----- .../financial-chart/annotations/package.json | 28 +++++----- .../financial-chart/axis-types/package.json | 28 +++++----- .../package.json | 28 +++++----- .../data-legend-styling-props/package.json | 28 +++++----- .../financial-chart/data-legend/package.json | 28 +++++----- .../package.json | 28 +++++----- .../data-tooltip-styling-props/package.json | 28 +++++----- .../financial-chart/data-tooltip/package.json | 28 +++++----- .../format-specifiers/package.json | 28 +++++----- .../high-frequency/package.json | 28 +++++----- .../financial-chart/high-volume/package.json | 28 +++++----- .../indicator-customization/package.json | 28 +++++----- .../indicator-types/package.json | 28 +++++----- .../multiple-data/package.json | 28 +++++----- .../multiple-feeds/package.json | 28 +++++----- .../financial-chart/overview/package.json | 28 +++++----- .../charts/financial-chart/panes/package.json | 28 +++++----- .../financial-chart/performance/package.json | 28 +++++----- .../financial-chart/scrollbars/package.json | 28 +++++----- .../stock-index-chart/package.json | 28 +++++----- .../financial-chart/styling/package.json | 28 +++++----- .../financial-chart/theming/package.json | 28 +++++----- .../time-based-data/package.json | 28 +++++----- .../financial-chart/titles/package.json | 28 +++++----- .../tooltip-template/package.json | 28 +++++----- .../tooltip-types/package.json | 28 +++++----- .../financial-chart/trendlines/package.json | 28 +++++----- .../financial-chart/volume-types/package.json | 28 +++++----- .../charts/pie-chart/animation/package.json | 28 +++++----- .../charts/pie-chart/explosion/package.json | 28 +++++----- samples/charts/pie-chart/legend/package.json | 28 +++++----- samples/charts/pie-chart/others/package.json | 28 +++++----- .../charts/pie-chart/overview/package.json | 28 +++++----- .../charts/pie-chart/selection/package.json | 28 +++++----- samples/charts/pie-chart/styling/package.json | 28 +++++----- .../sparkline/display-area/package.json | 28 +++++----- .../sparkline/display-column/package.json | 28 +++++----- .../sparkline/display-lines/package.json | 32 +++++------ .../sparkline/display-types/package.json | 28 +++++----- .../sparkline/display-winloss/package.json | 28 +++++----- samples/charts/sparkline/grid/package.json | 32 +++++------ samples/charts/sparkline/markers/package.json | 34 ++++++------ .../sparkline/normal-range/package.json | 34 ++++++------ .../charts/sparkline/trendlines/package.json | 34 ++++++------ .../sparkline/unknown-values/package.json | 34 ++++++------ .../package.json | 34 ++++++------ .../actions-built-in-data-chart/package.json | 32 +++++------ .../toolbar/color-editor-support/package.json | 32 +++++------ .../charts/toolbar/custom-tool/package.json | 32 +++++------ .../package.json | 32 +++++------ .../package.json | 32 +++++------ samples/charts/toolbar/theming/package.json | 34 ++++++------ samples/charts/tree-map/events/package.json | 30 +++++------ .../highlighting-percent-based/package.json | 28 +++++----- .../charts/tree-map/highlighting/package.json | 34 ++++++------ samples/charts/tree-map/layout/package.json | 34 ++++++------ samples/charts/tree-map/overview/package.json | 28 +++++----- samples/charts/tree-map/styling/package.json | 28 +++++----- .../charts/zoomslider/overview/package.json | 28 +++++----- .../operations-on-workbooks/package.json | 30 +++++------ .../operations-on-worksheets/package.json | 28 +++++----- .../excel/excel-library/overview/package.json | 28 +++++----- .../working-with-cells/package.json | 28 +++++----- .../working-with-charts/package.json | 32 +++++------ .../working-with-sparklines/package.json | 32 +++++------ .../working-with-tables/package.json | 32 +++++------ .../excel/spreadsheet/activation/package.json | 30 +++++------ .../spreadsheet/adapter-chart/package.json | 34 ++++++------ .../spreadsheet/adapter-combo/package.json | 34 ++++++------ .../excel/spreadsheet/clipboard/package.json | 30 +++++------ .../excel/spreadsheet/commands/package.json | 30 +++++------ .../conditional-formatting/package.json | 30 +++++------ .../spreadsheet/config-options/package.json | 30 +++++------ .../spreadsheet/data-validation/package.json | 30 +++++------ .../excel/spreadsheet/hyperlinks/package.json | 30 +++++------ .../excel/spreadsheet/overview/package.json | 30 +++++------ .../bullet-graph/animation/package.json | 30 +++++------ .../bullet-graph/background/package.json | 28 +++++----- .../highlight-needle/package.json | 28 +++++----- .../gauges/bullet-graph/labels/package.json | 28 +++++----- .../gauges/bullet-graph/measures/package.json | 28 +++++----- .../gauges/bullet-graph/ranges/package.json | 28 +++++----- .../gauges/bullet-graph/scale/package.json | 28 +++++----- .../bullet-graph/tickmarks/package.json | 28 +++++----- .../linear-gauge/animation/package.json | 30 +++++------ .../gauges/linear-gauge/backing/package.json | 28 +++++----- .../highlight-needle/package.json | 28 +++++----- .../gauges/linear-gauge/labels/package.json | 28 +++++----- .../gauges/linear-gauge/needle/package.json | 28 +++++----- .../gauges/linear-gauge/ranges/package.json | 28 +++++----- .../gauges/linear-gauge/scale/package.json | 28 +++++----- .../linear-gauge/tickmarks/package.json | 28 +++++----- .../radial-gauge/animation/package.json | 30 +++++------ .../gauges/radial-gauge/backing/package.json | 28 +++++----- .../highlight-needle/package.json | 28 +++++----- .../gauges/radial-gauge/labels/package.json | 28 +++++----- .../gauges/radial-gauge/needle/package.json | 28 +++++----- .../radial-gauge/optical-scaling/package.json | 28 +++++----- .../gauges/radial-gauge/ranges/package.json | 28 +++++----- .../gauges/radial-gauge/scale/package.json | 28 +++++----- .../radial-gauge/tickmarks/package.json | 28 +++++----- .../inputs/color-editor/overview/package.json | 28 +++++----- .../geo-map/binding-data-csv/package.json | 30 +++++------ .../binding-data-json-points/package.json | 30 +++++------ .../geo-map/binding-data-model/package.json | 30 +++++------ .../binding-multiple-shapes/package.json | 30 +++++------ .../binding-multiple-sources/package.json | 30 +++++------ .../geo-map/binding-shp-points/package.json | 30 +++++------ .../geo-map/binding-shp-polygons/package.json | 30 +++++------ .../binding-shp-polylines/package.json | 30 +++++------ .../maps/geo-map/custom-tooltips/package.json | 30 +++++------ .../geo-map/display-bing-imagery/package.json | 30 +++++------ .../geo-map/display-esri-imagery/package.json | 30 +++++------ .../geo-map/display-heat-imagery/package.json | 30 +++++------ .../geo-map/display-osm-imagery/package.json | 30 +++++------ .../maps/geo-map/marker-layouts/package.json | 30 +++++------ .../maps/geo-map/marker-template/package.json | 30 +++++------ samples/maps/geo-map/marker-type/package.json | 30 +++++------ samples/maps/geo-map/navigation/package.json | 30 +++++------ samples/maps/geo-map/overview/package.json | 30 +++++------ .../maps/geo-map/shape-styling/package.json | 30 +++++------ .../geo-map/triangulating-data/package.json | 30 +++++------ .../type-scatter-area-series/package.json | 30 +++++------ .../type-scatter-bubble-series/package.json | 30 +++++------ .../type-scatter-contour-series/package.json | 30 +++++------ .../type-scatter-density-series/package.json | 30 +++++------ .../type-scatter-symbol-series/package.json | 30 +++++------ .../type-shape-polygon-series/package.json | 30 +++++------ .../type-shape-polyline-series/package.json | 30 +++++------ 379 files changed, 5553 insertions(+), 5535 deletions(-) diff --git a/browser/angular.json b/browser/angular.json index d81ccbeb9..c7344057d 100644 --- a/browser/angular.json +++ b/browser/angular.json @@ -153,14 +153,34 @@ } }, "schematics": { - "@schematics/angular:component": { - "prefix": "app", - "style": "scss" - }, - "@schematics/angular:directive": { - "prefix": "app" - } - }, + "@schematics/angular:component": { + "prefix": "app", + "style": "scss", + "type": "component" + }, + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." + } + }, "cli": { "analytics": false } diff --git a/browser/package.json b/browser/package.json index 9891d2e8b..146981a09 100644 --- a/browser/package.json +++ b/browser/package.json @@ -24,14 +24,14 @@ "@lit/reactive-element": "desired-version" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", - "@angular/router": "19.2.12", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", + "@angular/router": "20.0.1", "@ionic/angular": "5.6.3", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", @@ -41,20 +41,20 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-dashboards": "19.1.0", - "igniteui-angular-data-grids": "19.1.0", - "igniteui-angular-excel": "19.1.0", - "igniteui-angular-gauges": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-angular-maps": "19.1.0", - "igniteui-angular-spreadsheet": "19.1.0", - "igniteui-angular-spreadsheet-chart-adapter": "19.1.0", - "igniteui-theming": "15.1.1", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular": "20.0.0-rc.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-dashboards": "20.0.0-beta.0", + "igniteui-angular-data-grids": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-spreadsheet": "20.0.0-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "20.0.0-beta.0", + "igniteui-theming": "18.1.0", + "igniteui-webcomponents": "6.0.0", "immediate": "3.2.3", "intl": "1.2.5", "jszip": "3.8.0", @@ -67,10 +67,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/jasmine": "3.10.2", "@types/jasminewd2": "2.0.9", "@types/node": "18.17.0", @@ -95,6 +95,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 547755302..2b23dc09f 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1073,29 +1073,29 @@ function updateIG(cb) { // { version: "14.1.0", name: "igniteui-angular-charts" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { version: "19.1.0", name: "igniteui-angular-core" }, - { version: "19.1.0", name: "igniteui-angular-charts" }, - { version: "19.1.0", name: "igniteui-angular-excel" }, - { version: "19.1.0", name: "igniteui-angular-gauges" }, - { version: "19.1.0", name: "igniteui-angular-data-grids" }, - { version: "19.1.0", name: "igniteui-angular-inputs" }, - { version: "19.1.0", name: "igniteui-angular-layouts" }, - { version: "19.1.0", name: "igniteui-angular-maps" }, - { version: "19.1.0", name: "igniteui-angular-spreadsheet-chart-adapter" }, - { version: "19.1.0", name: "igniteui-angular-spreadsheet" }, - { version: "19.1.0", name: "igniteui-angular-datasources" }, - { version: "19.1.0", name: "igniteui-angular-dashboards" }, + { version: "20.0.0-beta.0", name: "igniteui-angular-core" }, + { version: "20.0.0-beta.0", name: "igniteui-angular-charts" }, + { version: "20.0.0-beta.0", name: "igniteui-angular-excel" }, + { version: "20.0.0-beta.0", name: "igniteui-angular-gauges" }, + { version: "20.0.0-beta.0", name: "igniteui-angular-data-grids" }, + { version: "20.0.0-beta.0", name: "igniteui-angular-inputs" }, + { version: "20.0.0-beta.0", name: "igniteui-angular-layouts" }, + { version: "20.0.0-beta.0", name: "igniteui-angular-maps" }, + { version: "20.0.0-beta.0", name: "igniteui-angular-spreadsheet-chart-adapter" }, + { version: "20.0.0-beta.0", name: "igniteui-angular-spreadsheet" }, + { version: "20.0.0-beta.0", name: "igniteui-angular-datasources" }, + { version: "20.0.0-beta.0", name: "igniteui-angular-dashboards" }, // these IG packages are sometimes updated: - { version: "5.2.4" , name: "igniteui-webcomponents" }, - { version: "15.1.1", name: "igniteui-theming" }, - { version: "19.1.0", name: "igniteui-angular" }, - { version: "19.0.4", name: "@angular/animations" }, - { version: "19.0.4", name: "@angular/common" }, - { version: "19.0.4", name: "@angular/compiler" }, - { version: "19.0.4", name: "@angular/core" }, - { version: "19.0.4", name: "@angular/forms" }, - { version: "19.0.4", name: "@angular/platform-browser" }, - { version: "19.0.4", name: "@angular/platform-browser-dynamic" }, + { version: "6.0.0" , name: "igniteui-webcomponents" }, + { version: "18.1.0", name: "igniteui-theming" }, + { version: "20.0.0-rc.0", name: "igniteui-angular" }, + { version: "20.0.1", name: "@angular/animations" }, + { version: "20.0.1", name: "@angular/common" }, + { version: "20.0.1", name: "@angular/compiler" }, + { version: "20.0.1", name: "@angular/core" }, + { version: "20.0.1", name: "@angular/forms" }, + { version: "20.0.1", name: "@angular/platform-browser" }, + { version: "20.0.1", name: "@angular/platform-browser-dynamic" }, { version: "2.0.40", name: "@types/hammerjs" }, { version: "1.1.20150312", name: "classlist-js" }, { version: "3.21.0" , name: "core-js" }, @@ -1107,10 +1107,10 @@ function updateIG(cb) { { version: "2.3.2" , name: "web-animations-js", }, { version: "~0.15.0", name: "zone.js" }, // dev packages: - { version: "19.0.4" , name: "@angular/cli" }, - { version: "19.0.4" , name: "@angular/compiler-cli" }, - { version: "19.0.4" , name: "@angular/language-service" }, - { version: "19.0.4" , name: "@angular-devkit/build-angular" }, + { version: "20.0.1" , name: "@angular/cli" }, + { version: "20.0.1" , name: "@angular/compiler-cli" }, + { version: "20.0.1" , name: "@angular/language-service" }, + { version: "20.0.1" , name: "@angular-devkit/build-angular" }, { version: "18.17.0", name: "@types/node" }, { version: "6.0.2" , name: "codelyzer" }, { version: "5.1.1" , name: "jasmine-core" }, @@ -1118,7 +1118,7 @@ function updateIG(cb) { { version: "0.11.1" , name: "sass.js" }, { version: "~6.1.3" , name: "tslint" }, { version: "10.9.1" , name: "ts-node" }, - { version: "5.6.3" , name: "typescript" }, + { version: "5.8.3" , name: "typescript" }, ]; // NOTE you can comment out strings in this array to run these function only on a subset of samples diff --git a/browser/src/app/app.component.ts b/browser/src/app/app.component.ts index e49215700..06f857f5e 100644 --- a/browser/src/app/app.component.ts +++ b/browser/src/app/app.component.ts @@ -1,5 +1,4 @@ -import { DOCUMENT } from "@angular/common"; -import { Component, HostListener, Inject, OnInit } from "@angular/core"; +import { Component, HostListener, Inject, OnInit, DOCUMENT } from "@angular/core"; @Component({ selector: "app-root", diff --git a/browser/src/app/index/docs-layout.component.ts b/browser/src/app/index/docs-layout.component.ts index aebf76f02..1a6f7a35a 100644 --- a/browser/src/app/index/docs-layout.component.ts +++ b/browser/src/app/index/docs-layout.component.ts @@ -1,5 +1,4 @@ -import { DOCUMENT } from "@angular/common"; -import { Component, HostListener, Inject, OnInit } from "@angular/core"; +import { Component, HostListener, Inject, OnInit, DOCUMENT } from "@angular/core"; @Component({ selector: "app-docs-layout", diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index 7cabde79b..6a85b6b18 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,16 +1,16 @@ [ -{"ver":"19.1.0","name":"igniteui-angular"}, -{"ver":"19.1.0","name":"igniteui-angular-charts"}, -{"ver":"19.1.0","name":"igniteui-angular-core"}, -{"ver":"19.1.0","name":"igniteui-angular-dashboards"}, -{"ver":"19.1.0","name":"igniteui-angular-data-grids"}, -{"ver":"19.1.0","name":"igniteui-angular-excel"}, -{"ver":"19.1.0","name":"igniteui-angular-gauges"}, -{"ver":"19.1.0","name":"igniteui-angular-inputs"}, -{"ver":"19.1.0","name":"igniteui-angular-layouts"}, -{"ver":"19.1.0","name":"igniteui-angular-maps"}, -{"ver":"19.1.0","name":"igniteui-angular-spreadsheet"}, -{"ver":"19.1.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, -{"ver":"15.1.1","name":"igniteui-theming"}, -{"ver":"5.2.4","name":"igniteui-webcomponents"} +{"ver":"20.0.0-rc.0","name":"igniteui-angular"}, +{"ver":"20.0.0-beta.0","name":"igniteui-angular-charts"}, +{"ver":"20.0.0-beta.0","name":"igniteui-angular-core"}, +{"ver":"20.0.0-beta.0","name":"igniteui-angular-dashboards"}, +{"ver":"20.0.0-beta.0","name":"igniteui-angular-data-grids"}, +{"ver":"20.0.0-beta.0","name":"igniteui-angular-excel"}, +{"ver":"20.0.0-beta.0","name":"igniteui-angular-gauges"}, +{"ver":"20.0.0-beta.0","name":"igniteui-angular-inputs"}, +{"ver":"20.0.0-beta.0","name":"igniteui-angular-layouts"}, +{"ver":"20.0.0-beta.0","name":"igniteui-angular-maps"}, +{"ver":"20.0.0-beta.0","name":"igniteui-angular-spreadsheet"}, +{"ver":"20.0.0-beta.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"18.1.0","name":"igniteui-theming"}, +{"ver":"6.0.0","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/browser/tsconfig.json b/browser/tsconfig.json index 260548de9..d3ddbb094 100644 --- a/browser/tsconfig.json +++ b/browser/tsconfig.json @@ -10,8 +10,8 @@ "declaration": false, "esModuleInterop": true, "experimentalDecorators": true, - "target": "ES2022", - "module": "ES2022", + "target": "es2022", + "module": "esnext", "moduleResolution": "node", "importHelpers": true, "useDefineForClassFields": false, diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index aa967550e..97e82ca0b 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index ebbca9a68..78032fa47 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular": "20.0.0-rc.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index ebbca9a68..78032fa47 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular": "20.0.0-rc.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/selection-matcher/package.json b/samples/charts/category-chart/selection-matcher/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/selection-matcher/package.json +++ b/samples/charts/category-chart/selection-matcher/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index 1ef7b9fb9..2c520a166 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -7,24 +7,24 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-dashboards": "19.1.0", - "igniteui-angular-data-grids": "19.1.0", - "igniteui-angular-gauges": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-dashboards": "20.0.0-beta.0", + "igniteui-angular-data-grids": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -33,10 +33,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index 3c4a6cb04..c6e50c2c7 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -7,24 +7,24 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-dashboards": "19.1.0", - "igniteui-angular-data-grids": "19.1.0", - "igniteui-angular-gauges": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-dashboards": "20.0.0-beta.0", + "igniteui-angular-data-grids": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -33,10 +33,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index 3c4a6cb04..c6e50c2c7 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -7,24 +7,24 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-dashboards": "19.1.0", - "igniteui-angular-data-grids": "19.1.0", - "igniteui-angular-gauges": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-dashboards": "20.0.0-beta.0", + "igniteui-angular-data-grids": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -33,10 +33,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json index 3c4a6cb04..c6e50c2c7 100644 --- a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json @@ -7,24 +7,24 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-dashboards": "19.1.0", - "igniteui-angular-data-grids": "19.1.0", - "igniteui-angular-gauges": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-dashboards": "20.0.0-beta.0", + "igniteui-angular-data-grids": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -33,10 +33,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index 3c4a6cb04..c6e50c2c7 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -7,24 +7,24 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-dashboards": "19.1.0", - "igniteui-angular-data-grids": "19.1.0", - "igniteui-angular-gauges": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-dashboards": "20.0.0-beta.0", + "igniteui-angular-data-grids": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -33,10 +33,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index 3c4a6cb04..c6e50c2c7 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -7,24 +7,24 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-dashboards": "19.1.0", - "igniteui-angular-data-grids": "19.1.0", - "igniteui-angular-gauges": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-dashboards": "20.0.0-beta.0", + "igniteui-angular-data-grids": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -33,10 +33,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 3f7fda718..cc73f425b 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/data-annotation-band-layer/package.json b/samples/charts/data-chart/data-annotation-band-layer/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/data-annotation-band-layer/package.json +++ b/samples/charts/data-chart/data-annotation-band-layer/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/data-annotation-line-layer/package.json b/samples/charts/data-chart/data-annotation-line-layer/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/data-annotation-line-layer/package.json +++ b/samples/charts/data-chart/data-annotation-line-layer/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/data-annotation-rect-layer/package.json b/samples/charts/data-chart/data-annotation-rect-layer/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/data-annotation-rect-layer/package.json +++ b/samples/charts/data-chart/data-annotation-rect-layer/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/data-annotation-slice-layer/package.json b/samples/charts/data-chart/data-annotation-slice-layer/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/data-annotation-slice-layer/package.json +++ b/samples/charts/data-chart/data-annotation-slice-layer/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/data-annotation-strip-layer/package.json b/samples/charts/data-chart/data-annotation-strip-layer/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/data-annotation-strip-layer/package.json +++ b/samples/charts/data-chart/data-annotation-strip-layer/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index aa967550e..97e82ca0b 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index aa967550e..97e82ca0b 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index aa967550e..97e82ca0b 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/selection-matcher/package.json b/samples/charts/data-chart/selection-matcher/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/selection-matcher/package.json +++ b/samples/charts/data-chart/selection-matcher/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-pie-chart/animation-replay/package.json b/samples/charts/data-pie-chart/animation-replay/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/data-pie-chart/animation-replay/package.json +++ b/samples/charts/data-pie-chart/animation-replay/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index aa967550e..97e82ca0b 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index aa967550e..97e82ca0b 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index b59a9ce63..31c15febc 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-theming": "15.1.1", + "igniteui-angular": "20.0.0-rc.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-theming": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index e6fb48a6a..f6c614e02 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-data-grids": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-data-grids": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index aa967550e..97e82ca0b 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json index aa967550e..97e82ca0b 100644 --- a/samples/charts/toolbar/color-editor-support/package.json +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index aa967550e..97e82ca0b 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index aa967550e..97e82ca0b 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index aa967550e..97e82ca0b 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index ebbca9a68..78032fa47 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular": "20.0.0-rc.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 810beb516..e8dace740 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", - "igniteui-angular-layouts": "19.1.0", - "igniteui-webcomponents": "5.2.4", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index d09fb5f55..4831fbbc3 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 9efcd19ad..0f9fc2324 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 646fa3dcd..d5d004b88 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-excel": "19.1.0", + "igniteui-angular": "20.0.0-rc.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index afd394a19..ab1bbee94 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-excel": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index afd394a19..ab1bbee94 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-excel": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index afd394a19..ab1bbee94 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -7,21 +7,21 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-excel": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -30,10 +30,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -41,6 +41,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index cef09c3fd..df082156a 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -7,23 +7,23 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-excel": "19.1.0", + "igniteui-angular": "20.0.0-rc.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -32,10 +32,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -43,6 +43,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index cef09c3fd..df082156a 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -7,23 +7,23 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-excel": "19.1.0", + "igniteui-angular": "20.0.0-rc.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -32,10 +32,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -43,6 +43,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index 5ea708255..f8eb63e74 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -7,23 +7,23 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-excel": "19.1.0", - "igniteui-angular-spreadsheet": "19.1.0", - "igniteui-angular-spreadsheet-chart-adapter": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-spreadsheet": "20.0.0-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -32,10 +32,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -43,6 +43,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index e5fefeddf..51fc0ca50 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-excel": "19.1.0", - "igniteui-angular-spreadsheet": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-spreadsheet": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 9a13e24af..fd173d4fc 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -7,24 +7,24 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-excel": "19.1.0", - "igniteui-angular-spreadsheet": "19.1.0", - "igniteui-angular-spreadsheet-chart-adapter": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-spreadsheet": "20.0.0-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -33,10 +33,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index 9a13e24af..fd173d4fc 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -7,24 +7,24 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-excel": "19.1.0", - "igniteui-angular-spreadsheet": "19.1.0", - "igniteui-angular-spreadsheet-chart-adapter": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-spreadsheet": "20.0.0-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -33,10 +33,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -44,6 +44,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index e5fefeddf..51fc0ca50 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-excel": "19.1.0", - "igniteui-angular-spreadsheet": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-spreadsheet": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index e5fefeddf..51fc0ca50 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-excel": "19.1.0", - "igniteui-angular-spreadsheet": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-spreadsheet": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index e5fefeddf..51fc0ca50 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-excel": "19.1.0", - "igniteui-angular-spreadsheet": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-spreadsheet": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index e5fefeddf..51fc0ca50 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-excel": "19.1.0", - "igniteui-angular-spreadsheet": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-spreadsheet": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index e5fefeddf..51fc0ca50 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-excel": "19.1.0", - "igniteui-angular-spreadsheet": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-spreadsheet": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index e5fefeddf..51fc0ca50 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-excel": "19.1.0", - "igniteui-angular-spreadsheet": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-spreadsheet": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index e5fefeddf..51fc0ca50 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -7,22 +7,22 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-excel": "19.1.0", - "igniteui-angular-spreadsheet": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-spreadsheet": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -31,10 +31,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -42,6 +42,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 2ea0cc4e0..c02fbb457 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular": "20.0.0-rc.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 2ea0cc4e0..c02fbb457 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular": "20.0.0-rc.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 2ea0cc4e0..c02fbb457 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular": "20.0.0-rc.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 951eec8e3..016291e51 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -7,19 +7,19 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-gauges": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-gauges": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -28,10 +28,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -39,6 +39,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json index 3a8c7bf6f..5c49ea499 100644 --- a/samples/inputs/color-editor/overview/package.json +++ b/samples/inputs/color-editor/overview/package.json @@ -7,18 +7,18 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-inputs": "19.1.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-inputs": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -27,10 +27,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", - "@angular-devkit/build-angular": "19.0.4", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", + "@angular-devkit/build-angular": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -38,6 +38,6 @@ "sass.js": "0.11.1", "tslint": "~6.1.3", "ts-node": "10.9.1", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 3a6722d5a..03889deff 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -7,20 +7,20 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "19.0.4", - "@angular/common": "19.0.4", - "@angular/compiler": "19.0.4", - "@angular/core": "19.0.4", - "@angular/forms": "19.0.4", - "@angular/platform-browser": "19.0.4", - "@angular/platform-browser-dynamic": "19.0.4", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.1", + "@angular/platform-browser": "20.0.1", + "@angular/platform-browser-dynamic": "20.0.1", "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "19.1.0", - "igniteui-angular-core": "19.1.0", - "igniteui-angular-maps": "19.1.0", + "igniteui-angular-charts": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-maps": "20.0.0-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", @@ -29,10 +29,10 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "19.0.4", - "@angular/cli": "19.0.4", - "@angular/compiler-cli": "19.0.4", - "@angular/language-service": "19.0.4", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", + "@angular/language-service": "20.0.1", "@types/node": "18.17.0", "codelyzer": "6.0.2", "jasmine-core": "5.1.1", @@ -40,6 +40,6 @@ "sass.js": "0.11.1", "ts-node": "10.9.1", "tslint": "~6.1.3", - "typescript": "5.6.3" + "typescript": "5.8.3" } } From 50e83347c04418cf81724a6665cf2da96f99602a Mon Sep 17 00:00:00 2001 From: IGvaleries Date: Fri, 6 Jun 2025 17:27:52 -0400 Subject: [PATCH 149/154] Update build-pipeline.yml for Azure Pipelines update node version for angular 20 --- azure-pipelines/build-pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines/build-pipeline.yml b/azure-pipelines/build-pipeline.yml index b88100012..df7778cdb 100644 --- a/azure-pipelines/build-pipeline.yml +++ b/azure-pipelines/build-pipeline.yml @@ -34,7 +34,7 @@ jobs: - task: NodeTool@0 inputs: versionSource: 'spec' - versionSpec: '18.x' + versionSpec: '24.x' - task: Npm@1 displayName: 'npm install' From 167c7d2777666935176af47a318638a6c6ecbf2f Mon Sep 17 00:00:00 2001 From: IGvaleries Date: Mon, 9 Jun 2025 10:33:05 -0400 Subject: [PATCH 150/154] Update build-pipeline.yml (#336) try new version of node --- azure-pipelines/build-pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines/build-pipeline.yml b/azure-pipelines/build-pipeline.yml index df7778cdb..9eee5605a 100644 --- a/azure-pipelines/build-pipeline.yml +++ b/azure-pipelines/build-pipeline.yml @@ -34,7 +34,7 @@ jobs: - task: NodeTool@0 inputs: versionSource: 'spec' - versionSpec: '24.x' + versionSpec: '20.19.0' - task: Npm@1 displayName: 'npm install' From 999cdb8fc58cce899b7134d47188a1819d63923a Mon Sep 17 00:00:00 2001 From: IGvaleries Date: Wed, 11 Jun 2025 11:21:22 -0400 Subject: [PATCH 151/154] update to angular 20.0.0 packages --- browser/package.json | 22 ++++++++--------- browser/scripts/browser.js | 24 +++++++++---------- browser/src/browser-info.json | 22 ++++++++--------- .../annotations-all/package.json | 8 +++---- .../annotations-callouts/package.json | 8 +++---- .../annotations-crosshairs/package.json | 8 +++---- .../annotations-custom/package.json | 8 +++---- .../annotations-final-value/package.json | 8 +++---- .../annotations-highlighting/package.json | 8 +++---- .../category-chart/annotations/package.json | 4 ++-- .../area-chart-multiple-sources/package.json | 4 ++-- .../area-chart-single-source/package.json | 4 ++-- .../area-chart-styling/package.json | 4 ++-- .../category-chart/axis-gap/package.json | 8 +++---- .../axis-gridlines/package.json | 8 +++---- .../category-chart/axis-inverted/package.json | 8 +++---- .../category-chart/axis-labels/package.json | 8 +++---- .../axis-locations/package.json | 8 +++---- .../category-chart/axis-options/package.json | 4 ++-- .../category-chart/axis-overlap/package.json | 8 +++---- .../category-chart/axis-range/package.json | 8 +++---- .../axis-tickmarks/package.json | 8 +++---- .../category-chart/axis-titles/package.json | 4 ++-- .../chart-highlight-filter/package.json | 8 +++---- .../package.json | 4 ++-- .../column-chart-single-source/package.json | 4 ++-- .../column-chart-styling/package.json | 4 ++-- .../package.json | 4 ++-- .../column-chart-with-tooltips/package.json | 8 +++---- .../custom-selection/package.json | 4 ++-- .../data-aggregations/package.json | 8 +++---- .../category-chart/data-filter/package.json | 8 +++---- .../package.json | 4 ++-- .../category-chart/data-legend/package.json | 4 ++-- .../package.json | 4 ++-- .../data-tooltip-positioning/package.json | 8 +++---- .../category-chart/data-tooltip/package.json | 4 ++-- .../format-specifiers/package.json | 8 +++---- .../high-frequency/package.json | 4 ++-- .../category-chart/high-volume/package.json | 4 ++-- .../highlighting-behavior/package.json | 8 +++---- .../highlighting-mode/package.json | 8 +++---- .../category-chart/highlighting/package.json | 4 ++-- .../legend-highlighting/package.json | 4 ++-- .../line-chart-multiple-sources/package.json | 4 ++-- .../line-chart-single-source/package.json | 4 ++-- .../line-chart-styling/package.json | 4 ++-- .../line-chart-with-animations/package.json | 4 ++-- .../line-chart-with-annotations/package.json | 4 ++-- .../line-chart-with-legend/package.json | 4 ++-- .../marker-options/package.json | 8 +++---- .../marker-templates/package.json | 4 ++-- .../category-chart/overview/package.json | 4 ++-- .../point-chart-multiple-sources/package.json | 4 ++-- .../point-chart-single-source/package.json | 4 ++-- .../point-chart-styling/package.json | 4 ++-- .../selection-matcher/package.json | 4 ++-- .../selection-modes/package.json | 4 ++-- .../selection-multiple-modes/package.json | 8 +++---- .../spline-area-multiple-sources/package.json | 4 ++-- .../spline-area-single-source/package.json | 4 ++-- .../spline-area-styling/package.json | 4 ++-- .../spline-multiple-sources/package.json | 4 ++-- .../spline-single-source/package.json | 4 ++-- .../spline-styling/package.json | 4 ++-- .../category-chart/stack-columns/package.json | 4 ++-- .../step-area-multiple-sources/package.json | 4 ++-- .../step-area-single-source/package.json | 4 ++-- .../step-area-styling/package.json | 4 ++-- .../step-line-multiple-sources/package.json | 4 ++-- .../step-line-single-source/package.json | 4 ++-- .../step-line-styling/package.json | 4 ++-- .../tooltip-template/package.json | 4 ++-- .../category-chart/tooltip-types/package.json | 4 ++-- .../category-chart/trendline/package.json | 4 ++-- .../category-chart/value-lines/package.json | 8 +++---- .../chart-dashboard/package.json | 16 ++++++------- .../financial-dashboard/package.json | 16 ++++++------- .../gauge-dashboard/package.json | 16 ++++++------- .../local-data-source-dashboard/package.json | 16 ++++++------- .../dashboard-tile/map-dashboard/package.json | 16 ++++++------- .../dashboard-tile/pie-dashboard/package.json | 16 ++++++------- .../annotations-custom/package.json | 4 ++-- .../package.json | 4 ++-- .../data-chart/axis-annotations/package.json | 4 ++-- .../data-chart/axis-crossing/package.json | 4 ++-- .../axis-label-rotation/package.json | 8 +++---- .../data-chart/axis-locations/package.json | 4 ++-- .../data-chart/axis-min-max-gap/package.json | 4 ++-- .../data-chart/axis-settings/package.json | 4 ++-- .../data-chart/axis-sharing/package.json | 4 ++-- .../charts/data-chart/axis-types/package.json | 4 ++-- .../bar-chart-multiple-sources/package.json | 4 ++-- .../bar-chart-overlapping/package.json | 4 ++-- .../bar-chart-single-source/package.json | 4 ++-- .../data-chart/bar-chart-styling/package.json | 4 ++-- .../callout-layer-styling/package.json | 4 ++-- .../package.json | 8 +++---- .../package.json | 8 +++---- .../chart-highlight-filter/package.json | 8 +++---- .../data-chart/chart-navigation/package.json | 4 ++-- .../data-chart/chart-overview/package.json | 4 ++-- .../data-chart/chart-performance/package.json | 4 ++-- .../chart-synchronization/package.json | 4 ++-- .../data-chart/chart-titles/package.json | 4 ++-- .../column-chart-styling/package.json | 4 ++-- .../data-chart/composite-chart/package.json | 4 ++-- .../crosshair-layer-styling/package.json | 4 ++-- .../custom-drawing-annotations/package.json | 8 +++---- .../custom-editing-data/package.json | 4 ++-- .../data-chart/dash-array-axes/package.json | 4 ++-- .../data-chart/dash-array-series/package.json | 4 ++-- .../dash-array-tickmarks/package.json | 4 ++-- .../dash-array-trendline/package.json | 4 ++-- .../data-annotation-band-layer/package.json | 4 ++-- .../data-annotation-line-layer/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../data-annotation-rect-layer/package.json | 4 ++-- .../data-annotation-slice-layer/package.json | 4 ++-- .../data-annotation-strip-layer/package.json | 4 ++-- .../package.json | 4 ++-- .../data-legend-grouping/package.json | 4 ++-- .../data-legend-styling/package.json | 4 ++-- .../data-chart/data-legend/package.json | 4 ++-- .../package.json | 8 +++---- .../data-tooltip-grouping/package.json | 8 +++---- .../data-tooltip-styling/package.json | 8 +++---- .../data-chart/data-tooltip/package.json | 4 ++-- .../final-value-layer-styling/package.json | 4 ++-- .../financial-price-series/package.json | 4 ++-- .../data-chart/format-specifiers/package.json | 4 ++-- .../charts/data-chart/legends/package.json | 4 ++-- .../polar-area-chart-styling/package.json | 4 ++-- .../data-chart/polar-area-chart/package.json | 4 ++-- .../data-chart/polar-chart-types/package.json | 4 ++-- .../data-chart/polar-line-chart/package.json | 4 ++-- .../polar-scatter-chart/package.json | 4 ++-- .../polar-spline-area-chart/package.json | 4 ++-- .../polar-spline-chart/package.json | 4 ++-- .../radial-area-chart-styling/package.json | 4 ++-- .../data-chart/radial-area-chart/package.json | 4 ++-- .../radial-chart-types/package.json | 4 ++-- .../package.json | 4 ++-- .../radial-column-chart/package.json | 4 ++-- .../data-chart/radial-label-mode/package.json | 8 +++---- .../data-chart/radial-line-chart/package.json | 4 ++-- .../data-chart/radial-pie-chart/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../data-chart/range-area-chart/package.json | 4 ++-- .../range-column-chart/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../scatter-bubble-chart-styling/package.json | 4 ++-- .../scatter-line-chart/package.json | 4 ++-- .../scatter-point-chart/package.json | 4 ++-- .../scatter-spline-chart/package.json | 4 ++-- .../data-chart/selection-matcher/package.json | 4 ++-- .../data-chart/series-animations/package.json | 4 ++-- .../series-annotations/package.json | 4 ++-- .../series-highlighting/package.json | 4 ++-- .../series-marker-template/package.json | 4 ++-- .../data-chart/series-markers/package.json | 4 ++-- .../data-chart/series-tooltips/package.json | 4 ++-- .../data-chart/series-trendlines/package.json | 4 ++-- .../series-value-overlay/package.json | 4 ++-- .../stacked-100-area-chart/package.json | 4 ++-- .../stacked-100-bar-chart/package.json | 4 ++-- .../stacked-100-column-chart/package.json | 4 ++-- .../stacked-100-line-chart/package.json | 4 ++-- .../package.json | 4 ++-- .../stacked-100-spline-chart/package.json | 4 ++-- .../stacked-area-chart/package.json | 4 ++-- .../data-chart/stacked-bar-chart/package.json | 4 ++-- .../stacked-chart-types/package.json | 4 ++-- .../stacked-column-chart/package.json | 4 ++-- .../stacked-line-chart/package.json | 4 ++-- .../stacked-spline-area-chart/package.json | 4 ++-- .../stacked-spline-chart/package.json | 4 ++-- .../data-chart/tooltip-template/package.json | 4 ++-- .../data-chart/transition-event/package.json | 8 +++---- .../type-category-area-series/package.json | 4 ++-- .../type-category-bar-series/package.json | 4 ++-- .../type-category-column-series/package.json | 4 ++-- .../type-category-line-series/package.json | 4 ++-- .../type-category-point-series/package.json | 4 ++-- .../type-category-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-category-spline-series/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../type-financial-ohlc-series/package.json | 4 ++-- .../type-financial-overlays/package.json | 4 ++-- .../type-financial-series/package.json | 4 ++-- .../type-radial-area-series/package.json | 4 ++-- .../type-radial-column-series/package.json | 4 ++-- .../type-radial-line-series/package.json | 4 ++-- .../type-radial-pie-series/package.json | 4 ++-- .../type-range-area-series/package.json | 4 ++-- .../type-range-column-series/package.json | 4 ++-- .../data-chart/type-range-series/package.json | 4 ++-- .../type-scatter-area-series/package.json | 4 ++-- .../type-scatter-bubble-series/package.json | 4 ++-- .../type-scatter-contour-series/package.json | 4 ++-- .../type-scatter-hd-series/package.json | 4 ++-- .../type-scatter-line-series/package.json | 4 ++-- .../type-scatter-point-series/package.json | 4 ++-- .../type-scatter-polygon-series/package.json | 4 ++-- .../type-scatter-polyline-series/package.json | 4 ++-- .../type-scatter-series/package.json | 4 ++-- .../type-scatter-spline-series/package.json | 4 ++-- .../data-chart/type-shape-series/package.json | 4 ++-- .../type-stacked-100-area-series/package.json | 4 ++-- .../type-stacked-100-bar-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-100-line-series/package.json | 4 ++-- .../package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-area-series/package.json | 4 ++-- .../type-stacked-bar-series/package.json | 4 ++-- .../type-stacked-column-series/package.json | 4 ++-- .../type-stacked-line-series/package.json | 4 ++-- .../package.json | 4 ++-- .../type-stacked-spline-series/package.json | 4 ++-- .../data-chart/waterfall-chart/package.json | 4 ++-- .../animation-replay/package.json | 8 +++---- .../data-pie-chart/animation/package.json | 8 +++---- .../highlight-filter/package.json | 4 ++-- .../data-pie-chart/highlighting/package.json | 8 +++---- .../charts/data-pie-chart/legend/package.json | 8 +++---- .../charts/data-pie-chart/others/package.json | 8 +++---- .../data-pie-chart/overview/package.json | 4 ++-- .../data-pie-chart/selection/package.json | 8 +++---- .../doughnut-chart/animation/package.json | 4 ++-- .../doughnut-chart/explosion/package.json | 4 ++-- .../charts/doughnut-chart/legend/package.json | 4 ++-- .../doughnut-chart/overview/package.json | 4 ++-- .../charts/doughnut-chart/rings/package.json | 4 ++-- .../doughnut-chart/selection/package.json | 4 ++-- .../financial-chart/annotations/package.json | 4 ++-- .../financial-chart/axis-types/package.json | 4 ++-- .../package.json | 4 ++-- .../data-legend-styling-props/package.json | 4 ++-- .../financial-chart/data-legend/package.json | 4 ++-- .../package.json | 4 ++-- .../data-tooltip-styling-props/package.json | 4 ++-- .../financial-chart/data-tooltip/package.json | 4 ++-- .../format-specifiers/package.json | 4 ++-- .../high-frequency/package.json | 4 ++-- .../financial-chart/high-volume/package.json | 4 ++-- .../indicator-customization/package.json | 4 ++-- .../indicator-types/package.json | 4 ++-- .../multiple-data/package.json | 4 ++-- .../multiple-feeds/package.json | 4 ++-- .../financial-chart/overview/package.json | 4 ++-- .../charts/financial-chart/panes/package.json | 4 ++-- .../financial-chart/performance/package.json | 4 ++-- .../financial-chart/scrollbars/package.json | 4 ++-- .../stock-index-chart/package.json | 4 ++-- .../financial-chart/styling/package.json | 4 ++-- .../financial-chart/theming/package.json | 4 ++-- .../time-based-data/package.json | 4 ++-- .../financial-chart/titles/package.json | 4 ++-- .../tooltip-template/package.json | 4 ++-- .../tooltip-types/package.json | 4 ++-- .../financial-chart/trendlines/package.json | 4 ++-- .../financial-chart/volume-types/package.json | 4 ++-- .../charts/pie-chart/animation/package.json | 4 ++-- .../charts/pie-chart/explosion/package.json | 4 ++-- samples/charts/pie-chart/legend/package.json | 4 ++-- samples/charts/pie-chart/others/package.json | 4 ++-- .../charts/pie-chart/overview/package.json | 4 ++-- .../charts/pie-chart/selection/package.json | 4 ++-- samples/charts/pie-chart/styling/package.json | 4 ++-- .../sparkline/display-area/package.json | 4 ++-- .../sparkline/display-column/package.json | 4 ++-- .../sparkline/display-lines/package.json | 8 +++---- .../sparkline/display-types/package.json | 4 ++-- .../sparkline/display-winloss/package.json | 4 ++-- samples/charts/sparkline/grid/package.json | 4 ++-- samples/charts/sparkline/markers/package.json | 8 +++---- .../sparkline/normal-range/package.json | 8 +++---- .../charts/sparkline/trendlines/package.json | 8 +++---- .../sparkline/unknown-values/package.json | 8 +++---- .../package.json | 10 ++++---- .../actions-built-in-data-chart/package.json | 8 +++---- .../toolbar/color-editor-support/package.json | 8 +++---- .../charts/toolbar/custom-tool/package.json | 8 +++---- .../package.json | 8 +++---- .../package.json | 8 +++---- samples/charts/toolbar/theming/package.json | 8 +++---- samples/charts/tree-map/events/package.json | 4 ++-- .../highlighting-percent-based/package.json | 4 ++-- .../charts/tree-map/highlighting/package.json | 8 +++---- samples/charts/tree-map/layout/package.json | 8 +++---- samples/charts/tree-map/overview/package.json | 4 ++-- samples/charts/tree-map/styling/package.json | 4 ++-- .../charts/zoomslider/overview/package.json | 4 ++-- .../operations-on-workbooks/package.json | 4 ++-- .../operations-on-worksheets/package.json | 4 ++-- .../excel/excel-library/overview/package.json | 4 ++-- .../working-with-cells/package.json | 4 ++-- .../working-with-charts/package.json | 6 ++--- .../working-with-sparklines/package.json | 6 ++--- .../working-with-tables/package.json | 8 +++---- .../excel/spreadsheet/activation/package.json | 6 ++--- .../spreadsheet/adapter-chart/package.json | 10 ++++---- .../spreadsheet/adapter-combo/package.json | 10 ++++---- .../excel/spreadsheet/clipboard/package.json | 6 ++--- .../excel/spreadsheet/commands/package.json | 6 ++--- .../conditional-formatting/package.json | 6 ++--- .../spreadsheet/config-options/package.json | 6 ++--- .../spreadsheet/data-validation/package.json | 6 ++--- .../excel/spreadsheet/hyperlinks/package.json | 6 ++--- .../excel/spreadsheet/overview/package.json | 6 ++--- .../bullet-graph/animation/package.json | 4 ++-- .../bullet-graph/background/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/bullet-graph/labels/package.json | 4 ++-- .../gauges/bullet-graph/measures/package.json | 4 ++-- .../gauges/bullet-graph/ranges/package.json | 4 ++-- .../gauges/bullet-graph/scale/package.json | 4 ++-- .../bullet-graph/tickmarks/package.json | 4 ++-- .../linear-gauge/animation/package.json | 4 ++-- .../gauges/linear-gauge/backing/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/linear-gauge/labels/package.json | 4 ++-- .../gauges/linear-gauge/needle/package.json | 4 ++-- .../gauges/linear-gauge/ranges/package.json | 4 ++-- .../gauges/linear-gauge/scale/package.json | 4 ++-- .../linear-gauge/tickmarks/package.json | 4 ++-- .../radial-gauge/animation/package.json | 4 ++-- .../gauges/radial-gauge/backing/package.json | 4 ++-- .../highlight-needle/package.json | 4 ++-- .../gauges/radial-gauge/labels/package.json | 4 ++-- .../gauges/radial-gauge/needle/package.json | 4 ++-- .../radial-gauge/optical-scaling/package.json | 4 ++-- .../gauges/radial-gauge/ranges/package.json | 4 ++-- .../gauges/radial-gauge/scale/package.json | 4 ++-- .../radial-gauge/tickmarks/package.json | 4 ++-- .../inputs/color-editor/overview/package.json | 4 ++-- .../geo-map/binding-data-csv/package.json | 6 ++--- .../binding-data-json-points/package.json | 6 ++--- .../geo-map/binding-data-model/package.json | 6 ++--- .../binding-multiple-shapes/package.json | 6 ++--- .../binding-multiple-sources/package.json | 6 ++--- .../geo-map/binding-shp-points/package.json | 6 ++--- .../geo-map/binding-shp-polygons/package.json | 6 ++--- .../binding-shp-polylines/package.json | 6 ++--- .../maps/geo-map/custom-tooltips/package.json | 6 ++--- .../geo-map/display-bing-imagery/package.json | 6 ++--- .../geo-map/display-esri-imagery/package.json | 6 ++--- .../geo-map/display-heat-imagery/package.json | 6 ++--- .../geo-map/display-osm-imagery/package.json | 6 ++--- .../maps/geo-map/marker-layouts/package.json | 6 ++--- .../maps/geo-map/marker-template/package.json | 6 ++--- samples/maps/geo-map/marker-type/package.json | 6 ++--- samples/maps/geo-map/navigation/package.json | 6 ++--- samples/maps/geo-map/overview/package.json | 6 ++--- .../maps/geo-map/shape-styling/package.json | 6 ++--- .../geo-map/triangulating-data/package.json | 6 ++--- .../type-scatter-area-series/package.json | 6 ++--- .../type-scatter-bubble-series/package.json | 6 ++--- .../type-scatter-contour-series/package.json | 6 ++--- .../type-scatter-density-series/package.json | 6 ++--- .../type-scatter-symbol-series/package.json | 6 ++--- .../type-shape-polygon-series/package.json | 6 ++--- .../type-shape-polyline-series/package.json | 6 ++--- 375 files changed, 970 insertions(+), 970 deletions(-) diff --git a/browser/package.json b/browser/package.json index 146981a09..725e9ff94 100644 --- a/browser/package.json +++ b/browser/package.json @@ -42,17 +42,17 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "20.0.0-rc.0", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-dashboards": "20.0.0-beta.0", - "igniteui-angular-data-grids": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", - "igniteui-angular-spreadsheet": "20.0.0-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-dashboards": "20.0.0", + "igniteui-angular-data-grids": "20.0.0", + "igniteui-angular-excel": "20.0.0", + "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-maps": "20.0.0", + "igniteui-angular-spreadsheet": "20.0.0", + "igniteui-angular-spreadsheet-chart-adapter": "20.0.0", "igniteui-theming": "18.1.0", "igniteui-webcomponents": "6.0.0", "immediate": "3.2.3", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 2b23dc09f..0359d01a2 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1073,18 +1073,18 @@ function updateIG(cb) { // { version: "14.1.0", name: "igniteui-angular-charts" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { version: "20.0.0-beta.0", name: "igniteui-angular-core" }, - { version: "20.0.0-beta.0", name: "igniteui-angular-charts" }, - { version: "20.0.0-beta.0", name: "igniteui-angular-excel" }, - { version: "20.0.0-beta.0", name: "igniteui-angular-gauges" }, - { version: "20.0.0-beta.0", name: "igniteui-angular-data-grids" }, - { version: "20.0.0-beta.0", name: "igniteui-angular-inputs" }, - { version: "20.0.0-beta.0", name: "igniteui-angular-layouts" }, - { version: "20.0.0-beta.0", name: "igniteui-angular-maps" }, - { version: "20.0.0-beta.0", name: "igniteui-angular-spreadsheet-chart-adapter" }, - { version: "20.0.0-beta.0", name: "igniteui-angular-spreadsheet" }, - { version: "20.0.0-beta.0", name: "igniteui-angular-datasources" }, - { version: "20.0.0-beta.0", name: "igniteui-angular-dashboards" }, + { version: "20.0.0", name: "igniteui-angular-core" }, + { version: "20.0.0", name: "igniteui-angular-charts" }, + { version: "20.0.0", name: "igniteui-angular-excel" }, + { version: "20.0.0", name: "igniteui-angular-gauges" }, + { version: "20.0.0", name: "igniteui-angular-data-grids" }, + { version: "20.0.0", name: "igniteui-angular-inputs" }, + { version: "20.0.0", name: "igniteui-angular-layouts" }, + { version: "20.0.0", name: "igniteui-angular-maps" }, + { version: "20.0.0", name: "igniteui-angular-spreadsheet-chart-adapter" }, + { version: "20.0.0", name: "igniteui-angular-spreadsheet" }, + { version: "20.0.0", name: "igniteui-angular-datasources" }, + { version: "20.0.0", name: "igniteui-angular-dashboards" }, // these IG packages are sometimes updated: { version: "6.0.0" , name: "igniteui-webcomponents" }, { version: "18.1.0", name: "igniteui-theming" }, diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index 6a85b6b18..510236ca6 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,16 +1,16 @@ [ {"ver":"20.0.0-rc.0","name":"igniteui-angular"}, -{"ver":"20.0.0-beta.0","name":"igniteui-angular-charts"}, -{"ver":"20.0.0-beta.0","name":"igniteui-angular-core"}, -{"ver":"20.0.0-beta.0","name":"igniteui-angular-dashboards"}, -{"ver":"20.0.0-beta.0","name":"igniteui-angular-data-grids"}, -{"ver":"20.0.0-beta.0","name":"igniteui-angular-excel"}, -{"ver":"20.0.0-beta.0","name":"igniteui-angular-gauges"}, -{"ver":"20.0.0-beta.0","name":"igniteui-angular-inputs"}, -{"ver":"20.0.0-beta.0","name":"igniteui-angular-layouts"}, -{"ver":"20.0.0-beta.0","name":"igniteui-angular-maps"}, -{"ver":"20.0.0-beta.0","name":"igniteui-angular-spreadsheet"}, -{"ver":"20.0.0-beta.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"20.0.0","name":"igniteui-angular-charts"}, +{"ver":"20.0.0","name":"igniteui-angular-core"}, +{"ver":"20.0.0","name":"igniteui-angular-dashboards"}, +{"ver":"20.0.0","name":"igniteui-angular-data-grids"}, +{"ver":"20.0.0","name":"igniteui-angular-excel"}, +{"ver":"20.0.0","name":"igniteui-angular-gauges"}, +{"ver":"20.0.0","name":"igniteui-angular-inputs"}, +{"ver":"20.0.0","name":"igniteui-angular-layouts"}, +{"ver":"20.0.0","name":"igniteui-angular-maps"}, +{"ver":"20.0.0","name":"igniteui-angular-spreadsheet"}, +{"ver":"20.0.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, {"ver":"18.1.0","name":"igniteui-theming"}, {"ver":"6.0.0","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 97e82ca0b..f3a0de902 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 78032fa47..86280a7b4 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "20.0.0-rc.0", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 78032fa47..86280a7b4 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "20.0.0-rc.0", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/line-chart-with-legend/package.json b/samples/charts/category-chart/line-chart-with-legend/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/category-chart/line-chart-with-legend/package.json +++ b/samples/charts/category-chart/line-chart-with-legend/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-matcher/package.json b/samples/charts/category-chart/selection-matcher/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/selection-matcher/package.json +++ b/samples/charts/category-chart/selection-matcher/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index 2c520a166..81e1a232c 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-dashboards": "20.0.0-beta.0", - "igniteui-angular-data-grids": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-dashboards": "20.0.0", + "igniteui-angular-data-grids": "20.0.0", + "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index c6e50c2c7..b0ce51490 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-dashboards": "20.0.0-beta.0", - "igniteui-angular-data-grids": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-dashboards": "20.0.0", + "igniteui-angular-data-grids": "20.0.0", + "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index c6e50c2c7..b0ce51490 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-dashboards": "20.0.0-beta.0", - "igniteui-angular-data-grids": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-dashboards": "20.0.0", + "igniteui-angular-data-grids": "20.0.0", + "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json index c6e50c2c7..b0ce51490 100644 --- a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-dashboards": "20.0.0-beta.0", - "igniteui-angular-data-grids": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-dashboards": "20.0.0", + "igniteui-angular-data-grids": "20.0.0", + "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index c6e50c2c7..b0ce51490 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-dashboards": "20.0.0-beta.0", - "igniteui-angular-data-grids": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-dashboards": "20.0.0", + "igniteui-angular-data-grids": "20.0.0", + "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index c6e50c2c7..b0ce51490 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -17,14 +17,14 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-dashboards": "20.0.0-beta.0", - "igniteui-angular-data-grids": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-dashboards": "20.0.0", + "igniteui-angular-data-grids": "20.0.0", + "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/column-chart-styling/package.json b/samples/charts/data-chart/column-chart-styling/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/column-chart-styling/package.json +++ b/samples/charts/data-chart/column-chart-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index cc73f425b..93d3b0f52 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-band-layer/package.json b/samples/charts/data-chart/data-annotation-band-layer/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/data-annotation-band-layer/package.json +++ b/samples/charts/data-chart/data-annotation-band-layer/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-line-layer/package.json b/samples/charts/data-chart/data-annotation-line-layer/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/data-annotation-line-layer/package.json +++ b/samples/charts/data-chart/data-annotation-line-layer/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-rect-layer/package.json b/samples/charts/data-chart/data-annotation-rect-layer/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/data-annotation-rect-layer/package.json +++ b/samples/charts/data-chart/data-annotation-rect-layer/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-slice-layer/package.json b/samples/charts/data-chart/data-annotation-slice-layer/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/data-annotation-slice-layer/package.json +++ b/samples/charts/data-chart/data-annotation-slice-layer/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-annotation-strip-layer/package.json b/samples/charts/data-chart/data-annotation-strip-layer/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/data-annotation-strip-layer/package.json +++ b/samples/charts/data-chart/data-annotation-strip-layer/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index 97e82ca0b..f3a0de902 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index 97e82ca0b..f3a0de902 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index 97e82ca0b..f3a0de902 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/selection-matcher/package.json b/samples/charts/data-chart/selection-matcher/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/selection-matcher/package.json +++ b/samples/charts/data-chart/selection-matcher/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/type-category-area-series/package.json b/samples/charts/data-chart/type-category-area-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-category-area-series/package.json +++ b/samples/charts/data-chart/type-category-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-bar-series/package.json b/samples/charts/data-chart/type-category-bar-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-category-bar-series/package.json +++ b/samples/charts/data-chart/type-category-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-column-series/package.json b/samples/charts/data-chart/type-category-column-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-category-column-series/package.json +++ b/samples/charts/data-chart/type-category-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-line-series/package.json b/samples/charts/data-chart/type-category-line-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-category-line-series/package.json +++ b/samples/charts/data-chart/type-category-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-point-series/package.json b/samples/charts/data-chart/type-category-point-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-category-point-series/package.json +++ b/samples/charts/data-chart/type-category-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-series/package.json b/samples/charts/data-chart/type-category-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-category-series/package.json +++ b/samples/charts/data-chart/type-category-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-spline-area-series/package.json b/samples/charts/data-chart/type-category-spline-area-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/package.json +++ b/samples/charts/data-chart/type-category-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-spline-series/package.json b/samples/charts/data-chart/type-category-spline-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-category-spline-series/package.json +++ b/samples/charts/data-chart/type-category-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-step-area-series/package.json b/samples/charts/data-chart/type-category-step-area-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-category-step-area-series/package.json +++ b/samples/charts/data-chart/type-category-step-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-step-line-series/package.json b/samples/charts/data-chart/type-category-step-line-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-category-step-line-series/package.json +++ b/samples/charts/data-chart/type-category-step-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-category-waterfall-series/package.json b/samples/charts/data-chart/type-category-waterfall-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/package.json +++ b/samples/charts/data-chart/type-category-waterfall-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-area-indicators/package.json b/samples/charts/data-chart/type-financial-area-indicators/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/package.json +++ b/samples/charts/data-chart/type-financial-area-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-column-indicators/package.json b/samples/charts/data-chart/type-financial-column-indicators/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/package.json +++ b/samples/charts/data-chart/type-financial-column-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-line-indicators/package.json b/samples/charts/data-chart/type-financial-line-indicators/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/package.json +++ b/samples/charts/data-chart/type-financial-line-indicators/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-area-series/package.json b/samples/charts/data-chart/type-radial-area-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-radial-area-series/package.json +++ b/samples/charts/data-chart/type-radial-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-column-series/package.json b/samples/charts/data-chart/type-radial-column-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-radial-column-series/package.json +++ b/samples/charts/data-chart/type-radial-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-line-series/package.json b/samples/charts/data-chart/type-radial-line-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-radial-line-series/package.json +++ b/samples/charts/data-chart/type-radial-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-radial-pie-series/package.json b/samples/charts/data-chart/type-radial-pie-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-radial-pie-series/package.json +++ b/samples/charts/data-chart/type-radial-pie-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-line-series/package.json b/samples/charts/data-chart/type-scatter-line-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-scatter-line-series/package.json +++ b/samples/charts/data-chart/type-scatter-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-point-series/package.json b/samples/charts/data-chart/type-scatter-point-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-scatter-point-series/package.json +++ b/samples/charts/data-chart/type-scatter-point-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-scatter-spline-series/package.json b/samples/charts/data-chart/type-scatter-spline-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/package.json +++ b/samples/charts/data-chart/type-scatter-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-area-series/package.json b/samples/charts/data-chart/type-stacked-100-area-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-bar-series/package.json b/samples/charts/data-chart/type-stacked-100-bar-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-column-series/package.json b/samples/charts/data-chart/type-stacked-100-column-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-line-series/package.json b/samples/charts/data-chart/type-stacked-100-line-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-100-spline-series/package.json b/samples/charts/data-chart/type-stacked-100-spline-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-100-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-area-series/package.json b/samples/charts/data-chart/type-stacked-area-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-stacked-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-bar-series/package.json b/samples/charts/data-chart/type-stacked-bar-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/package.json +++ b/samples/charts/data-chart/type-stacked-bar-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-column-series/package.json b/samples/charts/data-chart/type-stacked-column-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-stacked-column-series/package.json +++ b/samples/charts/data-chart/type-stacked-column-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-line-series/package.json b/samples/charts/data-chart/type-stacked-line-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-stacked-line-series/package.json +++ b/samples/charts/data-chart/type-stacked-line-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-spline-area-series/package.json b/samples/charts/data-chart/type-stacked-spline-area-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-area-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/type-stacked-spline-series/package.json b/samples/charts/data-chart/type-stacked-spline-series/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/package.json +++ b/samples/charts/data-chart/type-stacked-spline-series/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/animation-replay/package.json b/samples/charts/data-pie-chart/animation-replay/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/data-pie-chart/animation-replay/package.json +++ b/samples/charts/data-pie-chart/animation-replay/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index 97e82ca0b..f3a0de902 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/multiple-feeds/package.json b/samples/charts/financial-chart/multiple-feeds/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/multiple-feeds/package.json +++ b/samples/charts/financial-chart/multiple-feeds/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/theming/package.json b/samples/charts/financial-chart/theming/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/theming/package.json +++ b/samples/charts/financial-chart/theming/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/time-based-data/package.json b/samples/charts/financial-chart/time-based-data/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/time-based-data/package.json +++ b/samples/charts/financial-chart/time-based-data/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/tooltip-template/package.json b/samples/charts/financial-chart/tooltip-template/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/tooltip-template/package.json +++ b/samples/charts/financial-chart/tooltip-template/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 97e82ca0b..f3a0de902 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 31c15febc..3d14fdf65 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "20.0.0-rc.0", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "igniteui-theming": "18.1.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index f6c614e02..8e51329be 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -17,11 +17,11 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-data-grids": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-data-grids": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 97e82ca0b..f3a0de902 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json index 97e82ca0b..f3a0de902 100644 --- a/samples/charts/toolbar/color-editor-support/package.json +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 97e82ca0b..f3a0de902 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 97e82ca0b..f3a0de902 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 97e82ca0b..f3a0de902 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 78032fa47..86280a7b4 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "20.0.0-rc.0", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index e8dace740..9cc8092c7 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -17,10 +17,10 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", - "igniteui-angular-layouts": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-layouts": "20.0.0", "igniteui-webcomponents": "6.0.0", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 4831fbbc3..c5ced7a51 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 0f9fc2324..42ca83b92 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index d5d004b88..7f1518762 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -21,8 +21,8 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "20.0.0-rc.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-excel": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index ab1bbee94..0f7ae5962 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-excel": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index ab1bbee94..0f7ae5962 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-excel": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index ab1bbee94..0f7ae5962 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -20,8 +20,8 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-excel": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index df082156a..5e4603c7f 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "20.0.0-rc.0", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-excel": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index df082156a..5e4603c7f 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -21,9 +21,9 @@ "file-saver": "2.0.5", "hammerjs": "2.0.8", "igniteui-angular": "20.0.0-rc.0", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-excel": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/excel-library/working-with-tables/package.json b/samples/excel/excel-library/working-with-tables/package.json index f8eb63e74..7f630dd67 100644 --- a/samples/excel/excel-library/working-with-tables/package.json +++ b/samples/excel/excel-library/working-with-tables/package.json @@ -20,10 +20,10 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", - "igniteui-angular-spreadsheet": "20.0.0-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-excel": "20.0.0", + "igniteui-angular-spreadsheet": "20.0.0", + "igniteui-angular-spreadsheet-chart-adapter": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 51fc0ca50..cc3404078 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", - "igniteui-angular-spreadsheet": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-excel": "20.0.0", + "igniteui-angular-spreadsheet": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index fd173d4fc..dd1763b61 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", - "igniteui-angular-spreadsheet": "20.0.0-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-excel": "20.0.0", + "igniteui-angular-spreadsheet": "20.0.0", + "igniteui-angular-spreadsheet-chart-adapter": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index fd173d4fc..dd1763b61 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -20,11 +20,11 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", - "igniteui-angular-spreadsheet": "20.0.0-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-excel": "20.0.0", + "igniteui-angular-spreadsheet": "20.0.0", + "igniteui-angular-spreadsheet-chart-adapter": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index 51fc0ca50..cc3404078 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", - "igniteui-angular-spreadsheet": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-excel": "20.0.0", + "igniteui-angular-spreadsheet": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 51fc0ca50..cc3404078 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", - "igniteui-angular-spreadsheet": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-excel": "20.0.0", + "igniteui-angular-spreadsheet": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index 51fc0ca50..cc3404078 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", - "igniteui-angular-spreadsheet": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-excel": "20.0.0", + "igniteui-angular-spreadsheet": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 51fc0ca50..cc3404078 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", - "igniteui-angular-spreadsheet": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-excel": "20.0.0", + "igniteui-angular-spreadsheet": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 51fc0ca50..cc3404078 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", - "igniteui-angular-spreadsheet": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-excel": "20.0.0", + "igniteui-angular-spreadsheet": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 51fc0ca50..cc3404078 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", - "igniteui-angular-spreadsheet": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-excel": "20.0.0", + "igniteui-angular-spreadsheet": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index 51fc0ca50..cc3404078 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -20,9 +20,9 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-excel": "20.0.0-beta.0", - "igniteui-angular-spreadsheet": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-excel": "20.0.0", + "igniteui-angular-spreadsheet": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index c02fbb457..95ed0609f 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "20.0.0-rc.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index c02fbb457..95ed0609f 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "20.0.0-rc.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index c02fbb457..95ed0609f 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -19,8 +19,8 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "20.0.0-rc.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 016291e51..73a5939a4 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -18,8 +18,8 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-gauges": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-gauges": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json index 5c49ea499..3301e85ef 100644 --- a/samples/inputs/color-editor/overview/package.json +++ b/samples/inputs/color-editor/overview/package.json @@ -17,8 +17,8 @@ "@types/hammerjs": "2.0.40", "classlist.js": "1.1.20150312", "hammerjs": "2.0.8", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-inputs": "20.0.0-beta.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-inputs": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 03889deff..ec8e67254 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -18,9 +18,9 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular-charts": "20.0.0-beta.0", - "igniteui-angular-core": "20.0.0-beta.0", - "igniteui-angular-maps": "20.0.0-beta.0", + "igniteui-angular-charts": "20.0.0", + "igniteui-angular-core": "20.0.0", + "igniteui-angular-maps": "20.0.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", From b1272884526fdf96b78aab907004e83796708092 Mon Sep 17 00:00:00 2001 From: mtrela Date: Tue, 17 Jun 2025 11:42:45 -0400 Subject: [PATCH 152/154] combine multiple data sources in code-viewer --- browser/scripts/browser.js | 46 +++++++++++++++++++++++++++++++------- 1 file changed, 38 insertions(+), 8 deletions(-) diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 0359d01a2..66e4fea24 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -83,6 +83,8 @@ var sampleSourcePaths = [ // sampleRoot + 'maps/**/display-heat-imagery/package.json', // sampleRoot + 'excel/**/operations-on-workbooks/package.json', // sampleRoot + 'charts/zoomslider/overview/package.json', + // sampleRoot + 'charts/data-chart/data-annotation-multiple-with-stocks/package.json', + // sampleRoot + 'charts/data-chart/axis-annotations/package.json', // include samples for specific components // sampleRoot + 'charts/category-chart/**/package.json', @@ -761,6 +763,7 @@ function updateCodeViewer(cb) { // generating code viewer files (.json) for each sample for (const info of samplesDatabase) { var sampleFiles = []; + var dataFiles = []; // console.log(info); // https://staging.infragistics.com/angular-demos-dv/assets/code-viewer/ @@ -776,31 +779,58 @@ function updateCodeViewer(cb) { isMain: true, }; + codeViewItem.path = filePath; + if (filePath.indexOf(".scss") > 0) { codeViewItem.fileExtension = 'scss'; codeViewItem.fileHeader = 'scss'; + codeViewItem.content = utils.fileRead(filePath); + sampleFiles.push(codeViewItem); } else if (filePath.indexOf(".module.ts") > 0) { codeViewItem.fileExtension = 'ts'; codeViewItem.fileHeader = 'modules'; + codeViewItem.content = utils.fileRead(filePath); + sampleFiles.push(codeViewItem); } else if (filePath.indexOf(".component.ts") > 0) { codeViewItem.fileExtension = 'ts'; codeViewItem.fileHeader = 'ts'; - } - else if (filePath.indexOf(".ts") > 0) { - codeViewItem.fileExtension = 'ts'; - codeViewItem.fileHeader = "DATA"; + codeViewItem.content = utils.fileRead(filePath); + sampleFiles.push(codeViewItem); } else if (filePath.indexOf(".html") > 0) { codeViewItem.fileExtension = 'html'; codeViewItem.fileHeader = 'html'; + codeViewItem.content = utils.fileRead(filePath); + sampleFiles.push(codeViewItem); } + else if (filePath.indexOf(".ts") > 0) { + codeViewItem.fileExtension = 'ts'; + codeViewItem.fileHeader = "DATA"; + codeViewItem.content = utils.fileRead(filePath); + dataFiles.push(codeViewItem); + } + } - codeViewItem.path = filePath; - codeViewItem.content = utils.fileRead(filePath); - - sampleFiles.push(codeViewItem); + if (dataFiles.length === 1) { + sampleFiles.push(dataFiles[0]); + } else if (dataFiles.length > 1) { + var filePath = dataFiles[0].path; + var fileFolder = filePath.substring(0, filePath.lastIndexOf("/")); + + var codeViewData = {}; + codeViewData.isMain = true, + codeViewData.hasRelativeAssetsUrls = false, + codeViewData.fileExtension = 'ts'; + codeViewData.fileHeader = "DATA"; + codeViewData.path = fileFolder + "/" + "DataSources.ts"; + + codeViewData.content = "// NOTE this file contains multiple data sources:\r\n\r\n"; + for (const data of dataFiles) { + codeViewData.content += data.content + "\r\n"; + } + sampleFiles.push(codeViewData); } var packageInfo = {}; From bcb656c290e92a8052bcf4d9c90b94f8f6803eaa Mon Sep 17 00:00:00 2001 From: mtrela Date: Tue, 17 Jun 2025 13:49:51 -0400 Subject: [PATCH 153/154] fix code-viewer --- browser/scripts/browser.js | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 66e4fea24..ab8f36080 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -816,20 +816,23 @@ function updateCodeViewer(cb) { if (dataFiles.length === 1) { sampleFiles.push(dataFiles[0]); } else if (dataFiles.length > 1) { - var filePath = dataFiles[0].path; - var fileFolder = filePath.substring(0, filePath.lastIndexOf("/")); + var dataPath = dataFiles[0].path; + var dataFolder = dataPath.substring(0, dataPath.lastIndexOf("/")); + + var dataContent = "// NOTE this file contains multiple data sources:\r\n"; + for (let i = 0; i < dataFiles.length; i++) { + const data = dataFiles[i]; + dataContent += "\r\n\r\n" + "// Data Source #" + (i+1) + "\r\n"; + dataContent += data.content + "\r\n"; + } var codeViewData = {}; codeViewData.isMain = true, codeViewData.hasRelativeAssetsUrls = false, codeViewData.fileExtension = 'ts'; codeViewData.fileHeader = "DATA"; - codeViewData.path = fileFolder + "/" + "DataSources.ts"; - - codeViewData.content = "// NOTE this file contains multiple data sources:\r\n\r\n"; - for (const data of dataFiles) { - codeViewData.content += data.content + "\r\n"; - } + codeViewData.path = dataFolder + "/" + "DataSources.ts"; + codeViewData.content = dataContent sampleFiles.push(codeViewData); } From 23d1a93b32671d752ece76305ecc945c835ea1e4 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Tue, 17 Jun 2025 15:25:07 -0400 Subject: [PATCH 154/154] Adding changes from build igniteui-xplat-examples-output+PRs_2025.6.17.1 (#338) Co-authored-by: tfsbuild --- .../annotations-all/angular.json | 32 +++++++++++++++---- .../annotations-all/tsconfig.json | 8 ++--- .../annotations-callouts/angular.json | 32 +++++++++++++++---- .../annotations-callouts/tsconfig.json | 8 ++--- .../annotations-crosshairs/angular.json | 32 +++++++++++++++---- .../annotations-crosshairs/tsconfig.json | 8 ++--- .../annotations-custom/angular.json | 32 +++++++++++++++---- .../annotations-custom/tsconfig.json | 8 ++--- .../annotations-final-value/angular.json | 32 +++++++++++++++---- .../annotations-final-value/tsconfig.json | 8 ++--- .../annotations-highlighting/angular.json | 32 +++++++++++++++---- .../annotations-highlighting/tsconfig.json | 8 ++--- .../area-chart-multiple-sources/angular.json | 32 +++++++++++++++---- .../area-chart-multiple-sources/tsconfig.json | 8 ++--- .../area-chart-single-source/angular.json | 32 +++++++++++++++---- .../area-chart-single-source/tsconfig.json | 8 ++--- .../area-chart-styling/angular.json | 32 +++++++++++++++---- .../area-chart-styling/tsconfig.json | 8 ++--- .../category-chart/axis-gap/angular.json | 32 +++++++++++++++---- .../category-chart/axis-gap/tsconfig.json | 8 ++--- .../axis-gridlines/angular.json | 32 +++++++++++++++---- .../axis-gridlines/tsconfig.json | 8 ++--- .../category-chart/axis-inverted/angular.json | 32 +++++++++++++++---- .../axis-inverted/tsconfig.json | 8 ++--- .../category-chart/axis-labels/angular.json | 32 +++++++++++++++---- .../category-chart/axis-labels/tsconfig.json | 8 ++--- .../axis-locations/angular.json | 32 +++++++++++++++---- .../axis-locations/tsconfig.json | 8 ++--- .../category-chart/axis-options/angular.json | 32 +++++++++++++++---- .../category-chart/axis-options/tsconfig.json | 8 ++--- .../category-chart/axis-overlap/angular.json | 32 +++++++++++++++---- .../category-chart/axis-overlap/tsconfig.json | 8 ++--- .../category-chart/axis-range/angular.json | 32 +++++++++++++++---- .../category-chart/axis-range/tsconfig.json | 8 ++--- .../axis-tickmarks/angular.json | 32 +++++++++++++++---- .../axis-tickmarks/tsconfig.json | 8 ++--- .../category-chart/axis-titles/angular.json | 32 +++++++++++++++---- .../category-chart/axis-titles/tsconfig.json | 8 ++--- .../chart-highlight-filter/angular.json | 32 +++++++++++++++---- .../chart-highlight-filter/tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../column-chart-single-source/angular.json | 32 +++++++++++++++---- .../column-chart-single-source/tsconfig.json | 8 ++--- .../column-chart-styling/angular.json | 32 +++++++++++++++---- .../column-chart-styling/tsconfig.json | 8 ++--- .../column-chart-with-tooltips/angular.json | 32 +++++++++++++++---- .../column-chart-with-tooltips/tsconfig.json | 8 ++--- .../custom-selection/angular.json | 32 +++++++++++++++---- .../custom-selection/tsconfig.json | 8 ++--- .../data-aggregations/angular.json | 32 +++++++++++++++---- .../data-aggregations/tsconfig.json | 8 ++--- .../category-chart/data-filter/angular.json | 32 +++++++++++++++---- .../category-chart/data-filter/tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../category-chart/data-legend/angular.json | 32 +++++++++++++++---- .../category-chart/data-legend/tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../data-tooltip-positioning/angular.json | 32 +++++++++++++++---- .../data-tooltip-positioning/tsconfig.json | 8 ++--- .../category-chart/data-tooltip/angular.json | 32 +++++++++++++++---- .../category-chart/data-tooltip/tsconfig.json | 8 ++--- .../format-specifiers/angular.json | 32 +++++++++++++++---- .../format-specifiers/tsconfig.json | 8 ++--- .../highlighting-behavior/angular.json | 32 +++++++++++++++---- .../highlighting-behavior/tsconfig.json | 8 ++--- .../highlighting-mode/angular.json | 32 +++++++++++++++---- .../highlighting-mode/tsconfig.json | 8 ++--- .../legend-highlighting/angular.json | 32 +++++++++++++++---- .../legend-highlighting/tsconfig.json | 8 ++--- .../line-chart-multiple-sources/angular.json | 32 +++++++++++++++---- .../line-chart-multiple-sources/tsconfig.json | 8 ++--- .../line-chart-single-source/angular.json | 32 +++++++++++++++---- .../line-chart-single-source/tsconfig.json | 8 ++--- .../line-chart-styling/angular.json | 32 +++++++++++++++---- .../line-chart-styling/tsconfig.json | 8 ++--- .../marker-options/angular.json | 32 +++++++++++++++---- .../marker-options/tsconfig.json | 8 ++--- .../category-chart/overview/angular.json | 32 +++++++++++++++---- .../category-chart/overview/tsconfig.json | 8 ++--- .../point-chart-multiple-sources/angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../point-chart-single-source/angular.json | 32 +++++++++++++++---- .../point-chart-single-source/tsconfig.json | 8 ++--- .../point-chart-styling/angular.json | 32 +++++++++++++++---- .../point-chart-styling/tsconfig.json | 8 ++--- .../selection-matcher/angular.json | 32 +++++++++++++++---- .../selection-matcher/tsconfig.json | 8 ++--- .../selection-modes/angular.json | 32 +++++++++++++++---- .../selection-modes/tsconfig.json | 8 ++--- .../selection-multiple-modes/angular.json | 32 +++++++++++++++---- .../selection-multiple-modes/tsconfig.json | 8 ++--- .../spline-area-multiple-sources/angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../spline-area-single-source/angular.json | 32 +++++++++++++++---- .../spline-area-single-source/tsconfig.json | 8 ++--- .../spline-area-styling/angular.json | 32 +++++++++++++++---- .../spline-area-styling/tsconfig.json | 8 ++--- .../spline-multiple-sources/angular.json | 32 +++++++++++++++---- .../spline-multiple-sources/tsconfig.json | 8 ++--- .../spline-single-source/angular.json | 32 +++++++++++++++---- .../spline-single-source/tsconfig.json | 8 ++--- .../spline-styling/angular.json | 32 +++++++++++++++---- .../spline-styling/tsconfig.json | 8 ++--- .../step-area-multiple-sources/angular.json | 32 +++++++++++++++---- .../step-area-multiple-sources/tsconfig.json | 8 ++--- .../step-area-single-source/angular.json | 32 +++++++++++++++---- .../step-area-single-source/tsconfig.json | 8 ++--- .../step-area-styling/angular.json | 32 +++++++++++++++---- .../step-area-styling/tsconfig.json | 8 ++--- .../step-line-multiple-sources/angular.json | 32 +++++++++++++++---- .../step-line-multiple-sources/tsconfig.json | 8 ++--- .../step-line-single-source/angular.json | 32 +++++++++++++++---- .../step-line-single-source/tsconfig.json | 8 ++--- .../step-line-styling/angular.json | 32 +++++++++++++++---- .../step-line-styling/tsconfig.json | 8 ++--- .../category-chart/value-lines/angular.json | 32 +++++++++++++++---- .../category-chart/value-lines/tsconfig.json | 8 ++--- .../financial-dashboard/angular.json | 32 +++++++++++++++---- .../financial-dashboard/tsconfig.json | 8 ++--- .../gauge-dashboard/angular.json | 32 +++++++++++++++---- .../gauge-dashboard/tsconfig.json | 8 ++--- .../local-data-source-dashboard/angular.json | 32 +++++++++++++++---- .../local-data-source-dashboard/tsconfig.json | 8 ++--- .../dashboard-tile/map-dashboard/angular.json | 32 +++++++++++++++---- .../map-dashboard/tsconfig.json | 8 ++--- .../dashboard-tile/pie-dashboard/angular.json | 32 +++++++++++++++---- .../pie-dashboard/tsconfig.json | 8 ++--- .../annotations-custom/angular.json | 32 +++++++++++++++---- .../annotations-custom/tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../axis-label-rotation/angular.json | 32 +++++++++++++++---- .../axis-label-rotation/tsconfig.json | 8 ++--- .../data-chart/axis-min-max-gap/angular.json | 32 +++++++++++++++---- .../data-chart/axis-min-max-gap/tsconfig.json | 8 ++--- .../bar-chart-multiple-sources/angular.json | 32 +++++++++++++++---- .../bar-chart-multiple-sources/tsconfig.json | 8 ++--- .../bar-chart-overlapping/angular.json | 32 +++++++++++++++---- .../bar-chart-overlapping/tsconfig.json | 8 ++--- .../bar-chart-single-source/angular.json | 32 +++++++++++++++---- .../bar-chart-single-source/tsconfig.json | 8 ++--- .../data-chart/bar-chart-styling/angular.json | 32 +++++++++++++++---- .../bar-chart-styling/tsconfig.json | 8 ++--- .../callout-layer-styling/angular.json | 32 +++++++++++++++---- .../callout-layer-styling/tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../chart-highlight-filter/angular.json | 32 +++++++++++++++---- .../chart-highlight-filter/tsconfig.json | 8 ++--- .../data-annotation-band-layer/angular.json | 32 +++++++++++++++---- .../data-annotation-band-layer/tsconfig.json | 8 ++--- .../data-annotation-line-layer/angular.json | 32 +++++++++++++++---- .../data-annotation-line-layer/tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../data-annotation-rect-layer/angular.json | 32 +++++++++++++++---- .../data-annotation-rect-layer/tsconfig.json | 8 ++--- .../data-annotation-slice-layer/angular.json | 32 +++++++++++++++---- .../data-annotation-slice-layer/tsconfig.json | 8 ++--- .../data-annotation-strip-layer/angular.json | 32 +++++++++++++++---- .../data-annotation-strip-layer/tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../data-legend-grouping/angular.json | 32 +++++++++++++++---- .../data-legend-grouping/tsconfig.json | 8 ++--- .../data-legend-styling/angular.json | 32 +++++++++++++++---- .../data-legend-styling/tsconfig.json | 8 ++--- .../data-chart/data-legend/angular.json | 32 +++++++++++++++---- .../data-chart/data-legend/tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../data-tooltip-grouping/angular.json | 32 +++++++++++++++---- .../data-tooltip-grouping/tsconfig.json | 8 ++--- .../data-tooltip-styling/angular.json | 32 +++++++++++++++---- .../data-tooltip-styling/tsconfig.json | 8 ++--- .../data-chart/data-tooltip/angular.json | 32 +++++++++++++++---- .../data-chart/data-tooltip/tsconfig.json | 8 ++--- .../financial-price-series/angular.json | 32 +++++++++++++++---- .../financial-price-series/tsconfig.json | 8 ++--- .../polar-area-chart-styling/angular.json | 32 +++++++++++++++---- .../polar-area-chart-styling/tsconfig.json | 8 ++--- .../data-chart/polar-area-chart/angular.json | 32 +++++++++++++++---- .../data-chart/polar-area-chart/tsconfig.json | 8 ++--- .../data-chart/polar-line-chart/angular.json | 32 +++++++++++++++---- .../data-chart/polar-line-chart/tsconfig.json | 8 ++--- .../polar-scatter-chart/angular.json | 32 +++++++++++++++---- .../polar-scatter-chart/tsconfig.json | 8 ++--- .../polar-spline-area-chart/angular.json | 32 +++++++++++++++---- .../polar-spline-area-chart/tsconfig.json | 8 ++--- .../polar-spline-chart/angular.json | 32 +++++++++++++++---- .../polar-spline-chart/tsconfig.json | 8 ++--- .../radial-area-chart-styling/angular.json | 32 +++++++++++++++---- .../radial-area-chart-styling/tsconfig.json | 8 ++--- .../data-chart/radial-area-chart/angular.json | 32 +++++++++++++++---- .../radial-area-chart/tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../radial-column-chart/angular.json | 32 +++++++++++++++---- .../radial-column-chart/tsconfig.json | 8 ++--- .../data-chart/radial-label-mode/angular.json | 32 +++++++++++++++---- .../radial-label-mode/tsconfig.json | 8 ++--- .../data-chart/radial-line-chart/angular.json | 32 +++++++++++++++---- .../radial-line-chart/tsconfig.json | 8 ++--- .../data-chart/radial-pie-chart/angular.json | 32 +++++++++++++++---- .../data-chart/radial-pie-chart/tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../data-chart/range-area-chart/angular.json | 32 +++++++++++++++---- .../data-chart/range-area-chart/tsconfig.json | 8 ++--- .../range-column-chart/angular.json | 32 +++++++++++++++---- .../range-column-chart/tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../scatter-bubble-chart-styling/angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../scatter-line-chart/angular.json | 32 +++++++++++++++---- .../scatter-line-chart/tsconfig.json | 8 ++--- .../scatter-point-chart/angular.json | 32 +++++++++++++++---- .../scatter-point-chart/tsconfig.json | 8 ++--- .../scatter-spline-chart/angular.json | 32 +++++++++++++++---- .../scatter-spline-chart/tsconfig.json | 8 ++--- .../data-chart/selection-matcher/angular.json | 32 +++++++++++++++---- .../selection-matcher/tsconfig.json | 8 ++--- .../stacked-100-area-chart/angular.json | 32 +++++++++++++++---- .../stacked-100-area-chart/tsconfig.json | 8 ++--- .../stacked-100-bar-chart/angular.json | 32 +++++++++++++++---- .../stacked-100-bar-chart/tsconfig.json | 8 ++--- .../stacked-100-column-chart/angular.json | 32 +++++++++++++++---- .../stacked-100-column-chart/tsconfig.json | 8 ++--- .../stacked-100-line-chart/angular.json | 32 +++++++++++++++---- .../stacked-100-line-chart/tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../stacked-100-spline-chart/angular.json | 32 +++++++++++++++---- .../stacked-100-spline-chart/tsconfig.json | 8 ++--- .../stacked-area-chart/angular.json | 32 +++++++++++++++---- .../stacked-area-chart/tsconfig.json | 8 ++--- .../data-chart/stacked-bar-chart/angular.json | 32 +++++++++++++++---- .../stacked-bar-chart/tsconfig.json | 8 ++--- .../stacked-column-chart/angular.json | 32 +++++++++++++++---- .../stacked-column-chart/tsconfig.json | 8 ++--- .../stacked-line-chart/angular.json | 32 +++++++++++++++---- .../stacked-line-chart/tsconfig.json | 8 ++--- .../stacked-spline-area-chart/angular.json | 32 +++++++++++++++---- .../stacked-spline-area-chart/tsconfig.json | 8 ++--- .../stacked-spline-chart/angular.json | 32 +++++++++++++++---- .../stacked-spline-chart/tsconfig.json | 8 ++--- .../data-chart/transition-event/angular.json | 32 +++++++++++++++---- .../data-chart/transition-event/tsconfig.json | 8 ++--- .../data-chart/waterfall-chart/angular.json | 32 +++++++++++++++---- .../data-chart/waterfall-chart/tsconfig.json | 8 ++--- .../animation-replay/angular.json | 32 +++++++++++++++---- .../animation-replay/tsconfig.json | 8 ++--- .../data-pie-chart/animation/angular.json | 32 +++++++++++++++---- .../data-pie-chart/animation/tsconfig.json | 8 ++--- .../highlight-filter/angular.json | 32 +++++++++++++++---- .../highlight-filter/tsconfig.json | 8 ++--- .../data-pie-chart/highlighting/angular.json | 32 +++++++++++++++---- .../data-pie-chart/highlighting/tsconfig.json | 8 ++--- .../charts/data-pie-chart/legend/angular.json | 32 +++++++++++++++---- .../data-pie-chart/legend/tsconfig.json | 8 ++--- .../charts/data-pie-chart/others/angular.json | 32 +++++++++++++++---- .../data-pie-chart/others/tsconfig.json | 8 ++--- .../data-pie-chart/overview/angular.json | 32 +++++++++++++++---- .../data-pie-chart/overview/tsconfig.json | 8 ++--- .../data-pie-chart/selection/angular.json | 32 +++++++++++++++---- .../data-pie-chart/selection/tsconfig.json | 8 ++--- .../charts/doughnut-chart/legend/angular.json | 32 +++++++++++++++---- .../doughnut-chart/legend/tsconfig.json | 8 ++--- .../doughnut-chart/overview/angular.json | 32 +++++++++++++++---- .../doughnut-chart/overview/tsconfig.json | 8 ++--- .../charts/doughnut-chart/rings/angular.json | 32 +++++++++++++++---- .../charts/doughnut-chart/rings/tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../data-legend-styling-props/angular.json | 32 +++++++++++++++---- .../data-legend-styling-props/tsconfig.json | 8 ++--- .../financial-chart/data-legend/angular.json | 32 +++++++++++++++---- .../financial-chart/data-legend/tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../data-tooltip-styling-props/angular.json | 32 +++++++++++++++---- .../data-tooltip-styling-props/tsconfig.json | 8 ++--- .../financial-chart/data-tooltip/angular.json | 32 +++++++++++++++---- .../data-tooltip/tsconfig.json | 8 ++--- .../format-specifiers/angular.json | 32 +++++++++++++++---- .../format-specifiers/tsconfig.json | 8 ++--- .../financial-chart/scrollbars/angular.json | 32 +++++++++++++++---- .../financial-chart/scrollbars/tsconfig.json | 8 ++--- samples/charts/pie-chart/legend/angular.json | 32 +++++++++++++++---- samples/charts/pie-chart/legend/tsconfig.json | 8 ++--- samples/charts/pie-chart/others/angular.json | 32 +++++++++++++++---- samples/charts/pie-chart/others/tsconfig.json | 8 ++--- .../charts/pie-chart/overview/angular.json | 32 +++++++++++++++---- .../charts/pie-chart/overview/tsconfig.json | 8 ++--- samples/charts/pie-chart/styling/angular.json | 32 +++++++++++++++---- .../charts/pie-chart/styling/tsconfig.json | 8 ++--- .../sparkline/display-area/angular.json | 32 +++++++++++++++---- .../sparkline/display-area/tsconfig.json | 8 ++--- .../sparkline/display-column/angular.json | 32 +++++++++++++++---- .../sparkline/display-column/tsconfig.json | 8 ++--- .../sparkline/display-lines/angular.json | 32 +++++++++++++++---- .../sparkline/display-lines/tsconfig.json | 8 ++--- .../sparkline/display-winloss/angular.json | 32 +++++++++++++++---- .../sparkline/display-winloss/tsconfig.json | 8 ++--- samples/charts/sparkline/markers/angular.json | 32 +++++++++++++++---- .../charts/sparkline/markers/tsconfig.json | 8 ++--- .../sparkline/normal-range/angular.json | 32 +++++++++++++++---- .../sparkline/normal-range/tsconfig.json | 8 ++--- .../charts/sparkline/trendlines/angular.json | 32 +++++++++++++++---- .../charts/sparkline/trendlines/tsconfig.json | 8 ++--- .../sparkline/unknown-values/angular.json | 32 +++++++++++++++---- .../sparkline/unknown-values/tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../actions-built-in-data-chart/angular.json | 32 +++++++++++++++---- .../actions-built-in-data-chart/tsconfig.json | 8 ++--- .../toolbar/color-editor-support/angular.json | 32 +++++++++++++++---- .../color-editor-support/tsconfig.json | 8 ++--- .../charts/toolbar/custom-tool/angular.json | 32 +++++++++++++++---- .../charts/toolbar/custom-tool/tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- .../angular.json | 32 +++++++++++++++---- .../tsconfig.json | 8 ++--- samples/charts/toolbar/theming/angular.json | 32 +++++++++++++++---- samples/charts/toolbar/theming/tsconfig.json | 8 ++--- .../highlighting-percent-based/angular.json | 32 +++++++++++++++---- .../highlighting-percent-based/tsconfig.json | 8 ++--- .../charts/tree-map/highlighting/angular.json | 32 +++++++++++++++---- .../tree-map/highlighting/tsconfig.json | 8 ++--- samples/charts/tree-map/layout/angular.json | 32 +++++++++++++++---- samples/charts/tree-map/layout/tsconfig.json | 8 ++--- samples/charts/tree-map/overview/angular.json | 32 +++++++++++++++---- .../charts/tree-map/overview/tsconfig.json | 8 ++--- samples/charts/tree-map/styling/angular.json | 32 +++++++++++++++---- samples/charts/tree-map/styling/tsconfig.json | 8 ++--- .../inputs/color-editor/overview/angular.json | 32 +++++++++++++++---- .../color-editor/overview/tsconfig.json | 8 ++--- 352 files changed, 5104 insertions(+), 1936 deletions(-) diff --git a/samples/charts/category-chart/annotations-all/angular.json b/samples/charts/category-chart/annotations-all/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/annotations-all/angular.json +++ b/samples/charts/category-chart/annotations-all/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/annotations-all/tsconfig.json b/samples/charts/category-chart/annotations-all/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/annotations-all/tsconfig.json +++ b/samples/charts/category-chart/annotations-all/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-callouts/angular.json b/samples/charts/category-chart/annotations-callouts/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/annotations-callouts/angular.json +++ b/samples/charts/category-chart/annotations-callouts/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/annotations-callouts/tsconfig.json b/samples/charts/category-chart/annotations-callouts/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/annotations-callouts/tsconfig.json +++ b/samples/charts/category-chart/annotations-callouts/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-crosshairs/angular.json b/samples/charts/category-chart/annotations-crosshairs/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/annotations-crosshairs/angular.json +++ b/samples/charts/category-chart/annotations-crosshairs/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/annotations-crosshairs/tsconfig.json b/samples/charts/category-chart/annotations-crosshairs/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/annotations-crosshairs/tsconfig.json +++ b/samples/charts/category-chart/annotations-crosshairs/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-custom/angular.json b/samples/charts/category-chart/annotations-custom/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/annotations-custom/angular.json +++ b/samples/charts/category-chart/annotations-custom/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/annotations-custom/tsconfig.json b/samples/charts/category-chart/annotations-custom/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/annotations-custom/tsconfig.json +++ b/samples/charts/category-chart/annotations-custom/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-final-value/angular.json b/samples/charts/category-chart/annotations-final-value/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/annotations-final-value/angular.json +++ b/samples/charts/category-chart/annotations-final-value/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/annotations-final-value/tsconfig.json b/samples/charts/category-chart/annotations-final-value/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/annotations-final-value/tsconfig.json +++ b/samples/charts/category-chart/annotations-final-value/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-highlighting/angular.json b/samples/charts/category-chart/annotations-highlighting/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/annotations-highlighting/angular.json +++ b/samples/charts/category-chart/annotations-highlighting/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/annotations-highlighting/tsconfig.json b/samples/charts/category-chart/annotations-highlighting/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/annotations-highlighting/tsconfig.json +++ b/samples/charts/category-chart/annotations-highlighting/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-multiple-sources/angular.json b/samples/charts/category-chart/area-chart-multiple-sources/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/angular.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json b/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-single-source/angular.json b/samples/charts/category-chart/area-chart-single-source/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/area-chart-single-source/angular.json +++ b/samples/charts/category-chart/area-chart-single-source/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/area-chart-single-source/tsconfig.json b/samples/charts/category-chart/area-chart-single-source/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/area-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/area-chart-single-source/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-styling/angular.json b/samples/charts/category-chart/area-chart-styling/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/area-chart-styling/angular.json +++ b/samples/charts/category-chart/area-chart-styling/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/area-chart-styling/tsconfig.json b/samples/charts/category-chart/area-chart-styling/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/area-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/area-chart-styling/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-gap/angular.json b/samples/charts/category-chart/axis-gap/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/axis-gap/angular.json +++ b/samples/charts/category-chart/axis-gap/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/axis-gap/tsconfig.json b/samples/charts/category-chart/axis-gap/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/axis-gap/tsconfig.json +++ b/samples/charts/category-chart/axis-gap/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-gridlines/angular.json b/samples/charts/category-chart/axis-gridlines/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/axis-gridlines/angular.json +++ b/samples/charts/category-chart/axis-gridlines/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/axis-gridlines/tsconfig.json b/samples/charts/category-chart/axis-gridlines/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/axis-gridlines/tsconfig.json +++ b/samples/charts/category-chart/axis-gridlines/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-inverted/angular.json b/samples/charts/category-chart/axis-inverted/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/axis-inverted/angular.json +++ b/samples/charts/category-chart/axis-inverted/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/axis-inverted/tsconfig.json b/samples/charts/category-chart/axis-inverted/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/axis-inverted/tsconfig.json +++ b/samples/charts/category-chart/axis-inverted/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-labels/angular.json b/samples/charts/category-chart/axis-labels/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/axis-labels/angular.json +++ b/samples/charts/category-chart/axis-labels/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/axis-labels/tsconfig.json b/samples/charts/category-chart/axis-labels/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/axis-labels/tsconfig.json +++ b/samples/charts/category-chart/axis-labels/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-locations/angular.json b/samples/charts/category-chart/axis-locations/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/axis-locations/angular.json +++ b/samples/charts/category-chart/axis-locations/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/axis-locations/tsconfig.json b/samples/charts/category-chart/axis-locations/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/axis-locations/tsconfig.json +++ b/samples/charts/category-chart/axis-locations/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-options/angular.json b/samples/charts/category-chart/axis-options/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/axis-options/angular.json +++ b/samples/charts/category-chart/axis-options/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/axis-options/tsconfig.json b/samples/charts/category-chart/axis-options/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/axis-options/tsconfig.json +++ b/samples/charts/category-chart/axis-options/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-overlap/angular.json b/samples/charts/category-chart/axis-overlap/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/axis-overlap/angular.json +++ b/samples/charts/category-chart/axis-overlap/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/axis-overlap/tsconfig.json b/samples/charts/category-chart/axis-overlap/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/axis-overlap/tsconfig.json +++ b/samples/charts/category-chart/axis-overlap/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-range/angular.json b/samples/charts/category-chart/axis-range/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/axis-range/angular.json +++ b/samples/charts/category-chart/axis-range/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/axis-range/tsconfig.json b/samples/charts/category-chart/axis-range/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/axis-range/tsconfig.json +++ b/samples/charts/category-chart/axis-range/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-tickmarks/angular.json b/samples/charts/category-chart/axis-tickmarks/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/axis-tickmarks/angular.json +++ b/samples/charts/category-chart/axis-tickmarks/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/axis-tickmarks/tsconfig.json b/samples/charts/category-chart/axis-tickmarks/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/axis-tickmarks/tsconfig.json +++ b/samples/charts/category-chart/axis-tickmarks/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/axis-titles/angular.json b/samples/charts/category-chart/axis-titles/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/axis-titles/angular.json +++ b/samples/charts/category-chart/axis-titles/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/axis-titles/tsconfig.json b/samples/charts/category-chart/axis-titles/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/axis-titles/tsconfig.json +++ b/samples/charts/category-chart/axis-titles/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/chart-highlight-filter/angular.json b/samples/charts/category-chart/chart-highlight-filter/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/chart-highlight-filter/angular.json +++ b/samples/charts/category-chart/chart-highlight-filter/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/chart-highlight-filter/tsconfig.json b/samples/charts/category-chart/chart-highlight-filter/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/chart-highlight-filter/tsconfig.json +++ b/samples/charts/category-chart/chart-highlight-filter/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-multiple-sources/angular.json b/samples/charts/category-chart/column-chart-multiple-sources/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/angular.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.json b/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-single-source/angular.json b/samples/charts/category-chart/column-chart-single-source/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/column-chart-single-source/angular.json +++ b/samples/charts/category-chart/column-chart-single-source/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/column-chart-single-source/tsconfig.json b/samples/charts/category-chart/column-chart-single-source/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/column-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/column-chart-single-source/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-styling/angular.json b/samples/charts/category-chart/column-chart-styling/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/column-chart-styling/angular.json +++ b/samples/charts/category-chart/column-chart-styling/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/column-chart-styling/tsconfig.json b/samples/charts/category-chart/column-chart-styling/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/column-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/column-chart-styling/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-with-tooltips/angular.json b/samples/charts/category-chart/column-chart-with-tooltips/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/angular.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json b/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/custom-selection/angular.json b/samples/charts/category-chart/custom-selection/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/custom-selection/angular.json +++ b/samples/charts/category-chart/custom-selection/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/custom-selection/tsconfig.json b/samples/charts/category-chart/custom-selection/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/custom-selection/tsconfig.json +++ b/samples/charts/category-chart/custom-selection/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/data-aggregations/angular.json b/samples/charts/category-chart/data-aggregations/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/data-aggregations/angular.json +++ b/samples/charts/category-chart/data-aggregations/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/data-aggregations/tsconfig.json b/samples/charts/category-chart/data-aggregations/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/data-aggregations/tsconfig.json +++ b/samples/charts/category-chart/data-aggregations/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/data-filter/angular.json b/samples/charts/category-chart/data-filter/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/data-filter/angular.json +++ b/samples/charts/category-chart/data-filter/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/data-filter/tsconfig.json b/samples/charts/category-chart/data-filter/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/data-filter/tsconfig.json +++ b/samples/charts/category-chart/data-filter/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/angular.json b/samples/charts/category-chart/data-legend-formatting-decimals/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/angular.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json b/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/data-legend/angular.json b/samples/charts/category-chart/data-legend/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/data-legend/angular.json +++ b/samples/charts/category-chart/data-legend/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/data-legend/tsconfig.json b/samples/charts/category-chart/data-legend/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/data-legend/tsconfig.json +++ b/samples/charts/category-chart/data-legend/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/angular.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/angular.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip-positioning/angular.json b/samples/charts/category-chart/data-tooltip-positioning/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/angular.json +++ b/samples/charts/category-chart/data-tooltip-positioning/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json b/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json +++ b/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip/angular.json b/samples/charts/category-chart/data-tooltip/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/data-tooltip/angular.json +++ b/samples/charts/category-chart/data-tooltip/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/data-tooltip/tsconfig.json b/samples/charts/category-chart/data-tooltip/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/data-tooltip/tsconfig.json +++ b/samples/charts/category-chart/data-tooltip/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/format-specifiers/angular.json b/samples/charts/category-chart/format-specifiers/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/format-specifiers/angular.json +++ b/samples/charts/category-chart/format-specifiers/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/format-specifiers/tsconfig.json b/samples/charts/category-chart/format-specifiers/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/format-specifiers/tsconfig.json +++ b/samples/charts/category-chart/format-specifiers/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-behavior/angular.json b/samples/charts/category-chart/highlighting-behavior/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/highlighting-behavior/angular.json +++ b/samples/charts/category-chart/highlighting-behavior/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/highlighting-behavior/tsconfig.json b/samples/charts/category-chart/highlighting-behavior/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/highlighting-behavior/tsconfig.json +++ b/samples/charts/category-chart/highlighting-behavior/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-mode/angular.json b/samples/charts/category-chart/highlighting-mode/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/highlighting-mode/angular.json +++ b/samples/charts/category-chart/highlighting-mode/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/highlighting-mode/tsconfig.json b/samples/charts/category-chart/highlighting-mode/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/highlighting-mode/tsconfig.json +++ b/samples/charts/category-chart/highlighting-mode/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/legend-highlighting/angular.json b/samples/charts/category-chart/legend-highlighting/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/legend-highlighting/angular.json +++ b/samples/charts/category-chart/legend-highlighting/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/legend-highlighting/tsconfig.json b/samples/charts/category-chart/legend-highlighting/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/legend-highlighting/tsconfig.json +++ b/samples/charts/category-chart/legend-highlighting/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-multiple-sources/angular.json b/samples/charts/category-chart/line-chart-multiple-sources/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/angular.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json b/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-single-source/angular.json b/samples/charts/category-chart/line-chart-single-source/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/line-chart-single-source/angular.json +++ b/samples/charts/category-chart/line-chart-single-source/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/line-chart-single-source/tsconfig.json b/samples/charts/category-chart/line-chart-single-source/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/line-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/line-chart-single-source/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-styling/angular.json b/samples/charts/category-chart/line-chart-styling/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/line-chart-styling/angular.json +++ b/samples/charts/category-chart/line-chart-styling/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/line-chart-styling/tsconfig.json b/samples/charts/category-chart/line-chart-styling/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/line-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/line-chart-styling/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/marker-options/angular.json b/samples/charts/category-chart/marker-options/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/marker-options/angular.json +++ b/samples/charts/category-chart/marker-options/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/marker-options/tsconfig.json b/samples/charts/category-chart/marker-options/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/marker-options/tsconfig.json +++ b/samples/charts/category-chart/marker-options/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/overview/angular.json b/samples/charts/category-chart/overview/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/overview/angular.json +++ b/samples/charts/category-chart/overview/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/overview/tsconfig.json b/samples/charts/category-chart/overview/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/overview/tsconfig.json +++ b/samples/charts/category-chart/overview/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-multiple-sources/angular.json b/samples/charts/category-chart/point-chart-multiple-sources/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/angular.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json b/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-single-source/angular.json b/samples/charts/category-chart/point-chart-single-source/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/point-chart-single-source/angular.json +++ b/samples/charts/category-chart/point-chart-single-source/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/point-chart-single-source/tsconfig.json b/samples/charts/category-chart/point-chart-single-source/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/point-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/point-chart-single-source/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-styling/angular.json b/samples/charts/category-chart/point-chart-styling/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/point-chart-styling/angular.json +++ b/samples/charts/category-chart/point-chart-styling/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/point-chart-styling/tsconfig.json b/samples/charts/category-chart/point-chart-styling/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/point-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/point-chart-styling/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/selection-matcher/angular.json b/samples/charts/category-chart/selection-matcher/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/selection-matcher/angular.json +++ b/samples/charts/category-chart/selection-matcher/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/selection-matcher/tsconfig.json b/samples/charts/category-chart/selection-matcher/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/selection-matcher/tsconfig.json +++ b/samples/charts/category-chart/selection-matcher/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/selection-modes/angular.json b/samples/charts/category-chart/selection-modes/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/selection-modes/angular.json +++ b/samples/charts/category-chart/selection-modes/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/selection-modes/tsconfig.json b/samples/charts/category-chart/selection-modes/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/selection-modes/tsconfig.json +++ b/samples/charts/category-chart/selection-modes/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/selection-multiple-modes/angular.json b/samples/charts/category-chart/selection-multiple-modes/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/selection-multiple-modes/angular.json +++ b/samples/charts/category-chart/selection-multiple-modes/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/selection-multiple-modes/tsconfig.json b/samples/charts/category-chart/selection-multiple-modes/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/selection-multiple-modes/tsconfig.json +++ b/samples/charts/category-chart/selection-multiple-modes/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-multiple-sources/angular.json b/samples/charts/category-chart/spline-area-multiple-sources/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/angular.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json b/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-single-source/angular.json b/samples/charts/category-chart/spline-area-single-source/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/spline-area-single-source/angular.json +++ b/samples/charts/category-chart/spline-area-single-source/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/spline-area-single-source/tsconfig.json b/samples/charts/category-chart/spline-area-single-source/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/spline-area-single-source/tsconfig.json +++ b/samples/charts/category-chart/spline-area-single-source/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-styling/angular.json b/samples/charts/category-chart/spline-area-styling/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/spline-area-styling/angular.json +++ b/samples/charts/category-chart/spline-area-styling/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/spline-area-styling/tsconfig.json b/samples/charts/category-chart/spline-area-styling/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/spline-area-styling/tsconfig.json +++ b/samples/charts/category-chart/spline-area-styling/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/spline-multiple-sources/angular.json b/samples/charts/category-chart/spline-multiple-sources/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/spline-multiple-sources/angular.json +++ b/samples/charts/category-chart/spline-multiple-sources/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/spline-multiple-sources/tsconfig.json b/samples/charts/category-chart/spline-multiple-sources/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/spline-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/spline-multiple-sources/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/spline-single-source/angular.json b/samples/charts/category-chart/spline-single-source/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/spline-single-source/angular.json +++ b/samples/charts/category-chart/spline-single-source/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/spline-single-source/tsconfig.json b/samples/charts/category-chart/spline-single-source/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/spline-single-source/tsconfig.json +++ b/samples/charts/category-chart/spline-single-source/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/spline-styling/angular.json b/samples/charts/category-chart/spline-styling/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/spline-styling/angular.json +++ b/samples/charts/category-chart/spline-styling/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/spline-styling/tsconfig.json b/samples/charts/category-chart/spline-styling/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/spline-styling/tsconfig.json +++ b/samples/charts/category-chart/spline-styling/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-multiple-sources/angular.json b/samples/charts/category-chart/step-area-multiple-sources/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/angular.json +++ b/samples/charts/category-chart/step-area-multiple-sources/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json b/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-single-source/angular.json b/samples/charts/category-chart/step-area-single-source/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/step-area-single-source/angular.json +++ b/samples/charts/category-chart/step-area-single-source/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/step-area-single-source/tsconfig.json b/samples/charts/category-chart/step-area-single-source/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/step-area-single-source/tsconfig.json +++ b/samples/charts/category-chart/step-area-single-source/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-styling/angular.json b/samples/charts/category-chart/step-area-styling/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/step-area-styling/angular.json +++ b/samples/charts/category-chart/step-area-styling/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/step-area-styling/tsconfig.json b/samples/charts/category-chart/step-area-styling/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/step-area-styling/tsconfig.json +++ b/samples/charts/category-chart/step-area-styling/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-multiple-sources/angular.json b/samples/charts/category-chart/step-line-multiple-sources/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/angular.json +++ b/samples/charts/category-chart/step-line-multiple-sources/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json b/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-single-source/angular.json b/samples/charts/category-chart/step-line-single-source/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/step-line-single-source/angular.json +++ b/samples/charts/category-chart/step-line-single-source/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/step-line-single-source/tsconfig.json b/samples/charts/category-chart/step-line-single-source/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/step-line-single-source/tsconfig.json +++ b/samples/charts/category-chart/step-line-single-source/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-styling/angular.json b/samples/charts/category-chart/step-line-styling/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/step-line-styling/angular.json +++ b/samples/charts/category-chart/step-line-styling/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/step-line-styling/tsconfig.json b/samples/charts/category-chart/step-line-styling/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/step-line-styling/tsconfig.json +++ b/samples/charts/category-chart/step-line-styling/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/category-chart/value-lines/angular.json b/samples/charts/category-chart/value-lines/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/category-chart/value-lines/angular.json +++ b/samples/charts/category-chart/value-lines/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/category-chart/value-lines/tsconfig.json b/samples/charts/category-chart/value-lines/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/category-chart/value-lines/tsconfig.json +++ b/samples/charts/category-chart/value-lines/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/dashboard-tile/financial-dashboard/angular.json b/samples/charts/dashboard-tile/financial-dashboard/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/angular.json +++ b/samples/charts/dashboard-tile/financial-dashboard/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/dashboard-tile/financial-dashboard/tsconfig.json b/samples/charts/dashboard-tile/financial-dashboard/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/tsconfig.json +++ b/samples/charts/dashboard-tile/financial-dashboard/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/dashboard-tile/gauge-dashboard/angular.json b/samples/charts/dashboard-tile/gauge-dashboard/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/angular.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/dashboard-tile/gauge-dashboard/tsconfig.json b/samples/charts/dashboard-tile/gauge-dashboard/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/tsconfig.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/angular.json b/samples/charts/dashboard-tile/local-data-source-dashboard/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/dashboard-tile/local-data-source-dashboard/angular.json +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/tsconfig.json b/samples/charts/dashboard-tile/local-data-source-dashboard/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/dashboard-tile/local-data-source-dashboard/tsconfig.json +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/dashboard-tile/map-dashboard/angular.json b/samples/charts/dashboard-tile/map-dashboard/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/dashboard-tile/map-dashboard/angular.json +++ b/samples/charts/dashboard-tile/map-dashboard/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/dashboard-tile/map-dashboard/tsconfig.json b/samples/charts/dashboard-tile/map-dashboard/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/dashboard-tile/map-dashboard/tsconfig.json +++ b/samples/charts/dashboard-tile/map-dashboard/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/dashboard-tile/pie-dashboard/angular.json b/samples/charts/dashboard-tile/pie-dashboard/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/angular.json +++ b/samples/charts/dashboard-tile/pie-dashboard/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/dashboard-tile/pie-dashboard/tsconfig.json b/samples/charts/dashboard-tile/pie-dashboard/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/tsconfig.json +++ b/samples/charts/dashboard-tile/pie-dashboard/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/annotations-custom/angular.json b/samples/charts/data-chart/annotations-custom/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/annotations-custom/angular.json +++ b/samples/charts/data-chart/annotations-custom/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/annotations-custom/tsconfig.json b/samples/charts/data-chart/annotations-custom/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/annotations-custom/tsconfig.json +++ b/samples/charts/data-chart/annotations-custom/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/angular.json b/samples/charts/data-chart/axis-annotations-corner-radius/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/angular.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json b/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/axis-label-rotation/angular.json b/samples/charts/data-chart/axis-label-rotation/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/axis-label-rotation/angular.json +++ b/samples/charts/data-chart/axis-label-rotation/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/axis-label-rotation/tsconfig.json b/samples/charts/data-chart/axis-label-rotation/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/axis-label-rotation/tsconfig.json +++ b/samples/charts/data-chart/axis-label-rotation/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/axis-min-max-gap/angular.json b/samples/charts/data-chart/axis-min-max-gap/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/axis-min-max-gap/angular.json +++ b/samples/charts/data-chart/axis-min-max-gap/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/axis-min-max-gap/tsconfig.json b/samples/charts/data-chart/axis-min-max-gap/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/axis-min-max-gap/tsconfig.json +++ b/samples/charts/data-chart/axis-min-max-gap/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/angular.json b/samples/charts/data-chart/bar-chart-multiple-sources/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/angular.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json b/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-overlapping/angular.json b/samples/charts/data-chart/bar-chart-overlapping/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/angular.json +++ b/samples/charts/data-chart/bar-chart-overlapping/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json b/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-single-source/angular.json b/samples/charts/data-chart/bar-chart-single-source/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/bar-chart-single-source/angular.json +++ b/samples/charts/data-chart/bar-chart-single-source/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/bar-chart-single-source/tsconfig.json b/samples/charts/data-chart/bar-chart-single-source/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/bar-chart-single-source/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-single-source/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/bar-chart-styling/angular.json b/samples/charts/data-chart/bar-chart-styling/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/bar-chart-styling/angular.json +++ b/samples/charts/data-chart/bar-chart-styling/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/bar-chart-styling/tsconfig.json b/samples/charts/data-chart/bar-chart-styling/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/bar-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-styling/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/callout-layer-styling/angular.json b/samples/charts/data-chart/callout-layer-styling/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/callout-layer-styling/angular.json +++ b/samples/charts/data-chart/callout-layer-styling/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/callout-layer-styling/tsconfig.json b/samples/charts/data-chart/callout-layer-styling/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/callout-layer-styling/tsconfig.json +++ b/samples/charts/data-chart/callout-layer-styling/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/angular.json b/samples/charts/data-chart/chart-highlight-filter-datasource/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/angular.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json b/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/angular.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/angular.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/chart-highlight-filter/angular.json b/samples/charts/data-chart/chart-highlight-filter/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/chart-highlight-filter/angular.json +++ b/samples/charts/data-chart/chart-highlight-filter/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/chart-highlight-filter/tsconfig.json b/samples/charts/data-chart/chart-highlight-filter/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/chart-highlight-filter/tsconfig.json +++ b/samples/charts/data-chart/chart-highlight-filter/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-band-layer/angular.json b/samples/charts/data-chart/data-annotation-band-layer/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/data-annotation-band-layer/angular.json +++ b/samples/charts/data-chart/data-annotation-band-layer/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/data-annotation-band-layer/tsconfig.json b/samples/charts/data-chart/data-annotation-band-layer/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/data-annotation-band-layer/tsconfig.json +++ b/samples/charts/data-chart/data-annotation-band-layer/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-line-layer/angular.json b/samples/charts/data-chart/data-annotation-line-layer/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/data-annotation-line-layer/angular.json +++ b/samples/charts/data-chart/data-annotation-line-layer/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/data-annotation-line-layer/tsconfig.json b/samples/charts/data-chart/data-annotation-line-layer/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/data-annotation-line-layer/tsconfig.json +++ b/samples/charts/data-chart/data-annotation-line-layer/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/angular.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/angular.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/tsconfig.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/tsconfig.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/angular.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-stocks/angular.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/tsconfig.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-stocks/tsconfig.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-rect-layer/angular.json b/samples/charts/data-chart/data-annotation-rect-layer/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/data-annotation-rect-layer/angular.json +++ b/samples/charts/data-chart/data-annotation-rect-layer/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/data-annotation-rect-layer/tsconfig.json b/samples/charts/data-chart/data-annotation-rect-layer/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/data-annotation-rect-layer/tsconfig.json +++ b/samples/charts/data-chart/data-annotation-rect-layer/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-slice-layer/angular.json b/samples/charts/data-chart/data-annotation-slice-layer/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/data-annotation-slice-layer/angular.json +++ b/samples/charts/data-chart/data-annotation-slice-layer/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/data-annotation-slice-layer/tsconfig.json b/samples/charts/data-chart/data-annotation-slice-layer/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/data-annotation-slice-layer/tsconfig.json +++ b/samples/charts/data-chart/data-annotation-slice-layer/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-strip-layer/angular.json b/samples/charts/data-chart/data-annotation-strip-layer/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/data-annotation-strip-layer/angular.json +++ b/samples/charts/data-chart/data-annotation-strip-layer/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/data-annotation-strip-layer/tsconfig.json b/samples/charts/data-chart/data-annotation-strip-layer/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/data-annotation-strip-layer/tsconfig.json +++ b/samples/charts/data-chart/data-annotation-strip-layer/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/angular.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/angular.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/tsconfig.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/tsconfig.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-grouping/angular.json b/samples/charts/data-chart/data-legend-grouping/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/data-legend-grouping/angular.json +++ b/samples/charts/data-chart/data-legend-grouping/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/data-legend-grouping/tsconfig.json b/samples/charts/data-chart/data-legend-grouping/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/data-legend-grouping/tsconfig.json +++ b/samples/charts/data-chart/data-legend-grouping/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-styling/angular.json b/samples/charts/data-chart/data-legend-styling/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/data-legend-styling/angular.json +++ b/samples/charts/data-chart/data-legend-styling/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/data-legend-styling/tsconfig.json b/samples/charts/data-chart/data-legend-styling/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/data-legend-styling/tsconfig.json +++ b/samples/charts/data-chart/data-legend-styling/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend/angular.json b/samples/charts/data-chart/data-legend/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/data-legend/angular.json +++ b/samples/charts/data-chart/data-legend/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/data-legend/tsconfig.json b/samples/charts/data-chart/data-legend/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/data-legend/tsconfig.json +++ b/samples/charts/data-chart/data-legend/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/angular.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/angular.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tsconfig.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tsconfig.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-grouping/angular.json b/samples/charts/data-chart/data-tooltip-grouping/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/angular.json +++ b/samples/charts/data-chart/data-tooltip-grouping/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/data-tooltip-grouping/tsconfig.json b/samples/charts/data-chart/data-tooltip-grouping/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/tsconfig.json +++ b/samples/charts/data-chart/data-tooltip-grouping/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-styling/angular.json b/samples/charts/data-chart/data-tooltip-styling/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/data-tooltip-styling/angular.json +++ b/samples/charts/data-chart/data-tooltip-styling/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/data-tooltip-styling/tsconfig.json b/samples/charts/data-chart/data-tooltip-styling/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/data-tooltip-styling/tsconfig.json +++ b/samples/charts/data-chart/data-tooltip-styling/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip/angular.json b/samples/charts/data-chart/data-tooltip/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/data-tooltip/angular.json +++ b/samples/charts/data-chart/data-tooltip/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/data-tooltip/tsconfig.json b/samples/charts/data-chart/data-tooltip/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/data-tooltip/tsconfig.json +++ b/samples/charts/data-chart/data-tooltip/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/financial-price-series/angular.json b/samples/charts/data-chart/financial-price-series/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/financial-price-series/angular.json +++ b/samples/charts/data-chart/financial-price-series/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/financial-price-series/tsconfig.json b/samples/charts/data-chart/financial-price-series/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/financial-price-series/tsconfig.json +++ b/samples/charts/data-chart/financial-price-series/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/polar-area-chart-styling/angular.json b/samples/charts/data-chart/polar-area-chart-styling/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/angular.json +++ b/samples/charts/data-chart/polar-area-chart-styling/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/polar-area-chart-styling/tsconfig.json b/samples/charts/data-chart/polar-area-chart-styling/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/polar-area-chart-styling/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/polar-area-chart/angular.json b/samples/charts/data-chart/polar-area-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/polar-area-chart/angular.json +++ b/samples/charts/data-chart/polar-area-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/polar-area-chart/tsconfig.json b/samples/charts/data-chart/polar-area-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/polar-area-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-area-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/polar-line-chart/angular.json b/samples/charts/data-chart/polar-line-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/polar-line-chart/angular.json +++ b/samples/charts/data-chart/polar-line-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/polar-line-chart/tsconfig.json b/samples/charts/data-chart/polar-line-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/polar-line-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-line-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/polar-scatter-chart/angular.json b/samples/charts/data-chart/polar-scatter-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/polar-scatter-chart/angular.json +++ b/samples/charts/data-chart/polar-scatter-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/polar-scatter-chart/tsconfig.json b/samples/charts/data-chart/polar-scatter-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/polar-scatter-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-scatter-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/polar-spline-area-chart/angular.json b/samples/charts/data-chart/polar-spline-area-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/angular.json +++ b/samples/charts/data-chart/polar-spline-area-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/polar-spline-area-chart/tsconfig.json b/samples/charts/data-chart/polar-spline-area-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-spline-area-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/polar-spline-chart/angular.json b/samples/charts/data-chart/polar-spline-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/polar-spline-chart/angular.json +++ b/samples/charts/data-chart/polar-spline-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/polar-spline-chart/tsconfig.json b/samples/charts/data-chart/polar-spline-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/polar-spline-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-spline-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/radial-area-chart-styling/angular.json b/samples/charts/data-chart/radial-area-chart-styling/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/angular.json +++ b/samples/charts/data-chart/radial-area-chart-styling/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/radial-area-chart-styling/tsconfig.json b/samples/charts/data-chart/radial-area-chart-styling/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/radial-area-chart-styling/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/radial-area-chart/angular.json b/samples/charts/data-chart/radial-area-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/radial-area-chart/angular.json +++ b/samples/charts/data-chart/radial-area-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/radial-area-chart/tsconfig.json b/samples/charts/data-chart/radial-area-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/radial-area-chart/tsconfig.json +++ b/samples/charts/data-chart/radial-area-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/radial-column-chart-selection/angular.json b/samples/charts/data-chart/radial-column-chart-selection/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/angular.json +++ b/samples/charts/data-chart/radial-column-chart-selection/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/radial-column-chart-selection/tsconfig.json b/samples/charts/data-chart/radial-column-chart-selection/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/tsconfig.json +++ b/samples/charts/data-chart/radial-column-chart-selection/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/radial-column-chart/angular.json b/samples/charts/data-chart/radial-column-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/radial-column-chart/angular.json +++ b/samples/charts/data-chart/radial-column-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/radial-column-chart/tsconfig.json b/samples/charts/data-chart/radial-column-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/radial-column-chart/tsconfig.json +++ b/samples/charts/data-chart/radial-column-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/radial-label-mode/angular.json b/samples/charts/data-chart/radial-label-mode/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/radial-label-mode/angular.json +++ b/samples/charts/data-chart/radial-label-mode/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/radial-label-mode/tsconfig.json b/samples/charts/data-chart/radial-label-mode/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/radial-label-mode/tsconfig.json +++ b/samples/charts/data-chart/radial-label-mode/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/radial-line-chart/angular.json b/samples/charts/data-chart/radial-line-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/radial-line-chart/angular.json +++ b/samples/charts/data-chart/radial-line-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/radial-line-chart/tsconfig.json b/samples/charts/data-chart/radial-line-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/radial-line-chart/tsconfig.json +++ b/samples/charts/data-chart/radial-line-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/radial-pie-chart/angular.json b/samples/charts/data-chart/radial-pie-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/radial-pie-chart/angular.json +++ b/samples/charts/data-chart/radial-pie-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/radial-pie-chart/tsconfig.json b/samples/charts/data-chart/radial-pie-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/radial-pie-chart/tsconfig.json +++ b/samples/charts/data-chart/radial-pie-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/angular.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/angular.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tsconfig.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tsconfig.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/angular.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/angular.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/tsconfig.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/tsconfig.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/range-area-chart/angular.json b/samples/charts/data-chart/range-area-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/range-area-chart/angular.json +++ b/samples/charts/data-chart/range-area-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/range-area-chart/tsconfig.json b/samples/charts/data-chart/range-area-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/range-area-chart/tsconfig.json +++ b/samples/charts/data-chart/range-area-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/range-column-chart/angular.json b/samples/charts/data-chart/range-column-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/range-column-chart/angular.json +++ b/samples/charts/data-chart/range-column-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/range-column-chart/tsconfig.json b/samples/charts/data-chart/range-column-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/range-column-chart/tsconfig.json +++ b/samples/charts/data-chart/range-column-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/angular.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/angular.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/angular.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/angular.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/angular.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/angular.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/angular.json b/samples/charts/data-chart/scatter-bubble-chart-styling/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/angular.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.json b/samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-line-chart/angular.json b/samples/charts/data-chart/scatter-line-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/scatter-line-chart/angular.json +++ b/samples/charts/data-chart/scatter-line-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/scatter-line-chart/tsconfig.json b/samples/charts/data-chart/scatter-line-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/scatter-line-chart/tsconfig.json +++ b/samples/charts/data-chart/scatter-line-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-point-chart/angular.json b/samples/charts/data-chart/scatter-point-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/scatter-point-chart/angular.json +++ b/samples/charts/data-chart/scatter-point-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/scatter-point-chart/tsconfig.json b/samples/charts/data-chart/scatter-point-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/scatter-point-chart/tsconfig.json +++ b/samples/charts/data-chart/scatter-point-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/scatter-spline-chart/angular.json b/samples/charts/data-chart/scatter-spline-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/scatter-spline-chart/angular.json +++ b/samples/charts/data-chart/scatter-spline-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/scatter-spline-chart/tsconfig.json b/samples/charts/data-chart/scatter-spline-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/scatter-spline-chart/tsconfig.json +++ b/samples/charts/data-chart/scatter-spline-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/selection-matcher/angular.json b/samples/charts/data-chart/selection-matcher/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/selection-matcher/angular.json +++ b/samples/charts/data-chart/selection-matcher/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/selection-matcher/tsconfig.json b/samples/charts/data-chart/selection-matcher/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/selection-matcher/tsconfig.json +++ b/samples/charts/data-chart/selection-matcher/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-area-chart/angular.json b/samples/charts/data-chart/stacked-100-area-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-area-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/stacked-100-area-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-area-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-area-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-bar-chart/angular.json b/samples/charts/data-chart/stacked-100-bar-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/stacked-100-bar-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-bar-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-column-chart/angular.json b/samples/charts/data-chart/stacked-100-column-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-column-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/stacked-100-column-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-column-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-column-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-line-chart/angular.json b/samples/charts/data-chart/stacked-100-line-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-line-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/stacked-100-line-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-line-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-line-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/angular.json b/samples/charts/data-chart/stacked-100-spline-area-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-100-spline-chart/angular.json b/samples/charts/data-chart/stacked-100-spline-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/angular.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/stacked-100-spline-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-spline-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-area-chart/angular.json b/samples/charts/data-chart/stacked-area-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/stacked-area-chart/angular.json +++ b/samples/charts/data-chart/stacked-area-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/stacked-area-chart/tsconfig.json b/samples/charts/data-chart/stacked-area-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/stacked-area-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-area-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-bar-chart/angular.json b/samples/charts/data-chart/stacked-bar-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/stacked-bar-chart/angular.json +++ b/samples/charts/data-chart/stacked-bar-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/stacked-bar-chart/tsconfig.json b/samples/charts/data-chart/stacked-bar-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/stacked-bar-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-bar-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-column-chart/angular.json b/samples/charts/data-chart/stacked-column-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/stacked-column-chart/angular.json +++ b/samples/charts/data-chart/stacked-column-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/stacked-column-chart/tsconfig.json b/samples/charts/data-chart/stacked-column-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/stacked-column-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-column-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-line-chart/angular.json b/samples/charts/data-chart/stacked-line-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/stacked-line-chart/angular.json +++ b/samples/charts/data-chart/stacked-line-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/stacked-line-chart/tsconfig.json b/samples/charts/data-chart/stacked-line-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/stacked-line-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-line-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-spline-area-chart/angular.json b/samples/charts/data-chart/stacked-spline-area-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/angular.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/stacked-spline-area-chart/tsconfig.json b/samples/charts/data-chart/stacked-spline-area-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/stacked-spline-chart/angular.json b/samples/charts/data-chart/stacked-spline-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/stacked-spline-chart/angular.json +++ b/samples/charts/data-chart/stacked-spline-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/stacked-spline-chart/tsconfig.json b/samples/charts/data-chart/stacked-spline-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/stacked-spline-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-spline-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/transition-event/angular.json b/samples/charts/data-chart/transition-event/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/transition-event/angular.json +++ b/samples/charts/data-chart/transition-event/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/transition-event/tsconfig.json b/samples/charts/data-chart/transition-event/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/transition-event/tsconfig.json +++ b/samples/charts/data-chart/transition-event/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-chart/waterfall-chart/angular.json b/samples/charts/data-chart/waterfall-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-chart/waterfall-chart/angular.json +++ b/samples/charts/data-chart/waterfall-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-chart/waterfall-chart/tsconfig.json b/samples/charts/data-chart/waterfall-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-chart/waterfall-chart/tsconfig.json +++ b/samples/charts/data-chart/waterfall-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation-replay/angular.json b/samples/charts/data-pie-chart/animation-replay/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-pie-chart/animation-replay/angular.json +++ b/samples/charts/data-pie-chart/animation-replay/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-pie-chart/animation-replay/tsconfig.json b/samples/charts/data-pie-chart/animation-replay/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-pie-chart/animation-replay/tsconfig.json +++ b/samples/charts/data-pie-chart/animation-replay/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation/angular.json b/samples/charts/data-pie-chart/animation/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-pie-chart/animation/angular.json +++ b/samples/charts/data-pie-chart/animation/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-pie-chart/animation/tsconfig.json b/samples/charts/data-pie-chart/animation/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-pie-chart/animation/tsconfig.json +++ b/samples/charts/data-pie-chart/animation/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-pie-chart/highlight-filter/angular.json b/samples/charts/data-pie-chart/highlight-filter/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-pie-chart/highlight-filter/angular.json +++ b/samples/charts/data-pie-chart/highlight-filter/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-pie-chart/highlight-filter/tsconfig.json b/samples/charts/data-pie-chart/highlight-filter/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-pie-chart/highlight-filter/tsconfig.json +++ b/samples/charts/data-pie-chart/highlight-filter/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-pie-chart/highlighting/angular.json b/samples/charts/data-pie-chart/highlighting/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-pie-chart/highlighting/angular.json +++ b/samples/charts/data-pie-chart/highlighting/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-pie-chart/highlighting/tsconfig.json b/samples/charts/data-pie-chart/highlighting/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-pie-chart/highlighting/tsconfig.json +++ b/samples/charts/data-pie-chart/highlighting/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-pie-chart/legend/angular.json b/samples/charts/data-pie-chart/legend/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-pie-chart/legend/angular.json +++ b/samples/charts/data-pie-chart/legend/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-pie-chart/legend/tsconfig.json b/samples/charts/data-pie-chart/legend/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-pie-chart/legend/tsconfig.json +++ b/samples/charts/data-pie-chart/legend/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-pie-chart/others/angular.json b/samples/charts/data-pie-chart/others/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-pie-chart/others/angular.json +++ b/samples/charts/data-pie-chart/others/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-pie-chart/others/tsconfig.json b/samples/charts/data-pie-chart/others/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-pie-chart/others/tsconfig.json +++ b/samples/charts/data-pie-chart/others/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-pie-chart/overview/angular.json b/samples/charts/data-pie-chart/overview/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-pie-chart/overview/angular.json +++ b/samples/charts/data-pie-chart/overview/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-pie-chart/overview/tsconfig.json b/samples/charts/data-pie-chart/overview/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-pie-chart/overview/tsconfig.json +++ b/samples/charts/data-pie-chart/overview/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/data-pie-chart/selection/angular.json b/samples/charts/data-pie-chart/selection/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/data-pie-chart/selection/angular.json +++ b/samples/charts/data-pie-chart/selection/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/data-pie-chart/selection/tsconfig.json b/samples/charts/data-pie-chart/selection/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/data-pie-chart/selection/tsconfig.json +++ b/samples/charts/data-pie-chart/selection/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/doughnut-chart/legend/angular.json b/samples/charts/doughnut-chart/legend/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/doughnut-chart/legend/angular.json +++ b/samples/charts/doughnut-chart/legend/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/doughnut-chart/legend/tsconfig.json b/samples/charts/doughnut-chart/legend/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/doughnut-chart/legend/tsconfig.json +++ b/samples/charts/doughnut-chart/legend/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/doughnut-chart/overview/angular.json b/samples/charts/doughnut-chart/overview/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/doughnut-chart/overview/angular.json +++ b/samples/charts/doughnut-chart/overview/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/doughnut-chart/overview/tsconfig.json b/samples/charts/doughnut-chart/overview/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/doughnut-chart/overview/tsconfig.json +++ b/samples/charts/doughnut-chart/overview/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/doughnut-chart/rings/angular.json b/samples/charts/doughnut-chart/rings/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/doughnut-chart/rings/angular.json +++ b/samples/charts/doughnut-chart/rings/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/doughnut-chart/rings/tsconfig.json b/samples/charts/doughnut-chart/rings/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/doughnut-chart/rings/tsconfig.json +++ b/samples/charts/doughnut-chart/rings/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/angular.json b/samples/charts/financial-chart/data-legend-formatting-currency/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/angular.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.json b/samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend-styling-props/angular.json b/samples/charts/financial-chart/data-legend-styling-props/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/angular.json +++ b/samples/charts/financial-chart/data-legend-styling-props/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/financial-chart/data-legend-styling-props/tsconfig.json b/samples/charts/financial-chart/data-legend-styling-props/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/tsconfig.json +++ b/samples/charts/financial-chart/data-legend-styling-props/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend/angular.json b/samples/charts/financial-chart/data-legend/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/financial-chart/data-legend/angular.json +++ b/samples/charts/financial-chart/data-legend/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/financial-chart/data-legend/tsconfig.json b/samples/charts/financial-chart/data-legend/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/financial-chart/data-legend/tsconfig.json +++ b/samples/charts/financial-chart/data-legend/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/angular.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/angular.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/angular.json b/samples/charts/financial-chart/data-tooltip-styling-props/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/angular.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.json b/samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip/angular.json b/samples/charts/financial-chart/data-tooltip/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/financial-chart/data-tooltip/angular.json +++ b/samples/charts/financial-chart/data-tooltip/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/financial-chart/data-tooltip/tsconfig.json b/samples/charts/financial-chart/data-tooltip/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/financial-chart/data-tooltip/tsconfig.json +++ b/samples/charts/financial-chart/data-tooltip/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/financial-chart/format-specifiers/angular.json b/samples/charts/financial-chart/format-specifiers/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/financial-chart/format-specifiers/angular.json +++ b/samples/charts/financial-chart/format-specifiers/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/financial-chart/format-specifiers/tsconfig.json b/samples/charts/financial-chart/format-specifiers/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/financial-chart/format-specifiers/tsconfig.json +++ b/samples/charts/financial-chart/format-specifiers/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/financial-chart/scrollbars/angular.json b/samples/charts/financial-chart/scrollbars/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/financial-chart/scrollbars/angular.json +++ b/samples/charts/financial-chart/scrollbars/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/financial-chart/scrollbars/tsconfig.json b/samples/charts/financial-chart/scrollbars/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/financial-chart/scrollbars/tsconfig.json +++ b/samples/charts/financial-chart/scrollbars/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/pie-chart/legend/angular.json b/samples/charts/pie-chart/legend/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/pie-chart/legend/angular.json +++ b/samples/charts/pie-chart/legend/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/pie-chart/legend/tsconfig.json b/samples/charts/pie-chart/legend/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/pie-chart/legend/tsconfig.json +++ b/samples/charts/pie-chart/legend/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/pie-chart/others/angular.json b/samples/charts/pie-chart/others/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/pie-chart/others/angular.json +++ b/samples/charts/pie-chart/others/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/pie-chart/others/tsconfig.json b/samples/charts/pie-chart/others/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/pie-chart/others/tsconfig.json +++ b/samples/charts/pie-chart/others/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/pie-chart/overview/angular.json b/samples/charts/pie-chart/overview/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/pie-chart/overview/angular.json +++ b/samples/charts/pie-chart/overview/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/pie-chart/overview/tsconfig.json b/samples/charts/pie-chart/overview/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/pie-chart/overview/tsconfig.json +++ b/samples/charts/pie-chart/overview/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/pie-chart/styling/angular.json b/samples/charts/pie-chart/styling/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/pie-chart/styling/angular.json +++ b/samples/charts/pie-chart/styling/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/pie-chart/styling/tsconfig.json b/samples/charts/pie-chart/styling/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/pie-chart/styling/tsconfig.json +++ b/samples/charts/pie-chart/styling/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/sparkline/display-area/angular.json b/samples/charts/sparkline/display-area/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/sparkline/display-area/angular.json +++ b/samples/charts/sparkline/display-area/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/sparkline/display-area/tsconfig.json b/samples/charts/sparkline/display-area/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/sparkline/display-area/tsconfig.json +++ b/samples/charts/sparkline/display-area/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/sparkline/display-column/angular.json b/samples/charts/sparkline/display-column/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/sparkline/display-column/angular.json +++ b/samples/charts/sparkline/display-column/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/sparkline/display-column/tsconfig.json b/samples/charts/sparkline/display-column/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/sparkline/display-column/tsconfig.json +++ b/samples/charts/sparkline/display-column/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/sparkline/display-lines/angular.json b/samples/charts/sparkline/display-lines/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/sparkline/display-lines/angular.json +++ b/samples/charts/sparkline/display-lines/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/sparkline/display-lines/tsconfig.json b/samples/charts/sparkline/display-lines/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/sparkline/display-lines/tsconfig.json +++ b/samples/charts/sparkline/display-lines/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/sparkline/display-winloss/angular.json b/samples/charts/sparkline/display-winloss/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/sparkline/display-winloss/angular.json +++ b/samples/charts/sparkline/display-winloss/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/sparkline/display-winloss/tsconfig.json b/samples/charts/sparkline/display-winloss/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/sparkline/display-winloss/tsconfig.json +++ b/samples/charts/sparkline/display-winloss/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/sparkline/markers/angular.json b/samples/charts/sparkline/markers/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/sparkline/markers/angular.json +++ b/samples/charts/sparkline/markers/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/sparkline/markers/tsconfig.json b/samples/charts/sparkline/markers/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/sparkline/markers/tsconfig.json +++ b/samples/charts/sparkline/markers/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/sparkline/normal-range/angular.json b/samples/charts/sparkline/normal-range/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/sparkline/normal-range/angular.json +++ b/samples/charts/sparkline/normal-range/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/sparkline/normal-range/tsconfig.json b/samples/charts/sparkline/normal-range/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/sparkline/normal-range/tsconfig.json +++ b/samples/charts/sparkline/normal-range/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/sparkline/trendlines/angular.json b/samples/charts/sparkline/trendlines/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/sparkline/trendlines/angular.json +++ b/samples/charts/sparkline/trendlines/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/sparkline/trendlines/tsconfig.json b/samples/charts/sparkline/trendlines/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/sparkline/trendlines/tsconfig.json +++ b/samples/charts/sparkline/trendlines/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/sparkline/unknown-values/angular.json b/samples/charts/sparkline/unknown-values/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/sparkline/unknown-values/angular.json +++ b/samples/charts/sparkline/unknown-values/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/sparkline/unknown-values/tsconfig.json b/samples/charts/sparkline/unknown-values/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/sparkline/unknown-values/tsconfig.json +++ b/samples/charts/sparkline/unknown-values/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/toolbar/actions-built-in-category-chart/angular.json b/samples/charts/toolbar/actions-built-in-category-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/angular.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json b/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/toolbar/actions-built-in-data-chart/angular.json b/samples/charts/toolbar/actions-built-in-data-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/angular.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json b/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/toolbar/color-editor-support/angular.json b/samples/charts/toolbar/color-editor-support/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/toolbar/color-editor-support/angular.json +++ b/samples/charts/toolbar/color-editor-support/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/toolbar/color-editor-support/tsconfig.json b/samples/charts/toolbar/color-editor-support/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/toolbar/color-editor-support/tsconfig.json +++ b/samples/charts/toolbar/color-editor-support/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/toolbar/custom-tool/angular.json b/samples/charts/toolbar/custom-tool/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/toolbar/custom-tool/angular.json +++ b/samples/charts/toolbar/custom-tool/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/toolbar/custom-tool/tsconfig.json b/samples/charts/toolbar/custom-tool/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/toolbar/custom-tool/tsconfig.json +++ b/samples/charts/toolbar/custom-tool/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/angular.json b/samples/charts/toolbar/layout-actions-for-data-chart/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/angular.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json b/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/angular.json b/samples/charts/toolbar/layout-in-vertical-orientation/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/angular.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json b/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/toolbar/theming/angular.json b/samples/charts/toolbar/theming/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/toolbar/theming/angular.json +++ b/samples/charts/toolbar/theming/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/toolbar/theming/tsconfig.json b/samples/charts/toolbar/theming/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/toolbar/theming/tsconfig.json +++ b/samples/charts/toolbar/theming/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting-percent-based/angular.json b/samples/charts/tree-map/highlighting-percent-based/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/tree-map/highlighting-percent-based/angular.json +++ b/samples/charts/tree-map/highlighting-percent-based/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/tree-map/highlighting-percent-based/tsconfig.json b/samples/charts/tree-map/highlighting-percent-based/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/tree-map/highlighting-percent-based/tsconfig.json +++ b/samples/charts/tree-map/highlighting-percent-based/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting/angular.json b/samples/charts/tree-map/highlighting/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/tree-map/highlighting/angular.json +++ b/samples/charts/tree-map/highlighting/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/tree-map/highlighting/tsconfig.json b/samples/charts/tree-map/highlighting/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/tree-map/highlighting/tsconfig.json +++ b/samples/charts/tree-map/highlighting/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/tree-map/layout/angular.json b/samples/charts/tree-map/layout/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/tree-map/layout/angular.json +++ b/samples/charts/tree-map/layout/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/tree-map/layout/tsconfig.json b/samples/charts/tree-map/layout/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/tree-map/layout/tsconfig.json +++ b/samples/charts/tree-map/layout/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/tree-map/overview/angular.json b/samples/charts/tree-map/overview/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/tree-map/overview/angular.json +++ b/samples/charts/tree-map/overview/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/tree-map/overview/tsconfig.json b/samples/charts/tree-map/overview/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/tree-map/overview/tsconfig.json +++ b/samples/charts/tree-map/overview/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/charts/tree-map/styling/angular.json b/samples/charts/tree-map/styling/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/charts/tree-map/styling/angular.json +++ b/samples/charts/tree-map/styling/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/charts/tree-map/styling/tsconfig.json b/samples/charts/tree-map/styling/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/charts/tree-map/styling/tsconfig.json +++ b/samples/charts/tree-map/styling/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file diff --git a/samples/inputs/color-editor/overview/angular.json b/samples/inputs/color-editor/overview/angular.json index ff6803cf7..ab35c3cc4 100644 --- a/samples/inputs/color-editor/overview/angular.json +++ b/samples/inputs/color-editor/overview/angular.json @@ -6,10 +6,31 @@ "demo": { "schematics": { "@schematics/angular:component": { - "style": "scss" + "prefix": "app", + "style": "scss", + "type": "component" }, - "@schematics/angular:application": { - "strict": true + "@schematics/angular:directive": { + "prefix": "app", + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." } }, "root": "", @@ -36,7 +57,7 @@ ], "scripts": [], "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } }, "configurations": { @@ -106,14 +127,13 @@ ], "inlineStyleLanguage": "scss", "stylePreprocessorOptions": { - "includePaths": ["node_modules/"] + "includePaths": [ "node_modules/" ] } } } } } }, - "defaultProject": "demo", "cli": { "analytics": false } diff --git a/samples/inputs/color-editor/overview/tsconfig.json b/samples/inputs/color-editor/overview/tsconfig.json index 22d546ab3..96a384c70 100644 --- a/samples/inputs/color-editor/overview/tsconfig.json +++ b/samples/inputs/color-editor/overview/tsconfig.json @@ -12,16 +12,14 @@ "resolveJsonModule": true, "esModuleInterop": true, "downlevelIteration": true, - "target": "es2015", + "target": "es2022", "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2018", + "es2022", "dom" ] - }, - "angularCompilerOptions": { - "enableIvy": true } + } \ No newline at end of file